Update lang

This commit is contained in:
niksedk 2023-03-10 22:55:42 +01:00
parent 5b7ac012ad
commit f6a120128c
3 changed files with 6 additions and 2 deletions

View File

@ -1282,7 +1282,8 @@ To use an API key, go to "Options -> Settings -> Tools" to enter your Goog
<SmptTimeMode>SMPTE timing (non integer frame rate)</SmptTimeMode>
<GenerateTextFromVideo>Generate text from video...</GenerateTextFromVideo>
<GenerateBlankVideo>Generate blank video...</GenerateBlankVideo>
<GenerateVideoWithBurnedInSub>Generate video with burned-in sub...</GenerateVideoWithBurnedInSub>
<GenerateVideoWithBurnedInSub>Generate video with burned-in subtitle...</GenerateVideoWithBurnedInSub>
<GenerateVideoWithEmbeddedSub>Generate video with embedded subtitles...</GenerateVideoWithEmbeddedSub>
<VideoAudioToTextX>Audio to text ({0})...</VideoAudioToTextX>
<ImportChaptersFromVideo>Import chapters from video</ImportChaptersFromVideo>
<GenerateImportShotChanges>Generate/import shot changes...</GenerateImportShotChanges>

View File

@ -1827,7 +1827,7 @@ namespace Nikse.SubtitleEdit.Logic
SmptTimeMode = "SMPTE timing (non integer frame rate)",
GenerateTextFromVideo = "Generate text from video...",
GenerateBlankVideo = "Generate blank video...",
GenerateVideoWithEmbeddedSub = "Generate video with burned-in subtitle...",
GenerateVideoWithEmbeddedSub = "Generate video with embedded subtitles...",
GenerateVideoWithBurnedInSub = "Generate video with burned-in subtitle...",
VideoAudioToTextX = "Audio to text ({0})...",
ImportChaptersFromVideo = "Import chapters from video",

View File

@ -4270,6 +4270,9 @@ namespace Nikse.SubtitleEdit.Logic
case "Main/Menu/Video/GenerateVideoWithBurnedInSub":
language.Main.Menu.Video.GenerateVideoWithBurnedInSub = reader.Value;
break;
case "Main/Menu/Video/GenerateVideoWithEmbeddedSub":
language.Main.Menu.Video.GenerateVideoWithEmbeddedSub = reader.Value;
break;
case "Main/Menu/Video/VideoAudioToTextX":
language.Main.Menu.Video.VideoAudioToTextX = reader.Value;
break;