diff options
author | sr55 <[email protected]> | 2013-06-01 21:28:05 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-06-01 21:28:05 +0000 |
commit | 0c65f4f74c61edb71ef7fbb03be0e0b3c932d810 (patch) | |
tree | 0e6b847b6861f0d03a0a63cb93b4f7844c868997 /win/CS/HandBrakeWPF/Views/OptionsView.xaml | |
parent | 0b38ee2d844b915314b9731fd2b2ea4906e6439b (diff) |
WinGui: Added option to AutoName functionality to remove common punctuation from filenames (Comma, Period and Dash)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5542 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Views/OptionsView.xaml')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/OptionsView.xaml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Views/OptionsView.xaml b/win/CS/HandBrakeWPF/Views/OptionsView.xaml index 31fa1e8fd..dcf9994c8 100644 --- a/win/CS/HandBrakeWPF/Views/OptionsView.xaml +++ b/win/CS/HandBrakeWPF/Views/OptionsView.xaml @@ -163,7 +163,8 @@ <TextBlock Text="Available Options: {source} {title} {chapters} {date}" />
<StackPanel Orientation="Horizontal" Margin="0,15,0,0">
- <CheckBox Content="Remove underscores from name" IsChecked="{Binding RemoveUnderscores}"/>
+ <CheckBox Content="Replace underscores with a space" IsChecked="{Binding RemoveUnderscores}"/>
+ <CheckBox Content="Remove common punctuation" ToolTip="Dash (-), Period (.) and Comma (,) " IsChecked="{Binding RemovePunctuation}" Margin="5,0,0,0"/>
<CheckBox Content="Change case to Title Case" IsChecked="{Binding ChangeToTitleCase}" Margin="5,0,0,0" />
</StackPanel>
|