Raimond Spekking has uploaded a new change for review. https://gerrit.wikimedia.org/r/159085
Change subject: Change i18n to JSON ...................................................................... Change i18n to JSON Change-Id: I0dac45b9e6ead2e7f29d9a5baabcad29b0c7e875 --- M RPED.i18n.php M RPED.php A i18n/ast.json A i18n/be-tarask.json A i18n/br.json A i18n/bs.json A i18n/de.json A i18n/dsb.json A i18n/en.json A i18n/es.json A i18n/fi.json A i18n/fr.json A i18n/frp.json A i18n/gl.json A i18n/gsw.json A i18n/he.json A i18n/hsb.json A i18n/hu.json A i18n/ia.json A i18n/id.json A i18n/it.json A i18n/ja.json A i18n/ka.json A i18n/ksh.json A i18n/ku-latn.json A i18n/lad.json A i18n/lb.json A i18n/mk.json A i18n/nb.json A i18n/nl.json A i18n/oc.json A i18n/pl.json A i18n/pms.json A i18n/ps.json A i18n/pt-br.json A i18n/pt.json A i18n/qqq.json A i18n/ru.json A i18n/tl.json A i18n/tr.json 40 files changed, 401 insertions(+), 337 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/RPED refs/changes/85/159085/1 diff --git a/RPED.i18n.php b/RPED.i18n.php index a500f46..97921b5 100644 --- a/RPED.i18n.php +++ b/RPED.i18n.php @@ -1,342 +1,35 @@ <?php /** - * Internationalisation file for the RPED extension + * This is a backwards-compatibility shim, generated by: + * https://git.wikimedia.org/blob/mediawiki%2Fcore.git/HEAD/maintenance%2FgenerateJsonI18n.php * - * @file - * @ingroup Extensions + * Beginning with MediaWiki 1.23, translation strings are stored in json files, + * and the EXTENSION.i18n.php file only exists to provide compatibility with + * older releases of MediaWiki. For more information about this migration, see: + * https://www.mediawiki.org/wiki/Requests_for_comment/Localisation_format + * + * This shim maintains compatibility back to MediaWiki 1.17. */ - $messages = array(); +if ( !function_exists( 'wfJsonI18nShima961051d27459119' ) ) { + function wfJsonI18nShima961051d27459119( $cache, $code, &$cachedData ) { + $codeSequence = array_merge( array( $code ), $cachedData['fallbackSequence'] ); + foreach ( $codeSequence as $csCode ) { + $fileName = dirname( __FILE__ ) . "/i18n/$csCode.json"; + if ( is_readable( $fileName ) ) { + $data = FormatJson::decode( file_get_contents( $fileName ), true ); + foreach ( array_keys( $data ) as $key ) { + if ( $key === '' || $key[0] === '@' ) { + unset( $data[$key] ); + } + } + $cachedData['messages'] = array_merge( $data, $cachedData['messages'] ); + } -/* English - * @author Tisane - */ -$messages['en'] = array( - 'rped' => 'Remote page existence detection', - 'rped-desc' => 'Links wikilinks to Wikipedia if the page does not exist on the local wiki but exists on Wikipedia', - 'rped-wikipedia-url' => 'http://en.wikipedia.org/wiki/$1', -); + $cachedData['deps'][] = new FileDependency( $fileName ); + } + return true; + } -/** Message documentation (Message documentation) - * @author Umherirrender - */ -$messages['qqq'] = array( - 'rped-desc' => '{{desc}}', -); - -/** Asturian (asturianu) - * @author Xuacu - */ -$messages['ast'] = array( - 'rped' => "Deteición d'esistencia de páxina remota", - 'rped-desc' => 'Enllaza los wikienllaces a Uiquipedia si la páxina nun esiste na wiki llocal pero esiste na Uiquipedia', - 'rped-wikipedia-url' => 'http://ast.wikipedia.org/wiki/$1', -); - -/** Belarusian (Taraškievica orthography) (беларуская (тарашкевіца)) - * @author EugeneZelenko - * @author Jim-by - */ -$messages['be-tarask'] = array( - 'rped' => 'Выяўленьне існаваньня вонкавай старонкі', - 'rped-desc' => 'Устаўляе вікі-спасылкі на Вікіпэдыю, калі старонка не існуе ў лякальнай вікі, але існуе ў Вікіпэдыі', - 'rped-wikipedia-url' => 'http://be.wikipedia.org/wiki/$1', -); - -/** Breton (brezhoneg) - * @author Fulup - * @author Y-M D - */ -$messages['br'] = array( - 'rped' => 'Detektadur a-bell ar pajennoù zo anezho', - 'rped-desc' => "Liammañ a ra ar wikiliammoù ouzh Wikipedia ma n'eus ket eus ar bajenn war ar wiki lec'hel ha m'emañ war Wikipedia", - 'rped-wikipedia-url' => 'http://br.wikipedia.org/wiki/$1', -); - -/** Bosnian (bosanski) - * @author CERminator - */ -$messages['bs'] = array( - 'rped' => 'Otkrivanje postojanja udaljenjih stranica', - 'rped-desc' => 'Povezuje wikilinkove na Wikipediju ako stranica ne postoji na lokalnoj wiki ali postoji na Wikipediji', - 'rped-wikipedia-url' => 'http://bs.wikipedia.org/wiki/$1', -); - -/** German (Deutsch) - * @author Kghbln - */ -$messages['de'] = array( - 'rped' => 'Ermittlung websitefremder Webseiten', - 'rped-desc' => 'Leitet Wikilinks zur Wikipedia, sofern die betreffende Seite nicht im lokalen Wiki, aber in der Wikipedia vorhanden ist', - 'rped-wikipedia-url' => 'http://de.wikipedia.org/wiki/$1', -); - -/** Lower Sorbian (dolnoserbski) - * @author Michawiki - */ -$messages['dsb'] = array( - 'rped' => 'Namakanje eksistence zdalonego boka', - 'rped-desc' => 'Wótkazujo wikiwótkaze do Wikipedije, jolic bok njeeksistěrujo w lokalnem wikiju, ale eksistěrujo we Wikipediji', - 'rped-wikipedia-url' => 'http://dsb.wikipedia.org/wiki/$1', -); - -/** Spanish (español) - * @author Pertile - */ -$messages['es'] = array( - 'rped' => 'Detección de existencia de página remota', - 'rped-desc' => 'Enlaza los wikienlaces a Wikipedia si la página no existe en la wiki local pero existe en Wikipedia', - 'rped-wikipedia-url' => 'http://es.wikipedia.org/wiki/$1', -); - -/** Finnish (suomi) - * @author Silvonen - */ -$messages['fi'] = array( - 'rped-wikipedia-url' => 'http://fi.wikipedia.org/wiki/$1', -); - -/** French (français) - * @author IAlex - */ -$messages['fr'] = array( - 'rped' => "Détection d'existence des pages à distance", - 'rped-desc' => "Lie les wikiliens vers Wikipédia si la page n'existe pas sur le wiki local mais existe sur Wikipédia", - 'rped-wikipedia-url' => 'http://fr.wikipedia.org/wiki/$1', -); - -/** Franco-Provençal (arpetan) - * @author ChrisPtDe - */ -$messages['frp'] = array( - 'rped-wikipedia-url' => 'http://frp.wikipedia.org/wiki/$1', -); - -/** Galician (galego) - * @author Toliño - */ -$messages['gl'] = array( - 'rped' => 'Detección remota da existencia de páxinas', - 'rped-desc' => 'Crea ligazóns cara á Wikipedia se a páxina non existe no wiki local pero si na Wikipedia', - 'rped-wikipedia-url' => 'http://gl.wikipedia.org/wiki/$1', -); - -/** Swiss German (Alemannisch) - * @author Als-Holder - */ -$messages['gsw'] = array( - 'rped' => 'Erkännig vu främde Netzsyte', - 'rped-desc' => 'Leitet Wikilinks uf d Wikipedia, wänn die Syte nit im lokale Wiki git, derfir aber in dr Wikipedia', - 'rped-wikipedia-url' => 'http://gsw.wikipedia.org/wiki/$1', -); - -/** Hebrew (עברית) - * @author Amire80 - */ -$messages['he'] = array( - 'rped' => 'זיהוי קיום של דף מרוחק', - 'rped-desc' => 'מקשר קישורים פנימיים לוויקיפדיה אם הדף אינו קיים בוויקי המקומי, אבל כן קיים בוויקיפדיה', - 'rped-wikipedia-url' => 'http://he.wikipedia.org/wiki/$1', -); - -/** Upper Sorbian (hornjoserbsce) - * @author Michawiki - */ -$messages['hsb'] = array( - 'rped' => 'Wotkryće eksistency zdaleneje strony', - 'rped-desc' => 'Wotkazuje wikiwotkazy do Wikipedije, jeli strona njeeksistuje w lokalnym wikiju, ale eksistuje we Wikipediji', - 'rped-wikipedia-url' => 'http://hsb.wikipedia.org/wiki/$1', -); - -/** Hungarian (magyar) - * @author Glanthor Reviol - */ -$messages['hu'] = array( - 'rped' => 'Ellenőrzi, hogy egy távoli lap létezik-e', - 'rped-desc' => 'A wikilinkeket a Wikipédiára irányítja, ha a lap nem létezik a helyi wikiben, de a Wikipédián igen', - 'rped-wikipedia-url' => 'http://hu.wikipedia.org/wiki/$1', -); - -/** Interlingua (interlingua) - * @author McDutchie - */ -$messages['ia'] = array( - 'rped' => 'Detection del existentia de paginas remote', - 'rped-desc' => 'Face wiki-ligamines a Wikipedia si le pagina non existe in le wiki local ma existe in Wikipedia', - 'rped-wikipedia-url' => 'http://ia.wikipedia.org/wiki/$1', -); - -/** Indonesian (Bahasa Indonesia) - * @author Farras - * @author Kenrick95 - */ -$messages['id'] = array( - 'rped' => 'Pelacakan keberadaan halaman jauh', - 'rped-desc' => 'Menghubungkan pranala wiki ke Wikipedia bila halaman tidak ada di wiki setempat tetapi ada di Wikipedia', - 'rped-wikipedia-url' => 'http://id.wikipedia.org/wiki/$1', -); - -/** Italian (italiano) - * @author Beta16 - * @author Gianfranco - */ -$messages['it'] = array( - 'rped' => 'Verifica esistenza di pagina remota', - 'rped-desc' => 'Aggiunge un collegamento a Wikipedia se la pagina non esiste sulla wiki locale ma esiste su Wikipedia', - 'rped-wikipedia-url' => 'http://it.wikipedia.org/wiki/$1', -); - -/** Japanese (日本語) - * @author Fryed-peach - * @author 青子守歌 - */ -$messages['ja'] = array( - 'rped' => '遠隔ページ存在検出', - 'rped-desc' => 'ページがローカルのウィキに存在しないがウィキペディアに存在する場合に、そのウィキリンクをウィキペディアにリンクする', - 'rped-wikipedia-url' => 'http://ja.wikipedia.org/wiki/$1', -); - -/** Georgian (ქართული) - * @author David1010 - */ -$messages['ka'] = array( - 'rped-wikipedia-url' => 'http://ka.wikipedia.org/wiki/$1', -); - -/** Colognian (Ripoarisch) - * @author Purodha - */ -$messages['ksh'] = array( - 'rped' => 'Sigge en ander Webßaits fenge', - 'rped-desc' => 'Lengk Wikilengks op de Wikipedija öm, wann et en passende Sigg heh em Wiki nit jitt.', - 'rped-wikipedia-url' => 'http://ksh.wikipedia.org/wiki/$1', -); - -/** Kurdish (Latin script) (Kurdî (latînî)) - * @author George Animal - */ -$messages['ku-latn'] = array( - 'rped-wikipedia-url' => 'http://ku.wikipedia.org/wiki/$1', -); - -/** Ladino (Ladino) - * @author Universal Life - */ -$messages['lad'] = array( - 'rped' => 'Deteksyón de la egzistensya de hoja lexano', - 'rped-desc' => 'Linkea los vikilinkes a la Vikipedya si la hoja no egzista en el viki local ma egziste en la Vikipedya', - 'rped-wikipedia-url' => 'http://lad.wikipedia.org/wiki/$1', -); - -/** Luxembourgish (Lëtzebuergesch) - * @author Robby - */ -$messages['lb'] = array( - 'rped' => 'Entdecke vu Säiten op externe Siten', - 'rped-desc' => "Viruleedung vu Wikilinken op Wikipedia wann et d'Säit an där lokaler Wiki net gëtt awer wann et se op Wikipedia gëtt", - 'rped-wikipedia-url' => 'http://lb.wikipedia.org/wiki/$1', -); - -/** Macedonian (македонски) - * @author Bjankuloski06 - */ -$messages['mk'] = array( - 'rped' => 'Пронаоѓач на постоечка надворешна страница', - 'rped-desc' => 'Поврзува викиврски со Википедија ако страницата не постои на локалното вики, но постои на Википедија', - 'rped-wikipedia-url' => 'http://mk.wikipedia.org/wiki/$1', -); - -/** Norwegian Bokmål (norsk (bokmål)) - * @author Nghtwlkr - */ -$messages['nb'] = array( - 'rped' => 'Eksistensdeteksjon av eksterne sider', - 'rped-desc' => 'Lenker wikilenker til Wikipedia om siden ikke finnes på den lokale wikien men finnes på Wikipedia', - 'rped-wikipedia-url' => 'http://no.wikipedia.org/wiki/$1', -); - -/** Dutch (Nederlands) - * @author Siebrand - */ -$messages['nl'] = array( - 'rped' => "Detectie van pagina's in andere wiki's", - 'rped-desc' => 'Verwijst naar Wikipedia als de pagina niet bestaat in de lokale wiki maar wel in Wikipedia', - 'rped-wikipedia-url' => 'http://nl.wikipedia.org/wiki/$1', -); - -/** Occitan (occitan) - * @author Cedric31 - */ -$messages['oc'] = array( - 'rped' => "Deteccion d'existéncia de las paginas a distància", - 'rped-desc' => 'Liga los wikiligams cap a Wikipèdia se la pagina existís pas sul wiki local mas existís sus Wikipèdia', -); - -/** Polish (polski) - * @author Sp5uhe - */ -$messages['pl'] = array( - 'rped' => 'Wykrywa obecność zewnętrznej strony', - 'rped-desc' => 'Linkuje linki wiki do Wikipedii jeśli strona nie istnieje w lokalnej wiki, ale jest w Wikipedii', - 'rped-wikipedia-url' => 'http://pl.wikipedia.org/wiki/$1', -); - -/** Piedmontese (Piemontèis) - * @author Borichèt - */ -$messages['pms'] = array( - 'rped' => "Determinassion d'esistensa dle pàgine a distansa", - 'rped-desc' => "A colega j'anliure wiki a Wikipedia se la pàgina a esist pa an sla wiki local ma a esist dzora a Wikipedia", - 'rped-wikipedia-url' => 'http://pms.wikipedia.org/wiki/$1', -); - -/** Pashto (پښتو) - * @author Ahmed-Najib-Biabani-Ibrahimkhel - */ -$messages['ps'] = array( - 'rped-wikipedia-url' => 'http://ps.wikipedia.org/wiki/$1', -); - -/** Portuguese (português) - * @author Hamilton Abreu - */ -$messages['pt'] = array( - 'rped' => 'Detecção da existência de páginas remotas', - 'rped-desc' => 'Liga um link à Wikipédia, se a página de destino não existe na wiki local mas existe na Wikipédia', - 'rped-wikipedia-url' => 'http://pt.wikipedia.org/wiki/$1', -); - -/** Brazilian Portuguese (português do Brasil) - * @author Giro720 - */ -$messages['pt-br'] = array( - 'rped' => 'Detecção da existência de páginas remotas', - 'rped-desc' => 'Liga um link à Wikipédia, se a página de destino não existir na wiki local mas existir na Wikipédia', - 'rped-wikipedia-url' => 'http://pt.wikipedia.org/wiki/$1', -); - -/** Russian (русский) - * @author Александр Сигачёв - */ -$messages['ru'] = array( - 'rped' => 'Обнаружение существования внешней страницы', - 'rped-desc' => 'Ставит вики-ссылки на Википедию, если страницы не существует в локальной вики, но она присутствует в Википедии', - 'rped-wikipedia-url' => 'http://ru.wikipedia.org/wiki/$1', -); - -/** Tagalog (Tagalog) - * @author AnakngAraw - */ -$messages['tl'] = array( - 'rped' => 'Pangtuklas ng pag-iral ng malayong pahina', - 'rped-desc' => 'Nagkakawing ng mga ng kawing na pangwika sa Wikipedia kapag hindi umiiral ang pahina sa katutubong wiki subalit umiiral sa Wikipedia', - 'rped-wikipedia-url' => 'http://tl.wikipedia.org/wiki/$1', -); - -/** Turkish (Türkçe) - * @author Universal Life - */ -$messages['tr'] = array( - 'rped-wikipedia-url' => 'http://tr.wikipedia.org/wiki/$1', -); - + $GLOBALS['wgHooks']['LocalisationCacheRecache'][] = 'wfJsonI18nShima961051d27459119'; +} diff --git a/RPED.php b/RPED.php index e2157ed..39ff24b 100644 --- a/RPED.php +++ b/RPED.php @@ -30,14 +30,15 @@ 'path' => __FILE__, 'name' => 'Remote Page Existence Detection', 'author' => 'Tisane', - 'url' => 'https://www.mediawiki.org/wiki/Extension:RemotePageExistenceDetection', + 'url' => 'https://www.mediawiki.org/wiki/Extension:RPED', 'descriptionmsg' => 'rped-desc', - 'version' => '1.0.2', + 'version' => '1.0.3', ); $dir = dirname( __FILE__ ) . '/'; $wgAutoloadClasses['RPEDHooks'] = $dir . 'RPED.hooks.php'; $wgExtensionMessagesFiles['RPED'] = $dir . 'RPED.i18n.php'; +$wgMessagesDirs['RPED'] = $dir . 'i18n'; $wgAutoloadClasses['ApiRPED'] = $dir.'ApiRPED.php'; $wgAPIModules['rped'] = 'ApiRPED'; $wgGroupPermissions['RPED']['rped'] = true; diff --git a/i18n/ast.json b/i18n/ast.json new file mode 100644 index 0000000..69b5efd --- /dev/null +++ b/i18n/ast.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Xuacu" + ] + }, + "rped": "Deteición d'esistencia de páxina remota", + "rped-desc": "Enllaza los wikienllaces a Uiquipedia si la páxina nun esiste na wiki llocal pero esiste na Uiquipedia", + "rped-wikipedia-url": "http://ast.wikipedia.org/wiki/$1" +} diff --git a/i18n/be-tarask.json b/i18n/be-tarask.json new file mode 100644 index 0000000..973b9a7 --- /dev/null +++ b/i18n/be-tarask.json @@ -0,0 +1,11 @@ +{ + "@metadata": { + "authors": [ + "EugeneZelenko", + "Jim-by" + ] + }, + "rped": "Выяўленьне існаваньня вонкавай старонкі", + "rped-desc": "Устаўляе вікі-спасылкі на Вікіпэдыю, калі старонка не існуе ў лякальнай вікі, але існуе ў Вікіпэдыі", + "rped-wikipedia-url": "http://be.wikipedia.org/wiki/$1" +} diff --git a/i18n/br.json b/i18n/br.json new file mode 100644 index 0000000..59552e3 --- /dev/null +++ b/i18n/br.json @@ -0,0 +1,11 @@ +{ + "@metadata": { + "authors": [ + "Fulup", + "Y-M D" + ] + }, + "rped": "Detektadur a-bell ar pajennoù zo anezho", + "rped-desc": "Liammañ a ra ar wikiliammoù ouzh Wikipedia ma n'eus ket eus ar bajenn war ar wiki lec'hel ha m'emañ war Wikipedia", + "rped-wikipedia-url": "http://br.wikipedia.org/wiki/$1" +} diff --git a/i18n/bs.json b/i18n/bs.json new file mode 100644 index 0000000..3fc7bf6 --- /dev/null +++ b/i18n/bs.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "CERminator" + ] + }, + "rped": "Otkrivanje postojanja udaljenjih stranica", + "rped-desc": "Povezuje wikilinkove na Wikipediju ako stranica ne postoji na lokalnoj wiki ali postoji na Wikipediji", + "rped-wikipedia-url": "http://bs.wikipedia.org/wiki/$1" +} diff --git a/i18n/de.json b/i18n/de.json new file mode 100644 index 0000000..1ab7861 --- /dev/null +++ b/i18n/de.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Kghbln" + ] + }, + "rped": "Ermittlung websitefremder Webseiten", + "rped-desc": "Leitet Wikilinks zur Wikipedia, sofern die betreffende Seite nicht im lokalen Wiki, aber in der Wikipedia vorhanden ist", + "rped-wikipedia-url": "http://de.wikipedia.org/wiki/$1" +} diff --git a/i18n/dsb.json b/i18n/dsb.json new file mode 100644 index 0000000..06036f2 --- /dev/null +++ b/i18n/dsb.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Michawiki" + ] + }, + "rped": "Namakanje eksistence zdalonego boka", + "rped-desc": "Wótkazujo wikiwótkaze do Wikipedije, jolic bok njeeksistěrujo w lokalnem wikiju, ale eksistěrujo we Wikipediji", + "rped-wikipedia-url": "http://dsb.wikipedia.org/wiki/$1" +} diff --git a/i18n/en.json b/i18n/en.json new file mode 100644 index 0000000..8069b21 --- /dev/null +++ b/i18n/en.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Tisane" + ] + }, + "rped": "Remote page existence detection", + "rped-desc": "Links wikilinks to Wikipedia if the page does not exist on the local wiki but exists on Wikipedia", + "rped-wikipedia-url": "http://en.wikipedia.org/wiki/$1" +} diff --git a/i18n/es.json b/i18n/es.json new file mode 100644 index 0000000..a36e21a --- /dev/null +++ b/i18n/es.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Pertile" + ] + }, + "rped": "Detección de existencia de página remota", + "rped-desc": "Enlaza los wikienlaces a Wikipedia si la página no existe en la wiki local pero existe en Wikipedia", + "rped-wikipedia-url": "http://es.wikipedia.org/wiki/$1" +} diff --git a/i18n/fi.json b/i18n/fi.json new file mode 100644 index 0000000..99d1e5f --- /dev/null +++ b/i18n/fi.json @@ -0,0 +1,8 @@ +{ + "@metadata": { + "authors": [ + "Silvonen" + ] + }, + "rped-wikipedia-url": "http://fi.wikipedia.org/wiki/$1" +} diff --git a/i18n/fr.json b/i18n/fr.json new file mode 100644 index 0000000..7f8eac4 --- /dev/null +++ b/i18n/fr.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "IAlex" + ] + }, + "rped": "Détection d'existence des pages à distance", + "rped-desc": "Lie les wikiliens vers Wikipédia si la page n'existe pas sur le wiki local mais existe sur Wikipédia", + "rped-wikipedia-url": "http://fr.wikipedia.org/wiki/$1" +} diff --git a/i18n/frp.json b/i18n/frp.json new file mode 100644 index 0000000..12cb658 --- /dev/null +++ b/i18n/frp.json @@ -0,0 +1,8 @@ +{ + "@metadata": { + "authors": [ + "ChrisPtDe" + ] + }, + "rped-wikipedia-url": "http://frp.wikipedia.org/wiki/$1" +} diff --git a/i18n/gl.json b/i18n/gl.json new file mode 100644 index 0000000..9ef2b61 --- /dev/null +++ b/i18n/gl.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Toliño" + ] + }, + "rped": "Detección remota da existencia de páxinas", + "rped-desc": "Crea ligazóns cara á Wikipedia se a páxina non existe no wiki local pero si na Wikipedia", + "rped-wikipedia-url": "http://gl.wikipedia.org/wiki/$1" +} diff --git a/i18n/gsw.json b/i18n/gsw.json new file mode 100644 index 0000000..5d3c27e --- /dev/null +++ b/i18n/gsw.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Als-Holder" + ] + }, + "rped": "Erkännig vu främde Netzsyte", + "rped-desc": "Leitet Wikilinks uf d Wikipedia, wänn die Syte nit im lokale Wiki git, derfir aber in dr Wikipedia", + "rped-wikipedia-url": "http://gsw.wikipedia.org/wiki/$1" +} diff --git a/i18n/he.json b/i18n/he.json new file mode 100644 index 0000000..cfbb9ca --- /dev/null +++ b/i18n/he.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Amire80" + ] + }, + "rped": "זיהוי קיום של דף מרוחק", + "rped-desc": "מקשר קישורים פנימיים לוויקיפדיה אם הדף אינו קיים בוויקי המקומי, אבל כן קיים בוויקיפדיה", + "rped-wikipedia-url": "http://he.wikipedia.org/wiki/$1" +} diff --git a/i18n/hsb.json b/i18n/hsb.json new file mode 100644 index 0000000..bfe2f72 --- /dev/null +++ b/i18n/hsb.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Michawiki" + ] + }, + "rped": "Wotkryće eksistency zdaleneje strony", + "rped-desc": "Wotkazuje wikiwotkazy do Wikipedije, jeli strona njeeksistuje w lokalnym wikiju, ale eksistuje we Wikipediji", + "rped-wikipedia-url": "http://hsb.wikipedia.org/wiki/$1" +} diff --git a/i18n/hu.json b/i18n/hu.json new file mode 100644 index 0000000..99b639e --- /dev/null +++ b/i18n/hu.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Glanthor Reviol" + ] + }, + "rped": "Ellenőrzi, hogy egy távoli lap létezik-e", + "rped-desc": "A wikilinkeket a Wikipédiára irányítja, ha a lap nem létezik a helyi wikiben, de a Wikipédián igen", + "rped-wikipedia-url": "http://hu.wikipedia.org/wiki/$1" +} diff --git a/i18n/ia.json b/i18n/ia.json new file mode 100644 index 0000000..06cb7fd --- /dev/null +++ b/i18n/ia.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "McDutchie" + ] + }, + "rped": "Detection del existentia de paginas remote", + "rped-desc": "Face wiki-ligamines a Wikipedia si le pagina non existe in le wiki local ma existe in Wikipedia", + "rped-wikipedia-url": "http://ia.wikipedia.org/wiki/$1" +} diff --git a/i18n/id.json b/i18n/id.json new file mode 100644 index 0000000..91053d0 --- /dev/null +++ b/i18n/id.json @@ -0,0 +1,11 @@ +{ + "@metadata": { + "authors": [ + "Farras", + "Kenrick95" + ] + }, + "rped": "Pelacakan keberadaan halaman jauh", + "rped-desc": "Menghubungkan pranala wiki ke Wikipedia bila halaman tidak ada di wiki setempat tetapi ada di Wikipedia", + "rped-wikipedia-url": "http://id.wikipedia.org/wiki/$1" +} diff --git a/i18n/it.json b/i18n/it.json new file mode 100644 index 0000000..31efba5 --- /dev/null +++ b/i18n/it.json @@ -0,0 +1,11 @@ +{ + "@metadata": { + "authors": [ + "Beta16", + "Gianfranco" + ] + }, + "rped": "Verifica esistenza di pagina remota", + "rped-desc": "Aggiunge un collegamento a Wikipedia se la pagina non esiste sulla wiki locale ma esiste su Wikipedia", + "rped-wikipedia-url": "http://it.wikipedia.org/wiki/$1" +} diff --git a/i18n/ja.json b/i18n/ja.json new file mode 100644 index 0000000..74d7722 --- /dev/null +++ b/i18n/ja.json @@ -0,0 +1,11 @@ +{ + "@metadata": { + "authors": [ + "Fryed-peach", + "青子守歌" + ] + }, + "rped": "遠隔ページ存在検出", + "rped-desc": "ページがローカルのウィキに存在しないがウィキペディアに存在する場合に、そのウィキリンクをウィキペディアにリンクする", + "rped-wikipedia-url": "http://ja.wikipedia.org/wiki/$1" +} diff --git a/i18n/ka.json b/i18n/ka.json new file mode 100644 index 0000000..724d840 --- /dev/null +++ b/i18n/ka.json @@ -0,0 +1,8 @@ +{ + "@metadata": { + "authors": [ + "David1010" + ] + }, + "rped-wikipedia-url": "http://ka.wikipedia.org/wiki/$1" +} diff --git a/i18n/ksh.json b/i18n/ksh.json new file mode 100644 index 0000000..af432f0 --- /dev/null +++ b/i18n/ksh.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Purodha" + ] + }, + "rped": "Sigge en ander Webßaits fenge", + "rped-desc": "Lengk Wikilengks op de Wikipedija öm, wann et en passende Sigg heh em Wiki nit jitt.", + "rped-wikipedia-url": "http://ksh.wikipedia.org/wiki/$1" +} diff --git a/i18n/ku-latn.json b/i18n/ku-latn.json new file mode 100644 index 0000000..f3a2093 --- /dev/null +++ b/i18n/ku-latn.json @@ -0,0 +1,8 @@ +{ + "@metadata": { + "authors": [ + "George Animal" + ] + }, + "rped-wikipedia-url": "http://ku.wikipedia.org/wiki/$1" +} diff --git a/i18n/lad.json b/i18n/lad.json new file mode 100644 index 0000000..5c05b24 --- /dev/null +++ b/i18n/lad.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Universal Life" + ] + }, + "rped": "Deteksyón de la egzistensya de hoja lexano", + "rped-desc": "Linkea los vikilinkes a la Vikipedya si la hoja no egzista en el viki local ma egziste en la Vikipedya", + "rped-wikipedia-url": "http://lad.wikipedia.org/wiki/$1" +} diff --git a/i18n/lb.json b/i18n/lb.json new file mode 100644 index 0000000..be03c8d --- /dev/null +++ b/i18n/lb.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Robby" + ] + }, + "rped": "Entdecke vu Säiten op externe Siten", + "rped-desc": "Viruleedung vu Wikilinken op Wikipedia wann et d'Säit an där lokaler Wiki net gëtt awer wann et se op Wikipedia gëtt", + "rped-wikipedia-url": "http://lb.wikipedia.org/wiki/$1" +} diff --git a/i18n/mk.json b/i18n/mk.json new file mode 100644 index 0000000..0f6b809 --- /dev/null +++ b/i18n/mk.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Bjankuloski06" + ] + }, + "rped": "Пронаоѓач на постоечка надворешна страница", + "rped-desc": "Поврзува викиврски со Википедија ако страницата не постои на локалното вики, но постои на Википедија", + "rped-wikipedia-url": "http://mk.wikipedia.org/wiki/$1" +} diff --git a/i18n/nb.json b/i18n/nb.json new file mode 100644 index 0000000..f1ab9c3 --- /dev/null +++ b/i18n/nb.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Nghtwlkr" + ] + }, + "rped": "Eksistensdeteksjon av eksterne sider", + "rped-desc": "Lenker wikilenker til Wikipedia om siden ikke finnes på den lokale wikien men finnes på Wikipedia", + "rped-wikipedia-url": "http://no.wikipedia.org/wiki/$1" +} diff --git a/i18n/nl.json b/i18n/nl.json new file mode 100644 index 0000000..d70fd39 --- /dev/null +++ b/i18n/nl.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Siebrand" + ] + }, + "rped": "Detectie van pagina's in andere wiki's", + "rped-desc": "Verwijst naar Wikipedia als de pagina niet bestaat in de lokale wiki maar wel in Wikipedia", + "rped-wikipedia-url": "http://nl.wikipedia.org/wiki/$1" +} diff --git a/i18n/oc.json b/i18n/oc.json new file mode 100644 index 0000000..0f53efa --- /dev/null +++ b/i18n/oc.json @@ -0,0 +1,9 @@ +{ + "@metadata": { + "authors": [ + "Cedric31" + ] + }, + "rped": "Deteccion d'existéncia de las paginas a distància", + "rped-desc": "Liga los wikiligams cap a Wikipèdia se la pagina existís pas sul wiki local mas existís sus Wikipèdia" +} diff --git a/i18n/pl.json b/i18n/pl.json new file mode 100644 index 0000000..ef241ca --- /dev/null +++ b/i18n/pl.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Sp5uhe" + ] + }, + "rped": "Wykrywa obecność zewnętrznej strony", + "rped-desc": "Linkuje linki wiki do Wikipedii jeśli strona nie istnieje w lokalnej wiki, ale jest w Wikipedii", + "rped-wikipedia-url": "http://pl.wikipedia.org/wiki/$1" +} diff --git a/i18n/pms.json b/i18n/pms.json new file mode 100644 index 0000000..6d84480 --- /dev/null +++ b/i18n/pms.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Borichèt" + ] + }, + "rped": "Determinassion d'esistensa dle pàgine a distansa", + "rped-desc": "A colega j'anliure wiki a Wikipedia se la pàgina a esist pa an sla wiki local ma a esist dzora a Wikipedia", + "rped-wikipedia-url": "http://pms.wikipedia.org/wiki/$1" +} diff --git a/i18n/ps.json b/i18n/ps.json new file mode 100644 index 0000000..142eb6a --- /dev/null +++ b/i18n/ps.json @@ -0,0 +1,8 @@ +{ + "@metadata": { + "authors": [ + "Ahmed-Najib-Biabani-Ibrahimkhel" + ] + }, + "rped-wikipedia-url": "http://ps.wikipedia.org/wiki/$1" +} diff --git a/i18n/pt-br.json b/i18n/pt-br.json new file mode 100644 index 0000000..a2c7670 --- /dev/null +++ b/i18n/pt-br.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Giro720" + ] + }, + "rped": "Detecção da existência de páginas remotas", + "rped-desc": "Liga um link à Wikipédia, se a página de destino não existir na wiki local mas existir na Wikipédia", + "rped-wikipedia-url": "http://pt.wikipedia.org/wiki/$1" +} diff --git a/i18n/pt.json b/i18n/pt.json new file mode 100644 index 0000000..d85304d --- /dev/null +++ b/i18n/pt.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Hamilton Abreu" + ] + }, + "rped": "Detecção da existência de páginas remotas", + "rped-desc": "Liga um link à Wikipédia, se a página de destino não existe na wiki local mas existe na Wikipédia", + "rped-wikipedia-url": "http://pt.wikipedia.org/wiki/$1" +} diff --git a/i18n/qqq.json b/i18n/qqq.json new file mode 100644 index 0000000..4a41858 --- /dev/null +++ b/i18n/qqq.json @@ -0,0 +1,8 @@ +{ + "@metadata": { + "authors": [ + "Umherirrender" + ] + }, + "rped-desc": "{{desc}}" +} diff --git a/i18n/ru.json b/i18n/ru.json new file mode 100644 index 0000000..ab04715 --- /dev/null +++ b/i18n/ru.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Александр Сигачёв" + ] + }, + "rped": "Обнаружение существования внешней страницы", + "rped-desc": "Ставит вики-ссылки на Википедию, если страницы не существует в локальной вики, но она присутствует в Википедии", + "rped-wikipedia-url": "http://ru.wikipedia.org/wiki/$1" +} diff --git a/i18n/tl.json b/i18n/tl.json new file mode 100644 index 0000000..413dda3 --- /dev/null +++ b/i18n/tl.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "AnakngAraw" + ] + }, + "rped": "Pangtuklas ng pag-iral ng malayong pahina", + "rped-desc": "Nagkakawing ng mga ng kawing na pangwika sa Wikipedia kapag hindi umiiral ang pahina sa katutubong wiki subalit umiiral sa Wikipedia", + "rped-wikipedia-url": "http://tl.wikipedia.org/wiki/$1" +} diff --git a/i18n/tr.json b/i18n/tr.json new file mode 100644 index 0000000..5b3bb71 --- /dev/null +++ b/i18n/tr.json @@ -0,0 +1,8 @@ +{ + "@metadata": { + "authors": [ + "Universal Life" + ] + }, + "rped-wikipedia-url": "http://tr.wikipedia.org/wiki/$1" +} -- To view, visit https://gerrit.wikimedia.org/r/159085 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I0dac45b9e6ead2e7f29d9a5baabcad29b0c7e875 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/extensions/RPED Gerrit-Branch: master Gerrit-Owner: Raimond Spekking <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
