mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 02:23:58 +00:00
31f667ccf7
Also move the maintenane script to a name that makes MediaWiki.Files.ClassMatchesFilename.NotMatch not error, and use the more restrictive licence tag usage for MediaWiki.Commenting.LicenseComment.InvalidLicenseTag. Change-Id: Ifa5518cd590ae83c6fd76f1dbb5a2ce40de4b119
32 lines
553 B
PHP
32 lines
553 B
PHP
<?php
|
||
/**
|
||
* Aliases for Special:CollabPad
|
||
*
|
||
* @file
|
||
* @ingroup Extensions
|
||
* @copyright 2011-2018 VisualEditor Team and others; see AUTHORS.txt
|
||
* @license MIT
|
||
*/
|
||
|
||
$specialPageAliases = [];
|
||
|
||
/** English
|
||
* @author "James D. Forrester"
|
||
*/
|
||
$specialPageAliases['en'] = [
|
||
'CollabPad' => [ 'CollabPad', 'Collab Pad' ],
|
||
];
|
||
|
||
/** Cyrmu
|
||
* @author "James D. Forrester"
|
||
*/
|
||
$specialPageAliases['cy'] = [
|
||
'CollabPad' => [ 'PadCydweithredu', 'Pad Cydweithredu' ],
|
||
];
|
||
|
||
/** Urdu
|
||
*/
|
||
$specialPageAliases['ur'] = [
|
||
'CollabPad' => [ 'مشترکہ_پیڈ' ],
|
||
];
|