Browse Source

Fix typos and slightly change wording in crash report windows

Equbuxu 3 years ago
parent
commit
3bd6621cc5

+ 1 - 1
PixiEditor/Views/Dialogs/CrashReportDialog.xaml

@@ -35,7 +35,7 @@
                     <StackPanel Margin="7" VerticalAlignment="Center">
                     <StackPanel Margin="7" VerticalAlignment="Center">
                         <TextBlock Text="{Binding DocumentCount, StringFormat={}{0} file(s) can be recovered}"
                         <TextBlock Text="{Binding DocumentCount, StringFormat={}{0} file(s) can be recovered}"
                        d:Text="2 file(s) can be recovered"/>
                        d:Text="2 file(s) can be recovered"/>
-                        <TextBlock TextWrapping="Wrap">You can help the developers fixing this bug by sending a crash report that was generated</TextBlock>
+                        <TextBlock TextWrapping="Wrap">You can help the developers fix this bug by sending a crash report that was generated (you will still be able to recover the files).</TextBlock>
                     </StackPanel>
                     </StackPanel>
                 </Grid>
                 </Grid>
 
 

+ 3 - 3
PixiEditor/Views/Dialogs/SendCrashReportWindow.xaml

@@ -9,7 +9,7 @@
         Title="Send crash report"
         Title="Send crash report"
         WindowStyle="None"
         WindowStyle="None"
         WindowStartupLocation="CenterScreen"
         WindowStartupLocation="CenterScreen"
-        Height="170" Width="340">
+        Height="195" Width="340">
     <Window.Resources>
     <Window.Resources>
         <Style TargetType="TextBlock">
         <Style TargetType="TextBlock">
             <Setter Property="HorizontalAlignment" Value="Center"/>
             <Setter Property="HorizontalAlignment" Value="Center"/>
@@ -37,13 +37,13 @@
             <StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
             <StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
                 <Button Width="140" Click="OpenInExplorer">Open in Explorer</Button>
                 <Button Width="140" Click="OpenInExplorer">Open in Explorer</Button>
             </StackPanel>
             </StackPanel>
-            <TextBlock TextAlignment="Center">You can report your crash report here:</TextBlock>
+            <TextBlock TextAlignment="Center">You can send your crash report using:</TextBlock>
             <StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
             <StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
                 <Button Click="OpenHyperlink" Tag="github">GitHub</Button>
                 <Button Click="OpenHyperlink" Tag="github">GitHub</Button>
                 <Button Click="OpenHyperlink" Tag="discord">Discord</Button>
                 <Button Click="OpenHyperlink" Tag="discord">Discord</Button>
                 <Button Click="OpenHyperlink" Tag="email">E-Mail</Button>
                 <Button Click="OpenHyperlink" Tag="email">E-Mail</Button>
             </StackPanel>
             </StackPanel>
-            <TextBlock TextWrapping="Wrap" FontSize="8">The report might contain the doucments that were opened when the crash happened</TextBlock>
+            <TextBlock TextWrapping="Wrap" TextAlignment="Center">The report contains the documents that were opened when the crash happened, feel free to review it before sending.</TextBlock>
         </StackPanel>
         </StackPanel>
     </StackPanel>
     </StackPanel>
 </Window>
 </Window>