1
0
mirror of https://invent.kde.org/system/dolphin synced 2024-06-30 15:36:30 +00:00

Apply 1 suggestion(s) to 1 file(s)

Co-authored-by: Méven Car <meven@kde.org>
This commit is contained in:
Zakhar Afonin 2024-06-22 10:39:50 +00:00
parent f631747a0c
commit 040122c1f5

View File

@ -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;
}