diff --git a/src/plugins/baremetal/debugservers/uvsc/jlinkuvscserverprovider.cpp b/src/plugins/baremetal/debugservers/uvsc/jlinkuvscserverprovider.cpp index ee835d6f463..955b285a2ef 100644 --- a/src/plugins/baremetal/debugservers/uvsc/jlinkuvscserverprovider.cpp +++ b/src/plugins/baremetal/debugservers/uvsc/jlinkuvscserverprovider.cpp @@ -215,7 +215,7 @@ FilePath JLinkUvscServerProvider::optionsFilePath(DebuggerRunTool *runTool, const JLinkUvProjectOptions projectOptions(this); if (!writer.write(&projectOptions)) { errorMessage = BareMetalDebugSupport::tr( - "Unable to create an uVision project options template"); + "Unable to create an uVision project options template."); return {}; } return optionsPath; diff --git a/src/plugins/debugger/uvsc/uvscclient.cpp b/src/plugins/debugger/uvsc/uvscclient.cpp index 3b4aa437651..50738d33772 100644 --- a/src/plugins/debugger/uvsc/uvscclient.cpp +++ b/src/plugins/debugger/uvsc/uvscclient.cpp @@ -1087,7 +1087,7 @@ void UvscClient::setError(UvscError error, const QString &errorString) reinterpret_cast(buffer.data()), buffer.size()); m_errorString = (st == UVSC_STATUS_SUCCESS) - ? QString::fromLocal8Bit(buffer) : tr("Unknown error"); + ? QString::fromLocal8Bit(buffer) : tr("Unknown error."); } else { m_errorString = errorString; } @@ -1116,7 +1116,7 @@ void UvscClient::customEvent(QEvent *event) bool UvscClient::checkConnection() { if (m_descriptor == -1) { - setError(ConfigurationError, tr("Connection is not open")); + setError(ConfigurationError, tr("Connection is not open.")); return false; } return true; diff --git a/src/plugins/debugger/uvsc/uvscengine.cpp b/src/plugins/debugger/uvsc/uvscengine.cpp index 23b657ac588..38e95df1dbe 100644 --- a/src/plugins/debugger/uvsc/uvscengine.cpp +++ b/src/plugins/debugger/uvsc/uvscengine.cpp @@ -711,7 +711,7 @@ void UvscEngine::handleReloadPeripheralRegisters(const QList &addresses for (const quint64 address : addresses) { QByteArray data = UvscUtils::encodeU32(0); if (!m_client->fetchMemory(address, data)) { - showMessage(tr("UVSC: Fetching peripheral register failed"), LogMisc); + showMessage(tr("UVSC: Fetching peripheral register failed."), LogMisc); } else { const quint32 value = UvscUtils::decodeU32(data); peripheralRegisterHandler()->updateRegister(address, value);