From cc5eb7000f0d4dbe545e2ce56d174cf381d83e8c Mon Sep 17 00:00:00 2001 From: Auro <35087590+MrAuro@users.noreply.github.com> Date: Sat, 26 Sep 2020 07:06:37 -0400 Subject: [PATCH] Fixed the english of a system message (#1878) * Update TwitchIrcServer.cpp * made english better changed "sending messages too fast" to "You are sending messages too fast" * changed english * Changed English Changed the English in 2 system messages * Update CHANGELOG.md * Changed too fast to too quickly Co-authored-by: fourtf --- CHANGELOG.md | 1 + src/providers/twitch/TwitchIrcServer.cpp | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) 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);