Move all strings to properties in Aaru.Gui.

This commit is contained in:
2022-11-16 21:40:54 +00:00
parent 2f9b7fe0a1
commit ecb4842071
56 changed files with 934 additions and 458 deletions

View File

@@ -57,12 +57,12 @@
<TextBlock Text="{Binding FreeClustersText}" IsVisible="{Binding FreeClustersVisible}" />
<TextBlock Text="{Binding FilesText}" IsVisible="{Binding FilesVisible}" />
<CheckBox IsEnabled="{Binding BootableChecked}">
<TextBlock Text="Filesystem contains boot code" />
<TextBlock Text="{Binding BootableLabel}" />
</CheckBox>
<CheckBox IsEnabled="{Binding DirtyChecked}">
<TextBlock Text="Filesystem has not been unmounted correctly or contains errors" />
<TextBlock Text="{Binding DirtyLabel}" />
</CheckBox>
<TextBlock Text="Details" IsVisible="{Binding !!InformationText}" />
<TextBlock Text="{Binding DetailsLabel}" IsVisible="{Binding !!InformationText}" />
<TextBox Text="{Binding InformationText}" IsReadOnly="True" />
</StackPanel>
</UserControl>