From 5e4b16b7feb8fcd491342b26edf4b7f0a5bcabf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrius=20=C5=A0tikonas?= Date: Sun, 18 Sep 2016 11:55:35 +0100 Subject: [PATCH] Add a context to UI string. --- src/core/device.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/device.cpp b/src/core/device.cpp index ef6c2c1..0aa26ad 100644 --- a/src/core/device.cpp +++ b/src/core/device.cpp @@ -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()); }