Feature summary:
Alias Special:Move to Special:MovePage
Use case(s):
Special pages sometimes include Page as a direct object, when the page has the action done to it, but sometimes the names don't include Page:
- Delete is aliased to DeletePage
- Edit is aliased to EditPage
Plus, I think we should also consider Special:Rename and Special:RenamePage here as moving a page is sometimes called renaming it.
Good first task
If you are experienced, please leave this one to the newbies!
There's only a minor change required here to languages / messages / MessagesEn.php to add the aliases. It's literally a change to one line of code to add it to the array:
'Movepage' => [ 'MovePage' ],
Currently at line 497 to:
'Movepage' => [ 'MovePage' , 'Move', 'Rename', 'RenamePage' ],