2014-02-06 10:21:39 +00:00
|
|
|
|
<?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(
|
2014-03-19 01:07:53 +00:00
|
|
|
|
'popups-message' => 'Hovercards',
|
2014-03-23 21:14:28 +00:00
|
|
|
|
'popups-desc' => 'Displays hovercards with summaries of page contents when the user hovers over a page link',
|
2014-02-27 06:07:14 +00:00
|
|
|
|
'popups-last-edited' => 'Last edited $1',
|
2014-02-07 09:09:13 +00:00
|
|
|
|
'popups-redirects' => 'redirects to <h3>$1</h3>',
|
2014-02-06 10:21:39 +00:00
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
/** Message documentation (Message documentation)
|
2014-02-16 20:21:18 +00:00
|
|
|
|
* @author Shirayuki
|
2014-02-06 10:21:39 +00:00
|
|
|
|
*/
|
|
|
|
|
$messages['qqq'] = array(
|
2014-02-07 11:52:40 +00:00
|
|
|
|
'popups-message' => 'Name shown in user preference for this extension',
|
2014-02-06 10:21:39 +00:00
|
|
|
|
'popups-desc' => '{{desc|name=Popups|url=https://www.mediawiki.org/wiki/Extension:Popups}}',
|
2014-03-17 21:21:04 +00:00
|
|
|
|
'popups-last-edited' => 'Message to show time span since the page was last edited. Parameters:
|
|
|
|
|
* $1 - the timespan in words (localized). e.g. "3 months ago"',
|
2014-03-19 01:07:53 +00:00
|
|
|
|
'popups-redirects' => 'Message shown when the hovercard is showing a redirected page',
|
2014-02-06 10:21:39 +00:00
|
|
|
|
);
|
2014-02-10 20:49:40 +00:00
|
|
|
|
|
2014-02-12 21:35:48 +00:00
|
|
|
|
/** Arabic (العربية)
|
|
|
|
|
* @author Asaifm
|
|
|
|
|
*/
|
|
|
|
|
$messages['ar'] = array(
|
2014-03-26 20:41:14 +00:00
|
|
|
|
'popups-message' => 'كروت الحوم',
|
|
|
|
|
'popups-desc' => 'يقوم بعرض كروت حوم بملخصات عن محتوى الصفحة عندما يقوم المستخدم بحوم المؤشر على رابط الصفحة',
|
|
|
|
|
'popups-last-edited' => 'آخر تعديل تم في $1',
|
|
|
|
|
'popups-redirects' => 'إعادة توجيه إلى <h3>$1</h3>',
|
2014-02-12 21:35:48 +00:00
|
|
|
|
);
|
|
|
|
|
|
2014-02-13 21:18:55 +00:00
|
|
|
|
/** Asturian (asturianu)
|
|
|
|
|
* @author Xuacu
|
|
|
|
|
*/
|
|
|
|
|
$messages['ast'] = array(
|
2014-03-19 20:43:48 +00:00
|
|
|
|
'popups-message' => 'Ventanos emerxentes', # Fuzzy
|
|
|
|
|
'popups-desc' => "Amuesa ventanos emerxentes con resumes del conteníu de la páxina cuando l'usuariu pasa'l mur per un enllaz de páxina", # Fuzzy
|
2014-03-18 21:01:29 +00:00
|
|
|
|
'popups-last-edited' => 'Última edición $1',
|
2014-02-26 22:01:35 +00:00
|
|
|
|
'popups-redirects' => 'redireiciona a <h3>$1</h3>',
|
2014-02-16 20:21:18 +00:00
|
|
|
|
);
|
|
|
|
|
|
2014-02-19 20:09:36 +00:00
|
|
|
|
/** Bengali (বাংলা)
|
|
|
|
|
* @author Aftab1995
|
|
|
|
|
*/
|
|
|
|
|
$messages['bn'] = array(
|
2014-03-28 19:31:55 +00:00
|
|
|
|
'popups-message' => 'পপআপ', # Fuzzy
|
2014-02-19 20:09:36 +00:00
|
|
|
|
);
|
|
|
|
|
|
2014-03-17 21:21:04 +00:00
|
|
|
|
/** Tibetan (བོད་ཡིག)
|
|
|
|
|
* @author Phurbutsering
|
|
|
|
|
*/
|
|
|
|
|
$messages['bo'] = array(
|
|
|
|
|
'popups-last-edited' => 'མཐའ་མའི་རྩོམ་སྒྲིག། $1',
|
|
|
|
|
);
|
|
|
|
|
|
2014-03-27 20:31:50 +00:00
|
|
|
|
/** Catalan (català)
|
|
|
|
|
* @author Vriullop
|
|
|
|
|
*/
|
|
|
|
|
$messages['ca'] = array(
|
|
|
|
|
'popups-message' => 'Quadres emergents',
|
|
|
|
|
'popups-desc' => "Mostra un quadre emergent amb un resum del contingut quan l'usuari apunta a un enllaç de pàgina",
|
|
|
|
|
'popups-last-edited' => 'Darrera modificació: $1',
|
|
|
|
|
'popups-redirects' => 'redirigeix a <h3>$1</h3>',
|
|
|
|
|
);
|
|
|
|
|
|
2014-02-16 20:21:18 +00:00
|
|
|
|
/** Chechen (нохчийн)
|
|
|
|
|
* @author Умар
|
|
|
|
|
*/
|
|
|
|
|
$messages['ce'] = array(
|
2014-03-19 20:43:48 +00:00
|
|
|
|
'popups-message' => 'Гучу долу кор', # Fuzzy
|
2014-03-17 21:21:04 +00:00
|
|
|
|
'popups-last-edited' => 'ТӀеххьара тайина $1',
|
2014-02-19 20:09:36 +00:00
|
|
|
|
'popups-redirects' => 'дӀасахӀажайо <h3>$1</h3> тӀе',
|
2014-02-13 21:18:55 +00:00
|
|
|
|
);
|
|
|
|
|
|
2014-03-21 20:47:54 +00:00
|
|
|
|
/** Czech (čeština)
|
|
|
|
|
* @author Mormegil
|
|
|
|
|
*/
|
|
|
|
|
$messages['cs'] = array(
|
|
|
|
|
'popups-message' => 'Vyskakovací kartičky',
|
|
|
|
|
'popups-desc' => 'Zobrazuje vyskakovací kartičky se shrnutím obsahu cílové stránky, když uživatel umístí kurzor myši nad odkaz.',
|
|
|
|
|
'popups-last-edited' => 'Naposledy editováno $1',
|
|
|
|
|
'popups-redirects' => 'přesměrování na <h3>$1</h3>',
|
|
|
|
|
);
|
|
|
|
|
|
2014-02-10 20:49:40 +00:00
|
|
|
|
/** German (Deutsch)
|
|
|
|
|
* @author Metalhead64
|
|
|
|
|
*/
|
|
|
|
|
$messages['de'] = array(
|
2014-03-19 20:43:48 +00:00
|
|
|
|
'popups-message' => 'Hovercards',
|
|
|
|
|
'popups-desc' => 'Ermöglicht beim Überfahren mit der Maus über einen Seitenlink die Anzeige von Hovercards mit Seiteninhaltszusammenfassungen.',
|
2014-03-17 21:21:04 +00:00
|
|
|
|
'popups-last-edited' => 'Zuletzt bearbeitet $1',
|
2014-02-19 20:09:36 +00:00
|
|
|
|
'popups-redirects' => 'leitet weiter auf <h3>$1</h3>',
|
2014-02-14 20:20:59 +00:00
|
|
|
|
);
|
|
|
|
|
|
2014-03-02 20:40:38 +00:00
|
|
|
|
/** Esperanto (Esperanto)
|
|
|
|
|
* @author KuboF
|
|
|
|
|
*/
|
|
|
|
|
$messages['eo'] = array(
|
|
|
|
|
'popups-redirects' => 'alidirektiloj al <h3>$1</h3>',
|
|
|
|
|
);
|
|
|
|
|
|
2014-02-14 20:20:59 +00:00
|
|
|
|
/** Spanish (español)
|
|
|
|
|
* @author Fitoschido
|
|
|
|
|
*/
|
|
|
|
|
$messages['es'] = array(
|
2014-03-28 19:31:55 +00:00
|
|
|
|
'popups-message' => 'Cuadros de información de artículos', # Fuzzy
|
|
|
|
|
'popups-desc' => 'Muestra recuadros emergentes con el resumen del contenido de un artículo cuando el usuario posa el ratón sobre un enlace.', # Fuzzy
|
2014-02-10 20:49:40 +00:00
|
|
|
|
);
|
|
|
|
|
|
2014-02-23 21:43:13 +00:00
|
|
|
|
/** Persian (فارسی)
|
|
|
|
|
* @author Armin1392
|
2014-03-19 20:43:48 +00:00
|
|
|
|
* @author Ebraminio
|
2014-02-23 21:43:13 +00:00
|
|
|
|
*/
|
|
|
|
|
$messages['fa'] = array(
|
2014-03-19 20:43:48 +00:00
|
|
|
|
'popups-message' => 'پوپاپها', # Fuzzy
|
|
|
|
|
'popups-desc' => 'نمایش پوپاپها با خلاصههای محتواهای صفحه هنگامی که کاربر منتظر یک پیوند صفحه است.', # Fuzzy
|
2014-03-17 21:21:04 +00:00
|
|
|
|
'popups-last-edited' => 'آخرین ویرایش شده $1',
|
2014-02-23 21:43:13 +00:00
|
|
|
|
'popups-redirects' => 'تغییر مسیرها به <h3>$1</h3>',
|
|
|
|
|
);
|
|
|
|
|
|
2014-03-18 21:01:29 +00:00
|
|
|
|
/** Finnish (suomi)
|
|
|
|
|
* @author Stryn
|
|
|
|
|
*/
|
|
|
|
|
$messages['fi'] = array(
|
2014-03-19 20:43:48 +00:00
|
|
|
|
'popups-message' => 'Ponnahdusikkunat', # Fuzzy
|
|
|
|
|
'popups-desc' => 'Näyttää ponnahdusikkunassa yhteenvedon sivun sisällöstä, kun käyttäjä laittaa hiiren sivulle osoittavan linkin päälle.', # Fuzzy
|
2014-03-18 21:01:29 +00:00
|
|
|
|
'popups-last-edited' => 'Viimeksi muokattu $1',
|
|
|
|
|
'popups-redirects' => 'ohjaa sivulle <h3>$1</h3>',
|
|
|
|
|
);
|
|
|
|
|
|
2014-02-11 19:58:02 +00:00
|
|
|
|
/** French (français)
|
|
|
|
|
* @author Gomoko
|
2014-03-20 20:30:56 +00:00
|
|
|
|
* @author Ltrlg
|
2014-02-14 20:20:59 +00:00
|
|
|
|
* @author VIGNERON
|
2014-02-11 19:58:02 +00:00
|
|
|
|
*/
|
|
|
|
|
$messages['fr'] = array(
|
2014-03-19 20:43:48 +00:00
|
|
|
|
'popups-message' => 'Hovercards',
|
|
|
|
|
'popups-desc' => 'Afficher des fenêtres au survol avec les résumés des contenus des pages quand l’utilisateur survole un lien de page.',
|
2014-03-20 20:30:56 +00:00
|
|
|
|
'popups-last-edited' => 'Dernière modification $1',
|
2014-02-19 20:09:36 +00:00
|
|
|
|
'popups-redirects' => 'redirigé vers <h3>$1</h3>',
|
2014-02-11 19:58:02 +00:00
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
/** Hebrew (עברית)
|
|
|
|
|
* @author Amire80
|
|
|
|
|
*/
|
|
|
|
|
$messages['he'] = array(
|
2014-03-20 20:30:56 +00:00
|
|
|
|
'popups-message' => 'כרטיסים מרחפים',
|
|
|
|
|
'popups-desc' => 'הצגת כרטיסים מרחפים עם סיכומים של תוכן הדף כאשר משתמש עובר מעל קישור לדף.',
|
2014-03-17 21:21:04 +00:00
|
|
|
|
'popups-last-edited' => 'נערך לאחרונה $1',
|
2014-02-21 22:28:42 +00:00
|
|
|
|
'popups-redirects' => 'מפנה לדף <h3>$1</h3>',
|
2014-02-11 19:58:02 +00:00
|
|
|
|
);
|
|
|
|
|
|
2014-03-22 20:50:21 +00:00
|
|
|
|
/** Hindi (हिन्दी)
|
|
|
|
|
* @author Wikiuser13
|
|
|
|
|
*/
|
|
|
|
|
$messages['hi'] = array(
|
|
|
|
|
'popups-message' => 'हूवरकार्ड',
|
|
|
|
|
'popups-desc' => 'जब एक उपयोगकर्ता पृष्ठ लिंक पर हूवर करता है तब हूवरकार्ड पृष्ठ सारांश की सामग्री प्रदर्शित करता है।',
|
|
|
|
|
);
|
|
|
|
|
|
2014-03-27 20:31:50 +00:00
|
|
|
|
/** Croatian (hrvatski)
|
|
|
|
|
* @author MaGa
|
|
|
|
|
*/
|
|
|
|
|
$messages['hr'] = array(
|
|
|
|
|
'popups-message' => 'Sažetak u lebdećem prozorčiću',
|
|
|
|
|
'popups-desc' => 'Prikazuje sažet sadržaj stranice prelaskom miša preko poveznice.',
|
|
|
|
|
);
|
|
|
|
|
|
2014-02-10 20:49:40 +00:00
|
|
|
|
/** Italian (italiano)
|
|
|
|
|
* @author Beta16
|
|
|
|
|
*/
|
|
|
|
|
$messages['it'] = array(
|
2014-03-21 20:47:54 +00:00
|
|
|
|
'popups-message' => 'Popup',
|
|
|
|
|
'popups-desc' => "Mostra un popup con un estratto del contenuto quando l'utente passa sopra al collegamento ad una pagina.",
|
2014-03-20 20:30:56 +00:00
|
|
|
|
'popups-last-edited' => 'Ultima modifica $1',
|
|
|
|
|
'popups-redirects' => 'reindirizza a <h3>$1</h3>',
|
2014-02-10 20:49:40 +00:00
|
|
|
|
);
|
2014-02-11 19:58:02 +00:00
|
|
|
|
|
|
|
|
|
/** Japanese (日本語)
|
|
|
|
|
* @author Shirayuki
|
2014-02-16 20:21:18 +00:00
|
|
|
|
* @author Whym
|
2014-02-11 19:58:02 +00:00
|
|
|
|
*/
|
|
|
|
|
$messages['ja'] = array(
|
2014-03-20 20:30:56 +00:00
|
|
|
|
'popups-message' => 'ホバーカード',
|
2014-03-25 20:52:37 +00:00
|
|
|
|
'popups-desc' => 'ページへのリンクにホバーした際に、ページ内容の要約のホバーカードを表示する',
|
2014-03-28 19:31:55 +00:00
|
|
|
|
'popups-last-edited' => '最終更新: $1',
|
2014-02-11 19:58:02 +00:00
|
|
|
|
);
|
|
|
|
|
|
2014-03-17 21:21:04 +00:00
|
|
|
|
/** Kazakh (Cyrillic script) (қазақша (кирил))
|
|
|
|
|
* @author Arystanbek
|
|
|
|
|
*/
|
|
|
|
|
$messages['kk-cyrl'] = array(
|
2014-03-27 20:31:50 +00:00
|
|
|
|
'popups-message' => 'Қалқып шығушы терезелер',
|
|
|
|
|
'popups-desc' => 'Пайдаланушы жүгіргіні бет сілтемесіне жақындатқанда бет мазмұны түйіндемесін қалқып шығушы терезелерімен көрсету',
|
2014-03-17 21:21:04 +00:00
|
|
|
|
'popups-last-edited' => '$1 соңғы рет өңделді',
|
|
|
|
|
'popups-redirects' => 'бағытталған беті <h3>$1</h3>',
|
|
|
|
|
);
|
|
|
|
|
|
2014-02-13 21:18:55 +00:00
|
|
|
|
/** Korean (한국어)
|
|
|
|
|
* @author Priviet
|
|
|
|
|
*/
|
|
|
|
|
$messages['ko'] = array(
|
2014-03-28 19:31:55 +00:00
|
|
|
|
'popups-message' => '팝업', # Fuzzy
|
|
|
|
|
'popups-desc' => '사용자가 문서 링크에 마우스를 갖다대면 문서 내용 요약을 팝업으로 표시', # Fuzzy
|
2014-02-21 22:28:42 +00:00
|
|
|
|
'popups-redirects' => '<h3>$1</h3> 문서로 넘겨주기',
|
2014-02-13 21:18:55 +00:00
|
|
|
|
);
|
|
|
|
|
|
2014-03-17 21:21:04 +00:00
|
|
|
|
/** Colognian (Ripoarisch)
|
|
|
|
|
* @author Purodha
|
|
|
|
|
*/
|
|
|
|
|
$messages['ksh'] = array(
|
2014-03-19 20:43:48 +00:00
|
|
|
|
'popups-message' => '<i lang="en" xml:lang="en">Popups</i>', # Fuzzy
|
|
|
|
|
'popups-desc' => 'Zeisch <i lang="en" xml:lang="en">popups</i> met Zersammefaßonge wann mer met de Muuß övver ene Lengk ob en Sig jeihd.', # Fuzzy
|
2014-03-17 21:21:04 +00:00
|
|
|
|
'popups-redirects' => 'leid_öm ob <h3>$1</h3>',
|
|
|
|
|
);
|
|
|
|
|
|
2014-02-15 21:06:26 +00:00
|
|
|
|
/** Luxembourgish (Lëtzebuergesch)
|
|
|
|
|
* @author Robby
|
|
|
|
|
*/
|
|
|
|
|
$messages['lb'] = array(
|
2014-03-23 20:30:46 +00:00
|
|
|
|
'popups-message' => 'Hovercards',
|
2014-03-20 20:30:56 +00:00
|
|
|
|
'popups-last-edited' => 'Lescht Ännerung $1',
|
2014-02-21 22:28:42 +00:00
|
|
|
|
'popups-redirects' => 'Viruleedung op <h3>$1</h3',
|
2014-02-15 21:06:26 +00:00
|
|
|
|
);
|
|
|
|
|
|
2014-03-17 21:21:04 +00:00
|
|
|
|
/** Latvian (latviešu)
|
|
|
|
|
* @author Srolanh
|
|
|
|
|
*/
|
|
|
|
|
$messages['lv'] = array(
|
|
|
|
|
'popups-last-edited' => 'Pēdējo reizi tika labots $1',
|
|
|
|
|
);
|
|
|
|
|
|
2014-03-02 20:40:38 +00:00
|
|
|
|
/** Malagasy (Malagasy)
|
|
|
|
|
* @author Jagwar
|
|
|
|
|
*/
|
|
|
|
|
$messages['mg'] = array(
|
2014-03-28 19:31:55 +00:00
|
|
|
|
'popups-desc' => "Mampiseho popup misy ny ambangovangom-botoatim-pejy rehefa mandalo eo ambonin'ilay rohim-pejy ny mpampiasa", # Fuzzy
|
2014-03-02 20:40:38 +00:00
|
|
|
|
);
|
|
|
|
|
|
2014-02-11 19:58:02 +00:00
|
|
|
|
/** Macedonian (македонски)
|
|
|
|
|
* @author Bjankuloski06
|
|
|
|
|
*/
|
|
|
|
|
$messages['mk'] = array(
|
2014-03-20 20:30:56 +00:00
|
|
|
|
'popups-message' => 'Инфопрозорчиња',
|
|
|
|
|
'popups-desc' => 'Прикажува инфопрозорчиња со резиме на содржината на страницата кога ќе отидете со стрелката врз дадената врска',
|
2014-03-17 21:21:04 +00:00
|
|
|
|
'popups-last-edited' => 'Последно уредување: $1',
|
2014-02-19 20:09:36 +00:00
|
|
|
|
'popups-redirects' => 'пренасочува кон <h3>$1</h3>',
|
2014-02-11 19:58:02 +00:00
|
|
|
|
);
|
|
|
|
|
|
2014-03-20 20:30:56 +00:00
|
|
|
|
/** Malayalam (മലയാളം)
|
|
|
|
|
* @author Praveenp
|
|
|
|
|
*/
|
|
|
|
|
$messages['ml'] = array(
|
|
|
|
|
'popups-message' => 'ഹോവർകാർഡ്സ്',
|
|
|
|
|
'popups-desc' => 'ഒരു താളിന്റെ കണ്ണിയുടെ മുകളിലൂടെ മൗസ് നീക്കുമ്പോൾ കണ്ണിയിലുള്ള താളിന്റെ ഉള്ളടക്കത്തിന്റെ സംഗ്രഹം കാണിക്കുക',
|
|
|
|
|
'popups-last-edited' => 'അവസാനം തിരുത്തിയത് $1',
|
|
|
|
|
'popups-redirects' => '<h3>$1</h3> എന്നതിലേക്ക് തിരിച്ചുവിട്ടിരിക്കുന്നു',
|
|
|
|
|
);
|
|
|
|
|
|
2014-02-15 21:06:26 +00:00
|
|
|
|
/** Marathi (मराठी)
|
|
|
|
|
* @author V.narsikar
|
|
|
|
|
*/
|
|
|
|
|
$messages['mr'] = array(
|
2014-03-28 19:31:55 +00:00
|
|
|
|
'popups-message' => 'उचकण्या', # Fuzzy
|
|
|
|
|
'popups-desc' => 'जेंव्हा सदस्य एखाद्या लेखदुव्यावर घुटमळतो तेंव्हा, लेखाच्या आशय सारांशासह उचकण्या दर्शविते', # Fuzzy
|
2014-02-19 20:09:36 +00:00
|
|
|
|
'popups-redirects' => '<h3>$1</h3>ला पुनर्निर्देशित करते',
|
2014-02-15 21:06:26 +00:00
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
/** Dutch (Nederlands)
|
2014-02-24 21:08:29 +00:00
|
|
|
|
* @author SPQRobin
|
2014-03-22 20:50:21 +00:00
|
|
|
|
* @author Siebrand
|
2014-02-15 21:06:26 +00:00
|
|
|
|
* @author Sjoerddebruin
|
|
|
|
|
*/
|
|
|
|
|
$messages['nl'] = array(
|
2014-03-22 20:50:21 +00:00
|
|
|
|
'popups-message' => "Pop-uppagina's",
|
2014-03-23 20:30:46 +00:00
|
|
|
|
'popups-desc' => "Geeft pop-uppagina's weer met samenvattingen van de inhoud van pagina's bij zweven boven koppelingen",
|
|
|
|
|
'popups-last-edited' => '$1 voor het laatst bewerkt',
|
2014-02-24 21:08:29 +00:00
|
|
|
|
'popups-redirects' => 'verwijst door naar <h3>$1</h3>',
|
2014-02-15 21:06:26 +00:00
|
|
|
|
);
|
|
|
|
|
|
2014-03-15 20:10:29 +00:00
|
|
|
|
/** Occitan (occitan)
|
|
|
|
|
* @author Cedric31
|
|
|
|
|
*/
|
|
|
|
|
$messages['oc'] = array(
|
2014-03-23 20:30:46 +00:00
|
|
|
|
'popups-message' => 'Hovercards',
|
2014-03-15 20:10:29 +00:00
|
|
|
|
'popups-redirects' => 'redirigit cap a <h3>$1</h3>',
|
|
|
|
|
);
|
|
|
|
|
|
2014-02-15 21:06:26 +00:00
|
|
|
|
/** Polish (polski)
|
|
|
|
|
* @author Chrumps
|
2014-03-28 19:31:55 +00:00
|
|
|
|
* @author Peter Bowman
|
2014-02-15 21:06:26 +00:00
|
|
|
|
*/
|
|
|
|
|
$messages['pl'] = array(
|
2014-03-28 19:31:55 +00:00
|
|
|
|
'popups-message' => 'Okna pop-up', # Fuzzy
|
|
|
|
|
'popups-desc' => 'Wyświetla okna pop-up z opisami treści artykułów po umieszczeniu wskaźnika myszy na odnośniku.', # Fuzzy
|
|
|
|
|
'popups-last-edited' => 'Ostatnia edycja: $1',
|
2014-02-23 21:43:13 +00:00
|
|
|
|
'popups-redirects' => 'przekierowuje do<h3>$1</h3>',
|
2014-02-15 21:06:26 +00:00
|
|
|
|
);
|
|
|
|
|
|
2014-02-11 19:58:02 +00:00
|
|
|
|
/** Pashto (پښتو)
|
|
|
|
|
* @author Ahmed-Najib-Biabani-Ibrahimkhel
|
|
|
|
|
*/
|
|
|
|
|
$messages['ps'] = array(
|
2014-03-28 19:31:55 +00:00
|
|
|
|
'popups-message' => 'بربوکيزې', # Fuzzy
|
|
|
|
|
'popups-desc' => 'بربوکيزې د يو مخ د مېنځپانگې لنډيزونه هغه وخت ښکاره کوي کله چې کارن د موږک غشی د يوه مخ پر تړنې راولي', # Fuzzy
|
2014-02-23 21:43:13 +00:00
|
|
|
|
'popups-redirects' => '<h3>$1</h3> ته مخ ورگرځونې',
|
2014-02-11 19:58:02 +00:00
|
|
|
|
);
|
|
|
|
|
|
2014-02-12 21:35:48 +00:00
|
|
|
|
/** Portuguese (português)
|
|
|
|
|
* @author Imperadeiro98
|
2014-03-09 20:33:51 +00:00
|
|
|
|
* @author SandroHc
|
2014-03-27 20:31:50 +00:00
|
|
|
|
* @author Vitorvicentevalente
|
2014-02-12 21:35:48 +00:00
|
|
|
|
*/
|
|
|
|
|
$messages['pt'] = array(
|
2014-03-27 20:31:50 +00:00
|
|
|
|
'popups-message' => 'Pop-ups',
|
|
|
|
|
'popups-desc' => 'Exibe um painel com resumos do conteúdo de páginas quando o utilizador passa o rato por cima da ligação de uma página.',
|
2014-03-17 21:21:04 +00:00
|
|
|
|
'popups-last-edited' => 'Última edição há $1',
|
2014-03-27 20:31:50 +00:00
|
|
|
|
'popups-redirects' => 'redirecciona para <h3>$1</h3>',
|
2014-02-12 21:35:48 +00:00
|
|
|
|
);
|
|
|
|
|
|
2014-02-11 19:58:02 +00:00
|
|
|
|
/** Russian (русский)
|
|
|
|
|
* @author Okras
|
|
|
|
|
*/
|
|
|
|
|
$messages['ru'] = array(
|
2014-03-21 20:47:54 +00:00
|
|
|
|
'popups-message' => 'Всплывающие окошки',
|
|
|
|
|
'popups-desc' => 'Отображает всплывающие окошки с описанием содержания страницы, когда пользователь наводит курсор на ссылку, ведущую на страницу',
|
2014-03-17 21:21:04 +00:00
|
|
|
|
'popups-last-edited' => 'Последний раз редактировалось $1',
|
2014-02-19 20:09:36 +00:00
|
|
|
|
'popups-redirects' => 'перенаправляет на <h3>$1</h3>',
|
2014-02-14 20:20:59 +00:00
|
|
|
|
);
|
|
|
|
|
|
2014-02-21 22:28:42 +00:00
|
|
|
|
/** Scots (Scots)
|
|
|
|
|
* @author John Reid
|
|
|
|
|
*/
|
|
|
|
|
$messages['sco'] = array(
|
2014-03-20 20:30:56 +00:00
|
|
|
|
'popups-message' => 'Hovercairds',
|
2014-03-26 20:41:14 +00:00
|
|
|
|
'popups-desc' => 'Displeys hovercairds wi ootlines o page contents whan the uiser hovers ower ae page airtin.',
|
2014-03-18 21:01:29 +00:00
|
|
|
|
'popups-last-edited' => 'Laist eeeditit $1',
|
2014-02-21 22:28:42 +00:00
|
|
|
|
'popups-redirects' => 'redirects til <h3>$1</h3>',
|
|
|
|
|
);
|
|
|
|
|
|
2014-03-28 19:31:55 +00:00
|
|
|
|
/** Slovak (slovenčina)
|
|
|
|
|
* @author Sudo77(new)
|
|
|
|
|
*/
|
|
|
|
|
$messages['sk'] = array(
|
|
|
|
|
'popups-message' => 'Vyskakovacie kartičky',
|
|
|
|
|
'popups-desc' => 'Keď používateľ podrží kurzor nad odkazom, zobrazí sa vyskakovacia kartička so zhrnutím obsahu stránky.',
|
|
|
|
|
'popups-last-edited' => 'Posledná úprava $1',
|
|
|
|
|
'popups-redirects' => 'presmerovanie na <h3>$1</h3>',
|
|
|
|
|
);
|
|
|
|
|
|
2014-02-26 22:01:35 +00:00
|
|
|
|
/** Serbian (Cyrillic script) (српски (ћирилица))
|
|
|
|
|
* @author Rancher
|
|
|
|
|
*/
|
|
|
|
|
$messages['sr-ec'] = array(
|
|
|
|
|
'popups-redirects' => 'преусмерења на <h3>$1</h3>',
|
|
|
|
|
);
|
|
|
|
|
|
2014-02-15 21:06:26 +00:00
|
|
|
|
/** Swedish (svenska)
|
2014-03-17 21:21:04 +00:00
|
|
|
|
* @author Jopparn
|
2014-03-11 20:45:19 +00:00
|
|
|
|
* @author Lokal Profil
|
2014-02-15 21:06:26 +00:00
|
|
|
|
* @author WikiPhoenix
|
|
|
|
|
*/
|
|
|
|
|
$messages['sv'] = array(
|
2014-03-19 20:43:48 +00:00
|
|
|
|
'popups-message' => 'Popup-fönster', # Fuzzy
|
|
|
|
|
'popups-desc' => 'Visar popup-fönster med sammanfattningar av sidans innehåll när användaren för muspekaren över en sidlänk.', # Fuzzy
|
2014-03-17 21:21:04 +00:00
|
|
|
|
'popups-last-edited' => 'Senast redigerad $1',
|
2014-03-18 21:01:29 +00:00
|
|
|
|
'popups-redirects' => 'omdirigering till <h3>$1</h3>',
|
2014-02-15 21:06:26 +00:00
|
|
|
|
);
|
|
|
|
|
|
2014-02-21 22:28:42 +00:00
|
|
|
|
/** Telugu (తెలుగు)
|
2014-03-02 20:40:38 +00:00
|
|
|
|
* @author Chaduvari
|
2014-02-21 22:28:42 +00:00
|
|
|
|
* @author Ravichandra
|
|
|
|
|
*/
|
|
|
|
|
$messages['te'] = array(
|
2014-03-28 19:31:55 +00:00
|
|
|
|
'popups-message' => 'బుడగలు', # Fuzzy
|
2014-02-21 22:28:42 +00:00
|
|
|
|
);
|
|
|
|
|
|
2014-02-16 20:21:18 +00:00
|
|
|
|
/** Turkish (Türkçe)
|
|
|
|
|
* @author Joseph
|
|
|
|
|
*/
|
|
|
|
|
$messages['tr'] = array(
|
2014-03-28 19:31:55 +00:00
|
|
|
|
'popups-message' => 'Açılır pencereler', # Fuzzy
|
|
|
|
|
'popups-desc' => 'Kullanıcı bir makale bağlantısı üzerine geldiğinde makale içeriği özetini içeren açılır pencereler görüntüler.', # Fuzzy
|
2014-02-16 20:21:18 +00:00
|
|
|
|
);
|
|
|
|
|
|
2014-02-14 20:20:59 +00:00
|
|
|
|
/** Ukrainian (українська)
|
|
|
|
|
* @author Andriykopanytsia
|
|
|
|
|
*/
|
|
|
|
|
$messages['uk'] = array(
|
2014-03-24 22:22:40 +00:00
|
|
|
|
'popups-message' => 'Спливні вікна',
|
|
|
|
|
'popups-desc' => 'Відображає спливні вікна з описом змісту сторінок при наведенні покажчика миші на посилання сторінки.',
|
2014-03-19 20:43:48 +00:00
|
|
|
|
'popups-last-edited' => 'Остання редакція $1',
|
2014-02-21 22:28:42 +00:00
|
|
|
|
'popups-redirects' => 'перенаправляє на <h3>$1</h3>',
|
2014-02-11 19:58:02 +00:00
|
|
|
|
);
|
|
|
|
|
|
2014-02-23 21:43:13 +00:00
|
|
|
|
/** Vietnamese (Tiếng Việt)
|
2014-03-06 19:56:01 +00:00
|
|
|
|
* @author Minh Nguyen
|
2014-02-23 21:43:13 +00:00
|
|
|
|
* @author Skye Darcy
|
|
|
|
|
*/
|
|
|
|
|
$messages['vi'] = array(
|
2014-03-24 22:22:40 +00:00
|
|
|
|
'popups-message' => 'Phiếu tóm tắt',
|
|
|
|
|
'popups-desc' => 'Nổi lên phiếu tóm tắt nội dung của một trang khi đặt trỏ chuột lên một liên kết đến trang đó.',
|
|
|
|
|
'popups-last-edited' => 'Sửa đổi lần cuối $1',
|
2014-03-06 19:56:01 +00:00
|
|
|
|
'popups-redirects' => 'đổi hướng đến <h3>$1</h3>',
|
2014-02-23 21:43:13 +00:00
|
|
|
|
);
|
|
|
|
|
|
2014-03-02 20:40:38 +00:00
|
|
|
|
/** Yiddish (ייִדיש)
|
|
|
|
|
* @author פוילישער
|
|
|
|
|
*/
|
|
|
|
|
$messages['yi'] = array(
|
|
|
|
|
'popups-redirects' => 'פירט ווײַטערפירונג צו <h3>$1</h3>',
|
|
|
|
|
);
|
|
|
|
|
|
2014-02-11 19:58:02 +00:00
|
|
|
|
/** Simplified Chinese (中文(简体))
|
|
|
|
|
* @author Liuxinyu970226
|
2014-03-20 20:30:56 +00:00
|
|
|
|
* @author Xiaomingyan
|
2014-02-23 21:43:13 +00:00
|
|
|
|
* @author Yfdyh000
|
2014-02-11 19:58:02 +00:00
|
|
|
|
*/
|
|
|
|
|
$messages['zh-hans'] = array(
|
2014-03-20 20:30:56 +00:00
|
|
|
|
'popups-message' => '悬停卡片',
|
2014-03-27 20:31:50 +00:00
|
|
|
|
'popups-desc' => '当用户在页面链接上悬停鼠标指针时,显示带有页面内容摘要的悬停卡片',
|
2014-03-20 20:30:56 +00:00
|
|
|
|
'popups-last-edited' => '最后编辑于$1',
|
|
|
|
|
'popups-redirects' => '重定向至<h3>$1</h3>',
|
2014-02-11 19:58:02 +00:00
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
/** Traditional Chinese (中文(繁體))
|
|
|
|
|
* @author Liuxinyu970226
|
|
|
|
|
*/
|
|
|
|
|
$messages['zh-hant'] = array(
|
2014-03-27 20:31:50 +00:00
|
|
|
|
'popups-message' => '懸停卡片',
|
|
|
|
|
'popups-desc' => '黨用戶懸停頁面鏈接時顯示頁面內容摘要的懸停卡片',
|
|
|
|
|
'popups-last-edited' => '最近編輯於$1',
|
2014-03-02 20:40:38 +00:00
|
|
|
|
'popups-redirects' => '重定向至<h3>$1</h3>',
|
2014-02-11 19:58:02 +00:00
|
|
|
|
);
|