Merge pull request #2 from microsoft/master

Update with latest changes
This commit is contained in:
Den Delimarsky
2021-04-20 07:28:00 -07:00
committed by GitHub
150 changed files with 2706 additions and 2193 deletions

View File

@@ -9,7 +9,8 @@ namespace Microsoft.PowerToys.Settings.UI.Library
{
public class FZConfigProperties
{
public static readonly HotkeySettings DefaultHotkeyValue = new HotkeySettings(true, false, false, false, 0xc0);
// in reality, this file needs to be kept in sync currently with src\modules\fancyzones\lib\Settings.h
public static readonly HotkeySettings DefaultHotkeyValue = new HotkeySettings(true, false, false, true, 0xc0);
public FZConfigProperties()
{

View File

@@ -45,7 +45,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.IO.Abstractions" Version="12.2.5" />
<PackageReference Include="System.Text.Json" Version="5.0.1" />
<PackageReference Include="System.Text.Json" Version="5.0.2" />
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers">
<Version>3.3.0</Version>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

View File

@@ -29,8 +29,10 @@ namespace Microsoft.PowerToys.Settings.UI.Library.ViewModels
private const string EditShortcutActionName = "EditShortcut";
private const string EditShortcutActionValue = "Open Edit Shortcut Window";
private const string JsonFileType = ".json";
private const string ProfileFileMutexName = "PowerToys.KeyboardManager.ConfigMutex";
private const int ProfileFileMutexWaitTimeoutMilliseconds = 1000;
private static string ConfigFileMutexName => interop.Constants.KeyboardManagerConfigFileMutexName();
private const int ConfigFileMutexWaitTimeoutMilliseconds = 1000;
public KeyboardManagerSettings Settings { get; set; }
@@ -203,9 +205,9 @@ namespace Microsoft.PowerToys.Settings.UI.Library.ViewModels
try
{
using (var profileFileMutex = Mutex.OpenExisting(ProfileFileMutexName))
using (var profileFileMutex = Mutex.OpenExisting(ConfigFileMutexName))
{
if (profileFileMutex.WaitOne(ProfileFileMutexWaitTimeoutMilliseconds))
if (profileFileMutex.WaitOne(ConfigFileMutexWaitTimeoutMilliseconds))
{
// update the UI element here.
try

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 MiB

After

Width:  |  Height:  |  Size: 3.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 868 KiB

After

Width:  |  Height:  |  Size: 5.2 MiB

View File

@@ -25,6 +25,7 @@
VerticalAlignment="Top">
<TextBlock Text="{x:Bind ViewModel.ModuleName}"
AutomationProperties.HeadingLevel="Level2"
Style="{StaticResource PageTitleStyle}" />
<TextBlock TextWrapping="Wrap"
@@ -39,12 +40,14 @@
</HyperlinkButton>
<TextBlock x:Uid="Oobe_HowToUse"
AutomationProperties.HeadingLevel="Level3"
Style="{StaticResource OobeSubtitleStyle}" />
<controls:ShortcutTextControl x:Uid="Oobe_ColorPicker_HowToUse" />
<TextBlock x:Uid="Oobe_TipsAndTricks"
Style="{StaticResource OobeSubtitleStyle}"/>
AutomationProperties.HeadingLevel="Level3"
Style="{StaticResource OobeSubtitleStyle}"/>
<controls:ShortcutTextControl x:Uid="Oobe_ColorPicker_TipsAndTricks" />
@@ -57,13 +60,14 @@
<Run Text="{x:Bind ViewModel.ModuleName}"/>
</TextBlock>
</Button>
<Button Click="SettingsLaunchButton_Click">
<Button Click="SettingsLaunchButton_Click"
AutomationProperties.LabeledBy="{Binding ElementName=SettingsLabel}">
<StackPanel Orientation="Horizontal"
Spacing="8">
<TextBlock Text="&#xE115;"
Margin="0,3,0,0"
FontFamily="Segoe MDL2 Assets" />
<TextBlock x:Uid="OOBE_Settings" />
<TextBlock x:Uid="OOBE_Settings" Name="SettingsLabel" />
</StackPanel>
</Button>
</StackPanel>

View File

@@ -24,6 +24,7 @@
Margin="{StaticResource OobePageContentMargin}"
VerticalAlignment="Top">
<TextBlock Text="{x:Bind ViewModel.ModuleName}"
AutomationProperties.HeadingLevel="Level2"
Style="{StaticResource PageTitleStyle}" />
<TextBlock TextWrapping="Wrap"
Margin="0,4,0,0"
@@ -36,14 +37,16 @@
<Run Text="{x:Bind ViewModel.ModuleName}" />
</TextBlock>
</HyperlinkButton>
<TextBlock x:Uid="Oobe_HowToUse"
AutomationProperties.HeadingLevel="Level3"
Style="{StaticResource OobeSubtitleStyle}" />
<controls:ShortcutTextControl x:Uid="Oobe_FancyZones_HowToUse" />
<TextBlock x:Uid="Oobe_TipsAndTricks"
AutomationProperties.HeadingLevel="Level3"
Style="{StaticResource OobeSubtitleStyle}" />
<controls:ShortcutTextControl x:Uid="Oobe_FancyZones_TipsAndTricks" />
@@ -51,13 +54,14 @@
<StackPanel Orientation="Horizontal"
Spacing="4"
Margin="0,32,0,0">
<Button Click="SettingsLaunchButton_Click">
<Button Click="SettingsLaunchButton_Click"
AutomationProperties.LabeledBy="{Binding ElementName=SettingsLabel}">
<StackPanel Orientation="Horizontal"
Spacing="8">
<TextBlock Text="&#xE115;"
Margin="0,3,0,0"
FontFamily="Segoe MDL2 Assets" />
<TextBlock x:Uid="OOBE_Settings" />
<TextBlock x:Uid="OOBE_Settings" Name="SettingsLabel" />
</StackPanel>
</Button>
</StackPanel>

View File

@@ -24,6 +24,7 @@
VerticalAlignment="Top">
<TextBlock Text="{x:Bind ViewModel.ModuleName}"
AutomationProperties.HeadingLevel="Level2"
Style="{StaticResource PageTitleStyle}" />
<TextBlock Margin="0,4,0,0"
@@ -39,6 +40,7 @@
</HyperlinkButton>
<TextBlock x:Uid="Oobe_HowToEnable"
AutomationProperties.HeadingLevel="Level3"
Style="{StaticResource OobeSubtitleStyle}" />
<controls:ShortcutTextControl x:Uid="Oobe_FileExplorer_HowToEnable" />
@@ -47,13 +49,14 @@
Spacing="4"
Margin="0,32,0,0">
<Button Click="SettingsLaunchButton_Click">
<Button Click="SettingsLaunchButton_Click"
AutomationProperties.LabeledBy="{Binding ElementName=SettingsLabel}">
<StackPanel Orientation="Horizontal"
Spacing="8">
<TextBlock Text="&#xE115;"
Margin="0,3,0,0"
FontFamily="Segoe MDL2 Assets" />
<TextBlock x:Uid="OOBE_Settings" />
<TextBlock x:Uid="OOBE_Settings" Name="SettingsLabel" />
</StackPanel>
</Button>
</StackPanel>

View File

@@ -25,6 +25,7 @@
VerticalAlignment="Top">
<TextBlock Text="{x:Bind ViewModel.ModuleName}"
AutomationProperties.HeadingLevel="Level2"
Style="{StaticResource PageTitleStyle}" />
<TextBlock Margin="0,4,0,0"
@@ -40,11 +41,13 @@
</HyperlinkButton>
<TextBlock x:Uid="Oobe_HowToLaunch"
AutomationProperties.HeadingLevel="Level3"
Style="{StaticResource OobeSubtitleStyle}" />
<controls:ShortcutTextControl x:Uid="Oobe_ImageResizer_HowToLaunch" />
<TextBlock x:Uid="Oobe_TipsAndTricks"
AutomationProperties.HeadingLevel="Level3"
Style="{StaticResource OobeSubtitleStyle}" />
<controls:ShortcutTextControl x:Uid="Oobe_ImageResizer_TipsAndTricks" />
@@ -52,13 +55,14 @@
<StackPanel Orientation="Horizontal"
Spacing="4"
Margin="0,32,0,0">
<Button Click="SettingsLaunchButton_Click">
<Button Click="SettingsLaunchButton_Click"
AutomationProperties.LabeledBy="{Binding ElementName=SettingsLabel}">
<StackPanel Orientation="Horizontal"
Spacing="8">
<TextBlock Text="&#xE115;"
Margin="0,3,0,0"
FontFamily="Segoe MDL2 Assets" />
<TextBlock Text="Settings" />
<TextBlock x:Uid="OOBE_Settings" Name="SettingsLabel"/>
</StackPanel>
</Button>
</StackPanel>

View File

@@ -24,6 +24,7 @@
VerticalAlignment="Top">
<TextBlock Text="{x:Bind ViewModel.ModuleName}"
AutomationProperties.HeadingLevel="Level2"
Style="{StaticResource PageTitleStyle}" />
<TextBlock Margin="0,4,0,0"
@@ -39,11 +40,13 @@
</HyperlinkButton>
<TextBlock x:Uid="Oobe_HowToCreateMappings"
AutomationProperties.HeadingLevel="Level3"
Style="{StaticResource OobeSubtitleStyle}" />
<controls:ShortcutTextControl x:Uid="Oobe_KBM_HowToCreateMappings" />
<TextBlock x:Uid="Oobe_TipsAndTricks"
AutomationProperties.HeadingLevel="Level3"
Style="{StaticResource OobeSubtitleStyle}" />
<controls:ShortcutTextControl x:Uid="Oobe_KBM_TipsAndTricks" />
@@ -51,13 +54,14 @@
<StackPanel Orientation="Horizontal"
Spacing="4"
Margin="0,32,0,0">
<Button Click="SettingsLaunchButton_Click">
<Button Click="SettingsLaunchButton_Click"
AutomationProperties.LabeledBy="{Binding ElementName=SettingsLabel}">
<StackPanel Orientation="Horizontal"
Spacing="8">
<TextBlock Text="&#xE115;"
Margin="0,3,0,0"
FontFamily="Segoe MDL2 Assets" />
<TextBlock Text="Settings" />
<TextBlock x:Uid="OOBE_Settings" Name="SettingsLabel" />
</StackPanel>
</Button>
</StackPanel>

View File

@@ -23,13 +23,13 @@
VerticalAlignment="Top">
<TextBlock Text="{x:Bind ViewModel.ModuleName}"
AutomationProperties.HeadingLevel="Level2"
Style="{StaticResource PageTitleStyle}" />
<TextBlock Margin="0,4,0,0"
TextWrapping="Wrap">
<Run x:Uid="Oobe_Overview_Description" />
<Hyperlink NavigateUri="{x:Bind ViewModel.DescriptionLink}"
Foreground="{ThemeResource SystemControlBackgroundAccentBrush}">
<Hyperlink NavigateUri="{x:Bind ViewModel.DescriptionLink}">
<Run x:Uid="Oobe_Overview_DescriptionLinkText" />
</Hyperlink><Run Text="." />
</TextBlock>
@@ -43,13 +43,15 @@
</TextBlock>
<Button Click="SettingsLaunchButton_Click"
Margin="0,32,0,0">
AutomationProperties.LabeledBy="{Binding ElementName=SettingsLabel}"
Margin="0,32,0,0">
<StackPanel Orientation="Horizontal"
Spacing="8">
Spacing="8">
<TextBlock Text="&#xE115;"
Margin="0,3,0,0"
FontFamily="Segoe MDL2 Assets" />
<TextBlock x:Uid="OOBE_Settings" />
Margin="0,3,0,0"
FontFamily="Segoe MDL2 Assets" />
<TextBlock x:Uid="OOBE_Settings"
Name="SettingsLabel" />
</StackPanel>
</Button>
</StackPanel>

View File

@@ -24,6 +24,7 @@
VerticalAlignment="Top">
<TextBlock Text="{x:Bind ViewModel.ModuleName}"
AutomationProperties.HeadingLevel="Level2"
Style="{StaticResource PageTitleStyle}" />
<TextBlock Margin="0,4,0,0"
@@ -40,11 +41,13 @@
<TextBlock x:Uid="Oobe_HowToUse"
AutomationProperties.HeadingLevel="Level3"
Style="{StaticResource OobeSubtitleStyle}" />
<controls:ShortcutTextControl x:Uid="Oobe_PowerRename_HowToUse" />
<TextBlock x:Uid="Oobe_TipsAndTricks"
AutomationProperties.HeadingLevel="Level3"
Style="{StaticResource OobeSubtitleStyle}" />
<TextBlock x:Uid="Oobe_PowerRename_TipsAndTricks"
@@ -54,13 +57,14 @@
Spacing="4"
Margin="0,32,0,0">
<Button Click="SettingsLaunchButton_Click">
<Button Click="SettingsLaunchButton_Click"
AutomationProperties.LabeledBy="{Binding ElementName=SettingsLabel}">
<StackPanel Orientation="Horizontal"
Spacing="8">
<TextBlock Text="&#xE115;"
Margin="0,3,0,0"
FontFamily="Segoe MDL2 Assets" />
<TextBlock x:Uid="OOBE_Settings" />
<TextBlock x:Uid="OOBE_Settings" Name="SettingsLabel" />
</StackPanel>
</Button>
</StackPanel>

View File

@@ -25,6 +25,7 @@
VerticalAlignment="Top">
<TextBlock Text="{x:Bind ViewModel.ModuleName}"
AutomationProperties.HeadingLevel="Level2"
Style="{StaticResource PageTitleStyle}" />
<TextBlock Margin="0,4,0,0"
@@ -41,11 +42,13 @@
</HyperlinkButton>
<TextBlock x:Uid="Oobe_HowToLaunch"
AutomationProperties.HeadingLevel="Level3"
Style="{StaticResource OobeSubtitleStyle}" />
<controls:ShortcutTextControl x:Uid="Oobe_Run_HowToLaunch" />
<TextBlock x:Uid="Oobe_TipsAndTricks"
AutomationProperties.HeadingLevel="Level3"
Style="{StaticResource OobeSubtitleStyle}" />
<controls:ShortcutTextControl x:Uid="Oobe_Run_TipsAndTricks" />
@@ -61,13 +64,14 @@
</TextBlock>
</Button>
<Button Click="SettingsLaunchButton_Click">
<Button Click="SettingsLaunchButton_Click"
AutomationProperties.LabeledBy="{Binding ElementName=SettingsLabel}">
<StackPanel Orientation="Horizontal"
Spacing="8">
<TextBlock Text="&#xE115;"
Margin="0,3,0,0"
FontFamily="Segoe MDL2 Assets" />
<TextBlock x:Uid="OOBE_Settings" />
<TextBlock x:Uid="OOBE_Settings" Name="SettingsLabel" />
</StackPanel>
</Button>
</StackPanel>

View File

@@ -58,6 +58,7 @@
<TextBlock x:Uid="Oobe_GettingStarted"
TextWrapping="Wrap"
FontWeight="SemiBold"
AutomationProperties.HeadingLevel="Level1"
Style="{StaticResource PageTitleStyle}"
Margin="0,0,0,16" />
</StackPanel>

View File

@@ -25,6 +25,7 @@
VerticalAlignment="Top">
<TextBlock Text="{x:Bind ViewModel.ModuleName}"
AutomationProperties.HeadingLevel="Level2"
Style="{StaticResource PageTitleStyle}" />
<TextBlock Margin="0,4,0,0"
@@ -41,6 +42,7 @@
</HyperlinkButton>
<TextBlock x:Uid="Oobe_HowToLaunch"
AutomationProperties.HeadingLevel="Level3"
Style="{StaticResource OobeSubtitleStyle}" />
<controls:ShortcutTextControl x:Uid="Oobe_ShortcutGuide_HowToLaunch" />
@@ -54,13 +56,14 @@
<Run Text="{x:Bind ViewModel.ModuleName}" />
</TextBlock>
</Button>
<Button Click="SettingsLaunchButton_Click">
<Button Click="SettingsLaunchButton_Click"
AutomationProperties.LabeledBy="{Binding ElementName=SettingsLabel}">
<StackPanel Orientation="Horizontal"
Spacing="8">
<TextBlock Text="&#xE115;"
Margin="0,3,0,0"
FontFamily="Segoe MDL2 Assets" />
<TextBlock x:Uid="OOBE_Settings" />
<TextBlock x:Uid="OOBE_Settings" Name="SettingsLabel" />
</StackPanel>
</Button>
</StackPanel>

View File

@@ -25,6 +25,7 @@
VerticalAlignment="Top">
<TextBlock Text="{x:Bind ViewModel.ModuleName}"
AutomationProperties.HeadingLevel="Level2"
Style="{StaticResource PageTitleStyle}" />
<TextBlock TextWrapping="Wrap"
@@ -40,6 +41,7 @@
</HyperlinkButton>
<TextBlock x:Uid="Oobe_HowToLaunch"
AutomationProperties.HeadingLevel="Level3"
Style="{StaticResource OobeSubtitleStyle}" />
<controls:ShortcutTextControl x:Uid="Oobe_VideoConference_HowToLaunch" />
@@ -47,13 +49,14 @@
<StackPanel Orientation="Horizontal"
Margin="0,32,0,0"
Spacing="8">
<Button Click="SettingsLaunchButton_Click">
<Button Click="SettingsLaunchButton_Click"
AutomationProperties.LabeledBy="{Binding ElementName=SettingsLabel}">
<StackPanel Orientation="Horizontal"
Spacing="8">
<TextBlock Text="&#xE115;"
Margin="0,3,0,0"
FontFamily="Segoe MDL2 Assets" />
<TextBlock x:Uid="OOBE_Settings" />
<TextBlock x:Uid="OOBE_Settings" Name="SettingsLabel"/>
</StackPanel>
</Button>
</StackPanel>

View File

@@ -1151,8 +1151,7 @@ From there, simply click on a Markdown file or SVG icon in the File Explorer and
<comment>Do not localize this string</comment>
</data>
<data name="Oobe_Welcome" xml:space="preserve">
<value>Welcome to PowerToys</value>
<comment>Do not localize 'PowerToys'</comment>
<value>Welcome</value>
</data>
<data name="OOBE_Settings.Text" xml:space="preserve">
<value>Settings</value>

View File

@@ -1779,19 +1779,25 @@
</Item>
<Item ItemId=";Oobe_ColorPicker_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
<Val><![CDATA[{Win} + {Ctrl} + {C} to open Color Picker.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Výběr barvy můžete otevřít kombinací kláves Win + Shift + C.]]></Val>
<Val><![CDATA[Klávesami {Win} + {Ctrl} + {C} otevřete výběr barev.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_ColorPicker_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
<Val><![CDATA[To select a color with more precision, {scroll the mouse wheel} to zoom in.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Pokud chcete vybrat barvu přesněji, můžete se přiblížit kolečkem myši.]]></Val>
<Val><![CDATA[Pokud chcete vybrat barvu přesněji, můžete se přiblížit {kolečkem myši}.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1815,19 +1821,25 @@
</Item>
<Item ItemId=";Oobe_FancyZones_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
<Val><![CDATA[{Shift} + {dragging the window} to snap a window to a zone, and release the window in the desired zone. {Win} + {`} to open the FancyZones editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Pokud chcete okno přichytit do zóny, můžete během přetahování použít kombinaci Shift + přetažení. Okno pak uvolníte v požadované zóně.]D;]A;Kombinací kláves Win + ` otevřete editor FancyZones.]]></Val>
<Val><![CDATA[Pokud chcete okno přichytit do zóny, můžete během přetahování použít kombinaci {Shift} + {přetažení okna}. Okno pak uvolníte v požadované zóně. Kombinací kláves {Win} + {`} otevřete editor FancyZones.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_FancyZones_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
<Val><![CDATA[Snap a window to multiple zones by holding the {Ctrl} key (while also holding {Shift}) when dragging a window.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Když během přetahování okna podržíte klávesu Ctrl (a zároveň i Shift), připnete okno k několika zónám.]]></Val>
<Val><![CDATA[Když během přetahování okna podržíte klávesu {Ctrl} (a zároveň i {Shift}), připnete okno k několika zónám.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1851,10 +1863,13 @@
</Item>
<Item ItemId=";Oobe_FileExplorer_HowToEnable.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Val><![CDATA[Open File Explorer, {select the View tab} in the File Explorer ribbon, then {select Preview Pane}. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Otevřete Průzkumníka souborů Windows, na jeho pásu karet vyberte kartu Zobrazení a pak vyberte Podokno náhledu. ]D;]A;Tam stačí kliknout na soubor Markdown nebo ikonu SVG a jejich obsah se zobrazí v podokně náhledu.]]></Val>
<Val><![CDATA[Otevřete Průzkumníka souborů Windows, na jeho pásu karet {vyberte kartu Zobrazení} a pak {vyberte Podokno náhledu}. ]D;]A;Tam stačí kliknout na soubor Markdown nebo ikonu SVG a jejich obsah se zobrazí v podokně náhledu.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1932,10 +1947,13 @@
</Item>
<Item ItemId=";Oobe_ImageResizer_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more image files} and {clicking on Resize pictures} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[V Průzkumníkovi souborů klikněte pravým tlačítkem na nejméně jeden soubor obrázku a pak v místní nabídce klikněte na Změnit velikost obrázků.]]></Val>
<Val><![CDATA[V Průzkumníkovi souborů {klikněte pravým tlačítkem na nejméně jeden soubor obrázku} a pak v místní nabídce {klikněte na Změnit velikost obrázků}.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1968,10 +1986,13 @@
</Item>
<Item ItemId=";Oobe_KBM_HowToCreateMappings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
<Val><![CDATA[Launch {PowerToys settings}, navigate to the Keyboard Manager menu, and select either {Remap a key} or {Remap a shortcut}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Spusťte nastavení PowerToys, přejděte na nabídku Správce klávesnice a vyberte buď Změnit mapování klávesy, nebo Změnit mapování klávesové zkratky.]]></Val>
<Val><![CDATA[Spusťte {nastavení PowerToys}, přejděte na nabídku Správce klávesnice a vyberte buď {Změnit mapování klávesy}, nebo {Změnit mapování klávesové zkratky}.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2013,10 +2034,13 @@
</Item>
<Item ItemId=";Oobe_Overview_CheckoutLatestVersion.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
<Val><![CDATA[For returning users, check out what is new in our]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Pokud nejste nový uživatel, podívejte se, co je nového v této nejnovější verzi]]></Val>
<Val><![CDATA[Pokud nejste nový uživatel, podívejte se, co je nového v]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2031,19 +2055,25 @@
</Item>
<Item ItemId=";Oobe_Overview_DescriptionLinkText.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft Docs.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Overview_LatestVersionLink.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
<Val><![CDATA[release notes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys v poznámkách k vydané verzi]]></Val>
<Val><![CDATA[Poznámky k verzi]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2067,10 +2097,13 @@
</Item>
<Item ItemId=";Oobe_PowerRename_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more selected files} and {clicking on PowerRename} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[V Průzkumníkovi souborů klikněte pravým tlačítkem na nejméně jeden vybraný soubor a pak v místní nabídce klikněte na PowerRename.]]></Val>
<Val><![CDATA[V Průzkumníkovi souborů {klikněte pravým tlačítkem na nejméně jeden vybraný soubor} a pak v místní nabídce {klikněte na PowerRename}.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2112,19 +2145,25 @@
</Item>
<Item ItemId=";Oobe_Run_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
<Val><![CDATA[{Alt} + {Space} to open Run and just start typing.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Kombinací kláves Alt + mezerník otevřete PowerToys a začněte psát text.]]></Val>
<Val><![CDATA[Kombinací kláves {Alt} + {Space} můžete otevřít okno Spustit a začít psát text.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Run_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Val><![CDATA[PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing {<} searches for running processes only, {?} will search only for file, or {.} for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys Run podporuje různé akční klávesy, pomocí kterých upřesňuje vyhledávací dotazy na konkrétní podmnožinu výsledků. Když zadáte <, vyhledají se jen spuštěné procesy, ? vyhledá jen soubor, . pak hledá nainstalované aplikace. Celou sadu dostupných akčních kláves najdete v dokumentaci k PowerToys.]]></Val>
<Val><![CDATA[PowerToys Run podporuje různé akční klávesy, pomocí kterých upřesňuje vyhledávací dotazy na konkrétní podmnožinu výsledků. Když zadáte {<}, vyhledají se jen spuštěné procesy, {?} vyhledá jen soubor, {.} pak hledá nainstalované aplikace. Celou sadu dostupných akčních kláves najdete v dokumentaci k PowerToys.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2148,10 +2187,13 @@
</Item>
<Item ItemId=";Oobe_ShortcutGuide_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
<Val><![CDATA[{Win} + {?} to open Shortcut Guide, press it again to close or press {Esc}. You can also launch it by holding the {Win} key for one second!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Kombinací Win + ? otevřete Průvodce klávesovými zkratkami. Když ji stisknete znovu (nebo použijete klávesu Esc), průvodce ukončíte. Spustit se dá i tak, že na jednu sekundu podržíte klávesu Win.]]></Val>
<Val><![CDATA[Kombinací {Win} + {?} otevřete Průvodce klávesovými zkratkami. Když ji stisknete znovu (nebo použijete klávesu {Esc}), průvodce ukončíte. Spustit se dá i tak, že na jednu sekundu podržíte klávesu {Win}.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2184,10 +2226,13 @@
</Item>
<Item ItemId=";Oobe_VideoConference_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
<Val><![CDATA[{Win} + {N} to toggle both your microphone and video]D;]A;{Win} + {Shift} + {A} to toggle your microphone ]D;]A;{Win} + {Shift} + {O} to toggle your video]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Kombinací kláves Win + N můžete přepnout mikrofon i video, ]D;]A;Win + Shift + A přepne mikrofon ]D;]A;a Win + Shift + O přepne video.]]></Val>
<Val><![CDATA[Kombinací kláves {Win} + {N} můžete přepnout mikrofon i video, ]D;]A;{Win} + {Shift} + {A} přepne mikrofon ]D;]A;a {Win} + {Shift} + {O} přepne video.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2887,12 +2932,18 @@
<Item ItemId=";ShortcutGuide_DisabledApps.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable for apps]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zakázat pro aplikace]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_DisabledApps_TextBoxControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Turn off Shortcut Guide when these applications have focus. Add one application name per line.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Když tyto aplikace budou mít fokus, může se Průvodce klávesovými zkratkami vypnout. Na každý řádek zadejte jeden název aplikace.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>

View File

@@ -1779,19 +1779,25 @@
</Item>
<Item ItemId=";Oobe_ColorPicker_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
<Val><![CDATA[{Win} + {Ctrl} + {C} to open Color Picker.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[WINDOWS+UMSCHALT+C zum Öffnen des Farbwählers.]]></Val>
<Val><![CDATA[Drücken Sie WINDOWS+STRG+C, um den Farbwähler zu öffnen.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_ColorPicker_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
<Val><![CDATA[To select a color with more precision, {scroll the mouse wheel} to zoom in.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Um eine Farbe mit höherer Genauigkeit auszuwählen, können Sie die Anzeige durch Scrollen mit dem Mausrad vergrößern.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1815,19 +1821,25 @@
</Item>
<Item ItemId=";Oobe_FancyZones_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
<Val><![CDATA[{Shift} + {dragging the window} to snap a window to a zone, and release the window in the desired zone. {Win} + {`} to open the FancyZones editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Halten Sie beim Ziehen des Fensters die UMSCHALTTASTE gedrückt, um ein Fenster an einer Zone auszurichten, und legen Sie das Fenster in der gewünschten Zone ab.]D;]A;Über WINDOWS+` können Sie den FancyZones-Editor öffnen.]]></Val>
<Val><![CDATA[Halten Sie beim Ziehen des Fensters die UMSCHALTTASTE gedrückt, um ein Fenster an einer Zone auszurichten, und legen Sie das Fenster in der gewünschten Zone ab. Über WINDOWS+` können Sie den FancyZones-Editor öffnen.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_FancyZones_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
<Val><![CDATA[Snap a window to multiple zones by holding the {Ctrl} key (while also holding {Shift}) when dragging a window.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Richten Sie ein Fenster an mehreren Zonen aus, indem Sie beim Ziehen eines Fensters neben der UMSCHALTTASTE auch die STRG-Taste gedrückt halten.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1851,10 +1863,13 @@
</Item>
<Item ItemId=";Oobe_FileExplorer_HowToEnable.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Val><![CDATA[Open File Explorer, {select the View tab} in the File Explorer ribbon, then {select Preview Pane}. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Öffnen Sie den Windows-Datei-Explorer, wählen Sie im Menüband des Datei-Explorers die Registerkarte "Ansicht" aus, und klicken Sie dann auf "Vorschaufenster".]D;]A;Klicken Sie dort einfach auf eine Markdowndatei oder ein SVG-Symbol im Datei-Explorer, und sehen Sie sich die Inhalte im Vorschaufenster an.]]></Val>
<Val><![CDATA[Öffnen Sie den Windows-Datei-Explorer, wählen Sie im Menüband des Datei-Explorers die Registerkarte "Ansicht" aus, und klicken Sie dann auf "Vorschaufenster". ]D;]A;Klicken Sie dort einfach auf eine Markdowndatei oder ein SVG-Symbol im Datei-Explorer, und sehen Sie sich die Inhalte im Vorschaufenster an.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1932,10 +1947,13 @@
</Item>
<Item ItemId=";Oobe_ImageResizer_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more image files} and {clicking on Resize pictures} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Klicken Sie im Datei-Explorer mit der rechten Maustaste auf eine oder mehrere Bilddateien, und klicken Sie im Kontextmenü auf "Bildgröße ändern".]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1968,10 +1986,13 @@
</Item>
<Item ItemId=";Oobe_KBM_HowToCreateMappings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
<Val><![CDATA[Launch {PowerToys settings}, navigate to the Keyboard Manager menu, and select either {Remap a key} or {Remap a shortcut}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Starten Sie die PowerToys-Einstellungen, navigieren Sie zum Menü "Tastatur-Manager", und wählen Sie entweder "Taste neu zuordnen" oder "Tastenkombination neu zuordnen" aus.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2013,10 +2034,13 @@
</Item>
<Item ItemId=";Oobe_Overview_CheckoutLatestVersion.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
<Val><![CDATA[For returning users, check out what is new in our]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Wiederkehrende Benutzer finden die Neuheiten in dieser aktuellen Version von]]></Val>
<Val><![CDATA[Wiederkehrende Benutzer finden die neuesten Features unter]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2031,19 +2055,25 @@
</Item>
<Item ItemId=";Oobe_Overview_DescriptionLinkText.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft-Dokumentation.]]></Val>
<Val><![CDATA[Microsoft-Dokumentation]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Overview_LatestVersionLink.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
<Val><![CDATA[release notes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys in den Versionshinweisen.]]></Val>
<Val><![CDATA[Versionshinweise]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2067,10 +2097,13 @@
</Item>
<Item ItemId=";Oobe_PowerRename_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more selected files} and {clicking on PowerRename} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Klicken Sie im Datei-Explorer mit der rechten Maustaste auf eine oder mehrere ausgewählte Dateien, und klicken Sie im Kontextmenü auf "PowerRename".]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2112,19 +2145,25 @@
</Item>
<Item ItemId=";Oobe_Run_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
<Val><![CDATA[{Alt} + {Space} to open Run and just start typing.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Drücken Sie ALT+LEERTASTE, um PowerToys zu öffnen und einfach mit der Eingabe zu beginnen.]]></Val>
<Val><![CDATA[Drücken Sie ALT+LEERTASTE, um Run zu öffnen und einfach mit der Eingabe zu beginnen.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Run_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Val><![CDATA[PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing {<} searches for running processes only, {?} will search only for file, or {.} for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys Run unterstützt verschiedene Aktionstasten zum Eingrenzen von Suchabfragen auf eine bestimmte Ergebnisteilmenge. Bei Eingabe von "<" wird beispielsweise nur nach ausgeführten Prozessen, bei "?" nur nach Dateien und bei "." nur nach installierten Anwendungen gesucht. In der PowerToys-Dokumentation finden Sie alle verfügbaren Aktionstasten.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2148,10 +2187,13 @@
</Item>
<Item ItemId=";Oobe_ShortcutGuide_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
<Val><![CDATA[{Win} + {?} to open Shortcut Guide, press it again to close or press {Esc}. You can also launch it by holding the {Win} key for one second!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Verwenden Sie WINDOWS+? zum Öffnen der Tastenkombinationsübersicht. Um sie wieder zu schließen, drücken Sie dieselbe Tastenkombination erneut, oder drücken Sie ESC. Sie können die Übersicht auch starten, indem Sie die WINDOWS-TASTE für eine Sekunde gedrückt halten!]]></Val>
<Val><![CDATA[Verwenden Sie WINDOWS+? zum Öffnen der Tastenkombinationsübersicht. Um sie wieder zu schließen, drücken Sie dieselbe Tastenkombination erneut, oder drücken Sie ESC. Sie können die Übersicht auch starten, indem Sie die WINDOWS-TASTE für eine Sekunde gedrückt halten.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2184,10 +2226,13 @@
</Item>
<Item ItemId=";Oobe_VideoConference_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
<Val><![CDATA[{Win} + {N} to toggle both your microphone and video]D;]A;{Win} + {Shift} + {A} to toggle your microphone ]D;]A;{Win} + {Shift} + {O} to toggle your video]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Drücken Sie WINDOWS+N, um sowohl Mikrofon als auch Video ein-/auszuschalten.]D;]A;Drücken Sie WINDOWS+UMSCHALT+A, um das Mikrofon ein-/auszuschalten. ]D;]A;Drücken Sie WINDOWS+UMSCHALT+O, um das Video ein-/auszuschalten.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2887,12 +2932,18 @@
<Item ItemId=";ShortcutGuide_DisabledApps.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable for apps]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Für Apps deaktivieren]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_DisabledApps_TextBoxControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Turn off Shortcut Guide when these applications have focus. Add one application name per line.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Deaktivieren Sie die Tastenkombinationsübersicht, wenn diese Anwendungen den Fokus besitzen. Fügen Sie einen Anwendungsnamen pro Zeile hinzu.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>

View File

@@ -1779,19 +1779,25 @@
</Item>
<Item ItemId=";Oobe_ColorPicker_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
<Val><![CDATA[{Win} + {Ctrl} + {C} to open Color Picker.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Windows + Mayús + C para abrir el Selector de colores.]]></Val>
<Val><![CDATA[Presione {Win} + {Ctrl} + {C} para abrir el Selector de colores.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_ColorPicker_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
<Val><![CDATA[To select a color with more precision, {scroll the mouse wheel} to zoom in.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Para seleccionar un color con más precisión, desplace la rueda del mouse para acercar.]]></Val>
<Val><![CDATA[Para seleccionar un color con más precisión, {scroll the mouse wheel} para ampliar.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1815,19 +1821,25 @@
</Item>
<Item ItemId=";Oobe_FancyZones_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
<Val><![CDATA[{Shift} + {dragging the window} to snap a window to a zone, and release the window in the desired zone. {Win} + {`} to open the FancyZones editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Presione Mayús y arrastre la ventana para ajustar una ventana a una zona y suelte la ventana en la zona deseada.]D;]A;Presione Windows + ` para abrir el editor de FancyZones.]]></Val>
<Val><![CDATA[Presione {Shift} + {dragging the window} para acoplar una ventana a una zona y suelte dicha ventana en la zona que quiera. Presione {Win} + {`} para abrir el editor de FancyZones.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_FancyZones_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
<Val><![CDATA[Snap a window to multiple zones by holding the {Ctrl} key (while also holding {Shift}) when dragging a window.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Para ajustar una ventana a varias zonas, mantenga presionada la tecla Control (mientras también mantiene presionada la tecla Mayús) al arrastrar una ventana.]]></Val>
<Val><![CDATA[Para acoplar una ventana a varias zonas, mantenga presionada la tecla {Ctrl} (a la vez que mantiene presionada la tecla {Shift}) cuando arrastre una ventana.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1851,10 +1863,13 @@
</Item>
<Item ItemId=";Oobe_FileExplorer_HowToEnable.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Val><![CDATA[Open File Explorer, {select the View tab} in the File Explorer ribbon, then {select Preview Pane}. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Abra el Explorador de archivos de Windows, seleccione la pestaña Ver en la cinta del explorador de archivos y, a continuación, seleccione Panel de vista previa. ]D;]A;Desde allí, simplemente, haga clic en un icono SVG o en un archivo de Markdown en el Explorador de archivos y observe el contenido en el panel de vista previa.]]></Val>
<Val><![CDATA[Abra el Explorador de archivos, {select the View tab} en la cinta de dicho explorador y, a continuación, {select Preview Pane}. ]D;]A;Desde aquí, simplemente haga clic en un icono SVG o en un archivo de Markdown del Explorador de archivos y observe el contenido en el panel de vista previa.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1932,10 +1947,13 @@
</Item>
<Item ItemId=";Oobe_ImageResizer_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more image files} and {clicking on Resize pictures} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[En el Explorador de archivos, haga clic con el botón derecho en uno o varios archivos de imagen y, a continuación, en el menú contextual, haga clic en Cambiar el tamaño de las imágenes.]]></Val>
<Val><![CDATA[En el Explorador de archivos, {right-clicking one or more image files} y, a continuación, en el menú contextual, {clicking on Resize pictures}.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1968,10 +1986,13 @@
</Item>
<Item ItemId=";Oobe_KBM_HowToCreateMappings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
<Val><![CDATA[Launch {PowerToys settings}, navigate to the Keyboard Manager menu, and select either {Remap a key} or {Remap a shortcut}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Inicie la configuración de PowerToys, vaya al menú del Administrador de teclado y seleccione Remap a key o Remap a shortcut.]]></Val>
<Val><![CDATA[Inicie {PowerToys settings}, vaya al menú del Administrador de teclado y seleccione {Remap a key} o {Remap a shortcut}.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2013,10 +2034,13 @@
</Item>
<Item ItemId=";Oobe_Overview_CheckoutLatestVersion.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
<Val><![CDATA[For returning users, check out what is new in our]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Para los usuarios existentes, descubra las novedades de la versión más reciente de]]></Val>
<Val><![CDATA[Descubra las novedades para los usuarios recurrentes en]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2031,19 +2055,25 @@
</Item>
<Item ItemId=";Oobe_Overview_DescriptionLinkText.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft Docs.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Overview_LatestVersionLink.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
<Val><![CDATA[release notes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys en las notas de la versión.]]></Val>
<Val><![CDATA[notas de la versión]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2067,10 +2097,13 @@
</Item>
<Item ItemId=";Oobe_PowerRename_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more selected files} and {clicking on PowerRename} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[En el Explorador de archivos, haga clic con el botón derecho en uno o varios archivos seleccionados y, a continuación, en el menú contextual, haga clic en PowerRename.]]></Val>
<Val><![CDATA[En el Explorador de archivos, {right-clicking one or more selected files} y, a continuación, en el menú contextual, {clicking on PowerRename}.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2112,19 +2145,25 @@
</Item>
<Item ItemId=";Oobe_Run_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
<Val><![CDATA[{Alt} + {Space} to open Run and just start typing.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Use Alt + espacio para abrir PowerToys y empiece a escribir.]]></Val>
<Val><![CDATA[Presione {Alt} + {Space} para abrir la opción Ejecutar y empiece a escribir.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Run_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Val><![CDATA[PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing {<} searches for running processes only, {?} will search only for file, or {.} for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys Run admite varias teclas de acción para limitar las consultas de búsqueda a un subconjunto de resultados concreto. Al escribir <, solo se buscan procesos, con ? solo se buscan archivos y con . solo aplicaciones instaladas. Consulte en la documentación de PowerToys el conjunto completo de "teclas de acción" disponibles.]]></Val>
<Val><![CDATA[PowerToys Run admite varias teclas de acción para limitar las consultas de búsqueda a un subconjunto de resultados específico. Al escribir {<}, solo se buscan procesos; si se escribe {?}, solo se buscan archivos y, si se usa {.}, solo se buscan aplicaciones instaladas. Consulte la documentación de PowerToys para obtener el conjunto completo de "teclas de acción" disponibles.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2148,10 +2187,13 @@
</Item>
<Item ItemId=";Oobe_ShortcutGuide_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
<Val><![CDATA[{Win} + {?} to open Shortcut Guide, press it again to close or press {Esc}. You can also launch it by holding the {Win} key for one second!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Windows + ? para abrir la guía de accesos directos. Para cerrarla, repita este acceso directo o presione Esc. También puede iniciarla manteniendo la tecla Win presionada durante un segundo.]]></Val>
<Val><![CDATA[Presione {Win} + {?} para abrir la Guía de métodos abreviados de teclado. Para cerrarla, presione de nuevo esta combinación de teclas o {Esc}. También puede iniciarla si mantiene presionada la tecla {Win} durante un segundo.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2184,10 +2226,13 @@
</Item>
<Item ItemId=";Oobe_VideoConference_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
<Val><![CDATA[{Win} + {N} to toggle both your microphone and video]D;]A;{Win} + {Shift} + {A} to toggle your microphone ]D;]A;{Win} + {Shift} + {O} to toggle your video]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Windows + N para alternar el micrófono y el vídeo ]D;]A;Windows + Mayús + A para alternar el micrófono ]D;]A;Windows + Mayús + O para alternar el vídeo]]></Val>
<Val><![CDATA[Presione {Win} + {N} para activar o desactivar el micrófono y el vídeo.]D;]A;Presione {Win} + {Shift} + {A} para activar o desactivar el micrófono. ]D;]A;Presione {Win} + {Shift} + {O} para activar o desactivar el vídeo.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2887,12 +2932,18 @@
<Item ItemId=";ShortcutGuide_DisabledApps.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable for apps]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Deshabilitar para las aplicaciones]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_DisabledApps_TextBoxControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Turn off Shortcut Guide when these applications have focus. Add one application name per line.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Desactive la Guía de métodos abreviados de teclado cuando estas aplicaciones tengan el foco. Agregue un nombre de aplicación por línea.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2900,7 +2951,7 @@
<Str Cat="Text">
<Val><![CDATA[Example: outlook.exe]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Ejemplo: outlook.exe]]></Val>
<Val><![CDATA[Ejemplo: outlook.exe.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />

View File

@@ -1779,19 +1779,25 @@
</Item>
<Item ItemId=";Oobe_ColorPicker_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
<Val><![CDATA[{Win} + {Ctrl} + {C} to open Color Picker.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Win+Maj+C permet d'ouvrir Color Picker.]]></Val>
<Val><![CDATA[{Win} + {Ctrl} + {C} permet d'ouvrir Color Picker.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_ColorPicker_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
<Val><![CDATA[To select a color with more precision, {scroll the mouse wheel} to zoom in.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Pour sélectionner une couleur avec plus de précision, utilisez la roulette de la souris pour faire un zoom avant.]]></Val>
<Val><![CDATA[Pour sélectionner une couleur avec plus de précision, {scroll the mouse wheel} pour faire un zoom avant.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1815,19 +1821,25 @@
</Item>
<Item ItemId=";Oobe_FancyZones_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
<Val><![CDATA[{Shift} + {dragging the window} to snap a window to a zone, and release the window in the desired zone. {Win} + {`} to open the FancyZones editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Appuyez sur Maj en faisant glisser la fenêtre pour l'aligner sur une zone, puis relâchez la fenêtre dans la zone désirée.]D;]A;Win+` permet d'ouvrir l'éditeur FancyZones.]]></Val>
<Val><![CDATA[{Shift} + {dragging the window} permet d'aligner une fenêtre sur une zone, puis relâchez la fenêtre dans la zone désirée. {Win} + {`} permet d'ouvrir l'éditeur FancyZones.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_FancyZones_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
<Val><![CDATA[Snap a window to multiple zones by holding the {Ctrl} key (while also holding {Shift}) when dragging a window.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Pour aligner une fenêtre sur plusieurs zones, maintenez la touche Ctrl (et la touche Maj) quand vous faites glisser une fenêtre.]]></Val>
<Val><![CDATA[Pour aligner une fenêtre sur plusieurs zones, maintenez la touche {Ctrl} (et la touche {Shift}) quand vous faites glisser une fenêtre.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1851,10 +1863,13 @@
</Item>
<Item ItemId=";Oobe_FileExplorer_HowToEnable.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Val><![CDATA[Open File Explorer, {select the View tab} in the File Explorer ribbon, then {select Preview Pane}. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Ouvrez l'Explorateur de fichiers Windows, sélectionnez l'onglet Affichage dans le ruban de l'Explorateur de fichiers, puis lectionnez Volet de visualisation. ]D;]A;À partir de là, cliquez simplement sur un fichier Markdown ou une icône SVG dans l'Explorateur de fichiers et observez le contenu dans le volet de visualisation !]]></Val>
<Val><![CDATA[Ouvrez l'Explorateur de fichiers, {select the View tab} dans le ruban de l'Explorateur de fichiers, puis {select Preview Pane}. ]D;]A;À partir de là, cliquez simplement sur un fichier Markdown ou une icône SVG dans l'Explorateur de fichiers et observez le contenu dans le volet de visualisation !]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1932,10 +1947,13 @@
</Item>
<Item ItemId=";Oobe_ImageResizer_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more image files} and {clicking on Resize pictures} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Dans l'Explorateur de fichiers, cliquez avec le bouton droit sur un ou plusieurs fichiers image, puis sur Redimensionner les images dans le menu contextuel.]]></Val>
<Val><![CDATA[Dans l'Explorateur de fichiers, {right-clicking one or more image files} et {clicking on Resize pictures} dans le menu contextuel.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1968,10 +1986,13 @@
</Item>
<Item ItemId=";Oobe_KBM_HowToCreateMappings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
<Val><![CDATA[Launch {PowerToys settings}, navigate to the Keyboard Manager menu, and select either {Remap a key} or {Remap a shortcut}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Lancez les paramètres PowerToys, accédez au menu Keyboard Manager et sélectionnez Remapper une touche ou Remapper un raccourci.]]></Val>
<Val><![CDATA[Lancez les {PowerToys settings}, accédez au menu Keyboard Manager et sélectionnez {Remap a key} ou {Remap a shortcut}.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2013,10 +2034,13 @@
</Item>
<Item ItemId=";Oobe_Overview_CheckoutLatestVersion.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
<Val><![CDATA[For returning users, check out what is new in our]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Pour les utilisateurs réguliers, découvrez les nouveautés de cette dernière version de]]></Val>
<Val><![CDATA[Pour les utilisateurs réguliers, découvrez les nouveautés dans nos]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2031,19 +2055,25 @@
</Item>
<Item ItemId=";Oobe_Overview_DescriptionLinkText.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft Docs.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Overview_LatestVersionLink.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
<Val><![CDATA[release notes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys dans nos notes de publication.]]></Val>
<Val><![CDATA[notes de publication]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2067,10 +2097,13 @@
</Item>
<Item ItemId=";Oobe_PowerRename_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more selected files} and {clicking on PowerRename} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Dans l'Explorateur de fichiers, cliquez avec le bouton droit sur un ou plusieurs fichiers sélectionnés, puis sur PowerRename dans le menu contextuel.]]></Val>
<Val><![CDATA[Dans l'Explorateur de fichiers, {right-clicking one or more selected files} et {clicking on PowerRename} dans le menu contextuel.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2112,19 +2145,25 @@
</Item>
<Item ItemId=";Oobe_Run_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
<Val><![CDATA[{Alt} + {Space} to open Run and just start typing.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Alt+Espace pour ouvrir PowerToys et commencer simplement à taper du texte.]]></Val>
<Val><![CDATA[{Alt} + {Space} permet d'ouvrir Exécuter, puis commencez à taper du texte.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Run_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Val><![CDATA[PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing {<} searches for running processes only, {?} will search only for file, or {.} for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys Run prend en charge différentes touches d'action afin d'affiner les requêtes de recherche pour un sous-ensemble spécifique de résultats. Par exemple, la touche < recherche les processus en cours d'exécution uniquement, ? recherche uniquement les fichiers et . recherche les applications installées ! Consultez la documentation PowerToys pour voir l'ensemble complet des « touches d'action » disponibles.]]></Val>
<Val><![CDATA[PowerToys Run prend en charge différentes touches d'action afin d'affiner les requêtes de recherche pour un sous-ensemble spécifique de résultats. Par exemple, la touche {<} recherche les processus en cours d'exécution uniquement, {?} recherche uniquement les fichiers et {.} recherche les applications installées ! Consultez la documentation PowerToys pour voir l'ensemble complet des « touches d'action » disponibles.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2148,10 +2187,13 @@
</Item>
<Item ItemId=";Oobe_ShortcutGuide_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
<Val><![CDATA[{Win} + {?} to open Shortcut Guide, press it again to close or press {Esc}. You can also launch it by holding the {Win} key for one second!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Win+? permet d'ouvrir Shortcut Guide, appuyez de nouveau pour fermer ou appuyez sur Echap. Vous pouvez aussi le lancer en maintenant la touche Win enfoncée pendant une seconde !]]></Val>
<Val><![CDATA[{Win} + {?} permet d'ouvrir Shortcut Guide, appuyez de nouveau pour fermer ou appuyez sur {Esc}. Vous pouvez aussi le lancer en maintenant la touche {Win} enfoncée pendant une seconde !]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2184,10 +2226,13 @@
</Item>
<Item ItemId=";Oobe_VideoConference_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
<Val><![CDATA[{Win} + {N} to toggle both your microphone and video]D;]A;{Win} + {Shift} + {A} to toggle your microphone ]D;]A;{Win} + {Shift} + {O} to toggle your video]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Win+N permet d'activer/de désactiver à la fois le micro et la vidéo ]D;]A;Win+Maj+A permet d'activer/de désactiver votre micro ]D;]A;Win+Maj+O permet d'activer/de désactiver votre vidéo]]></Val>
<Val><![CDATA[{Win} + {N} permet d'activer/de désactiver à la fois le micro et la vidéo]D;]A;{Win} + {Shift} + {A} permet d'activer/de désactiver votre micro ]D;]A;{Win} + {Shift} + {O} permet d'activer/de désactiver votre vidéo]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2887,12 +2932,18 @@
<Item ItemId=";ShortcutGuide_DisabledApps.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable for apps]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Désactiver pour les applications]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_DisabledApps_TextBoxControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Turn off Shortcut Guide when these applications have focus. Add one application name per line.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Désactivez Shortcut Guide quand ces applications ont le focus. Ajoutez un nom d'application par ligne.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>

View File

@@ -754,7 +754,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[File Explorer]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1779,19 +1779,25 @@
</Item>
<Item ItemId=";Oobe_ColorPicker_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
<Val><![CDATA[{Win} + {Ctrl} + {C} to open Color Picker.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Win + Shift + C a Color Picker megnyitása.]]></Val>
<Val><![CDATA[A {Win} + {Ctrl} + {C} billentyűkombinációval megnyithatja a Színszedőt.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_ColorPicker_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
<Val><![CDATA[To select a color with more precision, {scroll the mouse wheel} to zoom in.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[A pontosabb színkiválasztáshoz nagyítson az egérkerék görgetésével.]]></Val>
<Val><![CDATA[A pontosabb színkiválasztáshoz nagyítson {az egérkerék görgetésével}.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1815,19 +1821,25 @@
</Item>
<Item ItemId=";Oobe_FancyZones_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
<Val><![CDATA[{Shift} + {dragging the window} to snap a window to a zone, and release the window in the desired zone. {Win} + {`} to open the FancyZones editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Ablak zónához való dokkolásához a Shift billentyűt lenyomva tartva húzza az ablakot a kívánt zónába, majd engedje el.]D;]A;A Win + billentyűkombinációt lenyomva megnyithatja a FancyZones szerkesztőt.]]></Val>
<Val><![CDATA[Ablak zónához való dokkolásához a {Shift} billentyűt lenyomva tartva {húzza az ablakot} a kívánt zónába, majd engedje el. A {Win} + {`} billentyűkombinációt lenyomva megnyithatja a FancyZones szerkesztőt.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_FancyZones_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
<Val><![CDATA[Snap a window to multiple zones by holding the {Ctrl} key (while also holding {Shift}) when dragging a window.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Ha több zónához szeretne dokkolni egy ablakot, az ablak húzása közben a SHIFT mellett a CTRL billentyűt is tartsa lenyomva.]]></Val>
<Val><![CDATA[Ha több zónához szeretne dokkolni egy ablakot, az ablak húzása közben a {Shift} mellett a {Ctrl} billentyűt is tartsa lenyomva.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1851,10 +1863,13 @@
</Item>
<Item ItemId=";Oobe_FileExplorer_HowToEnable.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Val><![CDATA[Open File Explorer, {select the View tab} in the File Explorer ribbon, then {select Preview Pane}. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nyissa meg a Windows Fájlkezelőt, válassza a Fájlkezelő menüszalagján lévő Nézet lapfület, majd a Betekintő ablaktábla lehetőséget. ]D;]A;A Fájlkezelóben kattintson a kívánt Markdown-fájlra vagy SVG-ikonra, és annak tartalma megjelenik az előnézeti ablaktáblában.]]></Val>
<Val><![CDATA[Nyissa meg a Fájlkezelőt, {válassza a Nézet lapfület} a Fájlkezelő menüszalagján, majd {válassza a Betekintő ablaktábla lehetőséget}. ]D;]A;A Fájlkezelőben kattintson a kívánt Markdown-fájlra vagy SVG-ikonra, és annak tartalma megjelenik az előnézeti ablaktáblában.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1932,10 +1947,13 @@
</Item>
<Item ItemId=";Oobe_ImageResizer_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more image files} and {clicking on Resize pictures} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[A Fájlkezelőben kattintson a jobb gombbal egy vagy több képfájlra, majd kattintson a Képek átméretezése parancsra a helyi menüben.]]></Val>
<Val><![CDATA[A Fájlkezelőben {kattintson a jobb gombbal egy vagy több képfájlra}, majd {kattintson a Képek átméretezése parancsra} a helyi menüben.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1968,10 +1986,13 @@
</Item>
<Item ItemId=";Oobe_KBM_HowToCreateMappings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
<Val><![CDATA[Launch {PowerToys settings}, navigate to the Keyboard Manager menu, and select either {Remap a key} or {Remap a shortcut}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nyissa meg a PowerToys-beállításokat, navigáljon a Billentyűzetmendzser menüjéhez, és válassza a Billentyű átkötése vagy a Billentyűparancs átkötése parancsot.]]></Val>
<Val><![CDATA[Nyissa meg a {PowerToys-beállításokat}, navigáljon a Billentyűmenedzser menüjéhez, és válassza a {Billentyű átkötése} vagy a {Billentyűparancs átkötése} parancsot.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2013,10 +2034,13 @@
</Item>
<Item ItemId=";Oobe_Overview_CheckoutLatestVersion.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
<Val><![CDATA[For returning users, check out what is new in our]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[A meglévő felhasználók tájékozódhatnak a legújabb verzió újdonságairól:]]></Val>
<Val><![CDATA[A meglévő felhasználók tájékozódhatnak az újdonságokról itt:]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2031,19 +2055,25 @@
</Item>
<Item ItemId=";Oobe_Overview_DescriptionLinkText.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft Docs.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Overview_LatestVersionLink.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
<Val><![CDATA[release notes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys a kibocsátási megjegyzésekben.]]></Val>
<Val><![CDATA[kiadási megjegyzések]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2067,10 +2097,13 @@
</Item>
<Item ItemId=";Oobe_PowerRename_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more selected files} and {clicking on PowerRename} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[A Fájlkezelőben kattintson a jobb gombbal egy vagy több kijelölt fájlra, majd válassza a helyi menü PowerRename parancsát.]]></Val>
<Val><![CDATA[A Fájlkezelőben {kattintson a jobb gombbal egy vagy több kijelölt fájlra}, majd {kattintson PowerRename parancsra} a helyi menüben.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2112,19 +2145,25 @@
</Item>
<Item ItemId=";Oobe_Run_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
<Val><![CDATA[{Alt} + {Space} to open Run and just start typing.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[A PowerToys megnyitásához nyomja le az Alt + Szóköz billentyűkombinációt, és kezdjen el gépelni.]]></Val>
<Val><![CDATA[Nyissa meg a Futtatást az {Alt} + {Space} billentyűkombinációval, és egyszerűen kezdjen el gépelni.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Run_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Val><![CDATA[PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing {<} searches for running processes only, {?} will search only for file, or {.} for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[A PowerToys-futtatásokban számos műveletbillentyű használható a keresési lekérdezések eredményeinek egy meghatározott részhalmazra való leszűkítése céljából. Példák: < csak a futó folyamatok keresése, ? csak fájl keresése, . telepített alkalmazások keresése. A műveletbillentyűk teljes készletét a PowerToys dokumentációjában tekintheti meg.]]></Val>
<Val><![CDATA[A PowerToys Run számos műveleti billentyűt támogat a keresési lekérdezések az eredményeinek egy meghatározott részhalmazára való leszűkítéséhez. A {<} beírásával csak a futó folyamatokat, a {?} beírásával csak a fájlokat, a {.} beírásával pedig a telepített alkalmazásokat lehet keresni. Az elérhető műveleti billentyűk teljes készletét a PowerToys dokumentációjában találhatja meg.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2148,10 +2187,13 @@
</Item>
<Item ItemId=";Oobe_ShortcutGuide_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
<Val><![CDATA[{Win} + {?} to open Shortcut Guide, press it again to close or press {Esc}. You can also launch it by holding the {Win} key for one second!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[A Win + ? billentyűkombináció lenyomásával megnyithatja, annak újbóli lenyomásával vagy az Esc billentyű használatával pedig bezárhatja a Billentyűsegédet. A segédprogramot a Windows billentyű egy másodpercig tartó lenyomásával is elindíthatja.]]></Val>
<Val><![CDATA[A {Win} + {?} billentyűkombináció lenyomásával megnyithatja, annak újbóli lenyomásával vagy az {Esc} billentyű használatával pedig bezárhatja a Billentyűsegédet. A segédprogramot a {Win} billentyű egy másodpercig tartó lenyomásával is elindíthatja.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2184,10 +2226,13 @@
</Item>
<Item ItemId=";Oobe_VideoConference_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
<Val><![CDATA[{Win} + {N} to toggle both your microphone and video]D;]A;{Win} + {Shift} + {A} to toggle your microphone ]D;]A;{Win} + {Shift} + {O} to toggle your video]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Win + N a mikrofon és a videó be-/kikapcsolása ]D;]A;Win + Shift + A a mikrofon be-/kikapcsolása ]D;]A;Win + Shift + O a videó be-/kikapcsolása]]></Val>
<Val><![CDATA[{Win} + {N} a mikrofon és a videó be-/kikapcsolása ]D;]A;{Win} + {Shift} + {A} a mikrofon be-/kikapcsolása ]D;]A;{Win} + {Shift} + {O} a videó be-/kikapcsolása]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2887,12 +2932,18 @@
<Item ItemId=";ShortcutGuide_DisabledApps.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable for apps]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Letiltás az alkalmazások számára]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_DisabledApps_TextBoxControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Turn off Shortcut Guide when these applications have focus. Add one application name per line.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[A Billentyűsegéd kikapcsolása, ha ezek az alkalmazások vannak fókuszban. Soronként egy alkalmazásnevet adjon meg.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>

View File

@@ -1779,19 +1779,25 @@
</Item>
<Item ItemId=";Oobe_ColorPicker_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
<Val><![CDATA[{Win} + {Ctrl} + {C} to open Color Picker.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[WINDOWS + MAIUSC + C per aprire Selezione colori.]]></Val>
<Val><![CDATA[{WINDOWS} + {CTRL} + {C} per aprire Selezione colori.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_ColorPicker_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
<Val><![CDATA[To select a color with more precision, {scroll the mouse wheel} to zoom in.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Per selezionare un colore con maggiore precisione, scorrere la rotellina del mouse per fare zoom avanti.]]></Val>
<Val><![CDATA[Per selezionare un colore con maggiore precisione, {scorrere la rotellina del mouse} per fare zoom avanti.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1815,19 +1821,25 @@
</Item>
<Item ItemId=";Oobe_FancyZones_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
<Val><![CDATA[{Shift} + {dragging the window} to snap a window to a zone, and release the window in the desired zone. {Win} + {`} to open the FancyZones editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Tenere premuto il tasto MAIUSC e trascinare la finestra per affiancare la finestra sulla zona e rilasciarla sulla zona desiderata.]D;]A;Usare la combinazione di tasti WINDOWS + ' per aprire l'editor FancyZones.]]></Val>
<Val><![CDATA[Tenere premuto il tasto {MAIUSC} e {trascinare la finestra} per affiancare la finestra sulla zona e rilasciarla sulla zona desiderata. Usare la combinazione di tasti {WINDOWS} + {`} per aprire l'editor FancyZones.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_FancyZones_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
<Val><![CDATA[Snap a window to multiple zones by holding the {Ctrl} key (while also holding {Shift}) when dragging a window.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Per affiancare una finestra su più zone, tenere premuto il tasto CTRL (tenendo premuto anche il tasto MAIUSC) durante il trascinamento di una finestra.]]></Val>
<Val><![CDATA[Per affiancare una finestra su più zone, tenere premuto il tasto {CTRL} (tenendo premuto anche il tasto {MAIUSC}) durante il trascinamento di una finestra.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1851,10 +1863,13 @@
</Item>
<Item ItemId=";Oobe_FileExplorer_HowToEnable.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Val><![CDATA[Open File Explorer, {select the View tab} in the File Explorer ribbon, then {select Preview Pane}. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Aprire Esplora file di Windows, selezionare la scheda Visualizza nella barra multifunzione di Esplora file e quindi selezionare Riquadro di anteprima. ]D;]A;A questo punto, è sufficiente fare clic su un file di markdown o su un'icona SVG in Esplora file e osservare il contenuto nel riquadro di anteprima.]]></Val>
<Val><![CDATA[Aprire Esplora file, {selezionare la scheda Visualizza} nella barra multifunzione di Esplora file e quindi {selezionare Riquadro di anteprima}. ]D;]A;A questo punto, è sufficiente fare clic su un file di markdown o su un'icona SVG in Esplora file e osservare il contenuto nel riquadro di anteprima.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1932,10 +1947,13 @@
</Item>
<Item ItemId=";Oobe_ImageResizer_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more image files} and {clicking on Resize pictures} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[In Esplora file fare clic con il pulsante destro del mouse su uno o più file di immagine e scegliere Ridimensiona immagini dal menu di scelta rapida.]]></Val>
<Val><![CDATA[In Esplora file {fare clic con il pulsante destro del mouse su uno o più file di immagine} e {scegliere Ridimensiona immagini} dal menu di scelta rapida.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1968,10 +1986,13 @@
</Item>
<Item ItemId=";Oobe_KBM_HowToCreateMappings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
<Val><![CDATA[Launch {PowerToys settings}, navigate to the Keyboard Manager menu, and select either {Remap a key} or {Remap a shortcut}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Avviare le impostazioni di PowerToys, passare al menu Gestione tastiera e selezionare Modifica il mapping di un tasto o Modifica il mapping di un tasto di scelta rapida.]]></Val>
<Val><![CDATA[Avviare le {impostazioni di PowerToys}, passare al menu Gestione tastiera e selezionare {Modifica il mapping di un tasto} o {Modifica il mapping di un tasto di scelta rapida}.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2013,10 +2034,13 @@
</Item>
<Item ItemId=";Oobe_Overview_CheckoutLatestVersion.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
<Val><![CDATA[For returning users, check out what is new in our]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Per gli utenti esistenti: novità dell'ultima versione di]]></Val>
<Val><![CDATA[Per gli utenti esistenti: esaminare le novità nelle]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2031,19 +2055,25 @@
</Item>
<Item ItemId=";Oobe_Overview_DescriptionLinkText.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft Docs.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Overview_LatestVersionLink.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
<Val><![CDATA[release notes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys nelle note sulla versione.]]></Val>
<Val><![CDATA[note sulla versione]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2067,10 +2097,13 @@
</Item>
<Item ItemId=";Oobe_PowerRename_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more selected files} and {clicking on PowerRename} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[In Esplora file fare clic con il pulsante destro del mouse su uno o più file selezionati e scegliere PowerRename dal menu di scelta rapida.]]></Val>
<Val><![CDATA[In Esplora file {fare clic con il pulsante destro del mouse su uno o più file selezionati} e {scegliere Rinomina speciale} dal menu di scelta rapida.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2112,19 +2145,25 @@
</Item>
<Item ItemId=";Oobe_Run_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
<Val><![CDATA[{Alt} + {Space} to open Run and just start typing.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[ALT + BARRA SPAZIATRICE per aprire PowerToys e iniziare a digitare.]]></Val>
<Val><![CDATA[{ALT} + {BARRA SPAZIATRICE} per aprire PowerToys e iniziare a digitare.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Run_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Val><![CDATA[PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing {<} searches for running processes only, {?} will search only for file, or {.} for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys Run supporta vari tasti di azione per indirizzare le query di ricerca per un subset specifico di risultati. Se si digita < verranno cercati solo i processi in esecuzione, se si digita ? verranno cercati solo i file e se si digita . verranno cercate solo le applicazioni installate. Per il set completo di 'Tasti di azione' disponibili, vedere la documentazione di PowerToys.]]></Val>
<Val><![CDATA[PowerToys Run supporta vari tasti di azione per indirizzare le query di ricerca per un subset specifico di risultati. Se si digita {<} verranno cercati solo i processi in esecuzione, se si digita {?} verranno cercati solo i file e se si digita {.} verranno cercate solo le applicazioni installate. Per il set completo di 'Tasti di azione' disponibili, vedere la documentazione di PowerToys.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2148,10 +2187,13 @@
</Item>
<Item ItemId=";Oobe_ShortcutGuide_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
<Val><![CDATA[{Win} + {?} to open Shortcut Guide, press it again to close or press {Esc}. You can also launch it by holding the {Win} key for one second!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Usare WINDOWS + ? per aprire la Guida ai tasti di scelta rapida. Per chiuderla, premere nuovamente questa combinazione di tasti o ESC. È anche possibile avviarla tenendo premuto il tasto WINDOWS per un secondo.]]></Val>
<Val><![CDATA[Usare {WINDOWS} + {?} per aprire la Guida ai tasti di scelta rapida. Per chiuderla, premere nuovamente questa combinazione di tasti o {ESC}. È anche possibile avviarla tenendo premuto il tasto {WINDOWS} per un secondo.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2184,10 +2226,13 @@
</Item>
<Item ItemId=";Oobe_VideoConference_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
<Val><![CDATA[{Win} + {N} to toggle both your microphone and video]D;]A;{Win} + {Shift} + {A} to toggle your microphone ]D;]A;{Win} + {Shift} + {O} to toggle your video]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[WINDOWS + N per attivare/disattivare il microfono e la videocamera ]D;]A;WINDOWS + MAIUSC + A per attivare/disattivare il microfono ]D;]A;WINDOWS + MAIUSC + O per attivare/disattivare la videocamera]]></Val>
<Val><![CDATA[{WINDOWS} + {N} per attivare/disattivare il microfono e la videocamera ]D;]A;{WINDOWS} + {MAIUSC} + {A} per attivare/disattivare il microfono ]D;]A;{WINDOWS} + {MAIUSC} + {O} per attivare/disattivare la videocamera]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>

View File

@@ -1779,19 +1779,25 @@
</Item>
<Item ItemId=";Oobe_ColorPicker_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
<Val><![CDATA[{Win} + {Ctrl} + {C} to open Color Picker.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Color Picker を開くには、Win キーを押しながら Shift キーの後に C キーを押します。]]></Val>
<Val><![CDATA[Color Picker を開くには、{Win} キーを押しながら {Ctrl} キーの後に {C} キーを押します。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_ColorPicker_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
<Val><![CDATA[To select a color with more precision, {scroll the mouse wheel} to zoom in.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[より正確に色を選択するには、マウス ホイールをスクロールして拡大します。]]></Val>
<Val><![CDATA[より正確に色を選択するには、{マウス ホイールをスクロール}して拡大します。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1815,19 +1821,25 @@
</Item>
<Item ItemId=";Oobe_FancyZones_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
<Val><![CDATA[{Shift} + {dragging the window} to snap a window to a zone, and release the window in the desired zone. {Win} + {`} to open the FancyZones editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Shift キーを押しながら、ウィンドウをゾーンにスナップするためにウィンドウをドラッグし、目的のゾーンでウィンドウを解放します。]D;]A;FancyZones エディターを開くには、Win キーを押しながら ` キーを押します。]]></Val>
<Val><![CDATA[{Shift} キーを押しながら、ウィンドウをゾーンにスナップするために{ウィンドウをドラッグ}し、目的のゾーンでウィンドウを解放します。FancyZones エディターを開くには、{Win} キーを押しながら {`} キーを押します。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_FancyZones_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
<Val><![CDATA[Snap a window to multiple zones by holding the {Ctrl} key (while also holding {Shift}) when dragging a window.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[ウィンドウをドラッグするときに、Ctrl キーを押したまま (Shift キーも押しながら)、ウィンドウを複数のゾーンにスナップします。]]></Val>
<Val><![CDATA[ウィンドウをドラッグするときに、{Ctrl} キーを押したまま ({Shift} キーも押しながら)、ウィンドウを複数のゾーンにスナップします。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1851,10 +1863,13 @@
</Item>
<Item ItemId=";Oobe_FileExplorer_HowToEnable.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Val><![CDATA[Open File Explorer, {select the View tab} in the File Explorer ribbon, then {select Preview Pane}. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Windows エクスプローラーを開き、エクスプローラー リボンの [表示]5D; タブを選択して、[プレビュー ウィンドウ]5D; を選択します。]D;]A;ここで、エクスプローラーの Markdown ファイルまたは SVG アイコンをクリックするだけで、プレビュー ウィンドウにコンテンツを表示できます。]]></Val>
<Val><![CDATA[エクスプローラーを開き、エクスプローラー リボンの {[表示]5D; タブを選択}して、{[プレビュー ウィンドウ]5D; を選択}します。]D;]A;ここで、エクスプローラー内のマークダウン ファイルまたは SVG アイコンをクリックするだけで、プレビュー ウィンドウにコンテンツを表示できます。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1932,10 +1947,13 @@
</Item>
<Item ItemId=";Oobe_ImageResizer_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more image files} and {clicking on Resize pictures} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[エクスプローラーで、1 つまたは複数の画像ファイルを右クリックし、コンテキスト メニューから [画像のサイズ変更]5D; をクリックします。]]></Val>
<Val><![CDATA[エクスプローラーで、{1 つまたは複数の画像ファイルを右クリック}し、コンテキスト メニューから {[画像のサイズ変更]5D; をクリック}します。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1968,10 +1986,13 @@
</Item>
<Item ItemId=";Oobe_KBM_HowToCreateMappings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
<Val><![CDATA[Launch {PowerToys settings}, navigate to the Keyboard Manager menu, and select either {Remap a key} or {Remap a shortcut}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys の設定を起動し、Keyboard Manager のメニューに移動して、[キーの再マップ]5D; または [ショートカットの再マップ]5D; を選択します。]]></Val>
<Val><![CDATA[{PowerToys の設定}を起動し、Keyboard Manager のメニューに移動して、{[キーの再マップ]5D;} または {[ショートカットの再マップ]5D;} を選択します。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2013,10 +2034,13 @@
</Item>
<Item ItemId=";Oobe_Overview_CheckoutLatestVersion.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
<Val><![CDATA[For returning users, check out what is new in our]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[利用経験のあるユーザーは、PowerToys の最新バージョンの新機能について]]></Val>
<Val><![CDATA[利用経験のあるユーザーは、新機能について次をご覧ください:]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2031,19 +2055,25 @@
</Item>
<Item ItemId=";Oobe_Overview_DescriptionLinkText.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft Docs をご覧ください。]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Overview_LatestVersionLink.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
<Val><![CDATA[release notes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[リリース ノートをご確認ください。]]></Val>
<Val><![CDATA[リリース ノート]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2067,10 +2097,13 @@
</Item>
<Item ItemId=";Oobe_PowerRename_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more selected files} and {clicking on PowerRename} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[エクスプローラーで、選択した 1 つまたは複数のファイルを右クリックし、コンテキスト メニューから [PowerRename]5D; をクリックします。]]></Val>
<Val><![CDATA[エクスプローラーで、{選択した 1 つまたは複数のファイルを右クリック}し、コンテキスト メニューから {[PowerRename]5D; をクリック}します。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2112,19 +2145,25 @@
</Item>
<Item ItemId=";Oobe_Run_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
<Val><![CDATA[{Alt} + {Space} to open Run and just start typing.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Alt キーを押しながら Space キーを押して PowerToys を開き、入力を開始します。]]></Val>
<Val><![CDATA[{Alt} キーを押しながら {Space} キーを押して Run を開き、入力を開始するだけです。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Run_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Val><![CDATA[PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing {<} searches for running processes only, {?} will search only for file, or {.} for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys では、特定の結果のサブネットに対して検索クエリをフィルター処理するさまざまなアクション キーがサポートされています。実行中のプロセスのみを検索する場合は <、ファイルのみを検索する場合は ?、インストールされているアプリケーションを検索する場合は . を入力します。使用可能なすべての 'アクション キー' のセットについては、PowerToys のドキュメントをご覧ください。]]></Val>
<Val><![CDATA[PowerToys Run では、結果の特定のサブネットに対して検索クエリをフィルター処理するさまざまなアクション キーがサポートされています。実行中のプロセスのみを検索する場合は {<}、ファイルのみを検索する場合は {?}、インストールされているアプリケーションを検索する場合は {.} を入力します。使用可能なすべての 'アクション キー' のセットについては、PowerToys のドキュメントをご覧ください。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2148,10 +2187,13 @@
</Item>
<Item ItemId=";Oobe_ShortcutGuide_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
<Val><![CDATA[{Win} + {?} to open Shortcut Guide, press it again to close or press {Esc}. You can also launch it by holding the {Win} key for one second!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Shortcut Guide を開くには Win キーを押しながら ? キーを押し、閉じるにはもう一度押すか Esc キーを押します。Win キーを 1 秒間押し続けることによって起動することもできます。]]></Val>
<Val><![CDATA[Shortcut Guide を開くには {Win} キーを押しながら {?} キーを押し、閉じるにはもう一度押すか {Esc} キーを押します。{Win} キーを 1 秒間押し続けることによって起動することもできます。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2184,10 +2226,13 @@
</Item>
<Item ItemId=";Oobe_VideoConference_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
<Val><![CDATA[{Win} + {N} to toggle both your microphone and video]D;]A;{Win} + {Shift} + {A} to toggle your microphone ]D;]A;{Win} + {Shift} + {O} to toggle your video]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[マイクとビデオの両方を切り替えるには、Win キーを押しながら N キーを押します]D;]A;マイクを切り替えるには Win キーを押しながら Shift キーの後に A キーを押します]D;]A;ビデオを切り替えるには Win キーを押しながら Shift キーの後に O キーを押します]]></Val>
<Val><![CDATA[マイクとビデオの両方を切り替えるには、{Win} キーを押しながら {N} キーを押します]D;]A;マイクを切り替えるには {Win} キーを押しながら {Shift} キーの後に {A} キーを押します]D;]A;ビデオを切り替えるには {Win} キーを押しながら {Shift} キーの後に {O} キーを押します]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2887,12 +2932,18 @@
<Item ItemId=";ShortcutGuide_DisabledApps.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable for apps]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[アプリに対して無効にする]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_DisabledApps_TextBoxControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Turn off Shortcut Guide when these applications have focus. Add one application name per line.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[これらのアプリケーションにフォーカスがある場合は、Shortcut Guide をオフにします。1 行につき 1 つのアプリケーション名を追加します。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>

View File

@@ -754,7 +754,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[File Explorer]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1779,19 +1779,25 @@
</Item>
<Item ItemId=";Oobe_ColorPicker_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
<Val><![CDATA[{Win} + {Ctrl} + {C} to open Color Picker.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[&lt;Win+Shift+C&gt;를 눌러 Color Picker를 엽니다.]]></Val>
<Val><![CDATA[{Win}+{Ctrl}+{C} 를 눌러 Color Picker를 엽니다.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_ColorPicker_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
<Val><![CDATA[To select a color with more precision, {scroll the mouse wheel} to zoom in.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[더 정밀하게 색을 선택하려면 마우스 휠을 스크롤하여 확대합니다.]]></Val>
<Val><![CDATA[더 정밀하게 색을 선택하려면 {마우스 휠을 스크롤}하여 확대합니다.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1815,19 +1821,25 @@
</Item>
<Item ItemId=";Oobe_FancyZones_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
<Val><![CDATA[{Shift} + {dragging the window} to snap a window to a zone, and release the window in the desired zone. {Win} + {`} to open the FancyZones editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[&lt;Shift&gt; 키를 누른 채 창을 끌어서 창을 영역에 맞추고 원하는 영역에서 창을 놓습니다.]D;]A;&lt;Win+`&gt;를 눌러 FancyZones 편집기를 엽니다.]]></Val>
<Val><![CDATA[{Shift} 키를 누른 채 {dragging the window} 창을 영역에 맞추고 원하는 영역에서 창을 놓습니다. {Win}+{`} 를 눌러 FancyZones 편집기를 엽니다.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_FancyZones_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
<Val><![CDATA[Snap a window to multiple zones by holding the {Ctrl} key (while also holding {Shift}) when dragging a window.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[&lt;Ctrl&gt; 키를 누른 채(Shift 키 누른 채) 창을 끌어 창을 여러 영역에 맞춥니다.]]></Val>
<Val><![CDATA[{Ctrl} 키를 누른 채({Shift} 누른 채) 창을 끌어 창을 여러 영역에 맞춥니다.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1851,10 +1863,13 @@
</Item>
<Item ItemId=";Oobe_FileExplorer_HowToEnable.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Val><![CDATA[Open File Explorer, {select the View tab} in the File Explorer ribbon, then {select Preview Pane}. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Windows 파일 탐색기를 열고, 파일 탐색기 리본에서 [보기]5D; 탭을 선택한 다음, [미리 보기]5D; 창을 선택합니다. ]D;]A;파일 탐색기에서 Markdown 파일 또는 SVG 아이콘을 클릭하고 미리 보기 창에서 콘텐츠를 확인하기만 하면 됩니다.]]></Val>
<Val><![CDATA[파일 탐색기를 열고 파일 탐색기 리본에서 {[보기]5D; 탭을 선택}한 다음, {[미리 보기]5D; 창을 선택}합니다. ]D;]A;파일 탐색기에서 Markdown 파일 또는 SVG 아이콘을 클릭하고 미리 보기 창에서 콘텐츠를 확인하기만 하면 됩니다.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1932,10 +1947,13 @@
</Item>
<Item ItemId=";Oobe_ImageResizer_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more image files} and {clicking on Resize pictures} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[파일 탐색기에서 하나 이상의 이미지 파일을 마우스 오른쪽 단추로 클릭하고 상황에 맞는 메뉴에서 [그림 크기 조정]5D;을 클릭합니다.]]></Val>
<Val><![CDATA[파일 탐색기에서 {하나 이상의 이미지 파일을 마우스 오른쪽 단추로 클릭}하고 상황에 맞는 메뉴에서 {[그림 크기 조정]5D;을 클릭}합니다.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1968,10 +1986,13 @@
</Item>
<Item ItemId=";Oobe_KBM_HowToCreateMappings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
<Val><![CDATA[Launch {PowerToys settings}, navigate to the Keyboard Manager menu, and select either {Remap a key} or {Remap a shortcut}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys 설정을 시작하고, Keyboard Manager 메뉴로 이동하고, [키 다시 매핑]5D; 또는 [바로 가기 다시 매핑]5D;을 선택합니다.]]></Val>
<Val><![CDATA[{PowerToys 설정}을 시작하고 Keyboard Manager 메뉴로 이동하고 {[키 다시 매핑]5D;} 또는 {[바로 가기 다시 매핑]5D;}을 선택합니다.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2013,10 +2034,13 @@
</Item>
<Item ItemId=";Oobe_Overview_CheckoutLatestVersion.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
<Val><![CDATA[For returning users, check out what is new in our]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[재방문 사용인 경우 최신 버전의 새로운 기능을 확인합니다.]]></Val>
<Val><![CDATA[재방문 사용인 경우 새로운 기능을 확인합니다.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2031,19 +2055,25 @@
</Item>
<Item ItemId=";Oobe_Overview_DescriptionLinkText.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft Docs입니다.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Overview_LatestVersionLink.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
<Val><![CDATA[release notes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[릴리스 정보의 PowerToys입니다.]]></Val>
<Val><![CDATA[릴리스 정보]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2067,10 +2097,13 @@
</Item>
<Item ItemId=";Oobe_PowerRename_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more selected files} and {clicking on PowerRename} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[파일 탐색기에서 하나 이상의 선택한 파일을 마우스 오른쪽 단추로 클릭하고 상황에 맞는 메뉴에서 [PowerRename]5D;을 클릭합니다.]]></Val>
<Val><![CDATA[파일 탐색기에서 {하나 이상의 선택한 파일을 마우스 오른쪽 단추로 클릭}하고 상황에 맞는 메뉴에서 {[PowerRename]5D;을 클릭}합니다.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2112,19 +2145,25 @@
</Item>
<Item ItemId=";Oobe_Run_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
<Val><![CDATA[{Alt} + {Space} to open Run and just start typing.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[&lt;Alt+스페이스바&gt;를 눌러 PowerToys를 열고 입력을 시작합니다.]]></Val>
<Val><![CDATA[{Alt}+{Space} 를 눌러 실행을 열고 입력을 시작합니다.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Run_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Val><![CDATA[PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing {<} searches for running processes only, {?} will search only for file, or {.} for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys Run은 검색 쿼리로 특정한 검색 하위 집합을 도출하는 다양한 동작 키를 지원합니다. <를 입력하여 실행 중인 프로세스만 검색하거나, ?를 입력하여 파일만 검색하거나, .를 입력하여 설치된 애플리케이션을 검색합니다. 사용 가능한 전체 '동작 키' 세트는 PowerToys 설명서를 참조하세요.]]></Val>
<Val><![CDATA[PowerToys Run은 검색 쿼리로 특정한 검색 하위 집합을 도출하는 다양한 동작 키를 지원합니다. {<}를 입력하여 실행 중인 프로세스만 검색하거나, {?}를 입력하여 파일만 검색하거나, {.}를 입력하여 설치된 애플리케이션을 검색합니다. 사용 가능한 전체 '동작 키' 세트는 PowerToys 설명서를 참조하세요.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2148,10 +2187,13 @@
</Item>
<Item ItemId=";Oobe_ShortcutGuide_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
<Val><![CDATA[{Win} + {?} to open Shortcut Guide, press it again to close or press {Esc}. You can also launch it by holding the {Win} key for one second!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[&lt;Win+?&gt;를 눌러 Shortcut Guide를 열거나, 다시 눌러 닫거나, &lt;Esc&gt; 키를 누릅니다. &lt;Win&gt; 키를 1초 동안 눌러 시작할 수도 있습니다.]]></Val>
<Val><![CDATA[{Win}+{?} 를 눌러 Shortcut Guide를 열거나, 다시 눌러 닫거나, {Esc} 키를 누릅니다. {Win} 키를 1초 동안 눌러 시작할 수도 있습니다.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2184,10 +2226,13 @@
</Item>
<Item ItemId=";Oobe_VideoConference_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
<Val><![CDATA[{Win} + {N} to toggle both your microphone and video]D;]A;{Win} + {Shift} + {A} to toggle your microphone ]D;]A;{Win} + {Shift} + {O} to toggle your video]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[&lt;Win+N&gt;을 눌러 마이크와 비디오를 둘 다 토글 ]D;]A;&lt;Win+Shift+A&gt;를 눌러 마이크 토글 ]D;]A;&lt;Win+Shift+O&gt;를 눌러 비디오 토글]]></Val>
<Val><![CDATA[{Win}+{N} 을 눌러 마이크와 비디오를 둘 다 토글]D;]A;{Win}+{Shift}+{A} 를 눌러 마이크 토글]D;]A;{Win}+{Shift}+{O} 를 눌러 비디오 토글]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2887,12 +2932,18 @@
<Item ItemId=";ShortcutGuide_DisabledApps.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable for apps]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[앱에 대해 사용 안 함]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_DisabledApps_TextBoxControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Turn off Shortcut Guide when these applications have focus. Add one application name per line.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[이러한 애플리케이션에 포커스가 있을 때는 Shortcut Guide를 해제하세요. 한 줄당 하나의 애플리케이션 이름을 추가하세요.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>

View File

@@ -32,7 +32,7 @@
<Str Cat="Text">
<Val><![CDATA[About File Explorer]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Informatie over de bestandenverkenner]]></Val>
<Val><![CDATA[Over de Verkenner]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
@@ -125,7 +125,7 @@
<Str Cat="Text">
<Val><![CDATA[Attribution]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Attributie]]></Val>
<Val><![CDATA[Toeschrijving]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
@@ -754,11 +754,11 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[File Explorer]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Bestandenverkenner]]></Val>
<Val><![CDATA[Verkenner]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
@@ -1779,19 +1779,25 @@
</Item>
<Item ItemId=";Oobe_ColorPicker_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
<Val><![CDATA[{Win} + {Ctrl} + {C} to open Color Picker.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Win + Shift + C om Color Picker te openen.]]></Val>
<Val><![CDATA[{Win} + {Ctrl} + {C} om Color Picker te openen.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_ColorPicker_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
<Val><![CDATA[To select a color with more precision, {scroll the mouse wheel} to zoom in.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Als u een kleur met meer precisie wilt selecteren, schuift u om in te zoomen.]]></Val>
<Val><![CDATA[Als u een kleur met meer precisie wilt selecteren, {schuift u} om in te zoomen.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1815,19 +1821,25 @@
</Item>
<Item ItemId=";Oobe_FancyZones_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
<Val><![CDATA[{Shift} + {dragging the window} to snap a window to a zone, and release the window in the desired zone. {Win} + {`} to open the FancyZones editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Shift + slepen terwijl u het venster sleept om een venster op een zone uit te lijnen en het venster in de gewenste zone los te laten.]D;]A;Win + ` om de FancyZones-editor te openen.]]></Val>
<Val><![CDATA[{Shift} + {het venster slepen} om een venster op een zone uit te lijnen en het venster in de gewenste zone los te laten. {Win} + {`} om de FancyZones-editor te openen.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_FancyZones_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
<Val><![CDATA[Snap a window to multiple zones by holding the {Ctrl} key (while also holding {Shift}) when dragging a window.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[U kunt een venster uitlijnen op meerdere zones door de Ctrl-toets ingedrukt te houden (terwijl u ook Shift indrukt) wanneer u een venster sleept.]]></Val>
<Val><![CDATA[U kunt een venster uitlijnen op meerdere zones door de {Ctrl}-toets ingedrukt te houden (terwijl u ook {Shift} indrukt) wanneer u een venster sleept.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1851,10 +1863,13 @@
</Item>
<Item ItemId=";Oobe_FileExplorer_HowToEnable.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Val><![CDATA[Open File Explorer, {select the View tab} in the File Explorer ribbon, then {select Preview Pane}. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Open Windows Verkenner, selecteer het tabblad Beeld in het lint en selecteer vervolgens Voorbeeldvenster. ]D;]A;Klik hier op een Markdown-bestand of SVG-pictogram in de Verkenner en bekijk de inhoud in het voorbeeldvenster.]]></Val>
<Val><![CDATA[Open de Verkenner, {selecteer het tabblad Beeld} in het lint en {selecteer vervolgens Voorbeeldvenster}. ]D;]A;Klik hier op een Markdown-bestand of SVG-pictogram in de Verkenner en bekijk de inhoud in het voorbeeldvenster.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1932,10 +1947,13 @@
</Item>
<Item ItemId=";Oobe_ImageResizer_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more image files} and {clicking on Resize pictures} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Klik in de Verkenner met de rechtermuisknop op een of meer afbeeldingsbestanden en klik op Formaat van afbeeldingen wijzigen in het contextmenu.]]></Val>
<Val><![CDATA[Klik in de Verkenner {met de rechtermuisknop op een of meer afbeeldingsbestanden} en {klik op Formaat van afbeeldingen wijzigen} in het contextmenu.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1968,10 +1986,13 @@
</Item>
<Item ItemId=";Oobe_KBM_HowToCreateMappings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
<Val><![CDATA[Launch {PowerToys settings}, navigate to the Keyboard Manager menu, and select either {Remap a key} or {Remap a shortcut}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Open de PowerToys-instellingen, ga naar het Keyboard Manager-menu en selecteer Een toets opnieuw toewijzen of Een snelkoppeling opnieuw toewijzen.]]></Val>
<Val><![CDATA[Open de {PowerToys-instellingen}, ga naar het Keyboard Manager-menu en selecteer {Een toets opnieuw toewijzen} of {Een snelkoppeling opnieuw toewijzen}.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2013,10 +2034,13 @@
</Item>
<Item ItemId=";Oobe_Overview_CheckoutLatestVersion.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
<Val><![CDATA[For returning users, check out what is new in our]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Terugkerende gebruikers kunnen bekijken wat er nieuw is in deze meest recente versie van]]></Val>
<Val><![CDATA[Terugkerende gebruikers kunnen bekijken wat er nieuw is in onze]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2031,19 +2055,25 @@
</Item>
<Item ItemId=";Oobe_Overview_DescriptionLinkText.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft Docs.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Overview_LatestVersionLink.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
<Val><![CDATA[release notes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys in onze releaseopmerkingen.]]></Val>
<Val><![CDATA[releaseopmerkingen]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2067,10 +2097,13 @@
</Item>
<Item ItemId=";Oobe_PowerRename_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more selected files} and {clicking on PowerRename} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Klik in de Verkenner met de rechtermuisknop op een of meer geselecteerde bestanden en klik op PowerRename in het contextmenu.]]></Val>
<Val><![CDATA[Klik in de Verkenner {met de rechtermuisknop op een of meer geselecteerde bestanden} en {klik op PowerRename} in het contextmenu.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2112,19 +2145,25 @@
</Item>
<Item ItemId=";Oobe_Run_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
<Val><![CDATA[{Alt} + {Space} to open Run and just start typing.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Alt + spatie om PowerToys te openen en u kunt gewoon gaan typen.]]></Val>
<Val><![CDATA[{Alt} + {Space} om PowerToys te openen en u kunt gewoon gaan typen.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Run_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Val><![CDATA[PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing {<} searches for running processes only, {?} will search only for file, or {.} for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys Run biedt ondersteuning voor verschillende actietoetsen voor het kanaliseren van zoekopdrachten voor een specifieke subset met resultaten. Wanneer u < typt, wordt alleen naar actieve processen gezocht, met ? wordt alleen naar een bestand gezocht of met . wordt alleen naar geïnstalleerde apps gezocht. Raadpleeg de PowerToys-documentatie voor de volledige set van beschikbare actietoetsen.]]></Val>
<Val><![CDATA[PowerToys Run biedt ondersteuning voor verschillende actietoetsen voor het kanaliseren van zoekopdrachten voor een specifieke subset met resultaten. Wanneer u {<} typt, wordt alleen naar actieve processen gezocht, met {?} wordt alleen naar een bestand gezocht of met {.} wordt alleen naar geïnstalleerde apps gezocht. Raadpleeg de PowerToys-documentatie voor de volledige set van beschikbare actietoetsen.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2148,10 +2187,13 @@
</Item>
<Item ItemId=";Oobe_ShortcutGuide_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
<Val><![CDATA[{Win} + {?} to open Shortcut Guide, press it again to close or press {Esc}. You can also launch it by holding the {Win} key for one second!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Win + ? om Shortcut Guide te openen. Druk hier nogmaals op of druk op Esc om de module te sluiten. U kunt Shortcut Guide ook starten door de Windows-toets één seconde ingedrukt te houden.]]></Val>
<Val><![CDATA[{Win} + {?} om Shortcut Guide te openen. Druk hier nogmaals op of druk op {Esc} om de module te sluiten. U kunt Shortcut Guide ook starten door de {Windows}-toets één seconde ingedrukt te houden.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2184,10 +2226,13 @@
</Item>
<Item ItemId=";Oobe_VideoConference_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
<Val><![CDATA[{Win} + {N} to toggle both your microphone and video]D;]A;{Win} + {Shift} + {A} to toggle your microphone ]D;]A;{Win} + {Shift} + {O} to toggle your video]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Met Win + N kunt u zowel de microfoon als de video in- en uitschakelen ]D;]A;Met Win + Shift + A kunt u de microfoon in- en uitschakelen ]D;]A;Met Win + Shift + O kunt u de video in- en uitschakelen]]></Val>
<Val><![CDATA[Met {Win} + {N} kunt u zowel de microfoon als de video in- en uitschakelen ]D;]A;Met {Win} + {Shift} + {A} kunt u de microfoon in- en uitschakelen ]D;]A;Met {Win} + {Shift} + {O} kunt u de video in- en uitschakelen]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2840,7 +2885,7 @@
<Str Cat="Text">
<Val><![CDATA[File Explorer add-ons]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Invoegtoepassingen voor Bestandenverkenner]]></Val>
<Val><![CDATA[Verkenner-invoegtoepassingen]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[File Explorer]]></Val>
@@ -2887,12 +2932,18 @@
<Item ItemId=";ShortcutGuide_DisabledApps.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable for apps]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Uitschakelen voor apps]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_DisabledApps_TextBoxControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Turn off Shortcut Guide when these applications have focus. Add one application name per line.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Schakel Shortcut Guide uit wanneer deze toepassingen zijn geopend. Voeg per regel één toepassingsnaam toe.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>

View File

@@ -1779,19 +1779,25 @@
</Item>
<Item ItemId=";Oobe_ColorPicker_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
<Val><![CDATA[{Win} + {Ctrl} + {C} to open Color Picker.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Naciśnij kombinację klawiszy Win+Shift+C, aby otworzyć selektor kolorów.]]></Val>
<Val><![CDATA[Naciśnij kombinację klawiszy {Win}+{Ctrl}+{C}, aby otworzyć selektor kolorów.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_ColorPicker_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
<Val><![CDATA[To select a color with more precision, {scroll the mouse wheel} to zoom in.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Aby wybrać kolor z większą precyzją, powiększ widok za pomocą kółka myszy.]]></Val>
<Val><![CDATA[Aby wybrać kolor z większą precyzją, {scroll the mouse wheel} w celu powiększenia.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1815,19 +1821,25 @@
</Item>
<Item ItemId=";Oobe_FancyZones_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
<Val><![CDATA[{Shift} + {dragging the window} to snap a window to a zone, and release the window in the desired zone. {Win} + {`} to open the FancyZones editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Przeciągnij okno z naciśniętym klawiszem Shift, aby przyciągnąć je do strefy, a następnie upuść je w żądanej strefie.]D;]A;Naciśnij kombinację klawiszy Win+`, aby otworzyć edytor FancyZones.]]></Val>
<Val><![CDATA[Naciśnij klawisz {Shift} i {dragging the window}, aby przyciągnąć je do strefy, a następnie upuść okno w żądanej strefie. Naciśnij kombinację klawiszy {Win}+{`}, aby otworzyć edytor FancyZones.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_FancyZones_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
<Val><![CDATA[Snap a window to multiple zones by holding the {Ctrl} key (while also holding {Shift}) when dragging a window.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Przyciągnij okno do wielu stref, trzymając klawisz Ctrl (i równocześnie klawisz Shift) podczas przeciągania okna.]]></Val>
<Val><![CDATA[Przyciągnij okno do wielu stref, trzymając klawisz {Ctrl} (i równocześnie klawisz {Shift}) podczas przeciągania okna.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1851,10 +1863,13 @@
</Item>
<Item ItemId=";Oobe_FileExplorer_HowToEnable.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Val><![CDATA[Open File Explorer, {select the View tab} in the File Explorer ribbon, then {select Preview Pane}. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Otwórz Eksplorator plików systemu Windows, wybierz kartę Widok na jego wstążce, a następnie wybierz pozycję Okienko podglądu. ]D;]A;Teraz wystarczy kliknąć plik Markdown lub ikonę SVG w Eksploratorze plików, aby wyświetlić zawartość w okienku podglądu.]]></Val>
<Val><![CDATA[Otwórz Eksplorator plików, {select the View tab} na jego wstążce, a następnie {select Preview Pane}. ]D;]A;Teraz wystarczy kliknąć plik Markdown lub ikonę SVG w Eksploratorze plików, aby wyświetlić zawartość w okienku podglądu.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1932,10 +1947,13 @@
</Item>
<Item ItemId=";Oobe_ImageResizer_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more image files} and {clicking on Resize pictures} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[W Eksploratorze plików kliknij prawym przyciskiem myszy co najmniej jeden plik obrazu, a następnie kliknij polecenie Zmień rozmiar obrazów w menu kontekstowym.]]></Val>
<Val><![CDATA[W Eksploratorze plików {right-clicking one or more image files}, a następnie {clicking on Resize pictures} w menu kontekstowym.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1968,10 +1986,13 @@
</Item>
<Item ItemId=";Oobe_KBM_HowToCreateMappings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
<Val><![CDATA[Launch {PowerToys settings}, navigate to the Keyboard Manager menu, and select either {Remap a key} or {Remap a shortcut}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Uruchom ustawienia programu PowerToys, przejdź do menu Menedżer klawiatury i wybierz opcję Ponownie zamapuj klawisz lub Ponownie zamapuj skrót.]]></Val>
<Val><![CDATA[Uruchom {PowerToys settings}, przejdź do menu Menedżer klawiatury i wybierz opcję {Remap a key} lub {Remap a shortcut}.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2013,10 +2034,13 @@
</Item>
<Item ItemId=";Oobe_Overview_CheckoutLatestVersion.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
<Val><![CDATA[For returning users, check out what is new in our]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Jeśli jesteś powracającym użytkownikiem, zapoznaj się z nowościami w najnowszej wersji programu]]></Val>
<Val><![CDATA[Jeśli jesteś powracającym użytkownikiem, zapoznaj się z nowościami, czytając]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2031,19 +2055,25 @@
</Item>
<Item ItemId=";Oobe_Overview_DescriptionLinkText.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft Docs.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Overview_LatestVersionLink.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
<Val><![CDATA[release notes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys opisanymi w informacjach o wersji.]]></Val>
<Val><![CDATA[informacje o wersji]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2067,10 +2097,13 @@
</Item>
<Item ItemId=";Oobe_PowerRename_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more selected files} and {clicking on PowerRename} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[W Eksploratorze plików kliknij prawym przyciskiem myszy co najmniej jeden wybrany plik, a następnie kliknij polecenie PowerRename w menu kontekstowym.]]></Val>
<Val><![CDATA[W Eksploratorze plików {right-clicking one or more selected files}, a następnie {clicking on PowerRename} w menu kontekstowym.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2112,19 +2145,25 @@
</Item>
<Item ItemId=";Oobe_Run_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
<Val><![CDATA[{Alt} + {Space} to open Run and just start typing.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Naciśnij kombinację klawiszy Alt+spacja, aby otworzyć program PowerToys, i rozpocznij wpisywanie.]]></Val>
<Val><![CDATA[Naciśnij kombinację klawiszy {Alt}+{Space}, aby otworzyć okno Uruchamianie, i zacznij pis.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Run_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Val><![CDATA[PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing {<} searches for running processes only, {?} will search only for file, or {.} for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Narzędzie PowerToys Run obsługuje różne klawisze akcji pozwalające na ograniczenie zapytań wyszukiwania do konkretnego podzestawu wyników. Wpisanie znaku < powoduje wyszukanie tylko uruchomionych procesów, znaku ? — wyszukanie tylko plików, a znaku . — zainstalowanych aplikacji. Zobacz dokumentację programu PowerToys, aby zapoznać się z pełnym zestawem dostępnych klawiszy akcji.]]></Val>
<Val><![CDATA[Uruchamianie PowerToys obsługuje różne klawisze akcji pozwalające na ograniczenie zapytań wyszukiwania do konkretnego podzestawu wyników. Wpisanie znaku {<} powoduje wyszukanie tylko uruchomionych procesów, znaku {?} — wyszukanie tylko plików, a znaku {.} — zainstalowanych aplikacji. Zobacz dokumentację programu PowerToys, aby zapoznać się z pełnym zestawem dostępnych klawiszy akcji.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2148,10 +2187,13 @@
</Item>
<Item ItemId=";Oobe_ShortcutGuide_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
<Val><![CDATA[{Win} + {?} to open Shortcut Guide, press it again to close or press {Esc}. You can also launch it by holding the {Win} key for one second!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Naciśnij kombinację klawiszy Win+?, aby otworzyć Przewodnik po skrótach. Naciśnij ją ponownie lub naciśnij klawisz Esc, aby zamknąć przewodnik. Przewodnik po skrótach możesz także otworzyć, przytrzymując naciśnięty klawisz Win przez jedną sekundę.]]></Val>
<Val><![CDATA[Naciśnij kombinację klawiszy {Win}+{?}, aby otworzyć Przewodnik po skrótach. Naciśnij ją ponownie lub naciśnij klawisz {Esc}, aby zamknąć przewodnik. Przewodnik po skrótach możesz także otworzyć, przytrzymując naciśnięty klawisz {Win} przez jedną sekundę.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2184,10 +2226,13 @@
</Item>
<Item ItemId=";Oobe_VideoConference_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
<Val><![CDATA[{Win} + {N} to toggle both your microphone and video]D;]A;{Win} + {Shift} + {A} to toggle your microphone ]D;]A;{Win} + {Shift} + {O} to toggle your video]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Naciśnij kombinację klawiszy Win+N, aby przełączyć zarówno mikrofon, jak i wideo ]D;]A;Naciśnij kombinację klawiszy Win+Shift+A, aby przełączyć mikrofon ]D;]A;Naciśnij kombinację klawiszy Win+Shift+O, aby przełączyć wideo]]></Val>
<Val><![CDATA[Naciśnij kombinację klawiszy {Win}+{N}, aby przełączyć zarówno mikrofon, jak i wideo ]D;]A;Naciśnij kombinację klawiszy {Win}+{Shift}+{A}, aby przełączyć mikrofon ]D;]A;Naciśnij kombinację klawiszy {Win}+{Shift}+{O}, aby przełączyć wideo]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2887,12 +2932,18 @@
<Item ItemId=";ShortcutGuide_DisabledApps.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable for apps]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Wyłącz dla aplikacji]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_DisabledApps_TextBoxControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Turn off Shortcut Guide when these applications have focus. Add one application name per line.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Wyłącz Przewodnik po skrótach, gdy te aplikacje mają fokus. Dodaj jedną nazwę aplikacji na wiersz.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>

View File

@@ -1779,19 +1779,25 @@
</Item>
<Item ItemId=";Oobe_ColorPicker_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
<Val><![CDATA[{Win} + {Ctrl} + {C} to open Color Picker.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Win + Shift + C para abrir o Seletor de Cor.]]></Val>
<Val><![CDATA[Pressione {Win} + {Ctrl} + {C} para abrir o Seletor de Cor.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_ColorPicker_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
<Val><![CDATA[To select a color with more precision, {scroll the mouse wheel} to zoom in.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Para selecionar uma cor com mais precisão, role a roda do mouse para ampliar.]]></Val>
<Val><![CDATA[Para selecionar uma cor com mais precisão, {role o botão de rolagem do mouse} para fazer a ampliação.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1815,19 +1821,25 @@
</Item>
<Item ItemId=";Oobe_FancyZones_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
<Val><![CDATA[{Shift} + {dragging the window} to snap a window to a zone, and release the window in the desired zone. {Win} + {`} to open the FancyZones editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Shift + arraste ao arrastar a janela para ajustar uma janela a uma zona e solte a janela na zona desejada.]D;]A;Win + ` abrir o editor do FancyZones.]]></Val>
<Val><![CDATA[Pressione {Shift} e [arraste a janela} para ajustar uma janela a uma zona e solte a janela na zona desejada. Pressione {Win} + {`} para abrir o editor FancyZones.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_FancyZones_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
<Val><![CDATA[Snap a window to multiple zones by holding the {Ctrl} key (while also holding {Shift}) when dragging a window.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Ajustar uma janela a várias zonas mantendo a tecla Ctrl pressionada (enquanto também pressionando a tecla Shift) ao arrastar uma janela.]]></Val>
<Val><![CDATA[Ajuste uma janela a várias zonas mantendo a tecla {Ctrl} pressionada (enquanto também pressiona a tecla {Shift}) ao arrastar uma janela.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1851,10 +1863,13 @@
</Item>
<Item ItemId=";Oobe_FileExplorer_HowToEnable.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Val><![CDATA[Open File Explorer, {select the View tab} in the File Explorer ribbon, then {select Preview Pane}. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Abra o Explorador de Arquivos do Windows, selecione a guia Exibir na faixa de opções do Explorador de Arquivos e, em seguida, selecione Painel de Visualização. ]D;]A;Depois, basta clicar em um arquivo Markdown ou em um ícone SVG no Explorador de Arquivos e observar o conteúdo no painel de visualização.]]></Val>
<Val><![CDATA[Abra o Explorador de Arquivos, {selecione a guia Exibir} na faixa de opções do Explorador de Arquivos e {escolha Painel de Visualização}. ]D;]A;Depois, basta clicar em um arquivo Markdown ou em um ícone de SVG no Explorador de Arquivos e observar o conteúdo no painel de visualização.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1932,10 +1947,13 @@
</Item>
<Item ItemId=";Oobe_ImageResizer_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more image files} and {clicking on Resize pictures} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[No Explorador de Arquivos, clique com o botão direito do mouse em um ou mais arquivos de imagem e clique em Redimensionar imagens no menu de contexto.]]></Val>
<Val><![CDATA[No Explorador de Arquivos, {clique com o botão direito do mouse em um ou mais arquivos de imagem} e {clique em Redimensionar imagens} no menu de contexto.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1968,10 +1986,13 @@
</Item>
<Item ItemId=";Oobe_KBM_HowToCreateMappings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
<Val><![CDATA[Launch {PowerToys settings}, navigate to the Keyboard Manager menu, and select either {Remap a key} or {Remap a shortcut}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Inicie as configurações dos PowerToys, navegue até o menu Gerenciador de Teclado e selecione Remapear uma chave ou Remapear um atalho.]]></Val>
<Val><![CDATA[Inicie as {configurações dos PowerToys}, navegue até o menu Gerenciador de Teclado e selecione {Remapear uma chave} ou {Remapear um atalho}.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2013,10 +2034,13 @@
</Item>
<Item ItemId=";Oobe_Overview_CheckoutLatestVersion.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
<Val><![CDATA[For returning users, check out what is new in our]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Usuários que voltaram a usar o produto: confiram o que há de novo na versão mais recente do]]></Val>
<Val><![CDATA[Usuários que voltaram a usar o produto: confiram as novidades em]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2031,19 +2055,25 @@
</Item>
<Item ItemId=";Oobe_Overview_DescriptionLinkText.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft Docs.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Overview_LatestVersionLink.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
<Val><![CDATA[release notes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys em nossas notas sobre a versão.]]></Val>
<Val><![CDATA[notas sobre a versão]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2067,10 +2097,13 @@
</Item>
<Item ItemId=";Oobe_PowerRename_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more selected files} and {clicking on PowerRename} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[No Explorador de Arquivos, clique com o botão direito do mouse em um ou mais arquivos selecionados e clique em PowerRename no menu de contexto.]]></Val>
<Val><![CDATA[No Explorador de Arquivos, {clique com o botão direito do mouse em um ou mais arquivos selecionados} e {clique em PowerRename} no menu de contexto.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2112,19 +2145,25 @@
</Item>
<Item ItemId=";Oobe_Run_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
<Val><![CDATA[{Alt} + {Space} to open Run and just start typing.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Alt + Espaço para abrir os PowerToys e basta começar a digitar.]]></Val>
<Val><![CDATA[Pressione {Alt} + {Space} para abrir a Run e simplesmente comece a digitar.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Run_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Val><![CDATA[PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing {<} searches for running processes only, {?} will search only for file, or {.} for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[A PowerToys Run dá suporte a várias chaves de ação para limitar consultas de pesquisa a um subconjunto específico de resultados. Digitar < pesquisa somente processos em execução, ? pesquisa somente um arquivo e . pesquisa aplicativos instalados. Confira a documentação dos PowerToys para ver o conjunto completo de 'Teclas de Ação' disponíveis.]]></Val>
<Val><![CDATA[A PowerToys Run dá suporte a várias chaves de ação para limitar as consultas de pesquisa a um subconjunto específico de resultados. Digite {<} para pesquisar somente processos em execução, {?} para pesquisar somente arquivos e {.} para pesquisar aplicativos instalados. Confira a documentação dos PowerToys para ver o conjunto completo de 'Teclas de Ação' disponíveis.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2148,10 +2187,13 @@
</Item>
<Item ItemId=";Oobe_ShortcutGuide_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
<Val><![CDATA[{Win} + {?} to open Shortcut Guide, press it again to close or press {Esc}. You can also launch it by holding the {Win} key for one second!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Win + ? para abrir o Guia de Atalhos, pressione essas teclas novamente para fechá-lo ou pressione ESC. Você também pode iniciá-lo mantendo a tecla Win pressionada por um segundo.]]></Val>
<Val><![CDATA[Pressione {Win} + {?} para abrir o Guia de Atalhos e pressione essas teclas novamente ou {Esc} para fechá-lo. Você também pode iniciá-lo mantendo a tecla {Win} pressionada por um segundo.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2184,10 +2226,13 @@
</Item>
<Item ItemId=";Oobe_VideoConference_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
<Val><![CDATA[{Win} + {N} to toggle both your microphone and video]D;]A;{Win} + {Shift} + {A} to toggle your microphone ]D;]A;{Win} + {Shift} + {O} to toggle your video]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Win + N para ativar/desativar o microfone e o vídeo ]D;]A;Win + Shift + A para ativar/desativar o microfone ]D;]A;Win + Shift + O para ativar/desativar o vídeo]]></Val>
<Val><![CDATA[Pressione {Win} + {N} para ativar/desativar o microfone e o vídeo]D;]A;Pressione {Win} + {Shift} + {A} para ativar/desativar o microfone ]D;]A;Pressione {Win} + {Shift} + {O} para ativar/desativar o vídeo]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2887,12 +2932,18 @@
<Item ItemId=";ShortcutGuide_DisabledApps.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable for apps]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Desabilitar para aplicativos]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_DisabledApps_TextBoxControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Turn off Shortcut Guide when these applications have focus. Add one application name per line.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Desative o Guia de Atalhos quando esses aplicativos tiverem foco. Adicione um nome de aplicativo por linha.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>

View File

@@ -1779,19 +1779,25 @@
</Item>
<Item ItemId=";Oobe_ColorPicker_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
<Val><![CDATA[{Win} + {Ctrl} + {C} to open Color Picker.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Windows + Shift + C para abrir o Seletor de Cores.]]></Val>
<Val><![CDATA[{Win} + {Ctrl} + {C} para abrir o Seletor de Cores.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_ColorPicker_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
<Val><![CDATA[To select a color with more precision, {scroll the mouse wheel} to zoom in.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Para selecionar uma cor com mais precisão, desloque a roda do rato para ampliar.]]></Val>
<Val><![CDATA[Para selecionar uma cor com mais precisão, {scroll the mouse wheel} para ampliar.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1815,19 +1821,25 @@
</Item>
<Item ItemId=";Oobe_FancyZones_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
<Val><![CDATA[{Shift} + {dragging the window} to snap a window to a zone, and release the window in the desired zone. {Win} + {`} to open the FancyZones editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Shift + arrastar enquanto arrasta a janela para encaixar uma janela numa zona e soltar a janela na zona desejada.]D;]A;Windows + ` para abrir o editor do FancyZones.]]></Val>
<Val><![CDATA[{Shift} + {dragging the window} para encaixar uma janela numa zona e soltar a janela na zona desejada. {Win} + {`} para abrir o editor dos FancyZones.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_FancyZones_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
<Val><![CDATA[Snap a window to multiple zones by holding the {Ctrl} key (while also holding {Shift}) when dragging a window.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Encaixa uma janela em várias zonas ao manter premida a tecla Ctrl (enquanto mantém premido Shift) ao arrastar uma janela.]]></Val>
<Val><![CDATA[Encaixe uma janela em várias zonas ao manter premida a tecla {Ctrl} (enquanto mantém também premido {Shift}) quando arrasta uma janela.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1851,10 +1863,13 @@
</Item>
<Item ItemId=";Oobe_FileExplorer_HowToEnable.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Val><![CDATA[Open File Explorer, {select the View tab} in the File Explorer ribbon, then {select Preview Pane}. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Abra o Explorador de Ficheiros do Windows, selecione o separador Ver no friso do Explorador de Ficheiros e, em seguida, selecione Painel de Pré-visualização. ]D;]A;Aí, basta clicar num ficheiro de Markdown ou num ícone SVG no Explorador de Ficheiros e observar o conteúdo no painel de pré-visualização!]]></Val>
<Val><![CDATA[Abra o Explorador de Ficheiros, {select the View tab} no friso do Explorador de Ficheiros e, em seguida, {select Preview Pane}. ]D;]A;Aí, basta clicar num ficheiro de Markdown ou num ícone SVG no Explorador de Ficheiros e observar o conteúdo no painel de pré-visualização!]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1932,10 +1947,13 @@
</Item>
<Item ItemId=";Oobe_ImageResizer_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more image files} and {clicking on Resize pictures} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[No Explorador de Ficheiros, clicar com o botão direito do rato num ou em mais ficheiros de imagem e clicar em Redimensionar imagens no menu de contexto.]]></Val>
<Val><![CDATA[No Explorador de Ficheiros, {right-clicking one or more image files} e {clicking on Resize pictures} no menu de contexto.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1968,10 +1986,13 @@
</Item>
<Item ItemId=";Oobe_KBM_HowToCreateMappings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
<Val><![CDATA[Launch {PowerToys settings}, navigate to the Keyboard Manager menu, and select either {Remap a key} or {Remap a shortcut}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Inicie as definições do PowerToys, navegue para o menu Gestor do Teclado e selecione Remapear uma chave ou Remapear um atalho.]]></Val>
<Val><![CDATA[Inicie as {PowerToys settings}, navegue até ao menu Gestor do Teclado e selecione {Remap a key} ou {Remap a shortcut}.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2013,10 +2034,13 @@
</Item>
<Item ItemId=";Oobe_Overview_CheckoutLatestVersion.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
<Val><![CDATA[For returning users, check out what is new in our]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Para os utilizadores que regressam, veja as novidades desta versão mais recente do]]></Val>
<Val><![CDATA[Para os utilizadores que regressam, veja as novidades em]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2031,19 +2055,25 @@
</Item>
<Item ItemId=";Oobe_Overview_DescriptionLinkText.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft Docs.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Overview_LatestVersionLink.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
<Val><![CDATA[release notes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys nas nossas notas de versão.]]></Val>
<Val><![CDATA[notas de versão]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2067,10 +2097,13 @@
</Item>
<Item ItemId=";Oobe_PowerRename_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more selected files} and {clicking on PowerRename} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[No Explorador de Ficheiros, clicar com o botão direito do rato num ou em mais ficheiros selecionados e clicar em PowerRename no menu de contexto.]]></Val>
<Val><![CDATA[No Explorador de Ficheiros, {right-clicking one or more selected files} e {clicking on PowerRename} no menu de contexto.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2112,19 +2145,25 @@
</Item>
<Item ItemId=";Oobe_Run_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
<Val><![CDATA[{Alt} + {Space} to open Run and just start typing.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Prima Alt + Espaço para abrir o PowerToys e comece a escrever.]]></Val>
<Val><![CDATA[{Alt} + {Space} para abrir a Run e comece a escrever.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Run_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Val><![CDATA[PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing {<} searches for running processes only, {?} will search only for file, or {.} for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[O PowerToys Run suporta várias chaves de ação para pesquisar consultas em funil para um subconjunto específico de resultados. Escrever < permite procurar apenas os processos em execução, ? procura apenas ficheiros ou . para aplicações instaladas! Veja a documentação do PowerToys para obter o conjunto completo de "Chaves de Ação" disponíveis.]]></Val>
<Val><![CDATA[A PowerToys Run suporta várias teclas de ação para efetuar procurar em consultas um subconjunto específico de resultados. Escrever {<} procura apenas processos em execução, {?} procura apenas ficheiros e {.} procura aplicações instaladas! Veja a documentação dos PowerToys para obter o conjunto completo de "Teclas de Ação" disponíveis.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2148,10 +2187,13 @@
</Item>
<Item ItemId=";Oobe_ShortcutGuide_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
<Val><![CDATA[{Win} + {?} to open Shortcut Guide, press it again to close or press {Esc}. You can also launch it by holding the {Win} key for one second!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Windows + ? para abrir o Guia de Atalhos, prima novamente para fechar ou prima Esc. Também pode iniciá-lo ao manter premida a tecla do Windows durante um segundo!]]></Val>
<Val><![CDATA[{Win} + {?} para abrir o Guia de Atalhos. Prima novamente para fechar ou prima {Esc}. Também pode iniciá-lo ao manter premida a tecla {Win} durante um segundo!]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2184,10 +2226,13 @@
</Item>
<Item ItemId=";Oobe_VideoConference_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
<Val><![CDATA[{Win} + {N} to toggle both your microphone and video]D;]A;{Win} + {Shift} + {A} to toggle your microphone ]D;]A;{Win} + {Shift} + {O} to toggle your video]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Windows + N para alternar entre o microfone e o vídeo ]D;]A;Windows + Shift + A para alternar o microfone ]D;]A;Windows + Shift + O para alternar o vídeo]]></Val>
<Val><![CDATA[{Win} + {N} para alternar entre o microfone e o vídeo]D;]A;{Win} + {Shift} + {A} para alternar o microfone ]D;]A;{Win} + {Shift} + {O} para alternar o vídeo]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2887,12 +2932,18 @@
<Item ItemId=";ShortcutGuide_DisabledApps.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable for apps]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Desativar para aplicações]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_DisabledApps_TextBoxControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Turn off Shortcut Guide when these applications have focus. Add one application name per line.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Desligue o Guia de Atalhos quando estas aplicações tiverem foco. Adicione um nome de aplicação por linha.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>

View File

@@ -1779,19 +1779,25 @@
</Item>
<Item ItemId=";Oobe_ColorPicker_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
<Val><![CDATA[{Win} + {Ctrl} + {C} to open Color Picker.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Нажмите клавиши WIN+SHIFT+C, чтобы открыть Цветоподборщик.]]></Val>
<Val><![CDATA[Нажмите клавиши {WIN}+{CTRL}+{C}, чтобы открыть Цветоподборщик.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_ColorPicker_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
<Val><![CDATA[To select a color with more precision, {scroll the mouse wheel} to zoom in.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Чтобы точнее выбрать цвет, прокрутите колесико мыши для увеличения масштаба.]]></Val>
<Val><![CDATA[Чтобы точнее выбрать цвет, {прокрутите колесико мыши} для увеличения масштаба.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1815,19 +1821,25 @@
</Item>
<Item ItemId=";Oobe_FancyZones_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
<Val><![CDATA[{Shift} + {dragging the window} to snap a window to a zone, and release the window in the desired zone. {Win} + {`} to open the FancyZones editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Нажав и удерживая клавишу SHIFT, перетащите окно, чтобы привязать его к зоне, а затем отпустите его в нужной зоне.]D;]A;Нажмите клавиши WIN+`, чтобы открыть редактор FancyZones.]]></Val>
<Val><![CDATA[Нажав и удерживая клавишу {SHIFT}, {перетащите окно}, чтобы прикрепить его к зоне, а затем отпустите его в нужной зоне. Нажмите клавиши {WIN}+{`}, чтобы открыть редактор FancyZones.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_FancyZones_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
<Val><![CDATA[Snap a window to multiple zones by holding the {Ctrl} key (while also holding {Shift}) when dragging a window.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Прикрепляйте окно к нескольким зонам, удерживая клавишу CTRL (при нажатой клавише SHIFT) во время его перетаскивания.]]></Val>
<Val><![CDATA[Прикрепляйте окно к нескольким зонам, удерживая клавишу {CTRL} (при нажатой клавише {SHIFT}) во время его перетаскивания.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1851,10 +1863,13 @@
</Item>
<Item ItemId=";Oobe_FileExplorer_HowToEnable.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Val><![CDATA[Open File Explorer, {select the View tab} in the File Explorer ribbon, then {select Preview Pane}. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Откройте проводник Windows, выберите вкладку "Вид" на его ленте и выберите "Область просмотра". ]D;]A;Затем просто щелкните файл Markdown или значок SVG в проводнике и просмотрите содержимое в области просмотра.]]></Val>
<Val><![CDATA[Откройте проводник, {выберите вкладку "Вид"} на его ленте и {выберите "Область просмотра"}. ]D;]A;Затем просто щелкните файл Markdown или значок SVG в проводнике и просмотрите содержимое в области просмотра.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1932,10 +1947,13 @@
</Item>
<Item ItemId=";Oobe_ImageResizer_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more image files} and {clicking on Resize pictures} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[В проводнике щелкните правой кнопкой мыши по одному или нескольким файлам изображений и выберите в контекстном меню команду "Изменить размер изображений".]]></Val>
<Val><![CDATA[В проводнике {щелкните правой кнопкой мыши один или несколько файлов изображений} и выберите в контекстном меню команду {Изменить размер изображений}.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1968,10 +1986,13 @@
</Item>
<Item ItemId=";Oobe_KBM_HowToCreateMappings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
<Val><![CDATA[Launch {PowerToys settings}, navigate to the Keyboard Manager menu, and select either {Remap a key} or {Remap a shortcut}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Откройте параметры PowerToys, перейдите в меню "Диспетчер клавиатуры" и выберите переназначение ключа или сочетания клавиш.]]></Val>
<Val><![CDATA[Откройте {параметры PowerToys}, перейдите в меню "Диспетчер клавиатуры" и выберите ереназначить клавишу} или {Переназначить сочетание клавиш}.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2013,10 +2034,13 @@
</Item>
<Item ItemId=";Oobe_Overview_CheckoutLatestVersion.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
<Val><![CDATA[For returning users, check out what is new in our]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Возвращающиеся пользователи могут ознакомиться с новыми возможностями этой последней версии]]></Val>
<Val><![CDATA[Возвращающиеся пользователи могут ознакомиться с новыми возможностями]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2031,19 +2055,25 @@
</Item>
<Item ItemId=";Oobe_Overview_DescriptionLinkText.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Документация Майкрософт.]]></Val>
<Val><![CDATA[Документация Майкрософт]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Overview_LatestVersionLink.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
<Val><![CDATA[release notes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys в наших заметках о выпуске.]]></Val>
<Val><![CDATA[заметки о выпуске]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2067,10 +2097,13 @@
</Item>
<Item ItemId=";Oobe_PowerRename_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more selected files} and {clicking on PowerRename} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[В проводнике щелкните правой кнопкой мыши по одному или нескольким выбранным файлам и выберите в контекстном меню команду PowerRename.]]></Val>
<Val><![CDATA[В проводнике {щелкните правой кнопкой мыши один или несколько выбранных файлов} и выберите в контекстном меню команду {PowerRename}.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2112,19 +2145,25 @@
</Item>
<Item ItemId=";Oobe_Run_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
<Val><![CDATA[{Alt} + {Space} to open Run and just start typing.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Нажмите ALT+ПРОБЕЛ, чтобы открыть PowerToys, и просто начните ввод.]]></Val>
<Val><![CDATA[Нажмите сочетание клавиш {ALT}+{ПРОБЕЛ}, чтобы открыть окно "Выполнить", и просто начните ввод.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Run_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Val><![CDATA[PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing {<} searches for running processes only, {?} will search only for file, or {.} for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys поддерживает различные ключи действий в запросах воронки для поиска конкретного подмножества результатов. При вводе "<" осуществляется только поиск запущенных процессов, "?" — только поиск файла, а "." — поиск установленных приложений. Полный набор доступных ключей действий см. в документации по PowerToys.]]></Val>
<Val><![CDATA[PowerToys Run поддерживает различные ключи действий в запросах воронки для поиска конкретного подмножества результатов. При вводе {<} осуществляется поиск только запущенных процессов, {?} — поиск только файла, а {.} — поиск установленных приложений. Полный набор доступных ключей действий см. в документации по PowerToys.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2148,10 +2187,13 @@
</Item>
<Item ItemId=";Oobe_ShortcutGuide_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
<Val><![CDATA[{Win} + {?} to open Shortcut Guide, press it again to close or press {Esc}. You can also launch it by holding the {Win} key for one second!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Нажмите клавиши WIN+?, чтобы открыть модуль "Подсказки по сочетаниям клавиш", для его закрытия нажмите эти клавиши еще раз или клавишу ESC. Вы также можете запустить его, удерживая клавишу WIN в течение одной секунды.]]></Val>
<Val><![CDATA[Нажмите клавиши {WIN}+{?}, чтобы открыть модуль "Подсказки по сочетаниям клавиш", для его закрытия нажмите эти клавиши еще раз или клавишу {ESC}. Вы также можете запустить его, удерживая клавишу {WIN} в течение одной секунды.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2184,10 +2226,13 @@
</Item>
<Item ItemId=";Oobe_VideoConference_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
<Val><![CDATA[{Win} + {N} to toggle both your microphone and video]D;]A;{Win} + {Shift} + {A} to toggle your microphone ]D;]A;{Win} + {Shift} + {O} to toggle your video]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Нажмите клавиши WIN+N для переключения микрофона и видео ]D;]A;Нажмите клавиши WIN+SHIFT+A для переключения микрофона ]D;]A;Нажмите клавиши WIN+SHIFT+O для переключения видео]]></Val>
<Val><![CDATA[Нажмите клавиши {WIN}+{N} для переключения микрофона и видео ]D;]A;Нажмите клавиши {WIN}+{SHIFT}+{A} для переключения микрофона ]D;]A;Нажмите клавиши {WIN}+{SHIFT}+{O} для переключения видео.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2887,12 +2932,18 @@
<Item ItemId=";ShortcutGuide_DisabledApps.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable for apps]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Отключить для приложений]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_DisabledApps_TextBoxControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Turn off Shortcut Guide when these applications have focus. Add one application name per line.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Отключение "Подсказок по сочетаниям клавиш" при фокусе на заданных приложениях. Указывайте имена приложений по одному в каждой строке.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>

View File

@@ -1779,19 +1779,25 @@
</Item>
<Item ItemId=";Oobe_ColorPicker_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
<Val><![CDATA[{Win} + {Ctrl} + {C} to open Color Picker.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Win + Skift + C för att öppna färgväljaren.]]></Val>
<Val><![CDATA[{Win} + {Ctrl} + {C} för att öppna färgväljaren.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_ColorPicker_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
<Val><![CDATA[To select a color with more precision, {scroll the mouse wheel} to zoom in.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Om du vill välja en färg med mer precision rullar du mushjulet för att zooma in.]]></Val>
<Val><![CDATA[Om du vill välja en färg med mer precision kan du {scroll the mouse wheel} för att zooma in.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1815,19 +1821,25 @@
</Item>
<Item ItemId=";Oobe_FancyZones_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
<Val><![CDATA[{Shift} + {dragging the window} to snap a window to a zone, and release the window in the desired zone. {Win} + {`} to open the FancyZones editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Skift + dra medan du drar fönstret för att fästa ett fönster till en zon och släpp fönstret i önskad zon.]D;]A;Win + ` för att öppna FancyZones-redigeringsprogrammet.]]></Val>
<Val><![CDATA[{Shift} + {dragging the window} för att fästa ett fönster till en zon och släpp fönstret i önskad zon. {Win} + {`} för att öppna FancyZones-redigeringsprogrammet.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_FancyZones_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
<Val><![CDATA[Snap a window to multiple zones by holding the {Ctrl} key (while also holding {Shift}) when dragging a window.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Fäst ett fönster till flera zoner genom att hålla ned Ctrl-tangenten (medan du även håller ned Skift) medan du drar ett fönster.]]></Val>
<Val><![CDATA[Fäst ett fönster till flera zoner genom att hålla ned {Ctrl}-tangenten (medan du även håller ned {Shift}) medan du drar ett fönster.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1851,10 +1863,13 @@
</Item>
<Item ItemId=";Oobe_FileExplorer_HowToEnable.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Val><![CDATA[Open File Explorer, {select the View tab} in the File Explorer ribbon, then {select Preview Pane}. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Öppna Utforskaren i Windows, välj fliken Visa i Utforskarens menyfliksområde och välj sedan Förhandsgranskningsfönster. ]D;]A;Sedan behöver du bara klicka på en Markdown-fil eller SVG-ikon i Utforskaren så visas innehållet i förhandsgranskningsfönstret!]]></Val>
<Val><![CDATA[Öppna Utforskaren, {select the View tab} i Utforskarens menyfliksområde och välj sedan {select Preview Pane}. ]D;]A;Sedan behöver du bara klicka på en Markdown-fil eller SVG-ikon i Utforskaren så visas innehållet i förhandsgranskningsfönstret!]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1932,10 +1947,13 @@
</Item>
<Item ItemId=";Oobe_ImageResizer_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more image files} and {clicking on Resize pictures} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[I Utforskaren högerklickar du på en eller fler bildfiler och klickar sedan på Ändra storlek på bilder i snabbmenyn.]]></Val>
<Val><![CDATA[I Utforskaren kan du {right-clicking one or more image files} och {clicking on Resize pictures} i snabbmenyn.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1968,10 +1986,13 @@
</Item>
<Item ItemId=";Oobe_KBM_HowToCreateMappings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
<Val><![CDATA[Launch {PowerToys settings}, navigate to the Keyboard Manager menu, and select either {Remap a key} or {Remap a shortcut}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Starta PowerToys-inställningarna, gå till menyn för Tangentbordshanteraren och välj antingen Mappa om en tangent eller Mappa om en genväg.]]></Val>
<Val><![CDATA[Starta {PowerToys settings}, gå till menyn för Tangentbordshanteraren och välj antingen {Remap a key} eller {Remap a shortcut}.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2013,10 +2034,13 @@
</Item>
<Item ItemId=";Oobe_Overview_CheckoutLatestVersion.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
<Val><![CDATA[For returning users, check out what is new in our]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[De som använt detta tidigare kan se nyheterna i den här senaste versionen av]]></Val>
<Val><![CDATA[De som använt detta tidigare kan se nyheterna i]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2031,19 +2055,25 @@
</Item>
<Item ItemId=";Oobe_Overview_DescriptionLinkText.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft Docs.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Overview_LatestVersionLink.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
<Val><![CDATA[release notes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys i Viktig information.]]></Val>
<Val><![CDATA[viktig information]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2067,10 +2097,13 @@
</Item>
<Item ItemId=";Oobe_PowerRename_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more selected files} and {clicking on PowerRename} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[I Utforskaren högerklickar du på en eller fler valda filer och klickar sedan på PowerRename i kontextmenyn.]]></Val>
<Val><![CDATA[I Utforskaren kan du {right-clicking one or more selected files} och {clicking on PowerRename} i kontextmenyn.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2112,19 +2145,25 @@
</Item>
<Item ItemId=";Oobe_Run_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
<Val><![CDATA[{Alt} + {Space} to open Run and just start typing.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Alt + Space för att öppna PowerToys och börja skriva.]]></Val>
<Val><![CDATA[{Alt} + {Space} för att öppna Kör och bara börja skriva.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Run_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Val><![CDATA[PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing {<} searches for running processes only, {?} will search only for file, or {.} for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys Run stöder olika åtgärdsnycklar för att inrikta sökfrågor på en specifik delmängd av resultat. Om du skriver < söker programmet endast efter processer som körs, ? söker endast efter filer och . söker efter installerade program. I PowerToys-dokumentationen finns en fullständig lista över åtgärdsnycklar.]]></Val>
<Val><![CDATA[PowerToys Run stöder olika åtgärdsnycklar för att inrikta sökfrågor på en specifik delmängd av resultat. Om du skriver {<} söker programmet endast efter processer som körs, {?} söker endast efter filer och {.} söker efter installerade program. I PowerToys-dokumentationen finns en fullständig lista över åtgärdsnycklar.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2148,10 +2187,13 @@
</Item>
<Item ItemId=";Oobe_ShortcutGuide_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
<Val><![CDATA[{Win} + {?} to open Shortcut Guide, press it again to close or press {Esc}. You can also launch it by holding the {Win} key for one second!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Win + ? för att öppna Kortkommandoguiden. Tryck på dessa igen eller på Esc om du vill stänga. Du kan även starta genom att hålla ned Win-tangenten i en sekund.]]></Val>
<Val><![CDATA[{Win} + {?} för att öppna Kortkommandoguiden. Tryck på dessa igen eller på {Esc} om du vill stänga. Du kan även starta genom att hålla ned {Win}-tangenten i en sekund.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2184,10 +2226,13 @@
</Item>
<Item ItemId=";Oobe_VideoConference_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
<Val><![CDATA[{Win} + {N} to toggle both your microphone and video]D;]A;{Win} + {Shift} + {A} to toggle your microphone ]D;]A;{Win} + {Shift} + {O} to toggle your video]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Win + N för att växla både mikrofon och video ]D;]A;Win + Skift + A för att växla mikrofonen ]D;]A;Win + Skift + O för att växla video]]></Val>
<Val><![CDATA[{Win} + {N} för att växla både mikrofon och video]D;]A;{Win} + {Shift} + {A} för att växla mikrofonen ]D;]A;{Win} + {Shift} + {O} för att växla video]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2887,12 +2932,18 @@
<Item ItemId=";ShortcutGuide_DisabledApps.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable for apps]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Inaktivera för appar]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_DisabledApps_TextBoxControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Turn off Shortcut Guide when these applications have focus. Add one application name per line.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Inaktivera kortkommandoguiden när de här programmen har fokus. Lägg till ett programnamn per rad.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>

View File

@@ -754,7 +754,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[File Explorer]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1779,19 +1779,25 @@
</Item>
<Item ItemId=";Oobe_ColorPicker_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
<Val><![CDATA[{Win} + {Ctrl} + {C} to open Color Picker.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Renk Seçici'yi açmak için Win + Shift + C tuşlarına basın.]]></Val>
<Val><![CDATA[Renk Seçici'yi açmak için {Win} + {Ctrl} + {C} tuşlarına basın.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_ColorPicker_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
<Val><![CDATA[To select a color with more precision, {scroll the mouse wheel} to zoom in.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Daha duyarlı bir şekilde renk seçmek için fare tekerleğini kaydırarak yakınlaştırın.]]></Val>
<Val><![CDATA[Daha hassas bir şekilde renk seçmek için yakınlaştırmak üzere {scroll the mouse wheel}.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1815,19 +1821,25 @@
</Item>
<Item ItemId=";Oobe_FancyZones_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
<Val><![CDATA[{Shift} + {dragging the window} to snap a window to a zone, and release the window in the desired zone. {Win} + {`} to open the FancyZones editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Pencereyi bir bölgeye yaslamak için Shift tuşuna basarak pencereyi sürükleyin ve istediğiniz bölgeye bırakın.]D;]A;FancyZones düzenleyicisini açmak için Win + ` tuşlarına basın.]]></Val>
<Val><![CDATA[Pencereyi bir bölgeye yaslamak için {Shift} tuşuna basarak {dragging the window} ve istediğiniz bölgeye bırakın. FancyZones düzenleyicisini açmak için {Win} + {`} tuşlarına basın.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_FancyZones_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
<Val><![CDATA[Snap a window to multiple zones by holding the {Ctrl} key (while also holding {Shift}) when dragging a window.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Pencereyi sürüklerken Ctrl tuşunu basılı tutarak (aynı anda Shift tuşunu basılı tutarak) pencereyi birden çok bölgeye yaslayın.]]></Val>
<Val><![CDATA[Pencereyi sürüklerken {Ctrl} tuşunu basılı tutarak (aynı anda {Shift} tuşunu basılı tutarak) pencereyi birden çok bölgeye yaslayın.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1851,10 +1863,13 @@
</Item>
<Item ItemId=";Oobe_FileExplorer_HowToEnable.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Val><![CDATA[Open File Explorer, {select the View tab} in the File Explorer ribbon, then {select Preview Pane}. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Windows Dosya Gezgini'ni açın, Dosya Gezgini şeridinde Görünüm sekmesini seçin ve Önizleme Bölmesi seçeneğini belirleyin. ]D;]A;Buradan Dosya Gezgini'ndeki bir Markdown dosyasına veya SVG simgesine tıklayın ve önizleme bölmesindeki içeriği gözlemleyin!]]></Val>
<Val><![CDATA[Dosya Gezgini'ni açın, Dosya Gezgini şeridinde {select the View tab} ve {select Preview Pane}. ]D;]A;Buradan Dosya Gezgini'ndeki bir Markdown dosyasına veya SVG simgesine tıklayın ve önizleme bölmesindeki içeriği gözlemleyin!]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1932,10 +1947,13 @@
</Item>
<Item ItemId=";Oobe_ImageResizer_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more image files} and {clicking on Resize pictures} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Dosya Gezgini'nde, bir veya daha fazla görüntü dosyasına sağ tıklayıp bağlam menüsünden Resimleri yeniden boyutlandır seçeneğine tıklayın.]]></Val>
<Val><![CDATA[Dosya Gezgini'nde, {right-clicking one or more image files} ve bağlam menüsünden {clicking on Resize pictures}.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1968,10 +1986,13 @@
</Item>
<Item ItemId=";Oobe_KBM_HowToCreateMappings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
<Val><![CDATA[Launch {PowerToys settings}, navigate to the Keyboard Manager menu, and select either {Remap a key} or {Remap a shortcut}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys ayarlarını başlatın, Klavye Yöneticisi menüsüne gidin ve Tuşu yeniden eşle veya Kısayolu yeniden eşle seçeneğini belirleyin.]]></Val>
<Val><![CDATA[{PowerToys settings} başlatın, Klavye Yöneticisi menüsüne gidin ve {Remap a key} veya {Remap a shortcut} seçeneğini belirleyin.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2013,10 +2034,13 @@
</Item>
<Item ItemId=";Oobe_Overview_CheckoutLatestVersion.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
<Val><![CDATA[For returning users, check out what is new in our]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Önceki sürümlerden yükselten kullanıcılar, sürüm notlarımızda PowerToys'un]]></Val>
<Val><![CDATA[Önceki sürümlerden yükselten kullanıcılar]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2031,19 +2055,25 @@
</Item>
<Item ItemId=";Oobe_Overview_DescriptionLinkText.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft Docs'taki kapsamlı belgelerimize bakın.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Overview_LatestVersionLink.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
<Val><![CDATA[release notes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[bu son sürümündeki yeniliklere göz atabilir.]]></Val>
<Val><![CDATA[sürüm notlarımızda yeniliklere göz atabilir]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2067,10 +2097,13 @@
</Item>
<Item ItemId=";Oobe_PowerRename_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more selected files} and {clicking on PowerRename} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Dosya Gezgini'nde, bir veya daha fazla seçili dosyaya sağ tıklayıp bağlam menüsünden PowerRename'e tıklayın.]]></Val>
<Val><![CDATA[Dosya Gezgini'nde, {right-clicking one or more selected files} ve bağlam menüsünden {clicking on PowerRename}.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2112,19 +2145,25 @@
</Item>
<Item ItemId=";Oobe_Run_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
<Val><![CDATA[{Alt} + {Space} to open Run and just start typing.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys'u açmak için Alt + Ara çubuğu tuşlarına basıp yazmaya başlayın.]]></Val>
<Val><![CDATA[Çalıştır'ı açmak için {Alt} + {Space} tuşlarına basın ve yazmaya başlayın.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Run_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Val><![CDATA[PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing {<} searches for running processes only, {?} will search only for file, or {.} for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys Run, belirli bir sonuç alt kümesi için arama sorgularını yönlendirmek üzere çeşitli eylem anahtarlarını destekler. < yazarak yalnızca çalışan işlemleri, ? yazarak yalnızca dosyayı veya . yazarak yüklü uygulamaları arayabilirsiniz! Kullanılabilir tüm 'Eylem Anahtarları' kümesi için PowerToys belgelerine bakın.]]></Val>
<Val><![CDATA[PowerToys Run, belirli bir sonuç alt kümesi için arama sorgularını yönlendirmek üzere çeşitli eylem tuşlarını destekler. {<} yazarak yalnızca çalışan işlemleri, {?} yazarak yalnızca dosyayı veya {.} yazarak yüklü uygulamaları arayabilirsiniz! Kullanılabilir tüm 'Eylem Tuşları' kümesi için PowerToys belgelerine bakın.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2148,10 +2187,13 @@
</Item>
<Item ItemId=";Oobe_ShortcutGuide_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
<Val><![CDATA[{Win} + {?} to open Shortcut Guide, press it again to close or press {Esc}. You can also launch it by holding the {Win} key for one second!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Kısayol Kılavuzunu açmak için Win + ? tuşlarına basın. Kılavuzu kapatmak için yeniden bu tuşlara basın veya Esc tuşunu kullanın. Kısayol Kılavuzunu Win tuşunu bir saniye basılı tutarak da başlatabilirsiniz!]]></Val>
<Val><![CDATA[Kısayol Kılavuzu'nu açmak için {Win} + {?} tuşlarına basın. Kılavuzu kapatmak için yeniden bu tuşlara basın veya {Esc} tuşunu kullanın. Kısayol Kılavuzu'nu {Win} tuşunu bir saniye basılı tutarak da başlatabilirsiniz!]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2184,10 +2226,13 @@
</Item>
<Item ItemId=";Oobe_VideoConference_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
<Val><![CDATA[{Win} + {N} to toggle both your microphone and video]D;]A;{Win} + {Shift} + {A} to toggle your microphone ]D;]A;{Win} + {Shift} + {O} to toggle your video]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Hem mikrofonunuzu hem de görüntünüzü açmak/kapatmak için Win + N tuşlarını,]D;]A;mikrofonunuzu açmak/kapatmak için Win + Shift + A tuşlarını]D;]A;görüntünüzü açmak/kapatmak için Win + Shift + O tuşlarını kullanın]]></Val>
<Val><![CDATA[Hem mikrofonunuzu hem de görüntünüzü açmak/kapatmak için {Win} + {N} tuşlarını,]D;]A;mikrofonunuzu açmak/kapatmak için {Win} + {Shift} + {A} tuşlarını, ]D;]A;görüntünüzü açmak/kapatmak için {Win} + {Shift} + {O} tuşlarını kullanın]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2887,12 +2932,18 @@
<Item ItemId=";ShortcutGuide_DisabledApps.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable for apps]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Uygulamalar için devre dışı bırak]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_DisabledApps_TextBoxControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Turn off Shortcut Guide when these applications have focus. Add one application name per line.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Bu uygulamalar odağa sahip olduğunda Kısayol Kılavuzu'nu kapatın. Her satır için bir uygulama adı ekleyin.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>

View File

@@ -754,7 +754,7 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileExplorerPreview_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" Leaf="true">
<Item ItemId=";FileExplorerPreview_Image.AutomationProperties.Name" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[File Explorer]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
@@ -1779,19 +1779,25 @@
</Item>
<Item ItemId=";Oobe_ColorPicker_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
<Val><![CDATA[{Win} + {Ctrl} + {C} to open Color Picker.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[同时按住 Win + Shift + C 可以打开颜色选择器。]]></Val>
<Val><![CDATA[使用 {Win} + {Ctrl} + {C} 打开颜色选择器。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_ColorPicker_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
<Val><![CDATA[To select a color with more precision, {scroll the mouse wheel} to zoom in.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[若要更精确地选择颜色,请滚动鼠标滚轮进行放大。]]></Val>
<Val><![CDATA[若要更精确地选择颜色,请{scroll the mouse wheel}进行放大。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1815,19 +1821,25 @@
</Item>
<Item ItemId=";Oobe_FancyZones_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
<Val><![CDATA[{Shift} + {dragging the window} to snap a window to a zone, and release the window in the desired zone. {Win} + {`} to open the FancyZones editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[按住 Shift 的同时拖动窗口,可以将窗口贴靠到区域,然后在所需区域中释放窗口。]D;]A;同时按住 Win + ` 可以打开 FancyZones 编辑器。]]></Val>
<Val><![CDATA[按住 {Shift} 的同时{dragging the window},可以将窗口贴靠到区域,然后在所需区域中释放窗口。同时按住 {Win} + {`} 可以打开 FancyZones 编辑器。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_FancyZones_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
<Val><![CDATA[Snap a window to multiple zones by holding the {Ctrl} key (while also holding {Shift}) when dragging a window.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[在拖动窗口时,按住 Ctrl 键(同时按住 Shift)可以将一个窗口贴靠到多个区域。]]></Val>
<Val><![CDATA[在拖动窗口时,按住 {Ctrl} 键(同时按住 {Shift})可以将一个窗口贴靠到多个区域。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1851,10 +1863,13 @@
</Item>
<Item ItemId=";Oobe_FileExplorer_HowToEnable.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Val><![CDATA[Open File Explorer, {select the View tab} in the File Explorer ribbon, then {select Preview Pane}. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[打开 Windows 文件资源管理器,选择文件资源管理器丝带中的“视图”选项卡,然后选择“预览窗格”。]D;]A;在此窗格中,只需单击文件资源管理器中的 Markdown 文件或 SVG 图标,即可在预览窗格中查看内容!]]></Val>
<Val><![CDATA[打开文件资源管理器,选择文件资源管理器丝带中的“{select the View tab}”,然后{select Preview Pane}。]D;]A;在此窗格中,只需单击文件资源管理器中的 Markdown 文件或 SVG 图标,即可在预览窗格中查看内容!]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1932,10 +1947,13 @@
</Item>
<Item ItemId=";Oobe_ImageResizer_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more image files} and {clicking on Resize pictures} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[在“文件资源管理器”中,右键单击一个或多个图像文件,然后单击上下文菜单中的“调整图片大小”。]]></Val>
<Val><![CDATA[在“文件资源管理器”中,{right-clicking one or more image files},然后单击上下文菜单中的“{clicking on Resize pictures}”。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1968,10 +1986,13 @@
</Item>
<Item ItemId=";Oobe_KBM_HowToCreateMappings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
<Val><![CDATA[Launch {PowerToys settings}, navigate to the Keyboard Manager menu, and select either {Remap a key} or {Remap a shortcut}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[启动 PowerToys 设置,转到“键盘管理器”菜单,然后选择“重映射键”或“重映射快捷键”。]]></Val>
<Val><![CDATA[启动 {PowerToys settings},转到“键盘管理器”菜单,然后选择“{Remap a key}”或“{Remap a shortcut}”。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2013,10 +2034,13 @@
</Item>
<Item ItemId=";Oobe_Overview_CheckoutLatestVersion.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
<Val><![CDATA[For returning users, check out what is new in our]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[对于老用户,请在我们的发行说明中查看最新版]]></Val>
<Val><![CDATA[对于老用户,请在以下位置查看最近更新:]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2031,19 +2055,25 @@
</Item>
<Item ItemId=";Oobe_Overview_DescriptionLinkText.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft Docs 上的综合文档。]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Overview_LatestVersionLink.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
<Val><![CDATA[release notes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys 的新变化。]]></Val>
<Val><![CDATA[发行说明]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2067,10 +2097,13 @@
</Item>
<Item ItemId=";Oobe_PowerRename_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more selected files} and {clicking on PowerRename} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[在“文件资源管理器”中,右键单击一个或多个所选文件,然后单击上下文菜单中的 "PowerRename"。]]></Val>
<Val><![CDATA[在“文件资源管理器”中,{right-clicking one or more selected files},然后单击上下文菜单中的 "{clicking on PowerRename}"。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2112,19 +2145,25 @@
</Item>
<Item ItemId=";Oobe_Run_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
<Val><![CDATA[{Alt} + {Space} to open Run and just start typing.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[同时按住 Alt + 空格键可以打开 PowerToys然后就可以开始键入。]]></Val>
<Val><![CDATA[使用 {Alt} + {Space} 打开“运行”,然后即可开始键入。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Run_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Val><![CDATA[PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing {<} searches for running processes only, {?} will search only for file, or {.} for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys Run 支持各种操作键,以漏斗式搜索查询特定结果子集。键入 "<" 只搜索正在运行的进程,键入 "?" 只搜索文件,或键入 "." 搜索已安装的应用程序! 有关可用的完整“操作键”集,请参阅 PowerToys 文档。]]></Val>
<Val><![CDATA[PowerToys Run 支持各种操作键,以漏斗式搜索查询中是否有特定结果子集。键入 "{<}" 只搜索正在运行的进程,键入 "{?}" 只搜索文件,或键入 "{.}" 搜索已安装的应用程序! 有关可用的完整“操作键”集,请参阅 PowerToys 文档。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2148,10 +2187,13 @@
</Item>
<Item ItemId=";Oobe_ShortcutGuide_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
<Val><![CDATA[{Win} + {?} to open Shortcut Guide, press it again to close or press {Esc}. You can also launch it by holding the {Win} key for one second!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[同时按住 Win + ? 可以打开快捷键指南,再次按下它可以关闭或按 Esc 键。也可以通过按住 Win 键一秒钟来启动它!]]></Val>
<Val><![CDATA[同时按住 {Win} + {?} 可以打开快捷键指南,再次按下它可以关闭或按 {Esc} 键。也可以通过按住 {Win} 键一秒钟来启动它!]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2184,10 +2226,13 @@
</Item>
<Item ItemId=";Oobe_VideoConference_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
<Val><![CDATA[{Win} + {N} to toggle both your microphone and video]D;]A;{Win} + {Shift} + {A} to toggle your microphone ]D;]A;{Win} + {Shift} + {O} to toggle your video]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[同时按住 Win + N 可以切换麦克风和视频]D;]A; 同时按住 Win + Shift + A 可以切换麦克风 ]D;]A;同时按住 Win + Shift + O 可以切换视频]]></Val>
<Val><![CDATA[同时按住 {Win} + {N} 可以切换麦克风和视频]D;]A; 同时按住 {Win} + {Shift} + {A} 可以切换麦克风 ]D;]A;同时按住 {Win} + {Shift} + {O} 可以切换视频]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2887,12 +2932,18 @@
<Item ItemId=";ShortcutGuide_DisabledApps.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable for apps]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[对应用禁用]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_DisabledApps_TextBoxControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Turn off Shortcut Guide when these applications have focus. Add one application name per line.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[当这些应用程序具有焦点时,请关闭“快捷键指南”。每行添加一个应用程序名称。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>

View File

@@ -1779,19 +1779,25 @@
</Item>
<Item ItemId=";Oobe_ColorPicker_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
<Val><![CDATA[{Win} + {Ctrl} + {C} to open Color Picker.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Win+Shift+C 可開啟色選擇器。]]></Val>
<Val><![CDATA[{Win} + {Ctrl} + {C} 可開啟色選擇器。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + Shift + C to open Color Picker.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_ColorPicker_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
<Val><![CDATA[To select a color with more precision, {scroll the mouse wheel} to zoom in.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[若要選取精確度更高的色彩,可滾動滑鼠滾輪放大。]]></Val>
<Val><![CDATA[若要選取精確度更高的色彩,可{滾動滑鼠滾輪}放大。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[To select a color with more precision, scroll the mouse wheel to zoom in.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1815,19 +1821,25 @@
</Item>
<Item ItemId=";Oobe_FancyZones_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
<Val><![CDATA[{Shift} + {dragging the window} to snap a window to a zone, and release the window in the desired zone. {Win} + {`} to open the FancyZones editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[若要拖曳視窗,將其貼齊至區域,請按住 Shift 鍵並拖曳,然後在預定的區域中放開視窗。]D;]A;Win+ ` 可開啟 FancyZones 編輯器。]]></Val>
<Val><![CDATA[{Shift} + {拖曳視窗},可將視窗貼齊至區域,然後在預定的區域中放開視窗。{Win} + {`} 可開啟 FancyZones 編輯器。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Shift + drag while dragging the window to snap a window to a zone, and release the window in the desired zone.]D;]A;Win + ` to open the FancyZones editor.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_FancyZones_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
<Val><![CDATA[Snap a window to multiple zones by holding the {Ctrl} key (while also holding {Shift}) when dragging a window.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[若要將視窗貼齊至多個區域,請按住 Ctrl (同時按住 Shift),然後拖曳視窗即可。]]></Val>
<Val><![CDATA[若要將視窗貼齊至多個區域,請按住 {Ctrl} (同時按住 {Shift}),然後拖曳視窗即可。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Snap a window to multiple zones by holding the Ctrl key (while also holding Shift) when dragging a window.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1851,10 +1863,13 @@
</Item>
<Item ItemId=";Oobe_FileExplorer_HowToEnable.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Val><![CDATA[Open File Explorer, {select the View tab} in the File Explorer ribbon, then {select Preview Pane}. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[開啟 Windows 的 [檔案總管]5D;再選取 [檔案總管]5D; 功能區中 [檢視]5D; 索引標籤,然後選取 [預覽窗格]5D;。]D;]A;接著只需要在 [檔案總管]5D; 中按一下 Markdown 檔案或 SVG 圖示,就能在預覽窗格中檢視內容!]]></Val>
<Val><![CDATA[開啟 [檔案總管]5D; [檔案總管]5D; 功能區中{選取 [檢視]5D; 索引標籤},然後{選取 [預覽窗格]5D;}。]D;]A;接著只需要在 [檔案總管]5D; 中按一下 Markdown 檔案或 SVG 圖示,就能在預覽窗格中檢視內容!]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Open Windows File Explorer, select the View tab in the File Explorer ribbon, then select Preview Pane. ]D;]A;From there, simply click on a Markdown file or SVG icon in the File Explorer and observe the content on the preview pane!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1932,10 +1947,13 @@
</Item>
<Item ItemId=";Oobe_ImageResizer_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more image files} and {clicking on Resize pictures} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[在 [檔案總管]5D; 中的一或多個影像檔案上按一下滑鼠右鍵,然後按一下操作功能表中 [調整圖片大小]5D;。]]></Val>
<Val><![CDATA[在 [檔案總管]5D; 中的{一或多個影像檔案上按一下滑鼠右鍵},然後操作功能表中{按一下 [調整圖片大小]5D;}。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more image files and clicking on Resize pictures from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -1968,10 +1986,13 @@
</Item>
<Item ItemId=";Oobe_KBM_HowToCreateMappings.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
<Val><![CDATA[Launch {PowerToys settings}, navigate to the Keyboard Manager menu, and select either {Remap a key} or {Remap a shortcut}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[啟動 PowerToys 設定,再巡覽至 [鍵盤管理器]5D; 功能表,然後選取 [重新對應按鍵]5D; 或 [重新對應快速鍵]5D;。]]></Val>
<Val><![CDATA[啟動 {PowerToys 設定},瀏覽至 [鍵盤管理器]5D; 功能表,然後選取 {[重新對應按鍵]5D;}{[重新對應快速鍵]5D;}。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Launch PowerToys settings, navigate to the Keyboard Manager menu, and select either Remap a key or Remap a shortcut.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2013,10 +2034,13 @@
</Item>
<Item ItemId=";Oobe_Overview_CheckoutLatestVersion.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
<Val><![CDATA[For returning users, check out what is new in our]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[回訪者請先查看]]></Val>
<Val><![CDATA[已有帳戶的使用者請先查看]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[For returning users, check out what is new on this latest version of]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2031,19 +2055,25 @@
</Item>
<Item ItemId=";Oobe_Overview_DescriptionLinkText.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
<Val><![CDATA[Microsoft Docs]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Microsoft Docs 中提供的完整文件。]]></Val>
<Val><![CDATA[Microsoft Docs 中的新內容]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Microsoft Docs.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Overview_LatestVersionLink.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
<Val><![CDATA[release notes]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[版本資訊中最新版 PowerToys 的新功能。]]></Val>
<Val><![CDATA[版本資訊]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys in our release notes.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2067,10 +2097,13 @@
</Item>
<Item ItemId=";Oobe_PowerRename_HowToUse.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
<Val><![CDATA[In File Explorer, {right-clicking one or more selected files} and {clicking on PowerRename} from the context menu.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[在 [檔案總管]5D; 中的一或多個選取的檔案上按一下滑鼠右鍵,然後按一下操作功能表中 [PowerRename]5D;。]]></Val>
<Val><![CDATA[在 [檔案總管]5D; 中的{一或多個選取的檔案上按一下滑鼠右鍵},然後操作功能表中{按一下 [PowerRename]5D;}。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[In File Explorer, right-clicking one or more selected files and clicking on PowerRename from the context menu.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2112,19 +2145,25 @@
</Item>
<Item ItemId=";Oobe_Run_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
<Val><![CDATA[{Alt} + {Space} to open Run and just start typing.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Alt+空格鍵可開啟 PowerToys然後就能開始鍵入資料。]]></Val>
<Val><![CDATA[按下 {Alt} + {Space} 開啟執行,然後鍵入內容即可。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Alt + Space to open PowerToys and just start typing.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Oobe_Run_TipsAndTricks.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Val><![CDATA[PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing {<} searches for running processes only, {?} will search only for file, or {.} for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[PowerToys Run 支援各種動作按鍵,可以篩選搜尋查詢,以得特定結果。對於正在執行的處理序,請鍵入 <。若鍵入 ?,將只會搜尋檔案; 若鍵入 .,將會搜尋已安裝的應用程式。如需完整的可用動作金鑰組,請參閱 PowerToys 文件。]]></Val>
<Val><![CDATA[PowerToys Run 支援各種動作按鍵,可以篩選搜尋查詢,以得特定結果的子集。如只需搜尋執行的處理序,請鍵入 {<}; 如只需搜尋檔案,請鍵入 {?}; 如需搜尋已安裝的應用程式,請鍵入 {.}。如需可用動作按鍵的完整資訊,請參閱 PowerToys 文件。]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[PowerToys runs supports various action keys to funnel search queries for a specific subset of results. Typing < searches for running processes only, ? will search only for file, or . for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2148,10 +2187,13 @@
</Item>
<Item ItemId=";Oobe_ShortcutGuide_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
<Val><![CDATA[{Win} + {?} to open Shortcut Guide, press it again to close or press {Esc}. You can also launch it by holding the {Win} key for one second!]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Win+ ? 鍵可開啟快捷鍵指南,再按一次或按 Esc 則可關閉。按住 Win 鍵一秒鐘也能啟動這份指南!]]></Val>
<Val><![CDATA[{Win} + {?} 可開啟快捷鍵指南,重複按下按鍵或按下 {Esc} 即可關閉。按住 {Win} 鍵一秒鐘也能啟動這份指南!]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + ? to open Shortcut Guide, press it again to close or press Esc. You can also launch it by holding the Win key for one second!]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2184,10 +2226,13 @@
</Item>
<Item ItemId=";Oobe_VideoConference_HowToLaunch.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
<Val><![CDATA[{Win} + {N} to toggle both your microphone and video]D;]A;{Win} + {Shift} + {A} to toggle your microphone ]D;]A;{Win} + {Shift} + {O} to toggle your video]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Win+N 鍵可切換麥克風與影片 ]D;]A;Win+ Shift+A 鍵可切換麥克風 ]D;]A;Win+Shift+O 鍵可切換影片]]></Val>
<Val><![CDATA[{Win} + {N} 可切換麥克風與影片 ]D;]A;{Win} + {Shift} + {A} 可切換麥克風 ]D;]A;{Win} + {Shift} + {O} 可切換影片]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Win + N to toggle both your microphone and video ]D;]A;Win + Shift + A to toggle your microphone ]D;]A;Win + Shift + O to toggle your video]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
@@ -2887,12 +2932,18 @@
<Item ItemId=";ShortcutGuide_DisabledApps.Text" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Disable for apps]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[針對應用程式停用]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ShortcutGuide_DisabledApps_TextBoxControl.Header" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Turn off Shortcut Guide when these applications have focus. Add one application name per line.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[當聚焦於這些應用程式時,關閉快捷鍵指南。請在每行新增一個應用程式名稱。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>