summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@users.noreply.github.com>2020-07-18 12:31:45 +0200
committerGitHub <noreply@github.com>2020-07-18 12:31:45 +0200
commit3158082b16009907e1abed0308498d10788f0f42 (patch)
treeb679967a987df6db3b7ea99e5069d8979b8b16a2
parent814407ccecfaec5032c52c8199acd7ff79fc728f (diff)
parent90d45d2abf65906066efb8d57eddffd5c931c2fd (diff)
downloadMultiMC-3158082b16009907e1abed0308498d10788f0f42.tar
MultiMC-3158082b16009907e1abed0308498d10788f0f42.tar.gz
MultiMC-3158082b16009907e1abed0308498d10788f0f42.tar.lz
MultiMC-3158082b16009907e1abed0308498d10788f0f42.tar.xz
MultiMC-3158082b16009907e1abed0308498d10788f0f42.zip
Merge pull request #3239 from haykam821/intermediary-errors
Fix Fabric loader error messages being reused for intermediary mappings
-rw-r--r--application/pages/instance/VersionPage.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/application/pages/instance/VersionPage.cpp b/application/pages/instance/VersionPage.cpp
index c4a7cb44..f2d19f25 100644
--- a/application/pages/instance/VersionPage.cpp
+++ b/application/pages/instance/VersionPage.cpp
@@ -357,8 +357,8 @@ void VersionPage::on_actionChange_version_triggered()
VersionSelectDialog vselect(list.get(), tr("Change %1 version").arg(name), this);
if (uid == "net.fabricmc.intermediary")
{
- vselect.setEmptyString(tr("No Fabric Loader versions are currently available."));
- vselect.setEmptyErrorString(tr("Couldn't load or download the Fabric Loader version lists!"));
+ vselect.setEmptyString(tr("No intermediary mappings versions are currently available."));
+ vselect.setEmptyErrorString(tr("Couldn't load or download the intermediary mappings version lists!"));
vselect.setExactFilter(BaseVersionList::ParentVersionRole, m_profile->getComponentVersion("net.minecraft"));
}
auto currentVersion = patch->getVersion();