1
mirror of https://github.com/qbittorrent/qBittorrent synced 2024-07-29 06:28:21 +02:00

Revise error message

Remove the period mark at the end of error message since
`errc.message()` already contains one.
This commit is contained in:
Chocobo1 2022-01-13 16:24:17 +08:00
parent 3fdb330bd9
commit 5ebbed8160
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C

View File

@ -1028,10 +1028,9 @@ QString TorrentImpl::error() const
if (m_nativeStatus.flags & lt::torrent_flags::upload_mode)
{
const QString writeErrorStr = tr("Couldn't write to file.");
const QString uploadModeStr = tr("Torrent is currently in \"upload only\" mode.");
const QString errorMessage = QString::fromLocal8Bit(m_lastFileError.error.message().c_str());
return writeErrorStr + QLatin1Char(' ') + errorMessage + QLatin1String(". ") + uploadModeStr;
const QString uploadModeStr = tr("Torrent is now in \"upload only\" mode.");
const QString errorMessage = tr("Reason:") + QLatin1Char(' ') + QString::fromLocal8Bit(m_lastFileError.error.message().c_str());
return QString::fromLatin1("%1 %2 %3").arg(writeErrorStr, errorMessage, uploadModeStr);
}
return {};