Fix Welcome page calculcation of number of days since last import

This commit is contained in:
Guy Scharf 2020-08-15 08:57:26 -07:00
parent bf6dd5c615
commit 86bc4ac606
2 changed files with 2 additions and 1 deletions

View File

@ -37,6 +37,7 @@
<li>[fix] Popout graphs now limited to desktop height and multiple popout graphs work better.</li> <li>[fix] Popout graphs now limited to desktop height and multiple popout graphs work better.</li>
<li>[fix] Overview tooltips now list chart components in same order as displayed in chart.</li> <li>[fix] Overview tooltips now list chart components in same order as displayed in chart.</li>
<li>[fix] Overview graphs now show last day on charts for timezones near GMT.</li> <li>[fix] Overview graphs now show last day on charts for timezones near GMT.</li>
<li>[fix] Welcome page calculation of days since last import fixed.</li>
</ul> </ul>
<p> <p>
<b>Changes and fixes in OSCAR v1.1.1</b> <b>Changes and fixes in OSCAR v1.1.1</b>

View File

@ -179,7 +179,7 @@ QString Welcome::GenerateCPAPHTML()
QString daystring; QString daystring;
if (daysto == 1) daystring += tr("last night"); if (daysto == 1) daystring += tr("last night");
else if (daysto == 2) daystring += tr("1 day ago"); else if (daysto == 2) daystring += tr("1 day ago");
else daystring += tr("%2 days ago").arg(date.daysTo(QDate::currentDate())); else daystring += tr("%2 days ago").arg(daysto-1);
html += tr("was %1 (on %2)").arg(daystring).arg(date.toString(Qt::SystemLocaleLongDate)) + "<br/>"; html += tr("was %1 (on %2)").arg(daystring).arg(date.toString(Qt::SystemLocaleLongDate)) + "<br/>";