aboutsummaryrefslogtreecommitdiff
path: root/launcher/modplatform
diff options
context:
space:
mode:
authortxtsd <thexerothermicsclerodermoid@gmail.com>2022-07-22 22:45:53 +0530
committerGitHub <noreply@github.com>2022-07-22 22:45:53 +0530
commit75cfaf0672d27b953dd79505baf7ab3097a66309 (patch)
tree0247830e407a8525bc86448253fc4e0940713a13 /launcher/modplatform
parentceaa732e5f3b43d8a43d6387509a209cbdefe9b3 (diff)
parent9cc1773fa7b91a0c7ff24ec28e6fff94600f7ed5 (diff)
downloadPrismLauncher-75cfaf0672d27b953dd79505baf7ab3097a66309.tar.gz
PrismLauncher-75cfaf0672d27b953dd79505baf7ab3097a66309.tar.bz2
PrismLauncher-75cfaf0672d27b953dd79505baf7ab3097a66309.zip
Merge pull request #938 from Scrumplex/fix-i18n3
Diffstat (limited to 'launcher/modplatform')
-rw-r--r--launcher/modplatform/flame/FlameCheckUpdate.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/modplatform/flame/FlameCheckUpdate.cpp b/launcher/modplatform/flame/FlameCheckUpdate.cpp
index 68a4589b..8dd3a846 100644
--- a/launcher/modplatform/flame/FlameCheckUpdate.cpp
+++ b/launcher/modplatform/flame/FlameCheckUpdate.cpp
@@ -123,7 +123,7 @@ void FlameCheckUpdate::executeTask()
continue;
}
- setStatus(tr("Getting API response from CurseForge for '%1'").arg(mod->name()));
+ setStatus(tr("Getting API response from CurseForge for '%1'...").arg(mod->name()));
setProgress(i++, m_mods.size());
auto latest_ver = api.getLatestVersion({ mod->metadata()->project_id.toString(), m_game_versions, m_loaders });
@@ -145,7 +145,7 @@ void FlameCheckUpdate::executeTask()
if (latest_ver.downloadUrl.isEmpty() && latest_ver.fileId != mod->metadata()->file_id) {
auto pack = getProjectInfo(latest_ver);
auto recover_url = QString("%1/download/%2").arg(pack.websiteUrl, latest_ver.fileId.toString());
- emit checkFailed(mod, tr("Mod has a new update available, but is opted-out on CurseForge"), recover_url);
+ emit checkFailed(mod, tr("Mod has a new update available, but is not downloadable using CurseForge."), recover_url);
continue;
}