Feature summary:
Alias Special:MuteUser to Special:Mute
Use case(s):
Special pages may include user as a direct object, when the user has the action done to them:
- BlockUser is aliased to Block
- Email is aliased to EmailUser
- There are others that aren't, but probably should be, too.
Good first task
There's only a minor change required here to languages / messages / MessagesEn.php to add Special:MuteUser as an alias. It's literally a change to one line of code to add it to the array:
'Mute' => [ 'Mute' ],
Currently at line 498 to:
'Mute' => [ 'Mute' , 'MuteUser' ],