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 <tf.four@gmail.com>
This commit is contained in:
Auro
2020-09-26 07:06:37 -04:00
committed by GitHub
parent b3768abfa6
commit cc5eb7000f
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -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);