Fixed a typo (reported by sidspyker).

This commit is contained in:
LoRd_MuldeR 2014-05-09 18:15:54 +02:00
parent 834905abf9
commit 0c4c96da50

View File

@ -531,7 +531,7 @@ void AddJobDialog::accept(void)
{ {
if(!m_sysinfo->hasAVSSupport()) if(!m_sysinfo->hasAVSSupport())
{ {
if(QMessageBox::warning(this, tr("Avisynth unsupported!"), tr("<nobr>An Avisynth script was selected as input, although Avisynth is <b>not</b> available!</nobr>"), tr("Abort"), tr("Ingnore (at your own risk!)")) != 1) if(QMessageBox::warning(this, tr("Avisynth unsupported!"), tr("<nobr>An Avisynth script was selected as input, although Avisynth is <b>not</b> available!</nobr>"), tr("Abort"), tr("Ignore (at your own risk!)")) != 1)
{ {
return; return;
} }
@ -541,7 +541,7 @@ void AddJobDialog::accept(void)
{ {
if(!m_sysinfo->hasVPSSupport()) if(!m_sysinfo->hasVPSSupport())
{ {
if(QMessageBox::warning(this, tr("VapurSynth unsupported!"), tr("<nobr>A VapourSynth script was selected as input, although VapourSynth is <b>not/<b> available!</nobr>"), tr("Abort"), tr("Ingnore (at your own risk!)")) != 1) if(QMessageBox::warning(this, tr("VapurSynth unsupported!"), tr("<nobr>A VapourSynth script was selected as input, although VapourSynth is <b>not/<b> available!</nobr>"), tr("Abort"), tr("Ignore (at your own risk!)")) != 1)
{ {
return; return;
} }
@ -549,7 +549,7 @@ void AddJobDialog::accept(void)
} }
else if(!encoderInfo.isInputTypeSupported(sourceType)) else if(!encoderInfo.isInputTypeSupported(sourceType))
{ {
if(QMessageBox::warning(this, tr("Unsupported input format"), tr("<nobr>The selected encoder does <b>not</b> support the selected input format!</nobr>"), tr("Abort"), tr("Ingnore (at your own risk!)")) != 1) if(QMessageBox::warning(this, tr("Unsupported input format"), tr("<nobr>The selected encoder does <b>not</b> support the selected input format!</nobr>"), tr("Abort"), tr("Ignore (at your own risk!)")) != 1)
{ {
return; return;
} }