mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-15 03:35:10 +00:00
a21b94abdc
* Fix description message key * Initialize messages array for healthy of translatewiki.net scripts * Remove . from end of description message Change-Id: Ib51e0f6dd58662a5653949d3c5fe402012425267
45 lines
1.7 KiB
PHP
45 lines
1.7 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
|
|
*/
|
|
|
|
$messages = array();
|
|
|
|
/**
|
|
* 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' => '{{desc|name=Multimedia Viewer|url=https://www.mediawiki.org/wiki/Extension:MultimediaViewer}}',
|
|
'multimediaviewer-pref' => 'Preference title',
|
|
'multimediaviewer-pref-desc' => 'Description of preference',
|
|
'multimediaviewer-file-page' => 'Text for a link to the file page for an image.',
|
|
);
|