summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Views/CountdownAlertView.xaml
diff options
context:
space:
mode:
authorsr55 <[email protected]>2018-10-10 19:00:57 +0100
committersr55 <[email protected]>2018-10-10 19:01:36 +0100
commit29eec2839291bf05e2321352eaa9368d2c76ac64 (patch)
tree6adac45a7fdce31f735df0968f81552b2cefe064 /win/CS/HandBrakeWPF/Views/CountdownAlertView.xaml
parent2264d25308238210892840d7de3fa1edf9de105e (diff)
WinGui: Simplify the Language Resource Files.
Diffstat (limited to 'win/CS/HandBrakeWPF/Views/CountdownAlertView.xaml')
-rw-r--r--win/CS/HandBrakeWPF/Views/CountdownAlertView.xaml6
1 files changed, 3 insertions, 3 deletions
diff --git a/win/CS/HandBrakeWPF/Views/CountdownAlertView.xaml b/win/CS/HandBrakeWPF/Views/CountdownAlertView.xaml
index 069af0bc2..2f8a83d7a 100644
--- a/win/CS/HandBrakeWPF/Views/CountdownAlertView.xaml
+++ b/win/CS/HandBrakeWPF/Views/CountdownAlertView.xaml
@@ -12,15 +12,15 @@
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
- <TextBlock Text="{x:Static Properties:ResourcesUI.CountdownAlterView_WhenDoneAction}" FontSize="26" FontFamily="Segoe UI Light" FontWeight="Bold" Margin="10,10,10,10" Grid.Row="0" />
+ <TextBlock Text="{x:Static Properties:Resources.CountdownAlterView_WhenDoneAction}" FontSize="26" FontFamily="Segoe UI Light" FontWeight="Bold" Margin="10,10,10,10" Grid.Row="0" />
<TextBlock Text="{Binding NoticeMessage}" Grid.Row="1" Margin="40,0,10,0"/>
<StackPanel Orientation="Horizontal" Grid.Row="2" Margin="0,10,10,5" HorizontalAlignment="Right">
- <Button Content="{x:Static Properties:ResourcesUI.CountdownAlterView_Proceed}" HorizontalAlignment="Right"
+ <Button Content="{x:Static Properties:Resources.CountdownAlterView_Proceed}" HorizontalAlignment="Right"
cal:Message.Attach="[Event Click] = [Action Proceed]" Padding="8,2" Margin="0,10,10,5"/>
- <Button Content="{x:Static Properties:ResourcesUI.CountdownAlterView_CancelAction}" HorizontalAlignment="Right" Margin="0,10,10,5"
+ <Button Content="{x:Static Properties:Resources.CountdownAlterView_CancelAction}" HorizontalAlignment="Right" Margin="0,10,10,5"
cal:Message.Attach="[Event Click] = [Action Cancel]" Padding="8,2" IsDefault="True" />
</StackPanel>