diff options
author | Petr Mrázek <peterix@gmail.com> | 2019-09-25 22:31:09 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2019-09-25 22:31:09 +0200 |
commit | 5c0c26cd257bea8934a1dfd6aaf527904a351573 (patch) | |
tree | 935f0640cd8a59f62bc807c115ec4059efe69a9f | |
parent | 4cc7427eb4134a138c4244b18c0fb266502e0e6e (diff) | |
download | MultiMC-5c0c26cd257bea8934a1dfd6aaf527904a351573.tar MultiMC-5c0c26cd257bea8934a1dfd6aaf527904a351573.tar.gz MultiMC-5c0c26cd257bea8934a1dfd6aaf527904a351573.tar.lz MultiMC-5c0c26cd257bea8934a1dfd6aaf527904a351573.tar.xz MultiMC-5c0c26cd257bea8934a1dfd6aaf527904a351573.zip |
TRANSLATIONS-82 fix typos: resove -> resolve
-rw-r--r-- | api/logic/modplatform/flame/UrlResolvingTask.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/api/logic/modplatform/flame/UrlResolvingTask.cpp b/api/logic/modplatform/flame/UrlResolvingTask.cpp index efea350c..2a96f703 100644 --- a/api/logic/modplatform/flame/UrlResolvingTask.cpp +++ b/api/logic/modplatform/flame/UrlResolvingTask.cpp @@ -131,12 +131,12 @@ void Flame::UrlResolvingTask::processCCIP() bool success = true; m_result.projectId = projectId.toInt(&success); if(!success) { - emitFailed(tr("Failed to resove projectId as a number.")); + emitFailed(tr("Failed to resolve projectId as a number.")); return; } m_result.fileId = fileId.toInt(&success); if(!success) { - emitFailed(tr("Failed to resove fileId as a number.")); + emitFailed(tr("Failed to resolve fileId as a number.")); return; } qDebug() << "Resolved" << m_url << "as" << m_result.projectId << "/" << m_result.fileId; |