A couple more string fixes

This commit is contained in:
Mark Watkins 2014-05-17 15:12:57 +10:00
parent a6348f74fa
commit 4305baa76b
2 changed files with 2 additions and 2 deletions

View File

@ -131,7 +131,7 @@ void Profile::DataFormatError(Machine *m)
QMessageBox::critical(nullptr, STR_MessageBox_Error,
QObject::tr("Sorry, the purge operation failed, which means this version of SleepyHead can't start.")+"\n\n"+
QObject::tr("The machine data folder needs to be removed manually.")+"\n\n"+
QObject::tr("This folder currently resides at the following location:\n\n")+
QObject::tr("This folder currently resides at the following location:")+\n\n"+
QDir::toNativeSeparators(PREF[STR_GEN_DataFolder].toString()), QMessageBox::Ok);
QApplication::exit(-1);
}

View File

@ -36,7 +36,7 @@ Statistics::Statistics(QObject *parent) :
rows.push_back(StatisticsRow("", SC_COLUMNHEADERS, MT_CPAP));
rows.push_back(StatisticsRow(tr("CPAP Usage"), SC_SUBHEADING, MT_CPAP));
rows.push_back(StatisticsRow(tr("Average Hours per Night"), SC_HOURS, MT_CPAP));
rows.push_back(StatisticsRow(tr("Compliancy"), SC_COMPLIANCE, MT_CPAP));
rows.push_back(StatisticsRow(tr("Compliance"), SC_COMPLIANCE, MT_CPAP));
rows.push_back(StatisticsRow(tr("Therapy Efficiacy"), SC_SUBHEADING, MT_CPAP));
rows.push_back(StatisticsRow("AHI", SC_AHI, MT_CPAP));