mediawiki-extensions-Echo/Echo.alias.php
Translation updater bot 6666ea1e39 Localisation updates from http://translatewiki.net.
Change-Id: Ifa10cab116c3984fd54d189204ad9fac235664d6
2012-11-26 20:33:36 +00:00

44 lines
956 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( 'Известувања' ),
);
/** Punjabi (ਪੰਜਾਬੀ) */
$specialPageAliases['pa'] = array(
'Notifications' => array( 'ਇਤਲਾਹਾਂ' ),
);
/** Sicilian (sicilianu) */
$specialPageAliases['scn'] = array(
'Notifications' => array( 'Notifiche' ),
);
/** Simplified Chinese (中文(简体)‎) */
$specialPageAliases['zh-hans'] = array(
'Notifications' => array( '通知' ),
);