diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b2f67d3a..4c2e7b5ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,7 @@ - Minor: Removed "Online Logs" functionality as services are shut down (#1640) - Minor: CTRL+F now selects the Find text input field in the Settings Dialog (#1806 #1811) - Minor: CTRL+F now selects the search text input field in the Search Popup (#1812) +- Minor: Changed the English in two rate-limited system messages (#1878) - Minor: Modify our word boundary logic in highlight phrase searching to accomodate non-regex phrases with "word-boundary-creating" characters like ! (#1885, #1890) - Bugfix: Fixed not being able to open links in incognito with Microsoft Edge (Chromium) (#1875) - Bugfix: Fix the incorrect `Open stream in browser` labelling in the whisper split (#1860) diff --git a/src/providers/twitch/TwitchIrcServer.cpp b/src/providers/twitch/TwitchIrcServer.cpp index b2c2fe98a..d31e844fa 100644 --- a/src/providers/twitch/TwitchIrcServer.cpp +++ b/src/providers/twitch/TwitchIrcServer.cpp @@ -336,7 +336,7 @@ void TwitchIrcServer::onMessageSendRequested(TwitchChannel *channel, if (this->lastErrorTimeSpeed_ + 30s < now) { auto errorMessage = - makeSystemMessage("sending messages too fast"); + makeSystemMessage("You are sending messages too quickly."); channel->addMessage(errorMessage); @@ -357,7 +357,7 @@ void TwitchIrcServer::onMessageSendRequested(TwitchChannel *channel, if (this->lastErrorTimeAmount_ + 30s < now) { auto errorMessage = - makeSystemMessage("sending too many messages"); + makeSystemMessage("You are sending too many messages."); channel->addMessage(errorMessage);