Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValdnet <47037905+Valdnet@users.noreply.github.com>2021-08-02 14:49:24 +0300
committerallexzander <blackslayer4@gmail.com>2021-08-03 15:00:53 +0300
commitdbd061c44bc5c6b2d290de7bc6d64f37a5a3f899 (patch)
treee905e1802c4c25914d6a38cd1710dec8ad5b14cb /src/common
parent60c0e5e97a0625810f24019b770658e2a722fde7 (diff)
l10n: Replace apostrophe with double quotation. Remove double space and sort sentence.
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
Diffstat (limited to 'src/common')
-rw-r--r--src/common/checksums.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/checksums.cpp b/src/common/checksums.cpp
index c604842a3..142c05ec5 100644
--- a/src/common/checksums.cpp
+++ b/src/common/checksums.cpp
@@ -355,11 +355,11 @@ void ValidateChecksumHeader::slotChecksumCalculated(const QByteArray &checksumTy
const QByteArray &checksum)
{
if (checksumType != _expectedChecksumType) {
- emit validationFailed(tr("The checksum header contained an unknown checksum type '%1'").arg(QString::fromLatin1(_expectedChecksumType)));
+ emit validationFailed(tr("The checksum header contained an unknown checksum type \"%1\"").arg(QString::fromLatin1(_expectedChecksumType)));
return;
}
if (checksum != _expectedChecksum) {
- emit validationFailed(tr("The downloaded file does not match the checksum, it will be resumed. '%1' != '%2'").arg(QString::fromUtf8(_expectedChecksum), QString::fromUtf8(checksum)));
+ emit validationFailed(tr(R"(The downloaded file does not match the checksum, it will be resumed. "%1" != "%2")").arg(QString::fromUtf8(_expectedChecksum), QString::fromUtf8(checksum)));
return;
}
emit validated(checksumType, checksum);