Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/389534 )

Change subject: Archive the CommentPages extension
......................................................................

Archive the CommentPages extension

Empty the repo to avoid search results on old code.

Bug: T178759
Change-Id: I78e45af27303bb09e567810c624d118fd929869e
---
A ARCHIVED
D CODE_OF_CONDUCT.md
D CommentPages.i18n.php
D CommentPages.php
D Gruntfile.js
D i18n/af.json
D i18n/ar.json
D i18n/arz.json
D i18n/ast.json
D i18n/avk.json
D i18n/az.json
D i18n/ba.json
D i18n/bar.json
D i18n/bcl.json
D i18n/be-tarask.json
D i18n/bg.json
D i18n/bn.json
D i18n/br.json
D i18n/bs.json
D i18n/ca.json
D i18n/ce.json
D i18n/cs.json
D i18n/cy.json
D i18n/de.json
D i18n/diq.json
D i18n/dsb.json
D i18n/el.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/fr.json
D i18n/frp.json
D i18n/gd.json
D i18n/gl.json
D i18n/grc.json
D i18n/gsw.json
D i18n/gu.json
D i18n/gv.json
D i18n/he.json
D i18n/hi.json
D i18n/hsb.json
D i18n/hu.json
D i18n/ia.json
D i18n/id.json
D i18n/ig.json
D i18n/io.json
D i18n/is.json
D i18n/it.json
D i18n/ja.json
D i18n/jam.json
D i18n/jv.json
D i18n/ka.json
D i18n/kab.json
D i18n/km.json
D i18n/kn.json
D i18n/ko.json
D i18n/ksh.json
D i18n/lb.json
D i18n/li.json
D i18n/lij.json
D i18n/lt.json
D i18n/mg.json
D i18n/mk.json
D i18n/ml.json
D i18n/mr.json
D i18n/ms.json
D i18n/mt.json
D i18n/myv.json
D i18n/nb.json
D i18n/nds.json
D i18n/nl.json
D i18n/nn.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/qu.json
D i18n/ro.json
D i18n/roa-tara.json
D i18n/ru.json
D i18n/rue.json
D i18n/sah.json
D i18n/si.json
D i18n/sk.json
D i18n/sl.json
D i18n/sr-ec.json
D i18n/sr-el.json
D i18n/su.json
D i18n/sv.json
D i18n/ta.json
D i18n/te.json
D i18n/tg-cyrl.json
D i18n/tg-latn.json
D i18n/tl.json
D i18n/tr.json
D i18n/uk.json
D i18n/ur.json
D i18n/uz.json
D i18n/vec.json
D i18n/vep.json
D i18n/vi.json
D i18n/vo.json
D i18n/yi.json
D i18n/zh-hans.json
D i18n/zh-hant.json
D package.json
113 files changed, 2 insertions(+), 1,163 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/CommentPages 
refs/changes/34/389534/1

diff --git a/ARCHIVED b/ARCHIVED
new file mode 100644
index 0000000..f1a0f75
--- /dev/null
+++ b/ARCHIVED
@@ -0,0 +1,2 @@
+This extension is unmaintained and has been archived.
+See <https://phabricator.wikimedia.org/T178759> for more information.
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/CommentPages.i18n.php b/CommentPages.i18n.php
deleted file mode 100644
index 7ac4d1a..0000000
--- a/CommentPages.i18n.php
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-/**
- * This is a backwards-compatibility shim, generated by:
- * 
https://git.wikimedia.org/blob/mediawiki%2Fcore.git/HEAD/maintenance%2FgenerateJsonI18n.php
- *
- * 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( 'wfJsonI18nShim2b4f64b791e449ba' ) ) {
-       function wfJsonI18nShim2b4f64b791e449ba( $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'] );
-                       }
-
-                       $cachedData['deps'][] = new FileDependency( $fileName );
-               }
-               return true;
-       }
-
-       $GLOBALS['wgHooks']['LocalisationCacheRecache'][] = 
'wfJsonI18nShim2b4f64b791e449ba';
-}
diff --git a/CommentPages.php b/CommentPages.php
deleted file mode 100644
index baf660f..0000000
--- a/CommentPages.php
+++ /dev/null
@@ -1,130 +0,0 @@
-<?php
-/*  Comment pages for main namespace pages
- *  Originally designed for Wikinews
- *  By [[User:Zachary]]
- *  Released under the GPL
- */
-
-$wgExtensionCredits['other'][] = array(
-       'path'           => __FILE__,
-       'name'           => 'CommentPages',
-       'author'         => '[http://en.wikinews.org/wiki/User:Zachary Zachary 
Hauri]',
-       'descriptionmsg' => 'commentpages-desc',
-       'url'            => 
'https://www.mediawiki.org/wiki/Extension:CommentPages',
-);
-
-$wgMessagesDirs['CommentPages'] = __DIR__ . '/i18n';
-$wgExtensionMessagesFiles['CommentPages'] = dirname(__FILE__) . 
'/CommentPages.i18n.php';
-$wgHooks['SkinTemplateTabs'][]  = 'wfCommentPagesSkinTemplateTabs';
-
-/**
- * Namespace to use for comments
- */
-$wgCommentPagesNS = 100;
-
-$wgCommentPagesContentNamespace = NS_MAIN;
-
-/**
- * @param $skin Skin
- * @param  $content_actions
- * @return bool
- */
-function wfCommentPagesSkinTemplateTabs ( $skin, &$content_actions ) {
-       global $wgContLang, $wgCommentPagesNS, $wgCommentPagesContentNamespace;
-
-       $title = $skin->getTitle();
-       $pagename = $title->getText();
-       $namespace = $title->getNamespace();
-
-       $query = '';
-
-       if ( $namespace == $wgCommentPagesContentNamespace ||
-                       $namespace == $wgCommentPagesContentNamespace + 1 ) {
-               $comments = Title::makeTitleSafe( $wgCommentPagesNS, $pagename 
);
-               $newcontent_actions = array();
-
-               if ( !$comments->exists() ) {
-                       $class = 'new';
-                       $query = array( 'action' => 'edit', 'redlink' => 1 );
-
-                       $tabPreloadMsg = $skin->msg( 'commenttab-preload' );
-
-                       if ( $tabPreloadMsg->text() != '' ) {
-                               $query['preload'] = $tabPreloadMsg->text();
-                       }
-
-                       $tabEditMsg = $skin->msg('commenttab-editintro');
-
-                       if ( $tabEditMsg->text() != '' ) {
-                               $query['editintro'] = $tabEditMsg->text();
-                       }
-               } else {
-                       $class = '';
-               }
-
-               $newcontent_actions['comments'] = array(
-                       'class' => $class,
-                       'text'  => $skin->msg('nstab-comments')->text(),
-                       'href'  => $comments->getFullURL( $query ),
-               );
-
-               $insertAfter = $title->getNamespaceKey();
-               if ( isset( $content_actions['talk'] ) ) {
-                       $insertAfter = 'talk';
-               }
-
-               $content_actions = wfArrayInsertAfter( $content_actions, 
$newcontent_actions, $insertAfter );
-       } elseif ( $namespace == $wgCommentPagesNS ) {
-               $main = Title::makeTitleSafe( $wgCommentPagesContentNamespace, 
$pagename );
-               $talk = $main->getTalkPage();
-               $newcontent_actions = array();
-
-               if ( !$main->exists() ) {
-                       $class = 'new';
-                       $query = 'action=edit&redlink=1';
-               } else {
-                       $class = '';
-                       $query = '';
-               }
-
-               $articleMsg = $skin->msg( $main->getNamespaceKey() );
-               if ( $articleMsg->isDisabled() ) {
-                       $articleText = $wgContLang->getFormattedNsText( 
$main->getNamespace() );
-               } else {
-                       $articleText = $articleMsg->text();
-               }
-
-               $newcontent_actions['article'] = array(
-                       'class' => $class,
-                       'text'  => $articleText,
-                       'href'  => $main->getFullURL( $query ),
-               );
-
-               if ( !$talk->exists() ) {
-                       $class = 'new';
-                       $query = 'action=edit';
-               } else {
-                       $class = '';
-                       $query = '';
-               }
-               $newcontent_actions['talk'] = array(
-                       'class' => $class,
-                       'text'  => $skin->msg( 'talk' )->text(),
-                       'href'  => $talk->getFullURL( $query ),
-               );
-
-               foreach ($content_actions as $key => $value) {
-                       if ( $key != 'talk' ) {
-                               $newcontent_actions[$key] = $value;
-                       }
-
-                       if ( $key == 'nstab-comments' ) {
-                               $newcontent_actions['nstab-comments']['text'] = 
$skin->msg( 'nstab-comments' )->text();
-                       }
-               }
-
-               $content_actions = $newcontent_actions;
-       }
-
-       return true;
-}
diff --git a/Gruntfile.js b/Gruntfile.js
deleted file mode 100644
index 7756e75..0000000
--- a/Gruntfile.js
+++ /dev/null
@@ -1,20 +0,0 @@
-/*jshint node:true */
-module.exports = function ( grunt ) {
-       grunt.loadNpmTasks( 'grunt-jsonlint' );
-       grunt.loadNpmTasks( 'grunt-banana-checker' );
-
-       grunt.initConfig( {
-               banana: {
-                       all: 'i18n/'
-               },
-               jsonlint: {
-                       all: [
-                               '**/*.json',
-                               '!node_modules/**'
-                       ]
-               }
-       } );
-
-       grunt.registerTask( 'test', [ 'jsonlint', 'banana' ] );
-       grunt.registerTask( 'default', 'test' );
-};
diff --git a/i18n/af.json b/i18n/af.json
deleted file mode 100644
index c2890ef..0000000
--- a/i18n/af.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Naudefj"
-               ]
-       },
-       "commentpages-desc": "Opmerkingsbladsye vir die hoof naamruimte",
-       "nstab-comments": "Opmerkings"
-}
diff --git a/i18n/ar.json b/i18n/ar.json
deleted file mode 100644
index f8beb5b..0000000
--- a/i18n/ar.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Meno25"
-               ]
-       },
-       "commentpages-desc": "صفحات تعليق للنطاق الرئيسي",
-       "nstab-comments": "تعليق"
-}
diff --git a/i18n/arz.json b/i18n/arz.json
deleted file mode 100644
index f8beb5b..0000000
--- a/i18n/arz.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Meno25"
-               ]
-       },
-       "commentpages-desc": "صفحات تعليق للنطاق الرئيسي",
-       "nstab-comments": "تعليق"
-}
diff --git a/i18n/ast.json b/i18n/ast.json
deleted file mode 100644
index dd76415..0000000
--- a/i18n/ast.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Xuacu"
-               ]
-       },
-       "commentpages-desc": "Páxines de comentarios del espaciu de nomes 
principal",
-       "nstab-comments": "Comentariu"
-}
diff --git a/i18n/avk.json b/i18n/avk.json
deleted file mode 100644
index 3c16b3f..0000000
--- a/i18n/avk.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Wikimistusik"
-               ]
-       },
-       "commentpages-desc": "Sebuksbu ke nelkafo yoltxo",
-       "nstab-comments": "Sebuks"
-}
diff --git a/i18n/az.json b/i18n/az.json
deleted file mode 100644
index fd587b3..0000000
--- a/i18n/az.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Sortilegus"
-               ]
-       },
-       "commentpages-desc": "Əsas adlar fəzası üçün şərh səhifələri",
-       "nstab-comments": "İzahat"
-}
diff --git a/i18n/ba.json b/i18n/ba.json
deleted file mode 100644
index c1ff154..0000000
--- a/i18n/ba.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Assele"
-               ]
-       },
-       "commentpages-desc": "Төп исемдәр арауығы өсөн аңлатма биттәре",
-       "nstab-comments": "Аңлатма"
-}
diff --git a/i18n/bar.json b/i18n/bar.json
deleted file mode 100644
index f58af1e..0000000
--- a/i18n/bar.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Man77"
-               ]
-       },
-       "commentpages-desc": "Kommentian vu Seitn im Haupt-Nãmensraum",
-       "nstab-comments": "Kommentar"
-}
diff --git a/i18n/bcl.json b/i18n/bcl.json
deleted file mode 100644
index 0e16a1f..0000000
--- a/i18n/bcl.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Geopoet"
-               ]
-       },
-       "commentpages-desc": "Mga pahina nin komento para sa kapamayuhanan na 
espasyong-pangaran",
-       "nstab-comments": "Komentaryo"
-}
diff --git a/i18n/be-tarask.json b/i18n/be-tarask.json
deleted file mode 100644
index 7a586e9..0000000
--- a/i18n/be-tarask.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "EugeneZelenko",
-                       "Jim-by"
-               ]
-       },
-       "commentpages-desc": "Старонкі камэнтараў для асноўнай прасторы назваў",
-       "nstab-comments": "Камэнтар"
-}
diff --git a/i18n/bg.json b/i18n/bg.json
deleted file mode 100644
index 9ae46c3..0000000
--- a/i18n/bg.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "DCLXVI"
-               ]
-       },
-       "commentpages-desc": "Страници за коментари към основното именно 
пространство",
-       "nstab-comments": "Коментари"
-}
diff --git a/i18n/bn.json b/i18n/bn.json
deleted file mode 100644
index c2df30a..0000000
--- a/i18n/bn.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Bellayet"
-               ]
-       },
-       "commentpages-desc": "প্রধান নামস্থানের জন্য মন্তব্য পাতা",
-       "nstab-comments": "ধারাভাষ্য"
-}
diff --git a/i18n/br.json b/i18n/br.json
deleted file mode 100644
index 3a6bdaf..0000000
--- a/i18n/br.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Fulup"
-               ]
-       },
-       "commentpages-desc": "Pajennoù evezhiadennoù evit an esaouenn anv 
pennañ",
-       "nstab-comments": "Evezhiadenn"
-}
diff --git a/i18n/bs.json b/i18n/bs.json
deleted file mode 100644
index 4a79abc..0000000
--- a/i18n/bs.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "CERminator"
-               ]
-       },
-       "commentpages-desc": "Stranice komentara za glavni imenski prostor",
-       "nstab-comments": "Komentari"
-}
diff --git a/i18n/ca.json b/i18n/ca.json
deleted file mode 100644
index bbbc15b..0000000
--- a/i18n/ca.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Solde"
-               ]
-       },
-       "commentpages-desc": "Pàgines de comentaris per l'espai de noms 
principal",
-       "nstab-comments": "Comentari"
-}
diff --git a/i18n/ce.json b/i18n/ce.json
deleted file mode 100644
index 2b42bbc..0000000
--- a/i18n/ce.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Умар"
-               ]
-       },
-       "nstab-comments": "Билгалдаккхар"
-}
diff --git a/i18n/cs.json b/i18n/cs.json
deleted file mode 100644
index 8d3718c..0000000
--- a/i18n/cs.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Matěj Grabovský"
-               ]
-       },
-       "commentpages-desc": "Diskusní stránky hlavního jmenného prostoru",
-       "nstab-comments": "Komentář"
-}
diff --git a/i18n/cy.json b/i18n/cy.json
deleted file mode 100644
index f16ba4b..0000000
--- a/i18n/cy.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Lloffiwr"
-               ]
-       },
-       "commentpages-desc": "Tudalennau sylwadau ar gyfer y prif barth",
-       "nstab-comments": "Sylwadau"
-}
diff --git a/i18n/de.json b/i18n/de.json
deleted file mode 100644
index 04bbbf3..0000000
--- a/i18n/de.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Raimond Spekking"
-               ]
-       },
-       "commentpages-desc": "Kommentieren von Seiten im Haupt-Namensraum",
-       "nstab-comments": "Kommentar"
-}
diff --git a/i18n/diq.json b/i18n/diq.json
deleted file mode 100644
index a0ac107..0000000
--- a/i18n/diq.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Erdemaslancan",
-                       "Mirzali"
-               ]
-       },
-       "nstab-comments": "Tefsir"
-}
diff --git a/i18n/dsb.json b/i18n/dsb.json
deleted file mode 100644
index 0b6c3fc..0000000
--- a/i18n/dsb.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Michawiki"
-               ]
-       },
-       "commentpages-desc": "Komentarowe boki za głowny mjenjowy rum",
-       "nstab-comments": "Komentary"
-}
diff --git a/i18n/el.json b/i18n/el.json
deleted file mode 100644
index baf6a2c..0000000
--- a/i18n/el.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Consta",
-                       "Omnipaedista"
-               ]
-       },
-       "commentpages-desc": "Σελίδες σχολιασμού για την κύρια περιοχή 
ονομάτων",
-       "nstab-comments": "Σχόλιο"
-}
diff --git a/i18n/en.json b/i18n/en.json
deleted file mode 100644
index 4f3384d..0000000
--- a/i18n/en.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": []
-       },
-       "commentpages-desc": "Comment pages for the main namespace",
-       "commenttab-editintro": "",
-       "commenttab-preload": "",
-       "nstab-comments": "Commentary"
-}
\ No newline at end of file
diff --git a/i18n/eo.json b/i18n/eo.json
deleted file mode 100644
index 25f3fef..0000000
--- a/i18n/eo.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Yekrats"
-               ]
-       },
-       "commentpages-desc": "Diskuto-paĝoj por la ĉefa nomspaco",
-       "nstab-comments": "Komentaro"
-}
diff --git a/i18n/es.json b/i18n/es.json
deleted file mode 100644
index 75f9d7d..0000000
--- a/i18n/es.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Academo",
-                       "Sanbec"
-               ]
-       },
-       "commentpages-desc": "Comentar páginas en el espacio de nombres 
principal",
-       "nstab-comments": "Comentario"
-}
diff --git a/i18n/eu.json b/i18n/eu.json
deleted file mode 100644
index 2742325..0000000
--- a/i18n/eu.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Kobazulo",
-                       "Theklan"
-               ]
-       },
-       "commentpages-desc": "Izentarte nagusirako iruzkin orrialdeak",
-       "nstab-comments": "Iruzkina"
-}
diff --git a/i18n/fa.json b/i18n/fa.json
deleted file mode 100644
index b7d19ec..0000000
--- a/i18n/fa.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Momeni"
-               ]
-       },
-       "commentpages-desc": "صفحه‌های توضیح برای فضای نام اصلی",
-       "nstab-comments": "تفسیر"
-}
diff --git a/i18n/fi.json b/i18n/fi.json
deleted file mode 100644
index 8d32e48..0000000
--- a/i18n/fi.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Centerlink",
-                       "Crt"
-               ]
-       },
-       "commentpages-desc": "Kommenttisivut päänimiavaruudelle.",
-       "nstab-comments": "Kommentti"
-}
diff --git a/i18n/fr.json b/i18n/fr.json
deleted file mode 100644
index f6c8a57..0000000
--- a/i18n/fr.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Grondin",
-                       "Verdy p"
-               ]
-       },
-       "commentpages-desc": "Pages de commentaires pour l’espace principal",
-       "nstab-comments": "Commentaire"
-}
diff --git a/i18n/frp.json b/i18n/frp.json
deleted file mode 100644
index 1d7dfed..0000000
--- a/i18n/frp.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "ChrisPtDe"
-               ]
-       },
-       "commentpages-desc": "Pâges de comentèros por l’èspâço de noms 
principâl.",
-       "nstab-comments": "Comentèro"
-}
diff --git a/i18n/gd.json b/i18n/gd.json
deleted file mode 100644
index 81a9eb3..0000000
--- a/i18n/gd.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "GunChleoc"
-               ]
-       },
-       "commentpages-desc": "Duilleagan nam beachdan airson a' phrìomh 
ainm-spàs",
-       "nstab-comments": "Beachdan"
-}
diff --git a/i18n/gl.json b/i18n/gl.json
deleted file mode 100644
index aa8e8d6..0000000
--- a/i18n/gl.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Alma"
-               ]
-       },
-       "commentpages-desc": "Páxinas de comentario para o espazo de nomes 
principal",
-       "nstab-comments": "Comentario"
-}
diff --git a/i18n/grc.json b/i18n/grc.json
deleted file mode 100644
index 9f13a87..0000000
--- a/i18n/grc.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Omnipaedista"
-               ]
-       },
-       "commentpages-desc": "Δέλτοι σχολίων διὰ τὸ κύριον ὀνοματεῖον",
-       "nstab-comments": "Σχολιασμός"
-}
diff --git a/i18n/gsw.json b/i18n/gsw.json
deleted file mode 100644
index 7933271..0000000
--- a/i18n/gsw.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Als-Holder"
-               ]
-       },
-       "commentpages-desc": "Syten im Haupt-Namensruum kommentiere",
-       "nstab-comments": "Kommentar"
-}
diff --git a/i18n/gu.json b/i18n/gu.json
deleted file mode 100644
index ce7cbc4..0000000
--- a/i18n/gu.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Ashok modhvadia"
-               ]
-       },
-       "commentpages-desc": "મુખ્ય નામાવકાશ માટે ટિપ્પ્ણી પાનાં",
-       "nstab-comments": "ટીકા"
-}
diff --git a/i18n/gv.json b/i18n/gv.json
deleted file mode 100644
index 275ef05..0000000
--- a/i18n/gv.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "MacTire02"
-               ]
-       },
-       "commentpages-desc": "Duillagyn cohaggloo da'n ard-voayl ennym",
-       "nstab-comments": "Coontey"
-}
diff --git a/i18n/he.json b/i18n/he.json
deleted file mode 100644
index 1738699..0000000
--- a/i18n/he.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Rotemliss"
-               ]
-       },
-       "commentpages-desc": "הוספת דפי תגובות לדפים במרחב השם הראשי",
-       "nstab-comments": "תגובות"
-}
diff --git a/i18n/hi.json b/i18n/hi.json
deleted file mode 100644
index ddc4a70..0000000
--- a/i18n/hi.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Kaustubh"
-               ]
-       },
-       "commentpages-desc": "मुख्य नामस्थानके लिये टिप्पणी पन्ने",
-       "nstab-comments": "समीक्षा"
-}
diff --git a/i18n/hsb.json b/i18n/hsb.json
deleted file mode 100644
index 862d8b3..0000000
--- a/i18n/hsb.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Michawiki"
-               ]
-       },
-       "commentpages-desc": "Komentarne strony za hłowny mjenowy rum",
-       "nstab-comments": "Komentar"
-}
diff --git a/i18n/hu.json b/i18n/hu.json
deleted file mode 100644
index 680092f..0000000
--- a/i18n/hu.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Dani"
-               ]
-       },
-       "commentpages-desc": "Megjegyzéslapok a főnévtérhez",
-       "nstab-comments": "Megjegyzések"
-}
diff --git a/i18n/ia.json b/i18n/ia.json
deleted file mode 100644
index e12f02e..0000000
--- a/i18n/ia.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "McDutchie"
-               ]
-       },
-       "commentpages-desc": "Paginas de commentos pro le spatio de nomines 
principal",
-       "nstab-comments": "Commentario"
-}
diff --git a/i18n/id.json b/i18n/id.json
deleted file mode 100644
index 17e49be..0000000
--- a/i18n/id.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Bennylin"
-               ]
-       },
-       "commentpages-desc": "Halaman komentar untuk ruang nama utama",
-       "nstab-comments": "Komentar"
-}
diff --git a/i18n/ig.json b/i18n/ig.json
deleted file mode 100644
index e1fbee3..0000000
--- a/i18n/ig.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Ukabia"
-               ]
-       },
-       "commentpages-desc": "Ihü okwú na okwú maka áhàámá íshí",
-       "nstab-comments": "Okwú na okwú"
-}
diff --git a/i18n/io.json b/i18n/io.json
deleted file mode 100644
index 1d6e839..0000000
--- a/i18n/io.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Malafaya"
-               ]
-       },
-       "commentpages-desc": "Komentez pagini en chefa nomaro",
-       "nstab-comments": "Komento"
-}
diff --git a/i18n/is.json b/i18n/is.json
deleted file mode 100644
index 0de1170..0000000
--- a/i18n/is.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "S.Örvarr.S"
-               ]
-       },
-       "nstab-comments": "Skýring"
-}
diff --git a/i18n/it.json b/i18n/it.json
deleted file mode 100644
index 62a8a48..0000000
--- a/i18n/it.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "BrokenArrow"
-               ]
-       },
-       "commentpages-desc": "Pagine di commenti per il namespace principale",
-       "nstab-comments": "Commenti"
-}
diff --git a/i18n/ja.json b/i18n/ja.json
deleted file mode 100644
index cf47559..0000000
--- a/i18n/ja.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "JtFuruhata",
-                       "Shirayuki"
-               ]
-       },
-       "commentpages-desc": "標準名前空間のコメントページ",
-       "nstab-comments": "コメント"
-}
diff --git a/i18n/jam.json b/i18n/jam.json
deleted file mode 100644
index 23138b9..0000000
--- a/i18n/jam.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Yocahuna"
-               ]
-       },
-       "commentpages-desc": "Kament piej fi di mien niemspies",
-       "nstab-comments": "Kamenchri"
-}
diff --git a/i18n/jv.json b/i18n/jv.json
deleted file mode 100644
index 1a54a42..0000000
--- a/i18n/jv.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Meursault2004"
-               ]
-       },
-       "nstab-comments": "Komentar"
-}
diff --git a/i18n/ka.json b/i18n/ka.json
deleted file mode 100644
index eb36928..0000000
--- a/i18n/ka.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "David1010"
-               ]
-       },
-       "commentpages-desc": "კომენტარების გვერდი ძირითადი სახელთა 
სივრცისათვის",
-       "nstab-comments": "შენიშვნა"
-}
diff --git a/i18n/kab.json b/i18n/kab.json
deleted file mode 100644
index 865ae7d..0000000
--- a/i18n/kab.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Belkacem77"
-               ]
-       },
-       "commentpages-desc": "Isebtar n iwenniten i yisem n tallunt agejdan",
-       "nstab-comments": "Awennit"
-}
diff --git a/i18n/km.json b/i18n/km.json
deleted file mode 100644
index cf789bc..0000000
--- a/i18n/km.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Thearith"
-               ]
-       },
-       "commentpages-desc": "ទំព័រ​អធិប្បាយ​សម្រាប់​លំហឈ្មោះ​មេ",
-       "nstab-comments": "វចនាធិប្បាយ"
-}
diff --git a/i18n/kn.json b/i18n/kn.json
deleted file mode 100644
index cf1227c..0000000
--- a/i18n/kn.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "VASANTH S.N."
-               ]
-       },
-       "nstab-comments": "ನಿರೂಪಣೆ"
-}
diff --git a/i18n/ko.json b/i18n/ko.json
deleted file mode 100644
index e30205f..0000000
--- a/i18n/ko.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "아라"
-               ]
-       },
-       "commentpages-desc": "기본 이름공간에 대한 댓글 문서",
-       "nstab-comments": "댓글 남기기"
-}
diff --git a/i18n/ksh.json b/i18n/ksh.json
deleted file mode 100644
index e860a28..0000000
--- a/i18n/ksh.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Purodha"
-               ]
-       },
-       "commentpages-desc": "Kommentare för Sigge em Houp-Appachtemang.",
-       "nstab-comments": "Kommenta"
-}
diff --git a/i18n/lb.json b/i18n/lb.json
deleted file mode 100644
index 408c178..0000000
--- a/i18n/lb.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Robby"
-               ]
-       },
-       "commentpages-desc": "Säite kommentéieren aus dem Haaptnummraum",
-       "nstab-comments": "Kommentar"
-}
diff --git a/i18n/li.json b/i18n/li.json
deleted file mode 100644
index b437ef7..0000000
--- a/i18n/li.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Pahles"
-               ]
-       },
-       "commentpages-desc": "Opmirkingepagina's veur de hoofnaamruumde",
-       "nstab-comments": "Opmirkinge"
-}
diff --git a/i18n/lij.json b/i18n/lij.json
deleted file mode 100644
index c0289ab..0000000
--- a/i18n/lij.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Giromin Cangiaxo"
-               ]
-       },
-       "commentpages-desc": "Paggine de comenti pe-o namespace prinçipâ",
-       "nstab-comments": "Comenti"
-}
diff --git a/i18n/lt.json b/i18n/lt.json
deleted file mode 100644
index 3388c12..0000000
--- a/i18n/lt.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Eitvys200",
-                       "Hugo.arg"
-               ]
-       },
-       "nstab-comments": "Paaiškinimas"
-}
diff --git a/i18n/mg.json b/i18n/mg.json
deleted file mode 100644
index d41e867..0000000
--- a/i18n/mg.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Jagwar"
-               ]
-       },
-       "commentpages-desc": "Pejin-dresaka ho an'ny anaran-tsehatra fotony",
-       "nstab-comments": "Resaka"
-}
diff --git a/i18n/mk.json b/i18n/mk.json
deleted file mode 100644
index e865e82..0000000
--- a/i18n/mk.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Bjankuloski06"
-               ]
-       },
-       "commentpages-desc": "Страници за коментари за главниот именски 
простор",
-       "nstab-comments": "Коментар"
-}
diff --git a/i18n/ml.json b/i18n/ml.json
deleted file mode 100644
index 9d793d5..0000000
--- a/i18n/ml.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Praveenp",
-                       "Shijualex"
-               ]
-       },
-       "commentpages-desc": "മുഖ്യ നാമമേഖലയിലുള്ള കമെന്റ് താളുകൾ"
-}
diff --git a/i18n/mr.json b/i18n/mr.json
deleted file mode 100644
index abf847a..0000000
--- a/i18n/mr.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Mahitgar"
-               ]
-       },
-       "commentpages-desc": "मुख्य नामविश्वाकरिता प्रतिक्रीया पाने",
-       "nstab-comments": "समीक्षा"
-}
diff --git a/i18n/ms.json b/i18n/ms.json
deleted file mode 100644
index 794a109..0000000
--- a/i18n/ms.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Kurniasan"
-               ]
-       },
-       "commentpages-desc": "Laman-laman komen bagi ruang nama utama",
-       "nstab-comments": "Ulasan"
-}
diff --git a/i18n/mt.json b/i18n/mt.json
deleted file mode 100644
index 12b9370..0000000
--- a/i18n/mt.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Chrisportelli"
-               ]
-       },
-       "commentpages-desc": "Paġni ta' kummenti għall-ispazju tal-isem 
prinċipali",
-       "nstab-comments": "Kummentarju"
-}
diff --git a/i18n/myv.json b/i18n/myv.json
deleted file mode 100644
index 6d9996b..0000000
--- a/i18n/myv.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Botuzhaleny-sodamo"
-               ]
-       },
-       "commentpages-desc": "Прякс лемпотмонть мелень-арсемань лопанзо",
-       "nstab-comments": "Мельть-арьсемат"
-}
diff --git a/i18n/nb.json b/i18n/nb.json
deleted file mode 100644
index 9fe354e..0000000
--- a/i18n/nb.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
-       "@metadata": [],
-       "commentpages-desc": "Legger til kommentarsider for sider i 
hovednavnerommet",
-       "nstab-comments": "Kommentarer"
-}
diff --git a/i18n/nds.json b/i18n/nds.json
deleted file mode 100644
index 0707b85..0000000
--- a/i18n/nds.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Slomox"
-               ]
-       },
-       "nstab-comments": "Kommentar"
-}
diff --git a/i18n/nl.json b/i18n/nl.json
deleted file mode 100644
index 73593b6..0000000
--- a/i18n/nl.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Siebrand"
-               ]
-       },
-       "commentpages-desc": "Opmerkingenpagina's voor de hoofdnaamruimte",
-       "nstab-comments": "Opmerkingen"
-}
diff --git a/i18n/nn.json b/i18n/nn.json
deleted file mode 100644
index 93b4784..0000000
--- a/i18n/nn.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Harald Khan",
-                       "Njardarlogar"
-               ]
-       },
-       "commentpages-desc": "Legg til kommentarsider for sider i 
hovudnamnerommet",
-       "nstab-comments": "Kommentarar"
-}
diff --git a/i18n/oc.json b/i18n/oc.json
deleted file mode 100644
index 2482047..0000000
--- a/i18n/oc.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Cedric31"
-               ]
-       },
-       "commentpages-desc": "Paginas de comentaris per l'espaci principal",
-       "nstab-comments": "Comentari"
-}
diff --git a/i18n/or.json b/i18n/or.json
deleted file mode 100644
index 6d03bea..0000000
--- a/i18n/or.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Jnanaranjan Sahu"
-               ]
-       },
-       "nstab-comments": "ମତାମତକାରୀ"
-}
diff --git a/i18n/pl.json b/i18n/pl.json
deleted file mode 100644
index 59d14a8..0000000
--- a/i18n/pl.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Masti",
-                       "Sp5uhe"
-               ]
-       },
-       "commentpages-desc": "Strony komentarzy w głównej przestrzeni nazw",
-       "nstab-comments": "Komentarz"
-}
diff --git a/i18n/pms.json b/i18n/pms.json
deleted file mode 100644
index e032f7e..0000000
--- a/i18n/pms.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Dragonòt"
-               ]
-       },
-       "commentpages-desc": "Pàgine ëd coment për ël namespace prinsipal",
-       "nstab-comments": "Coment"
-}
diff --git a/i18n/ps.json b/i18n/ps.json
deleted file mode 100644
index aaa51aa..0000000
--- a/i18n/ps.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Ahmed-Najib-Biabani-Ibrahimkhel"
-               ]
-       },
-       "commentpages-desc": "د اصلي نوم-تشيال لپاره د تبصرې مخونه",
-       "nstab-comments": "تبصرې"
-}
diff --git a/i18n/pt-br.json b/i18n/pt-br.json
deleted file mode 100644
index 638b33a..0000000
--- a/i18n/pt-br.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Eduardo.mps"
-               ]
-       },
-       "commentpages-desc": "Páginas de comentários para o espaço nominal 
principal",
-       "nstab-comments": "Comentário"
-}
diff --git a/i18n/pt.json b/i18n/pt.json
deleted file mode 100644
index c86589e..0000000
--- a/i18n/pt.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Malafaya"
-               ]
-       },
-       "commentpages-desc": "Páginas de comentários para o espaço nominal 
principal",
-       "nstab-comments": "Comentário"
-}
diff --git a/i18n/qqq.json b/i18n/qqq.json
deleted file mode 100644
index 102f05f..0000000
--- a/i18n/qqq.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Purodha",
-                       "Shirayuki",
-                       "The Evil IP address",
-                       "Umherirrender"
-               ]
-       },
-       "commentpages-desc": "{{desc|name=Comment 
Pages|url=https://www.mediawiki.org/wiki/Extension:CommentPages}}";,
-       "commenttab-editintro": "{{notranslate}}",
-       "commenttab-preload": "{{notranslate}}",
-       "nstab-comments": "Used as action link text."
-}
diff --git a/i18n/qu.json b/i18n/qu.json
deleted file mode 100644
index 4793a87..0000000
--- a/i18n/qu.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "AlimanRuna"
-               ]
-       },
-       "commentpages-desc": "Uma suti k'itipaq rimapuna p'anqakuna",
-       "nstab-comments": "Rimapuna"
-}
diff --git a/i18n/ro.json b/i18n/ro.json
deleted file mode 100644
index d039db4..0000000
--- a/i18n/ro.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "KlaudiuMihaila"
-               ]
-       },
-       "commentpages-desc": "Pagini de comentarii pentru spațiul de nume 
principal",
-       "nstab-comments": "Comentariu"
-}
diff --git a/i18n/roa-tara.json b/i18n/roa-tara.json
deleted file mode 100644
index d08f8d6..0000000
--- a/i18n/roa-tara.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Joetaras"
-               ]
-       },
-       "commentpages-desc": "Pàggene de commende p'u namespace prengepàle",
-       "nstab-comments": "Commentatore"
-}
diff --git a/i18n/ru.json b/i18n/ru.json
deleted file mode 100644
index 05e7d27..0000000
--- a/i18n/ru.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Александр Сигачёв"
-               ]
-       },
-       "commentpages-desc": "Страницы комментариев для основного пространства 
имён",
-       "nstab-comments": "Примечание"
-}
diff --git a/i18n/rue.json b/i18n/rue.json
deleted file mode 100644
index 6605b4f..0000000
--- a/i18n/rue.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Gazeb"
-               ]
-       },
-       "nstab-comments": "Коментарь"
-}
diff --git a/i18n/sah.json b/i18n/sah.json
deleted file mode 100644
index 83602a1..0000000
--- a/i18n/sah.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "HalanTul"
-               ]
-       },
-       "commentpages-desc": "Сүрун аат далын быһаарыыларын (комментарийдарын) 
сирэйдэрэ",
-       "nstab-comments": "Быһаарыы"
-}
diff --git a/i18n/si.json b/i18n/si.json
deleted file mode 100644
index 13f99a0..0000000
--- a/i18n/si.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "පසිඳු කාවින්ද"
-               ]
-       },
-       "commentpages-desc": "ප්‍රධාන නාමඅවකාශය සඳහා පරිකථන පිටු",
-       "nstab-comments": "පරිකථාව"
-}
diff --git a/i18n/sk.json b/i18n/sk.json
deleted file mode 100644
index 5267300..0000000
--- a/i18n/sk.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Helix84"
-               ]
-       },
-       "commentpages-desc": "Diskusné stránky hlavného menného priestoru",
-       "nstab-comments": "Komentár"
-}
diff --git a/i18n/sl.json b/i18n/sl.json
deleted file mode 100644
index ce5feb1..0000000
--- a/i18n/sl.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Dbc334"
-               ]
-       },
-       "commentpages-desc": "Komentirajte strani v glavnem imenskem prostoru",
-       "nstab-comments": "Komentar"
-}
diff --git a/i18n/sr-ec.json b/i18n/sr-ec.json
deleted file mode 100644
index 9cabd0a..0000000
--- a/i18n/sr-ec.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Жељко Тодоровић",
-                       "Михајло Анђелковић"
-               ]
-       },
-       "commentpages-desc": "Коментарисање страница главног именског простора",
-       "nstab-comments": "Коментари"
-}
diff --git a/i18n/sr-el.json b/i18n/sr-el.json
deleted file mode 100644
index 5995faf..0000000
--- a/i18n/sr-el.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Michaello",
-                       "Жељко Тодоровић"
-               ]
-       },
-       "commentpages-desc": "Komentarisanje stranica glavnog imenskog 
prostora",
-       "nstab-comments": "Komentari"
-}
diff --git a/i18n/su.json b/i18n/su.json
deleted file mode 100644
index e379110..0000000
--- a/i18n/su.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Irwangatot"
-               ]
-       },
-       "commentpages-desc": "Koméntar kaca pikeun ngaranspasi utama",
-       "nstab-comments": "Koméntar"
-}
diff --git a/i18n/sv.json b/i18n/sv.json
deleted file mode 100644
index 52c4740..0000000
--- a/i18n/sv.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Lejonel"
-               ]
-       },
-       "commentpages-desc": "Lägger till kommentarsidor för sidor i 
huvudnamnrymden",
-       "nstab-comments": "Kommentarer"
-}
diff --git a/i18n/ta.json b/i18n/ta.json
deleted file mode 100644
index 33a565f..0000000
--- a/i18n/ta.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Shanmugamp7"
-               ]
-       },
-       "nstab-comments": "வர்ணனை"
-}
diff --git a/i18n/te.json b/i18n/te.json
deleted file mode 100644
index 17d163e..0000000
--- a/i18n/te.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Veeven",
-                       "వైజాసత్య"
-               ]
-       },
-       "commentpages-desc": "ప్రధాన నేంస్పేసులోని పేజీలకు చర్చా పేజీలు",
-       "nstab-comments": "వ్యాఖ్యానం"
-}
diff --git a/i18n/tg-cyrl.json b/i18n/tg-cyrl.json
deleted file mode 100644
index f855067..0000000
--- a/i18n/tg-cyrl.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Ibrahim"
-               ]
-       },
-       "nstab-comments": "Тафсир"
-}
diff --git a/i18n/tg-latn.json b/i18n/tg-latn.json
deleted file mode 100644
index 84be27c..0000000
--- a/i18n/tg-latn.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Liangent"
-               ]
-       },
-       "nstab-comments": "Tafsir"
-}
diff --git a/i18n/tl.json b/i18n/tl.json
deleted file mode 100644
index 47daba7..0000000
--- a/i18n/tl.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "AnakngAraw"
-               ]
-       },
-       "commentpages-desc": "Pahina ng mga puna para pangunang espasyo ng 
pangalan",
-       "nstab-comments": "Kumentaryo"
-}
diff --git a/i18n/tr.json b/i18n/tr.json
deleted file mode 100644
index 3a99ccb..0000000
--- a/i18n/tr.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Joseph",
-                       "Karduelis"
-               ]
-       },
-       "commentpages-desc": "Ana ad alanı için yorum sayfaları",
-       "nstab-comments": "Yorum"
-}
diff --git a/i18n/uk.json b/i18n/uk.json
deleted file mode 100644
index 627158f..0000000
--- a/i18n/uk.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Ahonc"
-               ]
-       },
-       "commentpages-desc": "Сторінки коментарів для основного простору назв",
-       "nstab-comments": "Коментар"
-}
diff --git a/i18n/ur.json b/i18n/ur.json
deleted file mode 100644
index ffcd326..0000000
--- a/i18n/ur.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "පසිඳු කාවින්ද"
-               ]
-       },
-       "nstab-comments": "شرح"
-}
diff --git a/i18n/uz.json b/i18n/uz.json
deleted file mode 100644
index 7b1bb53..0000000
--- a/i18n/uz.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Sociologist"
-               ]
-       },
-       "nstab-comments": "Izoh"
-}
diff --git a/i18n/vec.json b/i18n/vec.json
deleted file mode 100644
index e03f324..0000000
--- a/i18n/vec.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Candalua"
-               ]
-       },
-       "commentpages-desc": "Pàxene de comento par el namespace prinsipale",
-       "nstab-comments": "Comento"
-}
diff --git a/i18n/vep.json b/i18n/vep.json
deleted file mode 100644
index 0b76be1..0000000
--- a/i18n/vep.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Игорь Бродский"
-               ]
-       },
-       "commentpages-desc": "Kommentarijoiden lehtpoled pänimiavarusen täht",
-       "nstab-comments": "Kommentarii"
-}
diff --git a/i18n/vi.json b/i18n/vi.json
deleted file mode 100644
index 86a4b6f..0000000
--- a/i18n/vi.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Vinhtantran"
-               ]
-       },
-       "commentpages-desc": "Các trang bình luận cho không gian tên chính",
-       "nstab-comments": "Bình luận"
-}
diff --git a/i18n/vo.json b/i18n/vo.json
deleted file mode 100644
index bf23bba..0000000
--- a/i18n/vo.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Smeira"
-               ]
-       },
-       "commentpages-desc": "Küpetapads pro nemaspad cifik",
-       "nstab-comments": "Küpets"
-}
diff --git a/i18n/yi.json b/i18n/yi.json
deleted file mode 100644
index cc35bb2..0000000
--- a/i18n/yi.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "פוילישער"
-               ]
-       },
-       "nstab-comments": "קאמענטאַר"
-}
diff --git a/i18n/zh-hans.json b/i18n/zh-hans.json
deleted file mode 100644
index e0b4d3a..0000000
--- a/i18n/zh-hans.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "Chenxiaoqino",
-                       "PhiLiP",
-                       "Xiaomingyan"
-               ]
-       },
-       "commentpages-desc": "主名字空间的评论页",
-       "nstab-comments": "评论"
-}
diff --git a/i18n/zh-hant.json b/i18n/zh-hant.json
deleted file mode 100644
index 3a397a9..0000000
--- a/i18n/zh-hant.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-       "@metadata": {
-               "authors": [
-                       "LNDDYL"
-               ]
-       },
-       "commentpages-desc": "主命名空間的評論頁",
-       "nstab-comments": "注釋"
-}
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"
-  }
-}

-- 
To view, visit https://gerrit.wikimedia.org/r/389534
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I78e45af27303bb09e567810c624d118fd929869e
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/CommentPages
Gerrit-Branch: master
Gerrit-Owner: Umherirrender <[email protected]>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to