From eeb294f5e01cdf5023c00ea2af92eee990498c3f Mon Sep 17 00:00:00 2001 From: Nate Graham Date: Thu, 1 Apr 2021 13:28:13 -0600 Subject: [PATCH] [klipper] Fix obsolete reference to non-existent UI element BUG: 417311 FIXED-IN: 5.22 --- klipper/klipper.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/klipper/klipper.cpp b/klipper/klipper.cpp index c11909feb..f92fe6dcd 100644 --- a/klipper/klipper.cpp +++ b/klipper/klipper.cpp @@ -480,8 +480,10 @@ void Klipper::disableURLGrabber() { QMessageBox *message = new QMessageBox(QMessageBox::Information, QString(), - i18n("You can enable URL actions later by left-clicking on the " - "Klipper icon and selecting 'Enable Clipboard Actions'")); + xi18nc("@info", + "You can enable URL actions later in the " + "Actions page of the " + "Clipboard applet's configuration window")); message->setAttribute(Qt::WA_DeleteOnClose); message->setModal(false); message->show();