From: Christian Kamm Date: Mon, 25 Mar 2019 09:52:34 +0000 (+0100) Subject: Notifications: Don't say "downloaded" for new files #7101 X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~21^2~468^2~266 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=e0c8acc195740b0a0072620afb9323b2b7529a32;p=nextcloud-desktop.git Notifications: Don't say "downloaded" for new files #7101 These files may very well just be new virtual files that were explicitly *not* downloaded. --- diff --git a/src/gui/folder.cpp b/src/gui/folder.cpp index fbb348476..e2e52b530 100644 --- a/src/gui/folder.cpp +++ b/src/gui/folder.cpp @@ -420,9 +420,9 @@ void Folder::createGuiLog(const QString &filename, LogStatus status, int count, break; case LogStatusNew: if (count > 1) { - text = tr("%1 and %n other file(s) have been downloaded.", "", count - 1).arg(file); + text = tr("%1 and %n other file(s) are new.", "", count - 1).arg(file); } else { - text = tr("%1 has been downloaded.", "%1 names a file.").arg(file); + text = tr("%1 is new.", "%1 names a file.").arg(file); } break; case LogStatusUpdated: