diff --git a/src/app/conversationsadapter.cpp b/src/app/conversationsadapter.cpp index 2a6e8b9f05b480128d90311e55f49ef0fedfb0df..56e4d00d8a4c0ed739f16e569ece8df98e501b35 100644 --- a/src/app/conversationsadapter.cpp +++ b/src/app/conversationsadapter.cpp @@ -246,8 +246,8 @@ ConversationsAdapter::onNewTrustRequest(const QString& accountId, auto contactPhoto = Utils::contactPhoto(lrcInstance_, peerUri, QSize(50, 50), accountId); auto notifId = QString("%1;%2").arg(accountId, conv); systemTray_->showNotification(notifId, - tr("%1 received a new trust request").arg(to), - "New request from " + peerBestName, + tr("%1 received a new invitation").arg(to), + "New invitation from " + peerBestName, SystemTray::NotificationType::REQUEST, Utils::QImageToByteArray(contactPhoto)); }; diff --git a/src/libclient/interaction.cpp b/src/libclient/interaction.cpp index 81bb6148945d984ab88c6c50ee185e549e8fbe07..4608dfb9fe4f8d9b83a25b1a0beec831a63e9b64 100644 --- a/src/libclient/interaction.cpp +++ b/src/libclient/interaction.cpp @@ -87,7 +87,7 @@ Info::init(const MapStringString& message, if (message["mode"] == "0") { body = QObject::tr("Private conversation created"); } else { - body = QObject::tr("Swarm created"); + body = QObject::tr("Group conversation created"); } } else if (type == Type::CALL) { duration = message["duration"].toInt() / 1000;