From 0c4c96da502ae9c6af288850e2544481eeb9ad1c Mon Sep 17 00:00:00 2001 From: lordmulder Date: Fri, 9 May 2014 18:15:54 +0200 Subject: [PATCH] Fixed a typo (reported by sidspyker). --- src/win_addJob.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/win_addJob.cpp b/src/win_addJob.cpp index 1d043a2..76e94d8 100644 --- a/src/win_addJob.cpp +++ b/src/win_addJob.cpp @@ -531,7 +531,7 @@ void AddJobDialog::accept(void) { if(!m_sysinfo->hasAVSSupport()) { - if(QMessageBox::warning(this, tr("Avisynth unsupported!"), tr("An Avisynth script was selected as input, although Avisynth is not available!"), tr("Abort"), tr("Ingnore (at your own risk!)")) != 1) + if(QMessageBox::warning(this, tr("Avisynth unsupported!"), tr("An Avisynth script was selected as input, although Avisynth is not available!"), tr("Abort"), tr("Ignore (at your own risk!)")) != 1) { return; } @@ -541,7 +541,7 @@ void AddJobDialog::accept(void) { if(!m_sysinfo->hasVPSSupport()) { - if(QMessageBox::warning(this, tr("VapurSynth unsupported!"), tr("A VapourSynth script was selected as input, although VapourSynth is not/ available!"), tr("Abort"), tr("Ingnore (at your own risk!)")) != 1) + if(QMessageBox::warning(this, tr("VapurSynth unsupported!"), tr("A VapourSynth script was selected as input, although VapourSynth is not/ available!"), tr("Abort"), tr("Ignore (at your own risk!)")) != 1) { return; } @@ -549,7 +549,7 @@ void AddJobDialog::accept(void) } else if(!encoderInfo.isInputTypeSupported(sourceType)) { - if(QMessageBox::warning(this, tr("Unsupported input format"), tr("The selected encoder does not support the selected input format!"), tr("Abort"), tr("Ingnore (at your own risk!)")) != 1) + if(QMessageBox::warning(this, tr("Unsupported input format"), tr("The selected encoder does not support the selected input format!"), tr("Abort"), tr("Ignore (at your own risk!)")) != 1) { return; }