From 8579b1d63dc94c6c3985e316e75eea026e31de6e Mon Sep 17 00:00:00 2001 From: Guy Scharf Date: Wed, 3 Jun 2020 09:36:52 -0700 Subject: [PATCH] Change "yesterday" to "1 day ago" in Welcome message and fix date plural in oximetry Welcome message --- oscar/welcome.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/oscar/welcome.cpp b/oscar/welcome.cpp index 6e7a844c..bf797f81 100644 --- a/oscar/welcome.cpp +++ b/oscar/welcome.cpp @@ -178,7 +178,7 @@ QString Welcome::GenerateCPAPHTML() int daysto = date.daysTo(QDate::currentDate()); QString daystring; if (daysto == 1) daystring += tr("last night"); - else if (daysto == 2) daystring += tr("yesterday"); + else if (daysto == 2) daystring += tr("1 day ago"); else daystring += tr("%2 days ago").arg(date.daysTo(QDate::currentDate())); html += tr("was %1 (on %2)").arg(daystring).arg(date.toString(Qt::SystemLocaleLongDate)) + "
"; @@ -339,8 +339,8 @@ QString Welcome::GenerateOxiHTML() html += "

"+QObject::tr("Most recent Oximetry data: %1 ").arg(oxidate.toString(Qt::SystemLocaleLongDate)).arg(oxidate.toString(Qt::ISODate)); if (daysto == 1) html += QObject::tr("(last night)"); - else if (daysto == 2) html += QObject::tr("(yesterday)"); - else html += QObject::tr("(%2 day ago)").arg(oxidate.daysTo(QDate::currentDate())); + else if (daysto == 2) html += QObject::tr("(1 day ago)"); + else html += QObject::tr("(%2 days ago)").arg(oxidate.daysTo(QDate::currentDate())); html+="

"; ui->oxiIcon->setVisible(true); ui->oxiInfo->setVisible(true);