mediawiki-extensions-CodeEd.../CodeEditor.i18n.php
Brion Vibber ec233e4297 Add stub extension version of CodeEditor embedding Ace (ace.ajax.org) for editing JS and CSS pages.
Simply using the existing gadget version modified to load Ace from the extension directory for now, will integrate better into WikiEditor and use ResourceLoader to load Ace itself in upcoming commits.
2011-06-09 21:50:45 +00:00

17 lines
310 B
PHP

<?php
/**
* Internationalisation for CodeEditor extension
*
* @file
* @ingroup Extensions
*/
$messages = array();
/** English
* @author Brion Vibber
*/
$messages['en'] = array(
'codeeditor-desc' => 'Syntax-highlighted editing for JavaScript and CSS pages using [http://ace.ajax.org/ Ace editor].'
);