[education/rkward] rkward: Fix minor typo

Yuri Chornoivan null at kde.org
Sun Jun 5 06:57:02 BST 2022


Git commit dbce3a1bb58dfd4e2b5ff5dbe7c00cbb81d7eebb by Yuri Chornoivan.
Committed on 05/06/2022 at 05:56.
Pushed by yurchor into branch 'master'.

Fix minor typo

M  +1    -1    rkward/rkward.cpp

https://invent.kde.org/education/rkward/commit/dbce3a1bb58dfd4e2b5ff5dbe7c00cbb81d7eebb

diff --git a/rkward/rkward.cpp b/rkward/rkward.cpp
index 75683dfa..c9f70587 100644
--- a/rkward/rkward.cpp
+++ b/rkward/rkward.cpp
@@ -616,7 +616,7 @@ void RKWardMainWindow::initActions() {
 	restart_r->setText(i18n("Restart R Backend"));
 	connect(restart_r, &QAction::triggered, this, [this]() {
 		bool pending = !RInterface::instance()->backendIsDead() && !RInterface::instance()->backendIsIdle();
-		QString add = pending ? i18n("<p>One or more operations are pending, and will be canceled. If you have recently chosen to save your workspace, and you see this messsage, <b>your data may not be saved, yet!</b></p>") : QString();
+		QString add = pending ? i18n("<p>One or more operations are pending, and will be canceled. If you have recently chosen to save your workspace, and you see this message, <b>your data may not be saved, yet!</b></p>") : QString();
 		QString message = i18n("<p>This feature is primarily targetted at package developers, who know what they are doing. Please proceed with caution.</p><p><b>All unsaved data in this workspace will be lost!</b> All data editors, and graphics windows will be closed.</p>%1<p>Are you sure you want to proceed?</p>", add);
 		if (KMessageBox::warningContinueCancel(this, message, i18n("Restart R backend"), KGuiItem("Restart R backend now"), KGuiItem("Cancel")) == KMessageBox::Continue) {
 			RKWorkplace::mainWorkplace()->closeAll(RKMDIWindow::X11Window);


More information about the rkward-tracker mailing list