diff --git a/resources/qml/NotificationWarning.qml b/resources/qml/NotificationWarning.qml
index 95ca210be3196162202100286b2c9b8092112920..75ef5f1767c876bcb086d81a7284d6c917160940 100644
--- a/resources/qml/NotificationWarning.qml
+++ b/resources/qml/NotificationWarning.qml
@@ -29,7 +29,7 @@ Item {
             anchors.rightMargin: 10
             anchors.bottom: parent.bottom
             color: Nheko.theme.red
-            text: qsTr("You will be pinging the whole room")
+            text: qsTr("You are about to notify the whole room")
             textFormat: Text.PlainText
         }
 
diff --git a/src/notifications/Manager.cpp b/src/notifications/Manager.cpp
index f24a48ff8e5fdce672fc56e91e3842ef1c49c524..5d51c6c8624fecf21b8e814f6658d17c36532cb8 100644
--- a/src/notifications/Manager.cpp
+++ b/src/notifications/Manager.cpp
@@ -23,18 +23,12 @@ NotificationsManager::getMessageTemplate(const mtx::responses::Notification &not
     }
 
     if (mtx::accessors::msg_type(notification.event) == mtx::events::MessageType::Emote) {
-        return tr("* %1 %2",
-                  "Format an emote message in a notification, %1 is the sender, %2 the "
-                  "message")
-          .arg(sender);
+        return QString("* %1 %2").arg(sender);
     } else if (utils::isReply(notification.event)) {
         return tr("%1 replied: %2",
                   "Format a reply in a notification. %1 is the sender, %2 the message")
           .arg(sender);
     } else {
-        return tr("%1: %2",
-                  "Format a normal message in a notification. %1 is the sender, %2 the "
-                  "message")
-          .arg(sender);
+        return QString("%1: %2").arg(sender);
     }
 }