Change OSCR to OSCAR in cpp, h, ui, and html files

This commit is contained in:
Phil Olynyk 2019-02-23 19:58:25 -05:00
parent 15daa07d1d
commit 108e0354d9
35 changed files with 144 additions and 144 deletions

View File

@ -427,7 +427,7 @@ QString STR_TR_Sessions;
QString STR_TR_PrRelief; // Pressure Relief QString STR_TR_PrRelief; // Pressure Relief
QString STR_TR_Bookmarks; QString STR_TR_Bookmarks;
QString STR_TR_OSCR; QString STR_TR_OSCAR;
QString STR_TR_AppVersion; QString STR_TR_AppVersion;
QString STR_TR_Default; QString STR_TR_Default;
@ -632,7 +632,7 @@ void initializeStrings()
STR_TR_PrRelief = QObject::tr("Pr. Relief"); // Pressure Relief STR_TR_PrRelief = QObject::tr("Pr. Relief"); // Pressure Relief
STR_TR_Bookmarks = QObject::tr("Bookmarks"); STR_TR_Bookmarks = QObject::tr("Bookmarks");
STR_TR_OSCR = QObject::tr("OSCR"); STR_TR_OSCAR = QObject::tr("OSCAR");
STR_TR_AppVersion = QObject::tr("v%1").arg(VersionString); STR_TR_AppVersion = QObject::tr("v%1").arg(VersionString);
STR_TR_Mode = QObject::tr("Mode"); STR_TR_Mode = QObject::tr("Mode");

View File

@ -164,9 +164,9 @@ const QString STR_MACH_ZEO = "Zeo";
const QString STR_PREF_Language = "Language"; const QString STR_PREF_Language = "Language";
const QString STR_AppName = "OSCR"; const QString STR_AppName = "OSCAR";
const QString STR_DeveloperName = "NightOwl"; const QString STR_DeveloperName = "NightOwl";
const QString STR_AppRoot = "OSCR_Data"; const QString STR_AppRoot = "OSCAR_Data";
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
// Commonly used translatable text strings // Commonly used translatable text strings
@ -326,7 +326,7 @@ extern QString STR_TR_PrRelief; // Pressure Relief
extern QString STR_TR_SensAwake; extern QString STR_TR_SensAwake;
extern QString STR_TR_Bookmarks; extern QString STR_TR_Bookmarks;
extern QString STR_TR_OSCR; extern QString STR_TR_OSCAR;
extern QString STR_TR_AppVersion; extern QString STR_TR_AppVersion;
extern QString STR_TR_Mode; extern QString STR_TR_Mode;

View File

@ -107,7 +107,7 @@ void Day::addSession(Session *s)
auto mi = machines.find(s->type()); auto mi = machines.find(s->type());
if (mi != machines.end()) { if (mi != machines.end()) {
if (mi.value() != s->machine()) { if (mi.value() != s->machine()) {
qDebug() << "OSCR can't add session" << s->session() << "to this day record, as it already contains a different machine of the same MachineType"; qDebug() << "OSCAR can't add session" << s->session() << "to this day record, as it already contains a different machine of the same MachineType";
return; return;
} }
} else { } else {

View File

@ -22,7 +22,7 @@ JournalEntry::JournalEntry(QDate date)
{ {
Machine * jmach = p_profile->GetMachine(MT_JOURNAL); Machine * jmach = p_profile->GetMachine(MT_JOURNAL);
if (jmach == nullptr) { // Create Journal machine record if it doesn't already exist if (jmach == nullptr) { // Create Journal machine record if it doesn't already exist
MachineInfo info(MT_JOURNAL,0, "Journal", QObject::tr("Journal Data"), QString(), QString(), QString(), QObject::tr("OSCR"), QDateTime::currentDateTime(), journal_data_version); MachineInfo info(MT_JOURNAL,0, "Journal", QObject::tr("Journal Data"), QString(), QString(), QString(), QObject::tr("OSCAR"), QDateTime::currentDateTime(), journal_data_version);
// Using machine ID 1 rather than a random number, so in future, if profile.xml gets screwed up they'll get their data back.. // Using machine ID 1 rather than a random number, so in future, if profile.xml gets screwed up they'll get their data back..
// TODO: Perhaps search for unlinked journal folders here to save some anger and frustration? :P // TODO: Perhaps search for unlinked journal folders here to save some anger and frustration? :P
@ -40,18 +40,18 @@ JournalEntry::JournalEntry(QDate date)
machid = tmp.toUInt(&ok, 16); machid = tmp.toUInt(&ok, 16);
if (!ok) { if (!ok) {
QMessageBox::warning(nullptr, STR_MessageBox_Warning, QMessageBox::warning(nullptr, STR_MessageBox_Warning,
QObject::tr("OSCR found an old Journal folder, but it looks like it's been renamed:")+"\n\n"+ QObject::tr("OSCAR found an old Journal folder, but it looks like it's been renamed:")+"\n\n"+
QString("%1").arg(dirs[0])+ QString("%1").arg(dirs[0])+
QObject::tr("OSCR will not touch this folder, and will create a new one instead.")+"\n\n"+ QObject::tr("OSCAR will not touch this folder, and will create a new one instead.")+"\n\n"+
QObject::tr("Please be careful when playing in OSCR's profile folders :-P"), QMessageBox::Ok); QObject::tr("Please be careful when playing in OSCAR's profile folders :-P"), QMessageBox::Ok);
// User renamed the folder.. report this // User renamed the folder.. report this
machid = 1; machid = 1;
} }
if (journals > 1) { if (journals > 1) {
QMessageBox::warning(nullptr, STR_MessageBox_Warning, QMessageBox::warning(nullptr, STR_MessageBox_Warning,
QObject::tr("For some reason, OSCR couldn't find a journal object record in your profile, but did find multiple Journal data folders.\n\n")+ QObject::tr("For some reason, OSCAR couldn't find a journal object record in your profile, but did find multiple Journal data folders.\n\n")+
QObject::tr("OSCR picked only the first one of these, and will use it in future:\n\n")+ QObject::tr("OSCAR picked only the first one of these, and will use it in future:\n\n")+
QString("%1").arg(dirs[0])+ QString("%1").arg(dirs[0])+
QObject::tr("If your old data is missing, copy the contents of all the other Journal_XXXXXXX folders to this one manually."), QMessageBox::Ok); QObject::tr("If your old data is missing, copy the contents of all the other Journal_XXXXXXX folders to this one manually."), QMessageBox::Ok);
// more then one.. report this. // more then one.. report this.
@ -208,7 +208,7 @@ void JournalEntry::delBookmark(qint64 start, qint64 end)
void BackupJournal(QString filename) void BackupJournal(QString filename)
{ {
QDomDocument doc("OSCR Journal"); QDomDocument doc("OSCAR Journal");
QDomElement droot = doc.createElement(STR_AppName); QDomElement droot = doc.createElement(STR_AppName);
doc.appendChild(droot); doc.appendChild(droot);

View File

@ -575,7 +575,7 @@ int PRS1Loader::OpenMachine(const QString & path)
QMessageBox::information(QApplication::activeWindow(), QMessageBox::information(QApplication::activeWindow(),
QObject::tr("Non Data Capable Machine"), QObject::tr("Non Data Capable Machine"),
QString(QObject::tr("Your Philips Respironics CPAP machine (Model %1) is unfortunately not a data capable model.")+"\n\n"+ QString(QObject::tr("Your Philips Respironics CPAP machine (Model %1) is unfortunately not a data capable model.")+"\n\n"+
QObject::tr("I'm sorry to report that OSCR can only track hours of use and very basic settings for this machine.")). QObject::tr("I'm sorry to report that OSCAR can only track hours of use and very basic settings for this machine.")).
arg(info.modelnumber),QMessageBox::Ok); arg(info.modelnumber),QMessageBox::Ok);
p_profile->cpap->setBrickWarning(false); p_profile->cpap->setBrickWarning(false);
@ -587,7 +587,7 @@ int PRS1Loader::OpenMachine(const QString & path)
QMessageBox::information(QApplication::activeWindow(), QMessageBox::information(QApplication::activeWindow(),
QObject::tr("Machine Unsupported"), QObject::tr("Machine Unsupported"),
QObject::tr("Sorry, your Philips Respironics CPAP machine (Model %1) is not supported yet.").arg(info.modelnumber) +"\n\n"+ QObject::tr("Sorry, your Philips Respironics CPAP machine (Model %1) is not supported yet.").arg(info.modelnumber) +"\n\n"+
QObject::tr("The developers needs a .zip copy of this machines' SD card and matching Encore .pdf reports to make it work with OSCR.") QObject::tr("The developers needs a .zip copy of this machines' SD card and matching Encore .pdf reports to make it work with OSCAR.")
,QMessageBox::Ok); ,QMessageBox::Ok);
return -1; return -1;
@ -596,8 +596,8 @@ int PRS1Loader::OpenMachine(const QString & path)
// model number didn't parse.. Meh... Silently ignore it // model number didn't parse.. Meh... Silently ignore it
// QMessageBox::information(QApplication::activeWindow(), // QMessageBox::information(QApplication::activeWindow(),
// QObject::tr("Machine Unsupported"), // QObject::tr("Machine Unsupported"),
// QObject::tr("OSCR could not parse the model number, this machine can not be imported..") +"\n\n"+ // QObject::tr("OSCAR could not parse the model number, this machine can not be imported..") +"\n\n"+
// QObject::tr("The developers needs a .zip copy of this machines' SD card and matching Encore .pdf reports to make it work with OSCR.") // QObject::tr("The developers needs a .zip copy of this machines' SD card and matching Encore .pdf reports to make it work with OSCAR.")
// ,QMessageBox::Ok); // ,QMessageBox::Ok);
return -1; return -1;
} }

View File

@ -1758,7 +1758,7 @@ int ResmedLoader::Open(const QString & dirpath)
// add primary STR.edf // add primary STR.edf
strfiles.push_back(strpath); strfiles.push_back(strpath);
// Just in case we are importing into a new folder, process OSCR backup structures // Just in case we are importing into a new folder, process OSCAR backup structures
dir.setPath(path + "STR_Backup"); dir.setPath(path + "STR_Backup");
dir.setFilter(QDir::Files | QDir::Hidden | QDir::Readable); dir.setFilter(QDir::Files | QDir::Hidden | QDir::Readable);
QFileInfoList flist = dir.entryInfoList(); QFileInfoList flist = dir.entryInfoList();
@ -2523,7 +2523,7 @@ bool ResmedLoader::LoadBRP(Session *sess, const QString & path)
return true; return true;
} }
// Convert EDFSignal data to OSCR's Time-Delta Event format // Convert EDFSignal data to OSCAR's Time-Delta Event format
void ResmedLoader::ToTimeDelta(Session *sess, ResMedEDFParser &edf, EDFSignal &es, ChannelID code, void ResmedLoader::ToTimeDelta(Session *sess, ResMedEDFParser &edf, EDFSignal &es, ChannelID code,
long recs, qint64 duration, EventDataType t_min, EventDataType t_max, bool square) long recs, qint64 duration, EventDataType t_min, EventDataType t_max, bool square)
{ {

View File

@ -1105,7 +1105,7 @@ bool Machine::SaveSummaryCache()
qDebug() << "Saving" << info.brand << info.model << "Summaries"; qDebug() << "Saving" << info.brand << info.model << "Summaries";
QString filename = getDataPath() + summaryFileName; QString filename = getDataPath() + summaryFileName;
QDomDocument doc("OSCR_SessionIndex"); QDomDocument doc("OSCAR_SessionIndex");
QDomElement root = doc.createElement("sessions"); QDomElement root = doc.createElement("sessions");
root.setAttribute("version", summaryxml_version); root.setAttribute("version", summaryxml_version);

View File

@ -506,17 +506,17 @@ void Profile::DataFormatError(Machine *m)
} }
if (backups) { if (backups) {
msg = msg + QObject::tr("<b>OSCR maintains a backup of your devices data card that it uses for this purpose.</b>")+ "<br/><br/>"; msg = msg + QObject::tr("<b>OSCAR maintains a backup of your devices data card that it uses for this purpose.</b>")+ "<br/><br/>";
msg = msg + QObject::tr("<i>Your old machine data should be regenerated provided this backup feature has not been disabled in preferences during a previous data import.</i>") + "<br/><br/>"; msg = msg + QObject::tr("<i>Your old machine data should be regenerated provided this backup feature has not been disabled in preferences during a previous data import.</i>") + "<br/><br/>";
backups = true; backups = true;
} else { } else {
msg = msg + "<font size=+1>"+STR_MessageBox_Warning+":</font> "+QObject::tr("OSCR does not yet have any automatic card backups stored for this device.") + "<br/><br/>"; msg = msg + "<font size=+1>"+STR_MessageBox_Warning+":</font> "+QObject::tr("OSCAR does not yet have any automatic card backups stored for this device.") + "<br/><br/>";
msg = msg + QObject::tr("This means you will need to import this machine data again afterwards from your own backups or data card.") + "<br/><br/>"; msg = msg + QObject::tr("This means you will need to import this machine data again afterwards from your own backups or data card.") + "<br/><br/>";
} }
msg += "<font size=+1>"+QObject::tr("Important:")+"</font> "+QObject::tr("Once you upgrade, you <font size=+1>can not</font> use this profile with the previous version anymore.")+"<br/><br/>"+ msg += "<font size=+1>"+QObject::tr("Important:")+"</font> "+QObject::tr("Once you upgrade, you <font size=+1>can not</font> use this profile with the previous version anymore.")+"<br/><br/>"+
QObject::tr("If you are concerned, click No to exit, and backup your profile manually, before starting OSCR again.")+ "<br/><br/>"; QObject::tr("If you are concerned, click No to exit, and backup your profile manually, before starting OSCAR again.")+ "<br/><br/>";
msg = msg + "<font size=+1>"+QObject::tr("Are you ready to upgrade, so you can run the new version of OSCR?")+"</font>"; msg = msg + "<font size=+1>"+QObject::tr("Are you ready to upgrade, so you can run the new version of OSCAR?")+"</font>";
QMessageBox * question = new QMessageBox(QMessageBox::Warning, QObject::tr("Machine Database Changes"), msg, QMessageBox::Yes | QMessageBox::No); QMessageBox * question = new QMessageBox(QMessageBox::Warning, QObject::tr("Machine Database Changes"), msg, QMessageBox::Yes | QMessageBox::No);
@ -530,7 +530,7 @@ void Profile::DataFormatError(Machine *m)
if (!m->Purge(3478216)) { if (!m->Purge(3478216)) {
// Purge failed.. probably a permissions error.. let the user deal with it. // Purge failed.. probably a permissions error.. let the user deal with it.
QMessageBox::critical(nullptr, STR_MessageBox_Error, QMessageBox::critical(nullptr, STR_MessageBox_Error,
QObject::tr("Sorry, the purge operation failed, which means this version of OSCR can't start.")+"\n\n"+ QObject::tr("Sorry, the purge operation failed, which means this version of OSCAR can't start.")+"\n\n"+
QObject::tr("The machine data folder needs to be removed manually.")+"\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(Get(p_preferences[STR_GEN_DataFolder].toString())), QMessageBox::Ok); QDir::toNativeSeparators(Get(p_preferences[STR_GEN_DataFolder].toString())), QMessageBox::Ok);
@ -543,14 +543,14 @@ void Profile::DataFormatError(Machine *m)
if (!p_profile->session->backupCardData()) { if (!p_profile->session->backupCardData()) {
// Automatic backups not available for Intellipap users yet, so don't taunt them.. // Automatic backups not available for Intellipap users yet, so don't taunt them..
if (m->loaderName() != STR_MACH_Intellipap) { if (m->loaderName() != STR_MACH_Intellipap) {
if (QMessageBox::question(nullptr, STR_MessageBox_Question, QObject::tr("Would you like to switch on automatic backups, so next time a new version of OSCR needs to do so, it can rebuild from these?"), if (QMessageBox::question(nullptr, STR_MessageBox_Question, QObject::tr("Would you like to switch on automatic backups, so next time a new version of OSCAR needs to do so, it can rebuild from these?"),
QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes)) { QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes)) {
p_profile->session->setBackupCardData(true); p_profile->session->setBackupCardData(true);
} }
} }
} }
QMessageBox::information(nullptr, STR_MessageBox_Information, QMessageBox::information(nullptr, STR_MessageBox_Information,
QObject::tr("OSCR will now start the import wizard so you can reinstall your %1 data.").arg(m->brand()) QObject::tr("OSCAR will now start the import wizard so you can reinstall your %1 data.").arg(m->brand())
,QMessageBox::Ok, QMessageBox::Ok); ,QMessageBox::Ok, QMessageBox::Ok);
mainwin->startImportDialog(); mainwin->startImportDialog();
} }
@ -560,9 +560,9 @@ void Profile::DataFormatError(Machine *m)
} else { } else {
delete question; delete question;
QMessageBox::information(nullptr, STR_MessageBox_Information, QMessageBox::information(nullptr, STR_MessageBox_Information,
QObject::tr("OSCR will now exit, then (attempt to) launch your computers file manager so you can manually back your profile up:")+"\n\n"+ QObject::tr("OSCAR will now exit, then (attempt to) launch your computers file manager so you can manually back your profile up:")+"\n\n"+
QDir::toNativeSeparators(Get(p_preferences[STR_GEN_DataFolder].toString()))+"\n\n"+ QDir::toNativeSeparators(Get(p_preferences[STR_GEN_DataFolder].toString()))+"\n\n"+
QObject::tr("Use your file manager to make a copy of your profile directory, then afterwards, restart OSCR and complete the upgrade process.") QObject::tr("Use your file manager to make a copy of your profile directory, then afterwards, restart OSCAR and complete the upgrade process.")
, QMessageBox::Ok, QMessageBox::Ok); , QMessageBox::Ok, QMessageBox::Ok);
showInGraphicalShell(Get(p_preferences[STR_GEN_DataFolder].toString())); showInGraphicalShell(Get(p_preferences[STR_GEN_DataFolder].toString()));
@ -990,7 +990,7 @@ Profile *Create(QString name)
Machine *m = new Machine(p_profile, 0); Machine *m = new Machine(p_profile, 0);
m->setType(MT_JOURNAL); m->setType(MT_JOURNAL);
MachineInfo info(MT_JOURNAL, 0, STR_MACH_Journal, "OSCR", STR_MACH_Journal, QString(), m->hexid(), QString(), QDateTime::currentDateTime(), 0); MachineInfo info(MT_JOURNAL, 0, STR_MACH_Journal, "OSCAR", STR_MACH_Journal, QString(), m->hexid(), QString(), QDateTime::currentDateTime(), 0);
m->setInfo(info); m->setInfo(info);
p_profile->AddMachine(m); p_profile->AddMachine(m);
@ -1016,7 +1016,7 @@ void saveProfileList()
QDomElement root = doc.createElement("profiles"); QDomElement root = doc.createElement("profiles");
doc.appendChild(root); doc.appendChild(root);
root.appendChild(doc.createComment("This file is created during Profile Scan for cloud access convenience, it's not used by Desktop version of OSCR.")); root.appendChild(doc.createComment("This file is created during Profile Scan for cloud access convenience, it's not used by Desktop version of OSCAR."));
for (auto it = profiles.begin(); it != profiles.end(); ++it) { for (auto it = profiles.begin(); it != profiles.end(); ++it) {
QDomElement elem = doc.createElement("profile"); QDomElement elem = doc.createElement("profile");

View File

@ -172,13 +172,13 @@ void init()
QObject::tr("SensAwake"),QObject::tr("SensAwake feature will reduce pressure when waking is detected."),QObject::tr("SA"), STR_UNIT_EventsPerHour, DEFAULT, COLOR_Gold)); QObject::tr("SensAwake"),QObject::tr("SensAwake feature will reduce pressure when waking is detected."),QObject::tr("SA"), STR_UNIT_EventsPerHour, DEFAULT, COLOR_Gold));
schema::channel.add(GRP_CPAP, new Channel(CPAP_UserFlag1 = 0x101e, FLAG, MT_CPAP, SESSION, "UserFlag1", schema::channel.add(GRP_CPAP, new Channel(CPAP_UserFlag1 = 0x101e, FLAG, MT_CPAP, SESSION, "UserFlag1",
QObject::tr("User Flag #1"), QObject::tr("A user definable event detected by OSCR's flow waveform processor."), QObject::tr("UF1"), STR_UNIT_EventsPerHour, DEFAULT, QColor(0xc0,0xc0,0xe0))); QObject::tr("User Flag #1"), QObject::tr("A user definable event detected by OSCAR's flow waveform processor."), QObject::tr("UF1"), STR_UNIT_EventsPerHour, DEFAULT, QColor(0xc0,0xc0,0xe0)));
schema::channel.add(GRP_CPAP, new Channel(CPAP_UserFlag2 = 0x101f, FLAG, MT_CPAP, SESSION, "UserFlag2", schema::channel.add(GRP_CPAP, new Channel(CPAP_UserFlag2 = 0x101f, FLAG, MT_CPAP, SESSION, "UserFlag2",
QObject::tr("User Flag #2"),QObject::tr("A user definable event detected by OSCR's flow waveform processor."), QObject::tr("UF2"), STR_UNIT_EventsPerHour, DEFAULT, QColor(0xa0,0xa0,0xc0))); QObject::tr("User Flag #2"),QObject::tr("A user definable event detected by OSCAR's flow waveform processor."), QObject::tr("UF2"), STR_UNIT_EventsPerHour, DEFAULT, QColor(0xa0,0xa0,0xc0)));
schema::channel.add(GRP_CPAP, new Channel(CPAP_UserFlag3 = 0x1024, FLAG, MT_CPAP, SESSION, "UserFlag3", schema::channel.add(GRP_CPAP, new Channel(CPAP_UserFlag3 = 0x1024, FLAG, MT_CPAP, SESSION, "UserFlag3",
QObject::tr("User Flag #3"),QObject::tr("A user definable event detected by OSCR's flow waveform processor."), QObject::tr("UF3"), STR_UNIT_EventsPerHour, DEFAULT, QColor("dark grey"))); QObject::tr("User Flag #3"),QObject::tr("A user definable event detected by OSCAR's flow waveform processor."), QObject::tr("UF3"), STR_UNIT_EventsPerHour, DEFAULT, QColor("dark grey")));
// Oximetry // Oximetry
schema::channel.add(GRP_OXI, new Channel(OXI_Pulse = 0x1800, WAVEFORM, MT_OXIMETER, SESSION, "Pulse", schema::channel.add(GRP_OXI, new Channel(OXI_Pulse = 0x1800, WAVEFORM, MT_OXIMETER, SESSION, "Pulse",

View File

@ -21,7 +21,7 @@
using namespace std; using namespace std;
// This is the uber important database version for OSCR's internal storage // This is the uber important database version for OSCAR's internal storage
// Increment this after stuffing with Session's save & load code. // Increment this after stuffing with Session's save & load code.
const quint16 summary_version = 18; const quint16 summary_version = 18;
const quint16 events_version = 10; const quint16 events_version = 10;

View File

@ -124,7 +124,7 @@ void UpdaterWindow::checkForUpdates()
} }
} }
mainwin->Notify(tr("Checking for OSCR Updates")); mainwin->Notify(tr("Checking for OSCAR Updates"));
#ifdef Q_OS_WIN #ifdef Q_OS_WIN
update_url = QUrl(QString("http://sleepyhead.jedimark.net/packages/%1/Updates.xml").arg(platform)); update_url = QUrl(QString("http://sleepyhead.jedimark.net/packages/%1/Updates.xml").arg(platform));
@ -155,7 +155,7 @@ void UpdaterWindow::updateFinished(QNetworkReply *reply)
if (reply->error() != QNetworkReply::NoError) { if (reply->error() != QNetworkReply::NoError) {
qDebug() << "Update Check Error: "+reply->errorString(); qDebug() << "Update Check Error: "+reply->errorString();
disconnect(netmanager, SIGNAL(finished(QNetworkReply *)), this, SLOT(updateFinished(QNetworkReply *))); disconnect(netmanager, SIGNAL(finished(QNetworkReply *)), this, SLOT(updateFinished(QNetworkReply *)));
mainwin->Notify(tr("OSCR Updates are currently unvailable for this platform"),tr("OSCR Updates")); mainwin->Notify(tr("OSCAR Updates are currently unvailable for this platform"),tr("OSCAR Updates"));
} else { } else {
QUrl redirectUrl = reply->attribute(QNetworkRequest::RedirectionTargetAttribute).toUrl(); QUrl redirectUrl = reply->attribute(QNetworkRequest::RedirectionTargetAttribute).toUrl();
@ -416,7 +416,7 @@ int compareVersion(QString version)
#ifndef NO_UPDATER #ifndef NO_UPDATER
const QString UPDATE_ROSCR = "com.jedimark.sleepyhead"; const QString UPDATE_ROSCAR = "com.jedimark.sleepyhead";
const QString UPDATE_QT = "com.jedimark.sleepyhead.qtlibraries"; const QString UPDATE_QT = "com.jedimark.sleepyhead.qtlibraries";
const QString UPDATE_Translations = "com.jedimark.sleepyhead.translations"; const QString UPDATE_Translations = "com.jedimark.sleepyhead.translations";
@ -456,10 +456,10 @@ void UpdaterWindow::ParseLatestVersion(QIODevice *file)
int i=compareVersion(version); int i=compareVersion(version);
if (i>0) { if (i>0) {
mainwin->Notify(tr("Version %1 of OSCR is available, opening link to download site.").arg(version), STR_TR_OSCR); mainwin->Notify(tr("Version %1 of OSCAR is available, opening link to download site.").arg(version), STR_TR_OSCAR);
QDesktopServices::openUrl(QUrl(QString("http://nightowlsoftware.ca/OSCR"))); QDesktopServices::openUrl(QUrl(QString("http://nightowlsoftware.ca/OSCAR")));
} else { } else {
mainwin->Notify(tr("You are already running the latest version."), STR_TR_OSCR); mainwin->Notify(tr("You are already running the latest version."), STR_TR_OSCAR);
} }
} }
@ -470,7 +470,7 @@ void UpdaterWindow::ParseUpdatesXML(QIODevice *dev)
qDebug() << " XML update structure parsed cleanly"; qDebug() << " XML update structure parsed cleanly";
QHash<QString, QString> CurrentVersion; QHash<QString, QString> CurrentVersion;
CurrentVersion[UPDATE_OSCR] = VersionString; CurrentVersion[UPDATE_OSCAR] = VersionString;
CurrentVersion[UPDATE_QT] = QT_VERSION_STR; CurrentVersion[UPDATE_QT] = QT_VERSION_STR;
CurrentVersion[UPDATE_Translations] = VersionString; CurrentVersion[UPDATE_Translations] = VersionString;
@ -560,7 +560,7 @@ void UpdaterWindow::ParseUpdateXML(QIODevice *dev)
} }
if (!release) { if (!release) {
mainwin->Notify(tr("No updates were found for your platform."), tr("OSCR Updates"), 5000); mainwin->Notify(tr("No updates were found for your platform."), tr("OSCAR Updates"), 5000);
PREF[STR_GEN_UpdatesLastChecked] = QDateTime::currentDateTime(); PREF[STR_GEN_UpdatesLastChecked] = QDateTime::currentDateTime();
close(); close();
return; return;
@ -599,7 +599,7 @@ void UpdaterWindow::ParseUpdateXML(QIODevice *dev)
if (!upq && !upd) { if (!upq && !upd) {
mainwin->Notify(tr("No new updates were found for your platform."), mainwin->Notify(tr("No new updates were found for your platform."),
tr("OSCR Updates"), tr("OSCAR Updates"),
5000); 5000);
PREF[STR_GEN_UpdatesLastChecked] = QDateTime::currentDateTime(); PREF[STR_GEN_UpdatesLastChecked] = QDateTime::currentDateTime();
close(); close();
@ -616,7 +616,7 @@ void UpdaterWindow::ParseUpdateXML(QIODevice *dev)
if (updates.size() > 0) { if (updates.size() > 0) {
QString html = "<html><h3>" + tr("OSCR v%1, codename \"%2\"").arg(release->version). QString html = "<html><h3>" + tr("OSCAR v%1, codename \"%2\"").arg(release->version).
arg(release->codename) + "</h3><p>" + release->notes[""] + "</p><b>"; arg(release->codename) + "</h3><p>" + release->notes[""] + "</p><b>";
html += platform.left(1).toUpper() + platform.mid(1); html += platform.left(1).toUpper() + platform.mid(1);
html += " " + tr("platform notes") + "</b><p>" + release->notes[platform] + "</p></html>"; html += " " + tr("platform notes") + "</b><p>" + release->notes[platform] + "</p></html>";
@ -624,12 +624,12 @@ void UpdaterWindow::ParseUpdateXML(QIODevice *dev)
QString info; QString info;
if (compareVersion(release->version)) { if (compareVersion(release->version)) {
ui->Title->setText("<font size=+1>" + tr("A new version of OSCR is available!") + "</font>"); ui->Title->setText("<font size=+1>" + tr("A new version of OSCAR is available!") + "</font>");
info = tr("Shiny new <b>v%1</b> is available. You're running old and busted v%2"). info = tr("Shiny new <b>v%1</b> is available. You're running old and busted v%2").
arg(latestapp).arg(VersionString); arg(latestapp).arg(VersionString);
ui->notesTabWidget->setCurrentIndex(0); ui->notesTabWidget->setCurrentIndex(0);
} else { } else {
ui->Title->setText("<font size=+1>" + tr("An update for OSCR is available.") + "</font>"); ui->Title->setText("<font size=+1>" + tr("An update for OSCAR is available.") + "</font>");
info = tr("Version <b>%1</b> is available. You're currently running v%1"). info = tr("Version <b>%1</b> is available. You're currently running v%1").
arg(latestapp).arg(VersionString); arg(latestapp).arg(VersionString);
ui->notesTabWidget->setCurrentIndex(1); ui->notesTabWidget->setCurrentIndex(1);
@ -643,7 +643,7 @@ void UpdaterWindow::ParseUpdateXML(QIODevice *dev)
update = &release->updates[platform][i]; update = &release->updates[platform][i];
if ((update->type == "application") && (update->version > VersionString)) { if ((update->type == "application") && (update->version > VersionString)) {
notes += "<b>" + tr("OSCR v%1 build notes").arg(update->version) + "</b><br/>" + notes += "<b>" + tr("OSCAR v%1 build notes").arg(update->version) + "</b><br/>" +
update->notes.trimmed() + "<br/><br/>"; update->notes.trimmed() + "<br/><br/>";
} else if ((update->type == "qtlibs") && (update->version > QT_VERSION_STR)) { } else if ((update->type == "qtlibs") && (update->version > QT_VERSION_STR)) {
notes += "<b>" + tr("Update to QtLibs (v%1)").arg(update->version) + "</b><br/>" + notes += "<b>" + tr("Update to QtLibs (v%1)").arg(update->version) + "</b><br/>" +
@ -909,11 +909,11 @@ void UpdaterWindow::upgradeNext()
if (ok) { if (ok) {
success = true; success = true;
//QMessageBox::information(this,tr("Updates Complete"),tr("OSCR has been updated and needs to restart."),QMessageBox::Ok); //QMessageBox::information(this,tr("Updates Complete"),tr("OSCAR has been updated and needs to restart."),QMessageBox::Ok);
ui->downloadTitle->setText(tr("Update Complete!")); ui->downloadTitle->setText(tr("Update Complete!"));
ui->FinishedButton->setVisible(true); ui->FinishedButton->setVisible(true);
ui->downloadLabel->setText( ui->downloadLabel->setText(
tr("Updates Complete. OSCR needs to restart now, click Finished to do so.")); tr("Updates Complete. OSCAR needs to restart now, click Finished to do so."));
PREF[STR_GEN_UpdatesLastChecked] = QDateTime::currentDateTime(); PREF[STR_GEN_UpdatesLastChecked] = QDateTime::currentDateTime();
} else { } else {
ui->downloadTitle->setText(tr("Update Failed :(")); ui->downloadTitle->setText(tr("Update Failed :("));

View File

@ -11,7 +11,7 @@
</rect> </rect>
</property> </property>
<property name="windowTitle"> <property name="windowTitle">
<string>OSCR Updater</string> <string>OSCAR Updater</string>
</property> </property>
<property name="windowIcon"> <property name="windowIcon">
<iconset> <iconset>

View File

@ -44,7 +44,7 @@ AboutDialog::AboutDialog(QWidget *parent) :
ui->infoLabel->setText(text); ui->infoLabel->setText(text);
setWindowTitle(tr("About OSCR")); setWindowTitle(tr("About OSCAR"));
setMinimumSize(QSize(400,400)); setMinimumSize(QSize(400,400));
connect(ui->closeButton, SIGNAL(clicked(bool)), this, SLOT(accept())); connect(ui->closeButton, SIGNAL(clicked(bool)), this, SLOT(accept()));
@ -103,7 +103,7 @@ QString AboutDialog::getRelnotes()
QString text = "<html>" QString text = "<html>"
"<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"></head>" "<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"></head>"
"<body><span style=\" font-size:20pt;\">"+tr("Release Notes")+"</span><br/>" "<body><span style=\" font-size:20pt;\">"+tr("Release Notes")+"</span><br/>"
"<span style=\" font-size:14pt;\">"+tr("OSCR v%1").arg(VersionString)+"</span>" "<span style=\" font-size:14pt;\">"+tr("OSCAR v%1").arg(VersionString)+"</span>"
"<hr/>"; "<hr/>";
if (ReleaseStatus != "r") { if (ReleaseStatus != "r") {
text += "<p><font color='red' size=+1><b>"+tr("Important:")+"</b></font> " text += "<p><font color='red' size=+1><b>"+tr("Important:")+"</b></font> "

View File

@ -134,7 +134,7 @@
</font> </font>
</property> </property>
<property name="text"> <property name="text">
<string notr="true">OSCR</string> <string notr="true">OSCAR</string>
</property> </property>
<property name="alignment"> <property name="alignment">
<set>Qt::AlignCenter</set> <set>Qt::AlignCenter</set>

View File

@ -21,10 +21,10 @@
<hr /> <hr />
<p class="centre" style="font-size:11pt;"><br /></p> <p class="centre" style="font-size:11pt;"><br /></p>
<p class="centre" text-align="center;"> <p class="centre" text-align="center;">
OSCR is <span style=" font-weight:600;">NOT </span>a substitute for competent medical guidance from your Doctor.</p> OSCAR is <span style=" font-weight:600;">NOT </span>a substitute for competent medical guidance from your Doctor.</p>
<p class="centre" ><br /></p> <p class="centre" ><br /></p>
<p class="centre" text-align="center;"> <p class="centre" text-align="center;">
Due to the lack of documentation released by manufacturers regarding file formats, accuracy of data displayed in OSCR can not in any way be guaranteed. </p> Due to the lack of documentation released by manufacturers regarding file formats, accuracy of data displayed in OSCAR can not in any way be guaranteed. </p>
<p align="center" ><br /></p> <p align="center" ><br /></p>
<p class="centre" text-align="center;"> <p class="centre" text-align="center;">
Any reports generated are for <span style=" font-weight:600;">PERSONAL USE ONLY</span>, and are <span style=" font-weight:600;">NOT IN ANY WAY</span> fit for compliance or medical diagnostic purposes.</p> Any reports generated are for <span style=" font-weight:600;">PERSONAL USE ONLY</span>, and are <span style=" font-weight:600;">NOT IN ANY WAY</span> fit for compliance or medical diagnostic purposes.</p>
@ -34,10 +34,10 @@
<p class="centre"><br /></p> <p class="centre"><br /></p>
<hr /> <hr />
<p class="centre" text-align="center;"> <p class="centre" text-align="center;">
OSCR is free (as in freedom) software, released under the <span style=" font-style:italic;">GNU Public License v3</span>, and comes with no warranty, and without ANY claims to fitness for any purpose.</p> OSCAR is free (as in freedom) software, released under the <span style=" font-style:italic;">GNU Public License v3</span>, and comes with no warranty, and without ANY claims to fitness for any purpose.</p>
<p class="centre" ><br /></p> <p class="centre" ><br /></p>
<p class="centre" text-align="center;"> <p class="centre" text-align="center;">
OSCR is copyright ©2011-2018 <a href="http://jedimark.net"><span style=" text-decoration: underline; color:#0000ff;">Mark Watkins</span></a></p> OSCAR is copyright ©2011-2018 <a href="http://jedimark.net"><span style=" text-decoration: underline; color:#0000ff;">Mark Watkins</span></a></p>
<p class="centre" text-align="center;"> <p class="centre" text-align="center;">
and portions &copy;2019 Nightowl Software</p> and portions &copy;2019 Nightowl Software</p>
<p class="centre" style="font-size:11pt;"><br /></p> <p class="centre" style="font-size:11pt;"><br /></p>

View File

@ -7,16 +7,16 @@
</style> </style>
</head> </head>
<body style=" font-family:'MS Shell Dlg 2'; font-size:10pt; font-weight:400; font-style:normal;"> <body style=" font-family:'MS Shell Dlg 2'; font-size:10pt; font-weight:400; font-style:normal;">
<p><span style=" font-size:20pt;">OSCR Credits</span></p> <p><span style=" font-size:20pt;">OSCAR Credits</span></p>
<hr /> <hr />
<p>OSCR is a derivitive of the SleepyHead program written by Mark Watkins, during the years 2011 to 2018. The current project is the combined effort of people from both CPAPtalk.com and ApneaBoard.com, starting in 2019.</p> <p>OSCAR is a derivitive of the SleepyHead program written by Mark Watkins, during the years 2011 to 2018. The current project is the combined effort of people from both CPAPtalk.com and ApneaBoard.com, starting in 2019.</p>
<p>For OSCR to come to you in the form you see it in now, it took a lot more work than just that of the project's original creator <a href="http://jedimark.net"><span style=" text-decoration: underline; color:#0000ff;">Jedimark</span></a>. The following are the Credits from the last version of SleepyHead.</p> <p>For OSCAR to come to you in the form you see it in now, it took a lot more work than just that of the project's original creator <a href="http://jedimark.net"><span style=" text-decoration: underline; color:#0000ff;">Jedimark</span></a>. The following are the Credits from the last version of SleepyHead.</p>
<p style="-qt-paragraph-type:empty;"><br /></p> <p style="-qt-paragraph-type:empty;"><br /></p>
<p><span style=" font-weight:600;">OpenSource Libraries</span></p> <p><span style=" font-weight:600;">OpenSource Libraries</span></p>
<p>OSCR uses the OpenSource version of the Qt cross platform toolkit available from <a href="http://qt.io"><span style=" text-decoration: underline; color:#0000ff;">http://qt.io</span></a> which itself draws from many smaller open source libraries. You can read the individual licensing for many of these components that are used under the hood of ROSCR at <a href="http://doc.qt.io/archives/qt-5.7/3rdparty.html"><span style=" text-decoration: underline; color:#0000ff;">http://doc.qt.io/archives/qt-5.7/3rdparty.html</span></a></p> <p>OSCAR uses the OpenSource version of the Qt cross platform toolkit available from <a href="http://qt.io"><span style=" text-decoration: underline; color:#0000ff;">http://qt.io</span></a> which itself draws from many smaller open source libraries. You can read the individual licensing for many of these components that are used under the hood of ROSCAR at <a href="http://doc.qt.io/archives/qt-5.7/3rdparty.html"><span style=" text-decoration: underline; color:#0000ff;">http://doc.qt.io/archives/qt-5.7/3rdparty.html</span></a></p>
<p style="-qt-paragraph-type:empty;"><br /></p> <p style="-qt-paragraph-type:empty;"><br /></p>
<p><span style=" font-weight:600;">Data formats</span></p> <p><span style=" font-weight:600;">Data formats</span></p>
<p>Becase the CPAP machine data formats are mostly undocumented and getting them working in OSCR involved a lot of hacking, Mark Watkins needed a lot of SD card data samples, and patient users willing to put up with crashes and wonky data, and plenty of help from my fellow hackers out there who shared in the workload breaking data formats. Thanks to all of you who have helped in the fight to protect our right to keep our own data open and accessible!<br /><br /><span style=" font-weight:600;">Patches, bugfixes and platform support</span><br /><span style=" color:#000000;">James Marshall, Rich Freeman, John Masters, Keary Griffin, Patricia Shanahan, Alec Clews, manders99, Sean Stangl, Roy Stone, François Revol, Michael Masterson, RezNet, JediBob, Pholy and names I'm sure I've missed or yet to add.</span></p> <p>Becase the CPAP machine data formats are mostly undocumented and getting them working in OSCAR involved a lot of hacking, Mark Watkins needed a lot of SD card data samples, and patient users willing to put up with crashes and wonky data, and plenty of help from my fellow hackers out there who shared in the workload breaking data formats. Thanks to all of you who have helped in the fight to protect our right to keep our own data open and accessible!<br /><br /><span style=" font-weight:600;">Patches, bugfixes and platform support</span><br /><span style=" color:#000000;">James Marshall, Rich Freeman, John Masters, Keary Griffin, Patricia Shanahan, Alec Clews, manders99, Sean Stangl, Roy Stone, François Revol, Michael Masterson, RezNet, JediBob, Pholy and names I'm sure I've missed or yet to add.</span></p>
<p style="-qt-paragraph-type:empty;"><br /></p> <p style="-qt-paragraph-type:empty;"><br /></p>
<p><span style=" font-weight:600;">Language and Translation</span></p> <p><span style=" font-weight:600;">Language and Translation</span></p>
<p><span style=" color:#000000;">Now with sixteen (!) new languages besides English (US) it is important to mention all those people who have done an enormous job breaking their heads over 1566 strings with 9572 words, making a total of over 56.000 characters, for the original SleepyHead Version 1.0.0<br /></span></p> <p><span style=" color:#000000;">Now with sixteen (!) new languages besides English (US) it is important to mention all those people who have done an enormous job breaking their heads over 1566 strings with 9572 words, making a total of over 56.000 characters, for the original SleepyHead Version 1.0.0<br /></span></p>

View File

@ -2,7 +2,7 @@
<html> <html>
<body> <body>
<p version="1.1.1-testing-1"> <p version="1.1.1-testing-1">
<b>Changes and fixes in OSCR v1.0.0-beta-1</b> <b>Changes and fixes in OSCAR v1.0.0-beta-1</b>
<list> <list>
<li>This is a Community Release, prepared without Mark Watkin's assistance</li> <li>This is a Community Release, prepared without Mark Watkin's assistance</li>
<li>The Donation and Update features have been removed</li> <li>The Donation and Update features have been removed</li>

View File

@ -69,7 +69,7 @@ ExportCSV::~ExportCSV()
void ExportCSV::on_filenameBrowseButton_clicked() void ExportCSV::on_filenameBrowseButton_clicked()
{ {
QString timestamp = tr("OSCR_"); QString timestamp = tr("OSCAR_");
timestamp += p_profile->Get("Username") + "_"; timestamp += p_profile->Get("Username") + "_";
if (ui->rb1_details->isChecked()) { timestamp += tr("Details_"); } if (ui->rb1_details->isChecked()) { timestamp += tr("Details_"); }

View File

@ -1,4 +1,4 @@
/* OSCR Help Implementation /* OSCAR Help Implementation
* *
* Copyright (c) 2018 Mark Watkins <mark@jedimark.net> * Copyright (c) 2018 Mark Watkins <mark@jedimark.net>
* *
@ -62,7 +62,7 @@ Help::Help(QWidget *parent) :
if (QFile::exists(helpIndex)) QFile::remove(helpIndex); if (QFile::exists(helpIndex)) QFile::remove(helpIndex);
helpEngine = new QHelpEngine(helpIndex); helpEngine = new QHelpEngine(helpIndex);
helpNamespace = "nightowlsoftware.ca.OSCR_Guide"; helpNamespace = "nightowlsoftware.ca.OSCAR_Guide";
if (!helpFile.isEmpty()) { if (!helpFile.isEmpty()) {
if (!helpEngine->setupData()) { if (!helpEngine->setupData()) {

View File

@ -155,10 +155,10 @@ int main(int argc, char *argv[])
if (opengl2supported) { if (opengl2supported) {
if (!settings.value(BetterBuild, false).toBool()) { if (!settings.value(BetterBuild, false).toBool()) {
QMessageBox::information(nullptr, QObject::tr("A faster build of OSCR may be available"), QMessageBox::information(nullptr, QObject::tr("A faster build of OSCAR may be available"),
QObject::tr("This build of OSCR is a compatability version that also works on computers lacking OpenGL 2.0 support.")+"<br/><br/>"+ QObject::tr("This build of OSCAR is a compatability version that also works on computers lacking OpenGL 2.0 support.")+"<br/><br/>"+
QObject::tr("However it looks like your computer has full support for OpenGL 2.0!") + "<br/><br/>"+ QObject::tr("However it looks like your computer has full support for OpenGL 2.0!") + "<br/><br/>"+
QObject::tr("This version will run fine, but a \"<b>%1</b>\" tagged build of OSCR will likely run a bit faster on your computer.").arg("-OpenGL")+"<br/><br/>"+ QObject::tr("This version will run fine, but a \"<b>%1</b>\" tagged build of OSCAR will likely run a bit faster on your computer.").arg("-OpenGL")+"<br/><br/>"+
QObject::tr("You will not be bothered with this message again."), QMessageBox::Ok, QMessageBox::Ok); QObject::tr("You will not be bothered with this message again."), QMessageBox::Ok, QMessageBox::Ok);
settings.setValue(BetterBuild, true); settings.setValue(BetterBuild, true);
} }
@ -166,7 +166,7 @@ int main(int argc, char *argv[])
#else #else
if (bad_graphics) { if (bad_graphics) {
QMessageBox::warning(nullptr, QObject::tr("Incompatible Graphics Hardware"), QMessageBox::warning(nullptr, QObject::tr("Incompatible Graphics Hardware"),
QObject::tr("This build of OSCR requires OpenGL 2.0 support to function correctly, and unfortunately your computer lacks this capability.") + "<br/><br/>"+ QObject::tr("This build of OSCAR requires OpenGL 2.0 support to function correctly, and unfortunately your computer lacks this capability.") + "<br/><br/>"+
QObject::tr("You may need to update your computers graphics drivers from the GPU makers website. %1"). QObject::tr("You may need to update your computers graphics drivers from the GPU makers website. %1").
arg(intel_graphics ? QObject::tr("(<a href='http://intel.com/support'>Intel's support site</a>)") : "")+"<br/><br/>"+ arg(intel_graphics ? QObject::tr("(<a href='http://intel.com/support'>Intel's support site</a>)") : "")+"<br/><br/>"+
QObject::tr("Because graphs will not render correctly, and it may cause crashes, this build will now exit.")+"<br/><br/>"+ QObject::tr("Because graphs will not render correctly, and it may cause crashes, this build will now exit.")+"<br/><br/>"+
@ -195,9 +195,9 @@ int main(int argc, char *argv[])
if (!havefolder && !force_data_dir) { if (!havefolder && !force_data_dir) {
if (QMessageBox::question(nullptr, STR_MessageBox_Question, if (QMessageBox::question(nullptr, STR_MessageBox_Question,
QObject::tr("Would you like OSCR to use this location for storing its data?")+"\n\n"+ QObject::tr("Would you like OSCAR to use this location for storing its data?")+"\n\n"+
QDir::toNativeSeparators(GetAppRoot())+"\n\n"+ QDir::toNativeSeparators(GetAppRoot())+"\n\n"+
QObject::tr("If you are upgrading, don't panic, you just need to make sure this is pointed at your old OSCR data folder.")+"\n\n"+ QObject::tr("If you are upgrading, don't panic, you just need to make sure this is pointed at your old OSCAR data folder.")+"\n\n"+
QObject::tr("(If you are unsure, just click yes.)"), QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes) == QMessageBox::Yes) { QObject::tr("(If you are unsure, just click yes.)"), QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes) == QMessageBox::Yes) {
settings.setValue("Settings/AppRoot", GetAppRoot()); settings.setValue("Settings/AppRoot", GetAppRoot());
change_data_dir = false; change_data_dir = false;
@ -208,17 +208,17 @@ retry_directory:
if (change_data_dir) { if (change_data_dir) {
QString datadir = QFileDialog::getExistingDirectory(nullptr, QString datadir = QFileDialog::getExistingDirectory(nullptr,
QObject::tr("Choose or create new folder for OSCR data"), GetAppRoot(), QObject::tr("Choose or create new folder for OSCAR data"), GetAppRoot(),
QFileDialog::ShowDirsOnly); QFileDialog::ShowDirsOnly);
if (datadir.isEmpty()) { if (datadir.isEmpty()) {
if (!havefolder) { if (!havefolder) {
QMessageBox::information(nullptr, QObject::tr("Exiting"), QMessageBox::information(nullptr, QObject::tr("Exiting"),
QObject::tr("As you did not select a data folder, OSCR will exit.")+"\n\n"+QObject::tr("Next time you run, you will be asked again.")); QObject::tr("As you did not select a data folder, OSCAR will exit.")+"\n\n"+QObject::tr("Next time you run, you will be asked again."));
return 0; return 0;
} else { } else {
QMessageBox::information(nullptr, STR_MessageBox_Warning, QMessageBox::information(nullptr, STR_MessageBox_Warning,
QObject::tr("You did not select a directory.")+"\n\n"+QObject::tr("OSCR will now start with your old one.")+"\n\n"+ QObject::tr("You did not select a directory.")+"\n\n"+QObject::tr("OSCAR will now start with your old one.")+"\n\n"+
QDir::toNativeSeparators(GetAppRoot()), QMessageBox::Ok); QDir::toNativeSeparators(GetAppRoot()), QMessageBox::Ok);
} }
} else { } else {
@ -229,7 +229,7 @@ retry_directory:
if (dir.count() > 2) { if (dir.count() > 2) {
// Not a new directory.. nag the user. // Not a new directory.. nag the user.
if (QMessageBox::question(nullptr, STR_MessageBox_Warning, if (QMessageBox::question(nullptr, STR_MessageBox_Warning,
QObject::tr("The folder you chose is not empty, nor does it already contain valid OSCR data.") + QObject::tr("The folder you chose is not empty, nor does it already contain valid OSCAR data.") +
"\n\n"+QObject::tr("Are you sure you want to use this folder?")+"\n\n" + "\n\n"+QObject::tr("Are you sure you want to use this folder?")+"\n\n" +
datadir, QMessageBox::Yes, QMessageBox::No) == QMessageBox::No) { datadir, QMessageBox::Yes, QMessageBox::No) == QMessageBox::No) {
goto retry_directory; goto retry_directory;
@ -293,7 +293,7 @@ retry_directory:
// check_updates = false; // check_updates = false;
} else if (vc > 0) { } else if (vc > 0) {
if (QMessageBox::warning(nullptr, STR_MessageBox_Error, if (QMessageBox::warning(nullptr, STR_MessageBox_Error,
QObject::tr("The version of OSCR you just ran is OLDER than the one used to create this data (%1)."). QObject::tr("The version of OSCAR you just ran is OLDER than the one used to create this data (%1).").
arg(AppSetting->versionString()) +"\n\n"+ arg(AppSetting->versionString()) +"\n\n"+
QObject::tr("It is likely that doing this will cause data corruption, are you sure you want to do this?"), QObject::tr("It is likely that doing this will cause data corruption, are you sure you want to do this?"),
QMessageBox::Yes | QMessageBox::No, QMessageBox::No) == QMessageBox::No) { QMessageBox::Yes | QMessageBox::No, QMessageBox::No) == QMessageBox::No) {

View File

@ -69,7 +69,7 @@ MainWindow::MainWindow(QWidget *parent) :
ui(new Ui::MainWindow) ui(new Ui::MainWindow)
{ {
ui->setupUi(this); ui->setupUi(this);
ui->logText->setPlainText("00000: Startup: OSCR Logger initialized"); ui->logText->setPlainText("00000: Startup: OSCAR Logger initialized");
if (logger) { if (logger) {
connect(logger, SIGNAL(outputLog(QString)), this, SLOT(logMessage(QString))); connect(logger, SIGNAL(outputLog(QString)), this, SLOT(logMessage(QString)));
@ -88,7 +88,7 @@ MainWindow::MainWindow(QWidget *parent) :
systray->show(); systray->show();
systraymenu = new QMenu(this); systraymenu = new QMenu(this);
systray->setContextMenu(systraymenu); systray->setContextMenu(systraymenu);
QAction *a = systraymenu->addAction(STR_TR_OSCR + " v" + VersionString); QAction *a = systraymenu->addAction(STR_TR_OSCAR + " v" + VersionString);
a->setEnabled(false); a->setEnabled(false);
systraymenu->addSeparator(); systraymenu->addSeparator();
systraymenu->addAction(tr("&About"), this, SLOT(on_action_About_triggered())); systraymenu->addAction(tr("&About"), this, SLOT(on_action_About_triggered()));
@ -105,7 +105,7 @@ MainWindow::MainWindow(QWidget *parent) :
void MainWindow::SetupGUI() void MainWindow::SetupGUI()
{ {
QString version = getBranchVersion(); QString version = getBranchVersion();
setWindowTitle(STR_TR_OSCR + QString(" %1").arg(version)); setWindowTitle(STR_TR_OSCAR + QString(" %1").arg(version));
#ifdef Q_OS_MAC #ifdef Q_OS_MAC
@ -234,7 +234,7 @@ void MainWindow::closeEvent(QCloseEvent * event)
static bool runonce = false; static bool runonce = false;
if (!runonce) { if (!runonce) {
if (AppSetting->removeCardReminder()) { if (AppSetting->removeCardReminder()) {
Notify(QObject::tr("Don't forget to place your datacard back in your CPAP machine"), QObject::tr("OSCR Reminder")); Notify(QObject::tr("Don't forget to place your datacard back in your CPAP machine"), QObject::tr("OSCAR Reminder"));
QThread::msleep(1000); QThread::msleep(1000);
QApplication::processEvents(); QApplication::processEvents();
} }
@ -279,7 +279,7 @@ void MainWindow::log(QString text)
void MainWindow::Notify(QString s, QString title, int ms) void MainWindow::Notify(QString s, QString title, int ms)
{ {
if (title.isEmpty()) { if (title.isEmpty()) {
title = tr("%1 %2").arg(STR_TR_OSCR).arg(STR_TR_AppVersion); title = tr("%1 %2").arg(STR_TR_OSCAR).arg(STR_TR_AppVersion);
} }
if (systray) { if (systray) {
QString msg = s; QString msg = s;
@ -391,8 +391,8 @@ bool MainWindow::OpenProfile(QString profileName, bool skippassword)
if (lockhost.compare(QHostInfo::localHostName()) != 0) { if (lockhost.compare(QHostInfo::localHostName()) != 0) {
if (QMessageBox::warning(nullptr, STR_MessageBox_Warning, if (QMessageBox::warning(nullptr, STR_MessageBox_Warning,
QObject::tr("There is a lockfile already present for this profile '%1', claimed on '%2'.").arg(prof->user->userName()).arg(lockhost)+"\n\n"+ QObject::tr("There is a lockfile already present for this profile '%1', claimed on '%2'.").arg(prof->user->userName()).arg(lockhost)+"\n\n"+
QObject::tr("You can only work with one instance of an individual OSCR profile at a time.")+"\n\n"+ QObject::tr("You can only work with one instance of an individual OSCAR profile at a time.")+"\n\n"+
QObject::tr("If you are using cloud storage, make sure OSCR is closed and syncing has completed first on the other computer before proceeding."), QObject::tr("If you are using cloud storage, make sure OSCAR is closed and syncing has completed first on the other computer before proceeding."),
QMessageBox::Cancel |QMessageBox::Ok, QMessageBox::Cancel) == QMessageBox::Cancel) { QMessageBox::Cancel |QMessageBox::Ok, QMessageBox::Cancel) == QMessageBox::Cancel) {
return false; return false;
} }
@ -413,7 +413,7 @@ bool MainWindow::OpenProfile(QString profileName, bool skippassword)
for (QList<Machine *>::iterator it = machines.begin(); it != machines.end(); ++it) { for (QList<Machine *>::iterator it = machines.begin(); it != machines.end(); ++it) {
QString mclass=(*it)->loaderName(); QString mclass=(*it)->loaderName();
if (mclass == STR_MACH_ResMed) { if (mclass == STR_MACH_ResMed) {
qDebug() << "ResMed machine found.. locking OSCR preferences to suit it's summary system"; qDebug() << "ResMed machine found.. locking OSCAR preferences to suit it's summary system";
// Have to sacrifice these features to get access to summary data. // Have to sacrifice these features to get access to summary data.
p_profile->session->setCombineCloseSessions(0); p_profile->session->setCombineCloseSessions(0);
@ -484,7 +484,7 @@ bool MainWindow::OpenProfile(QString profileName, bool skippassword)
PopulatePurgeMenu(); PopulatePurgeMenu();
AppSetting->setProfileName(p_profile->user->userName()); AppSetting->setProfileName(p_profile->user->userName());
setWindowTitle(STR_TR_OSCR + QString(" %1 (" + tr("Profile") + ": %2)").arg(getBranchVersion()).arg(AppSetting->profileName())); setWindowTitle(STR_TR_OSCAR + QString(" %1 (" + tr("Profile") + ": %2)").arg(getBranchVersion()).arg(AppSetting->profileName()));
ui->oximetryButton->setDisabled(false); ui->oximetryButton->setDisabled(false);
ui->dailyButton->setDisabled(false); ui->dailyButton->setDisabled(false);
@ -1024,16 +1024,16 @@ QString MainWindow::getWelcomeHTML()
"<body leftmargin=0 topmargin=0 rightmargin=0>" "<body leftmargin=0 topmargin=0 rightmargin=0>"
"<table width=\"100%\" cellspacing=0 cellpadding=4 border=0 >" "<table width=\"100%\" cellspacing=0 cellpadding=4 border=0 >"
"<tr><td bgcolor=\"#d0d0d0\" colspan=2 cellpadding=0 valign=center align=center><font color=\"black\" size=+1><b>" "<tr><td bgcolor=\"#d0d0d0\" colspan=2 cellpadding=0 valign=center align=center><font color=\"black\" size=+1><b>"
+ tr("Welcome to OSCR") + "</b></font></td></tr>" + tr("Welcome to OSCAR") + "</b></font></td></tr>"
"<tr>" "<tr>"
"<td valign=\"top\" leftmargin=0 cellpadding=6>" "<td valign=\"top\" leftmargin=0 cellpadding=6>"
"<h3>" + tr("About OSCR") + "</h3>" "<h3>" + tr("About OSCAR") + "</h3>"
"<p>" + tr("This software has been created to assist you in reviewing the data produced by CPAP Machines, used in the treatment of various Sleep Disorders.") "<p>" + tr("This software has been created to assist you in reviewing the data produced by CPAP Machines, used in the treatment of various Sleep Disorders.")
+ "</p>" + "</p>"
"<p>" + tr("OSCR has been designed by a software developer with personal experience with a sleep disorder, and shaped by the feedback of many other willing testers dealing with similar conditions.") "<p>" + tr("OSCAR has been designed by a software developer with personal experience with a sleep disorder, and shaped by the feedback of many other willing testers dealing with similar conditions.")
+ "</p>" + "</p>"
"<p><i><b>" + tr("This is a beta release, some features may not yet behave as expected.") + "<p><i><b>" + tr("This is a beta release, some features may not yet behave as expected.") +
"</b></i><br/>" + tr("Please report any bugs you find to the OSCR developer's group.") + "</p>" "</b></i><br/>" + tr("Please report any bugs you find to the OSCAR developer's group.") + "</p>"
"<h3>" + tr("Currenly supported machines:") + "</h3>" "<h3>" + tr("Currenly supported machines:") + "</h3>"
"<b>" + tr("CPAP") + "</b>" "<b>" + tr("CPAP") + "</b>"
@ -1679,7 +1679,7 @@ void MainWindow::RestartApplication(bool force_login, QString cmdline)
args << "-n"; // -n option is important, as it opens a new process args << "-n"; // -n option is important, as it opens a new process
args << apppath; args << apppath;
args << "--args"; // OSCR binary options after this args << "--args"; // OSCAR binary options after this
args << "-p"; // -p starts with 1 second delay, to give this process time to save.. args << "-p"; // -p starts with 1 second delay, to give this process time to save..
@ -1835,14 +1835,14 @@ void MainWindow::on_actionRebuildCPAP(QAction *action)
tr("Are you sure you want to rebuild all CPAP data for the following machine:\n\n") + tr("Are you sure you want to rebuild all CPAP data for the following machine:\n\n") +
mach->brand() + " " + mach->model() + " " + mach->brand() + " " + mach->model() + " " +
mach->modelnumber() + " (" + mach->serial() + ")\n\n" + mach->modelnumber() + " (" + mach->serial() + ")\n\n" +
tr("Please note, that this could result in loss of graph data if OSCR's backups have been disabled or interfered with in any way."), tr("Please note, that this could result in loss of graph data if OSCAR's backups have been disabled or interfered with in any way."),
QMessageBox::Yes | QMessageBox::No, QMessageBox::No) == QMessageBox::No) { QMessageBox::Yes | QMessageBox::No, QMessageBox::No) == QMessageBox::No) {
return; return;
} }
} else { } else {
if (QMessageBox::question(this, if (QMessageBox::question(this,
STR_MessageBox_Warning, STR_MessageBox_Warning,
"<p><b>"+STR_MessageBox_Warning+": </b>"+tr("For some reason, OSCR does not have any backups for the following machine:")+ "</p>" + "<p><b>"+STR_MessageBox_Warning+": </b>"+tr("For some reason, OSCAR does not have any backups for the following machine:")+ "</p>" +
"<p>"+mach->brand() + " " + mach->model() + " " + mach->modelnumber() + " (" + mach->serial() + ")</p>"+ "<p>"+mach->brand() + " " + mach->model() + " " + mach->modelnumber() + " (" + mach->serial() + ")</p>"+
"<p>"+tr("Provided you have made <i>your <b>own</b> backups for ALL of your CPAP data</i>, you can still complete this operation, but you will have to restore from your backups manually.")+"</p>" + "<p>"+tr("Provided you have made <i>your <b>own</b> backups for ALL of your CPAP data</i>, you can still complete this operation, but you will have to restore from your backups manually.")+"</p>" +
"<p><b>"+tr("Are you really sure you want to do this?")+"</b></p>", "<p><b>"+tr("Are you really sure you want to do this?")+"</b></p>",
@ -1897,7 +1897,7 @@ void MainWindow::on_actionPurgeMachine(QAction *action)
if (QMessageBox::question(this, STR_MessageBox_Warning, if (QMessageBox::question(this, STR_MessageBox_Warning,
"<p><b>"+STR_MessageBox_Warning+":</b> " + "<p><b>"+STR_MessageBox_Warning+":</b> " +
tr("You are about to <font size=+2>obliterate</font> OSCR's machine database for the following machine:</p>") + tr("You are about to <font size=+2>obliterate</font> OSCAR's machine database for the following machine:</p>") +
"<p>"+mach->brand() + " " + mach->model() + " " + mach->modelnumber() + " (" + mach->serial() + ")" + "</p>" + "<p>"+mach->brand() + " " + mach->model() + " " + mach->modelnumber() + " (" + mach->serial() + ")" + "</p>" +
"<p>"+tr("Note as a precaution, the backup folder will be left in place.")+"</p>"+ "<p>"+tr("Note as a precaution, the backup folder will be left in place.")+"</p>"+
"<p>"+tr("Are you <b>absolutely sure</b> you want to proceed?")+"</p>", "<p>"+tr("Are you <b>absolutely sure</b> you want to proceed?")+"</p>",
@ -2236,10 +2236,10 @@ void MainWindow::on_actionSleep_Disorder_Terms_Glossary_triggered()
QMessageBox::information(nullptr, STR_MessageBox_Information, tr("The Glossary is not yet implemented")); QMessageBox::information(nullptr, STR_MessageBox_Information, tr("The Glossary is not yet implemented"));
} }
void MainWindow::on_actionHelp_Support_OSCR_Development_triggered() void MainWindow::on_actionHelp_Support_OSCAR_Development_triggered()
{ {
// QDesktopServices().openUrl(QUrl("https://sleepyhead.jedimark.net/donate.php")); // QDesktopServices().openUrl(QUrl("https://sleepyhead.jedimark.net/donate.php"));
QMessageBox::information(nullptr, STR_MessageBox_Information, tr("Donations are not yet implemented")); QMessageBox::information(nullptr, STR_MessageBox_Information, tr("Donations are not implemented"));
} }
void MainWindow::on_actionChange_Language_triggered() void MainWindow::on_actionChange_Language_triggered()

View File

@ -38,7 +38,7 @@ class MainWindow;
\section intro_sec Introduction \section intro_sec Introduction
OpenSource CPAP Reviewer (OSCR) is a program derived from the SleepyHead program written by Mark Watkins. OpenSource CPAP Reviewer (OSCAR) is a program derived from the SleepyHead program written by Mark Watkins.
SleepyHead is Cross-Platform Open-Source software for reviewing data from %CPAP machines, which are used in the treatment of Sleep Disorders. SleepyHead is Cross-Platform Open-Source software for reviewing data from %CPAP machines, which are used in the treatment of Sleep Disorders.
@ -267,7 +267,7 @@ class MainWindow : public QMainWindow
void on_actionSleep_Disorder_Terms_Glossary_triggered(); void on_actionSleep_Disorder_Terms_Glossary_triggered();
void on_actionHelp_Support_OSCR_Development_triggered(); void on_actionHelp_Support_OSCAR_Development_triggered();
void aboutBoxLinkClicked(const QUrl &url); void aboutBoxLinkClicked(const QUrl &url);

View File

@ -438,7 +438,7 @@
</palette> </palette>
</property> </property>
<property name="windowTitle"> <property name="windowTitle">
<string>OSCR</string> <string>OSCAR</string>
</property> </property>
<property name="windowIcon"> <property name="windowIcon">
<iconset resource="Resources.qrc"> <iconset resource="Resources.qrc">
@ -2969,7 +2969,7 @@ p, li { white-space: pre-wrap; }
</action> </action>
<action name="action_About"> <action name="action_About">
<property name="text"> <property name="text">
<string>&amp;About OSCR</string> <string>&amp;About OSCAR</string>
</property> </property>
</action> </action>
<action name="action_Fullscreen"> <action name="action_Fullscreen">

View File

@ -111,10 +111,10 @@ QString NewProfile::getIntroHTML()
"<p>" + tr("This software is being designed to assist you in reviewing the data produced by your CPAP machines and related equipment.") "<p>" + tr("This software is being designed to assist you in reviewing the data produced by your CPAP machines and related equipment.")
+ "</p>" + "</p>"
"<p>" + tr("OSCR has been released freely under the <a href='qrc:/COPYING'>GNU Public License v3</a>, and comes with no warranty, and without ANY claims to fitness for any purpose.") "<p>" + tr("OSCAR has been released freely under the <a href='qrc:/COPYING'>GNU Public License v3</a>, and comes with no warranty, and without ANY claims to fitness for any purpose.")
+ "</p>" + "</p>"
"<div align=center><font color=\"red\"><h2>" + tr("PLEASE READ CAREFULLY") + "</h2></font></div>" "<div align=center><font color=\"red\"><h2>" + tr("PLEASE READ CAREFULLY") + "</h2></font></div>"
"<p>" + tr("OSCR is intended merely as a data viewer, and definitely not a substitute for competent medical guidance from your Doctor.") "<p>" + tr("OSCAR is intended merely as a data viewer, and definitely not a substitute for competent medical guidance from your Doctor.")
+ "</p>" + "</p>"
"<p>" + tr("Accuracy of any data displayed is not and can not be guaranteed.") + "</p>" "<p>" + tr("Accuracy of any data displayed is not and can not be guaranteed.") + "</p>"
@ -129,7 +129,7 @@ QString NewProfile::getIntroHTML()
"<p><b><font size=+1>" + tr("Use of this software is entirely at your own risk.") + "<p><b><font size=+1>" + tr("Use of this software is entirely at your own risk.") +
"</font></b></p>" "</font></b></p>"
"<p><i>" + tr("OSCR is copyright &copy;2011-2018 Mark Watkins and portions &copy;2019 Nightowl Software") + "<i></p>" "<p><i>" + tr("OSCAR is copyright &copy;2011-2018 Mark Watkins and portions &copy;2019 Nightowl Software") + "<i></p>"
"</div>" "</div>"
"</body>" "</body>"
"</html>"; "</html>";

View File

@ -874,7 +874,7 @@
</font> </font>
</property> </property>
<property name="text"> <property name="text">
<string>OSCR</string> <string>OSCAR</string>
</property> </property>
<property name="alignment"> <property name="alignment">
<set>Qt::AlignHCenter|Qt::AlignTop</set> <set>Qt::AlignHCenter|Qt::AlignTop</set>

View File

@ -1113,9 +1113,9 @@ void OximeterImport::setInformation()
"<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">" "<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">"
+tr("Pulse Oximeters are medical devices used to measure blood oxygen saturation. During extended Apnea events and abnormal breathing patterns, blood oxygen saturation levels can drop significantly, and can indicate issues that need medical attention.")+"</p>" +tr("Pulse Oximeters are medical devices used to measure blood oxygen saturation. During extended Apnea events and abnormal breathing patterns, blood oxygen saturation levels can drop significantly, and can indicate issues that need medical attention.")+"</p>"
"<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">" "<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">"
+tr("OSCR gives you the ability to track Oximetry data alongside CPAP session data, which can give valuable insight into the effectiveness of CPAP treatment. It will also work standalone with your Pulse Oximeter, allowing you to store, track and review your recorded data.")+"</p>" +tr("OSCAR gives you the ability to track Oximetry data alongside CPAP session data, which can give valuable insight into the effectiveness of CPAP treatment. It will also work standalone with your Pulse Oximeter, allowing you to store, track and review your recorded data.")+"</p>"
"<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">" "<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">"
+tr("OSCR is currently compatible with Contec CMS50D+, CMS50E, CMS50F and CMS50I serial oximeters.<br/>(Note: Direct importing from bluetooth models is <span style=\" font-weight:600;\">probaby not</span> possible yet)")+"</p>" +tr("OSCAR is currently compatible with Contec CMS50D+, CMS50E, CMS50F and CMS50I serial oximeters.<br/>(Note: Direct importing from bluetooth models is <span style=\" font-weight:600;\">probaby not</span> possible yet)")+"</p>"
"<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">" "<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">"
+tr("You may wish to note, other companies, such as Pulox, simply rebadge Contec CMS50's under new names, such as the Pulox PO-200, PO-300, PO-400. These should also work.")+"</p>" +tr("You may wish to note, other companies, such as Pulox, simply rebadge Contec CMS50's under new names, such as the Pulox PO-200, PO-300, PO-400. These should also work.")+"</p>"
@ -1127,7 +1127,7 @@ void OximeterImport::setInformation()
+tr("If you are trying to sync oximetry and CPAP data, please make sure you imported your CPAP sessions first before proceeding!")+"</span></p>" +tr("If you are trying to sync oximetry and CPAP data, please make sure you imported your CPAP sessions first before proceeding!")+"</span></p>"
"<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">" "<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">"
"<span style=\" font-weight:600;\">"+tr("Important Notes:")+" </span>" "<span style=\" font-weight:600;\">"+tr("Important Notes:")+" </span>"
+tr("For OSCR to be able to locate and read directly from your Oximeter device, you need to ensure the correct device drivers (eg. USB to Serial UART) have been installed on your computer. For more information about this, %1click here%2.").arg("<a href=\"http://www.silabs.com/products/mcu/pages/usbtouartbridgevcpdrivers.aspx\"><span style=\" text-decoration: underline; color:#0000ff;\">").arg("</span></a>")+"</p>" +tr("For OSCAR to be able to locate and read directly from your Oximeter device, you need to ensure the correct device drivers (eg. USB to Serial UART) have been installed on your computer. For more information about this, %1click here%2.").arg("<a href=\"http://www.silabs.com/products/mcu/pages/usbtouartbridgevcpdrivers.aspx\"><span style=\" text-decoration: underline; color:#0000ff;\">").arg("</span></a>")+"</p>"
"<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">" "<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">"
+tr("Contec CMS50D+ devices do not have an internal clock, and do not record a starting time. If you do not have a CPAP session to link a recording to, you will have to enter the start time manually after the import process is completed.")+"</p>" +tr("Contec CMS50D+ devices do not have an internal clock, and do not record a starting time. If you do not have a CPAP session to link a recording to, you will have to enter the start time manually after the import process is completed.")+"</p>"
"<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">" "<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">"

View File

@ -964,7 +964,7 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc)
</font> </font>
</property> </property>
<property name="text"> <property name="text">
<string>CMS50E/F users, when importing directly, please don't select upload on your device until OSCR prompts you to.</string> <string>CMS50E/F users, when importing directly, please don't select upload on your device until OSCAR prompts you to.</string>
</property> </property>
<property name="alignment"> <property name="alignment">
<set>Qt::AlignCenter</set> <set>Qt::AlignCenter</set>
@ -1001,7 +1001,7 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc)
<item> <item>
<widget class="QCheckBox" name="cms50SyncTime"> <widget class="QCheckBox" name="cms50SyncTime">
<property name="toolTip"> <property name="toolTip">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;If enabled, OSCR will automatically reset your CMS50's internal clock using your computers current time.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string> <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;If enabled, OSCAR will automatically reset your CMS50's internal clock using your computers current time.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property> </property>
<property name="text"> <property name="text">
<string>Set device date/time</string> <string>Set device date/time</string>
@ -1074,7 +1074,7 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc)
<item> <item>
<widget class="QCheckBox" name="cms50EraseAfterwards"> <widget class="QCheckBox" name="cms50EraseAfterwards">
<property name="toolTip"> <property name="toolTip">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This option will erase the imported session from your oximeter after import has completed. &lt;/p&gt;&lt;p&gt;Use with caution, becauseif something goes wrong before OSCR saves your session, you won't get it back.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string> <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This option will erase the imported session from your oximeter after import has completed. &lt;/p&gt;&lt;p&gt;Use with caution, becauseif something goes wrong before OSCAR saves your session, you won't get it back.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property> </property>
<property name="text"> <property name="text">
<string>Erase session after successful upload</string> <string>Erase session after successful upload</string>
@ -1645,7 +1645,7 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc)
</sizepolicy> </sizepolicy>
</property> </property>
<property name="text"> <property name="text">
<string>Please choose which one you want to import into OSCR</string> <string>Please choose which one you want to import into OSCAR</string>
</property> </property>
<property name="alignment"> <property name="alignment">
<set>Qt::AlignCenter</set> <set>Qt::AlignCenter</set>
@ -1822,7 +1822,7 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc)
</sizepolicy> </sizepolicy>
</property> </property>
<property name="text"> <property name="text">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;OSCR needs a starting time to know where to save this oximetry session to.&lt;/p&gt;&lt;p&gt;Choose one of the following options:&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string> <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;OSCAR needs a starting time to know where to save this oximetry session to.&lt;/p&gt;&lt;p&gt;Choose one of the following options:&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property> </property>
<property name="alignment"> <property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set> <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>

View File

@ -61,7 +61,7 @@ PreferencesDialog::PreferencesDialog(QWidget *parent, Profile *_profile) :
#ifdef LOCK_RESMED_SESSIONS #ifdef LOCK_RESMED_SESSIONS
// Remove access to session splitting options and show ResMed users a notice instead // Remove access to session splitting options and show ResMed users a notice instead
ui->ResMedWarning->setText(tr("<p><b>Please Note:</b> OSCR's advanced session splitting capabilities are not possible with <b>ResMed</b> machines due to a limitation in the way their settings and summary data is stored, and therefore they have been disabled for this profile.</p><p>On ResMed machines, days will <b>split at noon</b> like in ResMed's commercial software.</p>")); ui->ResMedWarning->setText(tr("<p><b>Please Note:</b> OSCAR's advanced session splitting capabilities are not possible with <b>ResMed</b> machines due to a limitation in the way their settings and summary data is stored, and therefore they have been disabled for this profile.</p><p>On ResMed machines, days will <b>split at noon</b> like in ResMed's commercial software.</p>"));
ui->ResMedWarning->setVisible(haveResMed); ui->ResMedWarning->setVisible(haveResMed);
if (haveResMed) { if (haveResMed) {
@ -1120,7 +1120,7 @@ void PreferencesDialog::on_createSDBackups_toggled(bool checked)
if (haveS9 && QMessageBox::question(this, if (haveS9 && QMessageBox::question(this,
tr("This may not be a good idea"), tr("This may not be a good idea"),
tr("ResMed S9 machines routinely delete certain data from your SD card older than 7 and 30 days (depending on resolution).") + tr("ResMed S9 machines routinely delete certain data from your SD card older than 7 and 30 days (depending on resolution).") +
tr(" If you ever need to reimport this data again (whether in OSCR or ResScan) this data won't come back.") + tr(" If you ever need to reimport this data again (whether in OSCAR or ResScan) this data won't come back.") +
tr(" If you need to conserve disk space, please remember to carry out manual backups.") + tr(" If you need to conserve disk space, please remember to carry out manual backups.") +
tr(" Are you sure you want to disable these backups?"), tr(" Are you sure you want to disable these backups?"),
QMessageBox::Yes, QMessageBox::No) == QMessageBox::No) { QMessageBox::Yes, QMessageBox::No) == QMessageBox::No) {
@ -1166,7 +1166,7 @@ void PreferencesDialog::on_createSDBackups_clicked(bool checked)
{ {
if (!checked && p_profile->session->backupCardData()) { if (!checked && p_profile->session->backupCardData()) {
if (QMessageBox::question(this, if (QMessageBox::question(this,
STR_MessageBox_Warning, tr("Switching off backups is not a good idea, because OSCR needs these to rebuild the database if errors are found.\n\n") + STR_MessageBox_Warning, tr("Switching off backups is not a good idea, because OSCAR needs these to rebuild the database if errors are found.\n\n") +
tr("Are you really sure you want to do this?"), QMessageBox::Yes | QMessageBox::No, QMessageBox::No) == QMessageBox::Yes) { tr("Are you really sure you want to do this?"), QMessageBox::Yes | QMessageBox::No, QMessageBox::No) == QMessageBox::Yes) {
// do nothing // do nothing
} else { } else {

View File

@ -1,4 +1,4 @@
/* OSCR Preferences Dialog Headers /* OSCAR Preferences Dialog Headers
* *
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net> * Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
* *
@ -37,9 +37,9 @@ class MySortFilterProxyModel: public QSortFilterProxyModel
}; };
/*! \class PreferencesDialog /*! \class PreferencesDialog
\brief OSCR's Main Preferences Window \brief OSCAR's Main Preferences Window
This provides the Preferences form and logic to alter Preferences for OSCR This provides the Preferences form and logic to alter Preferences for OSCAR
*/ */
class PreferencesDialog : public QDialog class PreferencesDialog : public QDialog
{ {

View File

@ -432,7 +432,7 @@ p, li { white-space: pre-wrap; }
Backed up EDF files are stored in the .gz format, Backed up EDF files are stored in the .gz format,
which is common on Mac &amp; Linux platforms.. which is common on Mac &amp; Linux platforms..
OSCR can import from this compressed backup directory natively.. OSCAR can import from this compressed backup directory natively..
To use it with ResScan will require the .gz files to be uncompressed first..</string> To use it with ResScan will require the .gz files to be uncompressed first..</string>
</property> </property>
<property name="text"> <property name="text">
@ -448,7 +448,7 @@ To use it with ResScan will require the .gz files to be uncompressed first..</st
</font> </font>
</property> </property>
<property name="text"> <property name="text">
<string>The following options affect the amount of disk space OSCR uses, and have an effect on how long import takes.</string> <string>The following options affect the amount of disk space OSCAR uses, and have an effect on how long import takes.</string>
</property> </property>
<property name="wordWrap"> <property name="wordWrap">
<bool>true</bool> <bool>true</bool>
@ -458,12 +458,12 @@ To use it with ResScan will require the .gz files to be uncompressed first..</st
<item row="4" column="0"> <item row="4" column="0">
<widget class="QCheckBox" name="compressSessionData"> <widget class="QCheckBox" name="compressSessionData">
<property name="toolTip"> <property name="toolTip">
<string>This makes OSCR's data take around half as much space. <string>This makes OSCAR's data take around half as much space.
But it makes import and day changing take longer.. But it makes import and day changing take longer..
If you've got a new computer with a small solid state disk, this is a good option.</string> If you've got a new computer with a small solid state disk, this is a good option.</string>
</property> </property>
<property name="text"> <property name="text">
<string>Compress Session Data (makes OSCR data smaller, but day changing slower.)</string> <string>Compress Session Data (makes OSCAR data smaller, but day changing slower.)</string>
</property> </property>
</widget> </widget>
</item> </item>
@ -475,7 +475,7 @@ If you've got a new computer with a small solid state disk, this is a good optio
ResMed S9 series machines delete high resolution data older than 7 days, ResMed S9 series machines delete high resolution data older than 7 days,
and graph data older than 30 days.. and graph data older than 30 days..
OSCR can keep a copy of this data if you ever need to reinstall. OSCAR can keep a copy of this data if you ever need to reinstall.
(Highly recomended, unless your short on disk space or don't care about the graph data)</string> (Highly recomended, unless your short on disk space or don't care about the graph data)</string>
</property> </property>
<property name="text"> <property name="text">
@ -603,7 +603,7 @@ OSCR can keep a copy of this data if you ever need to reinstall.
<item row="0" column="0"> <item row="0" column="0">
<widget class="QCheckBox" name="preloadSummaries"> <widget class="QCheckBox" name="preloadSummaries">
<property name="toolTip"> <property name="toolTip">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Makes starting OSCR a bit slower, by pre-loading all the summary data in advance, which speeds up overview browsing and a few other calculations later on. &lt;/p&gt;&lt;p&gt;If you have a large amount of data, it might be worth keeping this switched off, but if you typically like to view &lt;span style=&quot; font-style:italic;&quot;&gt;everything&lt;/span&gt; in overview, all the summary data still has to be loaded anyway. &lt;/p&gt;&lt;p&gt;Note this setting doesn't affect waveform and event data, which is always demand loaded as needed.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string> <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Makes starting OSCAR a bit slower, by pre-loading all the summary data in advance, which speeds up overview browsing and a few other calculations later on. &lt;/p&gt;&lt;p&gt;If you have a large amount of data, it might be worth keeping this switched off, but if you typically like to view &lt;span style=&quot; font-style:italic;&quot;&gt;everything&lt;/span&gt; in overview, all the summary data still has to be loaded anyway. &lt;/p&gt;&lt;p&gt;Note this setting doesn't affect waveform and event data, which is always demand loaded as needed.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property> </property>
<property name="text"> <property name="text">
<string>Pre-Load all summary data at startup</string> <string>Pre-Load all summary data at startup</string>
@ -994,7 +994,7 @@ This option must be enabled before import, otherwise a purge is required.</strin
<item row="6" column="0" colspan="4"> <item row="6" column="0" colspan="4">
<widget class="QCheckBox" name="resyncMachineDetectedEvents"> <widget class="QCheckBox" name="resyncMachineDetectedEvents">
<property name="toolTip"> <property name="toolTip">
<string>This experimental option attempts to use OSCR's event flagging system to improve machine detected event positioning.</string> <string>This experimental option attempts to use OSCAR's event flagging system to improve machine detected event positioning.</string>
</property> </property>
<property name="text"> <property name="text">
<string>Resync Machine Detected Events (Experimental)</string> <string>Resync Machine Detected Events (Experimental)</string>
@ -1978,7 +1978,7 @@ Mainly affects the importer.</string>
<item row="2" column="1"> <item row="2" column="1">
<widget class="QCheckBox" name="removeCardNotificationCheckbox"> <widget class="QCheckBox" name="removeCardNotificationCheckbox">
<property name="text"> <property name="text">
<string>Show Remove Card reminder notification on OSCR shutdown</string> <string>Show Remove Card reminder notification on OSCAR shutdown</string>
</property> </property>
</widget> </widget>
</item> </item>
@ -2251,7 +2251,7 @@ p, li { white-space: pre-wrap; }
<item row="2" column="1"> <item row="2" column="1">
<widget class="QComboBox" name="openingTabCombo"> <widget class="QComboBox" name="openingTabCombo">
<property name="toolTip"> <property name="toolTip">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Which tab to open on loading a profile. (Note: It will default to Profile if OSCR is set to not open a profile on startup)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string> <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Which tab to open on loading a profile. (Note: It will default to Profile if OSCAR is set to not open a profile on startup)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property> </property>
<property name="currentText"> <property name="currentText">
<string>Profile</string> <string>Profile</string>
@ -2729,7 +2729,7 @@ this application to be unstable with this feature enabled.</string>
<item row="0" column="0"> <item row="0" column="0">
<widget class="QLabel" name="label_8"> <widget class="QLabel" name="label_8">
<property name="text"> <property name="text">
<string>Try changing this from the default setting (Desktop OpenGL) if you experience rendering problems with OSCR's graphs.</string> <string>Try changing this from the default setting (Desktop OpenGL) if you experience rendering problems with OSCAR's graphs.</string>
</property> </property>
<property name="wordWrap"> <property name="wordWrap">
<bool>true</bool> <bool>true</bool>

View File

@ -94,13 +94,13 @@ ProfileSelect::ProfileSelect(QWidget *parent) :
popupMenu->addSeparator(); popupMenu->addSeparator();
popupMenu->addAction(tr("Delete Profile"), this, SLOT(deleteProfile())); popupMenu->addAction(tr("Delete Profile"), this, SLOT(deleteProfile()));
ui->labelAppName->setText(STR_TR_OSCR); ui->labelAppName->setText(STR_TR_OSCAR);
ui->labelVersion->setText(STR_TR_AppVersion); ui->labelVersion->setText(STR_TR_AppVersion);
// if (GIT_BRANCH!="master") // if (GIT_BRANCH!="master")
// ui->labelBuild->setText(GIT_BRANCH); // ui->labelBuild->setText(GIT_BRANCH);
// else ui->labelBuild->setText(QString()); // else ui->labelBuild->setText(QString());
ui->labelFolder->setText(GetAppRoot()); ui->labelFolder->setText(GetAppRoot());
ui->labelFolder->setToolTip("Current OSCR data folder\n" + GetAppRoot()); ui->labelFolder->setToolTip("Current OSCAR data folder\n" + GetAppRoot());
ui->listView->verticalScrollBar()->setStyleSheet("QScrollBar:vertical {border: 0px solid grey; background: transparent; }" ui->listView->verticalScrollBar()->setStyleSheet("QScrollBar:vertical {border: 0px solid grey; background: transparent; }"
"QScrollBar::handle:vertical {" "QScrollBar::handle:vertical {"

View File

@ -232,7 +232,7 @@ background: qlineargradient(spread:pad, x1:0, y1:0, x2:1, y2:0, stop:0 rgba(255,
<item> <item>
<widget class="QPushButton" name="pushButton"> <widget class="QPushButton" name="pushButton">
<property name="toolTip"> <property name="toolTip">
<string>Choose a different OSCR data folder.</string> <string>Choose a different OSCAR data folder.</string>
</property> </property>
<property name="styleSheet"> <property name="styleSheet">
<string notr="true"/> <string notr="true"/>
@ -271,7 +271,7 @@ background: qlineargradient(spread:pad, x1:0, y1:0, x2:1, y2:0, stop:0 rgba(255,
<string notr="true">border: 0px;</string> <string notr="true">border: 0px;</string>
</property> </property>
<property name="text"> <property name="text">
<string>OSCR</string> <string>OSCAR</string>
</property> </property>
<property name="alignment"> <property name="alignment">
<set>Qt::AlignCenter</set> <set>Qt::AlignCenter</set>
@ -307,7 +307,7 @@ background: qlineargradient(spread:pad, x1:0, y1:0, x2:1, y2:0, stop:0 rgba(255,
<item> <item>
<widget class="QPushButton" name="quitButton"> <widget class="QPushButton" name="quitButton">
<property name="toolTip"> <property name="toolTip">
<string>Click here if you didn't want to start OSCR.</string> <string>Click here if you didn't want to start OSCAR.</string>
</property> </property>
<property name="text"> <property name="text">
<string>&amp;Quit</string> <string>&amp;Quit</string>
@ -380,7 +380,7 @@ background: qlineargradient(spread:pad, x1:0, y1:0, x2:1, y2:0, stop:0 rgba(255,
</sizepolicy> </sizepolicy>
</property> </property>
<property name="toolTip"> <property name="toolTip">
<string>The current location of OSCR data store.</string> <string>The current location of OSCAR data store.</string>
</property> </property>
<property name="styleSheet"> <property name="styleSheet">
<string notr="true">border: 0px;</string> <string notr="true">border: 0px;</string>

View File

@ -113,7 +113,7 @@
</spacer> </spacer>
</item> </item>
<item> <item>
<widget class="QLabel" name="OSCR_Logo"> <widget class="QLabel" name="OSCAR_Logo">
<property name="sizePolicy"> <property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed"> <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>1</horstretch> <horstretch>1</horstretch>
@ -159,7 +159,7 @@
</layout> </layout>
</item> </item>
<item> <item>
<widget class="QLabel" name="OSCR_Label"> <widget class="QLabel" name="OSCAR_Label">
<property name="font"> <property name="font">
<font> <font>
<pointsize>13</pointsize> <pointsize>13</pointsize>
@ -168,7 +168,7 @@
</font> </font>
</property> </property>
<property name="text"> <property name="text">
<string>OSCR</string> <string>OSCAR</string>
</property> </property>
<property name="alignment"> <property name="alignment">
<set>Qt::AlignCenter</set> <set>Qt::AlignCenter</set>

View File

@ -552,7 +552,7 @@ void Report::PrintReport(gGraphView *gv, QString name, QDate date)
} }
if (first) { if (first) {
QString footer = QObject::tr("OSCR v%1").arg(VersionString); QString footer = QObject::tr("OSCAR v%1").arg(VersionString);
QRectF bounds = painter.boundingRect(QRectF(0, virt_height, virt_width, normal_height), footer, QRectF bounds = painter.boundingRect(QRectF(0, virt_height, virt_width, normal_height), footer,
QTextOption(Qt::AlignHCenter)); QTextOption(Qt::AlignHCenter));

View File

@ -637,9 +637,9 @@ QString Statistics::htmlHeader(bool showheader)
if (showheader) { if (showheader) {
html += "<div align=center>" html += "<div align=center>"
+resizeHTMLPixmap(logoPixmap,64,64)+"<br/>" +resizeHTMLPixmap(logoPixmap,64,64)+"<br/>"
"<font size='+3'>" + STR_TR_OSCR + "</font><br/>" "<font size='+3'>" + STR_TR_OSCAR + "</font><br/>"
"<font size='+2'>" + tr("Usage Statistics") + "</font><br/>" "<font size='+2'>" + tr("Usage Statistics") + "</font><br/>"
"<font size='+1' title=\""+tr("This is for legal reasons. Sorry, not sorry. Without manufacturer support and documentation, OSCR is unsuitable as a compliance/medical reporting tool.")+"\">" + tr("(NOT approved for compliance or medical reporting purposes)")+"</font><br/>"; "<font size='+1' title=\""+tr("This is for legal reasons. Sorry, not sorry. Without manufacturer support and documentation, OSCAR is unsuitable as a compliance/medical reporting tool.")+"\">" + tr("(NOT approved for compliance or medical reporting purposes)")+"</font><br/>";
if (!userinfo.isEmpty()) html += "<br/>"+userinfo+"<br/>"; if (!userinfo.isEmpty()) html += "<br/>"+userinfo+"<br/>";
html += "</div><br/>"; html += "</div><br/>";
@ -652,8 +652,8 @@ QString Statistics::htmlFooter(bool showinfo)
if (showinfo) { if (showinfo) {
html += "<hr/><div align=center><font size='-1'><i>"; html += "<hr/><div align=center><font size='-1'><i>";
html += tr("This report was generated by OSCR v%1").arg(ShortVersionString) + "<br/>" html += tr("This report was generated by OSCAR v%1").arg(ShortVersionString) + "<br/>"
+tr("OSCR is free open-source CPAP review software"); +tr("OSCAR is free open-source CPAP review software");
html += "</i></font></div>"; html += "</i></font></div>";
} }
@ -1424,7 +1424,7 @@ void Statistics::UpdateRecordsBox()
} else { } else {
html += "<br/><b>"+tr("Want more information?")+"</b><br/>"; html += "<br/><b>"+tr("Want more information?")+"</b><br/>";
html += "<i>"+tr("OSCR needs all summary data loaded to calculate best/worst data for individual days.")+"</i><br/><br/>"; html += "<i>"+tr("OSCAR needs all summary data loaded to calculate best/worst data for individual days.")+"</i><br/><br/>";
html += "<i>"+tr("Please enable Pre-Load Summaries checkbox in preferences to make sure this data is available.")+"</i><br/><br/>"; html += "<i>"+tr("Please enable Pre-Load Summaries checkbox in preferences to make sure this data is available.")+"</i><br/><br/>";
} }