From d756534908d5203593dcb5f664fcfa2c4c86560a Mon Sep 17 00:00:00 2001 From: Erik Verbruggen Date: Mon, 19 Jun 2023 17:30:43 +0200 Subject: [PATCH] Fix misleading message Some servers do not provide activities at all. In that case, the label should not read "have activities enabled", because that implies that they could be provided, but are disabled. Which is misleading. --- src/gui/activitywidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/activitywidget.cpp b/src/gui/activitywidget.cpp index 4e6d4fdb55c..bdd2cd819f5 100644 --- a/src/gui/activitywidget.cpp +++ b/src/gui/activitywidget.cpp @@ -155,7 +155,7 @@ void ActivityWidget::showLabels() t.clear(); QSetIterator i(_accountsWithoutActivities); while (i.hasNext()) { - t.append(tr("
Account %1 does not have activities enabled.").arg(i.next())); + t.append(tr("
Account %1 does not provide activities.").arg(i.next())); } _ui->_bottomLabel->setTextFormat(Qt::RichText); _ui->_bottomLabel->setText(t);