summaryrefslogtreecommitdiffstats
path: root/core/configuredivecomputerthreads.cpp
diff options
context:
space:
mode:
authorGravatar Stefan Fuchs <sfuchs@gmx.de>2018-03-03 14:34:31 +0100
committerGravatar Robert C. Helling <helling@atdotde.de>2018-03-05 16:19:49 +0100
commit1723db9d0b0f4d02f4497c98b48a06dd4a0ce5c5 (patch)
treed6952e65084fabf252e0b62d754b4eddcb231655 /core/configuredivecomputerthreads.cpp
parenteb08ec972dc134d3f926e14fda024f9405e71692 (diff)
downloadsubsurface-1723db9d0b0f4d02f4497c98b48a06dd4a0ce5c5.tar.gz
Configure DC dialog: Add a few missing translations
Signed-off-by: Stefan Fuchs <sfuchs@gmx.de>
Diffstat (limited to 'core/configuredivecomputerthreads.cpp')
-rw-r--r--core/configuredivecomputerthreads.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/configuredivecomputerthreads.cpp b/core/configuredivecomputerthreads.cpp
index ac4752c5a..0d9a553e8 100644
--- a/core/configuredivecomputerthreads.cpp
+++ b/core/configuredivecomputerthreads.cpp
@@ -2133,7 +2133,7 @@ void ReadSettingsThread::run()
} else if (rc == DC_STATUS_UNSUPPORTED) {
emit error(tr("This feature is not yet available for the selected dive computer."));
} else {
- emit error("Failed!");
+ emit error(tr("Failed!"));
}
break;
#if DC_VERSION_CHECK(0, 5, 0)
@@ -2142,7 +2142,7 @@ void ReadSettingsThread::run()
if (rc == DC_STATUS_SUCCESS)
emit devicedetails(m_deviceDetails);
else
- emit error("Failed!");
+ emit error(tr("Failed!"));
break;
#endif // divecomputer 0.5.0
#ifdef DEBUG_OSTC
@@ -2153,7 +2153,7 @@ void ReadSettingsThread::run()
if (rc == DC_STATUS_SUCCESS)
emit devicedetails(m_deviceDetails);
else
- emit error("Failed!");
+ emit error(tr("Failed!"));
break;
default:
emit error(tr("This feature is not yet available for the selected dive computer."));