mediawiki-extensions-AbuseF.../AbuseFilter.alias.php

45 lines
906 B
PHP
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* Aliases for special pages
*
* @file
* @ingroup Extensions
*/
$aliases = array();
/** English */
$aliases['en'] = array(
'AbuseLog' => array( 'AbuseLog' ),
'AbuseFilter' => array( 'AbuseFilter' ),
);
/** Arabic (العربية)
* @author Meno25
*/
$aliases['ar'] = array(
'AbuseLog' => array( 'سجل_الإساءة' ),
'AbuseFilter' => array( 'فلتر_الإساءة' ),
);
/** Egyptian Spoken Arabic (مصرى)
* @author Meno25
*/
$aliases['arz'] = array(
'AbuseLog' => array( 'سجل_الإساءة' ),
'AbuseFilter' => array( 'فلتر_الإساءة' ),
);
/** Dutch (Nederlands) */
$aliases['nl'] = array(
'AbuseLog' => array( 'Misbruiklogboek' ),
'AbuseFilter' => array( 'Misbruikfilter' ),
);
/** Norwegian (bokmål) (Norsk (bokmål)) */
$aliases['no'] = array(
'AbuseLog' => array( 'Misbrukslogg' ),
'AbuseFilter' => array( 'Misbruksfilter' ),
);