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:18:25 +0200
commitbe85f5aae37d5afd81c05331a8fa40a655fc3ffc (patch)
tree1a8eabf1d643efbebe8767638001bdbd0ad45118
parente5f38e22074d19a47b7292c1f96edb580491d9b7 (diff)
downloadtdebase-be85f5aae37d5afd81c05331a8fa40a655fc3ffc.tar.gz
tdebase-be85f5aae37d5afd81c05331a8fa40a655fc3ffc.zip
kcontrol/hwmanager: Allow translate an error message about unavailable information.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 3eba4f728a39c0691fdd6e7e50429fcfbec02852)
-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"));
}
}