diff --git a/selfdrive/ui/qt/util.cc b/selfdrive/ui/qt/util.cc index a7d5438ae4..4c700b5fdb 100644 --- a/selfdrive/ui/qt/util.cc +++ b/selfdrive/ui/qt/util.cc @@ -85,7 +85,7 @@ QString timeAgo(const QDateTime &date) { s = QObject::tr("%1 hour%2 ago").arg(hours).arg(hours > 1 ? "s" : ""); } else if (diff < 3600 * 24 * 7) { int days = diff / (60 * 60 * 24); - s = QObject::tr("%1 day%2 ago").arg(days).arg(days > 1 ? "s" : ""); + s = QObject::tr("%1 day%2 ago").arg(days).arg(days > 1 ? "s" : ""); // %2 "s" show In other languages, this is not normal } else { s = date.date().toString(); }