MarcoAurelio has uploaded a new change for review. ( https://gerrit.wikimedia.org/r/377075 )
Change subject: Archive Extension:Ads ...................................................................... Archive Extension:Ads Bug: T175495 Change-Id: Ic1ea2ba4eeca89d2e3b79919b1cd4caee933b120 --- D Ads.php D Ads_body.php D CODE_OF_CONDUCT.md D Gruntfile.js A OBSOLETE D composer.json D i18n/ar.json D i18n/ast.json D i18n/ba.json D i18n/bcl.json D i18n/be-tarask.json D i18n/bg.json D i18n/br.json D i18n/bs.json D i18n/ca.json D i18n/cs.json D i18n/csb.json D i18n/cy.json D i18n/da.json D i18n/de.json D i18n/diq.json D i18n/dsb.json D i18n/en-gb.json D i18n/en.json D i18n/eo.json D i18n/es.json D i18n/eu.json D i18n/fa.json D i18n/fi.json D i18n/fo.json D i18n/fr.json D i18n/frr.json D i18n/gd.json D i18n/gl.json D i18n/haw.json D i18n/he.json D i18n/hi.json D i18n/hrx.json D i18n/hsb.json D i18n/ia.json D i18n/id.json D i18n/it.json D i18n/ja.json D i18n/kab.json D i18n/ko.json D i18n/ksh.json D i18n/lb.json D i18n/lij.json D i18n/lt.json D i18n/lv.json D i18n/map-bms.json D i18n/mg.json D i18n/mk.json D i18n/mr.json D i18n/ms.json D i18n/mt.json D i18n/nb.json D i18n/nl.json D i18n/oc.json D i18n/or.json D i18n/pl.json D i18n/pms.json D i18n/ps.json D i18n/pt-br.json D i18n/pt.json D i18n/qqq.json D i18n/roa-tara.json D i18n/ru.json D i18n/sah.json D i18n/sco.json D i18n/sk.json D i18n/skr-arab.json D i18n/sr-ec.json D i18n/sr-el.json D i18n/sv.json D i18n/te.json D i18n/th.json D i18n/tr.json D i18n/tt-cyrl.json D i18n/uk.json D i18n/yi.json D i18n/yue.json D i18n/zh-hans.json D i18n/zh-hant.json D package.json D phpcs.xml 86 files changed, 2 insertions(+), 762 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Ads refs/changes/75/377075/1 diff --git a/Ads.php b/Ads.php deleted file mode 100644 index bccfdf5..0000000 --- a/Ads.php +++ /dev/null @@ -1,49 +0,0 @@ -<?php -/********************************************************************* - ** - ** This file is part of the Ads extension for MediaWiki - * @file - * @ingroup Extensions - * @author Miguel Peláez <miguel2706outlook.com> - * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later - * @link https://www.mediawiki.org/wiki/Extension:Ads Documentation - * - *********************************************************************/ - -if ( !defined( 'MEDIAWIKI' ) ) { - die( 'This file is part of MediaWiki. It is not a valid entry point. ERROR 11135' ); -} - -/************** - * Options (NB: edit the settings you want to customize in LocalSettings.php) - ***************/ -$wgAdsInserts = [ - 'ads_display' => [ - 'on' => false, 'content' => [ - [ 'title1', 'content1' ], - [ 'title2', 'content2' ] - ] - ], -]; -/************** - * End of options - ***************/ -$wgExtensionCredits['other'][] = [ - 'name' => 'Ads', - 'author' => [ '[[wikipedia:es:Miguel2706]]' ], - 'url' => 'https://www.mediawiki.org/wiki/Extension:Ads', - 'descriptionmsg' => 'ads-desc', - 'version' => '1.2.0', -]; - -$wgAutoloadClasses['Ads'] = __DIR__ . '/Ads_body.php'; -$wgMessagesDirs['ads'] = __DIR__ . '/i18n'; -$wgHooks['ParserFirstCallInit'][] = 'wfAds'; - -$wgAdsInserts['ads_display']['on'] = true; - -function wfAds() { - new Ads; - - return true; -} diff --git a/Ads_body.php b/Ads_body.php deleted file mode 100644 index 0739c60..0000000 --- a/Ads_body.php +++ /dev/null @@ -1,29 +0,0 @@ -<?php - -/********************************************************************* - ** - ** This file is part of the Ads extension for MediaWiki - * @file - * @ingroup Extensions - * @author Miguel Peláez <miguel2706outlook.com> - * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later - * @link https://www.mediawiki.org/wiki/Extension:Ads Documentation - * - *********************************************************************/ -class Ads { - public function __construct() { - global $wgHooks; - $wgHooks['ads_display'][] = [ &$this, 'ads_display' ]; - } - - public function ads_display( $skin, &$bar ) { - global $wgAdsInserts; - if ( $wgAdsInserts['ads_display']['on'] ) { - foreach ( $wgAdsInserts['ads_display']['content'] as $value ) { - $bar[$value[0]] = $value[1]; - } - } - - return true; - } -} diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md deleted file mode 100644 index d8e5d08..0000000 --- a/CODE_OF_CONDUCT.md +++ /dev/null @@ -1 +0,0 @@ -The development of this software is covered by a [Code of Conduct](https://www.mediawiki.org/wiki/Code_of_Conduct). diff --git a/Gruntfile.js b/Gruntfile.js deleted file mode 100644 index 9c56558..0000000 --- a/Gruntfile.js +++ /dev/null @@ -1,20 +0,0 @@ -/*jshint node:true */ -module.exports = function ( grunt ) { - grunt.loadNpmTasks( 'grunt-banana-checker' ); - grunt.loadNpmTasks( 'grunt-jsonlint' ); - - grunt.initConfig( { - banana: { - all: 'i18n/' - }, - jsonlint: { - all: [ - '**/*.json', - '!node_modules/**' - ] - } - } ); - - grunt.registerTask( 'test', [ 'jsonlint', 'banana' ] ); - grunt.registerTask( 'default', 'test' ); -}; diff --git a/OBSOLETE b/OBSOLETE new file mode 100644 index 0000000..f1893de --- /dev/null +++ b/OBSOLETE @@ -0,0 +1,2 @@ +This extension is, as of September 2017, obsoleted and archived. +Please see https://phabricator.wikimedia.org/T175495 for further details. \ No newline at end of file diff --git a/composer.json b/composer.json deleted file mode 100644 index daa26e1..0000000 --- a/composer.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "require-dev": { - "jakub-onderka/php-parallel-lint": "0.9.2", - "mediawiki/mediawiki-codesniffer": "0.12.0", - "jakub-onderka/php-console-highlighter": "0.3.2" - }, - "scripts": { - "test": [ - "parallel-lint . --exclude vendor", - "phpcs -p -s" - ], - "fix": [ - "phpcbf" - ] - } -} diff --git a/i18n/ar.json b/i18n/ar.json deleted file mode 100644 index 0c24005..0000000 --- a/i18n/ar.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Asaifm" - ] - }, - "ads-desc": "يقوم بإدراج إعلانات في شريط التصفح" -} diff --git a/i18n/ast.json b/i18n/ast.json deleted file mode 100644 index 78ec165..0000000 --- a/i18n/ast.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Xuacu" - ] - }, - "ads-desc": "Inxerta anuncios na barra de navegación" -} diff --git a/i18n/ba.json b/i18n/ba.json deleted file mode 100644 index fe4fad7..0000000 --- a/i18n/ba.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Alfiya55" - ] - }, - "ads-desc": "Хәрәкәт панеленә иғлан беркетә" -} diff --git a/i18n/bcl.json b/i18n/bcl.json deleted file mode 100644 index f0fe711..0000000 --- a/i18n/bcl.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Geopoet" - ] - }, - "ads-desc": "Minasingit nin mga ads sa laog kan bara nin nabigasyon" -} diff --git a/i18n/be-tarask.json b/i18n/be-tarask.json deleted file mode 100644 index 08b5b2d..0000000 --- a/i18n/be-tarask.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Wizardist" - ] - }, - "ads-desc": "Дадае рэкляму ў навігацыйную панэль" -} diff --git a/i18n/bg.json b/i18n/bg.json deleted file mode 100644 index 546ce95..0000000 --- a/i18n/bg.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "DCLXVI" - ] - }, - "ads-desc": "Вмъкване на реклами в лентата за навигация" -} diff --git a/i18n/br.json b/i18n/br.json deleted file mode 100644 index d1949a8..0000000 --- a/i18n/br.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Y-M D" - ] - }, - "ads-desc": "Ensoc'hañ bruderezh er barrenn merdeiñ" -} diff --git a/i18n/bs.json b/i18n/bs.json deleted file mode 100644 index 4835b29..0000000 --- a/i18n/bs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Srdjan m" - ] - }, - "ads-desc": "Dodaje reklame u navigacijsku traku" -} diff --git a/i18n/ca.json b/i18n/ca.json deleted file mode 100644 index 43244c5..0000000 --- a/i18n/ca.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Toniher" - ] - }, - "ads-desc": "Insereix anuncis en la barra de navegació" -} diff --git a/i18n/cs.json b/i18n/cs.json deleted file mode 100644 index f4eb4d5..0000000 --- a/i18n/cs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Michaelbrabec" - ] - }, - "ads-desc": "Vkládá reklamy na navigační panel" -} diff --git a/i18n/csb.json b/i18n/csb.json deleted file mode 100644 index ec9de06..0000000 --- a/i18n/csb.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Kaszeba" - ] - }, - "ads-desc": "Dodôwô reklamë na nawigacjowi lëstwie" -} diff --git a/i18n/cy.json b/i18n/cy.json deleted file mode 100644 index 5a78866..0000000 --- a/i18n/cy.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Lloffiwr" - ] - }, - "ads-desc": "Yn gosod hysbysebion yn y bar llywio" -} diff --git a/i18n/da.json b/i18n/da.json deleted file mode 100644 index 2770140..0000000 --- a/i18n/da.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Christian List" - ] - }, - "ads-desc": "Indsætter annoncer i navigationslinjen" -} diff --git a/i18n/de.json b/i18n/de.json deleted file mode 100644 index 4909909..0000000 --- a/i18n/de.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Metalhead64" - ] - }, - "ads-desc": "Fügt Anzeigen in die Navigationsleiste ein" -} diff --git a/i18n/diq.json b/i18n/diq.json deleted file mode 100644 index 4850070..0000000 --- a/i18n/diq.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Marmase" - ] - }, - "ads-desc": "Çuwada geyrayeni de reklam bıde" -} diff --git a/i18n/dsb.json b/i18n/dsb.json deleted file mode 100644 index 39694ff..0000000 --- a/i18n/dsb.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Michawiki" - ] - }, - "ads-desc": "Zasajźujo reklamu do nawigaciskeje rědki" -} diff --git a/i18n/en-gb.json b/i18n/en-gb.json deleted file mode 100644 index af43497..0000000 --- a/i18n/en-gb.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Chase me ladies, I'm the Cavalry" - ] - }, - "ads-desc": "Inserts adverts into the navigation bar" -} diff --git a/i18n/en.json b/i18n/en.json deleted file mode 100644 index 712ae2b..0000000 --- a/i18n/en.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Miguel Peláez" - ] - }, - "ads-desc": "Inserts ads in the navigation bar" -} \ No newline at end of file diff --git a/i18n/eo.json b/i18n/eo.json deleted file mode 100644 index 47dffad..0000000 --- a/i18n/eo.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "KuboF" - ] - }, - "ads-desc": "Enigado de reklamoj en navigan strion" -} diff --git a/i18n/es.json b/i18n/es.json deleted file mode 100644 index 03189bb..0000000 --- a/i18n/es.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "@metadata": [], - "ads-desc": "Inserta anuncios en la barra de navegación" -} diff --git a/i18n/eu.json b/i18n/eu.json deleted file mode 100644 index f988d97..0000000 --- a/i18n/eu.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Subi" - ] - }, - "ads-desc": "Iragarkiak txertatzen ditu nabigazio-barran" -} diff --git a/i18n/fa.json b/i18n/fa.json deleted file mode 100644 index c09fd84..0000000 --- a/i18n/fa.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Ebraminio" - ] - }, - "ads-desc": "آگهی در نوار ناوبری میافزاید" -} diff --git a/i18n/fi.json b/i18n/fi.json deleted file mode 100644 index 4443447..0000000 --- a/i18n/fi.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Snidata" - ] - }, - "ads-desc": "Näyttää mainoksia navigointipalkissa" -} diff --git a/i18n/fo.json b/i18n/fo.json deleted file mode 100644 index c26b202..0000000 --- a/i18n/fo.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "EileenSanda" - ] - }, - "ads-desc": "Innset lýsingar í navigasjónsteigin" -} diff --git a/i18n/fr.json b/i18n/fr.json deleted file mode 100644 index 5f207c4..0000000 --- a/i18n/fr.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Wyz" - ] - }, - "ads-desc": "Insérer des publicités dans la barre de navigation" -} diff --git a/i18n/frr.json b/i18n/frr.json deleted file mode 100644 index 0aeb36d..0000000 --- a/i18n/frr.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Murma174" - ] - }, - "ads-desc": "Saat rekloome iinuun det nawigatjuunslist" -} diff --git a/i18n/gd.json b/i18n/gd.json deleted file mode 100644 index aee6ccb..0000000 --- a/i18n/gd.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "GunChleoc" - ] - }, - "ads-desc": "Cuiridh seo sanasachd ri bàr na seòladaireachd" -} diff --git a/i18n/gl.json b/i18n/gl.json deleted file mode 100644 index f33e20a..0000000 --- a/i18n/gl.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Toliño" - ] - }, - "ads-desc": "Insire anuncios na barra de navegación" -} diff --git a/i18n/haw.json b/i18n/haw.json deleted file mode 100644 index 0d93bf6..0000000 --- a/i18n/haw.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Kolonahe" - ] - }, - "ads-desc": "Hoʻokomo i nā hoʻolahi kūʻai i ka ʻaukā kele" -} diff --git a/i18n/he.json b/i18n/he.json deleted file mode 100644 index c6ed644..0000000 --- a/i18n/he.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "YaronSh" - ] - }, - "ads-desc": "הוספת פרסומות בסרגל הניווט" -} diff --git a/i18n/hi.json b/i18n/hi.json deleted file mode 100644 index e3ad310..0000000 --- a/i18n/hi.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Sfic" - ] - }, - "ads-desc": "संचरण पट्टी में विज्ञापन डालें" -} diff --git a/i18n/hrx.json b/i18n/hrx.json deleted file mode 100644 index e5dcaaa..0000000 --- a/i18n/hrx.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Paul Beppler" - ] - }, - "ads-desc": "Fücht Oonzeiche in die Navigationsleist ren" -} diff --git a/i18n/hsb.json b/i18n/hsb.json deleted file mode 100644 index f469442..0000000 --- a/i18n/hsb.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Michawiki" - ] - }, - "ads-desc": "Zasadźuje reklamu do nawigaciskeje lajsty" -} diff --git a/i18n/ia.json b/i18n/ia.json deleted file mode 100644 index 9ce7417..0000000 --- a/i18n/ia.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "McDutchie" - ] - }, - "ads-desc": "Insere annuncios in le barra de navigation" -} diff --git a/i18n/id.json b/i18n/id.json deleted file mode 100644 index cd00298..0000000 --- a/i18n/id.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Rv77ax" - ] - }, - "ads-desc": "Menyisipkan iklan di panel navigasi" -} diff --git a/i18n/it.json b/i18n/it.json deleted file mode 100644 index 488d891..0000000 --- a/i18n/it.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Beta16" - ] - }, - "ads-desc": "Inserisce pubblicità nella barra di navigazione" -} diff --git a/i18n/ja.json b/i18n/ja.json deleted file mode 100644 index 018e8c8..0000000 --- a/i18n/ja.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Shirayuki" - ] - }, - "ads-desc": "ナビゲーション バーに広告を挿入する" -} diff --git a/i18n/kab.json b/i18n/kab.json deleted file mode 100644 index 17cf89e..0000000 --- a/i18n/kab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Belkacem77" - ] - }, - "ads-desc": "Ger adellel deg ufeggag n tunigin" -} diff --git a/i18n/ko.json b/i18n/ko.json deleted file mode 100644 index 2f69e03..0000000 --- a/i18n/ko.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "아라" - ] - }, - "ads-desc": "둘러보기 바에 광고를 넣습니다" -} diff --git a/i18n/ksh.json b/i18n/ksh.json deleted file mode 100644 index 7558ae8..0000000 --- a/i18n/ksh.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Purodha" - ] - }, - "ads-desc": "Brängk Aanzeije en de Leß met dä Lengks, womet mer em Wiki eröm jeiht." -} diff --git a/i18n/lb.json b/i18n/lb.json deleted file mode 100644 index 7acf334..0000000 --- a/i18n/lb.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Robby", - "Soued031" - ] - }, - "ads-desc": "Setzt Reklammen an d'Navigatiounsläischt derbäi" -} diff --git a/i18n/lij.json b/i18n/lij.json deleted file mode 100644 index 1fda23a..0000000 --- a/i18n/lij.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Giromin Cangiaxo" - ] - }, - "ads-desc": "O l'inseisce a pubriçitæ inta bara de navegaçion" -} diff --git a/i18n/lt.json b/i18n/lt.json deleted file mode 100644 index 1284f6d..0000000 --- a/i18n/lt.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Eitvys200" - ] - }, - "ads-desc": "Įterpia skelbimus į navigacijos juostą" -} diff --git a/i18n/lv.json b/i18n/lv.json deleted file mode 100644 index 95de699..0000000 --- a/i18n/lv.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Silraks" - ] - }, - "ads-desc": "Ievieto reklāmas navigācijas joslā" -} diff --git a/i18n/map-bms.json b/i18n/map-bms.json deleted file mode 100644 index 8e93aea..0000000 --- a/i18n/map-bms.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "StefanusRA" - ] - }, - "ads-desc": "Nyisipna iklan ming panel navigasi" -} diff --git a/i18n/mg.json b/i18n/mg.json deleted file mode 100644 index 9497731..0000000 --- a/i18n/mg.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Jagwar" - ] - }, - "ads-desc": "Hanisy dokam-barotra ao anaty baram-pitetezana" -} diff --git a/i18n/mk.json b/i18n/mk.json deleted file mode 100644 index 98ae538..0000000 --- a/i18n/mk.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Bjankuloski06" - ] - }, - "ads-desc": "Вметнува рекламира во навигационата лента" -} diff --git a/i18n/mr.json b/i18n/mr.json deleted file mode 100644 index b4fdf10..0000000 --- a/i18n/mr.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "V.narsikar" - ] - }, - "ads-desc": "चालन-पट्टीकेत(नॅव्हीगेशन बार) जाहिराती घालते" -} diff --git a/i18n/ms.json b/i18n/ms.json deleted file mode 100644 index 494e402..0000000 --- a/i18n/ms.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Tedbundyjr" - ] - }, - "ads-desc": "Selit iklan di bar navigasi" -} diff --git a/i18n/mt.json b/i18n/mt.json deleted file mode 100644 index 4cdf8d3..0000000 --- a/i18n/mt.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Leli Forte" - ] - }, - "ads-desc": "Inserixxi riklami fil-barra tan-navigazzjoni" -} diff --git a/i18n/nb.json b/i18n/nb.json deleted file mode 100644 index e0444ab..0000000 --- a/i18n/nb.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Event" - ] - }, - "ads-desc": "Setter inn annonser i navigasjonsfeltet" -} diff --git a/i18n/nl.json b/i18n/nl.json deleted file mode 100644 index e5b7ce6..0000000 --- a/i18n/nl.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Siebrand" - ] - }, - "ads-desc": "Voegt advertenties toe in de navigatiebalk" -} diff --git a/i18n/oc.json b/i18n/oc.json deleted file mode 100644 index 55775e0..0000000 --- a/i18n/oc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Cedric31" - ] - }, - "ads-desc": "Inserir de publicitats dins la barra de navigacion" -} diff --git a/i18n/or.json b/i18n/or.json deleted file mode 100644 index 239817f..0000000 --- a/i18n/or.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Psubhashish" - ] - }, - "ads-desc": "ନାଭିଗେସନ ପଟିରେ ବିଜ୍ଞାପନ ଭରିଥାଏ" -} diff --git a/i18n/pl.json b/i18n/pl.json deleted file mode 100644 index 0d0ee4b..0000000 --- a/i18n/pl.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Rezonansowy" - ] - }, - "ads-desc": "Wstawia reklamy na pasku nawigacji" -} diff --git a/i18n/pms.json b/i18n/pms.json deleted file mode 100644 index 78a1abb..0000000 --- a/i18n/pms.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Dragonòt", - "Borichèt" - ] - }, - "ads-desc": "A inseriss dj'areclam ant la bara 'd navigassion" -} diff --git a/i18n/ps.json b/i18n/ps.json deleted file mode 100644 index b6628a9..0000000 --- a/i18n/ps.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Ahmed-Najib-Biabani-Ibrahimkhel" - ] - }, - "ads-desc": "په گرځښت پټه کې خبرتياوې ورگډوي" -} diff --git a/i18n/pt-br.json b/i18n/pt-br.json deleted file mode 100644 index c43941a..0000000 --- a/i18n/pt-br.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Fúlvio" - ] - }, - "ads-desc": "Insere anúncios na barra de navegação" -} diff --git a/i18n/pt.json b/i18n/pt.json deleted file mode 100644 index c43941a..0000000 --- a/i18n/pt.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Fúlvio" - ] - }, - "ads-desc": "Insere anúncios na barra de navegação" -} diff --git a/i18n/qqq.json b/i18n/qqq.json deleted file mode 100644 index 9d883f0..0000000 --- a/i18n/qqq.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Shirayuki", - "Umherirrender" - ] - }, - "ads-desc": "{{desc|name=Ads|url=https://www.mediawiki.org/wiki/Extension:Ads}}" -} diff --git a/i18n/roa-tara.json b/i18n/roa-tara.json deleted file mode 100644 index 330b78e..0000000 --- a/i18n/roa-tara.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Joetaras" - ] - }, - "ads-desc": "Sckaffe 'a pubblecetà jndr'à barre de navigazzione" -} diff --git a/i18n/ru.json b/i18n/ru.json deleted file mode 100644 index 036749c..0000000 --- a/i18n/ru.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Okras" - ] - }, - "ads-desc": "Вставляет объявление в панель навигации" -} diff --git a/i18n/sah.json b/i18n/sah.json deleted file mode 100644 index 323cee1..0000000 --- a/i18n/sah.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "HalanTul" - ] - }, - "ads-desc": "Навигация хапталыгар биллэрии угар" -} diff --git a/i18n/sco.json b/i18n/sco.json deleted file mode 100644 index 6fb888c..0000000 --- a/i18n/sco.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "John Reid" - ] - }, - "ads-desc": "Inserts ads intil the navigætion bar" -} diff --git a/i18n/sk.json b/i18n/sk.json deleted file mode 100644 index 66bcb43..0000000 --- a/i18n/sk.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Sudo77(new)" - ] - }, - "ads-desc": "Vkladá reklamy na navigačný panel" -} diff --git a/i18n/skr-arab.json b/i18n/skr-arab.json deleted file mode 100644 index 370ed74..0000000 --- a/i18n/skr-arab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Saraiki" - ] - }, - "ads-desc": "نیوی گیشن بار وچ ایڈز درج کریندے" -} diff --git a/i18n/sr-ec.json b/i18n/sr-ec.json deleted file mode 100644 index 7a99801..0000000 --- a/i18n/sr-ec.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Milicevic01" - ] - }, - "ads-desc": "Додаје рекламе у траку за навигацију" -} diff --git a/i18n/sr-el.json b/i18n/sr-el.json deleted file mode 100644 index 00ea28f..0000000 --- a/i18n/sr-el.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Milicevic01" - ] - }, - "ads-desc": "Dodaje reklame u traku za navigaciju" -} diff --git a/i18n/sv.json b/i18n/sv.json deleted file mode 100644 index 828dc58..0000000 --- a/i18n/sv.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Jopparn" - ] - }, - "ads-desc": "Infogar annonser i navigeringsfältet" -} diff --git a/i18n/te.json b/i18n/te.json deleted file mode 100644 index 7ca3199..0000000 --- a/i18n/te.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Ravichandra" - ] - }, - "ads-desc": "నావిగేషన్ పట్టీపై ప్రకటనలు చేర్చు" -} diff --git a/i18n/th.json b/i18n/th.json deleted file mode 100644 index 40009b1..0000000 --- a/i18n/th.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Octahedron80" - ] - }, - "ads-desc": "แทรกโฆษณาในแถบนำทาง" -} diff --git a/i18n/tr.json b/i18n/tr.json deleted file mode 100644 index eb770a5..0000000 --- a/i18n/tr.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Joseph" - ] - }, - "ads-desc": "Gezinti çubuğuna reklam ekler" -} diff --git a/i18n/tt-cyrl.json b/i18n/tt-cyrl.json deleted file mode 100644 index 5210e34..0000000 --- a/i18n/tt-cyrl.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Ильнар" - ] - }, - "ads-desc": "Навигациягә өлге куя" -} diff --git a/i18n/uk.json b/i18n/uk.json deleted file mode 100644 index 1375205..0000000 --- a/i18n/uk.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Ата" - ] - }, - "ads-desc": "Вставляє рекламу на навігаційній панелі" -} diff --git a/i18n/yi.json b/i18n/yi.json deleted file mode 100644 index 7ee447d..0000000 --- a/i18n/yi.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "פוילישער" - ] - }, - "ads-desc": "שטעלט אריין רעקלאמעס אין נאוויגאציע־פאס" -} diff --git a/i18n/yue.json b/i18n/yue.json deleted file mode 100644 index 0276086..0000000 --- a/i18n/yue.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Ktchankt" - ] - }, - "ads-desc": "響工具列度插廣告" -} diff --git a/i18n/zh-hans.json b/i18n/zh-hans.json deleted file mode 100644 index 63656dd..0000000 --- a/i18n/zh-hans.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Qiyue2001" - ] - }, - "ads-desc": "在导航栏中插入广告" -} diff --git a/i18n/zh-hant.json b/i18n/zh-hant.json deleted file mode 100644 index 3db1496..0000000 --- a/i18n/zh-hant.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@metadata": { - "authors": [ - "Justincheng12345" - ] - }, - "ads-desc": "在工具列中插入廣告" -} diff --git a/package.json b/package.json deleted file mode 100644 index 3b4b5f0..0000000 --- a/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "private": true, - "scripts": { - "test": "grunt test" - }, - "devDependencies": { - "grunt": "1.0.1", - "grunt-banana-checker": "0.4.0", - "grunt-jsonlint": "1.0.7" - } -} diff --git a/phpcs.xml b/phpcs.xml deleted file mode 100644 index ddbba20..0000000 --- a/phpcs.xml +++ /dev/null @@ -1,13 +0,0 @@ -<?xml version="1.0"?> -<ruleset> - <rule ref="./vendor/mediawiki/mediawiki-codesniffer/MediaWiki"> - <exclude name="MediaWiki.Commenting.FunctionComment.MissingDocumentationPublic" /> - <exclude name="MediaWiki.Files.ClassMatchesFilename.NotMatch" /> - <exclude name="MediaWiki.NamingConventions.LowerCamelFunctionsName.FunctionName" /> - <exclude name="MediaWiki.Usage.ReferenceThis.Found" /> - </rule> - <file>.</file> - <arg name="extensions" value="php,php5,inc" /> - <arg name="encoding" value="utf8" /> - <exclude-pattern>vendor</exclude-pattern> -</ruleset> -- To view, visit https://gerrit.wikimedia.org/r/377075 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ic1ea2ba4eeca89d2e3b79919b1cd4caee933b120 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/extensions/Ads Gerrit-Branch: master Gerrit-Owner: MarcoAurelio <maure...@tools.wmflabs.org> _______________________________________________ MediaWiki-commits mailing list MediaWiki-commits@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits