Update language file

This commit is contained in:
niksedk 2022-09-03 19:41:32 +02:00
parent 118a628938
commit c297aebfb3
2 changed files with 10 additions and 0 deletions

View File

@ -234,6 +234,9 @@ Note: Do check free disk space.</WaveFileMalformed>
<ChangeResolutionDrawing>Change resolution for drawing</ChangeResolutionDrawing> <ChangeResolutionDrawing>Change resolution for drawing</ChangeResolutionDrawing>
<SourceAndTargetEqual>Source and target resolution is the same - nothing to do.</SourceAndTargetEqual> <SourceAndTargetEqual>Source and target resolution is the same - nothing to do.</SourceAndTargetEqual>
</AssaResulationChanger> </AssaResulationChanger>
<ImageColorPicker>
<Title>Image color picker</Title>
</ImageColorPicker>
<AssaSetBackgroundBox> <AssaSetBackgroundBox>
<Title>Generate background box</Title> <Title>Generate background box</Title>
<Padding>Padding</Padding> <Padding>Padding</Padding>
@ -1395,6 +1398,7 @@ To use an API key go to "Options -&gt; Settings -&gt; Tools" to enter your Googl
<GenerateProgressBar>Generate progress bar...</GenerateProgressBar> <GenerateProgressBar>Generate progress bar...</GenerateProgressBar>
<AssaResolutionChanger>Change ASSA script resolution...</AssaResolutionChanger> <AssaResolutionChanger>Change ASSA script resolution...</AssaResolutionChanger>
<AssaGenerateBackgroundBox>Generate background box...</AssaGenerateBackgroundBox> <AssaGenerateBackgroundBox>Generate background box...</AssaGenerateBackgroundBox>
<ImageColorPicker>Image color picker...</ImageColorPicker>
<FixCommonErrorsInSelectedLines>Fix common errors in selected lines...</FixCommonErrorsInSelectedLines> <FixCommonErrorsInSelectedLines>Fix common errors in selected lines...</FixCommonErrorsInSelectedLines>
<ChangeCasingForSelectedLines>Change casing for selected lines...</ChangeCasingForSelectedLines> <ChangeCasingForSelectedLines>Change casing for selected lines...</ChangeCasingForSelectedLines>
<SaveSelectedLines>Save selected lines as...</SaveSelectedLines> <SaveSelectedLines>Save selected lines as...</SaveSelectedLines>

View File

@ -622,6 +622,9 @@ namespace Nikse.SubtitleEdit.Logic
case "AssaResulationChanger/SourceAndTargetEqual": case "AssaResulationChanger/SourceAndTargetEqual":
language.AssaResulationChanger.SourceAndTargetEqual = reader.Value; language.AssaResulationChanger.SourceAndTargetEqual = reader.Value;
break; break;
case "ImageColorPicker/Title":
language.ImageColorPicker.Title = reader.Value;
break;
case "AssaSetBackgroundBox/Title": case "AssaSetBackgroundBox/Title":
language.AssaSetBackgroundBox.Title = reader.Value; language.AssaSetBackgroundBox.Title = reader.Value;
break; break;
@ -4555,6 +4558,9 @@ namespace Nikse.SubtitleEdit.Logic
case "Main/Menu/ContextMenu/AssaGenerateBackgroundBox": case "Main/Menu/ContextMenu/AssaGenerateBackgroundBox":
language.Main.Menu.ContextMenu.AssaGenerateBackgroundBox = reader.Value; language.Main.Menu.ContextMenu.AssaGenerateBackgroundBox = reader.Value;
break; break;
case "Main/Menu/ContextMenu/ImageColorPicker":
language.Main.Menu.ContextMenu.ImageColorPicker = reader.Value;
break;
case "Main/Menu/ContextMenu/FixCommonErrorsInSelectedLines": case "Main/Menu/ContextMenu/FixCommonErrorsInSelectedLines":
language.Main.Menu.ContextMenu.FixCommonErrorsInSelectedLines = reader.Value; language.Main.Menu.ContextMenu.FixCommonErrorsInSelectedLines = reader.Value;
break; break;