1
0
Fork 0
forked from External/ergo

fix some translation warnings

This commit is contained in:
Shivaram Lingamneni 2019-12-30 12:44:07 -05:00
parent d826d5ae3b
commit bd822853bc
3 changed files with 7 additions and 7 deletions

View file

@ -462,7 +462,7 @@ func sendTransferPendingNotice(server *Server, account, chname string) {
break // prefer the login where the nick is the account
}
}
client.Send(nil, chanservMask, "NOTICE", client.Nick(), fmt.Sprintf(client.t("You have been offered ownership of channel %s. To accept, /CS TRANSFER ACCEPT %s"), chname, chname))
client.Send(nil, chanservMask, "NOTICE", client.Nick(), fmt.Sprintf(client.t("You have been offered ownership of channel %[1]s. To accept, /CS TRANSFER ACCEPT %[1]s"), chname))
}
func processTransferAccept(client *Client, chname string, rb *ResponseBuffer) {