diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/configuredivecomputerthreads.cpp | 6 |
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.")); |