mediawiki-extensions-Nuke/SpecialNuke.alias.php

46 lines
721 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

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:Nuke
*
* @addtogroup Extensions
*/
$aliases = array();
/** English
* @author Brion Vibber
*/
$aliases['en'] = array(
'Nuke' => array( 'Nuke' ),
);
/** Arabic (العربية) */
$aliases['ar'] = array(
'Nuke' => array( 'حذف_كمي' ),
);
/** Egyptian Spoken Arabic (مصرى) */
$aliases['arz'] = array(
'Nuke' => array( 'حذف_كمى' ),
);
/** German
* @author Raimond Spekking
*/
$aliases['de'] = array(
'Nuke' => array( 'Massenlöschung' ),
);
/** Hebrew (עברית)
* @author Rotem Liss
*/
$aliases['he'] = array(
'Nuke' => array( 'מחיקה_מרובה' ),
);
/** Dutch (Nederlands) */
$aliases['nl'] = array(
'Nuke' => array( 'MassaalVerwijderen' ),
);