Add a context to UI string.

This commit is contained in:
Andrius Štikonas 2016-09-18 11:55:35 +01:00
parent fce53d2392
commit 5e4b16b7fe
1 changed files with 1 additions and 1 deletions

View File

@ -84,5 +84,5 @@ bool Device::operator!=(const Device& other) const
QString Device::prettyName() const
{
return i18nc("Device name Capacity (device node)", "%1 %2 (%3)", name(), Capacity::formatByteSize(capacity()), deviceNode());
return xi18nc("@item:inlistbox Device name Capacity (device node)", "%1 %2 (%3)", name(), Capacity::formatByteSize(capacity()), deviceNode());
}