Add "PreviewFontName" to language files

This commit is contained in:
Nikolaj Olsson 2021-01-08 15:59:12 +01:00
parent 6eadb5dc28
commit 34ead1c55c
2 changed files with 4 additions and 0 deletions

View File

@ -2004,6 +2004,7 @@ can edit in same subtitle file (collaboration)</Information>
<ShowStopButton>Show stop button</ShowStopButton>
<ShowMuteButton>Show mute button</ShowMuteButton>
<ShowFullscreenButton>Show fullscreen button</ShowFullscreenButton>
<PreviewFontName>Subtitle preview font name</PreviewFontName>
<PreviewFontSize>Subtitle preview font size</PreviewFontSize>
<MainWindowVideoControls>Main window video controls</MainWindowVideoControls>
<CustomSearchTextAndUrl>Custom search text and URL</CustomSearchTextAndUrl>

View File

@ -5431,6 +5431,9 @@ namespace Nikse.SubtitleEdit.Logic
case "Settings/ShowFullscreenButton":
language.Settings.ShowFullscreenButton = reader.Value;
break;
case "Settings/PreviewFontName":
language.Settings.PreviewFontName = reader.Value;
break;
case "Settings/PreviewFontSize":
language.Settings.PreviewFontSize = reader.Value;
break;