summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorLoren Burkholder <computersemiexpert@outlook.com>2021-07-30 08:44:07 -0400
committerLoren Burkholder <computersemiexpert@outlook.com>2021-07-30 08:44:07 -0400
commitf48f244dcbfa319c5b8092791231fe56ac70bb8d (patch)
tree42867915b571aef152e419b0fa4659f3f34e552b /src
parentmake lint (diff)
downloadnheko-f48f244dcbfa319c5b8092791231fe56ac70bb8d.tar.xz
Use correct date format
Diffstat (limited to 'src')
-rw-r--r--src/ReadReceiptsModel.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ReadReceiptsModel.cpp b/src/ReadReceiptsModel.cpp

index 059f5d53..25262c59 100644 --- a/src/ReadReceiptsModel.cpp +++ b/src/ReadReceiptsModel.cpp
@@ -106,8 +106,7 @@ ReadReceiptsModel::dateFormat(const QDateTime &then) const auto days = then.daysTo(now); if (days == 0) - return tr("Today, %1") - .arg(QLocale::system().toString(then.time(), QLocale::ShortFormat)); + return QLocale::system().toString(then.time(), QLocale::ShortFormat); else if (days < 2) return tr("Yesterday, %1") .arg(QLocale::system().toString(then.time(), QLocale::ShortFormat));