diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-04-02 00:54:48 +0200 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-04-02 00:54:48 +0200 |
commit | 9180c751d8d6b51e1fc34ce84b2a705954b98d31 (patch) | |
tree | 756fff231079900e38855c8be915aa3b8016e4b8 /launcher | |
parent | e02369ba6bfd061dd92b63a19957a412a5ffcb81 (diff) | |
download | PrismLauncher-9180c751d8d6b51e1fc34ce84b2a705954b98d31.tar.gz PrismLauncher-9180c751d8d6b51e1fc34ce84b2a705954b98d31.tar.bz2 PrismLauncher-9180c751d8d6b51e1fc34ce84b2a705954b98d31.zip |
fix(launch/VerifyJava): reword log output
Diffstat (limited to 'launcher')
-rw-r--r-- | launcher/minecraft/launch/VerifyJavaInstall.cpp | 8 |
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")); } |