From: Zakhar Afonin Date: Sat, 22 Jun 2024 10:39:50 +0000 (+0000) Subject: Apply 1 suggestion(s) to 1 file(s) X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/040122c1f5ba2ae38b5180c4683cc13f4376d266 Apply 1 suggestion(s) to 1 file(s) Co-authored-by: Méven Car --- diff --git a/src/kitemviews/kfileitemmodel.cpp b/src/kitemviews/kfileitemmodel.cpp index 960847ea7..071e60df7 100644 --- a/src/kitemviews/kfileitemmodel.cpp +++ b/src/kitemviews/kfileitemmodel.cpp @@ -2828,7 +2828,7 @@ KFileItemModel::ItemGroupInfo KFileItemModel::ratingRoleGroup(const ItemData *it if (withString) { // Dolphin does not currently use string representation of star rating // as stars are rendered as graphics in group headers. - groupInfo.text = i18nc("@item:intext Rated N (stars)", "Rated ") + QString::number(groupInfo.comparable); + groupInfo.text = i18nc("@item:intext Rated N (stars)", "Rated %i", QString::number(groupInfo.comparable)); } return groupInfo; }