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>
<SourceAndTargetEqual>Source and target resolution is the same - nothing to do.</SourceAndTargetEqual>
</AssaResulationChanger>
<ImageColorPicker>
<Title>Image color picker</Title>
</ImageColorPicker>
<AssaSetBackgroundBox>
<Title>Generate background box</Title>
<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>
<AssaResolutionChanger>Change ASSA script resolution...</AssaResolutionChanger>
<AssaGenerateBackgroundBox>Generate background box...</AssaGenerateBackgroundBox>
<ImageColorPicker>Image color picker...</ImageColorPicker>
<FixCommonErrorsInSelectedLines>Fix common errors in selected lines...</FixCommonErrorsInSelectedLines>
<ChangeCasingForSelectedLines>Change casing for selected lines...</ChangeCasingForSelectedLines>
<SaveSelectedLines>Save selected lines as...</SaveSelectedLines>

View File

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