mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-25 00:25:47 +00:00
8473e64425
Change-Id: I61ad0ee85eaabc3da238f06c27c4e14484377afe
81 lines
3.6 KiB
PHP
81 lines
3.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
|
||
*/
|
||
|
||
$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 (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.',
|
||
);
|
||
|
||
/** German (Deutsch)
|
||
* @author Metalhead64
|
||
*/
|
||
$messages['de'] = array(
|
||
'multimediaviewer-desc' => 'Ergänzt einen schöneren Multimediabetrachter für Bilder',
|
||
'multimediaviewer-pref' => 'Schönere Bildbetrachtung aktivieren',
|
||
'multimediaviewer-pref-desc' => 'Aktiviert einen schöneren Multimediabetrachter für Bilder auf Seiten, die Vorschaubilder enthalten. Benutzt eine Drittpartei-Lightbox-Bibliothek und JavaScript.',
|
||
'multimediaviewer-file-page' => 'Gehe zur dazugehörigen Dateiseite',
|
||
);
|
||
|
||
/** French (français)
|
||
* @author Gomoko
|
||
*/
|
||
$messages['fr'] = array(
|
||
'multimediaviewer-desc' => 'Ajoute une jolie visionneuse multimédia pour les images',
|
||
'multimediaviewer-pref' => 'Activer un affichage des images plus joli',
|
||
'multimediaviewer-pref-desc' => 'Active une jolie visionneuse multimédia pour les images dans les pages qui ont des vignettes. Utilise une bibliothèque tierce légère et JavaScript.',
|
||
'multimediaviewer-file-page' => 'Aller à la page du fichier correspondant',
|
||
);
|
||
|
||
/** Japanese (日本語)
|
||
* @author Shirayuki
|
||
*/
|
||
$messages['ja'] = array(
|
||
'multimediaviewer-file-page' => '対応するファイル ページに移動',
|
||
);
|
||
|
||
/** Ukrainian (українська)
|
||
* @author Andriykopanytsia
|
||
*/
|
||
$messages['uk'] = array(
|
||
'multimediaviewer-desc' => 'Додає приємніший мультимедійний переглядач зображень',
|
||
'multimediaviewer-pref' => 'Увімкнути приємніший перегляд зображень',
|
||
'multimediaviewer-pref-desc' => 'Вмикає приємніший мультимедійний переглядач зображень на сторінки, які містять ескізи. Використовується у сторонніх бібліотеках lightbox і JavaScript.',
|
||
'multimediaviewer-file-page' => 'Перейти на сторінку відповідного файлу',
|
||
);
|