NOISSUE Don't translate logged entries
This commit is contained in:
parent
c0f72488d0
commit
e148cfbbfd
5 changed files with 24 additions and 26 deletions
|
@ -94,9 +94,9 @@ void ExtractNatives::executeTask()
|
|||
{
|
||||
if(!unzipNatives(source, outputPath, jniHackEnabled, nativeOpenAL, nativeGLFW))
|
||||
{
|
||||
auto reason = tr("Couldn't extract native jar '%1' to destination '%2'").arg(source, outputPath);
|
||||
emit logLine(reason, MessageLevel::Fatal);
|
||||
emitFailed(reason);
|
||||
const char *reason = QT_TR_NOOP("Couldn't extract native jar '%1' to destination '%2'");
|
||||
emit logLine(QString(reason).arg(source, outputPath), MessageLevel::Fatal);
|
||||
emitFailed(tr(reason).arg(source, outputPath));
|
||||
}
|
||||
}
|
||||
emitSucceeded();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue