From d08f014def4fe62f2a951cf02d2a7e9a5d22f2d3 Mon Sep 17 00:00:00 2001 From: Nate Graham Date: Tue, 25 Nov 2025 22:15:45 -0700 Subject: [PATCH] Rephrase a British English wording for the base string "X has put Y out of the room" is a British English style sentence. Which is fine, but I'm using en_US, not en_UK. Re-phrase this to sound a bit more American (which is the linguistic style we use for the base strings), and then count on the en_UK translators bringing back the old phrasing for en_UK. --- src/libneochat/eventhandler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libneochat/eventhandler.cpp b/src/libneochat/eventhandler.cpp index 0a39b90e4..1d1e1cb28 100644 --- a/src/libneochat/eventhandler.cpp +++ b/src/libneochat/eventhandler.cpp @@ -389,9 +389,9 @@ QString EventHandler::getBody(const NeoChatRoom *room, const Quotient::RoomEvent return i18n("left the room"); } if (const auto &reason = e.contentJson()["reason"_L1].toString().toHtmlEscaped(); !reason.isEmpty()) { - return i18n("has put %1 out of the room: %2", subjectName, reason); + return i18n("has removed %1 from the room: %2", subjectName, reason); } - return i18n("has put %1 out of the room", subjectName); + return i18n("has removed %1 from the room", subjectName); case Membership::Ban: if (e.senderId() != e.userId()) { if (e.reason().isEmpty()) {