Added Language Selection Dialog, Translation Loader and Help Change Language menu option

This commit is contained in:
Mark Watkins 2013-09-15 14:20:26 +10:00
parent 439a7744c6
commit 7cba04f850
15 changed files with 873 additions and 18908 deletions

View File

@ -75,6 +75,8 @@ const QString STR_MACH_CMS50="CMS50";
const QString STR_MACH_ZEO="Zeo";
const QString STR_PREF_VersionString="VersionString";
const QString STR_PREF_Language="Language";
///////////////////////////////////////////////////////////////////////////////////////////////
// Commonly used translatable text strings

View File

@ -176,7 +176,6 @@ const QString STR_UI_Country="Country";
const QString STR_UI_Height="Height";
const QString STR_UI_Gender="Gender";
const QString STR_UI_TimeZone="TimeZone";
const QString STR_UI_Language="Language";
const QString STR_UI_DST="DST";
// OxiSettings Strings
@ -298,7 +297,6 @@ public:
if (!m_profile->contains(STR_UI_Height)) (*m_profile)[STR_UI_Height]=0.0;
if (!m_profile->contains(STR_UI_Gender)) (*m_profile)[STR_UI_Gender]=(int)GenderNotSpecified;
if (!m_profile->contains(STR_UI_TimeZone)) (*m_profile)[STR_UI_TimeZone]=QString();
if (!m_profile->contains(STR_UI_Language)) (*m_profile)[STR_UI_Language]="English";
if (!m_profile->contains(STR_UI_DST)) (*m_profile)[STR_UI_DST]=false;
}
@ -317,7 +315,6 @@ public:
const QString country() { return (*m_profile)[STR_UI_Country].toString(); }
Gender gender() { return (Gender)(*m_profile)[STR_UI_Gender].toInt(); }
const QString timeZone() { return (*m_profile)[STR_UI_TimeZone].toString(); }
const QString language() { return (*m_profile)[STR_UI_Language].toString(); }
bool daylightSaving() { return (*m_profile)[STR_UI_DST].toBool(); }
void setDOB(QDate date) { (*m_profile)[STR_UI_DOB]=date; }
@ -331,7 +328,6 @@ public:
void setCountry(QString country) { (*m_profile)[STR_UI_Country]=country; }
void setGender(Gender g) { (*m_profile)[STR_UI_Gender]=(int)g; }
void setTimeZone(QString tz) { (*m_profile)[STR_UI_TimeZone]=tz; }
void setLanguage(QString language) { (*m_profile)[STR_UI_Language]=language; }
void setDaylightSaving(bool ds) { (*m_profile)[STR_UI_DST]=ds; }
bool hasPassword() {

View File

@ -188,11 +188,11 @@ FORMS += \
UpdaterWindow.ui
TRANSLATIONS += \
Translations/sleepyhead_nl.ts \
Translations/sleepyhead_fr.ts \
Translations/sleepyhead_se.ts \
Translations/sleepyhead_de.ts \
Translations/sleepyhead_es.ts
Translations/Nederlands.nl_NL.ts \
Translations/Francais.fr.ts \
Translations/Svenska.se.ts \
Translations/Deutsch.de_DE.ts \
Translations/Espaniol.es.ts
RESOURCES += \
Resources.qrc
@ -214,6 +214,30 @@ OTHER_FILES += \
docs/changelog.txt \
docs/update_notes.html
win32 {
CONFIG(debug, debug|release) {
DDIR = $$OUT_PWD/debug/Translations
}
CONFIG(release, debug|release) {
DDIR = $$OUT_PWD/release/Translations
}
DDIR ~= s,/,\\,g
# install_trans.path = $$DDIR/Translations
# install_trans.files = $$PWD/Translations/*.qm
# INSTALLS += install_trans
TRANS_FILES += $$PWD/Translations/*.qm
TRANS_FILES_WIN = $${TRANS_FILES}
TRANS_FILES_WIN ~= s,/,\\,g
system(mkdir $$quote($$DDIR))
for(FILE,TRANS_FILES_WIN){
system(xcopy /y $$quote($$FILE) $$quote($$DDIR))
}
}
mac {
TransFiles.files = Translations
TransFiles.path = Contents/MacOS
@ -232,3 +256,4 @@ mac {

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1096,7 +1096,7 @@ void Daily::Load(QDate date)
html+="<tr><td colspan=5 align=center>&nbsp;</td></tr>";
html+=QString("<tr><td colspan=5 align=center>%1: %2 (%3)\%</td></tr>").arg(tr("SpO2 Desaturations")).arg(oxi->count(OXI_SPO2Drop)).arg((100.0/oxi->hours()) * (oxi->sum(OXI_SPO2Drop)/3600.0),0,'f',2);
html+=QString("<tr><td colspan=5 align=center>%1: %2 (%3)\%</td></tr>").arg(tr("Pulse Change events")).arg(oxi->count(OXI_PulseChange)).arg((100.0/oxi->hours()) * (oxi->sum(OXI_PulseChange)/3600.0),0,'f',2);
html+=QString("<tr><td colspan=5 align=center>%1: %2\%</td></tr>").arg(tr("SpO2 Baseline Used")).arg(oxi->settings_wavg(OXI_SPO2Drop),0,'f',2);
html+=QString("<tr><td colspan=5 align=center>%1: %2\%</td></tr>").arg(tr("SpO2 Baseline Used")).arg(oxi->settings_wavg(OXI_SPO2Drop),0,'f',2); // CHECKME: Should this value be wavg OXI_SPO2 isntead?
}
if (cpap && cpap->hasEnabledSessions()) {

View File

@ -15,6 +15,8 @@
#include <QWebView>
#include <QTranslator>
#include <QDir>
#include <QComboBox>
#include <QPushButton>
#include "SleepLib/schema.h"
#include "mainwindow.h"
@ -159,30 +161,6 @@ int main(int argc, char *argv[])
}
}
QDir dir(QCoreApplication::applicationDirPath()+"/Translations/");
dir.setFilter(QDir::Files);
dir.setNameFilters(QStringList("*.qm"));
qDebug() << "Available Translations";
QFileInfoList list=dir.entryInfoList();
for (int i=0;i<list.size();++i) {
QFileInfo fi=list.at(i);
qDebug() << fi.fileName();
}
QTranslator translator;
//
//QString transfile="sleepyhead_nl";
//qDebug() << "Loading" << QCoreApplication::applicationDirPath()+"/Translations/"+transfile;
//translator.load(transfile,QCoreApplication::applicationDirPath()+"/Translations");
translator.load("sleepyhead_"+QLocale::system().name(),QCoreApplication::applicationDirPath()+"/Translations");
a.installTranslator(&translator);
a.setApplicationName(STR_TR_SleepyHead);
initialize();
////////////////////////////////////////////////////////////////////////////////////////////
// Register Importer Modules
////////////////////////////////////////////////////////////////////////////////////////////
@ -196,8 +174,7 @@ int main(int argc, char *argv[])
// Scan for user profiles
Profiles::Scan();
//qRegisterMetaType<Preference>("Preference");
PREF["AppName"]=STR_TR_SleepyHead;
PREF["AppName"]=STR_TR_SleepyHead;
// Skip login screen, unless asked not to on the command line
bool skip_login=PREF.ExistsAndTrue(STR_GEN_SkipLogin);
@ -213,6 +190,74 @@ int main(int argc, char *argv[])
PREF[STR_PREF_AllowEarlyUpdates]=false;
}
////////////////////////////////////////////////////////////////////////////////////////////
// Language Selection
////////////////////////////////////////////////////////////////////////////////////////////
QDialog langsel(NULL,Qt::CustomizeWindowHint|Qt::WindowTitleHint);
langsel.setWindowTitle(QObject::tr("Language"));
QHBoxLayout lang_layout(&langsel);
QComboBox lang_combo(&langsel);
QPushButton lang_okbtn("->",&langsel);
lang_layout.addWidget(&lang_combo,1);
lang_layout.addWidget(&lang_okbtn);
QString transdir=QCoreApplication::applicationDirPath()+"/Translations/";
QDir dir(transdir);
qDebug() << "Scanning \"" << transdir << "\" for translations";
dir.setFilter(QDir::Files);
dir.setNameFilters(QStringList("*.qm"));
qDebug() << "Available Translations";
QFileInfoList list=dir.entryInfoList();
QString language=PREF[STR_PREF_Language].toString();
bool langok=false;
QString langfile,langname;
// Fake english for now..
lang_combo.addItem("English","English.en_US.qm");
// Scan translation directory
for (int i=0;i<list.size();++i) {
QFileInfo fi=list.at(i);
langname=fi.fileName().section('.',0,0);
lang_combo.addItem(langname,fi.fileName());
qDebug() << "Found Translation" << QDir::toNativeSeparators(fi.fileName());
}
for (int i=0;i<lang_combo.count();i++) {
langname=lang_combo.itemText(i);
if (langname==language) {
langfile=lang_combo.itemData(i).toString();
break;
}
}
if (langfile.isEmpty()) {
langsel.connect(&lang_okbtn,SIGNAL(clicked()),&langsel, SLOT(close()));
langsel.exec();
langsel.disconnect(&lang_okbtn,SIGNAL(clicked()),&langsel, SLOT(close()));
langfile=lang_combo.currentText();
PREF[STR_PREF_Language]=langfile;
}
qDebug() << "Loading Translation" << langfile;
QTranslator translator;
translator.load(langfile,QCoreApplication::applicationDirPath()+"/Translations");
a.installTranslator(&translator);
a.setApplicationName(STR_TR_SleepyHead);
initialize();
////////////////////////////////////////////////////////////////////////////////////////////
// Check when last checked for updates..
////////////////////////////////////////////////////////////////////////////////////////////

View File

@ -885,6 +885,8 @@ void packEventList(EventList *el, EventDataType minval=0)
bool f=false;
qint64 lasttime=0;
EventDataType min=999,max=0;
for (quint32 i=0;i<el->count();i++) {
t=el->data(i);
ti=el->time(i);
@ -971,6 +973,43 @@ void MainWindow::on_action_Rebuild_Oximetry_Index_triggered()
invalid.push_back(e.key());
} else {
// Valid event
// // Clean up outliers at start of eventlist chunks
// EventDataType baseline=sess->wavg(OXI_SPO2);
// if (e.key()==OXI_SPO2) {
// const int o2start_threshold=10000; // seconds since start of event
// EventDataType zz;
// int ii;
// // Trash suspect outliers in the first o2start_threshold milliseconds
// for (int j=0;j<e.value().size();j++) {
// EventList *ev=e.value()[j];
// if ((ev->count() <= (unsigned)discard_threshold))
// continue;
// qint64 ti=ev->time(0);
// zz=-1;
// // Peek o2start_threshold ms ahead and grab the value
// for (ii=0;ii<ev->count();ii++) {
// if (((ev->time(ii)-ti) > o2start_threshold)) {
// zz=ev->data(ii);
// break;
// }
// }
// if (zz<0)
// continue;
// // Trash any suspect outliers
// for (int i=0;i<ii;i++) {
// if (ev->data(i) < baseline) { //(zz-10)) {
// ev->getData()[i]=0;
// }
// }
// }
// }
QVector<EventList *> newlist;
for (int i=0;i<e.value().size();i++) {
if (e.value()[i]->count() > (unsigned)discard_threshold) {
@ -1014,7 +1053,8 @@ void MainWindow::on_action_Rebuild_Oximetry_Index_triggered()
Machine *m=machines[i];
m->Save();
}
getDaily()->ReloadGraphs();
getDaily()->LoadDate(getDaily()->getDate());
//getDaily()->ReloadGraphs();
getOverview()->ReloadGraphs();
}
@ -1274,7 +1314,7 @@ void MainWindow::doReprocessEvents()
Day *day;
//FlowParser flowparser;
mainwin->Notify("Performance will be degraded during these recalculations.","Recalculating Indices");
mainwin->Notify(tr("Performance will be degraded during these recalculations."),tr("Recalculating Indices"));
// For each day in history
int daycount=first.daysTo(date);
@ -1415,3 +1455,12 @@ void MainWindow::on_actionHelp_Support_Sleepyhead_Development_triggered()
// ui->webView->load(url);
// ui->tabWidget->setCurrentWidget(ui->helpTab);
}
void MainWindow::on_actionChange_Language_triggered()
{
PREF.Erase(STR_PREF_Language);
PROFILE.Save();
PREF.Save();
RestartApplication(true);
}

View File

@ -296,6 +296,8 @@ private slots:
void aboutBoxLinkClicked(const QUrl & url);
void on_actionChange_Language_triggered();
private:
void FreeSessions();

View File

@ -46,7 +46,16 @@
<property name="spacing">
<number>4</number>
</property>
<property name="margin">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
@ -97,7 +106,16 @@
<property name="spacing">
<number>0</number>
</property>
<property name="margin">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
@ -125,7 +143,16 @@
<property name="spacing">
<number>3</number>
</property>
<property name="margin">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
@ -415,8 +442,8 @@
<rect>
<x>0</x>
<y>0</y>
<width>163</width>
<height>532</height>
<width>161</width>
<height>510</height>
</rect>
</property>
<property name="palette">
@ -744,7 +771,7 @@
<x>0</x>
<y>0</y>
<width>178</width>
<height>326</height>
<height>319</height>
</rect>
</property>
<property name="palette">
@ -825,7 +852,16 @@
<property name="spacing">
<number>0</number>
</property>
<property name="margin">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
@ -1255,7 +1291,16 @@
<property name="spacing">
<number>0</number>
</property>
<property name="margin">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
@ -1461,7 +1506,7 @@
<x>0</x>
<y>0</y>
<width>178</width>
<height>326</height>
<height>319</height>
</rect>
</property>
<property name="mouseTracking">
@ -1478,7 +1523,16 @@
<property name="spacing">
<number>0</number>
</property>
<property name="margin">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
@ -1545,7 +1599,7 @@
<x>0</x>
<y>0</y>
<width>554</width>
<height>22</height>
<height>21</height>
</rect>
</property>
<property name="sizePolicy">
@ -1594,6 +1648,8 @@
<addaction name="action_Frequently_Asked_Questions"/>
<addaction name="actionSleep_Disorder_Terms_Glossary"/>
<addaction name="separator"/>
<addaction name="actionChange_Language"/>
<addaction name="separator"/>
<addaction name="actionDebug"/>
<addaction name="actionCheck_for_Updates"/>
<addaction name="separator"/>
@ -1840,12 +1896,17 @@
<string>Sleep Disorder Terms &amp;Glossary</string>
</property>
</action>
<action name="actionChange_Language">
<property name="text">
<string>Change &amp;Language</string>
</property>
</action>
</widget>
<customwidgets>
<customwidget>
<class>QWebView</class>
<extends>QWidget</extends>
<header>QtWebKit/QWebView</header>
<header>QtWebKitWidgets/QWebView</header>
</customwidget>
</customwidgets>
<resources>

View File

@ -173,7 +173,6 @@ void NewProfile::on_nextButton_clicked()
profile->doctor->setPhone(ui->doctorPhoneEdit->text());
profile->doctor->setEmail(ui->doctorEmailEdit->text());
profile->doctor->setPatientID(ui->doctorPatientIDEdit->text());
profile->user->setLanguage(ui->languageCombo->currentText());
profile->user->setTimeZone(ui->timezoneCombo->itemData(ui->timezoneCombo->currentIndex()).toString());
profile->user->setCountry(ui->countryCombo->currentText());
profile->user->setDaylightSaving(ui->DSTcheckbox->isChecked());

View File

@ -32,7 +32,16 @@
</property>
<widget class="QWidget" name="welcomePage">
<layout class="QVBoxLayout" name="verticalLayout_8">
<property name="margin">
<property name="leftMargin">
<number>5</number>
</property>
<property name="topMargin">
<number>5</number>
</property>
<property name="rightMargin">
<number>5</number>
</property>
<property name="bottomMargin">
<number>5</number>
</property>
<item>
@ -40,46 +49,7 @@
<property name="spacing">
<number>4</number>
</property>
<item row="0" column="0">
<widget class="QLabel" name="label_28">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string>Language</string>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="0" column="1" colspan="2">
<widget class="QComboBox" name="languageCombo">
<item>
<property name="text">
<string>English</string>
</property>
</item>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label_3">
<property name="text">
<string>Data Folder</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QLineEdit" name="dataFolderPath">
<property name="toolTip">
<string>Shows the directory where SleepyHead data will be stored. </string>
</property>
</widget>
</item>
<item row="1" column="2">
<item row="0" column="2">
<widget class="QToolButton" name="dataFolderButton">
<property name="toolTip">
<string>Click here to choose where to store SleepyHead data.</string>
@ -89,6 +59,20 @@
</property>
</widget>
</item>
<item row="0" column="0">
<widget class="QLabel" name="label_3">
<property name="text">
<string>Data Folder</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QLineEdit" name="dataFolderPath">
<property name="toolTip">
<string>Shows the directory where SleepyHead data will be stored. </string>
</property>
</widget>
</item>
</layout>
</item>
<item>
@ -97,24 +81,24 @@
<string>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-weight:600; font-style:italic;&quot;&gt;Welcome to SleepyHead&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;This software is being designed to help you review data related to your CPAP treatment.&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;It's intended as merely a data viewer, and not a substitute for competent medical guidance from your Doctor. &lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;This software has been released freely under the &lt;a href=&quot;qrc:/LICENSE.txt&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;GNU Public License&lt;/span&gt;&lt;/a&gt;, and comes with no warranty, and without ANY claims to fitness for any purpose.&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Accuracy of any data displayed is not and can not be guaranteed. &lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;br /&gt;Any reports generated are for PERSONAL USE ONLY, and not fit for compliance purposes.&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;The author will not be held liable for &lt;span style=&quot; text-decoration: underline;&quot;&gt;anything&lt;/span&gt; related to the use or misuse of this software. &lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Use at your own risk. &lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;This software is copyright ©2011 Mark Watkins &lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans'; font-size:10pt; font-weight:600; font-style:italic;&quot;&gt;Welcome to SleepyHead&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:10pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans'; font-size:10pt;&quot;&gt;This software is being designed to help you review data related to your CPAP treatment.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:10pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans'; font-size:10pt;&quot;&gt;It's intended as merely a data viewer, and not a substitute for competent medical guidance from your Doctor. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:10pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans'; font-size:10pt;&quot;&gt;This software has been released freely under the &lt;/span&gt;&lt;a href=&quot;qrc:/LICENSE.txt&quot;&gt;&lt;span style=&quot; font-family:'Sans'; font-size:10pt; text-decoration: underline; color:#0000ff;&quot;&gt;GNU Public License&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-family:'Sans'; font-size:10pt;&quot;&gt;, and comes with no warranty, and without ANY claims to fitness for any purpose.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:10pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans'; font-size:10pt;&quot;&gt;Accuracy of any data displayed is not and can not be guaranteed. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans'; font-size:10pt;&quot;&gt;&lt;br /&gt;Any reports generated are for PERSONAL USE ONLY, and not fit for compliance purposes.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:10pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans'; font-size:10pt;&quot;&gt;The author will not be held liable for &lt;/span&gt;&lt;span style=&quot; font-family:'Sans'; font-size:10pt; text-decoration: underline;&quot;&gt;anything&lt;/span&gt;&lt;span style=&quot; font-family:'Sans'; font-size:10pt;&quot;&gt; related to the use or misuse of this software. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:10pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans'; font-size:10pt;&quot;&gt;Use at your own risk. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:10pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans'; font-size:10pt;&quot;&gt;This software is copyright ©2011 Mark Watkins &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:10pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="openExternalLinks">
<bool>true</bool>
@ -135,7 +119,16 @@ p, li { white-space: pre-wrap; }
<property name="spacing">
<number>0</number>
</property>
<property name="margin">
<property name="leftMargin">
<number>4</number>
</property>
<property name="topMargin">
<number>4</number>
</property>
<property name="rightMargin">
<number>4</number>
</property>
<property name="bottomMargin">
<number>4</number>
</property>
<item>
@ -245,15 +238,24 @@ p, li { white-space: pre-wrap; }
<string>Locale Settings</string>
</property>
<layout class="QGridLayout" name="gridLayout">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<property name="horizontalSpacing">
<number>0</number>
</property>
<property name="verticalSpacing">
<number>4</number>
</property>
<property name="margin">
<number>0</number>
</property>
<item row="1" column="0">
<widget class="QLabel" name="label_25">
<property name="sizePolicy">
@ -335,7 +337,16 @@ p, li { white-space: pre-wrap; }
<property name="spacing">
<number>0</number>
</property>
<property name="margin">
<property name="leftMargin">
<number>4</number>
</property>
<property name="topMargin">
<number>4</number>
</property>
<property name="rightMargin">
<number>4</number>
</property>
<property name="bottomMargin">
<number>4</number>
</property>
<item>
@ -444,7 +455,16 @@ p, li { white-space: pre-wrap; }
</item>
<item row="3" column="1">
<layout class="QHBoxLayout" name="horizontalLayout_6">
<property name="margin">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
@ -579,7 +599,16 @@ p, li { white-space: pre-wrap; }
<property name="spacing">
<number>0</number>
</property>
<property name="margin">
<property name="leftMargin">
<number>4</number>
</property>
<property name="topMargin">
<number>4</number>
</property>
<property name="rightMargin">
<number>4</number>
</property>
<property name="bottomMargin">
<number>4</number>
</property>
<item>
@ -709,7 +738,16 @@ p, li { white-space: pre-wrap; }
<property name="spacing">
<number>0</number>
</property>
<property name="margin">
<property name="leftMargin">
<number>4</number>
</property>
<property name="topMargin">
<number>4</number>
</property>
<property name="rightMargin">
<number>4</number>
</property>
<property name="bottomMargin">
<number>4</number>
</property>
<item>