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: I88036e5a47e1ff79cdaccdc3c660ad6659fdf062
---
M CustomUserSignup.i18n.php
M CustomUserSignup.php
A i18n/af.json
A i18n/ar.json
A i18n/ast.json
A i18n/be-tarask.json
A i18n/br.json
A i18n/bs.json
A i18n/cs.json
A i18n/de.json
A i18n/dsb.json
A i18n/el.json
A i18n/en.json
A i18n/eo.json
A i18n/es.json
A i18n/fa.json
A i18n/fi.json
A i18n/fr.json
A i18n/frp.json
A i18n/gl.json
A i18n/gsw.json
A i18n/he.json
A i18n/hi.json
A i18n/hsb.json
A i18n/ia.json
A i18n/id.json
A i18n/it.json
A i18n/ja.json
A i18n/ko.json
A i18n/ksh.json
A i18n/lb.json
A i18n/map-bms.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/pt-br.json
A i18n/pt.json
A i18n/qqq.json
A i18n/ro.json
A i18n/roa-tara.json
A i18n/ru.json
A i18n/rue.json
A i18n/sk.json
A i18n/sl.json
A i18n/sr-ec.json
A i18n/tl.json
A i18n/uk.json
A i18n/vi.json
A i18n/zh-hans.json
A i18n/zh-hant.json
54 files changed, 448 insertions(+), 376 deletions(-)

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



diff --git a/CustomUserSignup.i18n.php b/CustomUserSignup.i18n.php
index 199d461..eeb2776 100644
--- a/CustomUserSignup.i18n.php
+++ b/CustomUserSignup.i18n.php
@@ -1,379 +1,31 @@
 <?php
 /**
- * Internationalization file for the CustomUserSignup 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 Nimish Gautam
- */
-$messages['en'] = array(
-       'customusersignup' => 'Custom User Signup',
-       'customusersignup-desc' => 'Allows for customizable messages during the 
account creation process',
-);
-
-/** Message documentation (Message documentation)
- * @author Purodha
- */
-$messages['qqq'] = array(
-       'customusersignup-desc' => '{{desc}}',
-);
-
-/** Afrikaans (Afrikaans)
- * @author පසිඳු කාවින්ද
- */
-$messages['af'] = array(
-       'customusersignup-desc' => 'Laat aanpas boodskappe tydens die rekening 
te skep',
-);
-
-/** Arabic (العربية)
- * @author Ciphers
- */
-$messages['ar'] = array(
-       'customusersignup-desc' => 'ويسمح للرسائل المخصصة أثناء عملية إنشاء 
الحساب',
-);
-
-/** Asturian (asturianu)
- * @author Xuacu
- */
-$messages['ast'] = array(
-       'customusersignup-desc' => 'Permite personalizar los mensaxes nel 
procesu de creación de cuentes',
-);
-
-/** Belarusian (Taraškievica orthography) (‪беларуская (тарашкевіца)‬)
- * @author EugeneZelenko
- */
-$messages['be-tarask'] = array(
-       'customusersignup-desc' => 'Дазваляе нестандартныя паведамленьні падчас 
працэсу стварэньня рахунку',
-);
-
-/** Breton (brezhoneg)
- * @author Fulup
- */
-$messages['br'] = array(
-       'customusersignup-desc' => 'Aotren a ra lakaat kemennadennoù a bep 
seurt pa vez krouet kontoù',
-);
-
-/** Bosnian (bosanski)
- * @author CERminator
- */
-$messages['bs'] = array(
-       'customusersignup-desc' => 'Omogućava podešavanje poruka tokom procesa 
pravljenja računa',
-);
-
-/** Czech (česky)
- * @author Mormegil
- */
-$messages['cs'] = array(
-       'customusersignup-desc' => 'Poskytuje přizpůsobitelné zprávy při 
zakládání účtu',
-);
-
-/** German (Deutsch)
- * @author Kghbln
- */
-$messages['de'] = array(
-       'customusersignup-desc' => 'Ermöglicht die Ausgabe angepasster 
Benutzernachrichten im Verlauf der Benutzerkontenerstellung',
-);
-
-/** Lower Sorbian (dolnoserbski)
- * @author Michawiki
- */
-$messages['dsb'] = array(
-       'customusersignup-desc' => 'Zmóžnja pśiměrjobne powěźeńki pśi załoženju 
wužywarskego konta',
-);
-
-/** Greek (Ελληνικά)
- * @author Glavkos
- */
-$messages['el'] = array(
-       'customusersignup-desc' => 'Επιτρέπει την δυνατότητα προσαρμόσιμων 
μηνυμάτων κατά τη διαδικασία δημιουργίας λογαριασμού',
-);
-
-/** Esperanto (Esperanto)
- * @author Yekrats
- */
-$messages['eo'] = array(
-       'customusersignup-desc' => 'Ebligas por memfaritaj mesaĝoj dum la 
kreada procedo de kontoj',
-);
-
-/** Spanish (español)
- * @author Fitoschido
- */
-$messages['es'] = array(
-       'customusersignup-desc' => 'Permite mensajes personalizados durante el 
proceso de creación de cuentas',
-);
-
-/** Persian (فارسی)
- * @author Mjbmr
- */
-$messages['fa'] = array(
-       'customusersignup-desc' => 'اجازه به پیام‌های قابل سفارشی کردن را در طی 
روند ایجاد حساب کاربری می‌هد',
-);
-
-/** Finnish (suomi)
- * @author Crt
- * @author Olli
- */
-$messages['fi'] = array(
-       'customusersignup-desc' => 'Mahdollistaa mukautettujen viestien 
näyttämisen tunnuksen luomisprosessin aikana.',
-);
-
-/** French (français)
- * @author IAlex
- */
-$messages['fr'] = array(
-       'customusersignup-desc' => 'Permet des messages variés au cours du 
processus de création de compte',
-);
-
-/** Franco-Provençal (arpetan)
- * @author ChrisPtDe
- */
-$messages['frp'] = array(
-       'customusersignup-desc' => 'Pèrmèt des mèssâjos variâs pendent la 
mètoda de crèacion de compto.',
-);
-
-/** Galician (galego)
- * @author Toliño
- */
-$messages['gl'] = array(
-       'customusersignup-desc' => 'Permite mensaxes personalizables durante o 
proceso de creación de contas',
-);
-
-/** Swiss German (Alemannisch)
- * @author Als-Holder
- */
-$messages['gsw'] = array(
-       'customusersignup-desc' => 'Macht d Uusgab vu aapasste Benutzernorichte 
megli im Verlauf vum Aalege vum Benutzerkonto',
-);
-
-/** Hebrew (עברית)
- * @author Amire80
- */
-$messages['he'] = array(
-       'customusersignup-desc' => 'לאפשר הודעות מותאמות אישית בזמן תהליך יצירת 
חשבון',
-);
-
-/** Hindi (हिन्दी)
- * @author Vibhijain
- */
-$messages['hi'] = array(
-       'customusersignup-desc' => 'खाता निर्माण प्रक्रिया के दौरान अनुकूलन 
संदेश के लिए अनुमति देता है',
-);
-
-/** Upper Sorbian (hornjoserbsce)
- * @author Michawiki
- */
-$messages['hsb'] = array(
-       'customusersignup-desc' => 'Zmóžnja přiměrjomne zdźělenki při załoženju 
wužiwarskeho konta',
-);
-
-/** Interlingua (interlingua)
- * @author McDutchie
- */
-$messages['ia'] = array(
-       'customusersignup-desc' => 'Permitter messages personalisabile durante 
le processo de creation de contos',
-);
-
-/** Indonesian (Bahasa Indonesia)
- * @author IvanLanin
- */
-$messages['id'] = array(
-       'customusersignup-desc' => 'Menyediakan pesan terkustomisasi saat 
proses pembuatan akun',
-);
-
-/** Italian (italiano)
- * @author Beta16
- */
-$messages['it'] = array(
-       'customusersignup-desc' => "Permette i messaggi personalizzati durante 
il processo di creazione dell'account",
-);
-
-/** Japanese (日本語)
- * @author Schu
- * @author Shirayuki
- */
-$messages['ja'] = array(
-       'customusersignup-desc' => 'アカウント作成の過程に、カスタマイズ可能なメッセージを使用できるようにする',
-);
-
-/** Korean (한국어)
- * @author Kwj2772
- * @author 아라
- */
-$messages['ko'] = array(
-       'customusersignup-desc' => '계정 만들기 과정에서의 메시지를 따로 정할 수 있게 함',
-);
-
-/** Colognian (Ripoarisch)
- * @author Purodha
- */
-$messages['ksh'] = array(
-       'customusersignup-desc' => 'Määt ennstellbaa Antwoote un Nohreeschte 
müjjelesch derwiel enem neue Metmaacher singe Zohjang zom Wiki aanjelaat weed.',
-);
-
-/** Luxembourgish (Lëtzebuergesch)
- * @author Robby
- */
-$messages['lb'] = array(
-       'customusersignup-desc' => 'Erméiglecht ugepasste Benotzermessagen 
während dem Opmaache vun engem Benotzerkont ze benotzen',
-);
-
-/** Basa Banyumasan (Basa Banyumasan)
- * @author StefanusRA
- */
-$messages['map-bms'] = array(
-       'customusersignup-desc' => 'Nyediakna pesen sing di-kustomisasi nggo 
pas lagi proses nggawe akun',
-);
-
-/** Macedonian (македонски)
- * @author Bjankuloski06
- */
-$messages['mk'] = array(
-       'customusersignup-desc' => 'Дава можност за приказ ан прилагодливи 
пораки во текот на создавањето на сметки',
-);
-
-/** Malayalam (മലയാളം)
- * @author Praveenp
- */
-$messages['ml'] = array(
-       'customusersignup-desc' => 'അംഗത്വ സൃഷ്ടി പ്രക്രിയക്കിടയിൽ 
ക്രമീകരിക്കാവുന്ന സന്ദേശങ്ങൾ അനുവദിക്കുക',
-);
-
-/** Malay (Bahasa Melayu)
- * @author Anakmalaysia
- */
-$messages['ms'] = array(
-       'customusersignup-desc' => 'Membolehkan mesej yang boleh diubahsuai 
ketika proses pembukaan akaun',
-);
-
-/** Norwegian Bokmål (‪norsk (bokmål)‬)
- * @author Event
- */
-$messages['nb'] = array(
-       'customusersignup-desc' => 'Tillater brukertilpassede meldinger under 
opprettelsen av brukerkontoer',
-);
-
-/** Dutch (Nederlands)
- * @author Siebrand
- */
-$messages['nl'] = array(
-       'customusersignup-desc' => 'Maakt het mogelijk aangepaste berichten 
weer te geven tijdens het aanmaken van gebruikers',
-);
-
-/** Polish (polski)
- * @author Sp5uhe
- */
-$messages['pl'] = array(
-       'customusersignup-desc' => 'Pozwala na dostosowanie wiadomości w 
trakcie tworzenia konta',
-);
-
-/** Piedmontese (Piemontèis)
- * @author Borichèt
- * @author Dragonòt
- */
-$messages['pms'] = array(
-       'customusersignup-desc' => 'A përmët ëd përsonalisé ij mëssagi an mente 
dël process ëd creassion dël cont',
-);
-
-/** Portuguese (português)
- * @author Hamilton Abreu
- */
-$messages['pt'] = array(
-       'customusersignup-desc' => 'Permite apresentar mensagens personalizadas 
durante o processo de criação de conta',
-);
-
-/** Brazilian Portuguese (português do Brasil)
- * @author Giro720
- */
-$messages['pt-br'] = array(
-       'customusersignup-desc' => 'Permite apresentar mensagens personalizadas 
durante o processo de criação de conta',
-);
-
-/** Romanian (română)
- * @author Firilacroco
- */
-$messages['ro'] = array(
-       'customusersignup-desc' => 'Permite personalizarea mesajelor în timpul 
procesului de crearea a contului',
-);
-
-/** tarandíne (tarandíne)
- * @author Joetaras
- */
-$messages['roa-tara'] = array(
-       'customusersignup-desc' => "Permette de fa messagge personalizzate 
duranne 'u processe de ccrejazione d'u cunde utende",
-);
-
-/** Russian (русский)
- * @author Александр Сигачёв
- */
-$messages['ru'] = array(
-       'customusersignup-desc' => 'Включает настраиваемые сообщения в процессе 
создания учётной записи',
-);
-
-/** Rusyn (русиньскый)
- * @author Gazeb
- */
-$messages['rue'] = array(
-       'customusersignup-desc' => 'Забезпечує присбособительны повідомлїня 
почас створїня конта',
-);
-
-/** Slovak (slovenčina)
- * @author Helix84
- */
-$messages['sk'] = array(
-       'customusersignup-desc' => 'Umožňuje prispôsobovať správy pri vytváraní 
účtu',
-);
-
-/** Slovenian (slovenščina)
- * @author Dbc334
- */
-$messages['sl'] = array(
-       'customusersignup-desc' => 'Omogoča prilagodljiva sporočila med 
postopkom ustvarjanja računa',
-);
-
-/** Serbian (Cyrillic script) (‪српски (ћирилица)‬)
- * @author Rancher
- */
-$messages['sr-ec'] = array(
-       'customusersignup-desc' => 'Даје могућност за приказ прилагодљивих 
порука у току отварања налога',
-);
-
-/** Tagalog (Tagalog)
- * @author AnakngAraw
- */
-$messages['tl'] = array(
-       'customusersignup-desc' => 'Nagpapahintulot ng mga mensaheng 
mapapasadya habang isinasagawa ang paglikha ng akawnt',
-);
-
-/** Ukrainian (українська)
- * @author Dim Grits
- */
-$messages['uk'] = array(
-       'customusersignup-desc' => 'Дозволяє настроювані повідомлення в процесі 
створення облікового запису',
-);
-
-/** Vietnamese (Tiếng Việt)
- * @author Minh Nguyen
- */
-$messages['vi'] = array(
-       'customusersignup-desc' => 'Cho phép tùy biến các thông điệp trong quá 
trình mở tài khoản',
-);
-
-/** Simplified Chinese (‪中文(简体)‬)
- * @author 阿pp
- */
-$messages['zh-hans'] = array(
-       'customusersignup-desc' => '允许在邮件帐户创建过程中自定义消息',
-);
-
-/** Traditional Chinese (‪中文(繁體)‬)
- * @author Anakmalaysia
- */
-$messages['zh-hant'] = array(
-       'customusersignup-desc' => '允許在郵件帳戶創建過程中自定義消息',
-);
-
+               $cachedData['deps'][] = new FileDependency( $fileName );
+       }
+       return true;
+};
diff --git a/CustomUserSignup.php b/CustomUserSignup.php
index f0b276f..186675d 100644
--- a/CustomUserSignup.php
+++ b/CustomUserSignup.php
@@ -5,7 +5,6 @@
  *
  * @file
  * @ingroup Extensions
- * @version 0.1.0
  * @author Nimish Gautam
  * @link http://www.mediawiki.org/wiki/Extension:CustomUserSignup Documentation
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 
2.0 or later
@@ -20,7 +19,7 @@
        'path' => __FILE__,
        'name' => 'CustomUserSignup',
        'author' => 'Nimish Gautam',
-       'version' => '0.1.0',
+       'version' => '0.2.0',
        'descriptionmsg' => 'customusersignup-desc',
        'url' => 'https://www.mediawiki.org/wiki/Extension:CustomUserSignup'
 );
@@ -30,6 +29,7 @@
 $wgAutoloadClasses['CustomUserSignupHooks'] = $dir . 
'CustomUserSignup.hooks.php';
 $wgAutoloadClasses['CustomUserloginTemplate'] = $dir . 
'CustomUserTemplate.php';
 $wgAutoloadClasses['CustomUsercreateTemplate'] = $dir . 
'CustomUserTemplate.php';
+$wgMessagesDirs['CustomUserSignup'] = __DIR__ . '/i18n';
 $wgExtensionMessagesFiles['CustomUserSignup'] = $dir . 
'CustomUserSignup.i18n.php';
 
 // Hooks
@@ -50,4 +50,3 @@
 if ( class_exists( 'ClickTrackingHooks' ) ) {
        ClickTrackingHooks::addCampaign($dir. 'modules', 
'CustomUserSignup/modules', 'AccountCreationUserBucket' );
 }
-
diff --git a/i18n/af.json b/i18n/af.json
new file mode 100644
index 0000000..2c3918a
--- /dev/null
+++ b/i18n/af.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "පසිඳු කාවින්ද"
+        ]
+    },
+    "customusersignup-desc": "Laat aanpas boodskappe tydens die rekening te 
skep"
+}
\ No newline at end of file
diff --git a/i18n/ar.json b/i18n/ar.json
new file mode 100644
index 0000000..dc003b9
--- /dev/null
+++ b/i18n/ar.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Ciphers"
+        ]
+    },
+    "customusersignup-desc": "ويسمح للرسائل المخصصة أثناء عملية إنشاء الحساب"
+}
\ No newline at end of file
diff --git a/i18n/ast.json b/i18n/ast.json
new file mode 100644
index 0000000..50f0652
--- /dev/null
+++ b/i18n/ast.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Xuacu"
+        ]
+    },
+    "customusersignup-desc": "Permite personalizar los mensaxes nel procesu de 
creación de cuentes"
+}
\ No newline at end of file
diff --git a/i18n/be-tarask.json b/i18n/be-tarask.json
new file mode 100644
index 0000000..5507680
--- /dev/null
+++ b/i18n/be-tarask.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "EugeneZelenko"
+        ]
+    },
+    "customusersignup-desc": "Дазваляе нестандартныя паведамленьні падчас 
працэсу стварэньня рахунку"
+}
\ No newline at end of file
diff --git a/i18n/br.json b/i18n/br.json
new file mode 100644
index 0000000..01a4c97
--- /dev/null
+++ b/i18n/br.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Fulup"
+        ]
+    },
+    "customusersignup-desc": "Aotren a ra lakaat kemennadennoù a bep seurt pa 
vez krouet kontoù"
+}
\ No newline at end of file
diff --git a/i18n/bs.json b/i18n/bs.json
new file mode 100644
index 0000000..7be4d1c
--- /dev/null
+++ b/i18n/bs.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "CERminator"
+        ]
+    },
+    "customusersignup-desc": "Omogućava podešavanje poruka tokom procesa 
pravljenja računa"
+}
\ No newline at end of file
diff --git a/i18n/cs.json b/i18n/cs.json
new file mode 100644
index 0000000..23adec4
--- /dev/null
+++ b/i18n/cs.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Mormegil"
+        ]
+    },
+    "customusersignup-desc": "Poskytuje přizpůsobitelné zprávy při zakládání 
účtu"
+}
\ No newline at end of file
diff --git a/i18n/de.json b/i18n/de.json
new file mode 100644
index 0000000..6f50b9f
--- /dev/null
+++ b/i18n/de.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Kghbln"
+        ]
+    },
+    "customusersignup-desc": "Ermöglicht die Ausgabe angepasster 
Benutzernachrichten im Verlauf der Benutzerkontenerstellung"
+}
\ No newline at end of file
diff --git a/i18n/dsb.json b/i18n/dsb.json
new file mode 100644
index 0000000..5ec37f8
--- /dev/null
+++ b/i18n/dsb.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Michawiki"
+        ]
+    },
+    "customusersignup-desc": "Zmóžnja pśiměrjobne powěźeńki pśi załoženju 
wužywarskego konta"
+}
\ No newline at end of file
diff --git a/i18n/el.json b/i18n/el.json
new file mode 100644
index 0000000..c83c3e3
--- /dev/null
+++ b/i18n/el.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Glavkos"
+        ]
+    },
+    "customusersignup-desc": "Επιτρέπει την δυνατότητα προσαρμόσιμων μηνυμάτων 
κατά τη διαδικασία δημιουργίας λογαριασμού"
+}
\ No newline at end of file
diff --git a/i18n/en.json b/i18n/en.json
new file mode 100644
index 0000000..bd53c33
--- /dev/null
+++ b/i18n/en.json
@@ -0,0 +1,9 @@
+{
+    "@metadata": {
+        "authors": [
+            "Nimish Gautam"
+        ]
+    },
+    "customusersignup": "Custom User Signup",
+    "customusersignup-desc": "Allows for customizable messages during the 
account creation process"
+}
\ No newline at end of file
diff --git a/i18n/eo.json b/i18n/eo.json
new file mode 100644
index 0000000..5a8588d
--- /dev/null
+++ b/i18n/eo.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Yekrats"
+        ]
+    },
+    "customusersignup-desc": "Ebligas por memfaritaj mesaĝoj dum la kreada 
procedo de kontoj"
+}
\ No newline at end of file
diff --git a/i18n/es.json b/i18n/es.json
new file mode 100644
index 0000000..37c819b
--- /dev/null
+++ b/i18n/es.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Fitoschido"
+        ]
+    },
+    "customusersignup-desc": "Permite mensajes personalizados durante el 
proceso de creación de cuentas"
+}
\ No newline at end of file
diff --git a/i18n/fa.json b/i18n/fa.json
new file mode 100644
index 0000000..7ef5af5
--- /dev/null
+++ b/i18n/fa.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Mjbmr"
+        ]
+    },
+    "customusersignup-desc": "اجازه به پیام‌های قابل سفارشی کردن را در طی روند 
ایجاد حساب کاربری می‌هد"
+}
\ No newline at end of file
diff --git a/i18n/fi.json b/i18n/fi.json
new file mode 100644
index 0000000..1a93866
--- /dev/null
+++ b/i18n/fi.json
@@ -0,0 +1,9 @@
+{
+    "@metadata": {
+        "authors": [
+            "Crt",
+            "Olli"
+        ]
+    },
+    "customusersignup-desc": "Mahdollistaa mukautettujen viestien näyttämisen 
tunnuksen luomisprosessin aikana."
+}
\ No newline at end of file
diff --git a/i18n/fr.json b/i18n/fr.json
new file mode 100644
index 0000000..c119405
--- /dev/null
+++ b/i18n/fr.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "IAlex"
+        ]
+    },
+    "customusersignup-desc": "Permet des messages variés au cours du processus 
de création de compte"
+}
\ No newline at end of file
diff --git a/i18n/frp.json b/i18n/frp.json
new file mode 100644
index 0000000..440b5f3
--- /dev/null
+++ b/i18n/frp.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "ChrisPtDe"
+        ]
+    },
+    "customusersignup-desc": "Pèrmèt des mèssâjos variâs pendent la mètoda de 
crèacion de compto."
+}
\ No newline at end of file
diff --git a/i18n/gl.json b/i18n/gl.json
new file mode 100644
index 0000000..786d329
--- /dev/null
+++ b/i18n/gl.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Toliño"
+        ]
+    },
+    "customusersignup-desc": "Permite mensaxes personalizables durante o 
proceso de creación de contas"
+}
\ No newline at end of file
diff --git a/i18n/gsw.json b/i18n/gsw.json
new file mode 100644
index 0000000..fd991e9
--- /dev/null
+++ b/i18n/gsw.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Als-Holder"
+        ]
+    },
+    "customusersignup-desc": "Macht d Uusgab vu aapasste Benutzernorichte 
megli im Verlauf vum Aalege vum Benutzerkonto"
+}
\ No newline at end of file
diff --git a/i18n/he.json b/i18n/he.json
new file mode 100644
index 0000000..9bdac58
--- /dev/null
+++ b/i18n/he.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Amire80"
+        ]
+    },
+    "customusersignup-desc": "לאפשר הודעות מותאמות אישית בזמן תהליך יצירת 
חשבון"
+}
\ No newline at end of file
diff --git a/i18n/hi.json b/i18n/hi.json
new file mode 100644
index 0000000..34d8b30
--- /dev/null
+++ b/i18n/hi.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Vibhijain"
+        ]
+    },
+    "customusersignup-desc": "खाता निर्माण प्रक्रिया के दौरान अनुकूलन संदेश के 
लिए अनुमति देता है"
+}
\ No newline at end of file
diff --git a/i18n/hsb.json b/i18n/hsb.json
new file mode 100644
index 0000000..bcf8e3f
--- /dev/null
+++ b/i18n/hsb.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Michawiki"
+        ]
+    },
+    "customusersignup-desc": "Zmóžnja přiměrjomne zdźělenki při załoženju 
wužiwarskeho konta"
+}
\ No newline at end of file
diff --git a/i18n/ia.json b/i18n/ia.json
new file mode 100644
index 0000000..74400bd
--- /dev/null
+++ b/i18n/ia.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "McDutchie"
+        ]
+    },
+    "customusersignup-desc": "Permitter messages personalisabile durante le 
processo de creation de contos"
+}
\ No newline at end of file
diff --git a/i18n/id.json b/i18n/id.json
new file mode 100644
index 0000000..70ac80e
--- /dev/null
+++ b/i18n/id.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "IvanLanin"
+        ]
+    },
+    "customusersignup-desc": "Menyediakan pesan terkustomisasi saat proses 
pembuatan akun"
+}
\ No newline at end of file
diff --git a/i18n/it.json b/i18n/it.json
new file mode 100644
index 0000000..10573ed
--- /dev/null
+++ b/i18n/it.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Beta16"
+        ]
+    },
+    "customusersignup-desc": "Permette i messaggi personalizzati durante il 
processo di creazione dell'account"
+}
\ No newline at end of file
diff --git a/i18n/ja.json b/i18n/ja.json
new file mode 100644
index 0000000..2fe2093
--- /dev/null
+++ b/i18n/ja.json
@@ -0,0 +1,9 @@
+{
+    "@metadata": {
+        "authors": [
+            "Schu",
+            "Shirayuki"
+        ]
+    },
+    "customusersignup-desc": "アカウント作成の過程に、カスタマイズ可能なメッセージを使用できるようにする"
+}
\ No newline at end of file
diff --git a/i18n/ko.json b/i18n/ko.json
new file mode 100644
index 0000000..8c19f0d
--- /dev/null
+++ b/i18n/ko.json
@@ -0,0 +1,9 @@
+{
+    "@metadata": {
+        "authors": [
+            "Kwj2772",
+            "아라"
+        ]
+    },
+    "customusersignup-desc": "계정 만들기 과정에서의 메시지를 따로 정할 수 있게 함"
+}
\ No newline at end of file
diff --git a/i18n/ksh.json b/i18n/ksh.json
new file mode 100644
index 0000000..b24df06
--- /dev/null
+++ b/i18n/ksh.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Purodha"
+        ]
+    },
+    "customusersignup-desc": "Määt ennstellbaa Antwoote un Nohreeschte 
müjjelesch derwiel enem neue Metmaacher singe Zohjang zom Wiki aanjelaat weed."
+}
\ No newline at end of file
diff --git a/i18n/lb.json b/i18n/lb.json
new file mode 100644
index 0000000..fe52852
--- /dev/null
+++ b/i18n/lb.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Robby"
+        ]
+    },
+    "customusersignup-desc": "Erméiglecht ugepasste Benotzermessagen während 
dem Opmaache vun engem Benotzerkont ze benotzen"
+}
\ No newline at end of file
diff --git a/i18n/map-bms.json b/i18n/map-bms.json
new file mode 100644
index 0000000..ba7c7b0
--- /dev/null
+++ b/i18n/map-bms.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "StefanusRA"
+        ]
+    },
+    "customusersignup-desc": "Nyediakna pesen sing di-kustomisasi nggo pas 
lagi proses nggawe akun"
+}
\ No newline at end of file
diff --git a/i18n/mk.json b/i18n/mk.json
new file mode 100644
index 0000000..8c15a61
--- /dev/null
+++ b/i18n/mk.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Bjankuloski06"
+        ]
+    },
+    "customusersignup-desc": "Дава можност за приказ ан прилагодливи пораки во 
текот на создавањето на сметки"
+}
\ No newline at end of file
diff --git a/i18n/ml.json b/i18n/ml.json
new file mode 100644
index 0000000..3645a16
--- /dev/null
+++ b/i18n/ml.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Praveenp"
+        ]
+    },
+    "customusersignup-desc": "അംഗത്വ സൃഷ്ടി പ്രക്രിയക്കിടയിൽ ക്രമീകരിക്കാവുന്ന 
സന്ദേശങ്ങൾ അനുവദിക്കുക"
+}
\ No newline at end of file
diff --git a/i18n/ms.json b/i18n/ms.json
new file mode 100644
index 0000000..5f1b0d0
--- /dev/null
+++ b/i18n/ms.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Anakmalaysia"
+        ]
+    },
+    "customusersignup-desc": "Membolehkan mesej yang boleh diubahsuai ketika 
proses pembukaan akaun"
+}
\ No newline at end of file
diff --git a/i18n/nb.json b/i18n/nb.json
new file mode 100644
index 0000000..c96fcd6
--- /dev/null
+++ b/i18n/nb.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Event"
+        ]
+    },
+    "customusersignup-desc": "Tillater brukertilpassede meldinger under 
opprettelsen av brukerkontoer"
+}
\ No newline at end of file
diff --git a/i18n/nl.json b/i18n/nl.json
new file mode 100644
index 0000000..902a305
--- /dev/null
+++ b/i18n/nl.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Siebrand"
+        ]
+    },
+    "customusersignup-desc": "Maakt het mogelijk aangepaste berichten weer te 
geven tijdens het aanmaken van gebruikers"
+}
\ No newline at end of file
diff --git a/i18n/pl.json b/i18n/pl.json
new file mode 100644
index 0000000..8f4d23b
--- /dev/null
+++ b/i18n/pl.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Sp5uhe"
+        ]
+    },
+    "customusersignup-desc": "Pozwala na dostosowanie wiadomości w trakcie 
tworzenia konta"
+}
\ No newline at end of file
diff --git a/i18n/pms.json b/i18n/pms.json
new file mode 100644
index 0000000..0f806b6
--- /dev/null
+++ b/i18n/pms.json
@@ -0,0 +1,9 @@
+{
+    "@metadata": {
+        "authors": [
+            "Borichèt",
+            "Dragonòt"
+        ]
+    },
+    "customusersignup-desc": "A përmët ëd përsonalisé ij mëssagi an mente dël 
process ëd creassion dël cont"
+}
\ No newline at end of file
diff --git a/i18n/pt-br.json b/i18n/pt-br.json
new file mode 100644
index 0000000..7777e6c
--- /dev/null
+++ b/i18n/pt-br.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Giro720"
+        ]
+    },
+    "customusersignup-desc": "Permite apresentar mensagens personalizadas 
durante o processo de criação de conta"
+}
\ No newline at end of file
diff --git a/i18n/pt.json b/i18n/pt.json
new file mode 100644
index 0000000..f821340
--- /dev/null
+++ b/i18n/pt.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Hamilton Abreu"
+        ]
+    },
+    "customusersignup-desc": "Permite apresentar mensagens personalizadas 
durante o processo de criação de conta"
+}
\ No newline at end of file
diff --git a/i18n/qqq.json b/i18n/qqq.json
new file mode 100644
index 0000000..f5a0472
--- /dev/null
+++ b/i18n/qqq.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Purodha"
+        ]
+    },
+    "customusersignup-desc": "{{desc}}"
+}
\ No newline at end of file
diff --git a/i18n/ro.json b/i18n/ro.json
new file mode 100644
index 0000000..1be5551
--- /dev/null
+++ b/i18n/ro.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Firilacroco"
+        ]
+    },
+    "customusersignup-desc": "Permite personalizarea mesajelor în timpul 
procesului de crearea a contului"
+}
\ No newline at end of file
diff --git a/i18n/roa-tara.json b/i18n/roa-tara.json
new file mode 100644
index 0000000..f6e9488
--- /dev/null
+++ b/i18n/roa-tara.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Joetaras"
+        ]
+    },
+    "customusersignup-desc": "Permette de fa messagge personalizzate duranne 
'u processe de ccrejazione d'u cunde utende"
+}
\ No newline at end of file
diff --git a/i18n/ru.json b/i18n/ru.json
new file mode 100644
index 0000000..26b3f1e
--- /dev/null
+++ b/i18n/ru.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Александр Сигачёв"
+        ]
+    },
+    "customusersignup-desc": "Включает настраиваемые сообщения в процессе 
создания учётной записи"
+}
\ No newline at end of file
diff --git a/i18n/rue.json b/i18n/rue.json
new file mode 100644
index 0000000..3c7c456
--- /dev/null
+++ b/i18n/rue.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Gazeb"
+        ]
+    },
+    "customusersignup-desc": "Забезпечує присбособительны повідомлїня почас 
створїня конта"
+}
\ No newline at end of file
diff --git a/i18n/sk.json b/i18n/sk.json
new file mode 100644
index 0000000..da02ea8
--- /dev/null
+++ b/i18n/sk.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Helix84"
+        ]
+    },
+    "customusersignup-desc": "Umožňuje prispôsobovať správy pri vytváraní účtu"
+}
\ No newline at end of file
diff --git a/i18n/sl.json b/i18n/sl.json
new file mode 100644
index 0000000..daade08
--- /dev/null
+++ b/i18n/sl.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Dbc334"
+        ]
+    },
+    "customusersignup-desc": "Omogoča prilagodljiva sporočila med postopkom 
ustvarjanja računa"
+}
\ No newline at end of file
diff --git a/i18n/sr-ec.json b/i18n/sr-ec.json
new file mode 100644
index 0000000..3505550
--- /dev/null
+++ b/i18n/sr-ec.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Rancher"
+        ]
+    },
+    "customusersignup-desc": "Даје могућност за приказ прилагодљивих порука у 
току отварања налога"
+}
\ No newline at end of file
diff --git a/i18n/tl.json b/i18n/tl.json
new file mode 100644
index 0000000..09b3fbf
--- /dev/null
+++ b/i18n/tl.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "AnakngAraw"
+        ]
+    },
+    "customusersignup-desc": "Nagpapahintulot ng mga mensaheng mapapasadya 
habang isinasagawa ang paglikha ng akawnt"
+}
\ No newline at end of file
diff --git a/i18n/uk.json b/i18n/uk.json
new file mode 100644
index 0000000..defea54
--- /dev/null
+++ b/i18n/uk.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Dim Grits"
+        ]
+    },
+    "customusersignup-desc": "Дозволяє настроювані повідомлення в процесі 
створення облікового запису"
+}
\ No newline at end of file
diff --git a/i18n/vi.json b/i18n/vi.json
new file mode 100644
index 0000000..98930c8
--- /dev/null
+++ b/i18n/vi.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Minh Nguyen"
+        ]
+    },
+    "customusersignup-desc": "Cho phép tùy biến các thông điệp trong quá trình 
mở tài khoản"
+}
\ No newline at end of file
diff --git a/i18n/zh-hans.json b/i18n/zh-hans.json
new file mode 100644
index 0000000..ef03305
--- /dev/null
+++ b/i18n/zh-hans.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "阿pp"
+        ]
+    },
+    "customusersignup-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..35276bc
--- /dev/null
+++ b/i18n/zh-hant.json
@@ -0,0 +1,8 @@
+{
+    "@metadata": {
+        "authors": [
+            "Anakmalaysia"
+        ]
+    },
+    "customusersignup-desc": "允許在郵件帳戶創建過程中自定義消息"
+}
\ No newline at end of file

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I88036e5a47e1ff79cdaccdc3c660ad6659fdf062
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/CustomUserSignup
Gerrit-Branch: master
Gerrit-Owner: Siebrand <siebr...@kitano.nl>
Gerrit-Reviewer: Raimond Spekking <raimond.spekk...@gmail.com>
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