mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 03:37:59 +01:00
tweaking text and adding in headers (#6586)
This commit is contained in:
@@ -146,7 +146,7 @@
|
|||||||
<comment>Navigation view item name for Shortcut Guide</comment>
|
<comment>Navigation view item name for Shortcut Guide</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Shell_PowerPreview.Content" xml:space="preserve">
|
<data name="Shell_PowerPreview.Content" xml:space="preserve">
|
||||||
<value>File Explorer Preview</value>
|
<value>File Explorer</value>
|
||||||
<comment>Navigation view item name for File Explorer Preview</comment>
|
<comment>Navigation view item name for File Explorer Preview</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="Shell_FancyZones.Content" xml:space="preserve">
|
<data name="Shell_FancyZones.Content" xml:space="preserve">
|
||||||
@@ -640,10 +640,10 @@
|
|||||||
<value>About FancyZones</value>
|
<value>About FancyZones</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="About_FileExplorerPreview.Text" xml:space="preserve">
|
<data name="About_FileExplorerPreview.Text" xml:space="preserve">
|
||||||
<value>About File Explorer Preview</value>
|
<value>About File Explorer</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FileExplorerPreview_Image.AutomationProperties.Name" xml:space="preserve">
|
<data name="FileExplorerPreview_Image.AutomationProperties.Name" xml:space="preserve">
|
||||||
<value>File Explorer Preview</value>
|
<value>File Explorer</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="About_ImageResizer.Text" xml:space="preserve">
|
<data name="About_ImageResizer.Text" xml:space="preserve">
|
||||||
<value>About Image Resizer</value>
|
<value>About Image Resizer</value>
|
||||||
@@ -753,4 +753,10 @@
|
|||||||
<data name="GeneralSettings_VersionIsLatest" xml:space="preserve">
|
<data name="GeneralSettings_VersionIsLatest" xml:space="preserve">
|
||||||
<value>You have the latest available version.</value>
|
<value>You have the latest available version.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="FileExplorerPreview_IconThumbnail_GroupSettings.Text" xml:space="preserve">
|
||||||
|
<value>Icon Preview</value>
|
||||||
|
</data>
|
||||||
|
<data name="FileExplorerPreview_PreviewPane_GroupSettings.Text" xml:space="preserve">
|
||||||
|
<value>Preview Pane</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -23,4 +23,8 @@
|
|||||||
<Setter Property="Margin" Value="0,34,0,4" />
|
<Setter Property="Margin" Value="0,34,0,4" />
|
||||||
<Setter Property="FontWeight" Value="SemiBold"/>
|
<Setter Property="FontWeight" Value="SemiBold"/>
|
||||||
</Style>
|
</Style>
|
||||||
|
|
||||||
|
<Style x:Key="SettingsGroupTitleStyleAsHeader" TargetType="TextBlock" BasedOn="{StaticResource SettingsGroupTitleStyle}">
|
||||||
|
<Setter Property="Margin" Value="0,0,0,4" />
|
||||||
|
</Style>
|
||||||
</ResourceDictionary>
|
</ResourceDictionary>
|
||||||
@@ -43,18 +43,25 @@
|
|||||||
|
|
||||||
<StackPanel Orientation="Vertical"
|
<StackPanel Orientation="Vertical"
|
||||||
x:Name="PowerPreviewView">
|
x:Name="PowerPreviewView">
|
||||||
|
<TextBlock x:Uid="FileExplorerPreview_PreviewPane_GroupSettings"
|
||||||
|
Style="{StaticResource SettingsGroupTitleStyleAsHeader}"
|
||||||
|
Foreground="{x:Bind Mode=OneWay, Path=IsEnabled, Converter={StaticResource ModuleEnabledToForegroundConverter}}"/>
|
||||||
|
|
||||||
<ToggleSwitch x:Uid="FileExplorerPreview_ToggleSwitch_Preview_SVG"
|
<ToggleSwitch x:Uid="FileExplorerPreview_ToggleSwitch_Preview_SVG"
|
||||||
IsOn="{Binding Mode=TwoWay, Path=SVGRenderIsEnabled}" />
|
|
||||||
|
|
||||||
<ToggleSwitch x:Uid="FileExplorerPreview_ToggleSwitch_SVG_Thumbnail"
|
|
||||||
Margin="{StaticResource SmallTopMargin}"
|
Margin="{StaticResource SmallTopMargin}"
|
||||||
IsOn="{Binding Mode=TwoWay, Path=SVGThumbnailIsEnabled}" />
|
IsOn="{Binding Mode=TwoWay, Path=SVGRenderIsEnabled}" />
|
||||||
|
|
||||||
<ToggleSwitch x:Uid="FileExplorerPreview_ToggleSwitch_Preview_MD"
|
<ToggleSwitch x:Uid="FileExplorerPreview_ToggleSwitch_Preview_MD"
|
||||||
Margin="{StaticResource SmallTopMargin}"
|
Margin="{StaticResource SmallTopMargin}"
|
||||||
IsOn="{Binding Mode=TwoWay, Path=MDRenderIsEnabled}" />
|
IsOn="{Binding Mode=TwoWay, Path=MDRenderIsEnabled}" />
|
||||||
|
|
||||||
|
<TextBlock x:Uid="FileExplorerPreview_IconThumbnail_GroupSettings"
|
||||||
|
Style="{StaticResource SettingsGroupTitleStyle}"
|
||||||
|
Foreground="{x:Bind Mode=OneWay, Path=IsEnabled, Converter={StaticResource ModuleEnabledToForegroundConverter}}"/>
|
||||||
|
|
||||||
|
<ToggleSwitch x:Uid="FileExplorerPreview_ToggleSwitch_SVG_Thumbnail"
|
||||||
|
Margin="{StaticResource SmallTopMargin}"
|
||||||
|
IsOn="{Binding Mode=TwoWay, Path=SVGThumbnailIsEnabled}" />
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<RelativePanel x:Name="SidePanel"
|
<RelativePanel x:Name="SidePanel"
|
||||||
HorizontalAlignment="Left"
|
HorizontalAlignment="Left"
|
||||||
|
|||||||
Reference in New Issue
Block a user