From 396b3c3952295c8ce0cedb1bf2f77525cff0dbce Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Sat, 16 Jul 2022 21:26:23 +0200 Subject: [PATCH] fix: add missing full-stop to message Signed-off-by: Sefa Eyeoglu --- launcher/JavaCommon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }