Update translations, Added Hebrew, updated UK & Afrikaans

This commit is contained in:
Mark Watkins 2018-05-29 18:22:01 +10:00
parent 8d8648fe20
commit 14964249e6
4 changed files with 303 additions and 296 deletions

File diff suppressed because it is too large Load Diff

View File

@ -3404,7 +3404,7 @@ If you use a few different masks, pick average values instead. It should still b
<location filename="../sleepyhead/preferencesdialog.ui" line="1237"/>
<source>AHI</source>
<extracomment>Apnea Hypopnea Index</extracomment>
<translation>Apnoea Hypopnea Index</translation>
<translation>Apnoea Hypopnoea Index</translation>
</message>
<message>
<location filename="../sleepyhead/preferencesdialog.ui" line="1242"/>

View File

@ -2664,7 +2664,7 @@ int ResmedLoader::Open(const QString & dirpath)
emit updateMessage(QObject::tr("Importing Sessions..."));
runTasks();
int num_new_sessions = sessionCount;
mach->SaveSummary();
////////////////////////////////////////////////////////////////////////////////////
// Now look for any new summary data that can be extracted from STR.edf records
@ -2690,7 +2690,7 @@ int ResmedLoader::Open(const QString & dirpath)
// strsess.erase(e);
// }
// }
//
///
/* QHash<SessionID, Session *>::iterator sessit;
QHash<SessionID, Session *>::iterator sessend = mach->sessionlist.end();;

View File

@ -1407,6 +1407,7 @@ void MainWindow::on_actionPrint_Report_triggered()
QRect rect = printer.pageRect();
b.setHtml(ui->statisticsView->toHtml());
b.resize(rect.width()/4, rect.height()/4);
b.setFrameShape(QFrame::NoFrame);
double xscale = printer.pageRect().width()/double(b.width());
double yscale = printer.pageRect().height()/double(b.height());
@ -1414,7 +1415,6 @@ void MainWindow::on_actionPrint_Report_triggered()
painter.translate(printer.paperRect().x() + printer.pageRect().width()/2, printer.paperRect().y() + printer.pageRect().height()/2);
painter.scale(scale, scale);
painter.translate(-b.width()/2, -b.height()/2);
//painter.translate(-printer.pageRect().width()/2, -printer.pageRect().height()/2);
b.render(&painter, QPoint(0,0));
painter.end();