From 793b6832cea443c6140d35168835a8852c17a2ed Mon Sep 17 00:00:00 2001 From: Frank Reininghaus Date: Wed, 1 Jul 2009 18:51:17 +0000 Subject: Pass the "Yesterday (%B, %Y)" string to modifiedTime.toString(), such that %B and %Y actually get replaced by month and year. Today seemed to be a good day to reproduce and fix this :-) BUG: 179262 svn path=/trunk/KDE/kdebase/apps/; revision=990131 --- src/dolphinmodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/dolphinmodel.cpp b/src/dolphinmodel.cpp index 2808736ee..f37452c80 100644 --- a/src/dolphinmodel.cpp +++ b/src/dolphinmodel.cpp @@ -250,7 +250,7 @@ QVariant DolphinModel::displayRoleData(const QModelIndex& index) const const QDate lastMonthDate = currentDate.addMonths(-1); if (lastMonthDate.year() == modifiedDate.year() && lastMonthDate.month() == modifiedDate.month()) { if (daysDistance == 1) { - retString = i18nc("@title:group Date: %B is full month name in current locale, and %Y is full year number", "Yesterday (%B, %Y)"); + retString = modifiedTime.toString(i18nc("@title:group Date: %B is full month name in current locale, and %Y is full year number", "Yesterday (%B, %Y)")); } else if (daysDistance <= 7) { retString = modifiedTime.toString(i18nc("@title:group The week day name: %A, %B is full month name in current locale, and %Y is full year number", "%A (%B, %Y)")); } else if (daysDistance <= 7 * 2) { -- cgit v1.3