diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-07-16 21:26:23 +0200 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-07-16 21:26:23 +0200 |
commit | 396b3c3952295c8ce0cedb1bf2f77525cff0dbce (patch) | |
tree | 17508a9a7a851969beca5963192e68952490e3ed | |
parent | 8cf42f4e152333eb216d24c33a095d05dc0499d4 (diff) | |
download | PrismLauncher-396b3c3952295c8ce0cedb1bf2f77525cff0dbce.tar.gz PrismLauncher-396b3c3952295c8ce0cedb1bf2f77525cff0dbce.tar.bz2 PrismLauncher-396b3c3952295c8ce0cedb1bf2f77525cff0dbce.zip |
fix: add missing full-stop to message
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
-rw-r--r-- | launcher/JavaCommon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/JavaCommon.cpp b/launcher/JavaCommon.cpp index 4ba319b8..aa4d1123 100644 --- a/launcher/JavaCommon.cpp +++ b/launcher/JavaCommon.cpp @@ -105,7 +105,7 @@ void JavaCommon::javaBinaryWasBad(QWidget *parent, JavaCheckResult result) void JavaCommon::javaCheckNotFound(QWidget *parent) { QString text; - text += QObject::tr("Java checker library could not be found. Please check your installation"); + text += QObject::tr("Java checker library could not be found. Please check your installation."); CustomMessageBox::selectable(parent, QObject::tr("Java test failure"), text, QMessageBox::Warning)->show(); } |