diff options
author | haykam821 <24855774+haykam821@users.noreply.github.com> | 2020-07-09 12:17:59 -0400 |
---|---|---|
committer | haykam821 <24855774+haykam821@users.noreply.github.com> | 2020-07-09 12:17:59 -0400 |
commit | 90d45d2abf65906066efb8d57eddffd5c931c2fd (patch) | |
tree | 945dcf4d4f598435aa1343951808f009334e1ae0 /application | |
parent | cd57e354feb0f01369bc35f6c48f9b893786880d (diff) | |
download | PrismLauncher-90d45d2abf65906066efb8d57eddffd5c931c2fd.tar.gz PrismLauncher-90d45d2abf65906066efb8d57eddffd5c931c2fd.tar.bz2 PrismLauncher-90d45d2abf65906066efb8d57eddffd5c931c2fd.zip |
Fix Fabric loader error messages being reused for intermediary mappings
Diffstat (limited to 'application')
-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(); |