jenkins-bot has submitted this change and it was merged.

Change subject: Migrate to JSON i18n
......................................................................


Migrate to JSON i18n

Procedure per https://www.mediawiki.org/wiki/Manual:GenerateJsonI18n.php
with shim.

Change-Id: I5b344b529252da5c24e261d3cef3acafdbc14bf0
---
M PageImages.i18n.php
M PageImages.php
A i18n/ast.json
A i18n/be-tarask.json
A i18n/ce.json
A i18n/cs.json
A i18n/de.json
A i18n/dsb.json
A i18n/en.json
A i18n/es.json
A i18n/et.json
A i18n/fa.json
A i18n/fi.json
A i18n/fr.json
A i18n/gl.json
A i18n/he.json
A i18n/hsb.json
A i18n/ia.json
A i18n/ilo.json
A i18n/it.json
A i18n/ja.json
A i18n/ko.json
A i18n/ksh.json
A i18n/lb.json
A i18n/mk.json
A i18n/ml.json
A i18n/ms.json
A i18n/nb.json
A i18n/nl.json
A i18n/pl.json
A i18n/pms.json
A i18n/qqq.json
A i18n/roa-tara.json
A i18n/ru.json
A i18n/sco.json
A i18n/sv.json
A i18n/tl.json
A i18n/uk.json
A i18n/vi.json
A i18n/zh-hans.json
A i18n/zh-hant.json
41 files changed, 343 insertions(+), 276 deletions(-)

Approvals:
  Raimond Spekking: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/PageImages.i18n.php b/PageImages.i18n.php
index 053b49c..eeb2776 100644
--- a/PageImages.i18n.php
+++ b/PageImages.i18n.php
@@ -1,275 +1,31 @@
 <?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();
+$GLOBALS['wgHooks']['LocalisationCacheRecache'][] = function ( $cache, $code, 
&$cachedData ) {
+       $codeSequence = array_merge( array( $code ), 
$cachedData['fallbackSequence'] );
+       foreach ( $codeSequence as $csCode ) {
+               $fileName = __DIR__ . "/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'] );
+               }
 
-$messages['en'] = array (
-       'pageimages-desc' => 'Collects information about images used on page',
-       'pageimages-blacklist' => '', # do not translate or duplicate this 
message to other languages
-);
-
-/** Message documentation (Message documentation)
- * @author Shirayuki
- */
-$messages['qqq'] = array(
-       'pageimages-desc' => '{{desc|name=Page 
Images|url=http://www.mediawiki.org/wiki/Extension:PageImages}}',
-       'pageimages-blacklist' => 'List of images. They will never be selected 
as page images',
-);
-
-/** Asturian (asturianu)
- * @author Xuacu
- */
-$messages['ast'] = array(
-       'pageimages-desc' => "Recueye información de les imaxes que s'usen nuna 
páxina",
-);
-
-/** Belarusian (Taraškievica orthography) (беларуская (тарашкевіца)‎)
- * @author Wizardist
- */
-$messages['be-tarask'] = array(
-       'pageimages-desc' => 'Зьбірае зьвесткі пра выявы, выкарыстаныя на 
старонцы',
-);
-
-/** Chechen (нохчийн)
- * @author Умар
- */
-$messages['ce'] = array(
-       'pageimages-desc' => 'АгӀонашкахь лелина долу суьртийн хаам схьагулбо',
-);
-
-/** Czech (čeština)
- * @author Mormegil
- */
-$messages['cs'] = array(
-       'pageimages-desc' => 'Sbírá informace o obrázcích používaných na 
stránce',
-);
-
-/** German (Deutsch)
- * @author Kghbln
- */
-$messages['de'] = array(
-       'pageimages-desc' => 'Ermöglicht das Sammeln von Informationen zu 
Bildern, die sich auf einer Seite befinden',
-);
-
-/** Lower Sorbian (dolnoserbski)
- * @author Michawiki
- */
-$messages['dsb'] = array(
-       'pageimages-desc' => 'Zběra informacije wó wobrazach, kótarež su na 
boku',
-);
-
-/** Spanish (español)
- * @author Armando-Martin
- */
-$messages['es'] = array(
-       'pageimages-desc' => 'Recopila información sobre las imágenes 
utilizadas en la página',
-);
-
-/** Estonian (eesti)
- * @author Pikne
- */
-$messages['et'] = array(
-       'pageimages-desc' => 'Kogub teavet leheküljel kasutatud piltide kohta.',
-);
-
-/** Persian (فارسی)
- * @author Reza1615
- */
-$messages['fa'] = array(
-       'pageimages-desc' => 'جمع‌آوری اطلاعات درباره تصاویر مورد استفاده در 
صفحه',
-);
-
-/** Finnish (suomi)
- * @author VezonThunder
- */
-$messages['fi'] = array(
-       'pageimages-desc' => 'Kerää tietoa sivulla käytetyistä kuvista',
-);
-
-/** French (français)
- * @author DavidL
- */
-$messages['fr'] = array(
-       'pageimages-desc' => 'Recueille des informations sur les images 
utilisées sur les pages',
-);
-
-/** Galician (galego)
- * @author Toliño
- */
-$messages['gl'] = array(
-       'pageimages-desc' => 'Recolle información sobre as imaxes usadas nunha 
páxina',
-);
-
-/** Hebrew (עברית)
- * @author Amire80
- */
-$messages['he'] = array(
-       'pageimages-desc' => 'איסוף מידע על תמונות שמשמשות בדף',
-);
-
-/** Upper Sorbian (hornjoserbsce)
- * @author Michawiki
- */
-$messages['hsb'] = array(
-       'pageimages-desc' => 'Zběra informacije wo wobrazach, kotrež su na 
stronje',
-);
-
-/** Interlingua (interlingua)
- * @author McDutchie
- */
-$messages['ia'] = array(
-       'pageimages-desc' => 'Collige informationes sur le imagines usate in un 
pagina',
-);
-
-/** Iloko (Ilokano)
- * @author Lam-ang
- */
-$messages['ilo'] = array(
-       'pageimages-desc' => 'Agurnong kadagiti pakaammo a maipanggep kadagiti 
ladawan a naus-usar iti panid',
-);
-
-/** Italian (italiano)
- * @author Beta16
- */
-$messages['it'] = array(
-       'pageimages-desc' => 'Raccoglie informazioni sulle immagini utilizzate 
nella pagina',
-);
-
-/** Japanese (日本語)
- * @author Shirayuki
- */
-$messages['ja'] = array(
-       'pageimages-desc' => 'ページで使用されている画像についての情報を収集する',
-);
-
-/** Korean (한국어)
- * @author 아라
- */
-$messages['ko'] = array(
-       'pageimages-desc' => '문서에 쓰이는 그림에 대한 정보를 모읍니다',
-);
-
-/** Colognian (Ripoarisch)
- * @author Purodha
- */
-$messages['ksh'] = array(
-       'pageimages-desc' => 'Deiht Aanjabe sammelle övver Belder, di en Sigge 
jebruch wääde.',
-);
-
-/** Luxembourgish (Lëtzebuergesch)
- * @author Robby
- */
-$messages['lb'] = array(
-       'pageimages-desc' => 'Sammelt Informatiounen iwwer Biller déi op der 
Säit benotzt ginn',
-);
-
-/** Macedonian (македонски)
- * @author Bjankuloski06
- */
-$messages['mk'] = array(
-       'pageimages-desc' => 'Собира информации за сликите што се користат на 
дадена страница',
-);
-
-/** Malayalam (മലയാളം)
- * @author Praveenp
- */
-$messages['ml'] = array(
-       'pageimages-desc' => 'താളുകളിൽ ഉപയോഗിച്ചിരിക്കുന്ന ചിത്രങ്ങളുടെ വിവരം 
ശേഖരിക്കുന്നതിനുള്ള സൗകര്യം',
-);
-
-/** Malay (Bahasa Melayu)
- * @author Anakmalaysia
- */
-$messages['ms'] = array(
-       'pageimages-desc' => 'Mengumpul maklumat tentang gambar-gambar yang 
digunakan pada halaman',
-);
-
-/** Norwegian Bokmål (norsk bokmål)
- */
-$messages['nb'] = array(
-       'pageimages-desc' => 'Samler informasjon om bilder som brukes på siden',
-);
-
-/** Dutch (Nederlands)
- * @author AvatarTeam
- */
-$messages['nl'] = array(
-       'pageimages-desc' => 'Verzamelt informatie over afbeeldingen die worden 
gebruikt op de pagina',
-);
-
-/** Polish (polski)
- * @author Woytecr
- */
-$messages['pl'] = array(
-       'pageimages-desc' => 'Zbiera informacje o obrazach wykorzystywanych na 
stronie',
-);
-
-/** Piedmontese (Piemontèis)
- * @author Borichèt
- * @author Dragonòt
- */
-$messages['pms'] = array(
-       'pageimages-desc' => "A cheuj dj'anformassion a propòsit ëd le figure 
dovrà an sla pàgina",
-);
-
-/** tarandíne (tarandíne)
- * @author Joetaras
- */
-$messages['roa-tara'] = array(
-       'pageimages-desc' => "Collezzione 'mbormaziune sus a le immaggine 
ausate sus 'à pàgene",
-);
-
-/** Russian (русский)
- * @author Okras
- */
-$messages['ru'] = array(
-       'pageimages-desc' => 'Собирает информацию об изображениях, используемых 
на странице',
-);
-
-/** Scots (Scots)
- * @author John Reid
- */
-$messages['sco'] = array(
-       'pageimages-desc' => 'Collects information aneat eimages uised oan 
page',
-);
-
-/** Swedish (svenska)
- * @author Ainali
- */
-$messages['sv'] = array(
-       'pageimages-desc' => 'Samlar in information om bilder som används på 
sidan',
-);
-
-/** Tagalog (Tagalog)
- * @author AnakngAraw
- */
-$messages['tl'] = array(
-       'pageimages-desc' => 'Nagtitipon ng kabatiran patungkol sa mga larawang 
ginagamit sa ibabaw ng pahina',
-);
-
-/** Ukrainian (українська)
- * @author Base
- */
-$messages['uk'] = array(
-       'pageimages-desc' => 'Збирає сторінку про зображення, що 
використовуються на сторінці',
-);
-
-/** Vietnamese (Tiếng Việt)
- * @author Minh Nguyen
- */
-$messages['vi'] = array(
-       'pageimages-desc' => 'Thu tập thông tin về các hình ảnh trên trang',
-);
-
-/** Simplified Chinese (中文(简体)‎)
- * @author Yfdyh000
- */
-$messages['zh-hans'] = array(
-       'pageimages-desc' => '收集有关图像在页面上使用的信息',
-);
-
-/** Traditional Chinese (中文(繁體)‎)
- * @author Justincheng12345
- */
-$messages['zh-hant'] = array(
-       'pageimages-desc' => '收集有關頁面中圖像的資訊',
-);
+               $cachedData['deps'][] = new FileDependency( $fileName );
+       }
+       return true;
+};
diff --git a/PageImages.php b/PageImages.php
index 8bb9616..a988b33 100644
--- a/PageImages.php
+++ b/PageImages.php
@@ -14,11 +14,11 @@
        'url'            => 
'https://www.mediawiki.org/wiki/Extension:PageImages'
 );
 
-$dir = dirname( __FILE__ );
-$wgAutoloadClasses['ApiQueryPageImages'] = "$dir/ApiQueryPageImages.php";
-$wgAutoloadClasses['PageImages'] = "$dir/PageImages.body.php";
+$wgAutoloadClasses['ApiQueryPageImages'] = __DIR__ . "/ApiQueryPageImages.php";
+$wgAutoloadClasses['PageImages'] = __DIR__ . "/PageImages.body.php";
 
-$wgExtensionMessagesFiles['PageImages'] = "$dir/PageImages.i18n.php";
+$wgMessagesDirs['PageImages'] = __DIR__ . '/i18n';
+$wgExtensionMessagesFiles['PageImages'] = __DIR__ . "/PageImages.i18n.php";
 
 $wgHooks['ParserMakeImageParams'][] = 'PageImages::onParserMakeImageParams';
 $wgHooks['LinksUpdate'][] = 'PageImages::onLinksUpdate';
diff --git a/i18n/ast.json b/i18n/ast.json
new file mode 100644
index 0000000..3c84f34
--- /dev/null
+++ b/i18n/ast.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Xuacu"
+        ]
+    },
+    "pageimages-desc": "Recueye información de les imaxes que s'usen nuna 
páxina"
+}
\ No newline at end of file
diff --git a/i18n/be-tarask.json b/i18n/be-tarask.json
new file mode 100644
index 0000000..e08b66e
--- /dev/null
+++ b/i18n/be-tarask.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Wizardist"
+        ]
+    },
+    "pageimages-desc": "Зьбірае зьвесткі пра выявы, выкарыстаныя на старонцы"
+}
\ No newline at end of file
diff --git a/i18n/ce.json b/i18n/ce.json
new file mode 100644
index 0000000..91e5931
--- /dev/null
+++ b/i18n/ce.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Умар"
+        ]
+    },
+    "pageimages-desc": "АгӀонашкахь лелина долу суьртийн хаам схьагулбо"
+}
\ No newline at end of file
diff --git a/i18n/cs.json b/i18n/cs.json
new file mode 100644
index 0000000..520da39
--- /dev/null
+++ b/i18n/cs.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Mormegil"
+        ]
+    },
+    "pageimages-desc": "Sbírá informace o obrázcích používaných na stránce"
+}
\ No newline at end of file
diff --git a/i18n/de.json b/i18n/de.json
new file mode 100644
index 0000000..c4ef33d
--- /dev/null
+++ b/i18n/de.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Kghbln"
+        ]
+    },
+    "pageimages-desc": "Ermöglicht das Sammeln von Informationen zu Bildern, 
die sich auf einer Seite befinden"
+}
\ No newline at end of file
diff --git a/i18n/dsb.json b/i18n/dsb.json
new file mode 100644
index 0000000..30f4e0f
--- /dev/null
+++ b/i18n/dsb.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Michawiki"
+        ]
+    },
+    "pageimages-desc": "Zběra informacije wó wobrazach, kótarež su na boku"
+}
\ No newline at end of file
diff --git a/i18n/en.json b/i18n/en.json
new file mode 100644
index 0000000..27208db
--- /dev/null
+++ b/i18n/en.json
@@ -0,0 +1,7 @@
+{
+    "@metadata": {
+        "authors": []
+    },
+    "pageimages-desc": "Collects information about images used on page",
+    "pageimages-blacklist": ""
+}
\ No newline at end of file
diff --git a/i18n/es.json b/i18n/es.json
new file mode 100644
index 0000000..596b70b
--- /dev/null
+++ b/i18n/es.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Armando-Martin"
+        ]
+    },
+    "pageimages-desc": "Recopila información sobre las imágenes utilizadas en 
la página"
+}
\ No newline at end of file
diff --git a/i18n/et.json b/i18n/et.json
new file mode 100644
index 0000000..3c5c8a5
--- /dev/null
+++ b/i18n/et.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Pikne"
+        ]
+    },
+    "pageimages-desc": "Kogub teavet leheküljel kasutatud piltide kohta."
+}
\ No newline at end of file
diff --git a/i18n/fa.json b/i18n/fa.json
new file mode 100644
index 0000000..8432a21
--- /dev/null
+++ b/i18n/fa.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Reza1615"
+        ]
+    },
+    "pageimages-desc": "جمع‌آوری اطلاعات درباره تصاویر مورد استفاده در صفحه"
+}
\ No newline at end of file
diff --git a/i18n/fi.json b/i18n/fi.json
new file mode 100644
index 0000000..74d4472
--- /dev/null
+++ b/i18n/fi.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "VezonThunder"
+        ]
+    },
+    "pageimages-desc": "Kerää tietoa sivulla käytetyistä kuvista"
+}
\ No newline at end of file
diff --git a/i18n/fr.json b/i18n/fr.json
new file mode 100644
index 0000000..350f74d
--- /dev/null
+++ b/i18n/fr.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "DavidL"
+        ]
+    },
+    "pageimages-desc": "Recueille des informations sur les images utilisées 
sur les pages"
+}
\ No newline at end of file
diff --git a/i18n/gl.json b/i18n/gl.json
new file mode 100644
index 0000000..acc1fac
--- /dev/null
+++ b/i18n/gl.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Toliño"
+        ]
+    },
+    "pageimages-desc": "Recolle información sobre as imaxes usadas nunha 
páxina"
+}
\ No newline at end of file
diff --git a/i18n/he.json b/i18n/he.json
new file mode 100644
index 0000000..f501234
--- /dev/null
+++ b/i18n/he.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Amire80"
+        ]
+    },
+    "pageimages-desc": "איסוף מידע על תמונות שמשמשות בדף"
+}
\ No newline at end of file
diff --git a/i18n/hsb.json b/i18n/hsb.json
new file mode 100644
index 0000000..c3b2e4b
--- /dev/null
+++ b/i18n/hsb.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Michawiki"
+        ]
+    },
+    "pageimages-desc": "Zběra informacije wo wobrazach, kotrež su na stronje"
+}
\ No newline at end of file
diff --git a/i18n/ia.json b/i18n/ia.json
new file mode 100644
index 0000000..8ddcabb
--- /dev/null
+++ b/i18n/ia.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "McDutchie"
+        ]
+    },
+    "pageimages-desc": "Collige informationes sur le imagines usate in un 
pagina"
+}
\ No newline at end of file
diff --git a/i18n/ilo.json b/i18n/ilo.json
new file mode 100644
index 0000000..11720c3
--- /dev/null
+++ b/i18n/ilo.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Lam-ang"
+        ]
+    },
+    "pageimages-desc": "Agurnong kadagiti pakaammo a maipanggep kadagiti 
ladawan a naus-usar iti panid"
+}
\ No newline at end of file
diff --git a/i18n/it.json b/i18n/it.json
new file mode 100644
index 0000000..f647a2c
--- /dev/null
+++ b/i18n/it.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Beta16"
+        ]
+    },
+    "pageimages-desc": "Raccoglie informazioni sulle immagini utilizzate nella 
pagina"
+}
\ No newline at end of file
diff --git a/i18n/ja.json b/i18n/ja.json
new file mode 100644
index 0000000..872cea0
--- /dev/null
+++ b/i18n/ja.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Shirayuki"
+        ]
+    },
+    "pageimages-desc": "ページで使用されている画像についての情報を収集する"
+}
\ No newline at end of file
diff --git a/i18n/ko.json b/i18n/ko.json
new file mode 100644
index 0000000..a77c330
--- /dev/null
+++ b/i18n/ko.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "아라"
+        ]
+    },
+    "pageimages-desc": "문서에 쓰이는 그림에 대한 정보를 모읍니다"
+}
\ No newline at end of file
diff --git a/i18n/ksh.json b/i18n/ksh.json
new file mode 100644
index 0000000..d9e9952
--- /dev/null
+++ b/i18n/ksh.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Purodha"
+        ]
+    },
+    "pageimages-desc": "Deiht Aanjabe sammelle övver Belder, di en Sigge 
jebruch wääde."
+}
\ No newline at end of file
diff --git a/i18n/lb.json b/i18n/lb.json
new file mode 100644
index 0000000..5cee90d
--- /dev/null
+++ b/i18n/lb.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Robby"
+        ]
+    },
+    "pageimages-desc": "Sammelt Informatiounen iwwer Biller déi op der Säit 
benotzt ginn"
+}
\ No newline at end of file
diff --git a/i18n/mk.json b/i18n/mk.json
new file mode 100644
index 0000000..0bf1c2f
--- /dev/null
+++ b/i18n/mk.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Bjankuloski06"
+        ]
+    },
+    "pageimages-desc": "Собира информации за сликите што се користат на дадена 
страница"
+}
\ No newline at end of file
diff --git a/i18n/ml.json b/i18n/ml.json
new file mode 100644
index 0000000..31e98b1
--- /dev/null
+++ b/i18n/ml.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Praveenp"
+        ]
+    },
+    "pageimages-desc": "താളുകളിൽ ഉപയോഗിച്ചിരിക്കുന്ന ചിത്രങ്ങളുടെ വിവരം 
ശേഖരിക്കുന്നതിനുള്ള സൗകര്യം"
+}
\ No newline at end of file
diff --git a/i18n/ms.json b/i18n/ms.json
new file mode 100644
index 0000000..c71f462
--- /dev/null
+++ b/i18n/ms.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Anakmalaysia"
+        ]
+    },
+    "pageimages-desc": "Mengumpul maklumat tentang gambar-gambar yang 
digunakan pada halaman"
+}
\ No newline at end of file
diff --git a/i18n/nb.json b/i18n/nb.json
new file mode 100644
index 0000000..7576420
--- /dev/null
+++ b/i18n/nb.json
@@ -0,0 +1,6 @@
+{
+    "@metadata": {
+        "authors": []
+    },
+    "pageimages-desc": "Samler informasjon om bilder som brukes på siden"
+}
\ No newline at end of file
diff --git a/i18n/nl.json b/i18n/nl.json
new file mode 100644
index 0000000..2a5db63
--- /dev/null
+++ b/i18n/nl.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "AvatarTeam"
+        ]
+    },
+    "pageimages-desc": "Verzamelt informatie over afbeeldingen die worden 
gebruikt op de pagina"
+}
\ No newline at end of file
diff --git a/i18n/pl.json b/i18n/pl.json
new file mode 100644
index 0000000..2e2b4ad
--- /dev/null
+++ b/i18n/pl.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Woytecr"
+        ]
+    },
+    "pageimages-desc": "Zbiera informacje o obrazach wykorzystywanych na 
stronie"
+}
\ No newline at end of file
diff --git a/i18n/pms.json b/i18n/pms.json
new file mode 100644
index 0000000..4e66f41
--- /dev/null
+++ b/i18n/pms.json
@@ -0,0 +1,9 @@
+{
+    "@metadata": {
+        "authors": [
+            "Borichèt",
+            "Dragonòt"
+        ]
+    },
+    "pageimages-desc": "A cheuj dj'anformassion a propòsit ëd le figure dovrà 
an sla pàgina"
+}
\ No newline at end of file
diff --git a/i18n/qqq.json b/i18n/qqq.json
new file mode 100644
index 0000000..ead559f
--- /dev/null
+++ b/i18n/qqq.json
@@ -0,0 +1,9 @@
+{
+    "@metadata": {
+        "authors": [
+            "Shirayuki"
+        ]
+    },
+    "pageimages-desc": "{{desc|name=Page 
Images|url=http://www.mediawiki.org/wiki/Extension:PageImages}}";,
+    "pageimages-blacklist": "List of images. They will never be selected as 
page images"
+}
\ No newline at end of file
diff --git a/i18n/roa-tara.json b/i18n/roa-tara.json
new file mode 100644
index 0000000..1390fd0
--- /dev/null
+++ b/i18n/roa-tara.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Joetaras"
+        ]
+    },
+    "pageimages-desc": "Collezzione 'mbormaziune sus a le immaggine ausate sus 
'à pàgene"
+}
\ No newline at end of file
diff --git a/i18n/ru.json b/i18n/ru.json
new file mode 100644
index 0000000..2e0bbb3
--- /dev/null
+++ b/i18n/ru.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Okras"
+        ]
+    },
+    "pageimages-desc": "Собирает информацию об изображениях, используемых на 
странице"
+}
\ No newline at end of file
diff --git a/i18n/sco.json b/i18n/sco.json
new file mode 100644
index 0000000..c574814
--- /dev/null
+++ b/i18n/sco.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "John Reid"
+        ]
+    },
+    "pageimages-desc": "Collects information aneat eimages uised oan page"
+}
\ No newline at end of file
diff --git a/i18n/sv.json b/i18n/sv.json
new file mode 100644
index 0000000..0bbc59a
--- /dev/null
+++ b/i18n/sv.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Ainali"
+        ]
+    },
+    "pageimages-desc": "Samlar in information om bilder som används på sidan"
+}
\ No newline at end of file
diff --git a/i18n/tl.json b/i18n/tl.json
new file mode 100644
index 0000000..ada9019
--- /dev/null
+++ b/i18n/tl.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "AnakngAraw"
+        ]
+    },
+    "pageimages-desc": "Nagtitipon ng kabatiran patungkol sa mga larawang 
ginagamit sa ibabaw ng pahina"
+}
\ No newline at end of file
diff --git a/i18n/uk.json b/i18n/uk.json
new file mode 100644
index 0000000..71b85bb
--- /dev/null
+++ b/i18n/uk.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Base"
+        ]
+    },
+    "pageimages-desc": "Збирає сторінку про зображення, що використовуються на 
сторінці"
+}
\ No newline at end of file
diff --git a/i18n/vi.json b/i18n/vi.json
new file mode 100644
index 0000000..c3a337e
--- /dev/null
+++ b/i18n/vi.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Minh Nguyen"
+        ]
+    },
+    "pageimages-desc": "Thu tập thông tin về các hình ảnh trên trang"
+}
\ No newline at end of file
diff --git a/i18n/zh-hans.json b/i18n/zh-hans.json
new file mode 100644
index 0000000..e5c8a2c
--- /dev/null
+++ b/i18n/zh-hans.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Yfdyh000"
+        ]
+    },
+    "pageimages-desc": "收集有关图像在页面上使用的信息"
+}
\ No newline at end of file
diff --git a/i18n/zh-hant.json b/i18n/zh-hant.json
new file mode 100644
index 0000000..1d7907c
--- /dev/null
+++ b/i18n/zh-hant.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Justincheng12345"
+        ]
+    },
+    "pageimages-desc": "收集有關頁面中圖像的資訊"
+}
\ No newline at end of file

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I5b344b529252da5c24e261d3cef3acafdbc14bf0
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/PageImages
Gerrit-Branch: master
Gerrit-Owner: Siebrand <siebr...@kitano.nl>
Gerrit-Reviewer: Nikerabbit <niklas.laxst...@gmail.com>
Gerrit-Reviewer: Raimond Spekking <raimond.spekk...@gmail.com>
Gerrit-Reviewer: Reedy <re...@wikimedia.org>
Gerrit-Reviewer: jenkins-bot <>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to