diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2021-09-10 01:17:37 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2021-09-10 01:17:37 +0200 |
commit | 3eba4f728a39c0691fdd6e7e50429fcfbec02852 (patch) | |
tree | 761278b8fde6ffd49eb92d239f41dbeac434db75 /kcontrol | |
parent | 5e263a67d915e46b393a2c567a2473a21c59bd77 (diff) | |
download | tdebase-3eba4f728a39c0691fdd6e7e50429fcfbec02852.tar.gz tdebase-3eba4f728a39c0691fdd6e7e50429fcfbec02852.zip |
kcontrol/hwmanager: Allow translate an error message about unavailable information.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'kcontrol')
-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")); } } |