From a68f6a7c6f94f4272bffdb1dcad456fbd89eea11 Mon Sep 17 00:00:00 2001 From: Guy Scharf Date: Sat, 28 May 2022 17:47:55 -0700 Subject: [PATCH] Improve "last use" message on Welcome page to say "today" rather than (-1 days ago). --- oscar/welcome.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/oscar/welcome.cpp b/oscar/welcome.cpp index 3f326325..35fe5f8e 100644 --- a/oscar/welcome.cpp +++ b/oscar/welcome.cpp @@ -179,6 +179,7 @@ QString Welcome::GenerateCPAPHTML() QString daystring; if (daysto == 1) daystring += tr("last night"); else if (daysto == 2) daystring += tr("1 day ago"); + else if (daysto == 0) daystring += tr("today"); else daystring += tr("%2 days ago").arg(daysto-1); html += tr("was %1 (on %2)").arg(daystring).arg(date.toString(Qt::SystemLocaleLongDate)) + "
";