mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Merge branch 'master' into beta3-resmed
This commit is contained in:
commit
be2e105a14
@ -1,5 +1,6 @@
|
||||
#! /bin/bash
|
||||
# First parameter is optional
|
||||
# First parameter names distribution and release number
|
||||
# eg Debian10 Ubuntu18 RasPiOS
|
||||
#
|
||||
function getPkg () {
|
||||
unset PKGNAME
|
||||
|
212
Building/Linux/mkOSDistDeb.sh
Executable file
212
Building/Linux/mkOSDistDeb.sh
Executable file
@ -0,0 +1,212 @@
|
||||
#! /bin/bash
|
||||
# No parameter is not required
|
||||
# This script will identify the distribution and release version
|
||||
#
|
||||
|
||||
function getOS () {
|
||||
rel=$(lsb_release -r | awk '{print $2}')
|
||||
os=$(lsb_release -i | awk '{print $3}')
|
||||
tmp2=${os:0:3}
|
||||
echo "tmp2 = '$tmp2'"
|
||||
if [ "$tmp2" = "Ubu" ] ; then
|
||||
OSNAME=$os${rel:0:2}
|
||||
elif [ "$tmp2" = "Deb" ];then
|
||||
OSNAME=$os$rel
|
||||
elif [ "$tmp2" = "Ras" ];then
|
||||
OSNAME="RasPiOS"
|
||||
else
|
||||
OSNAME="unknown"
|
||||
fi
|
||||
}
|
||||
|
||||
function getPkg () {
|
||||
unset PKGNAME
|
||||
unset PKGVERS
|
||||
while read stat pkg ver other ;
|
||||
do
|
||||
if [[ ${stat} == "ii" ]] ; then
|
||||
PKGNAME=`awk -F: '{print $1}' <<< ${pkg}`
|
||||
PKGVERS=`awk -F. '{print $1 "." $2}' <<< ${ver}`
|
||||
break
|
||||
fi ;
|
||||
done <<< $(dpkg -l | grep $1)
|
||||
}
|
||||
|
||||
ITERATION=$1
|
||||
if [ -z ${ITERATION} ]; then
|
||||
ITERATION="1"
|
||||
fi
|
||||
|
||||
SRC=/home/$USER/OSCAR/OSCAR-code/oscar
|
||||
|
||||
VERSION=`awk '/#define VERSION / { gsub(/"/, "", $3); print $3 }' ${SRC}/VERSION`
|
||||
if [[ ${VERSION} == *-* ]]; then
|
||||
# Use ~ for prerelease information so that it sorts correctly compared to release
|
||||
# versions. See https://www.debian.org/doc/debian-policy/ch-controlfields.html#version
|
||||
IFS="-" read -r VERSION PRERELEASE <<< ${VERSION}
|
||||
if [[ ${PRERELEASE} == *rc* ]]; then
|
||||
RC=1
|
||||
fi
|
||||
VERSION="${VERSION}~${PRERELEASE}"
|
||||
fi
|
||||
GIT_REVISION=`awk '/#define GIT_REVISION / { gsub(/"/, "", $3); print $3 }' ${SRC}/git_info.h`
|
||||
echo Version: ${VERSION}
|
||||
|
||||
# application name
|
||||
appli_name="OSCAR"
|
||||
package_name="oscar"
|
||||
pre_inst="tst_user.sh"
|
||||
# build folder (absolute path is better)
|
||||
build_folder="/home/$USER/OSCAR/build"
|
||||
if [[ -n ${PRERELEASE} && -z ${RC} ]] ; then
|
||||
appli_name=${appli_name}-test
|
||||
package_name=${package_name}-test
|
||||
post_inst="ln_usrbin-test.sh"
|
||||
pre_rem="rm_usrbin-test.sh"
|
||||
post_rem="clean_rm-test.sh"
|
||||
else
|
||||
post_inst="ln_usrbin.sh"
|
||||
pre_rem="rm_usrbin.sh"
|
||||
post_rem="clean_rm.sh"
|
||||
fi
|
||||
|
||||
# temporary folder (absolute path is better)
|
||||
temp_folder="/home/$USER/tmp_deb_${appli_name}/"
|
||||
|
||||
# destination folder in the .deb file
|
||||
dest_folder="/usr/"
|
||||
|
||||
# the .deb file mustn't exist
|
||||
archi_tmp=$(lscpu | grep -i architecture | awk -F: {'print $2'} | tr -d " ")
|
||||
if [ "$archi_tmp" = "x86_64" ];then
|
||||
archi="amd64"
|
||||
else
|
||||
archi="unknown"
|
||||
fi
|
||||
|
||||
# detection of the OS with version for Ubuntu
|
||||
getOS
|
||||
echo "osname='$OSNAME'"
|
||||
|
||||
#deb_file="${appli_name}_${VERSION}-${ITERATION}_$archi.deb"
|
||||
deb_file="${appli_name}_${VERSION}-${OSNAME}_$archi.deb"
|
||||
|
||||
# if deb file exists, fatal error
|
||||
if [ -f "./$deb_file" ]; then
|
||||
echo "destination file (./$deb_file) exists. fatal error"
|
||||
exit
|
||||
fi
|
||||
|
||||
# retrieve packages version for the dependencies
|
||||
getPkg libqt5core
|
||||
qtver=$PKGVERS
|
||||
|
||||
getPkg libdouble
|
||||
dblPkg=$PKGNAME
|
||||
|
||||
echo "QT version " $qtver
|
||||
echo "DblConv package " $dblPkg
|
||||
|
||||
# clean folders need to create the package
|
||||
if [ -d "${temp_folder}" ]; then
|
||||
rm -r ${temp_folder}
|
||||
fi
|
||||
mkdir ${temp_folder}
|
||||
if [ ! -d "${temp_folder}" ]; then
|
||||
echo "Folder (${temp_folder}) not created : fatal error."
|
||||
exit
|
||||
fi
|
||||
chmod 0755 ${temp_folder}
|
||||
# save current value of umask (for u=g and not g=o)
|
||||
current_value=$(umask)
|
||||
umask 022
|
||||
mkdir ${temp_folder}/bin
|
||||
mkdir ${temp_folder}/share
|
||||
mkdir ${temp_folder}/share/${appli_name}
|
||||
mkdir ${temp_folder}/share/doc
|
||||
share_doc_folder="${temp_folder}/share/doc/${package_name}"
|
||||
mkdir ${share_doc_folder}
|
||||
mkdir ${temp_folder}/share/icons
|
||||
mkdir ${temp_folder}/share/icons/hicolor
|
||||
mkdir ${temp_folder}/share/icons/hicolor/48x48
|
||||
mkdir ${temp_folder}/share/icons/hicolor/48x48/apps
|
||||
mkdir ${temp_folder}/share/icons/hicolor/scalable
|
||||
mkdir ${temp_folder}/share/icons/hicolor/scalable/apps
|
||||
mkdir ${temp_folder}/share/applications
|
||||
|
||||
# must delete debug symbol in OSCAR binary file
|
||||
# --- V1
|
||||
strip -s -o ${temp_folder}/bin/${appli_name} ${build_folder}/oscar/OSCAR
|
||||
#old code : cp ${build_folder}/oscar/OSCAR ${temp_folder}/bin
|
||||
|
||||
# 2>/dev/null : errors does not appear : we don't care about them
|
||||
cp -r ${build_folder}/oscar/Help ${temp_folder}/share/${appli_name} 2>/dev/null
|
||||
cp -r ${build_folder}/oscar/Html ${temp_folder}/share/${appli_name} 2>/dev/null
|
||||
cp -r ${build_folder}/oscar/Translations ${temp_folder}/share/${appli_name} 2>/dev/null
|
||||
cp ./${appli_name}.png ${temp_folder}/share/icons/hicolor/48x48/apps/${appli_name}.png
|
||||
cp ./${appli_name}.svg ${temp_folder}/share/icons/hicolor/scalable/apps/${appli_name}.svg
|
||||
cp ./${appli_name}.desktop ${temp_folder}/share/applications/${appli_name}.desktop
|
||||
|
||||
#echo "Copyright 2019-2020 oscar-team.org <oscar@oscar-team.org>" > $share_doc_folder/copyright
|
||||
#echo "Licensed under /usr/share/common-licenses/GPL-3" >> $share_doc_folder/copyright
|
||||
cp ./copyright $share_doc_folder/copyright
|
||||
|
||||
changelog_file="./changelog"
|
||||
|
||||
#automatic changelog as a bad name
|
||||
# need to generate one and say fpm to use it instead of create one
|
||||
# it seems that it needs both of them...
|
||||
|
||||
# creation of the Debian changelog
|
||||
echo "$appli_name (${VERSION}-${ITERATION}) whatever; urgency=medium" > $changelog_file
|
||||
echo "" >> $changelog_file
|
||||
echo " * Package created with FPM." >> $changelog_file
|
||||
echo "" >> $changelog_file
|
||||
echo " * See the Release Notes under Help/About menu" >> $changelog_file
|
||||
echo "" >> $changelog_file
|
||||
echo -n " -- oscar-team.org <oscar@oscar-team.org> " >> $changelog_file
|
||||
date -Iminutes >> $changelog_file
|
||||
cp $changelog_file $share_doc_folder/changelog
|
||||
gzip --best $share_doc_folder/changelog
|
||||
|
||||
description='Open Source CPAP Analysis Reporter\nProvides graphical and statistical display of the CPAP stored data'
|
||||
# trick for dummies : need to use echo -e to take care of \n (cariage return to slip description and extra one
|
||||
description=$(echo -e $description)
|
||||
|
||||
# restore umask value
|
||||
umask $current_value
|
||||
|
||||
# create the .deb file (litian test show juste a warning with a man that doesn't exists : don't care about that)
|
||||
fpm --input-type dir --output-type deb \
|
||||
--prefix ${dest_folder} \
|
||||
--before-install ${pre_inst} \
|
||||
--after-install ${post_inst} \
|
||||
--before-remove ${pre_rem} \
|
||||
--after-remove ${post_rem} \
|
||||
--name ${appli_name} --version ${VERSION} --iteration ${OSNAME} \
|
||||
--category misc \
|
||||
--deb-priority optional \
|
||||
--maintainer " -- oscar-team.org <oscar@oscar-team.org>" \
|
||||
--license GPL3+ \
|
||||
--vendor oscar-team.org \
|
||||
--description "$description" \
|
||||
--url https://sleepfiles.com/OSCAR \
|
||||
--deb-no-default-config-files \
|
||||
--depends $dblPkg \
|
||||
--depends libpcre16-3 \
|
||||
--depends qttranslations5-l10n \
|
||||
--depends "libqt5core5a >= 5.9" \
|
||||
--depends libqt5serialport5 \
|
||||
--depends libqt5xml5 \
|
||||
--depends libqt5network5 \
|
||||
--depends libqt5gui5 \
|
||||
--depends libqt5widgets5 \
|
||||
--depends libqt5opengl5 \
|
||||
--depends libqt5printsupport5 \
|
||||
--depends libglu1-mesa \
|
||||
--depends libgl1 \
|
||||
--depends libc6 \
|
||||
--no-deb-generate-changes \
|
||||
-C ${temp_folder} \
|
||||
.
|
||||
|
@ -11,7 +11,24 @@
|
||||
<b>For other languages, go to:</b>
|
||||
<br><a href=http://www.apneaboard.com/wiki/index.php/OSCAR_Release_Notes>http://www.apneaboard.com/wiki/index.php/OSCAR_Release_Notes</a></p>
|
||||
<p>
|
||||
<b>Changes and fixes in OSCAR v1.3.0 Beta 1</b>
|
||||
<b>Changes and fixes in OSCAR v1.3.0 Beta ***</b>
|
||||
<br>Portions of OSCAR are © 2019-2021 by
|
||||
<i>The OSCAR Team</i></p>
|
||||
<ul>
|
||||
<li>[new] Add support for additional Viatom/Wellue filename conventions.</li>
|
||||
<li>[new] Add support for unreadably low SpO2 samples on Viatom/Wellue oximeters.</li>
|
||||
<li>[fix] Check for Updates no longer shows test versions to release users.</li>
|
||||
<li>[fix] Rx pressures shown correctly in Profile dialog.</li>
|
||||
<li>[fix] Resolve empty CPAP data card zips on macOS Big Sur.</li>
|
||||
<li>[fix] Always prompt for SD card location when zipping SD card.</li>
|
||||
<li>[fix] Add script to identify platform in mkDistDeb.sh (Linux building).</li>
|
||||
<li>---------- Fixes to previous fixes (do not include in final release notes) ---------</li>
|
||||
<li>[ffx] Weight, BMI, and Zombie are on Overview, not Statistics page.</li>
|
||||
<li>[ffx] Overview page updated correctly when Weight or Zombie values are changed.</li>
|
||||
<li>[ffx] Various corrections to language files.</li>
|
||||
</ul>
|
||||
<p>
|
||||
<b>Changes and fixes in OSCAR v1.3.0 Beta 2/b>
|
||||
<br>Portions of OSCAR are © 2019-2021 by
|
||||
<i>The OSCAR Team</i></p>
|
||||
<ul>
|
||||
@ -32,7 +49,7 @@
|
||||
<li>[new] Improve Somnopose import options.</li>
|
||||
<li>[new] Purge Current Selected Day allows purge of each machine type separately</li>
|
||||
<li>[new] Multi-file import for non-CPAP loaders (Somnopose, Viatom, Zeo, Dreem)</li>
|
||||
<li>[new] Weight, BMI and Zombie history appear in statistics</li>
|
||||
<li>[new] Weight, BMI and Zombie history appear in Overview page</li>
|
||||
<li>[new] Add Turkish signal names to RedMed loader.</li>
|
||||
<li>[new] Add Traditional Chinese to languages available.</li>
|
||||
<li>[fix] Correct calculation of average leak rate on Welcome page.</li>
|
||||
|
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
@ -1442,22 +1442,22 @@
|
||||
<location filename="../oscar/mainwindow.cpp" line="2426"/>
|
||||
<location filename="../oscar/mainwindow.cpp" line="2430"/>
|
||||
<source>There was a problem opening %1 Data File: %2</source>
|
||||
<translation>Problème d'ouverture %1 du fichier de données : %2</translation>
|
||||
<translation>Un problème est survenu lors de l'ouverture %1 du fichier de données :% 2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="2429"/>
|
||||
<source>%1 Data Import of %2 file(s) complete</source>
|
||||
<translation>Import de %1 des données de %2 fichiers</translation>
|
||||
<translation>%1 Import de données de %2 fichier(s) terminé</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="2431"/>
|
||||
<source>%1 Import Partial Success</source>
|
||||
<translation>%1 Import partielememnt réussi</translation>
|
||||
<translation>%1 Import partiellement réussi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="2433"/>
|
||||
<source>%1 Data Import complete</source>
|
||||
<translation>Import des données : %1</translation>
|
||||
<translation>%1 Import de données terminé</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="2654"/>
|
||||
@ -1522,7 +1522,7 @@
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3167"/>
|
||||
<source>Import &Viatom/Wellue Data</source>
|
||||
<translation>Importer des données &Viatom/Wellue</translation>
|
||||
<translation>Import de données &Viatom/Wellue</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3180"/>
|
||||
@ -1557,7 +1557,7 @@
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3330"/>
|
||||
<source>Purge Current Selected Day</source>
|
||||
<translation>Purger le jour courant sélectionné</translation>
|
||||
<translation>Purger le jour sélectionné</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3335"/>
|
||||
@ -1572,7 +1572,7 @@
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3345"/>
|
||||
<source>&Sleep Stage</source>
|
||||
<translation>Phase du &sommeil</translation>
|
||||
<translation>&Stade de sommeil</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3350"/>
|
||||
@ -1582,12 +1582,13 @@
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3355"/>
|
||||
<source>&All except Notes</source>
|
||||
<translation>Tout s&auf les notes</translation>
|
||||
<translatorcomment>&Tout sauf les Notes</translatorcomment>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3360"/>
|
||||
<source>All including &Notes</source>
|
||||
<translation>Tout y compris les &notes</translation>
|
||||
<translation>Tout y compris les &Notes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="2834"/>
|
||||
@ -1672,7 +1673,7 @@
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="1083"/>
|
||||
<source>Find your CPAP data card</source>
|
||||
<translation>Recherche de la carte des données du PPC</translation>
|
||||
<translation>Trouver votre carte de données PPC</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="1444"/>
|
||||
@ -1738,7 +1739,7 @@
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3322"/>
|
||||
<source>Check For &Updates</source>
|
||||
<translation>&Rechercher des mises à jour</translation>
|
||||
<translation>Rechercher des mises à jour</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="1395"/>
|
||||
@ -2265,7 +2266,7 @@ corporelle</translation>
|
||||
<message>
|
||||
<location filename="../oscar/overview.ui" line="127"/>
|
||||
<source>Snapshot</source>
|
||||
<translation>Copie écran</translation>
|
||||
<translation>Copie d'écran</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/overview.ui" line="230"/>
|
||||
@ -4569,7 +4570,7 @@ p, li { white-space: pre-wrap; }
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/common.cpp" line="776"/>
|
||||
<source>AI</source>
|
||||
<translation>AI</translation>
|
||||
<translation>IA</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/common.cpp" line="753"/>
|
||||
@ -4792,7 +4793,7 @@ p, li { white-space: pre-wrap; }
|
||||
<location filename="../oscar/Graphs/gSessionTimesChart.cpp" line="215"/>
|
||||
<location filename="../oscar/SleepLib/common.cpp" line="864"/>
|
||||
<source>Avg</source>
|
||||
<translation>Moy</translation>
|
||||
<translation>Moy.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/common.cpp" line="834"/>
|
||||
@ -4970,7 +4971,7 @@ p, li { white-space: pre-wrap; }
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/day.cpp" line="1534"/>
|
||||
<source>varies</source>
|
||||
<translation>variations</translation>
|
||||
<translation>varie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/day.cpp" line="1546"/>
|
||||
@ -5444,7 +5445,7 @@ p, li { white-space: pre-wrap; }
|
||||
<location filename="../oscar/SleepLib/common.cpp" line="799"/>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="239"/>
|
||||
<source>Minute Vent.</source>
|
||||
<translation>Vent. minute.</translation>
|
||||
<translation>Vent. minute</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="220"/>
|
||||
@ -5534,13 +5535,13 @@ p, li { white-space: pre-wrap; }
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/intellipap_loader.cpp" line="2695"/>
|
||||
<source>Backing up files...</source>
|
||||
<translation>Sauvegarde des fichiers...</translation>
|
||||
<translation>Sauvegarde des fichiers ...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/intellipap_loader.cpp" line="2702"/>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="236"/>
|
||||
<source>Reading data files...</source>
|
||||
<translation>Lecture des données...</translation>
|
||||
<translation>Lecture des fichiers de données ...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/intellipap_loader.cpp" line="2772"/>
|
||||
@ -5557,12 +5558,12 @@ p, li { white-space: pre-wrap; }
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/intellipap_loader.cpp" line="2783"/>
|
||||
<source>Snoring event.</source>
|
||||
<translation>Ronflement.</translation>
|
||||
<translation>Ronflement</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/intellipap_loader.cpp" line="2784"/>
|
||||
<source>SN</source>
|
||||
<translation>Nb</translation>
|
||||
<translation>SN</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/journal.cpp" line="25"/>
|
||||
@ -5646,7 +5647,7 @@ p, li { white-space: pre-wrap; }
|
||||
<location filename="../oscar/SleepLib/common.cpp" line="798"/>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="267"/>
|
||||
<source>Target Vent.</source>
|
||||
<translation>Vent. cible.</translation>
|
||||
<translation>Vent. cible</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="286"/>
|
||||
@ -5895,7 +5896,7 @@ Merci de reconstruire les données de PPC</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="264"/>
|
||||
<source>Flow Limit.</source>
|
||||
<translation>Limitation du flux.</translation>
|
||||
<translation>Limitation du flux</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="276"/>
|
||||
@ -6123,7 +6124,7 @@ Début : %2</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="132"/>
|
||||
<source>Machine auto starts by breathing</source>
|
||||
<translation>Mise en marche par respiration</translation>
|
||||
<translation>Démarrage auto par respiration</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="211"/>
|
||||
@ -6377,7 +6378,7 @@ TTIA : %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="165"/>
|
||||
<source>An apnea reportred by your CPAP machine.</source>
|
||||
<translation>Une apnée détectée par votre respirateur PPC.</translation>
|
||||
<translation>Apnée signalée par votre appareil CPAP.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="186"/>
|
||||
@ -6526,7 +6527,7 @@ TTIA : %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="138"/>
|
||||
<source>Humid. Status</source>
|
||||
<translation>État humidificateur</translation>
|
||||
<translation>État humidif.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/Graphs/gSummaryChart.cpp" line="1119"/>
|
||||
@ -7417,8 +7418,7 @@ Heures : %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="203"/>
|
||||
<source>Soft</source>
|
||||
<translatorcomment>Without the while context, it's diffcult / To be verified</translatorcomment>
|
||||
<translation>Lente</translation>
|
||||
<translation>Doux</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="204"/>
|
||||
@ -7428,17 +7428,17 @@ Heures : %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="207"/>
|
||||
<source>SmartStop</source>
|
||||
<translation>Arrêt graduel</translation>
|
||||
<translation>Smart Stop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="207"/>
|
||||
<source>Machine auto stops by breathing</source>
|
||||
<translation>Arrêt automatique de la machine pendant la respiration</translation>
|
||||
<translation>Arrêt auto par respiration</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="207"/>
|
||||
<source>Smart Stop</source>
|
||||
<translation>Arrêt graduel</translation>
|
||||
<translation>Smart Stop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="201"/>
|
||||
@ -7463,12 +7463,12 @@ Heures : %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="432"/>
|
||||
<source>Your ResMed CPAP machine (Model %1) has not been tested yet.</source>
|
||||
<translation>Votre appareil Philips Respironics (Model %1) n'est pas encore été testé.</translation>
|
||||
<translation>Votre machine PPC Resmed (Modèle %1) n'a pas encore été testée</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="433"/>
|
||||
<source>It seems similar enough to other machines that it might work, but the developers would like a .zip copy of this machine's SD card to make sure it works with OSCAR.</source>
|
||||
<translation>Cet appareil semble assez similaire à d'autres. Il devrait fonctionner, mais les développeurs ont besoin d'une copie zippée la carte SD de cet appareil et du pdf accompagnant le rapport pour vérifier son fonctionnement avec OSCAR.</translation>
|
||||
<translation>Cela semble assez similaire à d'autres machines et devrait fonctionner, mais les développeurs aimeraient une copie .zip de la carte SD de cette machine pour s'assurer qu'elle fonctionne avec OSCAR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="524"/>
|
||||
@ -7908,7 +7908,7 @@ Heures : %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2898"/>
|
||||
<source>Humid. Mode</source>
|
||||
<translation>Mode humid</translation>
|
||||
<translation>Mode humid.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2900"/>
|
||||
@ -7923,23 +7923,23 @@ Heures : %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2902"/>
|
||||
<source>Heated Tube</source>
|
||||
<translation>Tuyau chauffé</translation>
|
||||
<translation>Tuyau chauffant</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2908"/>
|
||||
<source>Tube Temperature</source>
|
||||
<translatorcomment>Température du tube</translatorcomment>
|
||||
<translation>Temperature circuit</translation>
|
||||
<translatorcomment>Température du tuyau</translatorcomment>
|
||||
<translation>Température du tuyau</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2909"/>
|
||||
<source>PRS1 Heated Tube Temperature</source>
|
||||
<translation>Température circuit chauffé PRS1</translation>
|
||||
<translation>Température tuyau chauffant PRS1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2910"/>
|
||||
<source>Tube Temp.</source>
|
||||
<translation>Temp. circuit.</translation>
|
||||
<translation>Temp. tuyau</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2917"/>
|
||||
@ -8041,7 +8041,7 @@ Heures : %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="872"/>
|
||||
<source>model %1</source>
|
||||
<translation>Modèle %1</translation>
|
||||
<translation>modèle %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="876"/>
|
||||
@ -8051,17 +8051,17 @@ Heures : %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="879"/>
|
||||
<source>unknown model</source>
|
||||
<translation>Modèle inconnu</translation>
|
||||
<translation>modèle inconnu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="884"/>
|
||||
<source>Sorry, your Philips Respironics CPAP machine (%1) is not supported yet.</source>
|
||||
<translation>Désolé mais votre respirateur PPC Philips Respironics (%1) n'est pas encore supporté.</translation>
|
||||
<translation>Désolé, votre appareil PPC Philips Respironics (%1) n'est pas encore pris en charge.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="885"/>
|
||||
<source>The developers needs a .zip copy of this machine's SD card and matching Encore or Care Orchestrator .pdf reports to make it work with OSCAR.</source>
|
||||
<translation>Les développeurs ont besoin d'une copie zippée la carte SD de cet appareil et du pdf Encore ou Care Orchestrator afin de le fairefonctionner avec OSCAR.</translation>
|
||||
<translation>Les développeurs ont besoin d'une copie .zip de la carte SD de cette machine et des rapports correspondants "Encore" ou "Care Orchestrator" .pdf pour la faire fonctionner avec OSCAR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2824"/>
|
||||
@ -8152,17 +8152,17 @@ Heures : %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2924"/>
|
||||
<source>Target Time</source>
|
||||
<translation>Heure cible</translation>
|
||||
<translation>Durée cible</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2925"/>
|
||||
<source>PRS1 Humidifier Target Time</source>
|
||||
<translation>Heure cible pour l'humificateur PRS1</translation>
|
||||
<translation>Durée cible de l’humidificateur PRS1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2926"/>
|
||||
<source>Hum. Tgt Time</source>
|
||||
<translation>h. cible Humidificateur</translation>
|
||||
<translation>Hum. Durée cible</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2933"/>
|
||||
@ -8173,17 +8173,17 @@ Heures : %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2935"/>
|
||||
<source>Mask Resist.</source>
|
||||
<translation>Résist. masque.</translation>
|
||||
<translation>Résist. masque</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2943"/>
|
||||
<source>Hose Diam.</source>
|
||||
<translation>Diamètre tuyau.</translation>
|
||||
<translation>Diamètre tuyau</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2951"/>
|
||||
<source>Tubing Type Lock</source>
|
||||
<translation>Type de verrou du circuit</translation>
|
||||
<translation>Type de verrou du tuyau</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2952"/>
|
||||
@ -8193,7 +8193,7 @@ Heures : %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2953"/>
|
||||
<source>Tube Lock</source>
|
||||
<translation>Verrouillage circuit</translation>
|
||||
<translation>Verrouillage tuyau</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2960"/>
|
||||
@ -8284,7 +8284,7 @@ Heures : %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="3033"/>
|
||||
<source>Timed Insp.</source>
|
||||
<translation>Insp. chronométrée.</translation>
|
||||
<translation>Insp. chronométrée</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="3038"/>
|
||||
@ -8299,7 +8299,7 @@ Heures : %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="3040"/>
|
||||
<source>Auto-Trial Dur.</source>
|
||||
<translation>Durée Auto-Test.</translation>
|
||||
<translation>Durée Auto-Test</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="3045"/>
|
||||
@ -8548,17 +8548,17 @@ contextuelle actuelle, supprimez-la, puis affichez à nouveau ce graphique.</tra
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="929"/>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="930"/>
|
||||
<source>SensAwake level</source>
|
||||
<translation>Niveau détection Réveil</translation>
|
||||
<translation>Niveau SensAwake</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="937"/>
|
||||
<source>Expiratory Relief</source>
|
||||
<translation>Relief expiration</translation>
|
||||
<translation>Décharge pression expiratoire</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="943"/>
|
||||
<source>Expiratory Relief Level</source>
|
||||
<translation>Niveau relief expiration</translation>
|
||||
<translation>Niveau de décharge pression expiratoire</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="955"/>
|
||||
@ -8568,7 +8568,7 @@ contextuelle actuelle, supprimez-la, puis affichez à nouveau ce graphique.</tra
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.h" line="88"/>
|
||||
<source>SleepStyle</source>
|
||||
<translation>Style de sommeil</translation>
|
||||
<translation>Mode sommeil</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -8607,7 +8607,7 @@ contextuelle actuelle, supprimez-la, puis affichez à nouveau ce graphique.</tra
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="205"/>
|
||||
<source>This Machine Record cannot be imported in this profile.</source>
|
||||
<translation>Import impossible des données de cet appareil dans ce profil.</translation>
|
||||
<translation>Import impossible des données depuis cet appareil dans ce profil.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="205"/>
|
||||
|
@ -8147,12 +8147,12 @@ Gaarne gegevens opnieuw inlezen</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="201"/>
|
||||
<source>Response</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Reactie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="213"/>
|
||||
<source>Patient View</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Patiënt weergave</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="113"/>
|
||||
@ -8621,17 +8621,17 @@ popout venster verwijderen en dan deze grafiek weer vastzetten.</translation>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="929"/>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="930"/>
|
||||
<source>SensAwake level</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>SensAwake niveau</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="937"/>
|
||||
<source>Expiratory Relief</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Uitademings hulp</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="943"/>
|
||||
<source>Expiratory Relief Level</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Uitademings hulp instelling</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="955"/>
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -121,7 +121,7 @@
|
||||
<message>
|
||||
<location filename="../oscar/checkupdates.cpp" line="240"/>
|
||||
<source>Checking for newer OSCAR versions</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Caut versiuni mai noi ale programului OSCAR</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -342,7 +342,7 @@
|
||||
<message>
|
||||
<location filename="../oscar/daily.cpp" line="1278"/>
|
||||
<source>(Mode and Pressure settings missing; yesterday's shown.)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>(Lipsesc setarile Mod si Presiune; se afiseaza ziua de ieri)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/daily.cpp" line="2384"/>
|
||||
@ -393,7 +393,7 @@
|
||||
<message>
|
||||
<location filename="../oscar/daily.cpp" line="1321"/>
|
||||
<source>99.5%</source>
|
||||
<translation type="unfinished">90% {99.5%?}</translation>
|
||||
<translation>99.5%</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/daily.cpp" line="1394"/>
|
||||
@ -1036,37 +1036,37 @@
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3330"/>
|
||||
<source>Purge Current Selected Day</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Sterge ziua curenta selectata</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3335"/>
|
||||
<source>&CPAP</source>
|
||||
<translation type="unfinished">&CPAP</translation>
|
||||
<translation>&CPAP</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3340"/>
|
||||
<source>&Oximetry</source>
|
||||
<translation type="unfinished">&Oximetrie</translation>
|
||||
<translation>&Oximetrie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3345"/>
|
||||
<source>&Sleep Stage</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Stadiu &Somn</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3350"/>
|
||||
<source>&Position</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>&Pozitie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3355"/>
|
||||
<source>&All except Notes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Toate cu excepti&A Notes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3360"/>
|
||||
<source>All including &Notes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Toate inclusiv &Notes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3180"/>
|
||||
@ -1091,7 +1091,7 @@
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3245"/>
|
||||
<source>Create zip of OSCAR diagnostic logs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Creaza arhiva ZIP cu log-urile de diagnostic ale OSCAR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3250"/>
|
||||
@ -1141,12 +1141,12 @@
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3314"/>
|
||||
<source>Show Personal Data</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Arata date personale</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3322"/>
|
||||
<source>Check For &Updates</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Cautare &Updates</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="2956"/>
|
||||
@ -1241,7 +1241,7 @@
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3167"/>
|
||||
<source>Import &Viatom/Wellue Data</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Importa Date din aparatul &Viatom/Wellue</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3216"/>
|
||||
@ -1413,7 +1413,7 @@
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="1083"/>
|
||||
<source>Find your CPAP data card</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Gasiti-va cardul de date CPAP</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="1142"/>
|
||||
@ -1469,22 +1469,22 @@
|
||||
<location filename="../oscar/mainwindow.cpp" line="2426"/>
|
||||
<location filename="../oscar/mainwindow.cpp" line="2430"/>
|
||||
<source>There was a problem opening %1 Data File: %2</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>A aparut o problema la deschiderea %1 fisier date: %2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="2429"/>
|
||||
<source>%1 Data Import of %2 file(s) complete</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>%1 Import Date din %2 fisier(e) complet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="2431"/>
|
||||
<source>%1 Import Partial Success</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>%1 Import Partial Succes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="2433"/>
|
||||
<source>%1 Data Import complete</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>%1 Import Date complet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="2632"/>
|
||||
@ -1550,12 +1550,12 @@
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="1333"/>
|
||||
<source>Please open a profile first.</source>
|
||||
<translation>Va rugam deschideti mai intai un Profil.</translation>
|
||||
<translation>Va rugam deschideti mai intai un Profil pacient.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="1395"/>
|
||||
<source>Check for updates not implemented</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Cautarea actualizarilor nu e implementata</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="1444"/>
|
||||
@ -1640,7 +1640,7 @@
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="565"/>
|
||||
<source>%1 (Profile: %2)</source>
|
||||
<translation>%1 (Profil: %2)</translation>
|
||||
<translation>%1 (Pacient: %2)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="727"/>
|
||||
@ -1687,7 +1687,7 @@
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="977"/>
|
||||
<source>No profile has been selected for Import.</source>
|
||||
<translation>Nu a fost selectat niciun Profil pentru Import.</translation>
|
||||
<translation>Nu a fost selectat niciun Profil pacient pentru Import.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="985"/>
|
||||
@ -1798,7 +1798,7 @@
|
||||
<message>
|
||||
<location filename="../oscar/newprofile.ui" line="14"/>
|
||||
<source>Edit User Profile</source>
|
||||
<translation>Editeaza profil utilizator</translation>
|
||||
<translation>Editeaza profil pacient</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/newprofile.ui" line="70"/>
|
||||
@ -1818,7 +1818,7 @@
|
||||
<message>
|
||||
<location filename="../oscar/newprofile.ui" line="155"/>
|
||||
<source>Password Protect Profile</source>
|
||||
<translation>Parola de protectie a Profilului</translation>
|
||||
<translation>Parola de protectie a Profilului pacientului</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/newprofile.ui" line="182"/>
|
||||
@ -1853,7 +1853,7 @@
|
||||
<message>
|
||||
<location filename="../oscar/newprofile.ui" line="152"/>
|
||||
<source>Very weak password protection and not recommended if security is required.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Parola e foarte slaba si nu e recomandata daca se doreste securizarea datelor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/newprofile.ui" line="240"/>
|
||||
@ -2068,7 +2068,7 @@
|
||||
<message>
|
||||
<location filename="../oscar/newprofile.cpp" line="134"/>
|
||||
<source>OSCAR is copyright &copy;2011-2018 Mark Watkins and portions &copy;2019-2020 The OSCAR Team</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>OSCAR este copyright &copy;2011-2018 Mark Watkins si module &copy;2019-2020 The OSCAR Team</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/newprofile.cpp" line="116"/>
|
||||
@ -2176,7 +2176,7 @@
|
||||
<message>
|
||||
<location filename="../oscar/overview.ui" line="127"/>
|
||||
<source>Snapshot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Captura Ecran</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/overview.ui" line="135"/>
|
||||
@ -2246,7 +2246,7 @@ Index</translation>
|
||||
<message>
|
||||
<location filename="../oscar/overview.cpp" line="191"/>
|
||||
<source>Session Times</source>
|
||||
<translation>Timip Sesiune</translation>
|
||||
<translation>Timp Sesiune</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/overview.cpp" line="199"/>
|
||||
@ -3384,7 +3384,7 @@ Afectează în principal importatorul.</translation>
|
||||
<message>
|
||||
<location filename="../oscar/preferencesdialog.ui" line="580"/>
|
||||
<source>Bypass the login screen and load the most recent User Profile</source>
|
||||
<translation>Sariti peste ecranul de conectare si incarcati cel mai recent utilizat Profil</translation>
|
||||
<translation>Sariti peste ecranul de conectare si incarcati cel mai recent utilizat Profil de pacient</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/preferencesdialog.ui" line="489"/>
|
||||
@ -3587,7 +3587,7 @@ OSCAR poate păstra o copie a acestor date dacă intenționați să reinstalați
|
||||
<message>
|
||||
<location filename="../oscar/preferencesdialog.ui" line="2301"/>
|
||||
<source><html><head/><body><p>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)</p></body></html></source>
|
||||
<translation><html><head/><body><p>Ce filă se deschide la încărcarea unui profil. (Notă: implicit va fi pagina de Profiel dacă OSCAR este setat să nu deschidă un profil la pornire)</p></body></html></translation>
|
||||
<translation><html><head/><body><p>Ce filă se deschide la încărcarea unui profil pacient. (Notă: implicit va fi pagina de Profil dacă OSCAR este setat să nu deschidă un profil la pornire)</p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/preferencesdialog.ui" line="2559"/>
|
||||
@ -3669,12 +3669,12 @@ OSCAR poate păstra o copie a acestor date dacă intenționați să reinstalați
|
||||
<message>
|
||||
<location filename="../oscar/preferencesdialog.ui" line="583"/>
|
||||
<source>Auto-Launch CPAP Importer after opening profile</source>
|
||||
<translation>Lanseaza automat Importatorul de CPAP dupa incarcarea Profilului</translation>
|
||||
<translation>Lanseaza automat Importatorul de date CPAP dupa incarcarea Profilului pacientului</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/preferencesdialog.ui" line="623"/>
|
||||
<source>Automatically load last used profile on start-up</source>
|
||||
<translation>Incarca automat la pornire ultimul Profil utilizat</translation>
|
||||
<translation>Incarca automat la pornire ultimul Pacient utilizat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/preferencesdialog.ui" line="640"/>
|
||||
@ -3753,37 +3753,37 @@ p, li {white-space: preambalare; }
|
||||
<message>
|
||||
<location filename="../oscar/preferencesdialog.ui" line="2074"/>
|
||||
<source>Check For Updates</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Cauta actualizari</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/preferencesdialog.ui" line="2089"/>
|
||||
<source>You are using a test version of OSCAR. Test versions check for updates automatically at least once every seven days. You may set the interval to less than seven days.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Folosiți o versiune de testare a OSCAR. Versiunile de testare verifică automat dacă există actualizări cel puțin o dată la șapte zile. Puteți seta intervalul la mai puțin de șapte zile.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/preferencesdialog.ui" line="2107"/>
|
||||
<source>Automatically check for updates</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Cauta actualizari OSCAR automat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/preferencesdialog.ui" line="2129"/>
|
||||
<source>How often OSCAR should check for updates.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Frecvența cu care OSCAR trebuie să verifice dacă există actualizări.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/preferencesdialog.ui" line="2210"/>
|
||||
<source>If you are interested in helping test new features and bugfixes early, click here.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Dacă sunteți interesat să ajutați la testarea timpurie a noilor caracteristici și a corecțiilor de erori, faceți clic aici.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/preferencesdialog.ui" line="2213"/>
|
||||
<source>I want to try experimental and test builds. (Advanced users only please.)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Vreau să încerc construcțiile experimentale și de testare. (Doar utilizatorii avansați, vă rog.)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/preferencesdialog.ui" line="2226"/>
|
||||
<source>If you would like to help test early versions of OSCAR, please see the Wiki page about testing OSCAR. We welcome everyone who would like to test OSCAR, help develop OSCAR, and help with translations to existing or new languages. https://www.sleepfiles.com/OSCAR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Dacă doriți să ajutați la testarea versiunilor timpurii ale OSCAR, vă rugăm să consultați pagina Wiki despre testarea OSCAR. Îi primim cu plăcere pe toți cei care doresc să testeze OSCAR, să contribuie la dezvoltarea OSCAR și să ajute la traducerile în limbi existente sau noi. https://www.sleepfiles.com/OSCAR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/preferencesdialog.ui" line="2291"/>
|
||||
@ -3925,12 +3925,12 @@ Acest lucru afectează de asemenea rapoartele tipărite.
|
||||
<message>
|
||||
<location filename="../oscar/preferencesdialog.ui" line="2753"/>
|
||||
<source>Print reports in black and white, which can be more legible on non-color printers</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Imprimați rapoarte în alb-negru, care pot fi astfel mai ușor de citit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/preferencesdialog.ui" line="2756"/>
|
||||
<source>Print reports in black and white (monochrome)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Imprimarea rapoartelor în alb-negru (monocrom)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/preferencesdialog.ui" line="2788"/>
|
||||
@ -4298,17 +4298,17 @@ Vreti să faceti asta acum?</translation>
|
||||
<message>
|
||||
<location filename="../oscar/profileselector.ui" line="216"/>
|
||||
<source>&Open Profile</source>
|
||||
<translation>&Deschide Profil</translation>
|
||||
<translation>&Deschide Profil pacient</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/profileselector.ui" line="227"/>
|
||||
<source>&Edit Profile</source>
|
||||
<translation>&Editeaza Profil</translation>
|
||||
<translation>&Editeaza Profil pacient</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/profileselector.ui" line="241"/>
|
||||
<source>&New Profile</source>
|
||||
<translation>&Profil nou</translation>
|
||||
<translation>&Pacient nou</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/profileselector.ui" line="260"/>
|
||||
@ -4318,17 +4318,17 @@ Vreti să faceti asta acum?</translation>
|
||||
<message>
|
||||
<location filename="../oscar/profileselector.ui" line="281"/>
|
||||
<source>Please select or create a profile...</source>
|
||||
<translation>Va rog selectati sau creati un profil...</translation>
|
||||
<translation>Va rog selectati sau creati un profil pacient...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/profileselector.ui" line="332"/>
|
||||
<source>Destroy Profile</source>
|
||||
<translation>Elimina Profil</translation>
|
||||
<translation>Elimina Pacient</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/profileselector.cpp" line="90"/>
|
||||
<source>Profile</source>
|
||||
<translation>Profil</translation>
|
||||
<translation>Profil pacient</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/profileselector.cpp" line="91"/>
|
||||
@ -4364,7 +4364,7 @@ Vreti să faceti asta acum?</translation>
|
||||
<message>
|
||||
<location filename="../oscar/profileselector.cpp" line="170"/>
|
||||
<source>You must create a profile</source>
|
||||
<translation>Trebuie sa creati un Profil</translation>
|
||||
<translation>Trebuie sa creati un Profil pacient nou</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/profileselector.cpp" line="233"/>
|
||||
@ -4391,12 +4391,12 @@ Vreti să faceti asta acum?</translation>
|
||||
<message>
|
||||
<location filename="../oscar/profileselector.cpp" line="322"/>
|
||||
<source>Select a profile first</source>
|
||||
<translation>Selectati intai un Profil</translation>
|
||||
<translation>Selectati intai un Profil pacient</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/profileselector.cpp" line="357"/>
|
||||
<source>The selected profile does not appear to contain any data and cannot be removed by OSCAR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Pacientul selectat nu contine date si nu poat efi eliminat de OSCAR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/profileselector.cpp" line="389"/>
|
||||
@ -4406,12 +4406,12 @@ Vreti să faceti asta acum?</translation>
|
||||
<message>
|
||||
<location filename="../oscar/profileselector.cpp" line="399"/>
|
||||
<source>You are about to destroy profile '<b>%1</b>'.</source>
|
||||
<translation>Sunteti pe cale sa eliminati Profilul '<b>%1</b>'.</translation>
|
||||
<translation>Sunteti pe cale sa eliminati Profilul pacientului '<b>%1</b>'.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/profileselector.cpp" line="399"/>
|
||||
<source>Think carefully, as this will irretrievably delete the profile along with all <b>backup data</b> stored under<br/>%2.</source>
|
||||
<translation>Ganditi-va bine, asta va sterge iremediabil Profilul impreuna cu toate<b>backup-urile</b> salvate in el<br/>%2.</translation>
|
||||
<translation>Ganditi-va bine, asta va sterge iremediabil Profilul pacientului impreuna cu toate<b>backup-urile</b> salvate in el<br/>%2.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/profileselector.cpp" line="399"/>
|
||||
@ -4522,12 +4522,12 @@ Vreti să faceti asta acum?</translation>
|
||||
<message>
|
||||
<location filename="../oscar/profileselector.cpp" line="512"/>
|
||||
<source>No profile information given</source>
|
||||
<translation>Nu au fost furnizate informatii de Profil</translation>
|
||||
<translation>Nu au fost furnizate informatii pentru pacient</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/profileselector.cpp" line="515"/>
|
||||
<source>Profile: %1</source>
|
||||
<translation>Profil: %1</translation>
|
||||
<translation>Pacient: %1</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -4989,7 +4989,7 @@ TTIA: %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/common.cpp" line="722"/>
|
||||
<source>Profile</source>
|
||||
<translation>Profil</translation>
|
||||
<translation>Pacient</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/common.cpp" line="723"/>
|
||||
@ -5290,7 +5290,7 @@ TTIA: %1</translation>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="155"/>
|
||||
<source>PB</source>
|
||||
<translatorcomment>Respiratie periodică</translatorcomment>
|
||||
<translation>RP</translation>
|
||||
<translation>Resp period</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/common.cpp" line="789"/>
|
||||
@ -5839,7 +5839,7 @@ TTIA: %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2850"/>
|
||||
<source>Flex</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Flex</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2862"/>
|
||||
@ -5926,17 +5926,17 @@ TTIA: %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2924"/>
|
||||
<source>Target Time</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Timp tinta</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2925"/>
|
||||
<source>PRS1 Humidifier Target Time</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Timp țintă pentru umidificatorul PRS1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2926"/>
|
||||
<source>Hum. Tgt Time</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Timp Tinta Umid</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2951"/>
|
||||
@ -6131,27 +6131,27 @@ TTIA: %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="872"/>
|
||||
<source>model %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>model %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="876"/>
|
||||
<source>DreamStation 2</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>DreamStation 2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="879"/>
|
||||
<source>unknown model</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>model necunoscut</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="884"/>
|
||||
<source>Sorry, your Philips Respironics CPAP machine (%1) is not supported yet.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Ne pare rău, aparatul dumneavoastră CPAP Philips Respironics (%1) nu este încă acceptat.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="885"/>
|
||||
<source>The developers needs a .zip copy of this machine's SD card and matching Encore or Care Orchestrator .pdf reports to make it work with OSCAR.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Dezvoltatorii au nevoie de o copie .zip a cardului SD al acestui aparat și de rapoartele Encore sau Care Orchestrator .pdf corespunzătoare pentru a face ca acesta să funcționeze cu OSCAR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2838"/>
|
||||
@ -6378,7 +6378,7 @@ TTIA: %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/profiles.cpp" line="557"/>
|
||||
<source>If you are concerned, click No to exit, and backup your profile manually, before starting OSCAR again.</source>
|
||||
<translation>Daca va faceti griji, alegeti No pentru a iesi si faceti manual backupul Profilului inainte de a reporni OSCAR.</translation>
|
||||
<translation>Daca va faceti griji, alegeti No pentru a iesi si faceti manual backupul Profilului pacientului inainte de a reporni OSCAR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/profiles.cpp" line="558"/>
|
||||
@ -6403,12 +6403,12 @@ TTIA: %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/profiles.cpp" line="608"/>
|
||||
<source>OSCAR will now exit, then (attempt to) launch your computers file manager so you can manually back your profile up:</source>
|
||||
<translation>OSCAR se va opri si apoi va (incerca sa) porneasca Windows Explorer ca sa puteti face backup manual la Profil:</translation>
|
||||
<translation>OSCAR se va opri si apoi va (incerca sa) porneasca Windows Explorer ca sa puteti face backup manual la Profilul pacientului:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/profiles.cpp" line="610"/>
|
||||
<source>Use your file manager to make a copy of your profile directory, then afterwards, restart OSCAR and complete the upgrade process.</source>
|
||||
<translation>Folositi managerul de fisiere pentru a face o copie a dosarului de Profil, apoi restartati OSCAR si finalizati actualizarea versiunii.</translation>
|
||||
<translation>Folositi managerul de fisiere pentru a face o copie a dosarului Pacientului, apoi restartati OSCAR si finalizati actualizarea versiunii.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/profiles.cpp" line="561"/>
|
||||
@ -6418,7 +6418,7 @@ TTIA: %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/profiles.cpp" line="556"/>
|
||||
<source>Once you upgrade, you <font size=+1>cannot</font> use this profile with the previous version anymore.</source>
|
||||
<translation>După ce faceți upgrade, <font size = + 1> nu mai puteți </font> utiliza acest profil cu versiunea anterioară.</translation>
|
||||
<translation>După ce faceți upgrade, <font size = + 1> nu mai puteți </font> utiliza acest profil de pacient cu versiunea anterioară.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/profiles.cpp" line="573"/>
|
||||
@ -6605,7 +6605,7 @@ TTIA: %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="161"/>
|
||||
<source>Hypopnea</source>
|
||||
<translation>Hipopnee</translation>
|
||||
<translation>Hipopnea</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="161"/>
|
||||
@ -6758,7 +6758,7 @@ TTIA: %1</translation>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="227"/>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="230"/>
|
||||
<source>Mask Pressure</source>
|
||||
<translation>Presiunea pe Masca</translation>
|
||||
<translation>Presiune Masca</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="233"/>
|
||||
@ -6808,7 +6808,7 @@ TTIA: %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="248"/>
|
||||
<source>Leak Rate</source>
|
||||
<translation>Rata Scăpărilor</translation>
|
||||
<translation>Rata Scăpări</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="248"/>
|
||||
@ -6977,7 +6977,7 @@ TTIA: %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="264"/>
|
||||
<source>Flow Limit.</source>
|
||||
<translation>Limita Flux.</translation>
|
||||
<translation>Limitare Flux.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="267"/>
|
||||
@ -7078,17 +7078,17 @@ TTIA: %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="121"/>
|
||||
<source>Couldn't parse Channels.xml, OSCAR cannot continue and is exiting.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Nu s-a putut analiza Channels.xml, OSCAR nu poate continua și se va opri.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="165"/>
|
||||
<source>Apnea</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Apnea</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="165"/>
|
||||
<source>An apnea reportred by your CPAP machine.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>O apnee raportata de aparatul dvs CPAP.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="302"/>
|
||||
@ -7296,7 +7296,7 @@ TTIA: %1</translation>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="355"/>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="356"/>
|
||||
<source>For internal use only</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Doar pentru uz intern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="356"/>
|
||||
@ -7336,12 +7336,12 @@ TTIA: %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/main.cpp" line="192"/>
|
||||
<source>Choose the SleepyHead or OSCAR data folder to migrate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Agegeti locatia fisierelor SleepyHead sau OSCAR pentru a migra datele</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/main.cpp" line="207"/>
|
||||
<source>The folder you chose does not contain valid SleepyHead or OSCAR data.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Dosarul pe care l-ați ales nu conține date SleepyHead sau OSCAR valide.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/main.cpp" line="208"/>
|
||||
@ -7386,27 +7386,27 @@ TTIA: %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/main.cpp" line="493"/>
|
||||
<source>If you have been using SleepyHead or an older version of OSCAR,</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Dacă ați utilizat SleepyHead sau o versiune mai veche de OSCAR,</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/main.cpp" line="494"/>
|
||||
<source>OSCAR can copy your old data to this folder later.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>OSCAR poate copia ulterior datele vechi în acest dosar.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/main.cpp" line="547"/>
|
||||
<source>Migrate SleepyHead or OSCAR Data?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Migrez datele SleepyHead sau OSCAR?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/main.cpp" line="548"/>
|
||||
<source>On the next screen OSCAR will ask you to select a folder with SleepyHead or OSCAR data</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Pe ecranul următor, OSCAR vă va cere să selectați un dosar cu date SleepyHead sau OSCAR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/main.cpp" line="549"/>
|
||||
<source>Click [OK] to go to the next screen or [No] if you do not wish to use any SleepyHead or OSCAR data.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Faceți clic pe [OK] pentru a trece la ecranul următor sau pe [No] dacă nu doriți să utilizați datele SleepyHead sau OSCAR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/main.cpp" line="495"/>
|
||||
@ -7441,27 +7441,27 @@ TTIA: %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/main.cpp" line="558"/>
|
||||
<source>Unable to create the OSCAR data folder at</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Nu se poate crea dosarul de date OSCAR in</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/main.cpp" line="568"/>
|
||||
<source>Unable to write to OSCAR data directory</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Nu se poate scrie în directorul de date OSCAR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/main.cpp" line="569"/>
|
||||
<source>Error code</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Cod eroare</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/main.cpp" line="570"/>
|
||||
<source>OSCAR cannot continue and is exiting.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>OSCAR nu poate continua rularea și se va opri.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/main.cpp" line="581"/>
|
||||
<source>Unable to write to debug log. You can still use the debug pane (Help/Troubleshooting/Show Debug Pane) but the debug log will not be written to disk.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Nu se poate scrie în jurnalul de depanare. Puteți utiliza în continuare panoul de depanare (Help/Troubleshooting/Show Debug Pane), dar jurnalul de depanare nu va fi scris pe disc.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/main.cpp" line="640"/>
|
||||
@ -7508,7 +7508,7 @@ TTIA: %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="467"/>
|
||||
<source>You can only work with one instance of an individual OSCAR profile at a time.</source>
|
||||
<translation>Puteti lucra cu un singur Profil OSCAR la un moment dat.</translation>
|
||||
<translation>Puteti lucra cu un singur Profil pacient la un moment dat.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="468"/>
|
||||
@ -7518,18 +7518,19 @@ TTIA: %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="481"/>
|
||||
<source>Loading profile "%1"...</source>
|
||||
<translation>Incarc Profilul "%1"...</translation>
|
||||
<translation>Incarc Profil pacient "%1"...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="928"/>
|
||||
<source>Chromebook file system detected, but no removable device found
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Chromebook-ul dvs nu are un dispozitiv de memorie detasabil (card de memorie)
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="929"/>
|
||||
<source>You must share your SD card with Linux using the ChromeOS Files program</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Trebuie să partajați cardul SD cu Linux utilizând programul ChromeOS Files</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="2201"/>
|
||||
@ -7630,7 +7631,7 @@ TTIA: %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/reports.cpp" line="294"/>
|
||||
<source>AI=%1 </source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>AI=%1 </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/reports.cpp" line="362"/>
|
||||
@ -7705,7 +7706,7 @@ TTIA: %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="466"/>
|
||||
<source>There is a lockfile already present for this profile '%1', claimed on '%2'.</source>
|
||||
<translation>Exista deja un fisier blocat pentru acest Profil '%1', creat pe '%2'.</translation>
|
||||
<translation>Exista deja un fisier blocat pentru acest Profil pacient'%1', creat pe '%2'.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/day.cpp" line="189"/>
|
||||
@ -7730,12 +7731,12 @@ TTIA: %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/day.cpp" line="185"/>
|
||||
<source>99.5%</source>
|
||||
<translation type="unfinished">90% {99.5%?}</translation>
|
||||
<translation>99.5%</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/day.cpp" line="1534"/>
|
||||
<source>varies</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>variante</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/day.cpp" line="1546"/>
|
||||
@ -7804,12 +7805,12 @@ TTIA: %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/welcome.cpp" line="361"/>
|
||||
<source>(1 day ago)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>(o zi in urma)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/welcome.cpp" line="362"/>
|
||||
<source>(%2 days ago)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>(%2 zile in urma)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/welcome.cpp" line="367"/>
|
||||
@ -7944,7 +7945,8 @@ Please Rebuild CPAP Data</source>
|
||||
<location filename="../oscar/Graphs/gGraphView.cpp" line="473"/>
|
||||
<source>The popout window is full. You should capture the existing
|
||||
popout window, delete it, then pop out this graph again.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Fereastra popout este plină. Ar trebui să capturați imaginea existentă
|
||||
fereastra popout, să o ștergeți, apoi să deschideți din nou acest grafic.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/Graphs/gGraphView.cpp" line="1445"/>
|
||||
@ -8087,13 +8089,13 @@ popout window, delete it, then pop out this graph again.</source>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/intellipap_loader.cpp" line="2695"/>
|
||||
<source>Backing up files...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Salvez backup fisiere...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/intellipap_loader.cpp" line="2702"/>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="236"/>
|
||||
<source>Reading data files...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Citesc fisierele de date...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/intellipap_loader.cpp" line="2764"/>
|
||||
@ -8132,12 +8134,12 @@ popout window, delete it, then pop out this graph again.</source>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/intellipap_loader.cpp" line="2783"/>
|
||||
<source>Snoring event.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Sforait detectat.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/intellipap_loader.cpp" line="2784"/>
|
||||
<source>SN</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>SN</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="524"/>
|
||||
@ -8192,7 +8194,7 @@ popout window, delete it, then pop out this graph again.</source>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="112"/>
|
||||
<source>iVAPS</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>iVAPS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="114"/>
|
||||
@ -8229,12 +8231,12 @@ popout window, delete it, then pop out this graph again.</source>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="201"/>
|
||||
<source>Response</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Raspuns</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="213"/>
|
||||
<source>Patient View</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Vizualizare pacient</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="108"/>
|
||||
@ -8325,12 +8327,12 @@ popout window, delete it, then pop out this graph again.</source>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="174"/>
|
||||
<source>Essentials</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Esentiale</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="176"/>
|
||||
<source>Plus</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Plus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="180"/>
|
||||
@ -8345,47 +8347,47 @@ popout window, delete it, then pop out this graph again.</source>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="203"/>
|
||||
<source>Soft</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Soft</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="204"/>
|
||||
<source>Standard</source>
|
||||
<translation type="unfinished">Standard</translation>
|
||||
<translation>Standard</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="207"/>
|
||||
<source>SmartStop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>SmartStop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="207"/>
|
||||
<source>Machine auto stops by breathing</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Aparatul se oprește automat cand respirați</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="207"/>
|
||||
<source>Smart Stop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Smart Stop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="215"/>
|
||||
<source>Simple</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Simplu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="216"/>
|
||||
<source>Advanced</source>
|
||||
<translation type="unfinished">Avansat</translation>
|
||||
<translation>Avansat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="432"/>
|
||||
<source>Your ResMed CPAP machine (Model %1) has not been tested yet.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="433"/>
|
||||
<source>It seems similar enough to other machines that it might work, but the developers would like a .zip copy of this machine's SD card to make sure it works with OSCAR.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Pare suficient de asemănător cu alte aparate cpap pentru a putea funcționa, dar dezvoltatorii ar dori o copie .zip a cardului SD al acestui aparat pentru a se asigura că funcționează cu OSCAR.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="1200"/>
|
||||
@ -8527,73 +8529,73 @@ popout window, delete it, then pop out this graph again.</source>
|
||||
<message>
|
||||
<location filename="../oscar/checkupdates.cpp" line="152"/>
|
||||
<source>New versions file improperly formed</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Noi versiuni de fișiere au formate necorespunzătoare</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/checkupdates.cpp" line="168"/>
|
||||
<source>You are running the latest release of OSCAR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Aveti deja ultima versiune de OSCAR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/checkupdates.cpp" line="170"/>
|
||||
<source>A more recent version of OSCAR is available</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Exista o versiune mai recenta a programului OSCAR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/checkupdates.cpp" line="171"/>
|
||||
<source>You are running version %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Rulati versiunea %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/checkupdates.cpp" line="173"/>
|
||||
<source>OSCAR %1 is available <a href='%2'>here</a>.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>OSCAR %1 e disponibil <a href='%2'>aici</a>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/checkupdates.cpp" line="176"/>
|
||||
<source>Information about more recent test version %1 is available at <a href='%2'>%2</a></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Informații despre versiunea mai recentă de test %1 sunt disponibile la <a href='%2'>%2</a></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/checkupdates.cpp" line="183"/>
|
||||
<source>(Reading %1 took %2 seconds)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>(Citirea %1 a durat %2 secunde)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/checkupdates.cpp" line="204"/>
|
||||
<source>Check for OSCAR Updates</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Caut actualizari ale programului OSCAR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/checkupdates.cpp" line="266"/>
|
||||
<source>Unable to check for updates. Please try again later.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Nu se poate verifica dacă există actualizări. Vă rugăm să încercați din nou mai târziu.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="929"/>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="930"/>
|
||||
<source>SensAwake level</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Nivel SensAwake</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="937"/>
|
||||
<source>Expiratory Relief</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Usurare respiratie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="943"/>
|
||||
<source>Expiratory Relief Level</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Nivel usurare respiratie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="955"/>
|
||||
<source>Humidity</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Umiditate</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.h" line="88"/>
|
||||
<source>SleepStyle</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Stil de somn</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -8627,17 +8629,17 @@ popout window, delete it, then pop out this graph again.</source>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="204"/>
|
||||
<source>Import Error</source>
|
||||
<translation type="unfinished">Eroare la Importare</translation>
|
||||
<translation>Eroare la Importare</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="205"/>
|
||||
<source>This Machine Record cannot be imported in this profile.</source>
|
||||
<translation type="unfinished">Datele din acest aparat nu pot fi importate in acest profil.</translation>
|
||||
<translation>Datele din acest aparat nu pot fi importate in acest profil.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="205"/>
|
||||
<source>The Day records overlap with already existing content.</source>
|
||||
<translation type="unfinished">Datele din aceasta zi se suprapun cu cele deja existente.</translation>
|
||||
<translation>Datele din aceasta zi se suprapun cu cele deja existente.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -8722,7 +8724,7 @@ popout window, delete it, then pop out this graph again.</source>
|
||||
<message>
|
||||
<location filename="../oscar/statistics.cpp" line="613"/>
|
||||
<source>% of time above %1 threshold</source>
|
||||
<translation>% din timp peste pragul de %1</translation>
|
||||
<translation>% din timp peste pragul %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/statistics.cpp" line="614"/>
|
||||
@ -8977,7 +8979,7 @@ popout window, delete it, then pop out this graph again.</source>
|
||||
<message>
|
||||
<location filename="../oscar/statistics.cpp" line="1234"/>
|
||||
<source>%1 days of %2 Data, between %3 and %4</source>
|
||||
<translation>%1 zi din %2 Date, intre %3 si %4</translation>
|
||||
<translation>%1 zile din Datele %2, intre %3 si %4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/statistics.cpp" line="983"/>
|
||||
@ -9135,7 +9137,7 @@ popout window, delete it, then pop out this graph again.</source>
|
||||
<message>
|
||||
<location filename="../oscar/welcome.cpp" line="226"/>
|
||||
<source>You had an AHI of %1, which is %2 your %3 day average of %4.</source>
|
||||
<translation>Ati avut un AHI de %1, care este %2 media zilnica de %4 in ultimele %3 zile.</translation>
|
||||
<translation>Ati avut un AHI de %1, care este %2 media zilnica de %4 din ultimele %3 zile.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/welcome.cpp" line="257"/>
|
||||
@ -9171,12 +9173,12 @@ popout window, delete it, then pop out this graph again.</source>
|
||||
<message>
|
||||
<location filename="../oscar/welcome.cpp" line="277"/>
|
||||
<source>Your machine was under %1-%2 %3 for %4% of the time.</source>
|
||||
<translation>Aparatul dvs a fost sub %1-%2 %3 pentru %4% din timp.</translation>
|
||||
<translation>Aparatul dvs a fost la presiunea %1-%2 %3 pentru %4% din timp.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/welcome.cpp" line="181"/>
|
||||
<source>1 day ago</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>o zi in urma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/welcome.cpp" line="317"/>
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -387,7 +387,7 @@
|
||||
<message>
|
||||
<location filename="../oscar/daily.cpp" line="1321"/>
|
||||
<source>99.5%</source>
|
||||
<translation type="unfinished">90% {99.5%?}</translation>
|
||||
<translation>99.5%</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/daily.cpp" line="1394"/>
|
||||
@ -1013,37 +1013,37 @@
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3330"/>
|
||||
<source>Purge Current Selected Day</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Tyhjennä nykyinen valittu päivä</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3335"/>
|
||||
<source>&CPAP</source>
|
||||
<translation type="unfinished">&CPAP</translation>
|
||||
<translation>&CPAP</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3340"/>
|
||||
<source>&Oximetry</source>
|
||||
<translation type="unfinished">&Oksimetri</translation>
|
||||
<translation>&Oksimetri</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3345"/>
|
||||
<source>&Sleep Stage</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>&Univaihe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3350"/>
|
||||
<source>&Position</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>&Asema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3355"/>
|
||||
<source>&All except Notes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>K&aikki paitsi muistiinpanot</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3360"/>
|
||||
<source>All including &Notes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Kaikki mukaa&n lukien muistiinpanot</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3180"/>
|
||||
@ -1228,7 +1228,7 @@
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3167"/>
|
||||
<source>Import &Viatom/Wellue Data</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Tuo &Viatom/Wellue tietoja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.ui" line="3216"/>
|
||||
@ -1426,22 +1426,22 @@
|
||||
<location filename="../oscar/mainwindow.cpp" line="2426"/>
|
||||
<location filename="../oscar/mainwindow.cpp" line="2430"/>
|
||||
<source>There was a problem opening %1 Data File: %2</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>%1 Data-tiedoston: %2 avaamisessa oli ongelma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="2429"/>
|
||||
<source>%1 Data Import of %2 file(s) complete</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>%2 tiedosto(je)n %1 tietojen tuonti valmis</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="2431"/>
|
||||
<source>%1 Import Partial Success</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>%1 tuonti osittain valmis</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="2433"/>
|
||||
<source>%1 Data Import complete</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>%1 tietojen tuonti valmis</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="2632"/>
|
||||
@ -1476,7 +1476,7 @@
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="1083"/>
|
||||
<source>Find your CPAP data card</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Etsi CPAP-tietojen SD-kortti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/mainwindow.cpp" line="1333"/>
|
||||
@ -2173,7 +2173,7 @@
|
||||
<message>
|
||||
<location filename="../oscar/overview.ui" line="127"/>
|
||||
<source>Snapshot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Pikakuva</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/overview.ui" line="135"/>
|
||||
@ -5851,17 +5851,17 @@ TTIA: %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2924"/>
|
||||
<source>Target Time</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Tavoiteaika</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2925"/>
|
||||
<source>PRS1 Humidifier Target Time</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>PRS1 kostuttimen tavoiteaika</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2926"/>
|
||||
<source>Hum. Tgt Time</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Kostuttimen tavoiteaika</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2933"/>
|
||||
@ -6050,27 +6050,27 @@ TTIA: %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="872"/>
|
||||
<source>model %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>malli %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="876"/>
|
||||
<source>DreamStation 2</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>DreamStation 2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="879"/>
|
||||
<source>unknown model</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>tuntematon malli</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="884"/>
|
||||
<source>Sorry, your Philips Respironics CPAP machine (%1) is not supported yet.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Pahoittelut, sinun Philips Respironics CPAP-laitetta (%1) ei vielä tueta.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="885"/>
|
||||
<source>The developers needs a .zip copy of this machine's SD card and matching Encore or Care Orchestrator .pdf reports to make it work with OSCAR.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Kehittelijät tarvitsevat .zip kopion tämän laitteen SD-koritsta ja vastaavat Encore- tai Care Orchestrator .pdf -raportit, jotta se toimii OSCARin kanssa.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/prs1_loader.cpp" line="2838"/>
|
||||
@ -6895,7 +6895,7 @@ TTIA: %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="264"/>
|
||||
<source>Flow Limit.</source>
|
||||
<translation>Virtauksen rajoite.</translation>
|
||||
<translation type="unfinished">Virtauksen rajoite</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="267"/>
|
||||
@ -6945,12 +6945,12 @@ TTIA: %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="165"/>
|
||||
<source>Apnea</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Apnea-katkos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="165"/>
|
||||
<source>An apnea reportred by your CPAP machine.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>CPAP-laitteesi raportoi apnea-katkoksen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/schema.cpp" line="167"/>
|
||||
@ -7594,7 +7594,7 @@ TTIA: %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/reports.cpp" line="294"/>
|
||||
<source>AI=%1 </source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>AI=%1 </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/reports.cpp" line="362"/>
|
||||
@ -7694,12 +7694,12 @@ TTIA: %1</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/day.cpp" line="185"/>
|
||||
<source>99.5%</source>
|
||||
<translation type="unfinished">90% {99.5%?}</translation>
|
||||
<translation>99.5%</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/day.cpp" line="1534"/>
|
||||
<source>varies</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>vaihtelee</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/day.cpp" line="1546"/>
|
||||
@ -8053,13 +8053,13 @@ ponnahdusikkuna, poista se ja avaa sitten tämä kaavio uudelleen.</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/intellipap_loader.cpp" line="2695"/>
|
||||
<source>Backing up files...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Varmuuskopioi tiedostoja...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/intellipap_loader.cpp" line="2702"/>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="236"/>
|
||||
<source>Reading data files...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Lukee datatiedostoja...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/intellipap_loader.cpp" line="2764"/>
|
||||
@ -8098,12 +8098,12 @@ ponnahdusikkuna, poista se ja avaa sitten tämä kaavio uudelleen.</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/intellipap_loader.cpp" line="2783"/>
|
||||
<source>Snoring event.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Kuorsaustapahtuma.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/intellipap_loader.cpp" line="2784"/>
|
||||
<source>SN</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>SN</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="524"/>
|
||||
@ -8158,7 +8158,7 @@ ponnahdusikkuna, poista se ja avaa sitten tämä kaavio uudelleen.</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="112"/>
|
||||
<source>iVAPS</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>iVAPS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="114"/>
|
||||
@ -8311,47 +8311,47 @@ ponnahdusikkuna, poista se ja avaa sitten tämä kaavio uudelleen.</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="203"/>
|
||||
<source>Soft</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Pehmeä</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="204"/>
|
||||
<source>Standard</source>
|
||||
<translation type="unfinished">Standardi</translation>
|
||||
<translation>Standardi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="207"/>
|
||||
<source>SmartStop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Älykäs pysäytys</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="207"/>
|
||||
<source>Machine auto stops by breathing</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Laite lopettaa automaattisesti hengityksen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="207"/>
|
||||
<source>Smart Stop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Älykäs pysäytys</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="215"/>
|
||||
<source>Simple</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Yksinkertainen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="216"/>
|
||||
<source>Advanced</source>
|
||||
<translation type="unfinished">Lisää</translation>
|
||||
<translation>Monipuolinen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="432"/>
|
||||
<source>Your ResMed CPAP machine (Model %1) has not been tested yet.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Sinun ResMed CPAP-laitemalliasi (Model %1) ei ole vielä testattu.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="433"/>
|
||||
<source>It seems similar enough to other machines that it might work, but the developers would like a .zip copy of this machine's SD card to make sure it works with OSCAR.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Se näyttää riittävän samanlaiselta kuin muut koneet, että se voisi toimia, mutta kehittäjät haluavat tämän koneen SD-kortin .zip -kopion varmistaakseen, että se toimii OSCAR:in kanssa.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/resmed_loader.cpp" line="1200"/>
|
||||
@ -8554,12 +8554,12 @@ ponnahdusikkuna, poista se ja avaa sitten tämä kaavio uudelleen.</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="955"/>
|
||||
<source>Humidity</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Kosteus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.h" line="88"/>
|
||||
<source>SleepStyle</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Unityyli</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -8593,17 +8593,17 @@ ponnahdusikkuna, poista se ja avaa sitten tämä kaavio uudelleen.</translation>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="204"/>
|
||||
<source>Import Error</source>
|
||||
<translation type="unfinished">Tuontivirhe</translation>
|
||||
<translation>Tuontivirhe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="205"/>
|
||||
<source>This Machine Record cannot be imported in this profile.</source>
|
||||
<translation type="unfinished">Tämän koneen tietuetta ei voida tuoda tähän profiiliin.</translation>
|
||||
<translation>Tämän koneen tietuetta ei voida tuoda tähän profiiliin.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../oscar/SleepLib/loader_plugins/sleepstyle_loader.cpp" line="205"/>
|
||||
<source>The Day records overlap with already existing content.</source>
|
||||
<translation type="unfinished">Päivän tietueet ovat päällekkäisiä jo olemassa oleville tiedoille.</translation>
|
||||
<translation>Päivän tietueet ovat päällekkäisiä jo olemassa oleville tiedoille.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -1300,6 +1300,7 @@ EventDataType gGraph::MinY()
|
||||
}
|
||||
|
||||
return rmin_y = val;
|
||||
// return rmin_y = val * 0.9;
|
||||
}
|
||||
EventDataType gGraph::MaxY()
|
||||
{
|
||||
|
@ -2,7 +2,6 @@
|
||||
*
|
||||
* Copyright (c) 2019-2020 The OSCAR Team
|
||||
* (Initial importer written by dave madden <dhm@mersenne.com>)
|
||||
* Modified 02/21/2021 to allow for CheckMe device data files by Crimson Nape <CrimsonNape@gmail.com>
|
||||
*
|
||||
* This file is subject to the terms and conditions of the GNU General Public
|
||||
* License. See the file COPYING in the main directory of the source code
|
||||
@ -23,6 +22,16 @@
|
||||
#include "viatom_loader.h"
|
||||
#include "SleepLib/machine.h"
|
||||
|
||||
// TODO: Merge this with PRS1 macros and generalize for all loaders.
|
||||
#define SESSIONID m_session->session()
|
||||
#define UNEXPECTED_VALUE(SRC, VALS) { \
|
||||
QString message = QString("%1:%2: %3 = %4 != %5").arg(__func__).arg(__LINE__).arg(#SRC).arg(SRC).arg(VALS); \
|
||||
qWarning() << SESSIONID << message; \
|
||||
s_unexpectedMessages += message; \
|
||||
}
|
||||
#define CHECK_VALUE(SRC, VAL) if ((SRC) != (VAL)) UNEXPECTED_VALUE(SRC, VAL)
|
||||
#define CHECK_VALUES(SRC, VAL1, VAL2) if ((SRC) != (VAL1) && (SRC) != (VAL2)) UNEXPECTED_VALUE(SRC, #VAL1 " or " #VAL2)
|
||||
// for more than 2 values, just write the test manually and use UNEXPECTED_VALUE if it fails
|
||||
static QSet<QString> s_unexpectedMessages;
|
||||
|
||||
bool
|
||||
@ -158,8 +167,27 @@ Session* ViatomLoader::ParseFile(const QString & filename, bool *existing)
|
||||
EndEventList(OXI_Pulse, time_ms);
|
||||
EndEventList(OXI_SPO2, time_ms);
|
||||
} else {
|
||||
// Viatom advertises a range of 30 - 250 bpm.
|
||||
if (rec.hr < 30 || rec.hr > 250) {
|
||||
UNEXPECTED_VALUE(rec.hr, "30-250");
|
||||
}
|
||||
AddEvent(OXI_Pulse, time_ms, rec.hr);
|
||||
AddEvent(OXI_SPO2, time_ms, rec.spo2);
|
||||
|
||||
if (rec.spo2 == 0xFF) {
|
||||
// When the readings fall below 61%, Viatom devices record 0xFF for SpO2.
|
||||
// The official software discards these readings.
|
||||
// TODO: Consider whether to import these as 60% since they reflect hypoxia.
|
||||
EndEventList(OXI_SPO2, time_ms);
|
||||
//qDebug() << "<61% at" << QDateTime::fromMSecsSinceEpoch(time_ms);
|
||||
} else {
|
||||
// Viatom advertises (and graphs) a range of 70% - 99%, but apparently records down to 61%.
|
||||
// The official software graphs 61%-70% as 70%.
|
||||
// TODO: Consider whether we should import 61%-70% as 70% to match the official reports.
|
||||
if (rec.spo2 < 61 || rec.spo2 > 99) {
|
||||
UNEXPECTED_VALUE(rec.spo2, "61-99%");
|
||||
}
|
||||
AddEvent(OXI_SPO2, time_ms, rec.spo2);
|
||||
}
|
||||
}
|
||||
AddEvent(POS_Movement, time_ms, rec.motion);
|
||||
time_ms += m_step;
|
||||
@ -208,7 +236,12 @@ void ViatomLoader::EndEventList(ChannelID channel, qint64 /*t*/)
|
||||
|
||||
QStringList ViatomLoader::getNameFilter()
|
||||
{
|
||||
return QStringList("20[0-5][0-9][01][0-9][0-3][0-9][012][0-9][0-5][0-9][0-5][0-9]");
|
||||
// Sometimes the files have a SleepU_ or O2Ring_ prefix.
|
||||
// Sometimes they have punctuation in the timestamp.
|
||||
// Note that ":" is not allowed on macOS, so Mac users will need to rename their files in order to select and import them.
|
||||
return QStringList({"*20[0-5][0-9][01][0-9][0-3][0-9][012][0-9][0-5][0-9][0-5][0-9]",
|
||||
"*20[0-5][0-9]-[01][0-9]-[0-3][0-9] [012][0-9]:[0-5][0-9]:[0-5][0-9]"
|
||||
});
|
||||
}
|
||||
|
||||
static bool viatom_initialized = false;
|
||||
@ -227,35 +260,8 @@ ViatomLoader::Register()
|
||||
|
||||
// ===============================================================================================
|
||||
|
||||
/*
|
||||
static QString ts(qint64 msecs)
|
||||
{
|
||||
// TODO: make this UTC so that tests don't vary by where they're run
|
||||
return QDateTime::fromMSecsSinceEpoch(msecs).toString(Qt::ISODate);
|
||||
}
|
||||
|
||||
static QString dur(qint64 msecs)
|
||||
{
|
||||
qint64 s = msecs / 1000L;
|
||||
int h = s / 3600; s -= h * 3600;
|
||||
int m = s / 60; s -= m * 60;
|
||||
return QString("%1:%2:%3")
|
||||
.arg(h, 2, 10, QChar('0'))
|
||||
.arg(m, 2, 10, QChar('0'))
|
||||
.arg(s, 2, 10, QChar('0'));
|
||||
}
|
||||
*/
|
||||
|
||||
// TODO: Merge this with PRS1 macros and generalize for all loaders.
|
||||
#define UNEXPECTED_VALUE(SRC, VALS) { \
|
||||
QString message = QString("%1:%2: %3 = %4 != %5").arg(__func__).arg(__LINE__).arg(#SRC).arg(SRC).arg(VALS); \
|
||||
qWarning() << this->m_sessionid << message; \
|
||||
s_unexpectedMessages += message; \
|
||||
}
|
||||
#define CHECK_VALUE(SRC, VAL) if ((SRC) != (VAL)) UNEXPECTED_VALUE(SRC, VAL)
|
||||
#define CHECK_VALUES(SRC, VAL1, VAL2) if ((SRC) != (VAL1) && (SRC) != (VAL2)) UNEXPECTED_VALUE(SRC, #VAL1 " or " #VAL2)
|
||||
// for more than 2 values, just write the test manually and use UNEXPECTED_VALUE if it fails
|
||||
|
||||
#undef SESSIONID
|
||||
#define SESSIONID this->m_sessionid
|
||||
|
||||
ViatomFile::ViatomFile(QFile & file) : m_file(file)
|
||||
{
|
||||
@ -279,14 +285,7 @@ bool ViatomFile::ParseHeader()
|
||||
int min = header[7];
|
||||
int sec = header[8];
|
||||
|
||||
|
||||
/* CN - Changed the if statement to a switch to accomdate additional Viatom/Wellue signatures in the future
|
||||
if (sig != 0x0003) {
|
||||
qDebug() << m_file.fileName() << "invalid signature for Viatom data file" << sig;
|
||||
return false;
|
||||
}
|
||||
CN */
|
||||
switch (sig){
|
||||
switch (sig) {
|
||||
case 0x0003:
|
||||
case 0x0005:
|
||||
break;
|
||||
@ -295,6 +294,7 @@ bool ViatomFile::ParseHeader()
|
||||
return false;
|
||||
break;
|
||||
}
|
||||
CHECK_VALUE(sig, 3); // We have only a single sample of 5, without a corresponding PDF. We need more samples.
|
||||
|
||||
if ((year < 2015 || year > 2059) || (month < 1 || month > 12) || (day < 1 || day > 31) ||
|
||||
(hour > 23) || (min > 59) || (sec > 59)) {
|
||||
@ -311,6 +311,24 @@ bool ViatomFile::ParseHeader()
|
||||
// starting timestamp). Technically these should probably be square charts, but
|
||||
// the code currently forces them to be non-square.
|
||||
QDateTime data_timestamp = QDateTime(QDate(year, month, day), QTime(hour, min, sec));
|
||||
|
||||
QString date_string = QFileInfo(m_file).fileName().section("_", -1); // Strip any SleepU_ etc. prefix.
|
||||
QString format_string = "yyyyMMddHHmmss";
|
||||
if (date_string.contains(":")) {
|
||||
format_string = "yyyy-MM-dd HH:mm:ss";
|
||||
}
|
||||
QDateTime filename_timestamp = QDateTime::fromString(date_string, format_string);
|
||||
if (filename_timestamp.isValid()) {
|
||||
if (filename_timestamp != data_timestamp) {
|
||||
// TODO: Once there's a better/easier way to adjust session times within OSCAR, we can remove the below.
|
||||
qDebug() << m_file.fileName() << "Using filename timestamp" << filename_timestamp.toString("yyyy-MM-dd HH:mm:ss")
|
||||
<< "instead of header timestamp" << data_timestamp.toString("yyyy-MM-dd HH:mm:ss");
|
||||
data_timestamp = filename_timestamp;
|
||||
}
|
||||
} else {
|
||||
qWarning() << m_file.fileName() << "invalid timestamp in Viatom filename";
|
||||
}
|
||||
|
||||
m_timestamp = data_timestamp.toMSecsSinceEpoch();
|
||||
m_sessionid = m_timestamp / 1000L;
|
||||
|
||||
@ -330,11 +348,11 @@ bool ViatomFile::ParseHeader()
|
||||
//int time_under_90pct = header[22] | (header[23] << 8); // in seconds
|
||||
//int events_under_90pct = header[24]; // number of distinct events
|
||||
//float o2_score = header[25] * 0.1;
|
||||
CHECK_VALUE(header[26], 0);
|
||||
CHECK_VALUES(header[26], 0, 4); // 4 has been seen only once
|
||||
CHECK_VALUE(header[27], 0);
|
||||
CHECK_VALUE(header[28], 0);
|
||||
CHECK_VALUE(header[29], 0);
|
||||
CHECK_VALUE(header[30], 0);
|
||||
//CHECK_VALUE(header[30], 0); // average pulse rate (when nonzero)
|
||||
CHECK_VALUE(header[31], 0);
|
||||
CHECK_VALUE(header[32], 0);
|
||||
CHECK_VALUE(header[33], 0);
|
||||
@ -360,8 +378,10 @@ bool ViatomFile::ParseHeader()
|
||||
CHECK_VALUE(filesize, m_file.size());
|
||||
}
|
||||
CHECK_VALUES(m_resolution, 2000, 4000);
|
||||
// CHECK_VALUE(datasize % RECORD_SIZE, 0); CN - Commented out these 2 lines because CheckMe can record odd number of entries
|
||||
// CHECK_VALUE(m_duration % m_record_count, 0);
|
||||
if (true) { // TODO: We need CheckMe sample data where this doesn't hold true.
|
||||
CHECK_VALUE(datasize % RECORD_SIZE, 0);
|
||||
CHECK_VALUE(m_duration % m_record_count, 0);
|
||||
}
|
||||
|
||||
//qDebug().noquote() << m_file.fileName() << ts(m_timestamp) << dur(m_duration * 1000L) << ":" << m_record_count << "records @" << m_resolution << "ms";
|
||||
|
||||
@ -373,22 +393,25 @@ QList<ViatomFile::Record> ViatomFile::ReadData()
|
||||
QByteArray data = m_file.readAll();
|
||||
QDataStream in(data);
|
||||
in.setByteOrder(QDataStream::LittleEndian);
|
||||
int iCheckMeAdj; // Allows for an odd number in the CheckMe duration/# of records return
|
||||
|
||||
QList<ViatomFile::Record> records;
|
||||
|
||||
// Read all Pulse, SPO2 and Motion data
|
||||
do {
|
||||
ViatomFile::Record rec;
|
||||
in >> rec.spo2 >> rec.hr >> rec.oximetry_invalid >> rec.motion >> rec.vibration;
|
||||
CHECK_VALUES(rec.oximetry_invalid, 0, 0xFF); //If it doesn't have one of these 2 values, it's bad
|
||||
if (rec.vibration == 0x40) rec.vibration = 0x80; //0x040 (64) or 0x80 (128) when vibration is triggered
|
||||
CHECK_VALUES(rec.vibration, 0, 0x80); // 0x80 (128) when vibration is triggered
|
||||
CHECK_VALUES(rec.oximetry_invalid, 0, 0xFF);
|
||||
if (rec.vibration) {
|
||||
CHECK_VALUES(rec.vibration, 0x40, 0x80); // 0x40 or 0x80 when vibration is triggered
|
||||
}
|
||||
// Invalid readings indicate any interruption in the measurements, whether
|
||||
// transitory (e.g. due to movement) or when the device is removed at the end of a session.
|
||||
if (rec.oximetry_invalid == 0xFF) {
|
||||
CHECK_VALUE(rec.spo2, 0xFF);
|
||||
CHECK_VALUE(rec.hr, 0xFF); // if all 3 have 0xFF, then end of data
|
||||
CHECK_VALUE(rec.hr, 0xFF);
|
||||
}
|
||||
records.append(rec);
|
||||
} while (records.size() < m_record_count); // CN Changed to allow for an incomlpete record values
|
||||
// CN } while (!in.atEnd());
|
||||
} while (records.size() < m_record_count);
|
||||
|
||||
// It turns out 2s files are actually just double-reported samples!
|
||||
if (m_resolution == 2000) {
|
||||
@ -415,11 +438,14 @@ QList<ViatomFile::Record> ViatomFile::ReadData()
|
||||
records = dedup;
|
||||
}
|
||||
}
|
||||
/* TODO: Test against CheckMe sample data
|
||||
int iCheckMeAdj; // Allows for an odd number in the CheckMe duration/# of records return
|
||||
iCheckMeAdj = duration() / records.size();
|
||||
if(iCheckMeAdj == 3) iCheckMeAdj = 4; // CN - Sanity check for CheckMe devices since their files do not always terminate on an even number.
|
||||
|
||||
CHECK_VALUE(iCheckMeAdj, 4); // Crimson Nape - Changed to accomadate the CheckMe data files.
|
||||
// CHECK_VALUE(duration() / records.size(), 4); // We've only seen 4s true resolution so far.
|
||||
*/
|
||||
CHECK_VALUE(duration() / records.size(), 4); // We've only seen 4s true resolution so far.
|
||||
|
||||
return records;
|
||||
}
|
||||
|
@ -2,7 +2,6 @@
|
||||
*
|
||||
* Copyright (c) 2019-2020 The OSCAR Team
|
||||
* (Initial importer written by dave madden <dhm@mersenne.com>)
|
||||
* Modified 02/21/2021 to allow for CheckMe device data files by Crimson Nape <CrimsonNape@gmail.com>
|
||||
*
|
||||
* This file is subject to the terms and conditions of the GNU General Public
|
||||
* License. See the file COPYING in the main directory of the source code
|
||||
|
@ -162,25 +162,30 @@ void CheckUpdates::compareVersions () {
|
||||
VersionInfo testVersion = getVersionInfo ("test", platformStr());
|
||||
|
||||
msg = "";
|
||||
if (!showTestVersion)
|
||||
testVersion.version = "";
|
||||
|
||||
if (testVersion.version.length() == 0 && releaseVersion.version.length() == 0) {
|
||||
if (showIfCurrent)
|
||||
msg = QObject::tr("You are running the latest release of OSCAR");
|
||||
if (showIfCurrent) {
|
||||
QString txt = getVersion().IsReleaseVersion()?QObject::tr("release"):QObject::tr("test version");
|
||||
QString txt2 = QObject::tr("You are running the latest %1 of OSCAR").arg(txt);
|
||||
msg = txt2 + "<p>" + QObject::tr("You are running OSCAR %1").arg(getVersion()) + "</p>";
|
||||
}
|
||||
} else {
|
||||
msg = QObject::tr("A more recent version of OSCAR is available");
|
||||
msg += "<p>" + QObject::tr("You are running version %1").arg(getVersion()) + "</p>";
|
||||
msg += "<p>" + QObject::tr("You are running OSCAR %1").arg(getVersion()) + "</p>";
|
||||
if (releaseVersion.version.length() > 0) {
|
||||
msg += "<p>" + QObject::tr("OSCAR %1 is available <a href='%2'>here</a>.").arg(releaseVersion.version).arg(releaseVersion.urlInstaller) + "</p>";
|
||||
}
|
||||
if (testVersion.version.length() > 0) {
|
||||
if (showTestVersion && (testVersion.version.length() > 0)) {
|
||||
msg += "<p>" + QObject::tr("Information about more recent test version %1 is available at <a href='%2'>%2</a>").arg(testVersion.version).arg(testVersion.urlInstaller) + "</p>";
|
||||
}
|
||||
}
|
||||
|
||||
if (msg.length() > 0) {
|
||||
// Add elapsed time in test versions only
|
||||
if (elapsedTime > 0 && !getVersion().IsReleaseVersion())
|
||||
msg += "<font size='-1'><p>" + QString(QObject::tr("(Reading %1 took %2 seconds)")).arg("versions.xml").arg(elapsedTime) + "</p></font>";
|
||||
// if (elapsedTime > 0 && !getVersion().IsReleaseVersion())
|
||||
// msg += "<font size='-1'><p>" + QString(QObject::tr("(Reading %1 took %2 seconds)")).arg("versions.xml").arg(elapsedTime) + "</p></font>";
|
||||
msgIsReady = true;
|
||||
}
|
||||
|
||||
@ -212,9 +217,12 @@ void CheckUpdates::showMessage()
|
||||
void CheckUpdates::checkForUpdates(bool showWhenCurrent)
|
||||
{
|
||||
showIfCurrent = showWhenCurrent;
|
||||
showTestVersion = false;
|
||||
|
||||
// If running a test version of OSCAR, try reading versions.xml from OSCAR_Data directory
|
||||
// and force display of any new test version
|
||||
if (!getVersion().IsReleaseVersion()) {
|
||||
showTestVersion = true;
|
||||
versionXML = readLocalVersions();
|
||||
if (versionXML.length() > 0) {
|
||||
compareVersions();
|
||||
@ -223,6 +231,8 @@ void CheckUpdates::checkForUpdates(bool showWhenCurrent)
|
||||
showMessage();
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
showTestVersion = AppSetting->allowEarlyUpdates();
|
||||
}
|
||||
|
||||
readTimer.start();
|
||||
|
@ -50,6 +50,7 @@ class CheckUpdates : public QMainWindow
|
||||
QString msg; // Message to show to user
|
||||
bool msgIsReady = false; // Message is ready to be displayed
|
||||
bool showIfCurrent = false; // show a message if running current release
|
||||
bool showTestVersion = false; // Show message if test version is available
|
||||
QProgressDialog * checkingBox;// Looking for updates message
|
||||
|
||||
QNetworkReply *reply;
|
||||
|
@ -2474,6 +2474,7 @@ void Daily::on_ZombieMeter_valueChanged(int action)
|
||||
}
|
||||
journal->settings[Journal_ZombieMeter]=ui->ZombieMeter->value();
|
||||
journal->SetChanged(true);
|
||||
mainwin->updateOverview();
|
||||
}
|
||||
|
||||
void Daily::on_bookmarkTable_itemChanged(QTableWidgetItem *item)
|
||||
@ -2552,6 +2553,7 @@ void Daily::on_weightSpinBox_editingFinished()
|
||||
if (g) g->setDay(nullptr);
|
||||
}
|
||||
journal->SetChanged(true);
|
||||
mainwin->updateOverview();
|
||||
}
|
||||
|
||||
void Daily::on_ouncesSpinBox_valueChanged(int arg1)
|
||||
|
@ -746,6 +746,11 @@ int MainWindow::importCPAP(ImportPath import, const QString &message)
|
||||
return c;
|
||||
}
|
||||
|
||||
void MainWindow::updateOverview()
|
||||
{
|
||||
if (overview)
|
||||
overview->ReloadGraphs();
|
||||
}
|
||||
void MainWindow::finishCPAPImport()
|
||||
{
|
||||
if (daily)
|
||||
@ -2712,8 +2717,28 @@ void MainWindow::on_actionCreate_Card_zip_triggered()
|
||||
bool ok = z.Open(filename);
|
||||
if (ok) {
|
||||
ProgressDialog * prog = new ProgressDialog(this);
|
||||
|
||||
// Very full cards can sometimes take nearly a minute to scan,
|
||||
// so display the progress dialog immediately.
|
||||
prog->setMessage(tr("Calculating size..."));
|
||||
prog->setWindowModality(Qt::ApplicationModal);
|
||||
prog->open();
|
||||
|
||||
// Build the list of files.
|
||||
FileQueue files;
|
||||
bool ok = files.AddDirectory(cardPath, prefix);
|
||||
|
||||
// If there were any unexpected errors scanning the media, add the debug log to the zip.
|
||||
if (!ok) {
|
||||
qWarning() << "Unexpected errors when scanning SD card, adding debug log to zip.";
|
||||
QString debugLog = logger->logFileName();
|
||||
files.AddFile(debugLog, prefix + "-debug.txt");
|
||||
}
|
||||
|
||||
prog->setMessage(tr("Creating zip..."));
|
||||
ok = z.AddDirectory(cardPath, prefix, prog);
|
||||
|
||||
// Create the zip.
|
||||
ok = z.AddFiles(files, prog);
|
||||
z.Close();
|
||||
} else {
|
||||
qWarning() << "Unable to open" << filename;
|
||||
|
@ -137,6 +137,8 @@ class MainWindow : public QMainWindow
|
||||
//! \brief Returns the Overview Tab object
|
||||
Overview *getOverview() { return overview; }
|
||||
|
||||
void updateOverview();
|
||||
|
||||
/*! \fn void RestartApplication(bool force_login=false);
|
||||
\brief Closes down OSCAR and restarts it
|
||||
\param bool force_login
|
||||
|
@ -363,6 +363,8 @@ void NewProfile::edit(const QString name)
|
||||
ui->untreatedAHIEdit->setValue(profile->cpap->untreatedAHI());
|
||||
ui->cpapModeCombo->setCurrentIndex((int)profile->cpap->mode());
|
||||
|
||||
on_cpapModeCombo_activated(profile->cpap->mode());
|
||||
|
||||
ui->doctorNameEdit->setText(profile->doctor->name());
|
||||
ui->doctorPracticeEdit->setText(profile->doctor->practiceName());
|
||||
ui->doctorPhoneEdit->setText(profile->doctor->phone());
|
||||
|
@ -10,7 +10,7 @@
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>942</width>
|
||||
<height>651</height>
|
||||
<height>655</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="sizePolicy">
|
||||
@ -2210,7 +2210,7 @@ Mainly affects the importer.</string>
|
||||
<string>If you are interested in helping test new features and bugfixes early, click here.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>I want to try experimental and test builds. (Advanced users only please.)</string>
|
||||
<string>I want to be notified of test versions. (Advanced users only please.)</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
@ -54,6 +54,7 @@ void initTranslations()
|
||||
langNames["fr"] = "Français";
|
||||
langNames["he"] = "\xd7\xa2\xd7\x91\xd7\xa8\xd7\x99\xd7\xaa";
|
||||
langNames["hu"] = "Magyar nyelv";
|
||||
langNames["ko"] = "\xed\x95\x9c\xea\xb5\xad\xec\x96\xb4";
|
||||
langNames["nl"] = "Nederlands";
|
||||
langNames["pt"] = "Português";
|
||||
langNames["pt_BR"] = "Português (Brazil)";
|
||||
@ -61,7 +62,7 @@ void initTranslations()
|
||||
langNames["tr"] = "Türkçe";
|
||||
langNames["ru"] = "\xd1\x80\xd1\x83\xd1\x81\xd1\x81\xd0\xba\xd0\xb8\xd0\xb9";
|
||||
langNames["th"] = "\xe0\xb8\xa0\xe0\xb8\xb2\xe0\xb8\xa9\xe0\xb8\xb2\xe0\xb9\x84\xe0\xb8\x97\xe0\xb8\xa2";
|
||||
langNames["zh_CN"] = "\xe6\xbc\xa2\xe8\xaa\x9e\xe7\xb9\x81\xe9\xab\x94\xe5\xad\x97";
|
||||
langNames["zh_CN"] = "\xe5\x8d\x8e\xe8\xaf\xad\xe7\xae\x80\xe4\xbd\x93\xe5\xad\x97 \x2d \xe4\xb8\xad\xe5\x9b\xbd";
|
||||
langNames["zh_TW"] = "\xe8\x8f\xaf\xe8\xaa\x9e\xe6\xad\xa3\xe9\xab\x94\xe5\xad\x97 \x2d \xe8\x87\xba\xe7\x81\xa3";
|
||||
|
||||
langNames[DefaultLanguage]="English (US)";
|
||||
|
@ -168,6 +168,14 @@ bool FileQueue::AddDirectory(const QString & path, const QString & prefix)
|
||||
QDir dir(path);
|
||||
if (!dir.exists() || !dir.isReadable()) {
|
||||
qWarning() << dir.canonicalPath() << "can't read directory";
|
||||
#if defined(Q_OS_MACOS)
|
||||
// If this is a directory known to be protected by macOS "Full Disk Access" permissions,
|
||||
// skip it but don't consider it an error.
|
||||
static const QSet<QString> s_macProtectedDirs = { ".fseventsd", ".Spotlight-V100", ".Trashes" };
|
||||
if (s_macProtectedDirs.contains(dir.dirName())) {
|
||||
return true;
|
||||
}
|
||||
#endif
|
||||
return false;
|
||||
}
|
||||
QString base = prefix;
|
||||
@ -190,14 +198,12 @@ bool FileQueue::AddDirectory(const QString & path, const QString & prefix)
|
||||
qWarning() << "skipping symlink" << canonicalPath << fi.symLinkTarget();
|
||||
} else if (fi.isDir()) {
|
||||
// Descend and recurse
|
||||
ok = AddDirectory(canonicalPath, relative_path);
|
||||
ok &= AddDirectory(canonicalPath, relative_path);
|
||||
} else {
|
||||
// Add the file to the zip
|
||||
ok = AddFile(canonicalPath, relative_path);
|
||||
}
|
||||
if (!ok) {
|
||||
break;
|
||||
ok &= AddFile(canonicalPath, relative_path);
|
||||
}
|
||||
// Don't stop in our tracks when we hit an error.
|
||||
}
|
||||
|
||||
return ok;
|
||||
|
Loading…
Reference in New Issue
Block a user