mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
make lint
This commit is contained in:
parent
b398454409
commit
7dcdd51a8b
1 changed files with 2 additions and 1 deletions
|
@ -112,7 +112,8 @@ ReadReceiptsModel::dateFormat(const QDateTime &then) const
|
||||||
return tr("Yesterday, %1")
|
return tr("Yesterday, %1")
|
||||||
.arg(QLocale::system().toString(then.time(), QLocale::ShortFormat));
|
.arg(QLocale::system().toString(then.time(), QLocale::ShortFormat));
|
||||||
else if (days < 7)
|
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")
|
return QString("%1, %2")
|
||||||
.arg(then.toString("dddd"))
|
.arg(then.toString("dddd"))
|
||||||
.arg(QLocale::system().toString(then.time(), QLocale::ShortFormat));
|
.arg(QLocale::system().toString(then.time(), QLocale::ShortFormat));
|
||||||
|
|
Loading…
Reference in a new issue