summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorLoren Burkholder <computersemiexpert@outlook.com>2021-07-30 08:19:05 -0400
committerLoren Burkholder <computersemiexpert@outlook.com>2021-07-30 08:19:05 -0400
commit7dcdd51a8b329178152526dee875ba4980e4993d (patch)
tree434d1b06905ae48ca5b14af529943ec30474d037 /src
parentUse an explicit color for the label (diff)
downloadnheko-7dcdd51a8b329178152526dee875ba4980e4993d.tar.xz
make lint
Diffstat (limited to 'src')
-rw-r--r--src/ReadReceiptsModel.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ReadReceiptsModel.cpp b/src/ReadReceiptsModel.cpp

index 562353a7..059f5d53 100644 --- a/src/ReadReceiptsModel.cpp +++ b/src/ReadReceiptsModel.cpp
@@ -112,7 +112,8 @@ ReadReceiptsModel::dateFormat(const QDateTime &then) const return tr("Yesterday, %1") .arg(QLocale::system().toString(then.time(), QLocale::ShortFormat)); else if (days < 7) - //: %1 is the name of the current day, %2 is the time the read receipt was read. The result may look like this: Monday, 7:15 + //: %1 is the name of the current day, %2 is the time the read receipt was read. The + //: result may look like this: Monday, 7:15 return QString("%1, %2") .arg(then.toString("dddd")) .arg(QLocale::system().toString(then.time(), QLocale::ShortFormat));