[education/rkward] rkward/dataeditor: Fix misleading message
Thomas Friedrichsmeier
null at kde.org
Sun Jul 14 11:29:10 BST 2024
Git commit b88ee869ca3c7a761b424277c233f4b6a28bb429 by Thomas Friedrichsmeier.
Committed on 14/07/2024 at 10:29.
Pushed by tfry into branch 'master'.
Fix misleading message
M +1 -1 rkward/dataeditor/twintable.cpp
https://invent.kde.org/education/rkward/-/commit/b88ee869ca3c7a761b424277c233f4b6a28bb429
diff --git a/rkward/dataeditor/twintable.cpp b/rkward/dataeditor/twintable.cpp
index 7ee66cfc5..784138830 100644
--- a/rkward/dataeditor/twintable.cpp
+++ b/rkward/dataeditor/twintable.cpp
@@ -224,7 +224,7 @@ void TwinTable::hasProblems() {
problems_note->addAction(a);
connect(a, &QAction::triggered, datamodel, [this, msg]() {
// NOTE: Not caching the problems in the lambda, as additional problem may yet be detected
- KMessageBox::detailedError(this, msg + "<br/>" + i18n("It may be possible to convert this object to a regular <tt>data.frame</tt> using <tt>as.data.frame()</tt>."), datamodel->problems().join("\n"), i18n("Problem detected"));
+ KMessageBox::detailedError(this, msg + "<br/>" + i18n("You may want to create an editable subset using Data->Subset data.frame."), datamodel->problems().join("\n"), i18n("Problem detected"));
});
}
problems_note->animatedShow();
More information about the rkward-tracker
mailing list