Bug 799068 - Land in comm-central Instantbird's changes to chat/ - 3 - Bio 1561 - Remove libpurple's pretentious /wallops help message, r=aleth.

This commit is contained in:
Patrick Cloke 2012-06-29 15:53:07 -04:00
Родитель 6093a66751
Коммит cac3a5d228
2 изменённых файлов: 0 добавлений и 11 удалений

Просмотреть файл

@ -68,7 +68,6 @@ command.topic=%S [<new topic>]: Set this channel's topic.
command.umode=%S (+|-)<new mode>: Set or unset a user mode.
command.version=%S <nick>: Request the version of a user's client.
command.voice=%S <nick1>[,<nick2>]*: Grant channel voice status to someone. You must be a channel operator to do this.
command.wallops=%S <message>: If you don't know what this is, you probably can't use it (sends a command to all connected with the +w flag and all operators on the server.
command.whois=%S <nick>: Get information on a user.
# LOCALIZATION NOTE (message.*):

Просмотреть файл

@ -283,11 +283,6 @@ var commands = [
get helpString() _("command.op", "op"),
run: function(aMsg, aConv) setMode(aMsg, aConv, "o", true)
},
{
name: "operwall",
get helpString() _("command.wallops", "operwall"),
run: function(aMsg, aConv) simpleCommand(aConv, "WALLOPS", aMsg)
},
{
name: "operserv",
get helpString() _("command.operserv", "operserv"),
@ -363,11 +358,6 @@ var commands = [
get helpString() _("command.voice", "voice"),
run: function(aMsg, aConv) setMode(aMsg, aConv, "v", true)
},
{
name: "wallops",
get helpString() _("command.wallops", "wallops"),
run: function(aMsg, aConv) simpleCommand(aConv, "WALLOPS", aMsg)
},
{
name: "whois",
get helpString() _("command.whois", "whois"),