diff --git a/irc/chanserv.go b/irc/chanserv.go index b9b79d7a..b37ba98d 100644 --- a/irc/chanserv.go +++ b/irc/chanserv.go @@ -172,7 +172,7 @@ func csOpHandler(server *Server, client *Client, command string, params []string clientAccount := client.Account() if clientAccount == "" || clientAccount != channelInfo.Founder() { - csNotice(rb, client.t("You must be the channel founder to op")) + csNotice(rb, client.t("Only the channel founder can do this")) return } diff --git a/languages/example/irc.lang.json b/languages/example/irc.lang.json index 4136c6e6..9953990a 100644 --- a/languages/example/irc.lang.json +++ b/languages/example/irc.lang.json @@ -134,6 +134,7 @@ "No topic is set": "No topic is set", "Not enough parameters": "Not enough parameters", "Only channel founders can change registered channels": "Only channel founders can change registered channels", + "Only the channel founder can do this": "Only the channel founder can do this", "Oragono is released under the MIT license.": "Oragono is released under the MIT license.", "Passphrase contains forbidden characters or is otherwise invalid": "Passphrase contains forbidden characters or is otherwise invalid", "Password changed": "Password changed", @@ -222,7 +223,6 @@ "You may not reregister": "You may not reregister", "You must be an oper on the channel to register it": "You must be an oper on the channel to register it", "You must be registered to join that channel": "You must be registered to join that channel", - "You must be the channel founder to op": "You must be the channel founder to op", "You must connect with a TLS client certificate to use certfp": "You must connect with a TLS client certificate to use certfp", "You must specify an account": "You must specify an account", "You must wait an additional %v before making another request": "You must wait an additional %v before making another request",