Use @phpcs-require-sorted-array from new codesniffer release 32.0.0 Bug: T255826 Change-Id: I827d1f5010d000609324ec398beeb142d9bac299
19 lines
500 B
PHP
19 lines
500 B
PHP
<?php
|
|
/** British English (British English)
|
|
*
|
|
* To improve a translation please visit https://translatewiki.net
|
|
*
|
|
* @ingroup Language
|
|
* @file
|
|
*
|
|
*/
|
|
|
|
$fallback = 'en';
|
|
|
|
/** @phpcs-require-sorted-array */
|
|
$specialPageAliases = [
|
|
'Uncategorizedcategories' => [ 'UncategorisedCategories' ],
|
|
'Uncategorizedimages' => [ 'UncategorisedFiles', 'UncategorisedImages' ],
|
|
'Uncategorizedpages' => [ 'UncategorisedPages' ],
|
|
'Uncategorizedtemplates' => [ 'UncategorisedTemplates' ],
|
|
];
|