diff options
-rw-r--r-- | Documentation/user-manual.txt | 4 | ||||
-rw-r--r-- | core/qthelper.cpp | 2 | ||||
-rw-r--r-- | desktop-widgets/tab-widgets/TabDiveInformation.cpp | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/user-manual.txt b/Documentation/user-manual.txt index 5191b49b6..b62948a9d 100644 --- a/Documentation/user-manual.txt +++ b/Documentation/user-manual.txt @@ -1040,10 +1040,10 @@ right allows two ways of expressing atmospheric pressure: mbar or m/ft above sea The altitude unit (metric/imperial) is taken from the settings in the _Units Preferences_ screen. A third option is to use the atmospheric pressure provided by the dive computer. In order to specify the pressure/altitude, first select the appropriate unit in the dropbox (in the case of the image on the left -these are "mbar/m/use dc", then type an appropriate value into the text box. In the case +these are "mbar/m/Use DC", then type an appropriate value into the text box. In the case of m/ft the altitude typed into the text box is automatically converted to the mean expected atmospheric pressure (mbar) at the specified altitude. -In the case of "use dc", no value is required in the text box. Atmospheric pressure provided by a dive +In the case of "Use DC", no value is required in the text box. Atmospheric pressure provided by a dive computer does not need any editing. Recording of five dive conditions that can be done on a five star rating scale. The convention is that the most comfortable diff --git a/core/qthelper.cpp b/core/qthelper.cpp index f59b804dd..bb68afcbc 100644 --- a/core/qthelper.cpp +++ b/core/qthelper.cpp @@ -1162,7 +1162,7 @@ QString localFilePath(const QString &originalFilename) // the water types need to match the watertypes enum const QStringList waterTypes = { - gettextFromC::tr("Fresh"), gettextFromC::tr("Brackish"), gettextFromC::tr("EN13319"), gettextFromC::tr("Salt"), gettextFromC::tr("use dc") + gettextFromC::tr("Fresh"), gettextFromC::tr("Brackish"), gettextFromC::tr("EN13319"), gettextFromC::tr("Salt"), gettextFromC::tr("Use DC") }; // TODO: Apparently Qt has no simple way of listing the supported video diff --git a/desktop-widgets/tab-widgets/TabDiveInformation.cpp b/desktop-widgets/tab-widgets/TabDiveInformation.cpp index 87e845511..a91151fed 100644 --- a/desktop-widgets/tab-widgets/TabDiveInformation.cpp +++ b/desktop-widgets/tab-widgets/TabDiveInformation.cpp @@ -21,7 +21,7 @@ TabDiveInformation::TabDiveInformation(QWidget *parent) : TabBase(parent), ui(ne { ui->setupUi(this); connect(&diveListNotifier, &DiveListNotifier::divesChanged, this, &TabDiveInformation::divesChanged); - QStringList atmPressTypes { "mbar", get_depth_unit() ,tr("use dc")}; + QStringList atmPressTypes { "mbar", get_depth_unit() ,tr("Use DC")}; ui->atmPressType->insertItems(0, atmPressTypes); pressTypeIndex = 0; ui->waterTypeCombo->insertItems(0, waterTypes); |