From 601c4fb3c081c1c06cf796596ad5548729654b19 Mon Sep 17 00:00:00 2001 From: Matthieu Gallien Date: Wed, 25 Aug 2021 13:15:19 +0200 Subject: [PATCH] remove a tr call where translator cannot do anything meaningful close #3708 Signed-off-by: Matthieu Gallien --- src/libsync/theme.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsync/theme.cpp b/src/libsync/theme.cpp index ffe8f15e32..920ffed040 100644 --- a/src/libsync/theme.cpp +++ b/src/libsync/theme.cpp @@ -468,7 +468,7 @@ QString Theme::about() const devString += tr("

Using virtual files plugin: %1

") .arg(Vfs::modeToString(bestAvailableVfsMode())); - devString += tr("
%1") + devString += QStringLiteral("
%1") .arg(QSysInfo::productType() % QLatin1Char('-') % QSysInfo::kernelVersion()); return devString;