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

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2019-10-23 17:12:19 +0300
committerHannah von Reth <vonreth@kde.org>2019-10-25 15:10:27 +0300
commitd9ca16310c80d362e4becbab74b1a8931c473f5d (patch)
tree6a5dccd1c6beba6305a5dbe4f114a291edcdb631 /src/gui/activitywidget.cpp
parentd38f529469d3cccfe216bc9b29c0b0d3a0daa74f (diff)
Fix notificaion text
Diffstat (limited to 'src/gui/activitywidget.cpp')
-rw-r--r--src/gui/activitywidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/activitywidget.cpp b/src/gui/activitywidget.cpp
index 2116bb77b..ca7757321 100644
--- a/src/gui/activitywidget.cpp
+++ b/src/gui/activitywidget.cpp
@@ -346,7 +346,7 @@ void ActivityWidget::slotBuildNotificationDisplay(const ActivityList &list)
_guiLogTimer.start();
// Assemble a tray notification
- QString msg = tr("You received %n new notification(s) from %2.", "", accNotified[accNotified.keys().at(0)]).arg(accNotified.keys().at(0));
+ QString msg = tr("You received %n new notification(s) from %1.", "", accNotified[accNotified.keys().at(0)]).arg(accNotified.keys().at(0));
if (newGuiLogCount >= 2) {
QString acc1 = accNotified.keys().at(0);