mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
opsie
This commit is contained in:
parent
40490a90fb
commit
8a69861ead
|
@ -507,7 +507,7 @@ void TwitchIrcServer::initialize()
|
||||||
action.reason =
|
action.reason =
|
||||||
u"matches %1 blocked term%2"_s.arg(
|
u"matches %1 blocked term%2"_s.arg(
|
||||||
numBlockedTermsMatched,
|
numBlockedTermsMatched,
|
||||||
numBlockedTermsMatched > 1 ? 's'
|
numBlockedTermsMatched > 1 ? u"s"
|
||||||
: "");
|
: "");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -516,7 +516,7 @@ void TwitchIrcServer::initialize()
|
||||||
u"matches %1 blocked term%2 \"%3\""_s
|
u"matches %1 blocked term%2 \"%3\""_s
|
||||||
.arg(numBlockedTermsMatched,
|
.arg(numBlockedTermsMatched,
|
||||||
numBlockedTermsMatched > 1
|
numBlockedTermsMatched > 1
|
||||||
? 's'
|
? u"s"
|
||||||
: "",
|
: "",
|
||||||
msg.blockedTermsFound.join(
|
msg.blockedTermsFound.join(
|
||||||
u"\", \""));
|
u"\", \""));
|
||||||
|
|
Loading…
Reference in a new issue