Updating auto-generated language files

This commit is contained in:
Waldi Ravens 2015-08-22 20:25:45 +02:00
parent 1c9a1b33e1
commit 48f4cf7b90
2 changed files with 4 additions and 0 deletions

View File

@ -1274,6 +1274,7 @@ Continue?</SubtitleAppendPrompt>
<BeforeMergeLinesWithSameText>Before merging lines with same text</BeforeMergeLinesWithSameText>
<ImportTimeCodesDifferentNumberOfLinesWarning>Subtitle with time codes has a different number of lines ({0}) than current subtitle ({1}) - continue anyway?</ImportTimeCodesDifferentNumberOfLinesWarning>
<ParsingTransportStream>Parsing transport stream - please wait...</ParsingTransportStream>
<XPercentCompleted>{0}% completed</XPercentCompleted>
<ErrorLoadIdx>Cannot read/edit .idx files. Idx files are a part of an idx/sub file pair (also called VobSub), and Subtitle Edit can open the .sub file.</ErrorLoadIdx>
<ErrorLoadRar>This file seems to be a compressed .rar file. Subtitle Edit cannot open compressed files.</ErrorLoadRar>
<ErrorLoadZip>This file seems to be a compressed .zip file. Subtitle Edit cannot open compressed files.</ErrorLoadZip>

View File

@ -2610,6 +2610,9 @@ namespace Nikse.SubtitleEdit.Logic
case "Main/ParsingTransportStream":
language.Main.ParsingTransportStream = reader.Value;
break;
case "Main/XPercentCompleted":
language.Main.XPercentCompleted = reader.Value;
break;
case "Main/ErrorLoadIdx":
language.Main.ErrorLoadIdx = reader.Value;
break;