diff options
author | sr55 <[email protected]> | 2019-01-24 21:47:40 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2019-01-24 21:47:40 +0000 |
commit | 996435c4cf9dc0ba1b38452e1dbc27ff54f5f684 (patch) | |
tree | 1375df511d9b060e3333b820c8a6b8715691fb98 | |
parent | 379ec710e89227ba6fe3e083e753a9b22ea29ca3 (diff) |
WinGui: Update Min Title Scan label
-rw-r--r-- | win/CS/HandBrakeWPF/Properties/Resources.Designer.cs | 2 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/Properties/Resources.resx | 2 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/Views/OptionsView.xaml | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs b/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs index 8803d1757..f90e41d43 100644 --- a/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs +++ b/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs @@ -2673,7 +2673,7 @@ namespace HandBrakeWPF.Properties { } /// <summary> - /// Looks up a localized string similar to Minimum length of title to scan (seconds):. + /// Looks up a localized string similar to Minimum DVD and Blu-ray title duration in seconds. Shorter titles will be skipped:. /// </summary> public static string Options_MinTitleScanLength { get { diff --git a/win/CS/HandBrakeWPF/Properties/Resources.resx b/win/CS/HandBrakeWPF/Properties/Resources.resx index f5e31ea09..b0fc5a891 100644 --- a/win/CS/HandBrakeWPF/Properties/Resources.resx +++ b/win/CS/HandBrakeWPF/Properties/Resources.resx @@ -1260,7 +1260,7 @@ Would you like to overwrite it?</value> <value>Minimize to system tray (Requires Restart)</value>
</data>
<data name="Options_MinTitleScanLength" xml:space="preserve">
- <value>Minimum length of title to scan (seconds):</value>
+ <value>Minimum DVD and Blu-ray title duration in seconds. Shorter titles will be skipped:</value>
</data>
<data name="Options_MP4FileExtension" xml:space="preserve">
<value>MP4 File Extension:</value>
diff --git a/win/CS/HandBrakeWPF/Views/OptionsView.xaml b/win/CS/HandBrakeWPF/Views/OptionsView.xaml index a4502e5ba..8a04fddeb 100644 --- a/win/CS/HandBrakeWPF/Views/OptionsView.xaml +++ b/win/CS/HandBrakeWPF/Views/OptionsView.xaml @@ -313,8 +313,8 @@ <ComboBox Name="numberOfPreviews" ItemsSource="{Binding PreviewPicturesToScan}" SelectedItem="{Binding SelectedPreviewCount}" Width="120" />
</StackPanel>
<StackPanel Orientation="Horizontal" Margin="0,5,0,0">
- <TextBlock Text="{x:Static Properties:Resources.Options_MinTitleScanLength}" VerticalAlignment="Center" Width="250" />
- <TextBox x:Name="MinTitleLength" Text="{Binding MinLength}" Width="120"/>
+ <TextBlock Text="{x:Static Properties:Resources.Options_MinTitleScanLength}" TextWrapping="Wrap" VerticalAlignment="Center" Width="250" />
+ <TextBox x:Name="MinTitleLength" VerticalAlignment="Center" Text="{Binding MinLength}" Width="120"/>
<!-- Find a control for this-->
</StackPanel>
<StackPanel Orientation="Horizontal" Margin="0,5,0,0">
|