summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2021-09-10 01:17:37 +0200
committerSlávek Banko <slavek.banko@axis.cz>2021-09-10 01:17:37 +0200
commit3eba4f728a39c0691fdd6e7e50429fcfbec02852 (patch)
tree761278b8fde6ffd49eb92d239f41dbeac434db75
parent5e263a67d915e46b393a2c567a2473a21c59bd77 (diff)
downloadtdebase-3eba4f72.tar.gz
tdebase-3eba4f72.zip
kcontrol/hwmanager: Allow translate an error message about unavailable information.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r--kcontrol/hwmanager/deviceiconview.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/kcontrol/hwmanager/deviceiconview.cpp b/kcontrol/hwmanager/deviceiconview.cpp
index 7ccb93daf..44a71b3a3 100644
--- a/kcontrol/hwmanager/deviceiconview.cpp
+++ b/kcontrol/hwmanager/deviceiconview.cpp
@@ -73,7 +73,8 @@ void DeviceIconView::slotItemDoubleClicked(TQListViewItem* item)
delete propsDlg;
}
else {
- KMessageBox::sorry(this, "Detailed information is not available for this device", "Information Unavailable");
+ KMessageBox::sorry(this, i18n("Detailed information is not available for this device"),
+ i18n("Information Unavailable"));
}
}