From 9558a488a4df8656681b6952bd346bd1c06202f6 Mon Sep 17 00:00:00 2001 From: LoudSnorer Date: Wed, 31 Jan 2024 19:38:23 -0500 Subject: [PATCH] FIX: spelling error --- oscar/statistics.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oscar/statistics.cpp b/oscar/statistics.cpp index dfa828c6..66f69cc2 100644 --- a/oscar/statistics.cpp +++ b/oscar/statistics.cpp @@ -291,7 +291,7 @@ Duration of longest disabled session: aa minutes, Total duration of all disabled return QString(QObject::tr( "Duration of longest disabled session: %1 minutes, Total duration of all disabled sessions: %2 minutes.") .arg(maxDurationOfaDisabledsession, 0, 'f', 1) .arg(totalDurationOfDisabledSessions, 0, 'f', 1)); case 4: - return QString(QObject::tr( "The reportng period is %1 days between %2 and %3") + return QString(QObject::tr( "The reporting period is %1 days between %2 and %3") .arg(1+_start.daysTo(_last)) .arg(_start.toString(MedDateFormat)) .arg(_last.toString(MedDateFormat)));