mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-15 03:35:53 +00:00
16 lines
347 B
PHP
16 lines
347 B
PHP
<?php
|
|
|
|
$specialPageAliases = [];
|
|
|
|
/** English **/
|
|
$specialPageAliases['en'] = [
|
|
'AllInfoboxes' => [ 'AllInfoboxes' ],
|
|
'PortableInfoboxBuilder' => [ 'InfoboxBuilder', 'PortableInfoboxBuilder' ]
|
|
];
|
|
|
|
/** Polish */
|
|
$specialPageAliases['pl'] = [
|
|
'AllInfoboxes' => [ 'Wszystkie infoboksy' ],
|
|
'PortableInfoboxBuilder' => [ 'Kreator infoboksów' ]
|
|
];
|