From 9544906055908f9b049eeee82380c2ac8c9d19cb Mon Sep 17 00:00:00 2001 From: Jonathan Marten Date: Wed, 25 May 2022 15:10:00 +0100 Subject: [PATCH] Klipper: More explicit wording for the "Clear History" confirmation I18N: --- klipper/klipper.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/klipper/klipper.cpp b/klipper/klipper.cpp index 03649797f..76f77e8d0 100644 --- a/klipper/klipper.cpp +++ b/klipper/klipper.cpp @@ -1043,9 +1043,9 @@ void Klipper::showBarcode(const QSharedPointer &item) void Klipper::slotAskClearHistory() { int clearHist = KMessageBox::warningContinueCancel(nullptr, - i18n("Really delete entire clipboard history?"), - i18n("Delete clipboard history?"), - KStandardGuiItem::cont(), + i18n("Do you really want to clear and delete the entire clipboard history?"), + i18n("Clear Clipboard History"), + KStandardGuiItem::del(), KStandardGuiItem::cancel(), QStringLiteral("klipperClearHistoryAskAgain"), KMessageBox::Dangerous);