mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-11-13 17:56:55 +00:00
f79c14a92c
Change-Id: Id45cb86fe1c5c89e67529caa6257ad9bf8eff84c
117 lines
3.8 KiB
PHP
117 lines
3.8 KiB
PHP
<?php
|
||
/*
|
||
* This file is part of the MediaWiki extension Popups..
|
||
*
|
||
* Popups 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.
|
||
*
|
||
* Popups 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 Popups. If not, see <http://www.gnu.org/licenses/>.
|
||
*
|
||
* @file
|
||
* @ingroup extensions
|
||
*/
|
||
|
||
$messages = array();
|
||
|
||
/**
|
||
* English
|
||
*/
|
||
$messages['en'] = array(
|
||
'popups-message' => 'Popups',
|
||
'popups-desc' => 'Displays popups with summaries of page contents when the user hovers over an page link',
|
||
);
|
||
|
||
/** Message documentation (Message documentation)
|
||
*/
|
||
$messages['qqq'] = array(
|
||
'popups-message' => 'Name shown in user preference for this extension',
|
||
'popups-desc' => '{{desc|name=Popups|url=https://www.mediawiki.org/wiki/Extension:Popups}}',
|
||
);
|
||
|
||
/** German (Deutsch)
|
||
* @author Metalhead64
|
||
*/
|
||
$messages['de'] = array(
|
||
'popups-message' => 'Popups',
|
||
'popups-desc' => 'Ermöglicht beim Überfahren mit der Maus über einen Seitenlink die Anzeige von Popups mit Seiteninhaltszusammenfassungen',
|
||
);
|
||
|
||
/** French (français)
|
||
* @author Gomoko
|
||
*/
|
||
$messages['fr'] = array(
|
||
'popups-message' => 'Fenêtres popup',
|
||
'popups-desc' => 'Afficher des fenêtres popup avec les résumés des contenus des pages quand l’utilisateur survole le lien d’une page',
|
||
);
|
||
|
||
/** Hebrew (עברית)
|
||
* @author Amire80
|
||
*/
|
||
$messages['he'] = array(
|
||
'popups-message' => 'חלונות קופצים',
|
||
'popups-desc' => 'הצגת חלונות קופצים עם סיכומים של תוכן הדף כאשר משתמש עובר מעל קישור לדף',
|
||
);
|
||
|
||
/** Italian (italiano)
|
||
* @author Beta16
|
||
*/
|
||
$messages['it'] = array(
|
||
'popups-message' => 'Popup',
|
||
'popups-desc' => "Mostra un popup con un estratto del contenuto quando l'utente passa sopra al collegamento ad una pagina",
|
||
);
|
||
|
||
/** Japanese (日本語)
|
||
* @author Shirayuki
|
||
*/
|
||
$messages['ja'] = array(
|
||
'popups-message' => 'ポップアップ',
|
||
);
|
||
|
||
/** Macedonian (македонски)
|
||
* @author Bjankuloski06
|
||
*/
|
||
$messages['mk'] = array(
|
||
'popups-message' => 'Скокачки прозорчиња',
|
||
'popups-desc' => 'Прикажува скокачки прозорчиња со резиме на содржината на страницата кога ќе отидете со стрелката врз дадената врска',
|
||
);
|
||
|
||
/** Pashto (پښتو)
|
||
* @author Ahmed-Najib-Biabani-Ibrahimkhel
|
||
*/
|
||
$messages['ps'] = array(
|
||
'popups-message' => 'بربوکيزې',
|
||
'popups-desc' => 'بربوکيزې د يو مخ د مېنځپانگې لنډيزونه هغه وخت ښکاره کوي کله چې کارن د موږک غشی د يوه مخ پر تړنې راولي',
|
||
);
|
||
|
||
/** Russian (русский)
|
||
* @author Okras
|
||
*/
|
||
$messages['ru'] = array(
|
||
'popups-message' => 'Всплывающие окна',
|
||
'popups-desc' => 'Отображает всплывающие окна с описанием содержания страницы, когда пользователь наводит курсор на ссылку, ведущую на страницу',
|
||
);
|
||
|
||
/** Simplified Chinese (中文(简体))
|
||
* @author Liuxinyu970226
|
||
*/
|
||
$messages['zh-hans'] = array(
|
||
'popups-message' => '弹窗',
|
||
'popups-desc' => '当用户悬停页面链接时显示对应页面内容摘要的弹窗',
|
||
);
|
||
|
||
/** Traditional Chinese (中文(繁體))
|
||
* @author Liuxinyu970226
|
||
*/
|
||
$messages['zh-hant'] = array(
|
||
'popups-message' => '快顯視窗',
|
||
'popups-desc' => '黨用戶懸停頁面鏈接時顯示頁面內容摘要的快顯視窗',
|
||
);
|