mediawiki-extensions-Echo/Echo.alias.php

24 lines
506 B
PHP
Raw Normal View History

<?php
/**
* Aliases for special pages for extension Echo
*
* @file
* @ingroup Extensions
*/
$specialPageAliases = array();
/** English (English) */
$specialPageAliases['en'] = array(
'Notifications' => array( 'Notifications' ),
);
/** Macedonian (македонски) */
$specialPageAliases['mk'] = array(
'Notifications' => array( 'Известувања' ),
);
/** Simplified Chinese (中文(简体)‎) */
$specialPageAliases['zh-hans'] = array(
'Notifications' => array( '通知' ),
);