mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-12-04 04:09:00 +00:00
d9575568c9
Change-Id: Ief906c648bb19006f6df18f0c19c4b77407e6944
29 lines
613 B
PHP
29 lines
613 B
PHP
<?php
|
|
/**
|
|
* Aliases for special pages for extension Echo
|
|
*
|
|
* @file
|
|
* @ingroup Extensions
|
|
*/
|
|
|
|
$specialPageAliases = array();
|
|
|
|
/** English (English) */
|
|
$specialPageAliases['en'] = array(
|
|
'Notifications' => array( 'Notifications' ),
|
|
);
|
|
|
|
/** Italian (italiano) */
|
|
$specialPageAliases['it'] = array(
|
|
'Notifications' => array( 'Notifiche' ),
|
|
);
|
|
|
|
/** Macedonian (македонски) */
|
|
$specialPageAliases['mk'] = array(
|
|
'Notifications' => array( 'Известувања' ),
|
|
);
|
|
|
|
/** Simplified Chinese (中文(简体)) */
|
|
$specialPageAliases['zh-hans'] = array(
|
|
'Notifications' => array( '通知' ),
|
|
); |