Merge branch 'master' into lego/hb_2939_20201108230556187

This commit is contained in:
Clint Rutkas
2020-11-10 14:43:16 -08:00
155 changed files with 9771 additions and 1830 deletions

View File

@@ -4,37 +4,10 @@
using System.Text.Json;
using System.Text.Json.Serialization;
using Microsoft.PowerToys.Settings.UI.Library.Enumerations;
namespace Microsoft.PowerToys.Settings.UI.Library
{
public enum ColorRepresentationType
{
/// <summary>
/// Color presentation as hexadecimal color value without the alpha-value (e.g. #0055FF)
/// </summary>
HEX = 0,
/// <summary>
/// Color presentation as RGB color value (red[0..255], green[0..255], blue[0..255])
/// </summary>
RGB = 1,
/// <summary>
/// Color presentation as CMYK color value (cyan[0%..100%], magenta[0%..100%], yellow[0%..100%], black key[0%..100%])
/// </summary>
CMYK = 2,
/// <summary>
/// Color presentation as HSL color value (hue[0°..360°], saturation[0..100%], lightness[0%..100%])
/// </summary>
HSL = 3,
/// <summary>
/// Color presentation as HSV color value (hue[0°..360°], saturation[0%..100%], value[0%..100%])
/// </summary>
HSV = 4,
}
public class ColorPickerProperties
{
public ColorPickerProperties()

View File

@@ -40,14 +40,10 @@ namespace Microsoft.PowerToys.Settings.UI.Library
}
public string GetModuleName()
{
return Name;
}
=> Name;
// This can be utilized in the future if the settings.json file is to be modified/deleted.
public bool UpgradeSettingsConfiguration()
{
return false;
}
=> false;
}
}

View File

@@ -0,0 +1,59 @@
// 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.
namespace Microsoft.PowerToys.Settings.UI.Library.Enumerations
{
// NOTE: don't change the order (numbers) of the enumeration entires
/// <summary>
/// The type of the color representation
/// </summary>
public enum ColorRepresentationType
{
/// <summary>
/// Color presentation as hexadecimal color value without the alpha-value (e.g. #0055FF)
/// </summary>
HEX = 0,
/// <summary>
/// Color presentation as RGB color value (red[0..255], green[0..255], blue[0..255])
/// </summary>
RGB = 1,
/// <summary>
/// Color presentation as CMYK color value (cyan[0%..100%], magenta[0%..100%], yellow[0%..100%], black key[0%..100%])
/// </summary>
CMYK = 2,
/// <summary>
/// Color presentation as HSL color value (hue[0°..360°], saturation[0..100%], lightness[0%..100%])
/// </summary>
HSL = 3,
/// <summary>
/// Color presentation as HSV color value (hue[0°..360°], saturation[0%..100%], value[0%..100%])
/// </summary>
HSV = 4,
/// <summary>
/// Color presentation as HSB color value (hue[0°..360°], saturation[0%..100%], brightness[0%..100%])
/// </summary>
HSB = 5,
/// <summary>
/// Color presentation as HSI color value (hue[0°..360°], saturation[0%..100%], intensity[0%..100%])
/// </summary>
HSI = 6,
/// <summary>
/// Color presentation as HWB color value (hue[0°..360°], whiteness[0%..100%], blackness[0%..100%])
/// </summary>
HWB = 7,
/// <summary>
/// Color presentation as natural color (hue, whiteness[0%..100%], blackness[0%..100%])
/// </summary>
NCol = 8,
}
}

View File

@@ -16,6 +16,7 @@ namespace Microsoft.PowerToys.Settings.UI.Library
MaxMRUSize = 0;
ShowIcon = false;
ExtendedContextMenuOnly = false;
UseBoostLib = false;
}
private int _maxSize;
@@ -48,6 +49,8 @@ namespace Microsoft.PowerToys.Settings.UI.Library
public bool ExtendedContextMenuOnly { get; set; }
public bool UseBoostLib { get; set; }
public string ToJsonString()
{
return JsonSerializer.Serialize(this);

View File

@@ -15,6 +15,7 @@ namespace Microsoft.PowerToys.Settings.UI.Library
MaxMRUSize = new IntProperty();
ShowIcon = new BoolProperty();
ExtendedContextMenuOnly = new BoolProperty();
UseBoostLib = new BoolProperty();
Enabled = new BoolProperty();
}
@@ -34,5 +35,8 @@ namespace Microsoft.PowerToys.Settings.UI.Library
[JsonPropertyName("bool_show_extended_menu")]
public BoolProperty ExtendedContextMenuOnly { get; set; }
[JsonPropertyName("bool_use_boost_lib")]
public BoolProperty UseBoostLib { get; set; }
}
}

View File

@@ -35,6 +35,7 @@ namespace Microsoft.PowerToys.Settings.UI.Library
Properties.MaxMRUSize.Value = localProperties.MaxMRUSize;
Properties.ShowIcon.Value = localProperties.ShowIcon;
Properties.ExtendedContextMenuOnly.Value = localProperties.ExtendedContextMenuOnly;
Properties.UseBoostLib.Value = localProperties.UseBoostLib;
Version = "1";
Name = ModuleName;

View File

@@ -3,8 +3,10 @@
// See the LICENSE file in the project root for more information.
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Text.Json;
using Microsoft.PowerToys.Settings.UI.Library.Enumerations;
using Microsoft.PowerToys.Settings.UI.Library.Helpers;
using Microsoft.PowerToys.Settings.UI.Library.Interfaces;
@@ -16,7 +18,7 @@ namespace Microsoft.PowerToys.Settings.UI.Library.ViewModels
private readonly ISettingsUtils _settingsUtils;
private ColorPickerSettings _colorPickerSettings;
private readonly ColorPickerSettings _colorPickerSettings;
private bool _isEnabled;
@@ -30,6 +32,19 @@ namespace Microsoft.PowerToys.Settings.UI.Library.ViewModels
throw new ArgumentNullException(nameof(settingsRepository));
}
SelectableColorRepresentations = new Dictionary<ColorRepresentationType, string>
{
{ ColorRepresentationType.CMYK, "CMYK - cmyk(100%, 50%, 75%, 0%)" },
{ ColorRepresentationType.HEX, "HEX - #FFAA00" },
{ ColorRepresentationType.HSB, "HSB - hsb(100, 50%, 75%)" },
{ ColorRepresentationType.HSI, "HSI - hsi(100, 50%, 75%)" },
{ ColorRepresentationType.HSL, "HSL - hsl(100, 50%, 75%)" },
{ ColorRepresentationType.HSV, "HSV - hsv(100, 50%, 75%)" },
{ ColorRepresentationType.HWB, "HWB - hwb(100, 50%, 75%)" },
{ ColorRepresentationType.NCol, "NCol - R10, 50%, 75%" },
{ ColorRepresentationType.RGB, "RGB - rgb(100, 50, 75)" },
};
GeneralSettingsConfig = settingsRepository.SettingsConfig;
_settingsUtils = settingsUtils ?? throw new ArgumentNullException(nameof(settingsUtils));
@@ -48,13 +63,14 @@ namespace Microsoft.PowerToys.Settings.UI.Library.ViewModels
SendConfigMSG = ipcMSGCallBackFunc;
}
/// <summary>
/// Gets a list with all selectable <see cref="ColorRepresentationType"/>s
/// </summary>
public IReadOnlyDictionary<ColorRepresentationType, string> SelectableColorRepresentations { get; }
public bool IsEnabled
{
get
{
return _isEnabled;
}
get => _isEnabled;
set
{
if (_isEnabled != value)
@@ -64,7 +80,7 @@ namespace Microsoft.PowerToys.Settings.UI.Library.ViewModels
// Set the status of ColorPicker in the general settings
GeneralSettingsConfig.Enabled.ColorPicker = value;
OutGoingGeneralSettings outgoing = new OutGoingGeneralSettings(GeneralSettingsConfig);
var outgoing = new OutGoingGeneralSettings(GeneralSettingsConfig);
SendConfigMSG(outgoing.ToString());
}
@@ -73,11 +89,7 @@ namespace Microsoft.PowerToys.Settings.UI.Library.ViewModels
public bool ChangeCursor
{
get
{
return _colorPickerSettings.Properties.ChangeCursor;
}
get => _colorPickerSettings.Properties.ChangeCursor;
set
{
if (_colorPickerSettings.Properties.ChangeCursor != value)
@@ -91,11 +103,7 @@ namespace Microsoft.PowerToys.Settings.UI.Library.ViewModels
public HotkeySettings ActivationShortcut
{
get
{
return _colorPickerSettings.Properties.ActivationShortcut;
}
get => _colorPickerSettings.Properties.ActivationShortcut;
set
{
if (_colorPickerSettings.Properties.ActivationShortcut != value)
@@ -107,19 +115,15 @@ namespace Microsoft.PowerToys.Settings.UI.Library.ViewModels
}
}
public int CopiedColorRepresentationIndex
public ColorRepresentationType SelectedColorRepresentationValue
{
get
{
return (int)_colorPickerSettings.Properties.CopiedColorRepresentation;
}
get => _colorPickerSettings.Properties.CopiedColorRepresentation;
set
{
if (_colorPickerSettings.Properties.CopiedColorRepresentation != (ColorRepresentationType)value)
if (_colorPickerSettings.Properties.CopiedColorRepresentation != value)
{
_colorPickerSettings.Properties.CopiedColorRepresentation = (ColorRepresentationType)value;
OnPropertyChanged(nameof(CopiedColorRepresentationIndex));
_colorPickerSettings.Properties.CopiedColorRepresentation = value;
OnPropertyChanged(nameof(SelectedColorRepresentationValue));
NotifySettingsChanged();
}
}

View File

@@ -67,6 +67,7 @@ namespace Microsoft.PowerToys.Settings.UI.Library.ViewModels
_powerRenameRestoreFlagsOnLaunch = Settings.Properties.PersistState.Value;
_powerRenameMaxDispListNumValue = Settings.Properties.MaxMRUSize.Value;
_autoComplete = Settings.Properties.MRUEnabled.Value;
_powerRenameUseBoostLib = Settings.Properties.UseBoostLib.Value;
_powerRenameEnabled = GeneralSettingsConfig.Enabled.PowerRename;
}
@@ -76,6 +77,7 @@ namespace Microsoft.PowerToys.Settings.UI.Library.ViewModels
private bool _powerRenameRestoreFlagsOnLaunch;
private int _powerRenameMaxDispListNumValue;
private bool _autoComplete;
private bool _powerRenameUseBoostLib;
public bool IsEnabled
{
@@ -199,6 +201,24 @@ namespace Microsoft.PowerToys.Settings.UI.Library.ViewModels
}
}
public bool UseBoostLib
{
get
{
return _powerRenameUseBoostLib;
}
set
{
if (value != _powerRenameUseBoostLib)
{
_powerRenameUseBoostLib = value;
Settings.Properties.UseBoostLib.Value = value;
RaisePropertyChanged();
}
}
}
public string GetSettingsSubPath()
{
return _settingsConfigFileFolder + "\\" + ModuleName;

View File

@@ -817,4 +817,11 @@
<data name="FancyZones_WindowBehavior_GroupSettings.Text" xml:space="preserve">
<value>Window behavior</value>
</data>
<data name="PowerRename_BehaviorHeader.Text" xml:space="preserve">
<value>Behavior</value>
</data>
<data name="PowerRename_Toggle_UseBoostLib.Content" xml:space="preserve">
<value>Use Boost library (provides extended features but may use different regex syntax)</value>
<comment>Boost is a product name, should not be translated</comment>
</data>
</root>

View File

@@ -13,6 +13,95 @@
AutomationProperties.LandmarkType="Main">
<Grid RowSpacing="{StaticResource DefaultRowSpacing}">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<StackPanel x:Name="ColorPickerView" Orientation="Vertical">
<ToggleSwitch x:Uid="ColorPicker_EnableColorPicker" IsOn="{Binding IsEnabled, Mode=TwoWay}" />
<Custom:HotkeySettingsControl x:Uid="ColorPicker_ActivationShortcut"
MinWidth="240"
Margin="{StaticResource MediumTopMargin}"
HorizontalAlignment="Left"
Enabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}"
HotkeySettings="{x:Bind Path=ViewModel.ActivationShortcut, Mode=TwoWay}"
Keys="Win, Ctrl, Alt, Shift" />
<TextBlock x:Uid="ShortcutGuide_Appearance_Behavior"
Foreground="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled, Converter={StaticResource ModuleEnabledToForegroundConverter}}"
Style="{StaticResource SettingsGroupTitleStyle}" />
<ComboBox x:Name="ColorPicker_ComboBox"
x:Uid="ColorPicker_CopiedColorRepresentation"
MinWidth="240"
Margin="{StaticResource SmallTopMargin}"
HorizontalAlignment="Left"
DisplayMemberPath="Value"
IsEnabled="{Binding IsEnabled}"
ItemsSource="{Binding SelectableColorRepresentations}"
Loaded="ColorPicker_ComboBox_Loaded"
SelectedValue="{Binding SelectedColorRepresentationValue, Mode=TwoWay}"
SelectedValuePath="Key" />
<!--
Disabling this until we have a safer way to reset cursor as
we can hit a state where the cursor doesn't reset
<CheckBox x:Uid="ColorPicker_ChangeCursor"
IsChecked="{Binding ChangeCursor, Mode=TwoWay}"
Margin="{StaticResource SmallTopMargin}"
IsEnabled="{Binding IsEnabled}"/>
-->
</StackPanel>
<RelativePanel x:Name="SidePanel"
Grid.Column="1"
Width="{StaticResource SidePanelWidth}"
HorizontalAlignment="Left">
<StackPanel x:Name="DescriptionPanel">
<TextBlock x:Name="AboutTitle"
x:Uid="About_ColorPicker"
Grid.ColumnSpan="2"
Margin="{StaticResource XSmallBottomMargin}"
Style="{StaticResource SettingsGroupTitleStyle}" />
<TextBlock x:Uid="ColorPicker_Description"
Grid.Row="1"
TextWrapping="Wrap" />
</StackPanel>
<Border x:Name="AboutImage"
Grid.Row="2"
MaxWidth="240"
Margin="{StaticResource SmallTopBottomMargin}"
HorizontalAlignment="Left"
CornerRadius="4"
RelativePanel.Below="DescriptionPanel">
<Image x:Uid="ColorPicker_Image" Source="ms-appx:///Assets/Modules/ColorPicker.png" />
</Border>
<StackPanel x:Name="LinksPanel"
Margin="0,1,0,0"
Orientation="Vertical"
RelativePanel.Below="AboutImage">
<HyperlinkButton NavigateUri="https://aka.ms/PowerToysOverview_ColorPicker">
<TextBlock x:Uid="Module_overview" />
</HyperlinkButton>
<HyperlinkButton NavigateUri="https://aka.ms/powerToysGiveFeedback">
<TextBlock x:Uid="Give_Feedback" />
</HyperlinkButton>
<TextBlock x:Uid="AttributionTitle" Style="{StaticResource SettingsGroupTitleStyle}" />
<HyperlinkButton Margin="0,-3,0,0" NavigateUri="https://github.com/martinchrzan/ColorPicker/">
<TextBlock Text="Martin Chrzan's Color Picker" TextWrapping="Wrap" />
</HyperlinkButton>
</StackPanel>
</RelativePanel>
<VisualStateManager.VisualStateGroups>
<VisualStateGroup x:Name="LayoutVisualStates">
<VisualState x:Name="WideLayout">
@@ -26,109 +115,16 @@
<AdaptiveTrigger MinWindowWidth="0" />
</VisualState.StateTriggers>
<VisualState.Setters>
<Setter Target="SidePanel.(Grid.Column)" Value="0"/>
<Setter Target="SidePanel.Width" Value="Auto"/>
<Setter Target="SidePanel.(Grid.Column)" Value="0" />
<Setter Target="SidePanel.Width" Value="Auto" />
<Setter Target="ColorPickerView.(Grid.Row)" Value="1" />
<Setter Target="LinksPanel.(RelativePanel.RightOf)" Value="AboutImage"/>
<Setter Target="LinksPanel.(RelativePanel.AlignTopWith)" Value="AboutImage"/>
<Setter Target="AboutImage.Margin" Value="0,12,12,0"/>
<Setter Target="LinksPanel.(RelativePanel.RightOf)" Value="AboutImage" />
<Setter Target="LinksPanel.(RelativePanel.AlignTopWith)" Value="AboutImage" />
<Setter Target="AboutImage.Margin" Value="0,12,12,0" />
<Setter Target="AboutTitle.Visibility" Value="Collapsed" />
</VisualState.Setters>
</VisualState>
</VisualStateGroup>
</VisualStateManager.VisualStateGroups>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<StackPanel Orientation="Vertical" x:Name="ColorPickerView">
<ToggleSwitch x:Uid="ColorPicker_EnableColorPicker"
IsOn="{Binding IsEnabled, Mode=TwoWay}"/>
<Custom:HotkeySettingsControl x:Uid="ColorPicker_ActivationShortcut"
Margin="{StaticResource MediumTopMargin}"
HotkeySettings="{x:Bind Path=ViewModel.ActivationShortcut, Mode=TwoWay}"
Keys="Win, Ctrl, Alt, Shift"
Enabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}"
HorizontalAlignment="Left"
MinWidth="240"
/>
<TextBlock x:Uid="ShortcutGuide_Appearance_Behavior"
Style="{StaticResource SettingsGroupTitleStyle}"
Foreground="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled, Converter={StaticResource ModuleEnabledToForegroundConverter}}"/>
<ComboBox x:Uid="ColorPicker_CopiedColorRepresentation"
SelectedIndex="{Binding CopiedColorRepresentationIndex, Mode=TwoWay}"
Margin="{StaticResource SmallTopMargin}"
IsEnabled="{Binding IsEnabled}"
HorizontalAlignment="Left"
MinWidth="240">
<ComboBoxItem Content="HEX - #FFAA00"/>
<ComboBoxItem Content="RGB - rgb(100, 50, 75)"/>
<ComboBoxItem Content="CMYK - cmyk(100%, 50%, 75%, 0%)"/>
<ComboBoxItem Content="HSL - hsl(100, 50%, 75%)"/>
<ComboBoxItem Content="HSV - hsv(100, 50%, 75%)"/>
</ComboBox>
<!--
Disabling this until we have a safer way to reset cursor as
we can hit a state where the cursor doesn't reset
<CheckBox x:Uid="ColorPicker_ChangeCursor"
IsChecked="{Binding ChangeCursor, Mode=TwoWay}"
Margin="{StaticResource SmallTopMargin}"
IsEnabled="{Binding IsEnabled}"/>
-->
</StackPanel>
<RelativePanel x:Name="SidePanel"
HorizontalAlignment="Left"
Width="{StaticResource SidePanelWidth}"
Grid.Column="1">
<StackPanel x:Name="DescriptionPanel">
<TextBlock x:Uid="About_ColorPicker" x:Name="AboutTitle" Grid.ColumnSpan="2"
Style="{StaticResource SettingsGroupTitleStyle}"
Margin="{StaticResource XSmallBottomMargin}"/>
<TextBlock x:Uid="ColorPicker_Description"
TextWrapping="Wrap"
Grid.Row="1" />
</StackPanel>
<Border x:Name="AboutImage"
CornerRadius="4"
Grid.Row="2"
MaxWidth="240"
HorizontalAlignment="Left"
Margin="{StaticResource SmallTopBottomMargin}"
RelativePanel.Below="DescriptionPanel">
<Image x:Uid="ColorPicker_Image" Source="ms-appx:///Assets/Modules/ColorPicker.png" />
</Border>
<StackPanel x:Name="LinksPanel"
Margin="0,1,0,0"
RelativePanel.Below="AboutImage"
Orientation="Vertical" >
<HyperlinkButton NavigateUri="https://aka.ms/PowerToysOverview_ColorPicker">
<TextBlock x:Uid="Module_overview" />
</HyperlinkButton>
<HyperlinkButton NavigateUri="https://aka.ms/powerToysGiveFeedback">
<TextBlock x:Uid="Give_Feedback" />
</HyperlinkButton>
<TextBlock
x:Uid="AttributionTitle"
Style="{StaticResource SettingsGroupTitleStyle}" />
<HyperlinkButton Margin="0,-3,0,0"
NavigateUri="https://github.com/martinchrzan/ColorPicker/">
<TextBlock Text="Martin Chrzan's Color Picker" TextWrapping="Wrap" />
</HyperlinkButton>
</StackPanel>
</RelativePanel>
</Grid>
</Page>

View File

@@ -21,5 +21,33 @@ namespace Microsoft.PowerToys.Settings.UI.Views
DataContext = ViewModel;
InitializeComponent();
}
/// <summary>
/// Event is called when the <see cref="ComboBox"/> is completely loaded, inclusive the ItemSource
/// </summary>
/// <param name="sender">The sender of this event</param>
/// <param name="e">The arguments of this event</param>
private void ColorPicker_ComboBox_Loaded(object sender, Windows.UI.Xaml.RoutedEventArgs e)
{
/**
* UWP hack
* because UWP load the bound ItemSource of the ComboBox asynchronous,
* so after InitializeComponent() the ItemSource is still empty and can't automatically select a entry.
* Selection via SelectedItem and SelectedValue is still not working too
*/
var index = 0;
foreach (var item in ViewModel.SelectableColorRepresentations)
{
if (item.Key == ViewModel.SelectedColorRepresentationValue)
{
break;
}
index++;
}
ColorPicker_ComboBox.SelectedIndex = index;
}
}
}

View File

@@ -90,6 +90,15 @@
Margin="0, 17, 0, 0"
IsChecked="{x:Bind Mode=TwoWay, Path=ViewModel.RestoreFlagsOnLaunch}"
IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}"/>
<TextBlock x:Uid="PowerRename_BehaviorHeader"
Style="{StaticResource SettingsGroupTitleStyle}"
Foreground="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled, Converter={StaticResource ModuleEnabledToForegroundConverter}}"/>
<CheckBox x:Uid="PowerRename_Toggle_UseBoostLib"
Margin="{StaticResource SmallTopMargin}"
IsChecked="{x:Bind Mode=TwoWay, Path=ViewModel.UseBoostLib}"
IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}"/>
</StackPanel>

View File

@@ -109,24 +109,6 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AppDescription" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft.PowerToys.Settings.UI]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft.PowerToys.Settings.UI]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AppDisplayName" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft.PowerToys.Settings.UI]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft.PowerToys.Settings.UI]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Appearance_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Appearance]]></Val>
@@ -136,7 +118,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Attribution]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -154,7 +136,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -190,7 +172,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -237,14 +219,17 @@
</Item>
<Item ItemId=";FancyZones_BorderColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
<Val><![CDATA[Zone border color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Barva ohraničení zóny (výchozí: #FFFFFF)]]></Val>
<Val><![CDATA[Barva ohraničení zóny]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Create window layouts to help make multi-tasking easy.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -253,7 +238,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keep windows in their zones when the screen resolution changes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -262,7 +247,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Editor_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Editor]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable FancyZones]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -307,30 +301,39 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
<Val><![CDATA[Open layout editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Otevřít editor zón]]></Val>
<Val><![CDATA[Otevřít editor rozložení]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_InActiveColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
<Val><![CDATA[Zone inactive color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Barva neaktivní zóny (výchozí: #F5FCFF)]]></Val>
<Val><![CDATA[Barva neaktivní zóny]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
<Val><![CDATA[Launch layout editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Spustit editor zón]]></Val>
<Val><![CDATA[Spustit editor rozložení]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -361,7 +364,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Move windows based on their position]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -433,6 +436,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_WindowBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Window behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Chování okna]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_ZoneBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone behavior]]></Val>
@@ -444,10 +456,13 @@
</Item>
<Item ItemId=";FancyZones_ZoneHighlightColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
<Val><![CDATA[Zone highlight color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Barva zvýraznění zóny (výchozí: #0078D7)]]></Val>
<Val><![CDATA[Barva zvýraznění zóny]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -460,7 +475,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[FancyZones windows]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -469,7 +484,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[File]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -541,7 +556,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Markdown (.md) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -550,7 +565,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -559,7 +574,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) thumbnails]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -595,7 +610,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Report a bug]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -604,7 +619,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Request a feature]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -613,7 +628,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Restart as administrator]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -696,10 +711,13 @@
</Item>
<Item ItemId=";GeneralSettings_VersionIsLatest" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
<Val><![CDATA[PowerToys is up-to-date.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Máte nejnovější dostupnou verzi.]]></Val>
<Val><![CDATA[Sada PowerToys je aktuální.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -856,7 +874,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Image Resizer]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1081,7 +1099,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fill]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1090,7 +1108,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fit]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1099,7 +1117,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Stretch]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1189,6 +1207,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KBM_KeysCannotBeRemapped.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Learn more about remapping limitations]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Další informace o omezeních nového mapování]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_ConfigHeader.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Current configuration]]></Val>
@@ -1216,7 +1243,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keyboard Manager]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1297,7 +1324,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Key Remapping]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1333,7 +1360,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For Target Application]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1342,12 +1369,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Module overview]]></Val>
<Val><![CDATA[Learn more]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Přehled modulu]]></Val>
<Val><![CDATA[Další informace]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Module overview]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1407,14 +1437,17 @@
</Item>
<Item ItemId=";PowerLauncher_DisableDriveDetectionWarning.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
<Val><![CDATA[Disable drive detection warning for the file search plugin]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zakázat upozornění na zjištěné jednotky pro modul plug-in indexeru]]></Val>
<Val><![CDATA[Zakázat upozornění na zjištěné jednotky pro modul plug-in pro hledání souborů]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerToys Run]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1441,7 +1474,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open console]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1585,6 +1618,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_BehaviorHeader.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Chování]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[A Windows Shell extension for more advanced bulk renaming using search and replace or regular expressions.]]></Val>
@@ -1603,7 +1645,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shell integration]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1621,7 +1663,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerRename]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1666,6 +1708,12 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_UseBoostLib.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Use Boost library (provides extended features but may use different regex syntax)]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerToys_Icon.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys Icon]]></Val>
@@ -1693,7 +1741,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Dark]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1702,7 +1750,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Default.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Default.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Windows default]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1711,7 +1759,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Light.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Light.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Light]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1738,7 +1786,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Odebrat]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveTooltip.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1813,15 +1870,6 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Shell_Main.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Main]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Hlavní]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Shell_PowerLauncher.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys Run]]></Val>
@@ -1876,7 +1924,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Shortcut Guide]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1921,7 +1969,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Windows_Color_Settings.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Windows_Color_Settings.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Windows color settings]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">

View File

@@ -118,7 +118,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Attribution]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -136,7 +136,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -172,7 +172,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -219,14 +219,17 @@
</Item>
<Item ItemId=";FancyZones_BorderColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
<Val><![CDATA[Zone border color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Farbe für Zonenrahmen (Standardwert: #FFFFFF)]]></Val>
<Val><![CDATA[Farbe für Zonenrahmen]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Create window layouts to help make multi-tasking easy.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -235,7 +238,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keep windows in their zones when the screen resolution changes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -244,7 +247,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Editor_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Editor]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable FancyZones]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -289,30 +301,39 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
<Val><![CDATA[Open layout editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zonen-Editor öffnen]]></Val>
<Val><![CDATA[Layout-Editor öffnen]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_InActiveColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
<Val><![CDATA[Zone inactive color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Farbe für inaktive Zonen (Standardwert: #F5FCFF)]]></Val>
<Val><![CDATA[Farbe für inaktive Zonen]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
<Val><![CDATA[Launch layout editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zonen-Editor starten]]></Val>
<Val><![CDATA[Layout-Editor starten]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -343,7 +364,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Move windows based on their position]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -415,6 +436,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_WindowBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Window behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Fensterverhalten]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_ZoneBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone behavior]]></Val>
@@ -426,10 +456,13 @@
</Item>
<Item ItemId=";FancyZones_ZoneHighlightColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
<Val><![CDATA[Zone highlight color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Farbe für Zonenhervorhebung (Standardwert: #0078D7)]]></Val>
<Val><![CDATA[Farbe für Zonenhervorhebung]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -442,7 +475,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[FancyZones windows]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -451,7 +484,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[File]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -523,7 +556,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Markdown (.md) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -532,7 +565,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -541,7 +574,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) thumbnails]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -577,7 +610,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Report a bug]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -586,7 +619,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Request a feature]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -595,7 +628,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Restart as administrator]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -678,10 +711,13 @@
</Item>
<Item ItemId=";GeneralSettings_VersionIsLatest" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
<Val><![CDATA[PowerToys is up-to-date.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Sie verfügen über die neueste verfügbare Version.]]></Val>
<Val><![CDATA[PowerToys ist auf dem neuesten Stand.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -838,7 +874,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Image Resizer]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1063,7 +1099,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fill]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1072,7 +1108,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fit]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1081,7 +1117,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Stretch]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1171,6 +1207,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KBM_KeysCannotBeRemapped.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Learn more about remapping limitations]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Weitere Informationen zu Einschränkungen bei der Neuzuordnung]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_ConfigHeader.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Current configuration]]></Val>
@@ -1198,7 +1243,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keyboard Manager]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1279,7 +1324,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Key Remapping]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1315,7 +1360,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For Target Application]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1324,12 +1369,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Module overview]]></Val>
<Val><![CDATA[Learn more]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Modulübersicht]]></Val>
<Val><![CDATA[Weitere Informationen]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Module overview]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1389,14 +1437,17 @@
</Item>
<Item ItemId=";PowerLauncher_DisableDriveDetectionWarning.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
<Val><![CDATA[Disable drive detection warning for the file search plugin]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Warnung zur Laufwerkserkennung für das Indexer-Plug-In deaktivieren]]></Val>
<Val><![CDATA[Warnung zur Laufwerkserkennung für das Plug-In zur Dateisuche deaktivieren]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerToys Run]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1423,7 +1474,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open console]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1567,6 +1618,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_BehaviorHeader.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Verhalten]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[A Windows Shell extension for more advanced bulk renaming using search and replace or regular expressions.]]></Val>
@@ -1585,7 +1645,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shell integration]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1603,7 +1663,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerRename]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1648,6 +1708,12 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_UseBoostLib.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Use Boost library (provides extended features but may use different regex syntax)]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerToys_Icon.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys Icon]]></Val>
@@ -1675,7 +1741,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Dark]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1720,7 +1786,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Entfernen]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveTooltip.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1849,7 +1924,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Shortcut Guide]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1894,7 +1969,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Windows_Color_Settings.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Item ItemId=";Windows_Color_Settings.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Windows color settings]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">

View File

@@ -23,7 +23,7 @@
<Str Cat="Text">
<Val><![CDATA[About FancyZones]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Acerca de Diseños sofisticados]]></Val>
<Val><![CDATA[Acerca de FancyZones]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
@@ -109,24 +109,6 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AppDescription" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft.PowerToys.Settings.UI]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft.PowerToys.Settings.UI]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AppDisplayName" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft.PowerToys.Settings.UI]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft.PowerToys.Settings.UI]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Appearance_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Appearance]]></Val>
@@ -136,7 +118,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Attribution]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -154,7 +136,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -190,7 +172,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -237,14 +219,17 @@
</Item>
<Item ItemId=";FancyZones_BorderColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zone border color]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Color del borde de la zona (valor predeterminado: #FFFFFF)]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Create window layouts to help make multi-tasking easy.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -253,7 +238,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keep windows in their zones when the screen resolution changes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -262,11 +247,20 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Editor_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Editor]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable FancyZones]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Habilitar los Diseños sofisticados]]></Val>
<Val><![CDATA[Habilitar FancyZones]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
@@ -307,30 +301,39 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Open layout editor]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Abrir el editor de zonas]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_InActiveColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zone inactive color]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Color inactivo de la zona (valor predeterminado: #F5FCFF)]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Launch layout editor]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Iniciar el editor de zonas]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -361,7 +364,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Move windows based on their position]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -433,6 +436,12 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_WindowBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Window behavior]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_ZoneBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone behavior]]></Val>
@@ -444,10 +453,13 @@
</Item>
<Item ItemId=";FancyZones_ZoneHighlightColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zone highlight color]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Color del resaltado de la zona (valor predeterminado: #0078D7)]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -460,16 +472,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[FancyZones windows]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Ventanas de Diseños sofisticados]]></Val>
<Val><![CDATA[Ventanas de FancyZones]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[File]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -541,7 +553,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Markdown (.md) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -550,7 +562,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -559,7 +571,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) thumbnails]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -595,7 +607,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Report a bug]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -604,7 +616,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Request a feature]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -613,7 +625,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Restart as administrator]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -696,10 +708,13 @@
</Item>
<Item ItemId=";GeneralSettings_VersionIsLatest" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys is up-to-date.]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Tiene la última versión disponible.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -856,7 +871,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Image Resizer]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1081,7 +1096,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fill]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1090,7 +1105,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fit]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1099,7 +1114,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Stretch]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1189,6 +1204,12 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KBM_KeysCannotBeRemapped.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Learn more about remapping limitations]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_ConfigHeader.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Current configuration]]></Val>
@@ -1216,7 +1237,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keyboard Manager]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1297,7 +1318,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Key Remapping]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1333,7 +1354,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For Target Application]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1342,12 +1363,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Module overview]]></Val>
<Val><![CDATA[Learn more]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Información general del módulo]]></Val>
<Val><![CDATA[Más información]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Module overview]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1407,14 +1431,17 @@
</Item>
<Item ItemId=";PowerLauncher_DisableDriveDetectionWarning.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Disable drive detection warning for the file search plugin]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Deshabilitar la advertencia de detección de la unidad para el complemento del indexador]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerToys Run]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1441,7 +1468,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open console]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1585,6 +1612,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_BehaviorHeader.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Comportamiento]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[A Windows Shell extension for more advanced bulk renaming using search and replace or regular expressions.]]></Val>
@@ -1603,7 +1639,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shell integration]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1621,7 +1657,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerRename]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1666,6 +1702,12 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_UseBoostLib.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Use Boost library (provides extended features but may use different regex syntax)]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerToys_Icon.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys Icon]]></Val>
@@ -1693,7 +1735,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Dark]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1702,7 +1744,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Default.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Default.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Windows default]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1711,7 +1753,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Light.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Light.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Light]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1738,7 +1780,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Quitar]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveTooltip.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1781,7 +1832,7 @@
<Str Cat="Text">
<Val><![CDATA[FancyZones]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Diseños sofisticados]]></Val>
<Val><![CDATA[FancyZones]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
@@ -1813,15 +1864,6 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Shell_Main.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Main]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Principal]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Shell_PowerLauncher.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys Run]]></Val>
@@ -1876,7 +1918,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Shortcut Guide]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1921,7 +1963,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Windows_Color_Settings.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Windows_Color_Settings.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Windows color settings]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">

View File

@@ -109,24 +109,6 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AppDescription" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft.PowerToys.Settings.UI]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft.PowerToys.Settings.UI]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AppDisplayName" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft.PowerToys.Settings.UI]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft.PowerToys.Settings.UI]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Appearance_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Appearance]]></Val>
@@ -136,7 +118,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Attribution]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -154,7 +136,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -190,7 +172,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -237,14 +219,17 @@
</Item>
<Item ItemId=";FancyZones_BorderColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
<Val><![CDATA[Zone border color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Couleur de bordure de zone (par défaut : #FFFFFF)]]></Val>
<Val><![CDATA[Couleur de bordure de zone]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Create window layouts to help make multi-tasking easy.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -253,7 +238,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keep windows in their zones when the screen resolution changes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -262,7 +247,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Editor_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Éditeur]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable FancyZones]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -307,30 +301,39 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
<Val><![CDATA[Open layout editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Ouvrir l'éditeur de zones]]></Val>
<Val><![CDATA[Ouvrir l'éditeur de disposition]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_InActiveColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
<Val><![CDATA[Zone inactive color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Couleur d'inactivité de zone (par défaut : #F5FCFF)]]></Val>
<Val><![CDATA[Couleur d'inactivité de zone]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
<Val><![CDATA[Launch layout editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Lancer l'éditeur de zones]]></Val>
<Val><![CDATA[Lancer l'éditeur de disposition]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -361,7 +364,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Move windows based on their position]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -433,6 +436,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_WindowBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Window behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Comportement de la fenêtre]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_ZoneBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone behavior]]></Val>
@@ -444,10 +456,13 @@
</Item>
<Item ItemId=";FancyZones_ZoneHighlightColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
<Val><![CDATA[Zone highlight color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Couleur de surbrillance de la zone (par défaut : #0078D7)]]></Val>
<Val><![CDATA[Couleur de surbrillance de la zone]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -460,7 +475,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[FancyZones windows]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -469,7 +484,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[File]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -541,7 +556,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Markdown (.md) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -550,7 +565,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -559,7 +574,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) thumbnails]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -595,7 +610,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Report a bug]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -604,7 +619,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Request a feature]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -613,7 +628,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Restart as administrator]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -696,10 +711,13 @@
</Item>
<Item ItemId=";GeneralSettings_VersionIsLatest" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
<Val><![CDATA[PowerToys is up-to-date.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Vous avez la dernière version disponible.]]></Val>
<Val><![CDATA[PowerToys est à jour.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -856,7 +874,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Image Resizer]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1081,7 +1099,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fill]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1090,7 +1108,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fit]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1099,7 +1117,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Stretch]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1189,6 +1207,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KBM_KeysCannotBeRemapped.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Learn more about remapping limitations]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[En savoir plus sur les limitations de remappage]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_ConfigHeader.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Current configuration]]></Val>
@@ -1216,7 +1243,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keyboard Manager]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1297,7 +1324,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Key Remapping]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1333,7 +1360,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For Target Application]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1342,12 +1369,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Module overview]]></Val>
<Val><![CDATA[Learn more]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Vue d'ensemble du module]]></Val>
<Val><![CDATA[En savoir plus]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Module overview]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1407,14 +1437,17 @@
</Item>
<Item ItemId=";PowerLauncher_DisableDriveDetectionWarning.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
<Val><![CDATA[Disable drive detection warning for the file search plugin]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Désactiver l'avertissement de détection de lecteur pour le plug-in de l'indexeur]]></Val>
<Val><![CDATA[Désactiver l'avertissement de détection de lecteur pour le plug-in de recherche de fichiers]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerToys Run]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1441,7 +1474,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open console]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1585,6 +1618,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_BehaviorHeader.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Comportement]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[A Windows Shell extension for more advanced bulk renaming using search and replace or regular expressions.]]></Val>
@@ -1603,7 +1645,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shell integration]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1621,7 +1663,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerRename]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1666,6 +1708,12 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_UseBoostLib.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Use Boost library (provides extended features but may use different regex syntax)]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerToys_Icon.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys Icon]]></Val>
@@ -1693,7 +1741,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Dark]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1702,7 +1750,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Default.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Default.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Windows default]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1711,7 +1759,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Light.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Light.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Light]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1738,7 +1786,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Supprimer]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveTooltip.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1813,15 +1870,6 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Shell_Main.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Main]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Principal]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Shell_PowerLauncher.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys Run]]></Val>
@@ -1876,7 +1924,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Shortcut Guide]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1921,7 +1969,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Windows_Color_Settings.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Windows_Color_Settings.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Windows color settings]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">

View File

@@ -118,7 +118,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Attribution]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -136,7 +136,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -172,7 +172,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -219,14 +219,17 @@
</Item>
<Item ItemId=";FancyZones_BorderColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zone border color]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Zóna szegélyszíne (alapértelmezett érték: #FFFFFF)]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Create window layouts to help make multi-tasking easy.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -235,7 +238,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keep windows in their zones when the screen resolution changes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -244,7 +247,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Editor_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Szerkesztő]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable FancyZones]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -289,30 +301,39 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Open layout editor]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[A zónaszerkesztő megnyitása]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_InActiveColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zone inactive color]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Zóna inaktív színe (alapértelmezett érték: #F5FCFF)]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Launch layout editor]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Zónaszerkesztő indítása]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -343,7 +364,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Move windows based on their position]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -415,6 +436,12 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_WindowBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Window behavior]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_ZoneBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone behavior]]></Val>
@@ -426,10 +453,13 @@
</Item>
<Item ItemId=";FancyZones_ZoneHighlightColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zone highlight color]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Zóna kiemelőszíne (alapértelmezett érték: #0078D7)]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -442,7 +472,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[FancyZones windows]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -451,7 +481,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[File]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -523,7 +553,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Markdown (.md) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -532,7 +562,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -541,7 +571,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) thumbnails]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -577,7 +607,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Report a bug]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -586,7 +616,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Request a feature]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -595,7 +625,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Restart as administrator]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -678,10 +708,13 @@
</Item>
<Item ItemId=";GeneralSettings_VersionIsLatest" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys is up-to-date.]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[A legújabb elérhető verziót használja.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -838,7 +871,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Image Resizer]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1063,7 +1096,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fill]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1072,7 +1105,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fit]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1081,7 +1114,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Stretch]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1171,6 +1204,12 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KBM_KeysCannotBeRemapped.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Learn more about remapping limitations]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_ConfigHeader.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Current configuration]]></Val>
@@ -1198,7 +1237,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keyboard Manager]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1279,7 +1318,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Key Remapping]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1315,7 +1354,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For Target Application]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1324,12 +1363,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Module overview]]></Val>
<Val><![CDATA[Learn more]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Modul áttekintése]]></Val>
<Val><![CDATA[További információ]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Module overview]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1389,14 +1431,17 @@
</Item>
<Item ItemId=";PowerLauncher_DisableDriveDetectionWarning.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Disable drive detection warning for the file search plugin]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[A meghajtóészlelési figyelmeztetés letiltása az indexelő beépülő modul esetében]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerToys Run]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1423,7 +1468,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open console]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1567,6 +1612,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_BehaviorHeader.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Viselkedés]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[A Windows Shell extension for more advanced bulk renaming using search and replace or regular expressions.]]></Val>
@@ -1585,7 +1639,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shell integration]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1603,7 +1657,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerRename]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1648,6 +1702,12 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_UseBoostLib.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Use Boost library (provides extended features but may use different regex syntax)]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerToys_Icon.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys Icon]]></Val>
@@ -1675,7 +1735,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Dark]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1720,7 +1780,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Eltávolítás]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveTooltip.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1849,7 +1918,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Shortcut Guide]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1894,7 +1963,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Windows_Color_Settings.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Item ItemId=";Windows_Color_Settings.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Windows color settings]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">

View File

@@ -1618,6 +1618,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_BehaviorHeader.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Comportamento]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[A Windows Shell extension for more advanced bulk renaming using search and replace or regular expressions.]]></Val>
@@ -1699,6 +1709,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_UseBoostLib.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Use Boost library (provides extended features but may use different regex syntax)]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Usare la libreria Boost (fornisce funzionalità estese ma può usare una sintassi regex diversa)]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerToys_Icon.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys Icon]]></Val>

View File

@@ -118,7 +118,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Attribution]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -136,7 +136,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -172,7 +172,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -219,14 +219,17 @@
</Item>
<Item ItemId=";FancyZones_BorderColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
<Val><![CDATA[Zone border color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[ゾーンの境界線の色 (既定値: #FFFFFF)]]></Val>
<Val><![CDATA[ゾーンの境界線の色]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Create window layouts to help make multi-tasking easy.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -235,7 +238,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keep windows in their zones when the screen resolution changes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -244,7 +247,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Editor_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[エディター]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable FancyZones]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -289,30 +301,39 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
<Val><![CDATA[Open layout editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[ゾーン エディターを開く]]></Val>
<Val><![CDATA[レイアウト エディターを開く]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_InActiveColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
<Val><![CDATA[Zone inactive color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[ゾーンの非アクティブの色 (既定値: #F5FCFF)]]></Val>
<Val><![CDATA[ゾーンの非アクティブの色]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
<Val><![CDATA[Launch layout editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[ゾーン エディターの起動]]></Val>
<Val><![CDATA[レイアウト エディターの起動]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -343,7 +364,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Move windows based on their position]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -415,6 +436,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_WindowBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Window behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[ウィンドウの動作]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_ZoneBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone behavior]]></Val>
@@ -426,10 +456,13 @@
</Item>
<Item ItemId=";FancyZones_ZoneHighlightColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
<Val><![CDATA[Zone highlight color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[ゾーンの強調表示の色 (既定値: #0078D7)]]></Val>
<Val><![CDATA[ゾーンの強調表示の色]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -442,7 +475,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[FancyZones windows]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -451,7 +484,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[File]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -523,7 +556,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Markdown (.md) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -532,7 +565,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -541,7 +574,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) thumbnails]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -577,7 +610,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Report a bug]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -586,7 +619,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Request a feature]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -595,7 +628,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Restart as administrator]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -678,10 +711,13 @@
</Item>
<Item ItemId=";GeneralSettings_VersionIsLatest" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
<Val><![CDATA[PowerToys is up-to-date.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[利用可能な最新バージョンがあります。]]></Val>
<Val><![CDATA[PowerToys は最新の状態です。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -838,7 +874,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Image Resizer]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1063,7 +1099,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fill]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1072,7 +1108,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fit]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1081,7 +1117,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Stretch]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1171,6 +1207,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KBM_KeysCannotBeRemapped.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Learn more about remapping limitations]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[再マップの制限に関する詳細情報]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_ConfigHeader.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Current configuration]]></Val>
@@ -1198,7 +1243,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keyboard Manager]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1279,7 +1324,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Key Remapping]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1315,7 +1360,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For Target Application]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1324,12 +1369,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Module overview]]></Val>
<Val><![CDATA[Learn more]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[モジュールの概要]]></Val>
<Val><![CDATA[詳細情報]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Module overview]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1389,14 +1437,17 @@
</Item>
<Item ItemId=";PowerLauncher_DisableDriveDetectionWarning.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
<Val><![CDATA[Disable drive detection warning for the file search plugin]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[インデクサー プラグインのドライブ検出時の警告を無効にする]]></Val>
<Val><![CDATA[ファイル検索プラグインのドライブ検出時の警告を無効にする]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerToys Run]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1423,7 +1474,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open console]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1567,6 +1618,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_BehaviorHeader.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[動作]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[A Windows Shell extension for more advanced bulk renaming using search and replace or regular expressions.]]></Val>
@@ -1585,7 +1645,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shell integration]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1603,7 +1663,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerRename]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1648,6 +1708,12 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_UseBoostLib.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Use Boost library (provides extended features but may use different regex syntax)]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerToys_Icon.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys Icon]]></Val>
@@ -1675,7 +1741,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Dark]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1720,7 +1786,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[削除]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveTooltip.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1849,7 +1924,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Shortcut Guide]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1894,7 +1969,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Windows_Color_Settings.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Item ItemId=";Windows_Color_Settings.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Windows color settings]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">

View File

@@ -118,7 +118,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Attribution]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -136,7 +136,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -172,7 +172,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -219,14 +219,17 @@
</Item>
<Item ItemId=";FancyZones_BorderColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
<Val><![CDATA[Zone border color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[영역 테두리 색(기본값: #FFFFFF)]]></Val>
<Val><![CDATA[영역 테두리 색]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Create window layouts to help make multi-tasking easy.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -235,7 +238,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keep windows in their zones when the screen resolution changes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -244,7 +247,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Editor_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[편집기]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable FancyZones]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -289,30 +301,39 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
<Val><![CDATA[Open layout editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[영역 편집기 열기]]></Val>
<Val><![CDATA[레이아웃 편집기 열기]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_InActiveColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
<Val><![CDATA[Zone inactive color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[영역 비활성 색(기본값: #F5FCFF)]]></Val>
<Val><![CDATA[영역 비활성 색]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
<Val><![CDATA[Launch layout editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[영역 편집기 시작]]></Val>
<Val><![CDATA[레이아웃 편집기 시작]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -343,7 +364,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Move windows based on their position]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -383,7 +404,7 @@
<Str Cat="Text">
<Val><![CDATA[Hold Shift key to activate zones while dragging]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[&lt;Shift&gt; 키를 누른 채로 끌어와서 영역 활성화]]></Val>
<Val><![CDATA[Shift 키를 누른 채로 끌어와서 영역 활성화]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
@@ -415,6 +436,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_WindowBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Window behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[창 동작]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_ZoneBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone behavior]]></Val>
@@ -426,10 +456,13 @@
</Item>
<Item ItemId=";FancyZones_ZoneHighlightColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
<Val><![CDATA[Zone highlight color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[영역 강조 색(기본값: #0078D7)]]></Val>
<Val><![CDATA[영역 강조 색]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -437,12 +470,12 @@
<Str Cat="Text">
<Val><![CDATA[During zone layout changes, windows assigned to a zone will match new size/positions]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[영역 레이아웃 변경하는 동안 영역에 할당 새 크기/위치와 일치하게 변경됩니다.]]></Val>
<Val><![CDATA[영역 레이아웃 변경 시, 영역에 할당되어 있던 새 크기/위치에 맞게 변경]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[FancyZones windows]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -451,7 +484,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[File]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -523,7 +556,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Markdown (.md) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -532,7 +565,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -541,7 +574,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) thumbnails]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -577,7 +610,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Report a bug]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -586,7 +619,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Request a feature]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -595,7 +628,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Restart as administrator]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -678,10 +711,13 @@
</Item>
<Item ItemId=";GeneralSettings_VersionIsLatest" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
<Val><![CDATA[PowerToys is up-to-date.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[사용 가능한 최신 버전이 있습니다.]]></Val>
<Val><![CDATA[PowerToys가 최신 상태입니다.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -838,7 +874,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Image Resizer]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1063,7 +1099,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fill]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1072,7 +1108,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fit]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1081,7 +1117,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Stretch]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1171,6 +1207,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KBM_KeysCannotBeRemapped.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Learn more about remapping limitations]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[다시 매핑 제한에 대한 자세한 정보]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_ConfigHeader.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Current configuration]]></Val>
@@ -1198,7 +1243,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keyboard Manager]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1279,7 +1324,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Key Remapping]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1315,7 +1360,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For Target Application]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1324,12 +1369,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Module overview]]></Val>
<Val><![CDATA[Learn more]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[모듈 개요]]></Val>
<Val><![CDATA[자세한 정보]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Module overview]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1389,14 +1437,17 @@
</Item>
<Item ItemId=";PowerLauncher_DisableDriveDetectionWarning.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
<Val><![CDATA[Disable drive detection warning for the file search plugin]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[인덱서 플러그 인에 대한 드라이브 검색 경고 사용 안 함]]></Val>
<Val><![CDATA[파일 검색 플러그 인에 대한 드라이브 검색 경고 사용 안 함]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerToys Run]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1423,7 +1474,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open console]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1567,6 +1618,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_BehaviorHeader.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[동작]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[A Windows Shell extension for more advanced bulk renaming using search and replace or regular expressions.]]></Val>
@@ -1585,7 +1645,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shell integration]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1603,7 +1663,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerRename]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1648,6 +1708,12 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_UseBoostLib.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Use Boost library (provides extended features but may use different regex syntax)]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerToys_Icon.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys Icon]]></Val>
@@ -1675,7 +1741,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Dark]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1720,7 +1786,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[제거]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveTooltip.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1849,7 +1924,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Shortcut Guide]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1894,7 +1969,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Windows_Color_Settings.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Item ItemId=";Windows_Color_Settings.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Windows color settings]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">

View File

@@ -118,7 +118,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Attribution]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -136,7 +136,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -172,7 +172,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -219,14 +219,17 @@
</Item>
<Item ItemId=";FancyZones_BorderColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
<Val><![CDATA[Zone border color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Randkleur van zone (standaard: #FFFFFF)]]></Val>
<Val><![CDATA[Randkleur van zone]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Create window layouts to help make multi-tasking easy.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -235,7 +238,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keep windows in their zones when the screen resolution changes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -244,7 +247,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Editor_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Editor]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable FancyZones]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -289,30 +301,39 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
<Val><![CDATA[Open layout editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zone-editor openen]]></Val>
<Val><![CDATA[Lay-outeditor openen]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_InActiveColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
<Val><![CDATA[Zone inactive color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Kleur van inactieve zone (standaard: #F5FCFF)]]></Val>
<Val><![CDATA[Kleur van inactieve zone]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
<Val><![CDATA[Launch layout editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zone-editor starten]]></Val>
<Val><![CDATA[Lay-outeditor starten]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -343,7 +364,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Move windows based on their position]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -415,6 +436,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_WindowBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Window behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Venstergedrag]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_ZoneBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone behavior]]></Val>
@@ -426,10 +456,13 @@
</Item>
<Item ItemId=";FancyZones_ZoneHighlightColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
<Val><![CDATA[Zone highlight color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Markeringskleur van zone (standaard: #0078D7)]]></Val>
<Val><![CDATA[Markeringskleur van zone]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -442,7 +475,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[FancyZones windows]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -451,7 +484,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[File]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -523,7 +556,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Markdown (.md) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -532,7 +565,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -541,7 +574,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) thumbnails]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -577,7 +610,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Report a bug]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -586,7 +619,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Request a feature]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -595,7 +628,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Restart as administrator]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -678,10 +711,13 @@
</Item>
<Item ItemId=";GeneralSettings_VersionIsLatest" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
<Val><![CDATA[PowerToys is up-to-date.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[U beschikt over de nieuwste versie.]]></Val>
<Val><![CDATA[PowerToys is up-to-date.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -838,7 +874,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Image Resizer]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1063,7 +1099,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fill]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1072,7 +1108,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fit]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1081,7 +1117,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Stretch]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1171,6 +1207,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KBM_KeysCannotBeRemapped.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Learn more about remapping limitations]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Meer informatie over het opnieuw toewijzen van beperkingen]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_ConfigHeader.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Current configuration]]></Val>
@@ -1198,7 +1243,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keyboard Manager]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1279,7 +1324,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Key Remapping]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1315,7 +1360,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For Target Application]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1324,12 +1369,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Module overview]]></Val>
<Val><![CDATA[Learn more]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Moduleoverzicht]]></Val>
<Val><![CDATA[Meer informatie]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Module overview]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1389,14 +1437,17 @@
</Item>
<Item ItemId=";PowerLauncher_DisableDriveDetectionWarning.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
<Val><![CDATA[Disable drive detection warning for the file search plugin]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Waarschuwing voor schijfdetectie uitschakelen voor de indexeerfunctie-invoegtoepassing]]></Val>
<Val><![CDATA[Waarschuwing voor schijfdetectie uitschakelen voor de invoegtoepassing voor het zoeken van bestanden]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerToys Run]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1423,7 +1474,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open console]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1567,6 +1618,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_BehaviorHeader.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Gedrag]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[A Windows Shell extension for more advanced bulk renaming using search and replace or regular expressions.]]></Val>
@@ -1585,7 +1645,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shell integration]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1603,7 +1663,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerRename]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1648,6 +1708,12 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_UseBoostLib.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Use Boost library (provides extended features but may use different regex syntax)]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerToys_Icon.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys Icon]]></Val>
@@ -1675,7 +1741,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Dark]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1720,7 +1786,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Verwijderen]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveTooltip.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1849,7 +1924,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Shortcut Guide]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1894,7 +1969,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Windows_Color_Settings.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Item ItemId=";Windows_Color_Settings.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Windows color settings]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">

View File

@@ -23,7 +23,7 @@
<Str Cat="Text">
<Val><![CDATA[About FancyZones]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Fantazyjne strefy — informacje]]></Val>
<Val><![CDATA[FancyZones — informacje]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
@@ -118,7 +118,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Attribution]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -136,7 +136,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -172,7 +172,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -219,14 +219,17 @@
</Item>
<Item ItemId=";FancyZones_BorderColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
<Val><![CDATA[Zone border color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Kolor obramowania strefy (domyślnie: #FFFFFF)]]></Val>
<Val><![CDATA[Kolor obramowania strefy]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Create window layouts to help make multi-tasking easy.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -235,7 +238,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keep windows in their zones when the screen resolution changes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -244,11 +247,20 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Editor_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Edytor]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable FancyZones]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Włącz narzędzie Fantazyjne strefy]]></Val>
<Val><![CDATA[Włącz narzędzie FancyZones]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
@@ -289,30 +301,39 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
<Val><![CDATA[Open layout editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Otwórz edytor stref]]></Val>
<Val><![CDATA[Otwórz edytor układu]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_InActiveColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
<Val><![CDATA[Zone inactive color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Kolor nieaktywny strefy (domyślnie: #F5FCFF)]]></Val>
<Val><![CDATA[Kolor nieaktywny strefy]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
<Val><![CDATA[Launch layout editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Uruchom edytor stref]]></Val>
<Val><![CDATA[Uruchom edytor układu]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -343,7 +364,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Move windows based on their position]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -415,6 +436,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_WindowBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Window behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zachowanie okna]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_ZoneBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone behavior]]></Val>
@@ -426,10 +456,13 @@
</Item>
<Item ItemId=";FancyZones_ZoneHighlightColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
<Val><![CDATA[Zone highlight color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Kolor wyróżnienia strefy (domyślnie: #0078D7)]]></Val>
<Val><![CDATA[Kolor wyróżnienia strefy]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -442,16 +475,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[FancyZones windows]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Okna narzędzia Fantazyjne strefy]]></Val>
<Val><![CDATA[Okna narzędzia FancyZones ]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[File]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -523,7 +556,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Markdown (.md) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -532,7 +565,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -541,7 +574,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) thumbnails]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -577,7 +610,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Report a bug]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -586,7 +619,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Request a feature]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -595,7 +628,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Restart as administrator]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -678,10 +711,13 @@
</Item>
<Item ItemId=";GeneralSettings_VersionIsLatest" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
<Val><![CDATA[PowerToys is up-to-date.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Masz najnowszą dostępną wersję.]]></Val>
<Val><![CDATA[Program PowerToys jest aktualny.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -838,7 +874,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Image Resizer]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1063,7 +1099,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fill]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1072,7 +1108,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fit]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1081,7 +1117,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Stretch]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1171,6 +1207,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KBM_KeysCannotBeRemapped.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Learn more about remapping limitations]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Dowiedz się więcej o ograniczeniach dotyczących ponownego mapowania]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_ConfigHeader.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Current configuration]]></Val>
@@ -1198,7 +1243,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keyboard Manager]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1279,7 +1324,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Key Remapping]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1315,7 +1360,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For Target Application]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1324,12 +1369,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Module overview]]></Val>
<Val><![CDATA[Learn more]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Przegląd modułu]]></Val>
<Val><![CDATA[Dowiedz się więcej]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Module overview]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1389,14 +1437,17 @@
</Item>
<Item ItemId=";PowerLauncher_DisableDriveDetectionWarning.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
<Val><![CDATA[Disable drive detection warning for the file search plugin]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Wyłącz ostrzeżenie o wykrywaniu dysku dla wtyczki indeksatora]]></Val>
<Val><![CDATA[Wyłącz ostrzeżenie o wykrywaniu dysku dla wtyczki do wyszukiwania plików]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerToys Run]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1423,7 +1474,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open console]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1567,6 +1618,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_BehaviorHeader.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zachowanie]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[A Windows Shell extension for more advanced bulk renaming using search and replace or regular expressions.]]></Val>
@@ -1585,7 +1645,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shell integration]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1603,7 +1663,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerRename]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1648,6 +1708,12 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_UseBoostLib.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Use Boost library (provides extended features but may use different regex syntax)]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerToys_Icon.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys Icon]]></Val>
@@ -1675,7 +1741,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Dark]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1720,7 +1786,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Usuń]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveTooltip.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1763,7 +1838,7 @@
<Str Cat="Text">
<Val><![CDATA[FancyZones]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Fantazyjne strefy]]></Val>
<Val><![CDATA[OK, it was localized according to instructions, but can be unlocalized. Global term change should be initiated.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
@@ -1849,7 +1924,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Shortcut Guide]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1894,7 +1969,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Windows_Color_Settings.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Item ItemId=";Windows_Color_Settings.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Windows color settings]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">

View File

@@ -118,7 +118,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Attribution]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -136,7 +136,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -172,7 +172,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -219,14 +219,17 @@
</Item>
<Item ItemId=";FancyZones_BorderColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zone border color]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Cor da borda da zona (Padrão: #FFFFFF)]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Create window layouts to help make multi-tasking easy.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -235,7 +238,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keep windows in their zones when the screen resolution changes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -244,7 +247,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Editor_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Editor]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable FancyZones]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -289,30 +301,39 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Open layout editor]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Abrir o editor de zonas]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_InActiveColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zone inactive color]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Cor inativa da zona (Padrão: #F5FCFF)]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Launch layout editor]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Iniciar o editor de zonas]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -343,7 +364,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Move windows based on their position]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -415,6 +436,12 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_WindowBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Window behavior]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_ZoneBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone behavior]]></Val>
@@ -426,10 +453,13 @@
</Item>
<Item ItemId=";FancyZones_ZoneHighlightColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zone highlight color]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Cor de realce da zona (Padrão: #0078D7)]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -442,7 +472,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[FancyZones windows]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -451,7 +481,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[File]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -523,7 +553,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Markdown (.md) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -532,7 +562,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -541,7 +571,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) thumbnails]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -577,7 +607,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Report a bug]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -586,7 +616,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Request a feature]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -595,7 +625,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Restart as administrator]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -678,10 +708,13 @@
</Item>
<Item ItemId=";GeneralSettings_VersionIsLatest" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys is up-to-date.]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Você tem a versão mais recente disponível.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -838,7 +871,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Image Resizer]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1063,7 +1096,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fill]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1072,7 +1105,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fit]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1081,7 +1114,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Stretch]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1171,6 +1204,12 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KBM_KeysCannotBeRemapped.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Learn more about remapping limitations]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_ConfigHeader.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Current configuration]]></Val>
@@ -1198,7 +1237,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keyboard Manager]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1279,7 +1318,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Key Remapping]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1315,7 +1354,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For Target Application]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1324,12 +1363,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Module overview]]></Val>
<Val><![CDATA[Learn more]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Visão geral do módulo]]></Val>
<Val><![CDATA[Saiba mais]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Module overview]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1389,14 +1431,17 @@
</Item>
<Item ItemId=";PowerLauncher_DisableDriveDetectionWarning.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Disable drive detection warning for the file search plugin]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Desabilitar o aviso de detecção de unidade para o plug-in do indexador]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerToys Run]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1423,7 +1468,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open console]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1567,6 +1612,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_BehaviorHeader.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Comportamento]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[A Windows Shell extension for more advanced bulk renaming using search and replace or regular expressions.]]></Val>
@@ -1585,7 +1639,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shell integration]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1603,7 +1657,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerRename]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1648,6 +1702,12 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_UseBoostLib.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Use Boost library (provides extended features but may use different regex syntax)]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerToys_Icon.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys Icon]]></Val>
@@ -1675,7 +1735,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Dark]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1720,7 +1780,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Remover]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveTooltip.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1849,7 +1918,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Shortcut Guide]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1894,7 +1963,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Windows_Color_Settings.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Item ItemId=";Windows_Color_Settings.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Windows color settings]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">

View File

@@ -23,7 +23,7 @@
<Str Cat="Text">
<Val><![CDATA[About FancyZones]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Acerca dos Esquemas de Zonas]]></Val>
<Val><![CDATA[Acerca das FancyZones]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
@@ -118,7 +118,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Attribution]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -136,7 +136,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -172,7 +172,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -219,14 +219,17 @@
</Item>
<Item ItemId=";FancyZones_BorderColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zone border color]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Cor de limite da zona (Predefinição: #FFFFFF)]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Create window layouts to help make multi-tasking easy.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -235,7 +238,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keep windows in their zones when the screen resolution changes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -244,11 +247,20 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Editor_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Editor]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable FancyZones]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Ativar Esquemas de Zonas]]></Val>
<Val><![CDATA[Ativar FancyZones]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
@@ -289,30 +301,39 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Open layout editor]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Abrir editor de zonas]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_InActiveColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zone inactive color]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Cor inativa da zona (Predefinição: #F5FCFF)]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Launch layout editor]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Iniciar editor de zonas]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -343,7 +364,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Move windows based on their position]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -415,6 +436,12 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_WindowBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Window behavior]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_ZoneBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone behavior]]></Val>
@@ -426,10 +453,13 @@
</Item>
<Item ItemId=";FancyZones_ZoneHighlightColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zone highlight color]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Cor de realce da zona (Predefinição: #0078D7)]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -442,16 +472,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[FancyZones windows]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Janelas dos Esquemas de Zonas]]></Val>
<Val><![CDATA[Janelas de FancyZones]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[File]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -523,7 +553,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Markdown (.md) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -532,7 +562,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -541,7 +571,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) thumbnails]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -577,7 +607,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Report a bug]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -586,7 +616,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Request a feature]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -595,7 +625,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Restart as administrator]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -678,10 +708,13 @@
</Item>
<Item ItemId=";GeneralSettings_VersionIsLatest" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys is up-to-date.]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Tem a versão mais recente disponível.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -838,7 +871,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Image Resizer]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1063,7 +1096,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fill]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1072,7 +1105,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fit]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1081,7 +1114,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Stretch]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1171,6 +1204,12 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KBM_KeysCannotBeRemapped.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Learn more about remapping limitations]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_ConfigHeader.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Current configuration]]></Val>
@@ -1198,7 +1237,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keyboard Manager]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1279,7 +1318,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Key Remapping]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1315,7 +1354,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For Target Application]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1324,12 +1363,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Module overview]]></Val>
<Val><![CDATA[Learn more]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Descrição geral do módulo]]></Val>
<Val><![CDATA[Saiba mais]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Module overview]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1389,14 +1431,17 @@
</Item>
<Item ItemId=";PowerLauncher_DisableDriveDetectionWarning.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Disable drive detection warning for the file search plugin]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Desativar aviso de deteção de unidades para o plug-in do indexador]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerToys Run]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1423,7 +1468,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open console]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1567,6 +1612,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_BehaviorHeader.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Comportamento]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[A Windows Shell extension for more advanced bulk renaming using search and replace or regular expressions.]]></Val>
@@ -1585,7 +1639,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shell integration]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1603,7 +1657,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerRename]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1648,6 +1702,12 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_UseBoostLib.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Use Boost library (provides extended features but may use different regex syntax)]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerToys_Icon.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys Icon]]></Val>
@@ -1675,7 +1735,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Dark]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1720,7 +1780,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Remover]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveTooltip.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1763,7 +1832,7 @@
<Str Cat="Text">
<Val><![CDATA[FancyZones]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Esquemas de Zonas]]></Val>
<Val><![CDATA[FancyZones]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
@@ -1849,7 +1918,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Shortcut Guide]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1894,7 +1963,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Windows_Color_Settings.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Item ItemId=";Windows_Color_Settings.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Windows color settings]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">

View File

@@ -109,24 +109,6 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AppDescription" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft.PowerToys.Settings.UI]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft.PowerToys.Settings.UI]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AppDisplayName" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft.PowerToys.Settings.UI]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft.PowerToys.Settings.UI]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Appearance_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Appearance]]></Val>
@@ -136,7 +118,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Attribution]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -154,7 +136,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -190,7 +172,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -237,14 +219,17 @@
</Item>
<Item ItemId=";FancyZones_BorderColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
<Val><![CDATA[Zone border color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Цвет границы зоны (по умолчанию #FFFFFF)]]></Val>
<Val><![CDATA[Цвет границы зоны]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Create window layouts to help make multi-tasking easy.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -253,7 +238,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keep windows in their zones when the screen resolution changes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -262,7 +247,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Editor_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Редактор]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable FancyZones]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -307,30 +301,39 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
<Val><![CDATA[Open layout editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Открыть редактор зон]]></Val>
<Val><![CDATA[Открытие редактора макета]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_InActiveColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
<Val><![CDATA[Zone inactive color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Неактивный цвет зоны (по умолчанию #F5FCFF)]]></Val>
<Val><![CDATA[Неактивный цвет зоны]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
<Val><![CDATA[Launch layout editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Запустить редактор зон]]></Val>
<Val><![CDATA[Запуск редактора макета]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -361,7 +364,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Move windows based on their position]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -433,6 +436,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_WindowBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Window behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Поведение окна]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_ZoneBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone behavior]]></Val>
@@ -444,10 +456,13 @@
</Item>
<Item ItemId=";FancyZones_ZoneHighlightColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
<Val><![CDATA[Zone highlight color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Цвет выделения зоны (по умолчанию #0078D7)]]></Val>
<Val><![CDATA[Цвет выделения зоны]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -460,7 +475,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[FancyZones windows]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -469,7 +484,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[File]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -541,7 +556,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Markdown (.md) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -550,7 +565,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -559,7 +574,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) thumbnails]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -595,7 +610,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Report a bug]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -604,7 +619,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Request a feature]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -613,7 +628,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Restart as administrator]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -696,10 +711,13 @@
</Item>
<Item ItemId=";GeneralSettings_VersionIsLatest" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
<Val><![CDATA[PowerToys is up-to-date.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[У вас последняя доступная версия.]]></Val>
<Val><![CDATA[PowerToys не требует обновления.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -856,7 +874,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Image Resizer]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1081,7 +1099,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fill]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1090,7 +1108,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fit]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1099,7 +1117,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Stretch]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1189,6 +1207,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KBM_KeysCannotBeRemapped.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Learn more about remapping limitations]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Дополнительные сведения об ограничениях переназначения]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_ConfigHeader.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Current configuration]]></Val>
@@ -1216,7 +1243,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keyboard Manager]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1297,7 +1324,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Key Remapping]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1333,7 +1360,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For Target Application]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1342,12 +1369,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Module overview]]></Val>
<Val><![CDATA[Learn more]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Обзор модуля]]></Val>
<Val><![CDATA[Дополнительные сведения]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Module overview]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1407,14 +1437,17 @@
</Item>
<Item ItemId=";PowerLauncher_DisableDriveDetectionWarning.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
<Val><![CDATA[Disable drive detection warning for the file search plugin]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Отключить предупреждение об обнаружении диска для подключаемого модуля индексатора]]></Val>
<Val><![CDATA[Отключить предупреждение об обнаружении диска для подключаемого модуля поиска файлов]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerToys Run]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1441,7 +1474,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open console]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1585,6 +1618,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_BehaviorHeader.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Поведение]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[A Windows Shell extension for more advanced bulk renaming using search and replace or regular expressions.]]></Val>
@@ -1603,7 +1645,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shell integration]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1621,7 +1663,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerRename]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1666,6 +1708,12 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_UseBoostLib.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Use Boost library (provides extended features but may use different regex syntax)]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerToys_Icon.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys Icon]]></Val>
@@ -1693,7 +1741,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Dark]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1702,7 +1750,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Default.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Default.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Windows default]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1711,7 +1759,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Light.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Light.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Light]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1738,7 +1786,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1747,6 +1795,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveTooltip.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Удаление]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";SettingsPage_SetShortcut.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shortcut setting]]></Val>
@@ -1813,15 +1870,6 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Shell_Main.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Main]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Главный]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Shell_PowerLauncher.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys Run]]></Val>
@@ -1876,7 +1924,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Shortcut Guide]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1921,7 +1969,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Windows_Color_Settings.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Windows_Color_Settings.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Windows color settings]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">

View File

@@ -109,24 +109,6 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AppDescription" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft.PowerToys.Settings.UI]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft.PowerToys.Settings.UI]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AppDisplayName" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft.PowerToys.Settings.UI]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft.PowerToys.Settings.UI]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Appearance_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Appearance]]></Val>
@@ -136,7 +118,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Attribution]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -154,7 +136,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -190,7 +172,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -237,14 +219,17 @@
</Item>
<Item ItemId=";FancyZones_BorderColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
<Val><![CDATA[Zone border color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zonens kantlinjefärg (standard: #FFFFFF)]]></Val>
<Val><![CDATA[Zonkantlinjefärg]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Create window layouts to help make multi-tasking easy.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -253,7 +238,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keep windows in their zones when the screen resolution changes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -262,7 +247,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Editor_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Redigeringsprogram]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable FancyZones]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -307,30 +301,39 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
<Val><![CDATA[Open layout editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Öppna zonredigeraren]]></Val>
<Val><![CDATA[Öppen layoutredigeringsprogrammet]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_InActiveColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
<Val><![CDATA[Zone inactive color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Färg för inaktiv zon (standardinställning: #F5FCFF)]]></Val>
<Val><![CDATA[Färg för inaktiv zon]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
<Val><![CDATA[Launch layout editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Starta zonredigeraren]]></Val>
<Val><![CDATA[Starta layoutredigeringsprogrammet]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -361,7 +364,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Move windows based on their position]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -433,6 +436,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_WindowBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Window behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Fönsterbeteende]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_ZoneBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone behavior]]></Val>
@@ -444,10 +456,13 @@
</Item>
<Item ItemId=";FancyZones_ZoneHighlightColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
<Val><![CDATA[Zone highlight color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Färg för zonmarkering (standardinställning: #0078D7)]]></Val>
<Val><![CDATA[Zonmarkeringsfärg]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -460,7 +475,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[FancyZones windows]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -469,7 +484,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[File]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -541,7 +556,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Markdown (.md) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -550,7 +565,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -559,7 +574,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) thumbnails]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -595,7 +610,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Report a bug]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -604,7 +619,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Request a feature]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -613,7 +628,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Restart as administrator]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -696,10 +711,13 @@
</Item>
<Item ItemId=";GeneralSettings_VersionIsLatest" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
<Val><![CDATA[PowerToys is up-to-date.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Du har den senaste tillgängliga versionen.]]></Val>
<Val><![CDATA[PowerToys är uppdaterat.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -856,7 +874,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Image Resizer]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1081,7 +1099,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fill]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1090,7 +1108,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fit]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1099,7 +1117,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Stretch]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1189,6 +1207,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KBM_KeysCannotBeRemapped.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Learn more about remapping limitations]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Läs mer om ommappmingsbegränsningar]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_ConfigHeader.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Current configuration]]></Val>
@@ -1216,7 +1243,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keyboard Manager]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1297,7 +1324,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Key Remapping]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1333,7 +1360,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For Target Application]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1342,12 +1369,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Module overview]]></Val>
<Val><![CDATA[Learn more]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Modulöversikt]]></Val>
<Val><![CDATA[Läs mer]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Module overview]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1407,14 +1437,17 @@
</Item>
<Item ItemId=";PowerLauncher_DisableDriveDetectionWarning.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
<Val><![CDATA[Disable drive detection warning for the file search plugin]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Inaktivera varning för enhetsidentifiering för indexerings-pluginet]]></Val>
<Val><![CDATA[Inaktivera varning för enhetsidentifiering för plugin-programmet för filsökning]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerToys Run]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1441,7 +1474,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open console]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1585,6 +1618,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_BehaviorHeader.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Funktionssätt]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[A Windows Shell extension for more advanced bulk renaming using search and replace or regular expressions.]]></Val>
@@ -1603,7 +1645,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shell integration]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1621,7 +1663,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerRename]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1666,6 +1708,12 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_UseBoostLib.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Use Boost library (provides extended features but may use different regex syntax)]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerToys_Icon.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys Icon]]></Val>
@@ -1693,7 +1741,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Dark]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1702,7 +1750,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Default.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Default.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Windows default]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1711,7 +1759,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Light.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Light.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Light]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1738,7 +1786,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Ta bort]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveTooltip.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1813,15 +1870,6 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Shell_Main.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Main]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Huvud]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Shell_PowerLauncher.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys Run]]></Val>
@@ -1876,7 +1924,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Shortcut Guide]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1921,7 +1969,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Windows_Color_Settings.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Windows_Color_Settings.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Windows color settings]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">

View File

@@ -118,7 +118,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Attribution]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -136,7 +136,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -172,7 +172,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -219,14 +219,17 @@
</Item>
<Item ItemId=";FancyZones_BorderColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zone border color]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Bölge kenarlık rengi (Varsayılan: #FFFFFF)]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Create window layouts to help make multi-tasking easy.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -235,7 +238,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keep windows in their zones when the screen resolution changes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -244,7 +247,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Editor_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Düzenleyici]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable FancyZones]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -289,30 +301,39 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Open layout editor]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Bölge düzenleyicisini açma]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_InActiveColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zone inactive color]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Etkin olmayan bölge rengi (Varsayılan: #F5FCFF)]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Launch layout editor]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Bölge düzenleyicisini başlat]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -343,7 +364,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Move windows based on their position]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -415,6 +436,12 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_WindowBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Window behavior]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_ZoneBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone behavior]]></Val>
@@ -426,10 +453,13 @@
</Item>
<Item ItemId=";FancyZones_ZoneHighlightColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zone highlight color]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Bölge vurgulama rengi (Varsayılan: #0078D7)]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -442,7 +472,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[FancyZones windows]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -451,7 +481,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[File]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -523,7 +553,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Markdown (.md) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -532,7 +562,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -541,7 +571,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) thumbnails]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -577,7 +607,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Report a bug]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -586,7 +616,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Request a feature]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -595,7 +625,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Restart as administrator]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -678,10 +708,13 @@
</Item>
<Item ItemId=";GeneralSettings_VersionIsLatest" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys is up-to-date.]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Kullanılabilir en son sürüme sahipsiniz.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -838,7 +871,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Image Resizer]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1063,7 +1096,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fill]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1072,7 +1105,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fit]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1081,7 +1114,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Stretch]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1171,6 +1204,12 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KBM_KeysCannotBeRemapped.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Learn more about remapping limitations]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_ConfigHeader.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Current configuration]]></Val>
@@ -1198,7 +1237,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keyboard Manager]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1279,7 +1318,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Key Remapping]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1315,7 +1354,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For Target Application]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1324,12 +1363,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Module overview]]></Val>
<Val><![CDATA[Learn more]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Modüle genel bakış]]></Val>
<Val><![CDATA[Daha fazla bilgi]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Module overview]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1389,14 +1431,17 @@
</Item>
<Item ItemId=";PowerLauncher_DisableDriveDetectionWarning.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Disable drive detection warning for the file search plugin]]></Val>
<Tgt Cat="Text" Stat="Update" Orig="New">
<Val><![CDATA[Dizin oluşturucu eklentisi için sürücü algılama uyarısını devre dışı bırak]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerToys Run]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1423,7 +1468,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open console]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1567,6 +1612,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_BehaviorHeader.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Davranış]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[A Windows Shell extension for more advanced bulk renaming using search and replace or regular expressions.]]></Val>
@@ -1585,7 +1639,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shell integration]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1603,7 +1657,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerRename]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1648,6 +1702,12 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_UseBoostLib.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Use Boost library (provides extended features but may use different regex syntax)]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerToys_Icon.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys Icon]]></Val>
@@ -1675,7 +1735,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Dark]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1720,7 +1780,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Kaldır]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveTooltip.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1849,7 +1918,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Shortcut Guide]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1894,7 +1963,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Windows_Color_Settings.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Item ItemId=";Windows_Color_Settings.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Windows color settings]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">

View File

@@ -109,24 +109,6 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AppDescription" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft.PowerToys.Settings.UI]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft.PowerToys.Settings.UI]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AppDisplayName" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft.PowerToys.Settings.UI]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft.PowerToys.Settings.UI]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Appearance_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Appearance]]></Val>
@@ -136,7 +118,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Attribution]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -154,7 +136,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -190,7 +172,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -237,14 +219,17 @@
</Item>
<Item ItemId=";FancyZones_BorderColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
<Val><![CDATA[Zone border color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[区域边框颜色(默认值: #FFFFFF) ]]></Val>
<Val><![CDATA[区域边框颜色]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Create window layouts to help make multi-tasking easy.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -253,7 +238,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keep windows in their zones when the screen resolution changes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -262,7 +247,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Editor_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[编辑器]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable FancyZones]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -307,30 +301,39 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
<Val><![CDATA[Open layout editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[打开区域编辑器]]></Val>
<Val><![CDATA[打开布局编辑器]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_InActiveColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
<Val><![CDATA[Zone inactive color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[区域非活动颜色(默认值: #F5FCFF) ]]></Val>
<Val><![CDATA[区域非活动颜色]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
<Val><![CDATA[Launch layout editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[启动区域编辑器]]></Val>
<Val><![CDATA[启动布局编辑器]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -361,7 +364,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Move windows based on their position]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -433,6 +436,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_WindowBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Window behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[窗口行为]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_ZoneBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone behavior]]></Val>
@@ -444,10 +456,13 @@
</Item>
<Item ItemId=";FancyZones_ZoneHighlightColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
<Val><![CDATA[Zone highlight color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[区域突出显示颜色(默认值: #0078D7) ]]></Val>
<Val><![CDATA[区域突出显示颜色]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -460,7 +475,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[FancyZones windows]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -469,7 +484,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[File]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -541,7 +556,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Markdown (.md) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -550,7 +565,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -559,7 +574,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) thumbnails]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -595,7 +610,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Report a bug]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -604,7 +619,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Request a feature]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -613,7 +628,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Restart as administrator]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -696,10 +711,13 @@
</Item>
<Item ItemId=";GeneralSettings_VersionIsLatest" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
<Val><![CDATA[PowerToys is up-to-date.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[你有最新的可用版本。]]></Val>
<Val><![CDATA[PowerToys 是最新的。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -856,7 +874,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Image Resizer]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1081,7 +1099,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fill]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1090,7 +1108,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fit]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1099,7 +1117,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Stretch]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1189,6 +1207,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KBM_KeysCannotBeRemapped.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Learn more about remapping limitations]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[详细了解重新映射限制]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_ConfigHeader.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Current configuration]]></Val>
@@ -1216,7 +1243,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keyboard Manager]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1297,7 +1324,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Key Remapping]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1333,7 +1360,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For Target Application]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1342,12 +1369,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Module overview]]></Val>
<Val><![CDATA[Learn more]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[模块概述]]></Val>
<Val><![CDATA[了解更多]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Module overview]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1407,14 +1437,17 @@
</Item>
<Item ItemId=";PowerLauncher_DisableDriveDetectionWarning.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
<Val><![CDATA[Disable drive detection warning for the file search plugin]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[为索引器插件禁用驱动器检测警告]]></Val>
<Val><![CDATA[为文件搜索插件禁用驱动器检测警告]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerToys Run]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1441,7 +1474,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open console]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1585,6 +1618,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_BehaviorHeader.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[行为]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[A Windows Shell extension for more advanced bulk renaming using search and replace or regular expressions.]]></Val>
@@ -1603,7 +1645,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shell integration]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1621,7 +1663,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerRename]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1666,6 +1708,12 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_UseBoostLib.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Use Boost library (provides extended features but may use different regex syntax)]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerToys_Icon.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys Icon]]></Val>
@@ -1693,7 +1741,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Dark]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1702,7 +1750,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Default.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Default.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Windows default]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1711,7 +1759,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Light.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Light.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Light]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1738,7 +1786,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[删除]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveTooltip.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1813,15 +1870,6 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Shell_Main.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Main]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[主要]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Shell_PowerLauncher.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys Run]]></Val>
@@ -1876,7 +1924,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Shortcut Guide]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1921,7 +1969,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Windows_Color_Settings.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Windows_Color_Settings.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Windows color settings]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">

View File

@@ -118,7 +118,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";AttributionTitle.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Attribution]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -136,7 +136,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_ActivationShortcut.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -172,7 +172,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ColorPicker_EnableColorPicker.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Color Picker]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -219,14 +219,17 @@
</Item>
<Item ItemId=";FancyZones_BorderColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
<Val><![CDATA[Zone border color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[區域框線的色彩 (預設: #FFFFFF)]]></Val>
<Val><![CDATA[區域框線的色彩]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone border color (Default: #FFFFFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Description.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Create window layouts to help make multi-tasking easy.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -235,7 +238,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_DisplayChangeMoveWindowsCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keep windows in their zones when the screen resolution changes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -244,7 +247,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_Editor_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[編輯器]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_EnableToggleControl_HeaderText.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable FancyZones]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -289,30 +301,39 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_HotkeyEditorControl.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
<Val><![CDATA[Open layout editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[開啟區域編輯器]]></Val>
<Val><![CDATA[開啟配置編輯器]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_InActiveColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
<Val><![CDATA[Zone inactive color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[非使用中區域的色彩 (預設: #F5FCFF)]]></Val>
<Val><![CDATA[非使用中區域的色彩]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone inactive color (Default: #F5FCFF)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_LaunchEditorButtonControl.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
<Val><![CDATA[Launch layout editor]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[啟動區域編輯器]]></Val>
<Val><![CDATA[啟動配置編輯器]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch zones editor]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -343,7 +364,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Move windows based on their position]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -415,6 +436,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_WindowBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Window behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[視窗行為]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FancyZones_ZoneBehavior_GroupSettings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone behavior]]></Val>
@@ -426,10 +456,13 @@
</Item>
<Item ItemId=";FancyZones_ZoneHighlightColor.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
<Val><![CDATA[Zone highlight color]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[區域醒目提示色彩 (預設: #0078D7)]]></Val>
<Val><![CDATA[區域醒目提示色彩]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Zone highlight color (Default: #0078D7)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -442,7 +475,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Fancyzones_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[FancyZones windows]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -451,7 +484,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";File.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[File]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -523,7 +556,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_MD.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Markdown (.md) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -532,7 +565,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) preview]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -541,7 +574,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_ToggleSwitch_SVG_Thumbnail.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable SVG (.svg) thumbnails]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -577,7 +610,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_ReportAbug.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Report a bug]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -586,7 +619,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RequestAFeature_URL.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Request a feature]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -595,7 +628,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";GeneralPage_RestartAsAdmin_Button.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Restart as administrator]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -678,10 +711,13 @@
</Item>
<Item ItemId=";GeneralSettings_VersionIsLatest" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
<Val><![CDATA[PowerToys is up-to-date.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[您已是使用最新的版本。]]></Val>
<Val><![CDATA[PowerToys 已是最新。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[You have the latest available version.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -838,7 +874,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_EnableToggle.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Image Resizer]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1063,7 +1099,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fill.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fill]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1072,7 +1108,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Fit.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Fit]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1081,7 +1117,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ImageResizer_Sizes_Fit_Stretch.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Stretch]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1171,6 +1207,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KBM_KeysCannotBeRemapped.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Learn more about remapping limitations]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[深入了解重新對應的限制]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_ConfigHeader.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Current configuration]]></Val>
@@ -1198,7 +1243,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Keyboard Manager]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1279,7 +1324,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_RemappedKeysListItem.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Key Remapping]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1315,7 +1360,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";KeyboardManager_TargetApp.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For Target Application]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1324,12 +1369,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Module_overview.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Module overview]]></Val>
<Val><![CDATA[Learn more]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[模組概觀]]></Val>
<Val><![CDATA[深入了解]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Module overview]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1389,14 +1437,17 @@
</Item>
<Item ItemId=";PowerLauncher_DisableDriveDetectionWarning.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
<Val><![CDATA[Disable drive detection warning for the file search plugin]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[停用索引工具外掛程式的磁碟機偵測警告]]></Val>
<Val><![CDATA[停用檔案搜尋外掛程式的磁碟機偵測警告]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Disable drive detection warning for the indexer plugin]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_EnablePowerLauncher.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerToys Run]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1423,7 +1474,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerLauncher_OpenConsole.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open console]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1567,6 +1618,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_BehaviorHeader.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Behavior]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[行為]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Description.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[A Windows Shell extension for more advanced bulk renaming using search and replace or regular expressions.]]></Val>
@@ -1585,7 +1645,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_ShellIntegration.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shell integration]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1603,7 +1663,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";PowerRename_Toggle_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable PowerRename]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1648,6 +1708,12 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerRename_Toggle_UseBoostLib.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Use Boost library (provides extended features but may use different regex syntax)]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";PowerToys_Icon.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys Icon]]></Val>
@@ -1675,7 +1741,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";Radio_Theme_Dark.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Dark]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1720,7 +1786,16 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";RemoveButton.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[移除]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";RemoveTooltip.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Remove]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1849,7 +1924,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";ShortcutGuide_Enable.Header" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Enable Shortcut Guide]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1894,7 +1969,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Windows_Color_Settings.Content" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Item ItemId=";Windows_Color_Settings.Text" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Windows color settings]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">