mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
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:
parent
b3768abfa6
commit
cc5eb7000f
2 changed files with 3 additions and 2 deletions
|
@ -29,6 +29,7 @@
|
||||||
- Minor: Removed "Online Logs" functionality as services are shut down (#1640)
|
- 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 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: 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)
|
- 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: 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)
|
- Bugfix: Fix the incorrect `Open stream in browser` labelling in the whisper split (#1860)
|
||||||
|
|
|
@ -336,7 +336,7 @@ void TwitchIrcServer::onMessageSendRequested(TwitchChannel *channel,
|
||||||
if (this->lastErrorTimeSpeed_ + 30s < now)
|
if (this->lastErrorTimeSpeed_ + 30s < now)
|
||||||
{
|
{
|
||||||
auto errorMessage =
|
auto errorMessage =
|
||||||
makeSystemMessage("sending messages too fast");
|
makeSystemMessage("You are sending messages too quickly.");
|
||||||
|
|
||||||
channel->addMessage(errorMessage);
|
channel->addMessage(errorMessage);
|
||||||
|
|
||||||
|
@ -357,7 +357,7 @@ void TwitchIrcServer::onMessageSendRequested(TwitchChannel *channel,
|
||||||
if (this->lastErrorTimeAmount_ + 30s < now)
|
if (this->lastErrorTimeAmount_ + 30s < now)
|
||||||
{
|
{
|
||||||
auto errorMessage =
|
auto errorMessage =
|
||||||
makeSystemMessage("sending too many messages");
|
makeSystemMessage("You are sending too many messages.");
|
||||||
|
|
||||||
channel->addMessage(errorMessage);
|
channel->addMessage(errorMessage);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue