Added missing periods at mod-related messages and some system messages (#5061)
Co-authored-by: Rasmus Karlsson <rasmus.karlsson@pajlada.com>
This commit is contained in:
+3
-3
@@ -352,7 +352,7 @@ void Application::initPubSub()
|
||||
}
|
||||
|
||||
QString text =
|
||||
QString("%1 cleared the chat").arg(action.source.login);
|
||||
QString("%1 cleared the chat.").arg(action.source.login);
|
||||
|
||||
auto msg = makeSystemMessage(text);
|
||||
postToThread([chan, msg] {
|
||||
@@ -369,7 +369,7 @@ void Application::initPubSub()
|
||||
}
|
||||
|
||||
QString text =
|
||||
QString("%1 turned %2 %3 mode")
|
||||
QString("%1 turned %2 %3 mode.")
|
||||
.arg(action.source.login)
|
||||
.arg(action.state == ModeChangedAction::State::On ? "on"
|
||||
: "off")
|
||||
@@ -397,7 +397,7 @@ void Application::initPubSub()
|
||||
|
||||
QString text;
|
||||
|
||||
text = QString("%1 %2 %3")
|
||||
text = QString("%1 %2 %3.")
|
||||
.arg(action.source.login,
|
||||
(action.modded ? "modded" : "unmodded"),
|
||||
action.target.login);
|
||||
|
||||
Reference in New Issue
Block a user