mirror of
https://github.com/diocloid/LinkTitles.git
synced 2025-07-12 17:29:30 +02:00
14 lines
323 B
PHP
14 lines
323 B
PHP
<?php
|
|
/*! @file LinkTitles.i18n.magic.php
|
|
*/
|
|
|
|
/// Holds the two magic words that the extension provides.
|
|
$magicWords = array();
|
|
|
|
/// Default magic words in English.
|
|
$magicWords['en'] = array(
|
|
'MAG_LINKTITLES_NOAUTOLINKS' => array(0, '__NOAUTOLINKS__'),
|
|
'MAG_LINKTITLES_NOTARGET' => array(0, '__NOAUTOLINKTARGET__')
|
|
);
|
|
|