mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 19:22:53 +01:00
Minor language fix
This commit is contained in:
parent
8762953522
commit
0551351d3a
@ -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>
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user