Dimension role: use × instead of x

This commit is contained in:
Méven Car 2022-01-31 20:35:58 +01:00
parent ca35c71f3d
commit 851b356f38

View file

@ -97,7 +97,7 @@ QString KFileItemListWidgetInformant::roleText(const QByteArray& role,
} else if (role == "dimensions") {
const auto dimensions = roleValue.toSize();
if (dimensions.isValid()) {
text = i18nc("width x height", "%1 x %2", dimensions.width(), dimensions.height());
text = i18nc("width × height", "%1 × %2", dimensions.width(), dimensions.height());
}
} else {
text = KStandardItemListWidgetInformant::roleText(role, values);