From 5d1962e435455508db5ca4c2194fa28d4c4cf37f Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 26 Oct 2020 09:01:13 +0800 Subject: [PATCH] tdehwmanager: fixed typo in previous commit. Signed-off-by: Michele Calgaro --- kcontrol/hwmanager/devicepropsdlg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kcontrol/hwmanager/devicepropsdlg.cpp b/kcontrol/hwmanager/devicepropsdlg.cpp index 717a23942..bb37695bd 100644 --- a/kcontrol/hwmanager/devicepropsdlg.cpp +++ b/kcontrol/hwmanager/devicepropsdlg.cpp @@ -977,7 +977,7 @@ void DevicePropertiesDialog::doUnlockDisk() { reply.get(unlockResult); } if (!unlockResult.contains("result") || !unlockResult["result"].toBool()) { - qerror = i18n("Unable to unlock this device.

Potential reasons include:
Wrong password and/or user privilege level.
Corrupt data on storage device."); + qerror = i18n("Unable to unlock this device.

Potential reasons include:
Wrong password and/or user privilege level.
Corrupt data on storage device."); TQString errStr = unlockResult.contains("errStr") ? unlockResult["errStr"].toString() : i18n("Unknown unlock error."); if (!errStr.isEmpty()) { qerror.append(i18n("

Technical details:
").append(errStr));