[education/rkward] rkward/dialogs: fix end of paragraph tag in html for the rksetupwizard

Johnny Jazeix null at kde.org
Tue Dec 7 23:06:51 GMT 2021


Git commit 5f8fb9cd211f0e12ef40a0fc34a42c31f2a24475 by Johnny Jazeix.
Committed on 07/12/2021 at 18:03.
Pushed by aacid into branch 'master'.

fix end of paragraph tag in html for the rksetupwizard

M  +3    -3    rkward/dialogs/rksetupwizard.cpp

https://invent.kde.org/education/rkward/commit/5f8fb9cd211f0e12ef40a0fc34a42c31f2a24475

diff --git a/rkward/dialogs/rksetupwizard.cpp b/rkward/dialogs/rksetupwizard.cpp
index b14e06ec..e4787793 100644
--- a/rkward/dialogs/rksetupwizard.cpp
+++ b/rkward/dialogs/rksetupwizard.cpp
@@ -130,12 +130,12 @@ RKSetupWizard::RKSetupWizard(QWidget* parent, InvokationReason reason, const QLi
 	auto l = new QVBoxLayout(firstpage);
 	QString intro = i18n("<p>This dialog will guide you through a quick check of the basic setup of the required (or recommended) components.</p>");
 	if (reason == NewVersionRKWard) {
-		intro += i18n("<p>The setup assistant has been invoked, automatically, because a new version of RKWard has been detected.</p");
+		intro += i18n("<p>The setup assistant has been invoked, automatically, because a new version of RKWard has been detected.</p>");
 	} else if (reason == NewVersionR) {
 		// TODO: invoke this!
-		intro += i18n("<p>The setup assistant has been invoked, automatically, because a new version of R has been detected.</p");
+		intro += i18n("<p>The setup assistant has been invoked, automatically, because a new version of R has been detected.</p>");
 	} else if (reason == ProblemsDetected) {
-		intro += i18n("<p>The setup assistant has been invoked, automatically, because a problem has been detected in your setup.</p");
+		intro += i18n("<p>The setup assistant has been invoked, automatically, because a problem has been detected in your setup.</p>");
 	}
 	l->addWidget(RKCommonFunctions::wordWrappedLabel(intro));
 	auto waiting_to_start_label = RKCommonFunctions::wordWrappedLabel(i18n("<b>Waiting for R backend...</b>") + "<p> </p><p> </p>");


More information about the rkward-tracker mailing list