mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-15 03:35:10 +00:00
4898f42e18
Works with the new multilightbox library from https://gitorious.org/multilightbox/multilightbox Also has fullscreen and close. Very fun. Change-Id: I6d61f6590843e1767bc7492dbd98e6aa3b85fcdc
43 lines
1.6 KiB
PHP
43 lines
1.6 KiB
PHP
<?php
|
|
/*
|
|
* This file is part of the MediaWiki extension MultimediaViewer.
|
|
*
|
|
* MultimediaViewer is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* MultimediaViewer is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with MultimediaViewer. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* @file
|
|
* @ingroup extensions
|
|
*/
|
|
|
|
/**
|
|
* English
|
|
* @author Mark Holmquist <mtraceur@member.fsf.org>
|
|
*/
|
|
$messages['en'] = array(
|
|
'multimediaviewer-desc' => 'Adds a nicer-looking multimedia viewer for images.',
|
|
'multimediaviewer-pref' => 'Enable nicer image viewing',
|
|
'multimediaviewer-pref-desc' => 'Enables a nicer-looking multimedia viewer for images on pages that have thumbnails. Uses a third party lightbox library and JavaScript.',
|
|
'multimediaviewer-file-page' => 'Go to corresponding file page',
|
|
);
|
|
|
|
/**
|
|
* Message documentation
|
|
* @author Mark Holmquist <mtraceur@member.fsf.org>
|
|
*/
|
|
$messages['qqq'] = array(
|
|
'multimediaviewer-desc' => 'Description of the extension for Special:Version',
|
|
'multimediaviewer-pref' => 'Preference title',
|
|
'multimediaviewer-pref-desc' => 'Description of preference',
|
|
'multimediaviewer-file-page' => 'Text for a link to the file page for an image.',
|
|
);
|