Page MenuHomePhabricator

Alias Special:UploadFile to Special:Upload
Open, Needs TriagePublicFeature

Description

Feature summary

Alias Special:UploadFile to Special:Upload in languages/messages/MessagesEn.php

Use case(s)

The names of special pages are inconsistent as to whether they are of the form Verb or verb+noun. A user may half-remember the name of the name of the special page and try Special:UploadFile.

I did also consider asking for Special:UploadImage since there are aliases like Special:NewImages and Special:ImageList, but I'm not sure about that as I think these are leftovers from when all files were called "images" regardless of whether that was actually true and it does imply Special:UploadVideo or Special:UploadSound.

Good first task

Please leave this if you're a seasoned contributor:

This is a good first task because there is only one change required in languages/messages/MessagesEn.php on line 555:

	'Upload'                     => [ 'Upload' ],

change to:

	'Upload'                     => [ 'Upload', 'UploadFile' ],

Event Timeline

Thank you for tagging this task with good first task for Wikimedia newcomers!

Newcomers often may not be aware of things that may seem obvious to seasoned contributors, so please take a moment to reflect on how this task might look to somebody who has never contributed to Wikimedia projects.

A good first task is a self-contained, non-controversial task with a clear approach. It should be well-described with pointers to help a completely new contributor, for example it should clearly point to the codebase URL and provide clear steps to help a contributor get set up for success. We've included some guidelines at https://phabricator.wikimedia.org/tag/good_first_task/ !

Thank you for helping us drive new contributions to our projects <3

Is there any examples where people are getting confused? Not every special page needs multiple aliases.

I wonder if any of the WMF stats tracking captures attempts at failed special page loads.