diff options
author | Slávek Banko <[email protected]> | 2021-09-10 01:17:37 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2021-09-10 01:18:25 +0200 |
commit | be85f5aae37d5afd81c05331a8fa40a655fc3ffc (patch) | |
tree | 1a8eabf1d643efbebe8767638001bdbd0ad45118 /kcontrol/hwmanager | |
parent | e5f38e22074d19a47b7292c1f96edb580491d9b7 (diff) | |
download | tdebase-be85f5aae37d5afd81c05331a8fa40a655fc3ffc.tar.gz tdebase-be85f5aae37d5afd81c05331a8fa40a655fc3ffc.zip |
kcontrol/hwmanager: Allow translate an error message about unavailable information.
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 3eba4f728a39c0691fdd6e7e50429fcfbec02852)
Diffstat (limited to 'kcontrol/hwmanager')
-rw-r--r-- | kcontrol/hwmanager/deviceiconview.cpp | 3 |
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")); } } |