diff --git a/src/ReadReceiptsModel.cpp b/src/ReadReceiptsModel.cpp
index 562353a79bcb4070c2ee465fa75d9f119e4e8653..059f5d53b0cf83dcca41a8cbc30ee5db142deb48 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));