summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Views/QueueSelectionView.xaml
diff options
context:
space:
mode:
authorsr55 <[email protected]>2015-06-07 19:52:52 +0000
committersr55 <[email protected]>2015-06-07 19:52:52 +0000
commit777687db76ec59b1a024aa1958edbfb23ec86b31 (patch)
tree32a290671230a98deda7d477549b0c0072f4e5f8 /win/CS/HandBrakeWPF/Views/QueueSelectionView.xaml
parentffb84dc9de2d85776c172f48afebd1c773b322e6 (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/QueueSelectionView.xaml')
-rw-r--r--win/CS/HandBrakeWPF/Views/QueueSelectionView.xaml8
1 files changed, 4 insertions, 4 deletions
diff --git a/win/CS/HandBrakeWPF/Views/QueueSelectionView.xaml b/win/CS/HandBrakeWPF/Views/QueueSelectionView.xaml
index 2712d0264..6e2fd834b 100644
--- a/win/CS/HandBrakeWPF/Views/QueueSelectionView.xaml
+++ b/win/CS/HandBrakeWPF/Views/QueueSelectionView.xaml
@@ -35,11 +35,11 @@
</Grid.RowDefinitions>
<!-- Header -->
- <TextBlock Text="Add to Queue" FontSize="26" FontFamily="Segoe UI Light" FontWeight="Bold" Margin="10,10,10,10" Grid.Row="0" />
+ <TextBlock Text="{x:Static Properties:ResourcesUI.QueueSelectionView_Title}" FontSize="26" FontFamily="Segoe UI Light" FontWeight="Bold" Margin="10,10,10,10" Grid.Row="0" />
<!-- Text -->
<StackPanel Orientation="Vertical" Grid.Row="1" Margin="10,0,10,0">
- <TextBlock Text="Choose titles: " />
+ <TextBlock Text="{x:Static Properties:ResourcesUI.QueueSelectionView_ChooseTitles}" />
</StackPanel>
<!-- Selection -->
@@ -116,13 +116,13 @@
<Button Grid.Column="1"
Margin="0,5,10,10"
cal:Message.Attach="[Event Click] = [Action Cancel]"
- Content="Cancel"
+ Content="{x:Static Properties:ResourcesUI.Generic_Cancel}"
IsCancel="True"
Padding="8,2" />
<Button Grid.Column="2"
Margin="0,5,10,10"
cal:Message.Attach="[Event Click] = [Action Add]"
- Content="Add"
+ Content="{x:Static Properties:ResourcesUI.Generic_Add}"
IsDefault="True"
Padding="8,2" />
</Grid>