mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-09 04:37:30 +02:00
[FileExplorer]Add warnings for incompatibilities (#17273)
This commit is contained in:
@@ -1017,6 +1017,14 @@ Made with 💗 by Microsoft and the PowerToys community.</value>
|
|||||||
<data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve">
|
<data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve">
|
||||||
<value>A reboot may be required for changes to these settings to take effect</value>
|
<value>A reboot may be required for changes to these settings to take effect</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve">
|
||||||
|
<value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler</value>
|
||||||
|
<comment>Outlook is the name of a Microsoft product</comment>
|
||||||
|
</data>
|
||||||
|
<data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve">
|
||||||
|
<value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally</value>
|
||||||
|
<comment>OneDrive is the name of a Microsoft product</comment>
|
||||||
|
</data>
|
||||||
<data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve">
|
<data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve">
|
||||||
<value>Example: outlook.exe</value>
|
<value>Example: outlook.exe</value>
|
||||||
<comment>Don't translate outlook.exe</comment>
|
<comment>Don't translate outlook.exe</comment>
|
||||||
|
|||||||
@@ -21,6 +21,12 @@
|
|||||||
<StackPanel Orientation="Vertical">
|
<StackPanel Orientation="Vertical">
|
||||||
|
|
||||||
<controls:SettingsGroup x:Uid="FileExplorerPreview_PreviewPane">
|
<controls:SettingsGroup x:Uid="FileExplorerPreview_PreviewPane">
|
||||||
|
<muxc:InfoBar Severity="Warning"
|
||||||
|
x:Uid="FileExplorerPreview_PreviewHandlerOutlookIncompatibility"
|
||||||
|
IsOpen="True"
|
||||||
|
IsTabStop="True"
|
||||||
|
IsClosable="False"
|
||||||
|
/>
|
||||||
<controls:Setting x:Uid="FileExplorerPreview_ToggleSwitch_Preview_SVG" Icon="">
|
<controls:Setting x:Uid="FileExplorerPreview_ToggleSwitch_Preview_SVG" Icon="">
|
||||||
<controls:Setting.ActionContent>
|
<controls:Setting.ActionContent>
|
||||||
<ToggleSwitch IsOn="{x:Bind Mode=TwoWay, Path=ViewModel.SVGRenderIsEnabled}"
|
<ToggleSwitch IsOn="{x:Bind Mode=TwoWay, Path=ViewModel.SVGRenderIsEnabled}"
|
||||||
@@ -77,6 +83,12 @@
|
|||||||
IsTabStop="True"
|
IsTabStop="True"
|
||||||
IsClosable="False"
|
IsClosable="False"
|
||||||
/>
|
/>
|
||||||
|
<muxc:InfoBar Severity="Warning"
|
||||||
|
x:Uid="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders"
|
||||||
|
IsOpen="True"
|
||||||
|
IsTabStop="True"
|
||||||
|
IsClosable="False"
|
||||||
|
/>
|
||||||
<controls:Setting x:Uid="FileExplorerPreview_ToggleSwitch_SVG_Thumbnail" Icon="">
|
<controls:Setting x:Uid="FileExplorerPreview_ToggleSwitch_SVG_Thumbnail" Icon="">
|
||||||
<controls:Setting.ActionContent>
|
<controls:Setting.ActionContent>
|
||||||
<ToggleSwitch IsOn="{x:Bind Mode=TwoWay, Path=ViewModel.SVGThumbnailIsEnabled}"
|
<ToggleSwitch IsOn="{x:Bind Mode=TwoWay, Path=ViewModel.SVGThumbnailIsEnabled}"
|
||||||
|
|||||||
Reference in New Issue
Block a user