diff options
author | Jamie Mansfield <jmansfield@cadixdev.org> | 2021-04-08 18:46:22 +0100 |
---|---|---|
committer | Jamie Mansfield <jmansfield@cadixdev.org> | 2021-04-08 18:55:20 +0100 |
commit | 524fc5b6ecf9e5f193db1173164ae23c6e6702b1 (patch) | |
tree | 71de507b05d1a184031b4679fca25a288f87548a /api/logic/modplatform/modpacksch | |
parent | 64617201b029c0df72974e91d3314b5ee0e80971 (diff) | |
download | PrismLauncher-524fc5b6ecf9e5f193db1173164ae23c6e6702b1.tar.gz PrismLauncher-524fc5b6ecf9e5f193db1173164ae23c6e6702b1.tar.bz2 PrismLauncher-524fc5b6ecf9e5f193db1173164ae23c6e6702b1.zip |
NOISSUE Fix string formatting issues
This allows translations to have more control over the output :)
Diffstat (limited to 'api/logic/modplatform/modpacksch')
-rw-r--r-- | api/logic/modplatform/modpacksch/FTBPackInstallTask.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/logic/modplatform/modpacksch/FTBPackInstallTask.cpp b/api/logic/modplatform/modpacksch/FTBPackInstallTask.cpp index 59546b00..068e3592 100644 --- a/api/logic/modplatform/modpacksch/FTBPackInstallTask.cpp +++ b/api/logic/modplatform/modpacksch/FTBPackInstallTask.cpp @@ -35,7 +35,7 @@ void PackInstallTask::executeTask() } if(!found) { - emitFailed("failed to find pack version " + m_version_name); + emitFailed(tr("Failed to find pack version %1").arg(m_version_name)); return; } |