modifications
This commit is contained in:
parent
edf64453f7
commit
273ea94cfc
100
README
100
README
|
@ -1,100 +0,0 @@
|
|||
--------------------------------------------------------------------------
|
||||
README for the ContactPage extension
|
||||
Copyright © 2006-2014 Daniel Kinzler, Sam Reed
|
||||
Licenses: GNU General Public Licence (GPL)
|
||||
GNU Free Documentation License (GFDL)
|
||||
--------------------------------------------------------------------------
|
||||
|
||||
The ContactPage extension implements a contact form for visitors. It
|
||||
creates a special page Special:Contact, which is similar to
|
||||
Special:Emailuser, but it has a fixed recipient, and can be used
|
||||
anonymously.
|
||||
|
||||
<https://www.mediawiki.org/wiki/Extension:ContactPage>
|
||||
|
||||
The ContactPage extension was originally written by Daniel Kinzler in 2007
|
||||
and is released under the GNU General Public Licence (GPL). It is based on
|
||||
the code in SpecialEmailuser.php in the MediaWiki core.
|
||||
The internationalization files contain contributions by several people;
|
||||
they are mentioned in each file individually.
|
||||
|
||||
|
||||
== Installing ==
|
||||
|
||||
Copy the ContactPage directory into the extensions folder of your
|
||||
MediaWiki installation. Then add the following lines to your
|
||||
LocalSettings.php file (near the end):
|
||||
|
||||
wfLoadExtension( 'ContactPage' );
|
||||
|
||||
== Configuration ==
|
||||
|
||||
As of version 2, all configuration is done by one global variable,
|
||||
$wgContactConfig.
|
||||
|
||||
$wgContactConfig['formname'] = [
|
||||
'RecipientUser' => 'WikiUser',
|
||||
'SenderEmail' => 'user@email.com',
|
||||
'SenderName' => 'User Email',
|
||||
'RequireDetails' => true,
|
||||
'IncludeIP' => true,
|
||||
'AdditionalFields' => [],
|
||||
'RLModules' => [],
|
||||
'RLStyleModules' => [],
|
||||
];
|
||||
|
||||
All contact form keys (in this case 'formname') should be in
|
||||
lowercase.
|
||||
|
||||
RecipentUser must be the username of a registered wiki user, who has
|
||||
supplied an email address, has user-to-user email enabled, and has
|
||||
confirmed his/her email address if that is required on this wiki
|
||||
(see $wgEmailAuthentication).
|
||||
|
||||
SenderEmail is used when to send the email when an address isn't
|
||||
entered on the contact form. It defaults to $wgPasswordSender.
|
||||
|
||||
SenderName is the display name used with SenderEmail.
|
||||
|
||||
RequireDetails Whether users will be required to supply a name and an
|
||||
email address on Special:Contact.
|
||||
|
||||
IncludeIP Whether the form will include a checkbox offering to put the IP
|
||||
address of the submitter in the subject line.
|
||||
|
||||
AdditionalFields is used to add any additional fields to the contact form.
|
||||
These are done using https://www.mediawiki.org/wiki/HTMLForm notation.
|
||||
The default message text box is not included by default, and if required,
|
||||
should be added manually to the AdditionalFields array like below.
|
||||
|
||||
It should be noted that type 'selectandother' is not currently supported.
|
||||
|
||||
'AdditionalFields' => [
|
||||
'Text' => [
|
||||
'label-message' => 'emailmessage',
|
||||
'type' => 'textarea',
|
||||
'rows' => 20,
|
||||
'cols' => 80,
|
||||
'required' => true,
|
||||
],
|
||||
],
|
||||
|
||||
RLModules can be used to add ResourceLoader modules (custom CSS and
|
||||
JavaScript) to the page.
|
||||
|
||||
RLStyleModules can be used to add ResourceLoader CSS modules to the page.
|
||||
|
||||
== Customization ==
|
||||
|
||||
[[Special:Contact]] calls the 'default' form.
|
||||
Pagetext: [[MediaWiki:contactpage-pagetext]]
|
||||
Subject: prefilled with text from [[MediaWiki:Contactpage-defsubject]]
|
||||
E-mail body: empty.
|
||||
|
||||
[[Special:Contact/typename]] calls the contact page with a customized pagetext and
|
||||
prefilled form fields:
|
||||
Pagetext: [[MediaWiki:contactpage-pagetext-typename]]
|
||||
Subject: prefilled with text from [[MediaWiki:contactpage-subject-typename]]
|
||||
E-mail body: prefilled with text from [[MediaWiki:contactpage-text-typename]]
|
||||
|
||||
If a customized message does not exist the default message is shown.
|
|
@ -0,0 +1,44 @@
|
|||
A better version of the classic contact form extension.
|
||||
|
||||
**New features:**
|
||||
|
||||
- reCAPTCHA protection
|
||||
- Better email layout
|
||||
- Always track a user's IP
|
||||
- Handle reverse proxy and Cloudflare IPs
|
||||
|
||||
# Install
|
||||
|
||||
1. `git clone https://git.dp15.us/dpanzer/ProtectedContactPage.git`
|
||||
|
||||
2. Make sure you have set `$wgPasswordSender` and have set up SMTP.
|
||||
|
||||
3. Add to the bottom of `LocalSettings.php`:
|
||||
|
||||
```php
|
||||
$wgReCaptchaSiteKey = 'you public key';
|
||||
$wgReCaptchaSecretKey = 'your secret key';
|
||||
|
||||
wfLoadExtension( 'ProtectedContactPage' );
|
||||
$wgContactConfig['default'] = array(
|
||||
'RecipientUser' => 'your account name', // Must be the name of a valid account which also has a verified e-mail-address added to it.
|
||||
'SenderName' => "name for sender email address",
|
||||
'RequireDetails' => true,
|
||||
'AdditionalFields' => array(
|
||||
'Text' => array(
|
||||
'label-message' => 'emailmessage',
|
||||
'type' => 'textarea',
|
||||
'rows' => 20,
|
||||
'required' => true, // Either "true" or "false" as required
|
||||
),
|
||||
),
|
||||
'DisplayFormat' => 'table',
|
||||
'RLModules' => array(),
|
||||
'RLStyleModules' => array(),
|
||||
'MustBeLoggedIn' => false,
|
||||
);
|
||||
```
|
||||
|
||||
# Usage
|
||||
|
||||
Go to `Special:Contact` to access the contact form.
|
106
extension.json
106
extension.json
|
@ -1,53 +1,57 @@
|
|||
{
|
||||
"name": "ContactPage",
|
||||
"version": "2.3",
|
||||
"author": [
|
||||
"Daniel Kinzler",
|
||||
"Sam Reed"
|
||||
],
|
||||
"url": "https://www.mediawiki.org/wiki/Extension:ContactPage",
|
||||
"descriptionmsg": "contactpage-desc",
|
||||
"license-name": "GPL-2.0-or-later",
|
||||
"type": "specialpage",
|
||||
"ExtensionMessagesFiles": {
|
||||
"ContactPageAliases": "ContactPage.alias.php"
|
||||
},
|
||||
"MessagesDirs": {
|
||||
"ContactPage": [
|
||||
"i18n"
|
||||
]
|
||||
},
|
||||
"config": {
|
||||
"ContactConfig": {
|
||||
"value": {
|
||||
"default": {
|
||||
"RecipientUser": null,
|
||||
"SenderEmail": null,
|
||||
"SenderName": null,
|
||||
"RequireDetails": false,
|
||||
"IncludeIP": false,
|
||||
"MustBeLoggedIn": false,
|
||||
"RLModules": [],
|
||||
"RLStyleModules": [],
|
||||
"AdditionalFields": {
|
||||
"Text": {
|
||||
"label-message": "emailmessage",
|
||||
"type": "textarea",
|
||||
"required": true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"SpecialPages": {
|
||||
"Contact": "SpecialContact"
|
||||
},
|
||||
"AutoloadClasses": {
|
||||
"SpecialContact": "includes/SpecialContact.php"
|
||||
},
|
||||
"manifest_version": 2,
|
||||
"requires": {
|
||||
"MediaWiki": ">= 1.29.0"
|
||||
}
|
||||
"name": "ContactPage",
|
||||
"version": "2.3",
|
||||
"author": [
|
||||
"Daniel Kinzler",
|
||||
"Sam Reed"
|
||||
],
|
||||
"url": "https://www.mediawiki.org/wiki/Extension:ContactPage",
|
||||
"descriptionmsg": "contactpage-desc",
|
||||
"license-name": "GPL-2.0-or-later",
|
||||
"type": "specialpage",
|
||||
"ExtensionMessagesFiles": {
|
||||
"ContactPageAliases": "ContactPage.alias.php"
|
||||
},
|
||||
"MessagesDirs": {
|
||||
"ContactPage": [
|
||||
"i18n"
|
||||
]
|
||||
},
|
||||
"config": {
|
||||
"ContactConfig": {
|
||||
"value": {
|
||||
"default": {
|
||||
"RecipientUser": null,
|
||||
"SenderEmail": null,
|
||||
"SenderName": null,
|
||||
"RequireDetails": false,
|
||||
"IncludeIP": false,
|
||||
"MustBeLoggedIn": false,
|
||||
"RLModules": [],
|
||||
"RLStyleModules": [],
|
||||
"AdditionalFields": {
|
||||
"Text": {
|
||||
"label-message": "emailmessage",
|
||||
"type": "textarea",
|
||||
"required": true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"SpecialPages": {
|
||||
"Contact": "SpecialContact"
|
||||
},
|
||||
"AutoloadClasses": {
|
||||
"SpecialContact": "includes/SpecialContact.php",
|
||||
"ContactPageHooks": "includes/ContactPageHooks.php"
|
||||
},
|
||||
"manifest_version": 2,
|
||||
"requires": {
|
||||
"MediaWiki": ">= 1.29.0"
|
||||
},
|
||||
"Hooks": {
|
||||
"BeforePageDisplay": "ContactPageHooks::onBeforePageDisplay"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Anok kutai jang"
|
||||
]
|
||||
},
|
||||
"contactpage": "Kintal data kontak"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Si Gam Acèh"
|
||||
]
|
||||
},
|
||||
"contactpage": "Peugah bak kamoë"
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Amire80",
|
||||
"Bedynokue.nart"
|
||||
]
|
||||
},
|
||||
"contactpage": "Контакт нэкӀубгъор"
|
||||
}
|
26
i18n/af.json
26
i18n/af.json
|
@ -1,26 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Arnobarnard",
|
||||
"Fwolff",
|
||||
"Naudefj"
|
||||
]
|
||||
},
|
||||
"contactpage": "Kontakblad",
|
||||
"contactpage-desc": "[[Special:Contact|Kontakvorm vir besoekers]]",
|
||||
"contactpage-title": "Kontak",
|
||||
"contactpage-pagetext": "Gebruik die onderstaande vorm om ons te kontak.",
|
||||
"contactpage-legend": "Stuur e-pos",
|
||||
"contactpage-defsubject": "Kontakboodskap",
|
||||
"contactpage-subject-and-sender": "$1 (van $2)",
|
||||
"contactpage-subject-and-sender-withip": "$1 (van $2 op $3)",
|
||||
"contactpage-fromname": "U naam:",
|
||||
"contactpage-fromaddress": "U e-posadres:",
|
||||
"contactpage-formfootnotes": "(nodig as u 'n antwoord wil ontvang)",
|
||||
"contactpage-includeip": "Sluit my IP-adres by die boodskap in.",
|
||||
"contactpage-usermailererror": "Fout met versending van e-pos:",
|
||||
"contactpage-captcha-error": "CAPTCHA-fout",
|
||||
"contactpage-config-error-title": "Fout met kontakvorm",
|
||||
"contactpage-config-error": "'n Kontakvorm is nie vir dié bladsy opgestel nie, of dit is verkeerd opgestel.",
|
||||
"contactpage-mustbeloggedin": "Meld asb. aan om 'n kontakvorm te gebruik."
|
||||
}
|
|
@ -1,17 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Mdupont"
|
||||
]
|
||||
},
|
||||
"contactpage-title": "Kontakt",
|
||||
"contactpage-pagetext": "Ju lutem përdorni formularin e mëposhtëm për të na kontaktoni.",
|
||||
"contactpage-legend": "Dergo e-mail",
|
||||
"contactpage-defsubject": "mesazh Kontakt",
|
||||
"contactpage-subject-and-sender": "$1 (nga $2)",
|
||||
"contactpage-subject-and-sender-withip": "$1 (prej $2 në $3)",
|
||||
"contactpage-fromname": "Emri juaj: *",
|
||||
"contactpage-fromaddress": "Your e-mail: **",
|
||||
"contactpage-formfootnotes": "* Opcionale <br /> ** Dëshirë por e nevojshme qoftë se dëshironi një përgjigje",
|
||||
"contactpage-includeip": "Përfshini IP adresa ime ne kete mesazh."
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Батыр Комдошев"
|
||||
]
|
||||
},
|
||||
"contactpage": "Контакттыҥ бӱги"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Vickylin77s"
|
||||
]
|
||||
},
|
||||
"contactpage": "kalalicayan a felih"
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": []
|
||||
},
|
||||
"contactpage-usermailererror": "L'obchecto de correu retornó una error:"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Angpradesh"
|
||||
]
|
||||
},
|
||||
"contactpage": "सम्पर्क पन्ना"
|
||||
}
|
29
i18n/ar.json
29
i18n/ar.json
|
@ -1,29 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Meno25",
|
||||
"OsamaK",
|
||||
"أحمد",
|
||||
"ديفيد",
|
||||
"زكريا",
|
||||
"محمد أحمد عبد الفتاح"
|
||||
]
|
||||
},
|
||||
"contactpage": "صفحة المراسلة",
|
||||
"contactpage-desc": "[[Special:Contact|استمارة اتصال للزائرين]]",
|
||||
"contactpage-title": "راسلنا",
|
||||
"contactpage-pagetext": "استخدم الاستمارة التالية لتُكاتبنا.",
|
||||
"contactpage-legend": "رسالة بريد إلكتروني",
|
||||
"contactpage-defsubject": "موضوع المراسلة",
|
||||
"contactpage-subject-and-sender": "$1 (من $2)",
|
||||
"contactpage-subject-and-sender-withip": "$1 (من $2 ذي $3)",
|
||||
"contactpage-fromname": "الاسم:",
|
||||
"contactpage-fromaddress": "عنوان البريد:",
|
||||
"contactpage-formfootnotes": "(مطلوب لو أردت ردًّا)",
|
||||
"contactpage-includeip": "ضمّن عنوان بروتوكول الإنترنت الدال عليّ في الرسالة.",
|
||||
"contactpage-usermailererror": "جسم البريد أرجع خطأ:",
|
||||
"contactpage-captcha-error": "خطأ في كابتشا",
|
||||
"contactpage-config-error-title": "خطأ في استمارة الاتصال",
|
||||
"contactpage-config-error": "إما أن نموذج الاتصال غير مكوّن لهذه الصفحة أو تم تكوينه بشكل غير صحيح.",
|
||||
"contactpage-mustbeloggedin": "يُرجَى تسجيل الدخول لتقديم نموذج اتصال."
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Basharh"
|
||||
]
|
||||
},
|
||||
"contactpage-subject-and-sender": "$1 (ܡܢ $2)",
|
||||
"contactpage-fromname": "ܫܡܐ ܕܝܠܟ:"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Bachounda"
|
||||
]
|
||||
},
|
||||
"contactpage": "باجت الكونتاكت"
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"SADIQUI"
|
||||
]
|
||||
},
|
||||
"contactpage": "صفحة المراسلة",
|
||||
"contactpage-usermailererror": "naṣṣ l-email ĝta ĥata':"
|
||||
}
|
|
@ -1,25 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Ghaly",
|
||||
"Meno25",
|
||||
"Ramsis II"
|
||||
]
|
||||
},
|
||||
"contactpage": "صفحة الاتصال",
|
||||
"contactpage-desc": "[[Special:Contact|استمارة اتصال للزائرين]]",
|
||||
"contactpage-title": "اتصل",
|
||||
"contactpage-pagetext": "من فضلك استخدم الاستمارة بالأسفل للاتصال بنا.",
|
||||
"contactpage-legend": "ايعت ايميل",
|
||||
"contactpage-defsubject": "رسالة الاتصال",
|
||||
"contactpage-subject-and-sender": "$1 (من $2)",
|
||||
"contactpage-subject-and-sender-withip": "$1 (من $2 فى $3)",
|
||||
"contactpage-fromname": "اسمك:",
|
||||
"contactpage-fromaddress": "الايميل بتاعك:",
|
||||
"contactpage-formfootnotes": "(ضرورى لو عايز اجابه)",
|
||||
"contactpage-includeip": "حط عنوان الايبى بتاعى فى الرساله دى.",
|
||||
"contactpage-usermailererror": "البريد رجع غلط:",
|
||||
"contactpage-captcha-error": "غلط CAPTCHA",
|
||||
"contactpage-config-error-title": "غلط من صفحه الاتصال",
|
||||
"contactpage-mustbeloggedin": "لو سمحت اعمل لوجين علشان تبعت صفحة اتصال."
|
||||
}
|
12
i18n/as.json
12
i18n/as.json
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Bishnu Saikia",
|
||||
"Gitartha.bordoloi"
|
||||
]
|
||||
},
|
||||
"contactpage": "যোগাযোগৰ পৃষ্ঠা",
|
||||
"contactpage-title": "যোগাযোগ",
|
||||
"contactpage-fromname": "আপোনাৰ নাম:",
|
||||
"contactpage-usermailererror": "মেইল বিষয়বস্তুৰ ত্ৰুটি:"
|
||||
}
|
|
@ -1,24 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Xuacu"
|
||||
]
|
||||
},
|
||||
"contactpage": "Páxina de contautu",
|
||||
"contactpage-desc": "[[Special:Contact|Formulariu de contautu pa los visitantes]]",
|
||||
"contactpage-title": "Contautu",
|
||||
"contactpage-pagetext": "Usa'l formulariu d'abaxo pa comunicate con nós.",
|
||||
"contactpage-legend": "Unviar un corréu",
|
||||
"contactpage-defsubject": "Mensaxe de contautu",
|
||||
"contactpage-subject-and-sender": "$1 (de $2)",
|
||||
"contactpage-subject-and-sender-withip": "$1 (de $2 en $3)",
|
||||
"contactpage-fromname": "Nome:",
|
||||
"contactpage-fromaddress": "Direición de corréu electrónicu:",
|
||||
"contactpage-formfootnotes": "(necesario si quier una respuesta)",
|
||||
"contactpage-includeip": "Incluir la mio direición IP nesti mensaxe.",
|
||||
"contactpage-usermailererror": "L'operador de corréu devolvió un error:",
|
||||
"contactpage-captcha-error": "Error de CAPTCHA",
|
||||
"contactpage-config-error-title": "Error nel formulariu de contactu",
|
||||
"contactpage-config-error": "El formulariu de contactu o nun ta configuráu pa esta páxina o ta configuráu de mou incorreutu.",
|
||||
"contactpage-mustbeloggedin": "Anicia sesión pa unviar un formulariu de contactu."
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Benoit Rochon",
|
||||
"Ninmeka"
|
||||
]
|
||||
},
|
||||
"contactpage": "Ka masinahamowakaniwitc"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Gazimagomedov"
|
||||
]
|
||||
},
|
||||
"contactpage": "Контактасул гьумер"
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Axel xadolik"
|
||||
]
|
||||
},
|
||||
"contactpage": "Uzerabu",
|
||||
"contactpage-usermailererror": "E-mail rokla :"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"1AnuraagPandey"
|
||||
]
|
||||
},
|
||||
"contactpage": "सम्पर्क पन्ना"
|
||||
}
|
14
i18n/az.json
14
i18n/az.json
|
@ -1,14 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Cekli829",
|
||||
"Wertuose"
|
||||
]
|
||||
},
|
||||
"contactpage": "Əlaqə səhifəsi",
|
||||
"contactpage-title": "Əlaqə",
|
||||
"contactpage-legend": "E-məktub göndər",
|
||||
"contactpage-fromname": "Sizin adınız:",
|
||||
"contactpage-fromaddress": "Sizin e-poçtunuz:",
|
||||
"contactpage-usermailererror": "Elektron poçtla məlumat göndərilən zaman xəta baş vermişdir:"
|
||||
}
|
|
@ -1,22 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Ilğım",
|
||||
"Koroğlu",
|
||||
"Mousa"
|
||||
]
|
||||
},
|
||||
"contactpage": "باغلانتی قۇرماق صفحهسی",
|
||||
"contactpage-desc": "[[Special:Contact|گؤروشنلر اوچون باغلانتی قورماق فورمو]]",
|
||||
"contactpage-title": "باغلانتی",
|
||||
"contactpage-pagetext": "لوطفاً بیزله باغلانتی قورماق اوچون آشاغیداکی فورمدان ایستیفاده ائدین.",
|
||||
"contactpage-legend": "ایمیل گؤندر",
|
||||
"contactpage-defsubject": "باغلانتی یازیسی",
|
||||
"contactpage-subject-and-sender": "$1 ($2-دن)",
|
||||
"contactpage-subject-and-sender-withip": "$1 ($3-ده $2-دن)",
|
||||
"contactpage-fromname": "سیزین آدینیز: *",
|
||||
"contactpage-fromaddress": "سیزین ایمیلینیز: **",
|
||||
"contactpage-formfootnotes": "* ایستگه باغلی<br />\n** ایستگه باغلی، اما جاواب ایستهسز گرکلی",
|
||||
"contactpage-includeip": "منیم آیپی آدرسیمی بو مئساژدا یئرلشدیر.",
|
||||
"contactpage-usermailererror": "ایمیلدن بو خطا قایتاریلدی:"
|
||||
}
|
25
i18n/ba.json
25
i18n/ba.json
|
@ -1,25 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Assele",
|
||||
"Haqmar",
|
||||
"Ләйсән"
|
||||
]
|
||||
},
|
||||
"contactpage": "Бәйләнеш бите",
|
||||
"contactpage-desc": "[[Special:Contact|Ҡараусылар өсөн форма]]",
|
||||
"contactpage-title": "Бәйләнеш",
|
||||
"contactpage-pagetext": "Зинһар, беҙҙең менән бәйләнешкә кереү өсөн, түбәндәге форманы ҡулланығыҙ.",
|
||||
"contactpage-legend": "Э-хат ебәрергә",
|
||||
"contactpage-defsubject": "Хәбәр",
|
||||
"contactpage-subject-and-sender": "$1 ($2 башлап)",
|
||||
"contactpage-subject-and-sender-withip": "$1 ($2 $3 адресынан)",
|
||||
"contactpage-fromname": "Исемегеҙ:",
|
||||
"contactpage-fromaddress": "Электрон почта адресығыҙ:",
|
||||
"contactpage-formfootnotes": "(яуап алғыыҙ килһә генә кәрәкле)",
|
||||
"contactpage-includeip": "Был хәбәргә минең IP адресты өҫтәргә.",
|
||||
"contactpage-usermailererror": "Хат ебәргән ваҡытта хата килеп сыҡты:",
|
||||
"contactpage-captcha-error": "CAPTCHA хатаһы",
|
||||
"contactpage-config-error-title": "Контакт форма хатаһы",
|
||||
"contactpage-config-error": "Контакт форма был бит өсөн көйләнмәгән, йәки дөрөҫ көйләнмәгән"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Luh Gede Krismayanti"
|
||||
]
|
||||
},
|
||||
"contactpage": "Kaca daging"
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Matthias Klostermayr",
|
||||
"Mucalexx"
|
||||
]
|
||||
},
|
||||
"contactpage": "Kontaktseitn"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Herryz"
|
||||
]
|
||||
},
|
||||
"contactpage": "Alaman ni kontak"
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": []
|
||||
},
|
||||
"contactpage-usermailererror": "شی ایمیل حطا پیش داشت"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Kjeanclaude"
|
||||
]
|
||||
},
|
||||
"contactpage": "Flèlè adressi floua boué"
|
||||
}
|
|
@ -1,15 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Brazal.dang",
|
||||
"Filipinayzd",
|
||||
"Geopoet"
|
||||
]
|
||||
},
|
||||
"contactpage": "Hadoyan na pahina",
|
||||
"contactpage-subject-and-sender": "$1 (poon $2)",
|
||||
"contactpage-fromname": "Pangaran mo:",
|
||||
"contactpage-fromaddress": "''E''-surat mo:",
|
||||
"contactpage-usermailererror": "Error manonongod sa korreong binalik:",
|
||||
"contactpage-config-error-title": "Kasalaan sa porma kan haduyan"
|
||||
}
|
|
@ -1,27 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"EugeneZelenko",
|
||||
"Jim-by",
|
||||
"Red Winged Duck",
|
||||
"Wizardist"
|
||||
]
|
||||
},
|
||||
"contactpage": "Старонка кантакту",
|
||||
"contactpage-desc": "[[Special:Contact|Кантактная форма для наведвальнікаў]]",
|
||||
"contactpage-title": "Кантакт",
|
||||
"contactpage-pagetext": "Калі ласка, карыстайцеся формай ніжэй, каб зьвязацца з намі.",
|
||||
"contactpage-legend": "Даслаць ліст па электроннай пошце",
|
||||
"contactpage-defsubject": "Паведамленьне",
|
||||
"contactpage-subject-and-sender": "$1 (ад $2)",
|
||||
"contactpage-subject-and-sender-withip": "$1 (ад $2 з $3)",
|
||||
"contactpage-fromname": "Вашае імя:",
|
||||
"contactpage-fromaddress": "Ваш адрас электроннай пошты:",
|
||||
"contactpage-formfootnotes": "(патрабуецца, калі Вы жадаеце атрымаць адказ)",
|
||||
"contactpage-includeip": "Дадаць мой IP-адрас у гэтае паведамленьне.",
|
||||
"contactpage-usermailererror": "Пры адсыланьні пошты адбылася памылка:",
|
||||
"contactpage-captcha-error": "Памылка CAPTCHA",
|
||||
"contactpage-config-error-title": "Памылка кантактнай формы",
|
||||
"contactpage-config-error": "Кантактная форма для гэтай старонкі не наладжаная або наладжаная няправільна.",
|
||||
"contactpage-mustbeloggedin": "Калі ласка, увайдзіце, каб даслаць кантактную форму."
|
||||
}
|
10
i18n/be.json
10
i18n/be.json
|
@ -1,10 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Artsiom91",
|
||||
"Чаховіч Уладзіслаў"
|
||||
]
|
||||
},
|
||||
"contactpage": "Старонка кантакту",
|
||||
"contactpage-usermailererror": "Паштовы аб’ект паведамляе пра памылку:"
|
||||
}
|
20
i18n/bg.json
20
i18n/bg.json
|
@ -1,20 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"DCLXVI",
|
||||
"Mitzev",
|
||||
"Turin"
|
||||
]
|
||||
},
|
||||
"contactpage": "Страница за контакт",
|
||||
"contactpage-desc": "[[Special:Contact|Формуляр за връзка]]",
|
||||
"contactpage-title": "Контакт",
|
||||
"contactpage-pagetext": "Формулярът по-долу може да бъде използван за връзка с нас.",
|
||||
"contactpage-legend": "Изпращане на е-писмо",
|
||||
"contactpage-defsubject": "Съобщение",
|
||||
"contactpage-subject-and-sender": "$1 (от $2)",
|
||||
"contactpage-fromname": "Вашето име:",
|
||||
"contactpage-fromaddress": "Вашата е-поща:",
|
||||
"contactpage-formfootnotes": "(изисква се за получаване отговор)",
|
||||
"contactpage-usermailererror": "Пощенският обект даде грешка:"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Baloch Afghanistan"
|
||||
]
|
||||
},
|
||||
"contactpage": "تماس ئی دیم"
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Nepaboy",
|
||||
"SatyamMishra"
|
||||
]
|
||||
},
|
||||
"contactpage": "संपर्क पन्ना"
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Ezagren"
|
||||
]
|
||||
},
|
||||
"contactpage": "Hubungi kami",
|
||||
"contactpage-usermailererror": "Objek surat ada kasalahan dibulikakan:"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Muskwatch"
|
||||
]
|
||||
},
|
||||
"contactpage": "si7alhtsimtmacwilh"
|
||||
}
|
27
i18n/bn.json
27
i18n/bn.json
|
@ -1,27 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Aftab1995",
|
||||
"Aftabuzzaman",
|
||||
"Bellayet",
|
||||
"Nasir8891",
|
||||
"Usarker",
|
||||
"Wikitanvir",
|
||||
"আফতাবুজ্জামান"
|
||||
]
|
||||
},
|
||||
"contactpage": "যোগাযোগের পাতা",
|
||||
"contactpage-desc": "[[Special:Contact|অতিথিদের জন্য যোগাযোগ]]",
|
||||
"contactpage-title": "যোগাযোগ",
|
||||
"contactpage-pagetext": "আমাদের সাথে যোগাযোগ করতে অনুগ্রহ করে নিচের ফর্মটি ব্যবহার করুন।",
|
||||
"contactpage-legend": "ই-মেইল পাঠাও",
|
||||
"contactpage-defsubject": "যোগাযোগ বার্তা",
|
||||
"contactpage-subject-and-sender": "$1 ($2 থেকে)",
|
||||
"contactpage-subject-and-sender-withip": "$1 ($2 থেকে $3-এ)",
|
||||
"contactpage-fromname": "আপনার নাম:",
|
||||
"contactpage-fromaddress": "আপনার ইমেইল ঠিকানা:",
|
||||
"contactpage-formfootnotes": "(আপনার সাথে যোগাযোগ করার জন্য)",
|
||||
"contactpage-includeip": "এই বার্তায় আমার আইপি ঠিকানা যোগ করো।",
|
||||
"contactpage-usermailererror": "মেইল অবজেক্ট ত্রুটি পাঠিয়েছে:",
|
||||
"contactpage-captcha-error": "ক্যাপচা ত্রুটি"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Mogoeilor"
|
||||
]
|
||||
},
|
||||
"contactpage": "بٱلگاْ تماس گرهڌن"
|
||||
}
|
23
i18n/br.json
23
i18n/br.json
|
@ -1,23 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Fohanno",
|
||||
"Fulup",
|
||||
"Y-M D"
|
||||
]
|
||||
},
|
||||
"contactpage": "Pajenn daremprediñ",
|
||||
"contactpage-desc": "[[Special:Contact|Furmskrid mont e darempred evit ar gweladennerien]]",
|
||||
"contactpage-title": "Darempred",
|
||||
"contactpage-pagetext": "Mar plij implijit ar furmskrid dindan evit dont e darempred ganeomp.",
|
||||
"contactpage-legend": "Kas ur postel",
|
||||
"contactpage-defsubject": "Kemennadenn da vont e darempred",
|
||||
"contactpage-subject-and-sender": "$1 (eus $2)",
|
||||
"contactpage-subject-and-sender-withip": "$1 (eus $2 da $3)",
|
||||
"contactpage-fromname": "Hoc'h anv :",
|
||||
"contactpage-fromaddress": "Ho chomlec'h postel :",
|
||||
"contactpage-formfootnotes": "(rekis mar fell deoc'h e vefe respontet deoc'h)",
|
||||
"contactpage-includeip": "Merkañ ma chomlec'h IP er postel-mañ.",
|
||||
"contactpage-usermailererror": "Fazi postel :",
|
||||
"contactpage-captcha-error": "Fazi CAPTCHA"
|
||||
}
|
24
i18n/bs.json
24
i18n/bs.json
|
@ -1,24 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"CERminator",
|
||||
"Palapa",
|
||||
"Srdjan m",
|
||||
"Srđan"
|
||||
]
|
||||
},
|
||||
"contactpage": "Stranica za kontakt",
|
||||
"contactpage-desc": "[[Special:Contact|Kontaktni obrazac za posjetioce]]",
|
||||
"contactpage-title": "Kontakt",
|
||||
"contactpage-pagetext": "Molimo koristite obrazac ispod da nas kontaktirate.",
|
||||
"contactpage-legend": "Pošalji e-mail",
|
||||
"contactpage-defsubject": "Poruka kontakta",
|
||||
"contactpage-subject-and-sender": "$1 (od $2)",
|
||||
"contactpage-subject-and-sender-withip": "$1 (od $2 sa $3)",
|
||||
"contactpage-fromname": "Vaše ime:",
|
||||
"contactpage-fromaddress": "Vaš e-mail:",
|
||||
"contactpage-formfootnotes": "(obavezno ako želite dobiti odgovor)",
|
||||
"contactpage-includeip": "Uključi moju IP adresu u ovu poruku.",
|
||||
"contactpage-usermailererror": "Objekat pošte je vratio grešku:",
|
||||
"contactpage-captcha-error": "CAPTCHA greška"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Simartampua"
|
||||
]
|
||||
},
|
||||
"contactpage": "Alaman kontak"
|
||||
}
|
25
i18n/ca.json
25
i18n/ca.json
|
@ -1,25 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"BroOk",
|
||||
"Fitoschido",
|
||||
"Martorell",
|
||||
"SMP",
|
||||
"Solde",
|
||||
"Vriullop"
|
||||
]
|
||||
},
|
||||
"contactpage": "Pàgina de contacte",
|
||||
"contactpage-desc": "[[Special:Contact|Formulari de contacte per als visitants]]",
|
||||
"contactpage-title": "Contacte",
|
||||
"contactpage-pagetext": "Utilitzeu el formulari següent per a contactar-nos.",
|
||||
"contactpage-legend": "Envia missatge",
|
||||
"contactpage-defsubject": "Missatge de contacte",
|
||||
"contactpage-subject-and-sender": "$1 (de $2)",
|
||||
"contactpage-subject-and-sender-withip": "$1 (de $2 a $3)",
|
||||
"contactpage-fromname": "El vostre nom:",
|
||||
"contactpage-fromaddress": "La vostra adreça de correu:",
|
||||
"contactpage-formfootnotes": "(necessari si voleu una resposta)",
|
||||
"contactpage-includeip": "Inclou al missatge l'adreça IP que estic utilitzant.",
|
||||
"contactpage-usermailererror": "L'objecte de correu ha retornat un error:"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Chocoj"
|
||||
]
|
||||
},
|
||||
"contactpage": "Ruxaq richin ch'ab'enïk"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"GnuDoyng"
|
||||
]
|
||||
},
|
||||
"contactpage": "Lièng-hiê hiĕk-miêng"
|
||||
}
|
13
i18n/ce.json
13
i18n/ce.json
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Умар"
|
||||
]
|
||||
},
|
||||
"contactpage": "Контактан агӀо",
|
||||
"contactpage-defsubject": "Хаам",
|
||||
"contactpage-fromname": "Хьа хан:",
|
||||
"contactpage-fromaddress": "Хьан электронан поштан адрес:",
|
||||
"contactpage-formfootnotes": "(оьшу хьона жоп даийта лууш делахь)",
|
||||
"contactpage-usermailererror": "Электронан поштехула хаам дӀабохьитуш гӀалат даьлла:"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Bentong Isles"
|
||||
]
|
||||
},
|
||||
"contactpage": "Panid sa pagkontak"
|
||||
}
|
|
@ -1,22 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Asoxor",
|
||||
"Calak"
|
||||
]
|
||||
},
|
||||
"contactpage": "پەڕەی پەیوەندی",
|
||||
"contactpage-desc": "[[Special:Contact|فۆرمی پەیوەندی بۆ سەردانکەران]]",
|
||||
"contactpage-title": "پەیوەندی",
|
||||
"contactpage-pagetext": "تکایە فۆرمی خوارەوە بە کار بھێنن بۆ پەیوەندی لەگەڵماندا.",
|
||||
"contactpage-legend": "ئیمێل بنێرە",
|
||||
"contactpage-defsubject": "پەیامی پەیوەندی",
|
||||
"contactpage-subject-and-sender": "$1 (لە $2)",
|
||||
"contactpage-subject-and-sender-withip": "$1 (لە $2 لە $3ـەوە)",
|
||||
"contactpage-fromname": "ناوت:",
|
||||
"contactpage-fromaddress": "ناونیشانی ئیمێلەکەت:",
|
||||
"contactpage-formfootnotes": "(ئەگەر وەڵامت دەوێت پێوستە)",
|
||||
"contactpage-includeip": "ناونیشانی IPـەکەشم لەم پەیامەدا ھەبێت.",
|
||||
"contactpage-captcha-error": "ھەڵەی CAPTCHA",
|
||||
"contactpage-config-error-title": "ھەڵەی فۆرمی پەیوەندی"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Bellatrix10"
|
||||
]
|
||||
},
|
||||
"contactpage": "Stranica za kontakt"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Jun Misugi"
|
||||
]
|
||||
},
|
||||
"contactpage": "Pàgina di cuntattu"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Bloomaround"
|
||||
]
|
||||
},
|
||||
"contactpage": "ϩⲟ ⲙ̀ⲙⲉⲧϭⲟϩ"
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": []
|
||||
},
|
||||
"contactpage-usermailererror": "E-mail беянаты ёллангъан вакъытта хата олып чыкъты"
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": []
|
||||
},
|
||||
"contactpage-usermailererror": "E-mail beyanatı yollanğan vaqıtta hata olıp çıqtı"
|
||||
}
|
26
i18n/cs.json
26
i18n/cs.json
|
@ -1,26 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Matěj Grabovský",
|
||||
"Mormegil",
|
||||
"לערי ריינהארט"
|
||||
]
|
||||
},
|
||||
"contactpage": "Kontaktní stránka",
|
||||
"contactpage-desc": "[[Special:Contact|Kontaktní formulář pro návštěvníky]]",
|
||||
"contactpage-title": "Kontakt",
|
||||
"contactpage-pagetext": "Pomocí níže zobrazeného formuláře se s námi můžete spojit.",
|
||||
"contactpage-legend": "Poslat e-mail",
|
||||
"contactpage-defsubject": "Zpráva",
|
||||
"contactpage-subject-and-sender": "$1 (od $2)",
|
||||
"contactpage-subject-and-sender-withip": "$1 (od $2 z $3)",
|
||||
"contactpage-fromname": "Vaše jméno:",
|
||||
"contactpage-fromaddress": "Vaše e-mailová adresa:",
|
||||
"contactpage-formfootnotes": "(potřebné pokud očekáváte odpověď)",
|
||||
"contactpage-includeip": "Přiložit ke zprávě mou IP adresu.",
|
||||
"contactpage-usermailererror": "Chyba poštovního programu:",
|
||||
"contactpage-captcha-error": "Chyba CAPTCHA",
|
||||
"contactpage-config-error-title": "Chyba kontaktního formuláře",
|
||||
"contactpage-config-error": "Kontaktní formulář buď pro tuto stránku není nakonfigurován, nebo je nakonfigurován chybně.",
|
||||
"contactpage-mustbeloggedin": "Pro odeslání kontaktního formuláře se musíte přihlásit."
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Kaszeba"
|
||||
]
|
||||
},
|
||||
"contactpage": "Starna łączbë"
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Chavash"
|
||||
]
|
||||
},
|
||||
"contactpage": "Ҫыхӑнмалли эл",
|
||||
"contactpage-usermailererror": "Электронлă почта урлă пĕлтерӳ янă чухне йăнăш тухрĕ:"
|
||||
}
|
21
i18n/cy.json
21
i18n/cy.json
|
@ -1,21 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Lloffiwr",
|
||||
"Robin Owain"
|
||||
]
|
||||
},
|
||||
"contactpage": "Tudalen gysylltu",
|
||||
"contactpage-desc": "[[Special:Contact|Ffurlen gysylltu ar gyfer ymwelwyr]]",
|
||||
"contactpage-title": "Cysylltu",
|
||||
"contactpage-pagetext": "Mae croeso i chi ddefnyddio'r ffurflen isod i gysylltu â ni.",
|
||||
"contactpage-legend": "Anfon e-bost",
|
||||
"contactpage-defsubject": "Neges",
|
||||
"contactpage-subject-and-sender": "$1 (oddi wrth $2)",
|
||||
"contactpage-subject-and-sender-withip": "$1 (oddi wrth $2 ar $3)",
|
||||
"contactpage-fromname": "Eich enw:",
|
||||
"contactpage-fromaddress": "Eich cyfeiriad e-bost:",
|
||||
"contactpage-formfootnotes": "(angenrheidiol os dymunwch dderbyn ateb)",
|
||||
"contactpage-includeip": "Cynnwys fy nghyfeiriad IP yn y neges hon.",
|
||||
"contactpage-usermailererror": "Dychwelwyd gwall gan y rhaglen e-bost:"
|
||||
}
|
27
i18n/da.json
27
i18n/da.json
|
@ -1,27 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Byrial",
|
||||
"Cgtdk",
|
||||
"Christian List",
|
||||
"Hylle",
|
||||
"Thomsen"
|
||||
]
|
||||
},
|
||||
"contactpage": "Kontaktside",
|
||||
"contactpage-desc": "[[Special:Contact|Kontaktformular for besøgende]]",
|
||||
"contactpage-title": "Kontakt",
|
||||
"contactpage-pagetext": "Brug formularen herunder til at kontakte os.",
|
||||
"contactpage-legend": "Send e-mail",
|
||||
"contactpage-defsubject": "Kontaktbesked",
|
||||
"contactpage-subject-and-sender": "$1 (fra $2)",
|
||||
"contactpage-subject-and-sender-withip": "$1 (fra $2 på $3)",
|
||||
"contactpage-fromname": "Dit navn:",
|
||||
"contactpage-fromaddress": "Din e-mailadresse:",
|
||||
"contactpage-formfootnotes": "(nødvendig hvis du ønsker at få svar)",
|
||||
"contactpage-includeip": "Inkluder min IP-adresse i denne besked.",
|
||||
"contactpage-usermailererror": "E-mail-modulet returnerede en fejl:",
|
||||
"contactpage-captcha-error": "CAPTCHA fejl",
|
||||
"contactpage-config-error-title": "Fejl i kontaktformular",
|
||||
"contactpage-config-error": "En kontaktformular er enten ikke konfigureret for denne side eller er konfigureret forkert."
|
||||
}
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Kghbln",
|
||||
"Raimond Spekking"
|
||||
]
|
||||
},
|
||||
"contactpage-pagetext": "Mit diesem Formular können Sie uns Nachrichten zukommen lassen.",
|
||||
"contactpage-fromname": "Ihr Name:",
|
||||
"contactpage-fromaddress": "Ihre E-Mail-Adresse:"
|
||||
}
|
28
i18n/de.json
28
i18n/de.json
|
@ -1,28 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Kghbln",
|
||||
"LWChris",
|
||||
"Metalhead64",
|
||||
"Raimond Spekking",
|
||||
"Umherirrender"
|
||||
]
|
||||
},
|
||||
"contactpage": "Kontaktseite",
|
||||
"contactpage-desc": "Ergänzt eine [[Special:Contact|Spezialseite]] als Kontaktformular für Besucher",
|
||||
"contactpage-title": "Kontakt",
|
||||
"contactpage-pagetext": "Mit diesem Formular kannst du uns Nachrichten zukommen lassen.",
|
||||
"contactpage-legend": "E-Mail senden",
|
||||
"contactpage-defsubject": "Kontaktnachricht",
|
||||
"contactpage-subject-and-sender": "$1 (von $2)",
|
||||
"contactpage-subject-and-sender-withip": "$1 (von $2 mit der IP-Adresse $3)",
|
||||
"contactpage-fromname": "Dein Name:",
|
||||
"contactpage-fromaddress": "Deine E-Mail-Adresse:",
|
||||
"contactpage-formfootnotes": "(wird benötigt, um antworten zu können)",
|
||||
"contactpage-includeip": "Meine IP-Adresse in diese Nachricht einfügen.",
|
||||
"contactpage-usermailererror": "Beim Versenden gab es folgende Fehlermeldung:",
|
||||
"contactpage-captcha-error": "CAPTCHA-Fehler",
|
||||
"contactpage-config-error-title": "Kontaktformularfehler",
|
||||
"contactpage-config-error": "Entweder ist kein Kontaktformular für diese Seite konfiguriert oder es ist falsch konfiguriert.",
|
||||
"contactpage-mustbeloggedin": "Bitte melde dich an, um ein Kontaktformular abzuschicken."
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Dinkawiki"
|
||||
]
|
||||
},
|
||||
"contactpage": "Apämëŋiëëc"
|
||||
}
|
|
@ -1,29 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Erdemaslancan",
|
||||
"Kumkumuk",
|
||||
"Marmase",
|
||||
"Mirzali",
|
||||
"Orbot707",
|
||||
"Xoser"
|
||||
]
|
||||
},
|
||||
"contactpage": "Pela irtıbati",
|
||||
"contactpage-desc": "[[Special:Contact|Qe meymanan enformasyonê kontakî]]",
|
||||
"contactpage-title": "İrtıbat",
|
||||
"contactpage-pagetext": "Qe ma rê kontak kerdişî rê, ma rica kenê ena form sero kar bike.",
|
||||
"contactpage-legend": "E-poste bırışe",
|
||||
"contactpage-defsubject": "Mesajê kontakî",
|
||||
"contactpage-subject-and-sender": "$1 ($2 ra)",
|
||||
"contactpage-subject-and-sender-withip": "$1 ($2 ra $3 de)",
|
||||
"contactpage-fromname": "Nameyê şıma:",
|
||||
"contactpage-fromaddress": "Adresa e-posteyê şıma:",
|
||||
"contactpage-formfootnotes": "(şıma ke yew cewab wazenê lazım beno)",
|
||||
"contactpage-includeip": "Adresê IP cı ke mesaci tede.",
|
||||
"contactpage-usermailererror": "Xızmeta e-postey xeta dayê:",
|
||||
"contactpage-captcha-error": "Xetay CAPTCHA",
|
||||
"contactpage-config-error-title": "Xetay fotmdê irtibati",
|
||||
"contactpage-config-error": "Forma irtibati ya qandê pela timar nêbiya yana xırab timar biya",
|
||||
"contactpage-mustbeloggedin": "Yew formê irtibati rıştışi rê cıkewe hesabê ho"
|
||||
}
|
|
@ -1,20 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Michawiki"
|
||||
]
|
||||
},
|
||||
"contactpage": "Kontaktowy bok",
|
||||
"contactpage-desc": "[[Special:Contact|Kontaktowy formular za wobglědowarjow]]",
|
||||
"contactpage-title": "Kontakt",
|
||||
"contactpage-pagetext": "Pšosym wužyj toś ten formular, aby se z nami do zwiska stajił.",
|
||||
"contactpage-legend": "E-mail pósłaś",
|
||||
"contactpage-defsubject": "Kontaktowa powěźenka",
|
||||
"contactpage-subject-and-sender": "$1 (z $2)",
|
||||
"contactpage-subject-and-sender-withip": "$1 (wót $2 na $3)",
|
||||
"contactpage-fromname": "Twójo mě:",
|
||||
"contactpage-fromaddress": "Twója e-mailowa adresa:",
|
||||
"contactpage-formfootnotes": "(trěbny, jolic coš wótegrono)",
|
||||
"contactpage-includeip": "Móju IP-adresu w toś tej powěźeńce zapśěgnuś.",
|
||||
"contactpage-usermailererror": "E-mailowy objekt jo zmólku wrośił."
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"रमेश सिंह बोहरा"
|
||||
]
|
||||
},
|
||||
"contactpage": "सम्पर्क पानो"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Aguve"
|
||||
]
|
||||
},
|
||||
"contactpage": "Kadodo ƒe axa"
|
||||
}
|
30
i18n/el.json
30
i18n/el.json
|
@ -1,30 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Consta",
|
||||
"Dada",
|
||||
"Glavkos",
|
||||
"Nikosgranturismogt",
|
||||
"Omnipaedista",
|
||||
"SucreRouge",
|
||||
"ZaDiak",
|
||||
"Περίεργος"
|
||||
]
|
||||
},
|
||||
"contactpage": "Σελίδα επικοινωνίας",
|
||||
"contactpage-desc": "[[Special:Contact|Φόρμα επαφής για επισκέπτες]]",
|
||||
"contactpage-title": "Επαφή",
|
||||
"contactpage-pagetext": "Παρακαλούμε χρησιμοποιείστε την παρακάτω φόρμα για να επικοινωνήσετε μαζί μας.",
|
||||
"contactpage-legend": "Αποστολή e-mail",
|
||||
"contactpage-defsubject": "Μήνυμα επαφής",
|
||||
"contactpage-subject-and-sender": "$1 (από $2)",
|
||||
"contactpage-subject-and-sender-withip": "$1 (από $2 σε $3)",
|
||||
"contactpage-fromname": "Το όνομά σας:",
|
||||
"contactpage-fromaddress": "Το ηλεκτρονικό ταχυδρομείο σας:",
|
||||
"contactpage-formfootnotes": "(απαραίτητο αν θέλετε μια απάντηση)",
|
||||
"contactpage-includeip": "Συμπεριλάβετε τη διεύθυνση IP μου σε αυτό το μήνυμα",
|
||||
"contactpage-usermailererror": "Σφάλμα ηλεκτρονικού ταχυδρομείου:",
|
||||
"contactpage-captcha-error": "Σφάλμα CAPTCHA",
|
||||
"contactpage-config-error-title": "Σφάλμα φόρμας επαφής",
|
||||
"contactpage-config-error": "Μια φόρμα επαφής δεν έχει ρυθμιστεί για αυτή τη σελίδα ή έχει ρυθμιστεί λανθασμένα."
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Chase me ladies, I'm the Cavalry"
|
||||
]
|
||||
},
|
||||
"contactpage": "Contact page"
|
||||
}
|
45
i18n/en.json
45
i18n/en.json
|
@ -1,25 +1,24 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Daniel Kinzler",
|
||||
"Reedy"
|
||||
]
|
||||
},
|
||||
"contactpage": "Contact page",
|
||||
"contactpage-desc": "[[Special:Contact|Contact form for visitors]]",
|
||||
"contactpage-title": "Contact",
|
||||
"contactpage-pagetext": "Please use the form below to contact us.",
|
||||
"contactpage-legend": "Send email",
|
||||
"contactpage-defsubject": "Contact message",
|
||||
"contactpage-subject-and-sender": "$1 (from $2)",
|
||||
"contactpage-subject-and-sender-withip": "$1 (from $2 at $3)",
|
||||
"contactpage-fromname": "Your name:",
|
||||
"contactpage-fromaddress": "Your email address:",
|
||||
"contactpage-formfootnotes": "(needed if you want an answer)",
|
||||
"contactpage-includeip": "Include my IP address in this message.",
|
||||
"contactpage-usermailererror": "Mail object returned error:",
|
||||
"contactpage-captcha-error": "CAPTCHA error",
|
||||
"contactpage-config-error-title": "Contact form error",
|
||||
"contactpage-config-error": "A contact form is either not configured for this page or is configured incorrectly.",
|
||||
"contactpage-mustbeloggedin": "Please log in to submit a contact form."
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Daniel Kinzler",
|
||||
"Reedy"
|
||||
]
|
||||
},
|
||||
"contactpage": "Contact page",
|
||||
"contactpage-desc": "[[Special:Contact|Contact form for visitors]]",
|
||||
"contactpage-title": "Contact",
|
||||
"contactpage-pagetext": "Use the form below to send me an email.",
|
||||
"contactpage-legend": "Send email",
|
||||
"contactpage-defsubject": "Contact message",
|
||||
"contactpage-subject-and-sender": "❗❗ New Contact Me Form ❗❗",
|
||||
"contactpage-fromname": "Your name:",
|
||||
"contactpage-fromaddress": "Your email address:",
|
||||
"contactpage-formfootnotes": "(needed if you want an answer)",
|
||||
"contactpage-includeip": "Include my IP address in this message.",
|
||||
"contactpage-usermailererror": "Mail object returned error:",
|
||||
"contactpage-captcha-error": "CAPTCHA error",
|
||||
"contactpage-config-error-title": "Contact form error",
|
||||
"contactpage-config-error": "A contact form is either not configured for this page or is configured incorrectly.",
|
||||
"contactpage-mustbeloggedin": "Please log in to submit a contact form."
|
||||
}
|
||||
|
|
20
i18n/eo.json
20
i18n/eo.json
|
@ -1,20 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Yekrats"
|
||||
]
|
||||
},
|
||||
"contactpage": "Kontaktpaĝo",
|
||||
"contactpage-desc": "[[Special:Contact|Kontaktpaĝo por vizitantoj]]",
|
||||
"contactpage-title": "Kontaktigi",
|
||||
"contactpage-pagetext": "Bonvolu uzi la suban kamparon por kontakti nin.",
|
||||
"contactpage-legend": "Sendi retpoŝton",
|
||||
"contactpage-defsubject": "Kontakta Mesaĝo",
|
||||
"contactpage-subject-and-sender": "$1 (de $2)",
|
||||
"contactpage-subject-and-sender-withip": "$1 (de $2 ĉe $3)",
|
||||
"contactpage-fromname": "Via nomo: *",
|
||||
"contactpage-fromaddress": "Via retadreso: **",
|
||||
"contactpage-formfootnotes": "* nedeviga<br />\n** nedeviga sed deviga se vi volas respondon",
|
||||
"contactpage-includeip": "Inkluzivi mian IP-adreson en ĉi tiu mesaĝo",
|
||||
"contactpage-usermailererror": "Resendita retmesaĝa erarsubjekto:"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"KATRINE1993"
|
||||
]
|
||||
},
|
||||
"contactpage": "Pagina de contacto"
|
||||
}
|
33
i18n/es.json
33
i18n/es.json
|
@ -1,33 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Crazymadlover",
|
||||
"Dgstranz",
|
||||
"Fitoschido",
|
||||
"Imre",
|
||||
"Locos epraix",
|
||||
"Macofe",
|
||||
"Peter17",
|
||||
"Sanbec",
|
||||
"Sporeunai",
|
||||
"לערי ריינהארט"
|
||||
]
|
||||
},
|
||||
"contactpage": "Página de contacto",
|
||||
"contactpage-desc": "[[Special:Contact|Formulario de contacto para visitantes]]",
|
||||
"contactpage-title": "Contacto",
|
||||
"contactpage-pagetext": "Utiliza el siguiente formulario para ponerte en contacto con nosotros.",
|
||||
"contactpage-legend": "Enviar correo electrónico",
|
||||
"contactpage-defsubject": "Mensaje de contacto",
|
||||
"contactpage-subject-and-sender": "$1 (de $2)",
|
||||
"contactpage-subject-and-sender-withip": "$1 (de $2 en $3)",
|
||||
"contactpage-fromname": "Tu nombre:",
|
||||
"contactpage-fromaddress": "Tu dirección de correo:",
|
||||
"contactpage-formfootnotes": "(necesario si quieres una respuesta)",
|
||||
"contactpage-includeip": "Incluir mi dirección IP en este mensaje.",
|
||||
"contactpage-usermailererror": "El sistema de correo devolvió un error:",
|
||||
"contactpage-captcha-error": "Error en el CAPTCHA",
|
||||
"contactpage-config-error-title": "Error en el formulario de contacto",
|
||||
"contactpage-config-error": "Un formulario de contacto no está configurado para esta página o no está configurado correctamente.",
|
||||
"contactpage-mustbeloggedin": "Inicia sesión para poder enviar un formulario de contacto."
|
||||
}
|
21
i18n/et.json
21
i18n/et.json
|
@ -1,21 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Avjoska",
|
||||
"Pikne"
|
||||
]
|
||||
},
|
||||
"contactpage": "Ühendustvõtmise lehekülg",
|
||||
"contactpage-desc": "[[Special:Contact|Ühendustvõtmise vorm külalistele]]",
|
||||
"contactpage-title": "Kontakt",
|
||||
"contactpage-pagetext": "Palun kasuta all olevat vormi meiega ühenduse võtmiseks.",
|
||||
"contactpage-legend": "Saada e-kiri",
|
||||
"contactpage-defsubject": "Sõnum",
|
||||
"contactpage-subject-and-sender": "$1 (saatis $2)",
|
||||
"contactpage-subject-and-sender-withip": "$1 (saatis $2 IP-aadressilt $3)",
|
||||
"contactpage-fromname": "Sinu nimi:",
|
||||
"contactpage-fromaddress": "Sinu e-posti aadress:",
|
||||
"contactpage-formfootnotes": "(vajalik, kui tahad vastust)",
|
||||
"contactpage-includeip": "Lisa selle sõnumi juurde minu IP-aadress.",
|
||||
"contactpage-usermailererror": "Saatmise viga:"
|
||||
}
|
23
i18n/eu.json
23
i18n/eu.json
|
@ -1,23 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"An13sa",
|
||||
"Subi",
|
||||
"Theklan",
|
||||
"Xabier Armendaritz"
|
||||
]
|
||||
},
|
||||
"contactpage": "Kontaktu orrialdea",
|
||||
"contactpage-desc": "[[Special:Contact|Bisitarientzako kontaktu formularioa]]",
|
||||
"contactpage-title": "Kontaktatu",
|
||||
"contactpage-pagetext": "Erabil ezazu beheko formularioa gurekin kontaktatzeko.",
|
||||
"contactpage-legend": "Bidali mezu elektronikoa",
|
||||
"contactpage-defsubject": "Kontaktu mezua",
|
||||
"contactpage-subject-and-sender": "$1 ($2(e)k bidalia)",
|
||||
"contactpage-subject-and-sender-withip": "$1 ($2-k bidalia, $3-(r)ekin)",
|
||||
"contactpage-fromname": "Zure izena:",
|
||||
"contactpage-fromaddress": "Zure helbide elektronikoa:",
|
||||
"contactpage-formfootnotes": "(beharrezkoa erantzuna nahi bada)",
|
||||
"contactpage-includeip": "Nire IP helbidea mezu honetan sartu.",
|
||||
"contactpage-usermailererror": "Mail objektuak errore hau itzuli du:"
|
||||
}
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Better"
|
||||
]
|
||||
},
|
||||
"contactpage-subject-and-sender": "$1 (endi $2)",
|
||||
"contactpage-fromname": "el tu nombri *",
|
||||
"contactpage-fromaddress": "el tu email **",
|
||||
"contactpage-usermailererror": "El sistema e correu degorvió un marru:"
|
||||
}
|
29
i18n/fa.json
29
i18n/fa.json
|
@ -1,29 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Alirezaaa",
|
||||
"Armin1392",
|
||||
"Ebraminio",
|
||||
"Ladsgroup",
|
||||
"Mjbmr",
|
||||
"Reza1615",
|
||||
"Wayiran"
|
||||
]
|
||||
},
|
||||
"contactpage": "صفحه تماس",
|
||||
"contactpage-desc": "[[Special:Contact|فرم تماس برای بازدیدکنندگان]]",
|
||||
"contactpage-title": "تماس",
|
||||
"contactpage-pagetext": "لطفاً از فرم زیر برای تماس با ما استفاده کنید.",
|
||||
"contactpage-legend": "ارسال ایمیل",
|
||||
"contactpage-defsubject": "پیام تماس",
|
||||
"contactpage-subject-and-sender": "$1 (از $2)",
|
||||
"contactpage-subject-and-sender-withip": "$1 (از $2 در $3)",
|
||||
"contactpage-fromname": "نام شما:",
|
||||
"contactpage-fromaddress": "آدرس ایمیل شما:",
|
||||
"contactpage-formfootnotes": "(اگر جواب میخواهید مورد نیاز است)",
|
||||
"contactpage-includeip": "نشانی آیپی من را با این پیغام ضمیمه کن.",
|
||||
"contactpage-usermailererror": "شیء ایمیل خطا بازگرداند:",
|
||||
"contactpage-captcha-error": "خطای کپتچا",
|
||||
"contactpage-config-error-title": "خطای فرم تماس",
|
||||
"contactpage-config-error": "فرم تماس برای ایت صفحه تنظیم نشدهاست یا به صورت نادرست تنظیم شدهاست."
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Ibrahima"
|
||||
]
|
||||
},
|
||||
"contactpage": "Hello jokkondiral"
|
||||
}
|
31
i18n/fi.json
31
i18n/fi.json
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"01miki10",
|
||||
"Cimon Avaro",
|
||||
"Crt",
|
||||
"Jaakonam",
|
||||
"McSalama",
|
||||
"Nike",
|
||||
"Silvonen",
|
||||
"Vililikku"
|
||||
]
|
||||
},
|
||||
"contactpage": "Yhteydenottosivu",
|
||||
"contactpage-desc": "[[Special:Contact|Yhteydenottolomake vierailijoille]].",
|
||||
"contactpage-title": "Ota yhteyttä",
|
||||
"contactpage-pagetext": "Voit ottaa yhteyttä meihin alla olevalla lomakkeella.",
|
||||
"contactpage-legend": "Lähetä sähköposti",
|
||||
"contactpage-defsubject": "Viestisi",
|
||||
"contactpage-subject-and-sender": "$1 (lähettäjä: $2)",
|
||||
"contactpage-subject-and-sender-withip": "$1 (käyttäjältä $2 osoitteesta $3)",
|
||||
"contactpage-fromname": "Nimesi:",
|
||||
"contactpage-fromaddress": "Sähköpostiosoitteesi:",
|
||||
"contactpage-formfootnotes": "(tarvitaan, jos haluat vastauksen)",
|
||||
"contactpage-includeip": "Sisällytä IP-osoitteeni tähän viestiin.",
|
||||
"contactpage-usermailererror": "Postitus palautti virheen:",
|
||||
"contactpage-captcha-error": "CAPTCHA-virhe",
|
||||
"contactpage-config-error-title": "Yhteydenottolomakkeen virhe",
|
||||
"contactpage-config-error": "Yhteydenottolomaketta ei ole määritetty tälle sivulle tai se on määritetty virheellisesti.",
|
||||
"contactpage-mustbeloggedin": "Kirjaudu sisään lähettääksesi yhteydenottolomakkeen."
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Palmtree222"
|
||||
]
|
||||
},
|
||||
"contactpage": "kontaktisivu"
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"EileenSanda"
|
||||
]
|
||||
},
|
||||
"contactpage": "Samband",
|
||||
"contactpage-usermailererror": "Feilur í handfaranini av meyli:"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Mahuton"
|
||||
]
|
||||
},
|
||||
"contactpage": "Wlǎn nú sɛɖo mǐ"
|
||||
}
|
33
i18n/fr.json
33
i18n/fr.json
|
@ -1,33 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Gomoko",
|
||||
"Grondin",
|
||||
"IAlex",
|
||||
"Peter17",
|
||||
"Sherbrooke",
|
||||
"Urhixidur",
|
||||
"Verdy p",
|
||||
"Windes",
|
||||
"Wladek92",
|
||||
"לערי ריינהארט"
|
||||
]
|
||||
},
|
||||
"contactpage": "Page de contact",
|
||||
"contactpage-desc": "[[Special:Contact|Formulaire de contact pour les visiteurs]]",
|
||||
"contactpage-title": "Contacter",
|
||||
"contactpage-pagetext": "Veuillez utiliser le formulaire ci-dessous pour nous contacter.",
|
||||
"contactpage-legend": "Envoyer un courriel",
|
||||
"contactpage-defsubject": "Message",
|
||||
"contactpage-subject-and-sender": "$1 (de $2)",
|
||||
"contactpage-subject-and-sender-withip": "$1 (de $2 à $3)",
|
||||
"contactpage-fromname": "Votre nom :",
|
||||
"contactpage-fromaddress": "Votre adresse de courriel :",
|
||||
"contactpage-formfootnotes": "(obligatoire si vous désirez une réponse)",
|
||||
"contactpage-includeip": "Inclure mon adresse IP dans ce message.",
|
||||
"contactpage-usermailererror": "Erreur dans l'objet du courriel :",
|
||||
"contactpage-captcha-error": "Erreur de CAPTCHA",
|
||||
"contactpage-config-error-title": "Formulaire de contact pour signaler une erreur",
|
||||
"contactpage-config-error": "Un formulaire de contact n'est pas configuré pour cette page ou est mal configuré.",
|
||||
"contactpage-mustbeloggedin": "Veuillez vous connecter pour soumettre un formulaire de contact."
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Hangmanwa7id"
|
||||
]
|
||||
},
|
||||
"contactpage": "Page des contacts"
|
||||
}
|
|
@ -1,20 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"ChrisPtDe"
|
||||
]
|
||||
},
|
||||
"contactpage": "Pâge de contacto",
|
||||
"contactpage-desc": "[[Special:Contact|Formulèro de contacte por los visitors]].",
|
||||
"contactpage-title": "Contacte",
|
||||
"contactpage-pagetext": "Volyéd utilisar lo formulèro ce-desot por vos veriér vers nos.",
|
||||
"contactpage-legend": "Mandar un mèssâjo",
|
||||
"contactpage-defsubject": "Mèssâjo",
|
||||
"contactpage-subject-and-sender": "$1 (de $2)",
|
||||
"contactpage-subject-and-sender-withip": "$1 (de $2 a $3)",
|
||||
"contactpage-fromname": "Voutron nom : *",
|
||||
"contactpage-fromaddress": "Voutra adrèce èlèctronica : **",
|
||||
"contactpage-formfootnotes": "* u chouèx<br />\n** u chouèx mas nècèssèro se vos voléd una rèponsa",
|
||||
"contactpage-includeip": "Encllure mon adrèce IP dens ceti mèssâjo.",
|
||||
"contactpage-usermailererror": "Fôta dens la chousa du mèssâjo :"
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Murma174"
|
||||
]
|
||||
},
|
||||
"contactpage": "Kontaktsidj",
|
||||
"contactpage-usermailererror": "Det e-mail objekt wiset en feeler uun."
|
||||
}
|
|
@ -1,10 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Klenje",
|
||||
"Tocaibon"
|
||||
]
|
||||
},
|
||||
"contactpage": "Contats",
|
||||
"contactpage-fromname": "Il to non: *"
|
||||
}
|
12
i18n/fy.json
12
i18n/fy.json
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Robin van der Vliet",
|
||||
"Robin0van0der0vliet"
|
||||
]
|
||||
},
|
||||
"contactpage": "Kontaktside",
|
||||
"contactpage-legend": "E-mail stjoere",
|
||||
"contactpage-fromaddress": "Jo e-mailadres:",
|
||||
"contactpage-usermailererror": "Flatermelding by ferstjoeren:"
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Tem"
|
||||
]
|
||||
},
|
||||
"contactpage": "Leathanach teagmhála",
|
||||
"contactpage-usermailererror": "Earráid leis an píosa ríomhphoist:"
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Amire80",
|
||||
"Benebiankie"
|
||||
]
|
||||
},
|
||||
"contactpage": "Shraamɔ baafa"
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": []
|
||||
},
|
||||
"contactpage-usermailererror": "Mail位置返回错误:"
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": []
|
||||
},
|
||||
"contactpage-usermailererror": "Mail位置返回錯誤:"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Laetitia Kb"
|
||||
]
|
||||
},
|
||||
"contactpage": "Paj pou kontact"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"LeGuyanaisPure"
|
||||
]
|
||||
},
|
||||
"contactpage": "Kontak"
|
||||
}
|
23
i18n/gd.json
23
i18n/gd.json
|
@ -1,23 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"GunChleoc"
|
||||
]
|
||||
},
|
||||
"contactpage": "Fios thugainn",
|
||||
"contactpage-desc": "[[Special:Contact|Foirm do dh'aoighean gus fios a chur thugainn]]",
|
||||
"contactpage-title": "Fios thugainn",
|
||||
"contactpage-pagetext": "Cleachd am foirm gu h-ìosail gus teachdaireachd a chur thugainn.",
|
||||
"contactpage-legend": "Cuir post-d",
|
||||
"contactpage-defsubject": "Teachdaireachd",
|
||||
"contactpage-subject-and-sender": "$1 (o $2)",
|
||||
"contactpage-subject-and-sender-withip": "$1 (o $2 aig $3)",
|
||||
"contactpage-fromname": "D' ainm:",
|
||||
"contactpage-fromaddress": "An seòladh puist-d agad:",
|
||||
"contactpage-formfootnotes": "(feumaidh sinn seo ma tha thu airson freagairt fhaighinn)",
|
||||
"contactpage-includeip": "Gabh an seòladh IP agam a-steach san teachdaireachd.",
|
||||
"contactpage-usermailererror": "Thill oibseact a' phuist-d mearachd:",
|
||||
"contactpage-captcha-error": "Mearachd leis a' CAPTCHA",
|
||||
"contactpage-config-error-title": "Mearachd leis an fhoirm conaltraidh",
|
||||
"contactpage-config-error": "Cha deach foirm conaltraidh a rèiteachadh airson na duilleige seo no cha deach a rèiteachadh gu dòigheil."
|
||||
}
|
29
i18n/gl.json
29
i18n/gl.json
|
@ -1,29 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Alma",
|
||||
"Banjo",
|
||||
"Elisardojm",
|
||||
"Toliño",
|
||||
"Vivaelcelta",
|
||||
"Xosé"
|
||||
]
|
||||
},
|
||||
"contactpage": "Páxina de contacto",
|
||||
"contactpage-desc": "[[Special:Contact|Formulario de contacto para os visitantes]]",
|
||||
"contactpage-title": "Contacto",
|
||||
"contactpage-pagetext": "Use o formulario de embaixo para contactar con nós.",
|
||||
"contactpage-legend": "Enviar un correo electrónico",
|
||||
"contactpage-defsubject": "Mensaxe de contacto",
|
||||
"contactpage-subject-and-sender": "$1 (de $2)",
|
||||
"contactpage-subject-and-sender-withip": "$1 (de $2 a $3)",
|
||||
"contactpage-fromname": "O seu nome:",
|
||||
"contactpage-fromaddress": "O seu correo electrónico:",
|
||||
"contactpage-formfootnotes": "(necesario se quere unha resposta)",
|
||||
"contactpage-includeip": "Incluír o meu enderezo IP nesta mensaxe.",
|
||||
"contactpage-usermailererror": "O obxecto enviado deu unha mensaxe de erro:",
|
||||
"contactpage-captcha-error": "Erro de CAPTCHA",
|
||||
"contactpage-config-error-title": "Erro do formulario de contacto",
|
||||
"contactpage-config-error": "O formulario de contacto non está configurado para esta páxina ou non está configurado correctamente.",
|
||||
"contactpage-mustbeloggedin": "Por favor, inicia a sesión para enviar un formulario de contacto."
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"V6rg",
|
||||
"شیخ"
|
||||
]
|
||||
},
|
||||
"contactpage": "تماسˇ ولگ"
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Darshan kandolkar",
|
||||
"Konknni mogi 24"
|
||||
]
|
||||
},
|
||||
"contactpage": "संपर्क पान"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"The Discoverer"
|
||||
]
|
||||
},
|
||||
"contactpage": "Sompork pan"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Marwan Mohamad"
|
||||
]
|
||||
},
|
||||
"contactpage": "Hubungi ami"
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue