diff options
author | Petr Mrázek <peterix@users.noreply.github.com> | 2020-07-18 12:31:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-18 12:31:45 +0200 |
commit | 3158082b16009907e1abed0308498d10788f0f42 (patch) | |
tree | b679967a987df6db3b7ea99e5069d8979b8b16a2 /application/pages/instance | |
parent | 814407ccecfaec5032c52c8199acd7ff79fc728f (diff) | |
parent | 90d45d2abf65906066efb8d57eddffd5c931c2fd (diff) | |
download | PrismLauncher-3158082b16009907e1abed0308498d10788f0f42.tar.gz PrismLauncher-3158082b16009907e1abed0308498d10788f0f42.tar.bz2 PrismLauncher-3158082b16009907e1abed0308498d10788f0f42.zip |
Merge pull request #3239 from haykam821/intermediary-errors
Fix Fabric loader error messages being reused for intermediary mappings
Diffstat (limited to 'application/pages/instance')
-rw-r--r-- | application/pages/instance/VersionPage.cpp | 4 |
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(); |