aboutsummaryrefslogtreecommitdiff
path: root/launcher
diff options
context:
space:
mode:
Diffstat (limited to 'launcher')
-rw-r--r--launcher/minecraft/launch/VerifyJavaInstall.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/launcher/minecraft/launch/VerifyJavaInstall.cpp b/launcher/minecraft/launch/VerifyJavaInstall.cpp
index 42754d44..99809f82 100644
--- a/launcher/minecraft/launch/VerifyJavaInstall.cpp
+++ b/launcher/minecraft/launch/VerifyJavaInstall.cpp
@@ -64,12 +64,12 @@ void VerifyJavaInstall::executeTask() {
return;
}
- emit logLine(tr("Instance not compatible with Java major version %1.\n"
- "Switch the Java version of this instance to one of the following:").arg(javaVersion.major()),
+ emit logLine(tr("This instance is not compatible with Java version %1.\n"
+ "Please switch to one of the following Java versions for this instance:").arg(javaVersion.major()),
MessageLevel::Error);
- for (auto major: compatibleMajors)
+ for (auto major : compatibleMajors)
{
- emit logLine(tr("Java %1").arg(major), MessageLevel::Error);
+ emit logLine(tr("Java version %1").arg(major), MessageLevel::Error);
}
emitFailed(QString("Incompatible Java major version"));
}