mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Fix Welcome page calculcation of number of days since last import
This commit is contained in:
parent
bf6dd5c615
commit
86bc4ac606
@ -37,6 +37,7 @@
|
||||
<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 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>
|
||||
<p>
|
||||
<b>Changes and fixes in OSCAR v1.1.1</b>
|
||||
|
@ -179,7 +179,7 @@ QString Welcome::GenerateCPAPHTML()
|
||||
QString daystring;
|
||||
if (daysto == 1) daystring += tr("last night");
|
||||
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/>";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user