mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-27 17:20:40 +00:00
d876740045
Change-Id: Ia6e370f57d75d4cfff25e0a2cdfef746bb8c0fe3
39 lines
827 B
PHP
39 lines
827 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' ),
|
|
);
|
|
|
|
/** Korean (한국어) */
|
|
$specialPageAliases['ko'] = array(
|
|
'Notifications' => array( '알림' ),
|
|
);
|
|
|
|
/** Macedonian (македонски) */
|
|
$specialPageAliases['mk'] = array(
|
|
'Notifications' => array( 'Известувања' ),
|
|
);
|
|
|
|
/** Sicilian (sicilianu) */
|
|
$specialPageAliases['scn'] = array(
|
|
'Notifications' => array( 'Notifiche' ),
|
|
);
|
|
|
|
/** Simplified Chinese (中文(简体)) */
|
|
$specialPageAliases['zh-hans'] = array(
|
|
'Notifications' => array( '通知' ),
|
|
); |