diff options
author | sr55 <[email protected]> | 2015-06-07 19:52:52 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2015-06-07 19:52:52 +0000 |
commit | 777687db76ec59b1a024aa1958edbfb23ec86b31 (patch) | |
tree | 32a290671230a98deda7d477549b0c0072f4e5f8 /win/CS/HandBrakeWPF/Views/ErrorView.xaml | |
parent | ffb84dc9de2d85776c172f48afebd1c773b322e6 (diff) |
WinGui: Moving more of the view strings into resources.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7277 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Views/ErrorView.xaml')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/ErrorView.xaml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/win/CS/HandBrakeWPF/Views/ErrorView.xaml b/win/CS/HandBrakeWPF/Views/ErrorView.xaml index 8053205fe..ba103dedb 100644 --- a/win/CS/HandBrakeWPF/Views/ErrorView.xaml +++ b/win/CS/HandBrakeWPF/Views/ErrorView.xaml @@ -2,6 +2,7 @@ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:cal="http://www.caliburnproject.org"
+ xmlns:Properties="clr-namespace:HandBrakeWPF.Properties"
Title="{Binding Title}"
Width="680"
Height="380"
@@ -44,7 +45,7 @@ Margin="0,0,0,2"
VerticalAlignment="Bottom"
FontWeight="Bold"
- Text="Error Details:" />
+ Text="{x:Static Properties:ResourcesUI.ErrorView_ErrorDetails}" />
</Grid>
</StackPanel>
@@ -81,14 +82,14 @@ Height="16"
Margin="0,0,5,0"
Source="Images/copy.png" />
- <TextBlock Grid.Column="1" Text="Copy to Clipboard" />
+ <TextBlock Grid.Column="1" Text="{x:Static Properties:ResourcesUI.Generic_CopyToClipboard}" />
</Grid>
</Button>
<Button Grid.Column="2"
Margin="0,5,10,5"
cal:Message.Attach="[Event Click] = [Action Close]"
- Content="Close"
+ Content="{x:Static Properties:ResourcesUI.Generic_Close}"
Padding="8,2" />
</Grid>
</Grid>
|