Nikerabbit 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: Idf465fe9b68436a66d34e6252d4efb19c29f98e4
---
M HidePrefix.i18n.php
M HidePrefix.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/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/it.json
A i18n/ja.json
A i18n/ko.json
A i18n/ksh.json
A i18n/lb.json
A i18n/min.json
A i18n/mk.json
A i18n/nl.json
A i18n/pl.json
A i18n/pms.json
A i18n/pt-br.json
A i18n/qqq.json
A i18n/roa-tara.json
A i18n/ru.json
A i18n/te.json
A i18n/tl.json
A i18n/uk.json
A i18n/zh-hans.json
A i18n/zh-hant.json
36 files changed, 299 insertions(+), 243 deletions(-)

Approvals:
  Nikerabbit: Verified; Looks good to me, approved



diff --git a/HidePrefix.i18n.php b/HidePrefix.i18n.php
index 586b344..eeb2776 100644
--- a/HidePrefix.i18n.php
+++ b/HidePrefix.i18n.php
@@ -1,249 +1,31 @@
 <?php
 /**
- * Internationalisation for Hide Prefix extension
+ * This is a backwards-compatibility shim, generated by:
+ * 
https://git.wikimedia.org/blob/mediawiki%2Fcore.git/HEAD/maintenance%2FgenerateJsonI18n.php
  *
- * @file
- * @ingroup Extensions
+ * Beginning with MediaWiki 1.23, translation strings are stored in json files,
+ * and the EXTENSION.i18n.php file only exists to provide compatibility with
+ * older releases of MediaWiki. For more information about this migration, see:
+ * https://www.mediawiki.org/wiki/Requests_for_comment/Localisation_format
+ *
+ * This shim maintains compatibility back to MediaWiki 1.17.
  */
-
 $messages = array();
+$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'] );
+               }
 
-/** English
- * @author Van de Bugger
- */
-$messages['en'] = array(
-       'hideprefix-desc' => 'Hides prefix (namespace name) in links and page 
titles',
-);
-
-/** Message documentation (Message documentation)
- * @author Purodha
- * @author Shirayuki
- */
-$messages['qqq'] = array(
-       'hideprefix-desc' => '{{desc|name=Hide 
Prefix|url=http://www.mediawiki.org/wiki/Extension:HidePrefix}}',
-);
-
-/** Asturian (asturianu)
- * @author Xuacu
- */
-$messages['ast'] = array(
-       'hideprefix-desc' => "Anubre'l prefixu (el nome del espaciu de nomes) 
nos enllaces y nos títulos de les páxines",
-);
-
-/** Belarusian (Taraškievica orthography) (беларуская (тарашкевіца)‎)
- * @author Wizardist
- */
-$messages['be-tarask'] = array(
-       'hideprefix-desc' => 'Хавае прэфікс (прастору назваў) у спасылках і 
загалоўках старонак',
-);
-
-/** Chechen (нохчийн)
- * @author Умар
- */
-$messages['ce'] = array(
-       'hideprefix-desc' => 'АгӀонийн хьажорагашан а кортанашан а тӀера 
префикс дӀайоккху',
-);
-
-/** Czech (čeština)
- * @author Jezevec
- */
-$messages['cs'] = array(
-       'hideprefix-desc' => 'Skryje prefix (název prostoru) v odkazech a 
nadpisech stránek',
-);
-
-/** German (Deutsch)
- * @author Kghbln
- */
-$messages['de'] = array(
-       'hideprefix-desc' => 'Ermöglicht das Ausblenden des Namensraumprefix in 
Links und bei Seitennamen',
-);
-
-/** Lower Sorbian (dolnoserbski)
- * @author Michawiki
- */
-$messages['dsb'] = array(
-       'hideprefix-desc' => 'Chowa prefiks (mě mjenjowego ruma) w wótkazach a 
titelach bokow',
-);
-
-/** Spanish (español)
- * @author Armando-Martin
- */
-$messages['es'] = array(
-       'hideprefix-desc' => 'Oculta el prefijo (o nombre del espacio de 
nombres) en los enlaces y en los títulos de las páginas',
-);
-
-/** Persian (فارسی)
- * @author Armin1392
- * @author Ebraminio
- */
-$messages['fa'] = array(
-       'hideprefix-desc' => 'پنهان‌کردن پیشوند (نام فضای نامی) در پیوندها و 
عناوین صفحه',
-);
-
-/** Finnish (suomi)
- * @author Nedergard
- */
-$messages['fi'] = array(
-       'hideprefix-desc' => 'Piilottaa etuliitteen (nimiavaruuden nimen) 
linkeissä ja sivujen otsikoissa',
-);
-
-/** French (français)
- * @author DavidL
- */
-$messages['fr'] = array(
-       'hideprefix-desc' => 'Cacher le préfixe (espace de nom) dans les liens 
et les titres de pages',
-);
-
-/** Galician (galego)
- * @author Toliño
- */
-$messages['gl'] = array(
-       'hideprefix-desc' => 'Agocha o prefixo (o nome do espazo de nomes) nas 
ligazóns e nos títulos das páxinas',
-);
-
-/** Hebrew (עברית)
- * @author Amire80
- */
-$messages['he'] = array(
-       'hideprefix-desc' => 'הסתרת שם מרחב השמות בקישורים ובשמות דפים',
-);
-
-/** Upper Sorbian (hornjoserbsce)
- * @author Michawiki
- */
-$messages['hsb'] = array(
-       'hideprefix-desc' => 'Chowa prefiks (mjeno mjenoweho ruma) we wotkazach 
a titulach stronow',
-);
-
-/** Interlingua (interlingua)
- * @author McDutchie
- */
-$messages['ia'] = array(
-       'hideprefix-desc' => 'Celar le prefixo (le nomine del spatio de 
nomines) in ligamines e in titulos de pagina',
-);
-
-/** Italian (italiano)
- * @author Beta16
- */
-$messages['it'] = array(
-       'hideprefix-desc' => 'Nasconde il prefisso (nome del namespace) nei 
collegamenti e nei titoli delle pagine',
-);
-
-/** Japanese (日本語)
- * @author Shirayuki
- */
-$messages['ja'] = array(
-       'hideprefix-desc' => 'リンクとページ名の接頭辞 (名前空間名) を隠す',
-);
-
-/** Korean (한국어)
- * @author Freebiekr
- */
-$messages['ko'] = array(
-       'hideprefix-desc' => '링크와 문서 제목에서 접두사(이름공간 이름)를 숨깁니다.',
-);
-
-/** Colognian (Ripoarisch)
- * @author Purodha
- */
-$messages['ksh'] = array(
-       'hideprefix-desc' => 'Verschtisch de Vürsäz, also der Naamme vum 
Appachtemang, en Lengks un Siggetittelle.',
-);
-
-/** Luxembourgish (Lëtzebuergesch)
- * @author Robby
- */
-$messages['lb'] = array(
-       'hideprefix-desc' => 'Verstoppt de Prefix (Numm vum Nummraum) a Linken 
an Nimm vu Säiten',
-);
-
-/** Minangkabau (Baso Minangkabau)
- * @author Iwan Novirion
- */
-$messages['min'] = array(
-       'hideprefix-desc' => 'Suruakan awalan (namo ruang) pado pautan jo 
juldul laman',
-);
-
-/** Macedonian (македонски)
- * @author Bjankuloski06
- */
-$messages['mk'] = array(
-       'hideprefix-desc' => 'Го скрива префиксот (именскиот простор) во 
врските и насловите на страниците',
-);
-
-/** Dutch (Nederlands)
- * @author Siebrand
- */
-$messages['nl'] = array(
-       'hideprefix-desc' => 'Verbergt het voorvoegsel (de naamruimtenaam) in 
koppelingen en paginanamen',
-);
-
-/** Polish (polski)
- * @author BeginaFelicysym
- */
-$messages['pl'] = array(
-       'hideprefix-desc' => 'Ukrywa przedrostek (nazwę przestrzeni nazw) w 
linkach i tytułach',
-);
-
-/** Piedmontese (Piemontèis)
- * @author Borichèt
- * @author Dragonòt
- */
-$messages['pms'] = array(
-       'hideprefix-desc' => 'A stërma ël prefiss (spassi nominal) ant le liure 
e ant ij tìtoj ëd pàgine',
-);
-
-/** Brazilian Portuguese (português do Brasil)
- * @author Cainamarques
- */
-$messages['pt-br'] = array(
-       'hideprefix-desc' => 'Oculta o prefixo (nome do domínio) em ligações e 
títulos de páginas',
-);
-
-/** tarandíne (tarandíne)
- * @author Joetaras
- */
-$messages['roa-tara'] = array(
-       'hideprefix-desc' => "Scunne 'u prefisse (nome d'u namespace) jndr'à le 
collegaminde e le titole d'a pàgene",
-);
-
-/** Russian (русский)
- */
-$messages['ru'] = array(
-       'hideprefix-desc' => 'Убирает префикс из ссылок и заголовков страниц',
-);
-
-/** Telugu (తెలుగు)
- * @author Veeven
- */
-$messages['te'] = array(
-       'hideprefix-desc' => 'లంకెల లోనూ పేజీ శీర్షికల లోనూ మునుజేర్పుని 
(పేరుబరి పేరుని) దాచేస్తుంది',
-);
-
-/** Tagalog (Tagalog)
- * @author AnakngAraw
- */
-$messages['tl'] = array(
-       'hideprefix-desc' => 'Nagtatago ng unlapi (pangalan ng puwang na 
pampangalan) sa loob ng mga kawing at mga pamagat ng pahina',
-);
-
-/** Ukrainian (українська)
- * @author Base
- */
-$messages['uk'] = array(
-       'hideprefix-desc' => 'Приховує префікс (назву простору назв) у 
посиланнях та заголовках сторінок',
-);
-
-/** Simplified Chinese (中文(简体)‎)
- * @author Yfdyh000
- */
-$messages['zh-hans'] = array(
-       'hideprefix-desc' => '隐藏链接和页面标题中的前缀(命名空间)',
-);
-
-/** Traditional Chinese (中文(繁體)‎)
- * @author Justincheng12345
- */
-$messages['zh-hant'] = array(
-       'hideprefix-desc' => '隱藏連接及頁面標題中的前綴(名字空間)',
-);
+               $cachedData['deps'][] = new FileDependency( $fileName );
+       }
+       return true;
+};
diff --git a/HidePrefix.php b/HidePrefix.php
index 0ac94a6..bcbdab0 100644
--- a/HidePrefix.php
+++ b/HidePrefix.php
@@ -32,6 +32,7 @@
 $wgHooks[ 'BeforePageDisplay' ][] = 'HidePrefix::onBeforePageDisplay';
 
 global $wgExtensionMessagesFiles;
+$wgMessagesDirs['HidePrefix'] = __DIR__ . '/i18n';
 $wgExtensionMessagesFiles[ 'HidePrefix' ] = $extHidePrefixDir . 
'/HidePrefix.i18n.php';
 
 global $wgExtensionCredits;
diff --git a/i18n/ast.json b/i18n/ast.json
new file mode 100644
index 0000000..d23adb6
--- /dev/null
+++ b/i18n/ast.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Xuacu"
+        ]
+    },
+    "hideprefix-desc": "Anubre'l prefixu (el nome del espaciu de nomes) nos 
enllaces y nos títulos de les páxines"
+}
\ No newline at end of file
diff --git a/i18n/be-tarask.json b/i18n/be-tarask.json
new file mode 100644
index 0000000..1e8bea3
--- /dev/null
+++ b/i18n/be-tarask.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Wizardist"
+        ]
+    },
+    "hideprefix-desc": "Хавае прэфікс (прастору назваў) у спасылках і 
загалоўках старонак"
+}
\ No newline at end of file
diff --git a/i18n/ce.json b/i18n/ce.json
new file mode 100644
index 0000000..860efb9
--- /dev/null
+++ b/i18n/ce.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Умар"
+        ]
+    },
+    "hideprefix-desc": "АгӀонийн хьажорагашан а кортанашан а тӀера префикс 
дӀайоккху"
+}
\ No newline at end of file
diff --git a/i18n/cs.json b/i18n/cs.json
new file mode 100644
index 0000000..23414ac
--- /dev/null
+++ b/i18n/cs.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Jezevec"
+        ]
+    },
+    "hideprefix-desc": "Skryje prefix (název prostoru) v odkazech a nadpisech 
stránek"
+}
\ No newline at end of file
diff --git a/i18n/de.json b/i18n/de.json
new file mode 100644
index 0000000..4788d42
--- /dev/null
+++ b/i18n/de.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Kghbln"
+        ]
+    },
+    "hideprefix-desc": "Ermöglicht das Ausblenden des Namensraumprefix in 
Links und bei Seitennamen"
+}
\ No newline at end of file
diff --git a/i18n/dsb.json b/i18n/dsb.json
new file mode 100644
index 0000000..2f1ec42
--- /dev/null
+++ b/i18n/dsb.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Michawiki"
+        ]
+    },
+    "hideprefix-desc": "Chowa prefiks (mě mjenjowego ruma) w wótkazach a 
titelach bokow"
+}
\ No newline at end of file
diff --git a/i18n/en.json b/i18n/en.json
new file mode 100644
index 0000000..0786c32
--- /dev/null
+++ b/i18n/en.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Van de Bugger"
+        ]
+    },
+    "hideprefix-desc": "Hides prefix (namespace name) in links and page titles"
+}
\ No newline at end of file
diff --git a/i18n/es.json b/i18n/es.json
new file mode 100644
index 0000000..ffc5bf5
--- /dev/null
+++ b/i18n/es.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Armando-Martin"
+        ]
+    },
+    "hideprefix-desc": "Oculta el prefijo (o nombre del espacio de nombres) en 
los enlaces y en los títulos de las páginas"
+}
\ No newline at end of file
diff --git a/i18n/fa.json b/i18n/fa.json
new file mode 100644
index 0000000..81ede2f
--- /dev/null
+++ b/i18n/fa.json
@@ -0,0 +1,9 @@
+{
+    "@metadata": {
+        "authors": [
+            "Armin1392",
+            "Ebraminio"
+        ]
+    },
+    "hideprefix-desc": "پنهان‌کردن پیشوند (نام فضای نامی) در پیوندها و عناوین 
صفحه"
+}
\ No newline at end of file
diff --git a/i18n/fi.json b/i18n/fi.json
new file mode 100644
index 0000000..6b1a72d
--- /dev/null
+++ b/i18n/fi.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Nedergard"
+        ]
+    },
+    "hideprefix-desc": "Piilottaa etuliitteen (nimiavaruuden nimen) linkeissä 
ja sivujen otsikoissa"
+}
\ No newline at end of file
diff --git a/i18n/fr.json b/i18n/fr.json
new file mode 100644
index 0000000..386f950
--- /dev/null
+++ b/i18n/fr.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "DavidL"
+        ]
+    },
+    "hideprefix-desc": "Cacher le préfixe (espace de nom) dans les liens et 
les titres de pages"
+}
\ No newline at end of file
diff --git a/i18n/gl.json b/i18n/gl.json
new file mode 100644
index 0000000..1357386
--- /dev/null
+++ b/i18n/gl.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Toliño"
+        ]
+    },
+    "hideprefix-desc": "Agocha o prefixo (o nome do espazo de nomes) nas 
ligazóns e nos títulos das páxinas"
+}
\ No newline at end of file
diff --git a/i18n/he.json b/i18n/he.json
new file mode 100644
index 0000000..485b02c
--- /dev/null
+++ b/i18n/he.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Amire80"
+        ]
+    },
+    "hideprefix-desc": "הסתרת שם מרחב השמות בקישורים ובשמות דפים"
+}
\ No newline at end of file
diff --git a/i18n/hsb.json b/i18n/hsb.json
new file mode 100644
index 0000000..984dd23
--- /dev/null
+++ b/i18n/hsb.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Michawiki"
+        ]
+    },
+    "hideprefix-desc": "Chowa prefiks (mjeno mjenoweho ruma) we wotkazach a 
titulach stronow"
+}
\ No newline at end of file
diff --git a/i18n/ia.json b/i18n/ia.json
new file mode 100644
index 0000000..054ee77
--- /dev/null
+++ b/i18n/ia.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "McDutchie"
+        ]
+    },
+    "hideprefix-desc": "Celar le prefixo (le nomine del spatio de nomines) in 
ligamines e in titulos de pagina"
+}
\ No newline at end of file
diff --git a/i18n/it.json b/i18n/it.json
new file mode 100644
index 0000000..5010b42
--- /dev/null
+++ b/i18n/it.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Beta16"
+        ]
+    },
+    "hideprefix-desc": "Nasconde il prefisso (nome del namespace) nei 
collegamenti e nei titoli delle pagine"
+}
\ No newline at end of file
diff --git a/i18n/ja.json b/i18n/ja.json
new file mode 100644
index 0000000..473ffae
--- /dev/null
+++ b/i18n/ja.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Shirayuki"
+        ]
+    },
+    "hideprefix-desc": "リンクとページ名の接頭辞 (名前空間名) を隠す"
+}
\ No newline at end of file
diff --git a/i18n/ko.json b/i18n/ko.json
new file mode 100644
index 0000000..046a7a1
--- /dev/null
+++ b/i18n/ko.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Freebiekr"
+        ]
+    },
+    "hideprefix-desc": "링크와 문서 제목에서 접두사(이름공간 이름)를 숨깁니다."
+}
\ No newline at end of file
diff --git a/i18n/ksh.json b/i18n/ksh.json
new file mode 100644
index 0000000..257b466
--- /dev/null
+++ b/i18n/ksh.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Purodha"
+        ]
+    },
+    "hideprefix-desc": "Verschtisch de Vürsäz, also der Naamme vum 
Appachtemang, en Lengks un Siggetittelle."
+}
\ No newline at end of file
diff --git a/i18n/lb.json b/i18n/lb.json
new file mode 100644
index 0000000..f3cc07b
--- /dev/null
+++ b/i18n/lb.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Robby"
+        ]
+    },
+    "hideprefix-desc": "Verstoppt de Prefix (Numm vum Nummraum) a Linken an 
Nimm vu Säiten"
+}
\ No newline at end of file
diff --git a/i18n/min.json b/i18n/min.json
new file mode 100644
index 0000000..661e142
--- /dev/null
+++ b/i18n/min.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Iwan Novirion"
+        ]
+    },
+    "hideprefix-desc": "Suruakan awalan (namo ruang) pado pautan jo juldul 
laman"
+}
\ No newline at end of file
diff --git a/i18n/mk.json b/i18n/mk.json
new file mode 100644
index 0000000..11846b2
--- /dev/null
+++ b/i18n/mk.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Bjankuloski06"
+        ]
+    },
+    "hideprefix-desc": "Го скрива префиксот (именскиот простор) во врските и 
насловите на страниците"
+}
\ No newline at end of file
diff --git a/i18n/nl.json b/i18n/nl.json
new file mode 100644
index 0000000..7db782d
--- /dev/null
+++ b/i18n/nl.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Siebrand"
+        ]
+    },
+    "hideprefix-desc": "Verbergt het voorvoegsel (de naamruimtenaam) in 
koppelingen en paginanamen"
+}
\ No newline at end of file
diff --git a/i18n/pl.json b/i18n/pl.json
new file mode 100644
index 0000000..11dad78
--- /dev/null
+++ b/i18n/pl.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "BeginaFelicysym"
+        ]
+    },
+    "hideprefix-desc": "Ukrywa przedrostek (nazwę przestrzeni nazw) w linkach 
i tytułach"
+}
\ No newline at end of file
diff --git a/i18n/pms.json b/i18n/pms.json
new file mode 100644
index 0000000..26ec84d
--- /dev/null
+++ b/i18n/pms.json
@@ -0,0 +1,9 @@
+{
+    "@metadata": {
+        "authors": [
+            "Borichèt",
+            "Dragonòt"
+        ]
+    },
+    "hideprefix-desc": "A stërma ël prefiss (spassi nominal) ant le liure e 
ant ij tìtoj ëd pàgine"
+}
\ No newline at end of file
diff --git a/i18n/pt-br.json b/i18n/pt-br.json
new file mode 100644
index 0000000..92e448f
--- /dev/null
+++ b/i18n/pt-br.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Cainamarques"
+        ]
+    },
+    "hideprefix-desc": "Oculta o prefixo (nome do domínio) em ligações e 
títulos de páginas"
+}
\ No newline at end of file
diff --git a/i18n/qqq.json b/i18n/qqq.json
new file mode 100644
index 0000000..1b6d8a9
--- /dev/null
+++ b/i18n/qqq.json
@@ -0,0 +1,9 @@
+{
+    "@metadata": {
+        "authors": [
+            "Purodha",
+            "Shirayuki"
+        ]
+    },
+    "hideprefix-desc": "{{desc|name=Hide 
Prefix|url=http://www.mediawiki.org/wiki/Extension:HidePrefix}}";
+}
\ No newline at end of file
diff --git a/i18n/roa-tara.json b/i18n/roa-tara.json
new file mode 100644
index 0000000..e7128b9
--- /dev/null
+++ b/i18n/roa-tara.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Joetaras"
+        ]
+    },
+    "hideprefix-desc": "Scunne 'u prefisse (nome d'u namespace) jndr'à le 
collegaminde e le titole d'a pàgene"
+}
\ No newline at end of file
diff --git a/i18n/ru.json b/i18n/ru.json
new file mode 100644
index 0000000..3eeb684
--- /dev/null
+++ b/i18n/ru.json
@@ -0,0 +1,6 @@
+{
+    "@metadata": {
+        "authors": []
+    },
+    "hideprefix-desc": "Убирает префикс из ссылок и заголовков страниц"
+}
\ No newline at end of file
diff --git a/i18n/te.json b/i18n/te.json
new file mode 100644
index 0000000..b740c07
--- /dev/null
+++ b/i18n/te.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Veeven"
+        ]
+    },
+    "hideprefix-desc": "లంకెల లోనూ పేజీ శీర్షికల లోనూ మునుజేర్పుని (పేరుబరి 
పేరుని) దాచేస్తుంది"
+}
\ No newline at end of file
diff --git a/i18n/tl.json b/i18n/tl.json
new file mode 100644
index 0000000..41d298b
--- /dev/null
+++ b/i18n/tl.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "AnakngAraw"
+        ]
+    },
+    "hideprefix-desc": "Nagtatago ng unlapi (pangalan ng puwang na 
pampangalan) sa loob ng mga kawing at mga pamagat ng pahina"
+}
\ No newline at end of file
diff --git a/i18n/uk.json b/i18n/uk.json
new file mode 100644
index 0000000..05e3cbe
--- /dev/null
+++ b/i18n/uk.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Base"
+        ]
+    },
+    "hideprefix-desc": "Приховує префікс (назву простору назв) у посиланнях та 
заголовках сторінок"
+}
\ No newline at end of file
diff --git a/i18n/zh-hans.json b/i18n/zh-hans.json
new file mode 100644
index 0000000..de92e91
--- /dev/null
+++ b/i18n/zh-hans.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Yfdyh000"
+        ]
+    },
+    "hideprefix-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..06884b7
--- /dev/null
+++ b/i18n/zh-hant.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Justincheng12345"
+        ]
+    },
+    "hideprefix-desc": "隱藏連接及頁面標題中的前綴(名字空間)"
+}
\ No newline at end of file

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Idf465fe9b68436a66d34e6252d4efb19c29f98e4
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/HidePrefix
Gerrit-Branch: master
Gerrit-Owner: Siebrand <siebr...@kitano.nl>
Gerrit-Reviewer: Nikerabbit <niklas.laxst...@gmail.com>

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

Reply via email to