From bdb0e71805f0a0d0db203dd7058a9be2e221e2f9 Mon Sep 17 00:00:00 2001 From: Jonathan Feenstra <26406078+JonathanFeenstra@users.noreply.github.com> Date: Wed, 3 Jun 2026 19:31:28 +0200 Subject: [PATCH] Fix typo in "Python Initialization failed" message --- src/proxy/proxypython.cpp | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/proxy/proxypython.cpp b/src/proxy/proxypython.cpp index 0ecbfc0..72890e1 100644 --- a/src/proxy/proxypython.cpp +++ b/src/proxy/proxypython.cpp @@ -86,17 +86,16 @@ bool ProxyPython::init(IOrganizer* moInfo) m_LoadFailure = FailureType::INITIALIZATION; if (QMessageBox::question( parentWidget(), tr("Python Initialization failed"), - tr("On a previous start the Python Plugin failed to initialize.\n" - "Do you want to try initializing python again (at the risk of " + tr("On a previous start, the Python Plugin failed to initialize.\n" + "Do you want to try initializing Python again (at the risk of " "another crash)?\n " "Suggestion: Select \"no\", and click the warning sign for further " - "help.Afterwards you have to re-enable the python plugin."), + "help. Afterwards you have to re-enable the Python plugin."), QMessageBox::Yes | QMessageBox::No, QMessageBox::No) == QMessageBox::No) { // we force enabled here (note: this is a persistent settings since MO2 2.4 - // or something), plugin - // usually should not handle enabled/disabled themselves but this is a base - // plugin so... + // or something), plugin usually should not handle enabled/disabled + // themselves but this is a base plugin so... m_MOInfo->setPersistent(name(), "enabled", false, true); return true; }