Minor language fix

This commit is contained in:
Nikolaj Olsson 2018-03-04 18:54:04 +01:00
parent 8762953522
commit 0551351d3a
2 changed files with 3 additions and 2 deletions

View File

@ -1820,7 +1820,7 @@ can edit in same subtitle file (collaboration)</Information>
<SpectrogramOneColorGradient>One color gradient</SpectrogramOneColorGradient>
<SpectrogramClassic>Classic</SpectrogramClassic>
<WaveformUseFFmpeg>Use FFmpeg for wave extraction</WaveformUseFFmpeg>
<DownloadFFmpeg>Download FFmpeg...</DownloadFFmpeg>
<DownloadFFmpeg>Download FFmpeg</DownloadFFmpeg>
<WaveformFFmpegPath>Path to FFmpeg</WaveformFFmpegPath>
<WaveformBrowseToFFmpeg>Browse to FFmpeg</WaveformBrowseToFFmpeg>
<WaveformBrowseToVLC>Browse to VLC portable</WaveformBrowseToVLC>

View File

@ -395,7 +395,7 @@ namespace Nikse.SubtitleEdit.Forms
checkBoxVideoPlayerPreviewFontBold.Left = comboBoxlVideoPlayerPreviewFontSize.Left;
checkBoxVideoAutoOpen.Text = language.VideoAutoOpen;
checkBoxAllowVolumeBoost.Text = language.VideoAutoOpen;
checkBoxAllowVolumeBoost.Text = language.AllowVolumeBoost;
groupBoxMainWindowVideoControls.Text = language.MainWindowVideoControls;
labelCustomSearch.Text = language.CustomSearchTextAndUrl;
@ -1203,6 +1203,7 @@ namespace Nikse.SubtitleEdit.Forms
gs.VideoPlayerPreviewFontSize = int.Parse(comboBoxlVideoPlayerPreviewFontSize.Items[0].ToString()) + comboBoxlVideoPlayerPreviewFontSize.SelectedIndex;
gs.VideoPlayerPreviewFontBold = checkBoxVideoPlayerPreviewFontBold.Checked;
gs.DisableVideoAutoLoading = !checkBoxVideoAutoOpen.Checked;
gs.AllowVolumeBoost = checkBoxAllowVolumeBoost.Checked;
Configuration.Settings.VideoControls.CustomSearchText1 = comboBoxCustomSearch1.Text;
Configuration.Settings.VideoControls.CustomSearchText2 = comboBoxCustomSearch2.Text;