diff options
author | Petr Mrázek <peterix@gmail.com> | 2018-12-06 00:36:31 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2018-12-06 00:36:31 +0100 |
commit | 3018310be3fa034ea4a980c82d7dd8119672d2de (patch) | |
tree | ba3b855bbb6ac7a83d13c3be67d0f71ec1a865da /api | |
parent | f111d1bc0c9cd41dc58928ec5d5d6153bc18fe36 (diff) | |
download | MultiMC-3018310be3fa034ea4a980c82d7dd8119672d2de.tar MultiMC-3018310be3fa034ea4a980c82d7dd8119672d2de.tar.gz MultiMC-3018310be3fa034ea4a980c82d7dd8119672d2de.tar.lz MultiMC-3018310be3fa034ea4a980c82d7dd8119672d2de.tar.xz MultiMC-3018310be3fa034ea4a980c82d7dd8119672d2de.zip |
NOISSUE fix typo
Diffstat (limited to 'api')
-rw-r--r-- | api/logic/minecraft/update/LibrariesTask.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/logic/minecraft/update/LibrariesTask.cpp b/api/logic/minecraft/update/LibrariesTask.cpp index d77036ff..912f492b 100644 --- a/api/logic/minecraft/update/LibrariesTask.cpp +++ b/api/logic/minecraft/update/LibrariesTask.cpp @@ -55,7 +55,7 @@ void LibrariesTask::executeTask() { downloadJob.reset(); QString failed_all = (failedLocalLibraries + failedLocalJarMods).join("\n"); - emitFailed(tr("Some artifacts marked as 'local' are missing their files:\n%1\n\nYou need to either add the files, or removed the packages that requires them.\nYou'll have to correct this problem manually.").arg(failed_all)); + emitFailed(tr("Some artifacts marked as 'local' are missing their files:\n%1\n\nYou need to either add the files, or removed the packages that require them.\nYou'll have to correct this problem manually.").arg(failed_all)); return; } |