Файловый менеджер - Редактировать - /var/www/html/QuestyCaptcha.zip
Ðазад
PK ! �C% � � extension.jsonnu �Iw�� { "name": "QuestyCaptcha", "author": [ "..." ], "url": "https://www.mediawiki.org/wiki/Extension:ConfirmEdit#QuestyCaptcha", "descriptionmsg": "questycaptcha-desc", "license-name": "GPL-2.0-or-later", "type": "antispam", "MessagesDirs": { "QuestyCaptcha": [ "i18n" ] }, "AutoloadClasses": { "QuestyCaptcha": "includes/QuestyCaptcha.php", "MediaWiki\\Extension\\ConfirmEdit\\QuestyCaptcha\\QuestyCaptcha": "includes/QuestyCaptcha.php" }, "AutoloadNamespaces": { "MediaWiki\\Extension\\ConfirmEdit\\QuestyCaptcha\\": "includes/" }, "config": { "CaptchaClass": { "value": "MediaWiki\\Extension\\ConfirmEdit\\QuestyCaptcha\\QuestyCaptcha" }, "CaptchaQuestions": { "value": [] } }, "manifest_version": 2 } PK ! y,l?� � includes/QuestyCaptcha.phpnu �Iw�� <?php /** * QuestyCaptcha class * * @file * @author Benjamin Lees <emufarmers@gmail.com> * @ingroup Extensions */ namespace MediaWiki\Extension\ConfirmEdit\QuestyCaptcha; use MediaWiki\Auth\AuthenticationRequest; use MediaWiki\Context\RequestContext; use MediaWiki\Extension\ConfirmEdit\Auth\CaptchaAuthenticationRequest; use MediaWiki\Extension\ConfirmEdit\SimpleCaptcha\SimpleCaptcha; use MediaWiki\Extension\ConfirmEdit\Store\CaptchaStore; use MediaWiki\Html\Html; use MediaWiki\Xml\Xml; class QuestyCaptcha extends SimpleCaptcha { /** * @var string used for questycaptcha-edit, questycaptcha-addurl, questycaptcha-badlogin, * questycaptcha-createaccount, questycaptcha-create, questycaptcha-sendemail via getMessage() */ protected static $messagePrefix = 'questycaptcha-'; /** * Validate a CAPTCHA response * * @note Trimming done as per T368112 * * @param string $answer * @param array $info * @return bool */ protected function keyMatch( $answer, $info ) { if ( is_array( $info['answer'] ) ) { return in_array( strtolower( trim( $answer ) ), array_map( 'strtolower', $info['answer'] ) ); } else { return strtolower( trim( $answer ) ) == strtolower( $info['answer'] ); } } /** * @param array &$resultArr */ protected function addCaptchaAPI( &$resultArr ) { $captcha = $this->getCaptcha(); $index = $this->storeCaptcha( $captcha ); $resultArr['captcha'] = $this->describeCaptchaType(); $resultArr['captcha']['id'] = $index; $resultArr['captcha']['question'] = $captcha['question']; } /** * @return array */ public function describeCaptchaType() { return [ 'type' => 'question', 'mime' => 'text/html', ]; } /** * @return array */ public function getCaptcha() { global $wgCaptchaQuestions; // Backwards compatibility if ( $wgCaptchaQuestions === array_values( $wgCaptchaQuestions ) ) { return $wgCaptchaQuestions[ mt_rand( 0, count( $wgCaptchaQuestions ) - 1 ) ]; } $question = array_rand( $wgCaptchaQuestions, 1 ); $answer = $wgCaptchaQuestions[ $question ]; return [ 'question' => $question, 'answer' => $answer ]; } /** * @param int $tabIndex * @return array */ public function getFormInformation( $tabIndex = 1 ) { $captcha = $this->getCaptcha(); if ( !$captcha ) { die( "No questions found; set some in LocalSettings.php using the format from QuestyCaptcha.php." ); } $index = $this->storeCaptcha( $captcha ); return [ 'html' => "<p><label for=\"wpCaptchaWord\">{$captcha['question']}</label> " . Html::element( 'input', [ 'name' => 'wpCaptchaWord', 'id' => 'wpCaptchaWord', 'required', 'autocomplete' => 'off', // tab in before the edit textarea 'tabindex' => $tabIndex ] ) . "</p>\n" . Xml::element( 'input', [ 'type' => 'hidden', 'name' => 'wpCaptchaId', 'id' => 'wpCaptchaId', 'value' => $index ] ) ]; } public function showHelp() { $context = RequestContext::getMain(); $out = $context->getOutput(); $out->setPageTitleMsg( $context->msg( 'captchahelp-title' ) ); $out->addWikiMsg( 'questycaptchahelp-text' ); if ( CaptchaStore::get()->cookiesNeeded() ) { $out->addWikiMsg( 'captchahelp-cookies-needed' ); } } /** * @param array $captchaData * @param string $id * @return mixed */ public function getCaptchaInfo( $captchaData, $id ) { return $captchaData['question']; } /** * @param array $requests * @param array $fieldInfo * @param array &$formDescriptor * @param string $action */ public function onAuthChangeFormFields( array $requests, array $fieldInfo, array &$formDescriptor, $action ) { /** @var CaptchaAuthenticationRequest $req */ $req = AuthenticationRequest::getRequestByClass( $requests, CaptchaAuthenticationRequest::class, true ); if ( !$req ) { return; } // declare RAW HTML output. $formDescriptor['captchaInfo']['raw'] = true; $formDescriptor['captchaWord']['label-message'] = null; } } class_alias( QuestyCaptcha::class, 'QuestyCaptcha' ); PK ! ��FN�F �F COPYINGnu �Iw�� GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. <one line to give the program's name and a brief idea of what it does.> Copyright (C) <year> <name of author> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. <signature of Ty Coon>, 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. PK ! ���&� � i18n/ba.jsonnu �Iw�� { "@metadata": { "authors": [ "Assele", "Sagan", "З. ӘЙЛЕ", "Ләйсән", "Рустам Нурыев" ] }, "questycaptcha-addurl": "Тексығыҙҙа яңы тышҡы һылтанмалар бар.\nАвтоматик спамдан һаҡлау маҡсатында, түбәндәге һорауға яуап бирегеҙ ([[Special:Captcha/help|тулыраҡ мәғлүмәт]]):", "questycaptcha-badlogin": "Автоматик спамдан һаҡлау маҡсатында, түбәндәге һорауға яуап бирегеҙ ([[Special:Captcha/help|тулыраҡ мәғлүмәт]]):", "questycaptcha-createaccount": "Иҫәп яҙмаларын автоматик булдырыуҙан һаҡлау маҡсатында, түбәндәге һорауға яуап бирегеҙ ([[Special:Captcha/help|тулыраҡ мәғлүмәт]]):", "questycaptcha-create": "Яңы бит булдырыу өсөн, түбәндәге һорауға яуап бирегеҙ ([[Special:Captcha/help|тулыраҡ мәғлүмәт]]):", "questycaptcha-edit": "Был битте мөхәррирләү өсөн, түбәндәге һорауға яуап бирегеҙ ([[Special:Captcha/help|тулыраҡ мәғлүмәт]]):", "questycaptcha-sendemail": "Автоматик спамдан һаҡлау маҡсатында, түбәндәге һорауға яуап бирегеҙ ([[Special:Captcha/help|тулыраҡ мәғлүмәт]]):", "questycaptchahelp-text": "Эстәлек өҫтәргә һәм эстәлеген мөхәррирләргә мөмкинлек биргән веб-сайттар, шул иҫәптән был вики ҙа, йыш ҡына сайттарға автоматик һылтанмалар өҫтәгән программалар ҡулланған спамлаусыларҙың маҡсатына әйләнә.\nБындай һылтанмалар юйыла ала, әммә улар һиҙелерлек уңайһыҙлыҡ килтерә.\n\nҠайһы бер ғәмәлдәрҙе башҡарған ваҡытта (мәҫәлән, биткә яңы һылтанма өҫтәгәндә) вики һеҙгә һорауға яуап бирергә тәҡдим итә ала. Был мәсьәләне автоматлаштырыу ауыр булғанға күрә, спамлаусы һәм башҡа автоматлаштырылған зыян килтереүсе программалар уны башҡара алмай, шул уҡ ваҡтта кешеләр уны еңел хәл итә.\n\nӘгәр бындай тикшереү һеҙгә сайтта намыҫ менән эшләргә ҡамасаулаһа, [[Special:ListAdmins|хакимдарға]] мөрәжәғәт итегеҙ.\n\nМөхәррирләүгә кире ҡайтыу өсөн, браузерығыҙҙа \"Кирегә\" төймәһенә баҫығыҙ." } PK ! ��z�� � i18n/yi.jsonnu �Iw�� { "@metadata": { "authors": [ "פוילישער" ] }, "questycaptcha-create": "צו שאַפֿן דעם בלאַט, ביטע ענטפֿערט די פֿראַגע אונטן ([[Special:Captcha/help|מער אינפֿארמאַציע]]):" } PK ! �%�� � i18n/oc.jsonnu �Iw�� { "@metadata": { "authors": [ "Cedric31" ] }, "questycaptcha-addurl": "Vòstra modificacion inclutz de ligams extèrnes novèls.\nPer nos ajudar dins la proteccion contra lo spam automatizat, respondètz a la question çaijós ([[Special:Captcha/help|mai d’entresenhas]]) :", "questycaptcha-badlogin": "Per nos ajudar a prevenir la copadura dels senhals per d'automats, respondètz a la question çaijós ([[Special:Captcha/help|mai d’entresenhas]]) :", "questycaptcha-createaccount": "Per nos ajudar a luchar contra las creacions automaticas de comptes, respondètz a la question qu'apareis çaijós ([[Special:Captcha/help|mai d’entresenhas]]) :", "questycaptcha-create": "Per crear la pagina, respondètz a la question çaijós ([[Special:Captcha/help|mai d’entresenhas]]) :", "questycaptcha-edit": "Per modificar aquesta pagina, respondètz a la question çaijós ([[Special:Captcha/help|mai d’entresenhas]]) :", "questycaptcha-sendemail": "Per tal de nos ajudar a prevenir lo spam automatic, entratz los mots qu'apareisson dins la bóstia çaijós ([[Special:Captcha/help|mai d’informacions]]) :", "questycaptchahelp-text": "Los sites web qu'acceptan de contribucions del public, coma aqueste wiki, son sovent victimas de polluposteires qu'utilizan d'aisinas automatizadas per plaçar de ligams nombroses cap a lors sites.\nQuitament s'aquesta pollucion pòt èsser escafada, es irritanta.\n\nDe còps, particularament al moment de l’apondon de ligams extèrnes novèls dins una pagina, lo wiki vos pòt demandar de respondre a una question.\nAqueste prètzfait es pas de bon acomplir d'un biais automatizat, aquò permet a la màger part dels umans de realizar lors contribucions tot en empachant la màger part dels polluposteires e autres atacants robotizats.\n\nContactatz [[Special:ListAdmins|los administrators del site]] s'aquò vos empacha de faiçon imprevista de far de contribucions legitimas.\n\nClicatz sul boton « Precedent » de vòstre navigador per tornar a la pagina de modificacion." } PK ! �+�� � i18n/sr-el.jsonnu �Iw�� { "@metadata": { "authors": [ "Milicevic01" ] }, "questycaptcha-desc": "Stvarač slikovnog koda za potvrdu uređivanja", "questycaptcha-addurl": "Vaša izmena sadrži nove spoljašnje veze.\nU cilju zaštite od nepoželjnih poruka, ljubazno Vas molimo da odgovorite na pitanje prikazano ispod ([[Special:Captcha/help|pomoć]]):", "questycaptcha-badlogin": "Da bi onemogućili automatizovano probijanje lozinki, ljubazno Vas molimo da odgovorite na pitanje prikazano ispod ([[Special:Captcha/help|pomoć]]):", "questycaptcha-createaccount": "Da bi onemogućili automatizovano otvaranje naloga, ljubazno Vas molimo da odgovorite na pitanje prikazano ispod ([[Special:Captcha/help|pomoć]]):", "questycaptcha-create": "Da bi napravili stranicu, molimo Vas da odgovorite na pitanje prikazano ispod ([[Special:Captcha/help|pomoć]]):", "questycaptcha-edit": "Da bi uredili ovu stranicu, molimo Vas da odgovorite na pitanje prikazano ispod ([[Special:Captcha/help|pomoć]]):", "questycaptcha-sendemail": "Da bi onemogućili automatizovano spamovanje, ljubazno Vas molimo da odgovorite na pitanje prikazano ispod ([[Special:Captcha/help|pomoć]]):" } PK ! ��Mm� � i18n/sr-ec.jsonnu �Iw�� { "@metadata": { "authors": [ "BadDog", "Milicevic01", "Rancher" ] }, "questycaptcha-desc": "Стварач сликовног кода за потврду уређивања", "questycaptcha-addurl": "Ваша измена садржи нове спољашње везе.\nУ циљу заштите од непожељних порука, љубазно Вас молимо да одговорите на питање приказано испод ([[Special:Captcha/help|помоћ]]):", "questycaptcha-badlogin": "Да би онемогућили аутоматизовано пробијање лозинки, љубазно Вас молимо да одговорите на питање приказано испод ([[Special:Captcha/help|помоћ]]):", "questycaptcha-createaccount": "Да би онемогућили аутоматизовано отварање налога, љубазно Вас молимо да одговорите на питање приказано испод ([[Special:Captcha/help|помоћ]]):", "questycaptcha-create": "Да би направили страницу, молимо Вас да одговорите на питање приказано испод ([[Special:Captcha/help|помоћ]]):", "questycaptcha-edit": "Да би уредили ову страницу, молимо Вас да одговорите на питање приказано испод ([[Special:Captcha/help|помоћ]]):", "questycaptcha-sendemail": "Да би онемогућили аутоматизовано спамовање, љубазно Вас молимо да одговорите на питање приказано испод ([[Special:Captcha/help|помоћ]]):" } PK ! �j� � i18n/gcr.jsonnu �Iw�� { "@metadata": { "authors": [ "Léon973" ] }, "questycaptchahelp-text": "Sit web-ya ki ka asèpté kontribisyon-yan di piblik, kou sa wiki, sa souvan viktim di polipòstò ki ka itilizé zouti-ya ki otonmatizé pou ajouté yé yannaj bò'd patché sit.\nMenm si sa polisyon pouvé fika éfasé, yé ka konstitchwé roun nwizans ki enpòrtan.\n\nPafwè, an partikilyé lò di ajou-a yannaj web nòv ki dèrò annan roun paj, wiki-a pouvé doumandé ou di réponn bay roun késyon.\nKou a roun tach ki difisil pou fè di fason otonmatizé, sa ka pèrmèt pou laplipa di moun-yan di réyalizé yé kontribisyon épi di arété an menm tan laplipa di polipòstò ké ròt atakan ki robotizé.\n\nSouplé, kontakté [[Special:ListAdmins|administratò-ya di sit]] si sa ka anpéché ou di fason ki èsèpsyonnèl di fè tchèk kontribisyon ki léjitim.\n\nKliké asou bouton-an \"Présédan\" di ou navigatò pou routounen bò paj-a di modifikasyon-an." } PK ! ��Ȼ� � i18n/mk.jsonnu �Iw�� { "@metadata": { "authors": [ "Bjankuloski06" ] }, "questycaptcha-desc": "Создавач на сликички со текнувало за потврда на уредувања", "questycaptcha-addurl": "Вашето уредување содржи нови надворешни врски.\nЗа го заштитиме викито од автоматизиран спам, би ве замолиле да одговорите на прашањето подолу ([[Special:Captcha/help|повеќе инфо]]):", "questycaptcha-badlogin": "За да ни помогнете да се заштитиме од автоматизирано пробивање на лозинки, би ве замолиле да одговорите на прашањето подолу ([[Special:Captcha/help|повеќе инфо]]):", "questycaptcha-createaccount": "За да ни помогнете да се заштитиме од автоматизирано создавање на сметки, би ве замолиле да одговорите на прашањето подолу ([[Special:Captcha/help|повеќе инфо]]):", "questycaptcha-create": "За да ја создадете страницата, одговорете на прашањето подолу ([[Special:Captcha/help|повеќе инфо]]):", "questycaptcha-edit": "За да ја уредите страницава, одговорете на прашањето подолу ([[Special:Captcha/help|повеќе инфо]]):", "questycaptcha-sendemail": "За да се заштитиме од автоматизирано спамирање, би ве замолиле да одговорите на прашањето подолу ([[Special:Captcha/help|повеќе информации]]):", "questycaptchahelp-text": "Мрежните места кои прифаќаат учество на јавноста, како ова вики, честопати страдаат од спамери кои користат автоматизирани алатки за да ги додаваат нивните врски на голем број мрежни места.\nИако врските на спамерот може да се отстранат, тие значително ја пореметуваат нашата работа.\n\nПонекогаш, особено кога додава нови врски на страница, викито може да ви побара да одговорите на прашање.\nБидејќи ова е задача која е тешко да се автоматизира, им овозможува вистинските корисници да придонесуваат, а им попречува на спамерите и другите роботски напаѓачи.\n\nКонтактирајте ги [[Special:ListAdmins|администраторите на страната]] за помош доколку ова неочекувано ве спречува во правењето на искрени придонеси.\n\nСтиснете на копчето „назад“ во вашиот прелисувач за да се вратите на уредувањето на страницата." } PK ! rm�| | i18n/sk.jsonnu �Iw�� { "@metadata": { "authors": [ "Helix84", "Luky001" ] }, "questycaptcha-addurl": "Vaša úprava obsahuje nové externé odkazy.\nV záujme ochrany tejto wiki proti automatizovanému spamu, prosím, odpovedzte na nižšie uvedenú otázku ([[Special:Captcha/help|viac informácií]]):", "questycaptcha-badlogin": "V záujme ochrany tejto wiki pred automatizovanými lámaniami hesiel, prosím, odpovedzte na nižšie uvedenú otázku ([[Special:Captcha/help|viac informácií]]):", "questycaptcha-createaccount": "V záujme ochrany tejto wiki pred automatizovaným vytváraním účtov, prosím, odpovedzte na nižšie uvedenú otázku ([[Special:Captcha/help|viac informácií]]):", "questycaptcha-create": "Ak chcete vytvoriť stránku, musíte zodpovedať dolu uvedenú otázku\n([[Special:Captcha/help|ďalšie informácie]]):", "questycaptcha-edit": "Ak chcete upraviť túto stránku, musíte zodpovedať dolu uvedenú otázku\n([[Special:Captcha/help|ďalšie informácie]]):", "questycaptchahelp-text": "Webstránky, ktoré prijímajú príspevky od verejnosti ako táto wiki, sú často cieľom zneužitia spammermi, ktorí používajú automatizované nástroje na pridávanie odkazov na svoje stránku na mnohé lokality.\nHoci je možné odkazy na spam odstrániť, je to významná nepríjemnosť.\n\nNiekedy, obzvlášť pri pridávaní nových webových odkazov na stránku, vás wiki môže požiadať o zodpovedanie otázky.\nPretože takúto úlohu je ťažké zautomatizovať, umožní väčšine skutočných ľudí prispievať a zastaví vačšinu spammerov a robotických útočníkov.\n\nKontaktujte prosím [[Special:ListAdmins|správcov lokality]] ak potrebujete pomoc v prípade, že vám táto funkcia neočakávaným spôsobom bráni v právoplatných príspevkoch.\n\nSpäť na úpravu stránky sa vrátite kliknutím na tlačidlo „Späť“ vo vašom prehliadači." } PK ! ܼ4�% % i18n/uk.jsonnu �Iw�� { "@metadata": { "authors": [ "Andriykopanytsia", "Diemon.ukr", "Gzhegozh", "Ата" ] }, "questycaptcha-desc": "Генератор Questy CAPTCHA для підтвердження редагування", "questycaptcha-addurl": "Ваше редагування містить нові зовнішні посилання.\nІз метою захисту вікі від спаму просимо вас дати відповідь на питання, що наводиться нижче ([[Special:Captcha/help|докладніше]]):", "questycaptcha-badlogin": "Із метою захисту вікі від автоматичного підбору пароля, просимо вас дати відповідь на питання, що наводиться нижче ([[Special:Captcha/help|докладніше]]):", "questycaptcha-createaccount": "Із метою захисту вікі від автоматичного створення облікових записів просимо вас дати відповідь на питання, що наводиться нижче ([[Special:Captcha/help|докладніше]]):", "questycaptcha-create": "Щоб створити сторінку, будь ласка, дайте відповідь на питання, що наводиться нижче ([[Special:Captcha/help|докладніше]]):", "questycaptcha-edit": "Щоб редагувати цю сторінку, будь ласка, дайте відповідь на питання, що наводиться нижче ([[Special:Captcha/help|докладніше]]):", "questycaptcha-sendemail": "Із метою захисту вікі від автоматичного спаму просимо вас дати відповідь на питання, що наводиться нижче ([[Special:Captcha/help|докладніше]]):", "questycaptchahelp-text": "Сайти, які надають можливість змінювати свій зміст, як це вікі, часто є місцем зловживання спамерів, які використовують автоматизовані інструменти для додавання посилань на інші сайти. \nХоча ці спам-посилання можуть бути вилучені, вони є суттєвим негативним чинником. \n\nІноді, особливо при додаванні нових посилань веб-сторінки, вікі може попросити вас відповісти на запитання. \nЦе є завданням, яке важко автоматизувати, тому воно дозволить більшості реальних людей зробити свій внесок, і заразом зупинить більшість спамерів та інших роботизованих нападників. \n\nБудь ласка, зв'яжіться з [[Special:ListAdmins|адміністраторами сайту]] по допомогу, якщо ця система не дозволяє вам робити допустимий внесок. \n\nНатисніть на кнопку \"назад\" у браузері, щоб повернутися на сторінку редагування." } PK ! ��Q� � i18n/is.jsonnu �Iw�� { "@metadata": { "authors": [ "Stefán Örvar Sigmundsson" ] }, "questycaptcha-create": "Til að búa til síðuna, vinsamlegast svaraðu spurningunni sem birtist fyrir neðan ([[Special:Captcha/help|frekari upplýsingar]]):" } PK ! ��L� � i18n/de-formal.jsonnu �Iw�� { "@metadata": { "authors": [ "Imre", "Kghbln", "Umherirrender" ] }, "questycaptcha-addurl": "Ihre Bearbeitung enthält neue externe Links.\nZum Schutz vor automatisiertem Spam beantworten Sie bitte die untenstehende Frage ([[Special:Captcha/help|weitere Informationen]]):", "questycaptcha-badlogin": "Zum Schutz vor einer Kompromittierung Ihres Benutzerkontos beantworten Sie bitte die folgende Frage ([[Special:Captcha/help|weitere Informationen]]):", "questycaptcha-createaccount": "Zum Schutz des Wikis vor einer automatisierten Anlage von Benutzerkonten bitten wir Sie, die folgende Frage zu beantworten ([[Special:Captcha/help|weitere Informationen]]):", "questycaptcha-create": "Bitte beantworten Sie die folgende Frage, um diese Seite erstellen zu können ([[Special:Captcha/help|weitere Informationen]]):", "questycaptcha-edit": "Bitte beantworten Sie die folgende Frage, um diese Seite bearbeiten zu können ([[Special:Captcha/help|weitere Informationen]]):", "questycaptcha-sendemail": "Zum Schutz vor automatisiertem Spam bitten wir Sie, die folgende Frage zu beantworten ([[Special:Captcha/help|weitere Informationen]]):", "questycaptchahelp-text": "Internetangebote, die – wie dieses Wiki – für Beiträge von praktisch jedem offen sind, werden häufig von Spammern missbraucht, welche versuchen, mithilfe entsprechender Werkzeuge ihre Links automatisch auf vielen Webseiten zu platzieren.\nZwar können derartige Spam-Links wieder entfernt werden, doch stellen sie trotzdem ein erhebliches Ärgernis dar.\n\nIn manchen Fällen, meist beim Versuch, neue Weblinks zu einer Seite hinzuzufügen, kann es vorkommen, dass Sie um die Beantwortung einer Frage gebeten werden.\nDa es kaum möglich ist, dies zu automatisieren, können hierdurch die meisten Spammer aufgehalten werden. Menschlichen Benutzer sollten ihre Bearbeitungen hingegen durchführen können.\n\nSollte Sie dieses Verfahren beim Durchführen gewünschter Bearbeitungen behindern, wenden Sie sich bitte an einen [[Special:ListAdmins|Administrator]], um Unterstützung zu erhalten.\n\nDie Schaltfläche „Zurück“ des Browsers führt zurück zum vorherigen Bearbeitungsfenster." } PK ! \Ij� � i18n/ro.jsonnu �Iw�� { "@metadata": { "authors": [ "Andrei Stroe", "Minisarm", "NGC 54", "Paloi Sciurala" ] }, "questycaptcha-addurl": "Modificarea dumneavoastră include legături externe noi.\nPentru a proteja wikiul împotriva spamului automat, vă rugăm să răspundeți la întrebarea de mai jos ([[Special:Captcha/help|mai multe detalii]]):", "questycaptcha-badlogin": "Pentru a împiedica spargerea automată a parolelor, vă rugăm să răspundeți la întrebarea de mai jos ([[Special:Captcha/help|mai multe detalii]]):", "questycaptcha-createaccount": "Pentru a împiedica crearea automată de conturi, vă rugăm să răspundeți la întrebarea de mai jos ([[Special:Captcha/help|mai multe detalii]]):", "questycaptcha-create": "Pentru a crea pagina, vă rugăm să răspundeți la întrebarea de mai jos ([[Special:Captcha/help|mai multe detalii]]):", "questycaptcha-edit": "Pentru a modifica această pagină, vă rugăm să răspundeți la întrebarea de mai jos ([[Special:Captcha/help|mai multe detalii]]):", "questycaptcha-sendemail": "Pentru a proteja wikiul împotriva spamului automat, vă rugăm să răspundeți la întrebarea de mai jos ([[Special:Captcha/help|mai multe detalii]]):", "questycaptchahelp-text": "Site-urile web care acceptă contribuții din partea publicului, precum acest wiki, sunt de obicei victime ale persoanelor care folosesc unelte automate pentru a introduce legături către multe alte site-uri. \nDeși aceste legături de spam pot fi îndepărtate, acest lucru reprezintă o bătaie de cap semnificativă.\n\nUneori, mai ales la adăugarea de noi legături web într-o pagină, site-ul wiki vă poate cere să răspundeți la o anumită întrebare. Întrucât rezolvarea acestei cerințe este dificil de automatizat, ea permite majorității persoanelor reale să-și trimită contribuțiile și va opri majoritatea atacatorilor.\n\nÎn cazul în care această practică vă împiedică în mod neașteptat să faceți contribuții legitime, vă rugăm să contactați [[Special:ListAdmins|administratorii site-ului]].\n\nApăsați butonul „Înapoi” al navigatorului pentru a vă reîntoarce la pagina de editare." } PK ! ��>� i18n/ia.jsonnu �Iw�� { "@metadata": { "authors": [ "McDutchie" ] }, "questycaptcha-desc": "Generator de Questy CAPTCHA pro Confirm Edit", "questycaptcha-addurl": "Tu modification include nove ligamines externe.\nPro adjutar a proteger le wiki contra le spam automatisate, per favor responde al question que appare infra ([[Special:Captcha/help|plus info]]):", "questycaptcha-badlogin": "Pro adjutar a proteger le wiki contra le furto automatisate de contrasignos, per favor responde al question que appare infra ([[Special:Captcha/help|plus info]]):", "questycaptcha-createaccount": "Pro adjutar a proteger le wiki contra le creation automatisate de contos, per favor responde al question que appare infra ([[Special:Captcha/help|plus info]]):", "questycaptcha-create": "Pro crear le pagina, per favor responde al question ci infra ([[Special:Captcha/help|plus info]]):", "questycaptcha-edit": "Pro modificar iste pagina, per favor responde al question ci infra ([[Special:Captcha/help|plus info]]):", "questycaptcha-sendemail": "Pro adjutar a proteger le wiki contra le spam automatisate, per favor responde al question que appare infra ([[Special:Captcha/help|plus info]]):", "questycaptchahelp-text": "Le sitos web que accepta contributiones del publico, como iste wiki, es frequentemente abusate per spammatores que usa instrumentos automatic pro publicar lor ligamines in multe sitos.\nBen que iste ligamines spam pote esser eliminate, illos constitue un considerabile molestia.\n\nAlcun vices, specialmente quando tu adde nove ligamines web a un pagina, le wiki pote demandar te de responder a un question.\nPost que isto es un carga difficile de automatisar, isto permittera al major parte del humanos real de facer lor contributiones, durante que le major parte del spammatores e altere attaccatores robotic es stoppate.\n\nPer favor contacta le [[Special:ListAdmins|administratores del sito]] pro assistentia si isto insperatemente te impedi de facer contributiones legitime.\n\nClicca le button 'retro' in tu navigator pro retornar al editor de paginas." } PK ! ���P P i18n/nl-informal.jsonnu �Iw�� { "@metadata": { "authors": [ "Siebrand" ] }, "questycaptcha-addurl": "Je bewerking bevat nieuwe externe koppelingen.\nBeantwoord de onderstaande vraag als bescherming tegen automatische spam ([[Special:Captcha/help|meer informatie]]):", "questycaptchahelp-text": "Websites die vrij te bewerken zijn, zoals deze wiki, worden vaak misbruikt door spammers die er met hun programma's automatisch koppelingen op zetten naar vele websites.\nHoewel deze externe koppelingen weer verwijderd kunnen worden, leveren ze wel veel hinder en administratief werk op.\n\nSoms, en in het bijzonder bij het toevoegen van externe koppelingen op pagina's, vraag de wiki je een vraag te beantwoorden.\nOmdat dit proces lastig te automatiseren is, zijn vrijwel alleen mensen in staat dit proces succesvol te doorlopen en worden hiermee spammers en andere geautomatiseerde aanvallen geweerd.\n\nVraag assistentie van de [[Special:ListAdmins|sitebeheerders]] als dit proces je verhindert een nuttige bijdrage te leveren.\n\nKlik op de knop \"terug\" in je browser om terug te gaan naar het tekstbewerkingsscherm." } PK ! �m�+ + i18n/so.jsonnu �Iw�� { "@metadata": { "authors": [ "Abdullahi", "Abshirdheere" ] }, "questycaptcha-createaccount": "Si looga ilaaliyo wiki abuurka akoonada otomaatiga ah, waxaa si naxariis leh kaaga codsaneenaa in aad ka jawaabto suaasha ka muuqata hoos. ([[Special:Captcha/help|faahfaahin dheeraad]]):" } PK ! �*��� � i18n/ja.jsonnu �Iw�� { "@metadata": { "authors": [ "Aotake", "Fryed-peach", "Kkairri", "Shirayuki" ] }, "questycaptcha-desc": "Confirm Edit 用の質問形式 CAPTCHA ジェネレーター", "questycaptcha-addurl": "あなたの編集には新しい外部リンクが含まれています。ウィキへの自動スパム攻撃を防ぐため、お手数をおかけしますが以下の確認用の質問に回答してください ([[Special:Captcha/help|詳細]]):", "questycaptcha-badlogin": "ウィキへの自動パスワードクラック攻撃を防ぐため、お手数をおかけしますが下記の確認用の質問に回答してください ([[Special:Captcha/help|詳細]]):", "questycaptcha-createaccount": "ウィキでのアカウント自動作成を防ぐため、お手数をおかけしますが下記の確認用の質問に回答してください ([[Special:Captcha/help|詳細]]):", "questycaptcha-create": "ページを新規作成するには、下記の確認用の質問に回答してください ([[Special:Captcha/help|詳細]]):", "questycaptcha-edit": "このページを編集するには、下記の確認用の質問に回答してください ([[Special:Captcha/help|詳細]]):", "questycaptcha-sendemail": "ウィキへの自動スパム攻撃を防ぐため、お手数をおかけしますが下記の確認用の質問に回答してください ([[Special:Captcha/help|詳細]]):", "questycaptchahelp-text": "一般からの投稿を受け付けるこのウィキのようなウェブサイトは、自動投稿ツールを使って多くのサイトにリンクを張ってまわるスパマーにより荒らされがちです。このようなスパムは除去できるものの、その作業は大変に面倒なものです。\n\nこのため、このウィキではときどき、特に新しい外部リンクがページに追加されたときなどに、質問に答えていただくようお願いすることがあります。この作業は自動化が難しいため、スパマーなどのプログラムを用いた攻撃をほぼ阻止しつつ、大半の生身の人間による投稿を可能にします。\n\n正当な投稿をするにあたって本機能が障害となっている場合、[[Special:ListAdmins|サイト管理者]]に連絡して協力を求めてください。\n\nページの編集に戻るには、ブラウザーの「戻る」ボタンを押してください。" } PK ! �W w� � i18n/cy.jsonnu �Iw�� { "@metadata": { "authors": [ "Lloffiwr" ] }, "questycaptcha-addurl": "Mae eich golygiad yn cynnwys o leiaf un cyswllt allanol newydd.\nEr mwyn arbed y wici rhag peiriannau sbam, byddwch gystal ag ateb y cwestiwn a welwch isod ([[Special:Captcha/help|rhagor o wybodaeth]]):", "questycaptcha-badlogin": "Er mwyn arbed y wici rhag peiriannau datrys cyfrineiriau, byddwch gystal ag ateb y cwestiwn a welwch isod ([[Special:Captcha/help|rhagor o wybodaeth]]):", "questycaptcha-createaccount": "Er mwyn arbed y wici rhag peiriannau creu cyfrifon, byddwch gystal ag ateb y cwestiwn a welwch isod ([[Special:Captcha/help|rhagor o wybodaeth]]):", "questycaptcha-create": "Er mwyn dechrau'r dudalen, byddwch gystal ag ateb y cwestiwn a welwch isod ([[Special:Captcha/help|rhagor o wybodaeth]]):", "questycaptcha-edit": "Er mwyn golygu'r dudalen, byddwch gystal ag ateb y cwestiwn a welwch isod ([[Special:Captcha/help|rhagor o wybodaeth]]):", "questycaptcha-sendemail": "Er mwyn arbed y wici rhag sbamio awtomatig, byddwch gystal ag ateb y cwestiwn a welwch isod ([[Special:Captcha/help|rhagor o wybodaeth]]):", "questycaptchahelp-text": "Mae safleoedd gwe fel y wici hon, sy'n caniatau i'r cyhoedd ysgrifennu iddi, yn darged beunyddiol i sbamwyr sy'n defnyddio rhaglenni arbennig i bostio eu cysylltiadau ar wefannau lu. Gellir dileu'r dolenni o'r tudalennau, ond mae hynny'n waith trafferthus.\n\nO dro i dro, yn enwedig wrth ychwanegu dolenni at safleoedd gwe eraill, fe fydd y wici hon yn gofyn i chi ateb cwestiwn. Mae hyn yn dasg anodd iawn i raglenni cyfrifiadurol, felly dylai'r rhan fwyaf o olygwyr go iawn gyflawni'r dasg yn ddi-drafferth, yn wahanol i'r mwyafrif o'r rhaglenni sbam ac ymosodwyr automatig eraill.\n\nCysylltwch â [[Special:ListAdmins|gweinyddwyr y safle]] os ydi'r nodwedd hon yn eich rhwystro rhag ychwanegu golygiadau dilys.\n\nGwasgwch botwm \"nôl\" eich porwr er mwyn dychwelyd at y dudalen olygu." } PK ! �J4�� � i18n/lij.jsonnu �Iw�� { "@metadata": { "authors": [ "Giromin Cangiaxo" ] }, "questycaptcha-addurl": "A modiffica domandâ a l'azonze di conligamenti esterni a-a paggina.\nPe proteze o wiki da-o spam outomatico, te domandemmo gentilmente de risponde a-a domanda ch'a compâ chì aproeuvo ([[Special:Captcha/help|comme l'è ch'o fonçion-a?]]):", "questycaptcha-badlogin": "Pe proteze a wiki da-a sforçatua aotomatizâ de password, te preghemmo de risponde a-a domanda ch'a compâ chì de sotta ([[Special:Captcha/help|comme l'è ch'o fonçion-a?]]):", "questycaptcha-createaccount": "Pe proteze a wiki da-i tentativi de registraçion aotomatizâ, te domandemmo pe piaxei de risponde a-a domanda ch'a compâ chì de sotta ([[Special:Captcha/help|comme l'è ch'o funçion-a?]]):", "questycaptcha-create": "Pe creâ a paggina se prega de risponde a-a domanda ch'a compâ chì de sotta ([[Special:Captcha/help|comme l'è ch'o fonçion-a?]]):", "questycaptcha-edit": "Pe modificâ sta paggina se prega de risponde a-a domanda ch'a compâ chì aproeuvo ([[Special:Captcha/help|comme l'è ch'o fonçion-a?]]):", "questycaptcha-sendemail": "Pe proteze o wiki da-a spam aotomatizâ, te preghemmo de risponde a-a domanda ch'a compâ chì de sotta ([[Special:Captcha/help|comme l'è ch'o fonçion-a?]]):", "questycaptchahelp-text": "Sucede soventi che i sciti web ch'acettan de contribuçioin da-o pubbrico, comme questa wiki, seggian ascidiæ da di spammers ch'adoeuvian di strumenti aotomatizæ pe insei di inganci verso un muggio de sciti. Pe quante se posse levâ sti conligamenti indexidiæ, se tratta comunque de 'n fastiddio no indiferente. \n\nIn çerti caxi, presempio quande se tenta d'azonze di noeuvi conligamenti web inte 'na pagina, o software wiki o poriæ domandâte de risponde a 'na domanda. Scicomme se tratta de 'n'açion difiççile da aotomatizâ, sto meccanismo o consente a-a ciu gran parte di utenti reali de fâ e sò contribuçioin, impedindo l'acesso a-a ciu gran parte di spammer e di atri attacchi aotomatizæ. \n\nSe queste procedue t'impediscian de contriboî legittimamente, pe piaxei contatta i [[Special:ListAdmins|amministratoî do scito]] e domandighe ascistença. \n\nClicca o pomello \"inderê\" do navegatô pe tornâ a-a paggina de modiffica." } PK ! :u�� � i18n/ilo.jsonnu �Iw�� { "@metadata": { "authors": [ "Lam-ang" ] }, "questycaptcha-addurl": "Ti unurnosmo ket mangiraman kadagiti silpo ti ruar.\nTapno masalakniban ti wiki kadagiti spam nga automatiko a naurnos, naemmakami nga agkiddaw kenka nga ikabilmo dagiti balikas nga agparang dita baba ([[Special:Captcha/help|adu ay a pakaammo]]):", "questycaptcha-badlogin": "Tapno makasalakniban ti wiki kadagiti automatiko a pinagsulbar ti kontrasenias, naemmakami nga agkiddaw kenka a sungbatam ti saludsod nga agparang dita baba. ([[Special:Captcha/help|adu pay a pakaammo]]):", "questycaptcha-createaccount": "Tapno makasalakniban ti wiki kadagiti automatiko a panagpartuat ti pakabilangan, naemmakami nga agkiddaw kenka a sungbatam ti saludsod nga agparang dita baba. ([[Special:Captcha/help|adu pay a pakaammo]]):", "questycaptcha-create": "Tapno makaaramid ti panid, pangaasim a sungbatan ti saludsud a nagparang dita baba. ([[Special:Captcha/help|adu pay a pakaammo]]):", "questycaptcha-edit": "Tapno makaurnoy ditoya panid, pangaasim a sungbatan ti saludsud a nagparang dita baba. ([[Special:Captcha/help|adu pay a pakaammo]]):", "questycaptcha-sendemail": "Tapno makasalakniban ti wiki kadagiti automatiko a panag-spam, naemmakami nga agkiddaw kenka a sungbatam ti saludsod nga agparang dita baba. ([[Special:Captcha/help|adu pay a pakaammo]]):", "questycaptchahelp-text": "Dagiti sapot a pagsaadan nga agaw-awat kadagiti maipablaak iti publiko, kasla daytoy a wiki, ket kanayon nga inabuso dagiti spammers nga agus-usar ti automatiko a ramramit ti pinagipablaak da kadagiti kukua da a panilpo ti adu a pagsasaadan. \nMaikkat met dagitoy a panilpo, mgen makariri da unay.\n\nNo sagpaminsan pay, nangruna no agikabil kadagiti baro a panilpo ti sapot iti panid, ti wiki ket agdamag kenka nga agsungbat ti maysa a saludsod. \nYantangay daytoy ket obra a narigat a ma-automatiko, agpalubos kadagiti agpayso a tattao ti agipablaak bayat nga agpasardeng ti kaaduan a spammers ken dagiti robot nga agraraut.\n\nPangngaasi a kontaken ti [[Special:ListAdmins|administrador ti pagsaadan ]] para iti pannulong no daytoy ket saan a napadpadaanan a pawilan na ti agpayso a pinagbaplaak mo.\n\nPeslen ti 'agsubli' a buton dita pagbasabasam (browser) ti agsubli idiay panid ti pinagurnos." } PK ! dS��/ / i18n/eo.jsonnu �Iw�� { "@metadata": { "authors": [ "Castelobranco" ] }, "questycaptcha-addurl": "Via redakto entenas novajn eksterajn ligilojn. \nPor helpi protekti kontraŭ aŭtomatan spamadon, bonvolu respondu la demandon sube ([[Special:Captcha/help|pli da informo]]):", "questycaptcha-badlogin": "Por helpi protekti kontraŭ aŭtomata divenado de pasvortoj, bonvolu respondu la demandon sube ([[Special:Captcha/help|pli da informo]]):", "questycaptcha-createaccount": "Por helpi protekti kontraŭ aŭtomata konto-kreado, bonvolu respondu la demandon sube ([[Special:Captcha/help|pli da informo]]):", "questycaptcha-create": "Por krei la paĝon, bonvolu respondu la demandon sube ([[Special:Captcha/help|pli da informo]]):", "questycaptcha-edit": "Por redakti ĉi tiun paĝon, bonvolu respondu la demandon sube ([[Special:Captcha/help|pli da informo]]):", "questycaptchahelp-text": "Retejoj kiuj akcepti informon de publiko, kiel ĉi tiu vikio, estas ofte misuzitaj de spamistoj kiu uzas aŭtomatajn ilojn por afiŝi ligilojn al multaj retejoj. Kvankam ĉi tiu spam-ligiloj estas forigeblaj, ili estas granda ĝeno.\n\nIufoje, ja kiam aldonante novajn retligilojn al paĝo, la vikio eble petos al vi respondi demandon. Tial ĉi tiu tasko estas malfacila por fari aŭtomate, ebligos al realaj homoj fari aldonaĵojn, kaj malebligos spamistojn kaj aliajn robotajn atakilojn.\n\nBonvolu kontakti la [[Special:ListAdmins|administrantojn de la retejo]] por helpo se ĉi tio malebligas al vi fari bonan aldonon.\n\nKlaku la 'reiru' butonon en via retumilo por reiri al la paĝo-redaktilo." } PK ! z�f f i18n/en.jsonnu �Iw�� { "@metadata": { "authors": [] }, "questycaptcha-desc": "Questy CAPTCHA generator for Confirm Edit", "questycaptcha-addurl": "Your edit includes new external links.\nTo protect the wiki against automated edit spam, we kindly ask you to answer the question that appears below ([[Special:Captcha/help|more info]]):", "questycaptcha-badlogin": "To protect the wiki against automated password cracking, we kindly ask you to answer the question that appears below ([[Special:Captcha/help|more info]]):", "questycaptcha-createaccount": "To protect the wiki against automated account creation, we kindly ask you to answer the question that appears below ([[Special:Captcha/help|more info]]):", "questycaptcha-create": "To create the page, please answer the question that appears below ([[Special:Captcha/help|more info]]):", "questycaptcha-edit": "To edit this page, please answer the question that appears below ([[Special:Captcha/help|more info]]):", "questycaptcha-sendemail": "To protect the wiki against automated spamming, we kindly ask you to answer the question that appears below ([[Special:Captcha/help|more info]]):", "questycaptchahelp-text": "Websites that accept contributions from the public, like this wiki, are often abused by spammers who use automated tools to add their links to many sites.\nWhile these spam links can be removed, they are a significant nuisance.\n\nSometimes, especially when adding new web links to a page, the wiki may ask you to answer a question.\nSince this is a task that is hard to automate, it will allow most real humans to make their contributions while stopping most spammers and other robotic attackers.\n\nPlease contact the [[Special:ListAdmins|site administrators]] for assistance if this is unexpectedly preventing you from making legitimate contributions.\n\nClick the \"back\" button in your browser to return to the page editor." } PK ! �_�9$ $ i18n/cs.jsonnu �Iw�� { "@metadata": { "authors": [ "Ilimanaq29", "Mormegil" ] }, "questycaptcha-addurl": "Vaše editace obsahuje nové externí odkazy.\nV zájmu ochrany této wiki před automatickým spamováním vás prosíme o zodpovězení níže uvedené otázky ([[Special:Captcha/help|další informace]]):", "questycaptcha-badlogin": "V zájmu ochrany této wiki proti automatickým pokusům uhodnout heslo vás prosíme o zodpovězení níže uvedené otázky ([[Special:Captcha/help|další informace]]):", "questycaptcha-createaccount": "V zájmu ochrany této wiki před automatickým vytvářením účtů vás prosíme o zodpovězení níže uvedené otázky ([[Special:Captcha/help|další informace]]):", "questycaptcha-create": "Abyste mohli založit stránku, musíte zodpovědět níže uvedenou otázku ([[Special:Captcha/help|další informace]]):", "questycaptcha-edit": "Abyste mohli editovat tuto stránku, musíte zodpovědět níže uvedenou otázku ([[Special:Captcha/help|další informace]]):", "questycaptcha-sendemail": "V zájmu ochrany této wiki před automatickým spamováním vás prosíme o zodpovězení níže uvedené otázky ([[Special:Captcha/help|další informace]]):", "questycaptchahelp-text": "Webové stránky, do kterých mohou přispívat jejich návštěvníci (jako například tato wiki), jsou často terčem spammerů, kteří pomocí automatických nástrojů vkládají své odkazy na velké množství stránek. Přestože lze tento spam odstranit, představuje nepříjemné obtěžování.\n\nNěkdy, zvláště při přidávání nových webových odkazů, vás wiki může požádat o zodpovězení otázky.\nJelikož takovou úlohu lze jen těžko automatizovat, skuteční lidé mohou dále přispívat, zatímco většinu spammerů a jiných robotických útočníků to zastaví.\n\nPokud vám to brání v užitečných příspěvcích a potřebujete pomoc, kontaktujte prosím [[Special:ListAdmins|správce serveru]].\n\nPro návrat na předchozí stránku stiskněte ve svém prohlížeči tlačítko „zpět“." } PK ! �� � � i18n/fit.jsonnu �Iw�� { "@metadata": { "authors": [ "Pyscowicz" ] }, "questycaptchahelp-text": "Web-sivustot, jotka hyväksyvät materiaalia yleisöltä, kuten tämä wiki, joutuvat usein automaattisia työkaluja käyttävien ”spämmääjien” kohteeksi jotka lisäävät linkkejä eri sivustoille. Vaikka nämä roskalinkit voidaan poistaa, ne ovat merkittävä haittatekijä.\n\nJoskus, erityisesti kun lissäät uusia Web-länkkejä sivule, wiki saattaa pyytää sinua vastaamaan kysymykseen.\nKoska tämä oon vaikeasti auttomatisoitava tehtävä, se antaa useimpien oikeiden henkilöiden osallistua estäen roskamookkausten ja muitten auttomaattisten hyökkäysten tekijöitä.\n\nOta yhteyttä [[Special:ListAdmins|ylläpitäjiin]] saadaksesi avustusta jos tämä odottamattomasti estää sinua tekemästä asiallisia mookkauksia.\n\nKnapsauta selaimesi paluupainiketta palataksesi sivumookkaimeen." } PK ! ��!�� � i18n/nn.jsonnu �Iw�� { "@metadata": { "authors": [ "Gunnernett" ] }, "questycaptcha-addurl": "Endringa di inneheld nye lenkjer ut. \nSom ei hjelp til å unngå automatisert spam, ver venleg og skiv inn spørsmålet som er synt nedanfor ([[Special:Captcha/help|meir informasjon]]):", "questycaptcha-createaccount": "For å hjelpa til med å hindra automatisk kontooppretting, ver venleg og svar på spørsmålet nedanfor ([[Special:Captcha/help|more info]]):", "questycaptcha-create": "For å oppretta sida, ver venleg og svar på spørsmålet nedanfor ([[Special:Captcha/help|meir informasjon]]):", "questycaptcha-edit": "For å endra sida, ver venleg og svar på spørsmålet som er synt nedanfor ([[Special:Captcha/help|meir informasjon]]):" } PK ! �Z\_� � i18n/gsw.jsonnu �Iw�� { "@metadata": { "authors": [ "Als-Chlämens", "Als-Holder", "J. 'mach' wust" ] }, "questycaptcha-addurl": "In Dynere Bearbeitig het s neji extärni Links.\nAs Schutz gege automatischi Spam, beantwort bitte d Frog, wu do unter gnännt wird ([[Special:Captcha/help|meh Informatione]]):", "questycaptcha-badlogin": "As Schutz gege ne automatisch Passwort-Knacke, beantwort bitte d Frog, wu do unte gnännt wird ([[Special:Captcha/help|meh Informatione]]):", "questycaptcha-createaccount": "As Schutz gege ne automatisch Aalege vu Benutzerkonte, beantwort bitte d Frog, wu do unte gnännt wird ([[Special:Captcha/help|meh Informatione]]):", "questycaptcha-create": "Go d Syte aalege, beantwort bitte d Frog, wu do unte gnännt wird ([[Special:Captcha/help|meh Informatione]]):", "questycaptcha-edit": "Go die Syte bearbeite, beantwort bitte d Frog, wu do unte gnännt wird ([[Special:Captcha/help|meh Informatione]]):", "questycaptcha-sendemail": "As Schutz gege e automatischs Spamming, beantwort bitte d Frog, wu do unte gnännt wird ([[Special:Captcha/help|meh Informatione]]):", "questycaptchahelp-text": "Websyte, wu alli chenne byytrage, wie des Wiki, wäre vylmol missbrucht vu Spammer, wu automatischi Wärchzyg bruche go ihri Link in meglischt vyli Syte yyfiege.\nAu wänn die Spamlink chenne wider uusegnuu wäre, sin si einewäg e zimlig Ärgernis.\n\nAb un zue, vor allem wänn neji Weblink in e Syte yygfiegt wäre, forderet s Wiki Di villicht uf, e Frog z beantworte.\nWel des e Ufgab isch, wu mer schwär cha automatisiere, isch des e Megligkeit, Spammer un anderi automatischi Attacke z verhindere, derwylscht di meischte mänschlige Benutzer ihri Bearbeitige chenne byytrage.\n\nBitte nimm Kontakt uf zue dr [[Special:ListAdmins|Website-Administratore]] fir Hilf, wänn des unerwarteterwys verhinderet, ass Du chasch rächtmäßigi Bearbeitige mache.\n\nDruck dr 'Zruck'-Chnopf in Dyym Browser go zuem Bearbeitigsfänschter zruckgoh." } PK ! XJ�Q� � i18n/be-tarask.jsonnu �Iw�� { "@metadata": { "authors": [ "EugeneZelenko", "Jim-by", "Red Winged Duck" ] }, "questycaptcha-addurl": "Вашае рэдагаваньне ўтрымлівае новыя вонкавыя спасылкі.\nКаб абараніць вікі ад аўтаматычнага спаму ў праўках, мы просім вас адказаць на пытаньне, паказанае ніжэй ([[Special:Captcha/help|дадатковая інфармацыя]]):", "questycaptcha-badlogin": "Для абароны вікі ад аўтаматычнага падбору пароля, мы просім вас адказаць на пытаньне, паказанае ніжэй ([[Special:Captcha/help|дадатковая інфармацыя]]):", "questycaptcha-createaccount": "Для абароны вікі ад аўтаматычнага стварэньня рахункаў, мы просім вас адказаць на пытаньне, паказанае ніжэй ([[Special:Captcha/help|дадатковая інфармацыя]]):", "questycaptcha-create": "Для стварэньня старонкі, калі ласка, адкажыце на пытаньне, паказанае ніжэй ([[Special:Captcha/help|дадатковая інфармацыя]]):", "questycaptcha-edit": "Для рэдагаваньня гэтай старонкі, калі ласка, адкажыце на пытаньне, паказанае ніжэй ([[Special:Captcha/help|дадатковая інфармацыя]]):", "questycaptcha-sendemail": "У мэтах абароны вікі ад аўтаматычнага спаму, мы просім вас адказаць на пытаньне, паказанае ніжэй ([[Special:Captcha/help|дадатковая інфармацыя]]):", "questycaptchahelp-text": "Вэб-сайты, якія прымаюць запісы ад грамадзкасьці, падобныя на {{GRAMMAR:вінавальны|{{SITENAME}}}}, часта атакуюцца спамэрамі, якія ўжываюць аўтаматызаваныя інструмэнты, каб зьмяшчаць свае спасылкі на шмат сайтаў.\nІ хаця гэтыя спасылкі могуць быць прыбраныя, яны выклікаюць значныя нязручнасьці.\n\nЧасам, асабліва калі Вы дадаеце новыя вонкавыя спасылкі на старонку, {{SITENAME}} можа паказаць Вам выяву з каляровым ці скажоным тэкстам і папрасіць увесьці гэты тэкст.\nПраз тое, што гэтае заданьне цяжка аўтаматызаваць, яно дазволіць большасьці рэальных людзей рабіць запісы, але спыніць большасьць спамэраў і іншых аўтаматызаваных робатаў.\n\nНа жаль, гэта можа выклікаць нязручнасьці для ўдзельнікаў з абмежаваньнямі па зроку і для тых, хто ўжывае тэкставыя ці моўныя браўзэры.\nНа гэты момант мы ня маем аўдыё-альтэрнатывы гэтай праверцы.\nКалі ласка, зьвяжыцеся з [[Special:ListAdmins|адміністратарамі]], калі гэтая праверка перашкаджае Вам рабіць слушныя запісы.\n\nНацісьніце кнопку «назад» у Вашым браўзэры, каб вярнуцца да рэдагаваньня старонкі." } PK ! �չ�> > i18n/lb.jsonnu �Iw�� { "@metadata": { "authors": [ "Les Meloures", "Robby", "Soued031" ] }, "questycaptcha-addurl": "An Ärer Ännerung sinn nei extern Linken.\nFir d'Wiki géint automatesche Spam-Ännerungen ze schützen, froe mir Iech d'Fro hei ënnendrënner ze beäntweren ([[Special:Captcha/help|méi Informatiounen]]):", "questycaptcha-badlogin": "Fir dës Wiki géint d'automatiséiert Knacke vu Passwierder ze schütze, froe mir Iech d'Fro hei ënnendrënner ze beäntweren ([[Special:Captcha/help|méi Informatiounen]]):", "questycaptcha-createaccount": "Fir d'Wiki géint d'automatiséiert Uleeë vu Benotzerkonten ze schützen, froe mir Iech d'Fro hei ënnendrënner ze beäntweren ([[Special:Captcha/help|méi Informatiounen]]):", "questycaptcha-create": "Fir d'Säit unzeleeën, beäntwert wgl. déi Fro hei ënnedrënner ([[Special:Captcha/help|méi Informatiounen]]):", "questycaptcha-edit": "Fir dës Säit z'änneren, beäntwert wgl. déi Fro hei ënnedrënner ([[Special:Captcha/help|méi Informatiounen]]):", "questycaptcha-sendemail": "Fir ze hëllefe dës Wiki géint automatiséierte Spam ze schütze, beäntwert wgl. déi Fro hei ënnendrënner ([[Special:Captcha/help|méi Informatiounen]]):", "questycaptchahelp-text": "Websäiten, déi et jiddwerengem erlaben Ännerungen ze maachen, sou wéi dës Wiki, ginn dacks vu sougenannte Spammer mëssbraucht, déi automatiséiert hir Linken op vill Internetsäite setzen.\nSou Spam-Linke kënne wuel geläscht ginn, mä si sinn trotzdeem eng grouss Plo.\n\nHeiansdo, besonnesch wann nei Internet-Linken op eng Säit derbäigesat ginn, freet dës Wiki Iech eng Fro ze beäntwerten.\nWell dat eng Aufgab ass déi schwéier z'automatiséieren ass, erlaabt dëst datt Mënschen hir Ännerunge kënnen aginn, wärend déi meescht Spammer an aner Roboter-Attacke kënnen ofgewiert ginn.\n\nKontaktéiert wgl. d'[[Special:ListAdmins|Administrateure vun dësem Site]] fir Hëllef wann dat Iech onerwaarter Weis vu legitimmen Editten ofhält.\n\nDréckt op den 'Zréck' Knäppche vun ärem Browser fir an d'Beaarbechtungsfënster zréckzekommen." } PK ! /��.$ $ i18n/ru.jsonnu �Iw�� { "@metadata": { "authors": [ "Kaganer", "Lockal", "Okras", "Александр Сигачёв" ] }, "questycaptcha-addurl": "Ваша правка содержит новые внешние ссылки.\nВ целях защиты от автоматического спама просим вас ответить на вопрос, показанный ниже ([[Special:Captcha/help|подробнее…]]):", "questycaptcha-badlogin": "В целях защиты от автоматического подбора пароля просим вас ответить на вопрос, показанный ниже ([[Special:Captcha/help|подробнее…]]):", "questycaptcha-createaccount": "В целях защиты от автоматического создания учётных записей просим вас ответить на вопрос, показанный ниже ([[Special:Captcha/help|подробнее…]]):", "questycaptcha-create": "Для создания страницы, пожалуйста, ответьте на приведённый ниже вопрос ([[Special:Captcha/help|подробнее]]):", "questycaptcha-edit": "Чтобы изменить эту страницу, пожалуйста, ответьте на приведённый ниже вопрос ([[Special:Captcha/help|подробнее]]):", "questycaptcha-sendemail": "В целях защиты от автоматического спама просим вас ответить на вопрос, показанный ниже ([[Special:Captcha/help|подробнее…]]):", "questycaptchahelp-text": "Веб-сайты, позволяющие добавлять и изменять своё содержание, в том числе эта вики, часто становятся целью спамеров, использующих программы для автоматического добавления ссылок на сайты. Хотя такие ссылки могут быть впоследствии удалены, они представляют собой существенную помеху.\n\nПри некоторых действиях (например, при добавлении на страницу новой ссылки на сайт) вики может попросить вас ответить на вопрос. Поскольку эта задача сложна для автоматизации, большинство спамерских и вандальных программ не могут с ней справиться, в то время как люди справляются легко.\n\nПожалуйста, обратитесь за помощью к [[Special:ListAdmins|администраторам]], если подобная проверка мешает вам добросовестно работать с сайтом.\n\nНажмите кнопку «Назад» в своём браузере, чтобы вернуться к редактированию." } PK ! �|Ru i18n/lt.jsonnu �Iw�� { "@metadata": { "authors": [ "Eitvys200", "Nokeoo" ] }, "questycaptcha-addurl": "Jūsų keitime yra naujų išorinių nuorodų.\nKad apsaugotume šią vikį nuo automatinio keitimų šlamšto, prašome atsakyti į klausimą esantį žemiau ([[Special:Captcha/help|daugiau informacijos]]):", "questycaptcha-badlogin": "Kad apsaugotume vikį nuo automatizuoto slaptažodžių spėjimo, prašome atsakyti į klausimą esantį žemiau ([[Special:Captcha/help|daugiau informacijos]]):", "questycaptcha-createaccount": "Kad apsaugotume šią vikį nuo automatinio paskyrų kūrimo, prašome atsakyti į klausimą žemiau ([[Special:Captcha/help|daugiau informacijos]]):", "questycaptcha-create": "Kad sukurtumėte puslapį, prašome atsakyti į klausimą žemiau ([[Special:Captcha/help|daugiau informacijos]]):", "questycaptcha-edit": "Kad pakeistumėte šį puslapį, prašome atsakyti į klausimą žemiau ([[Special:Captcha/help|daugiau informacijos]]):", "questycaptcha-sendemail": "Kad apsaugotume vikį nuo automatizuoto šlamšto, prašome atsakyti į klausimą esantį žemiau ([[Special:Captcha/help|daugiau informacijos]]):" } PK ! �S3� � i18n/tr.jsonnu �Iw�� { "@metadata": { "authors": [ "BaRaN6161 TURK", "Hedda", "Joseph", "MuratTheTurkish", "Vito Genovese" ] }, "questycaptcha-desc": "Onayla Düzenleme için Questy CAPTCHA üreteci", "questycaptcha-addurl": "Değişikliğiniz yeni dış bağlantı içeriyor.\nOtomatik reklama karşı korunmaya yardımcı olmak ve viki'yi otomatik spam düzenlemeye karşı korumak için aşağıda görünen soruyu yanıtlamanızı rica ederiz ([[Special:Captcha/help|daha fazla bilgi]]):", "questycaptcha-badlogin": "Viki'yi otomatik şifre kırmaya karşı korumak için aşağıda görünen soruyu yanıtlamanızı rica ederiz ([[Special:Captcha/help|daha fazla bilgi]]):", "questycaptcha-createaccount": "Viki'yi otomatik hesap oluşturmaya karşı korumak için aşağıda görünen soruyu yanıtlamanızı rica ediyoruz ([[Special:Captcha/help|daha fazla bilgi]]):", "questycaptcha-create": "Sayfayı oluşturmak için, lütfen ([[Special:Captcha/help|daha fazla bilgi]]) bölümünün altında yer alan soruya cevap verin:", "questycaptcha-edit": "Sayfayı değiştirmek için, lütfen bölümünün altında yer alan soruya cevap verin ([[Special:Captcha/help|daha fazla bilgi]]):", "questycaptcha-sendemail": "Vikiyi otomatik istenmeyen postalara karşı korumak için aşağıda görünen soruyu yanıtlamanızı rica ediyoruz ([[Special:Captcha/help|daha fazla bilgi]]):", "questycaptchahelp-text": "Bu viki gibi herkesin katkı yapmasına izin veren web siteleri, genellikle bir çok siteye verilen bağlantıları ekleyen otomatik araçlar kullanan reklam amaçlı kullanıcılar tarafından istismar edilmektedir.\nBu reklam bağlantıları kaldırılabiliyor olsa da, önemli bir sıkıntı yaratmaktadırlar.\n\nBazen, özellikle bir sayfaya yeni web bağlantıları eklenirken, viki size bir soru sorabilir.\nBu, otomatikleştirilmesi zor bir iş olduğu için, insanların katkılarını yapmasını mümkün kılarken çoğu reklam amaçlı kullanıcıyı ya da robot saldırganı durduracaktır.\n\nBu durumun sizi normal katkılarınızı yapmaktan olağandışı bir şekilde alıkoyması halinde, lütfen destek için [[Special:ListAdmins|site hizmetlileri]] ile irtibata geçin.\n\nSayfa editörüne dönmek için tarayıcınızın 'geri' düğmesine tıklayın." } PK ! I��� � i18n/fr.jsonnu �Iw�� { "@metadata": { "authors": [ "Framawiki", "Gomoko", "IAlex", "Nicolas NALLET", "Urhixidur", "Verdy p" ] }, "questycaptcha-desc": "Générateur de questions ''CAPTCHA'' pour la confirmation humaine des modifications", "questycaptcha-addurl": "Votre modification inclut de nouveaux liens externes.\nPour protéger le wiki contre le pollupostage automatisé de modifications, nous vous demandons de bien vouloir répondre à la question ci-dessous ([[Special:Captcha/help|plus d’informations]]) :", "questycaptcha-badlogin": "Afin de protéger le wiki contre le cassage automatisé des mots de passe, nous vous demandons de bien vouloir répondre à la question ci-dessous ([[Special:Captcha/help|plus d’informations]]) :", "questycaptcha-createaccount": "Afin de protéger le wiki contre la création automatisée de comptes, nous vous demandons de bien vouloir répondre à la question qui apparaît ci-dessous ([[Special:Captcha/help|plus d’informations]]) :", "questycaptcha-create": "Pour créer la page, veuillez répondre à la question ci-dessous ([[Special:Captcha/help|plus d’informations]]) :", "questycaptcha-edit": "Pour créer, modifier ou publier cette page, veuillez répondre à la question ci-dessous ([[Special:Captcha/help|plus d’informations]]) :", "questycaptcha-sendemail": "Afin de protéger le wiki contre le pollupostage automatisé, nous vous demandons de bien vouloir répondre à la question ci-dessous ([[Special:Captcha/help|plus d’informations]]) :", "questycaptchahelp-text": "Les sites web qui acceptent des contributions du public, tels que ce wiki, sont souvent victimes de polluposteurs qui utilisent des outils automatisés pour placer de nombreux liens vers leurs sites.\nMême si cette pollution peut être effacée, elle n’en reste pas moins irritante.\n\nParfois, particulièrement lors de l’ajout de nouveaux liens externes dans une page, le wiki peut vous demander de répondre à une question.\nCette tâche étant difficile à accomplir de façon automatisée, cela permet à la plupart des humains de réaliser leurs contributions tout en stoppant la plupart des polluposteurs et autres attaquants robotisés.\n\nVeuillez contacter [[Special:ListAdmins|les administrateurs du site]] si cela vous empêche de façon inattendue de faire des contributions légitimes.\n\nCliquez sur le bouton « Précédent » de votre navigateur pour revenir à la page de modification." } PK ! ���w� � i18n/be.jsonnu �Iw�� { "@metadata": { "authors": [ "ZlyiLev" ] }, "questycaptcha-addurl": "Ваша праўка змяшчае новыя вонкавыя спасылкі.\nУ мэтах абароны ад аўтаматычнага спаму, мы просім вас адказаць на пытанне, паказанае ніжэй ([[Special:Captcha/help|дадатковая інфармацыя]]):" } PK ! ��n�K K i18n/qqq.jsonnu �Iw�� { "@metadata": { "authors": [ "Fryed-peach", "Hamilton Abreu", "Raymond", "Shirayuki" ] }, "questycaptcha-desc": "{{desc}}", "questycaptcha-addurl": "{{Related|ConfirmEdit-addurl}}", "questycaptcha-badlogin": "{{Related|ConfirmEdit-badlogin}}", "questycaptcha-createaccount": "{{Related|ConfirmEdit-createaccount}}", "questycaptcha-create": "{{Related|ConfirmEdit-create}}", "questycaptcha-edit": "{{Related|ConfirmEdit-edit}}", "questycaptcha-sendemail": "{{Related|ConfirmEdit-sendemail}}", "questycaptchahelp-text": "See also {{msg-mw|Captchahelp-text}}." } PK ! 4��� � i18n/tl.jsonnu �Iw�� { "@metadata": { "authors": [ "AnakngAraw" ] }, "questycaptcha-desc": "Kaakit-akit na panlikha ng CAPTCHA na Questy para sa Pagtiyak ng Pagbago", "questycaptcha-addurl": "Kasali sa pagbago mo ang bagong panglabas na mga kawing.\nUpang makatulong sa pagsanggalang laban sa kusang panglulusob, pakisagot ang tanong na nakalitaw sa ibaba ([[Special:Captcha/help|more info]]):", "questycaptcha-badlogin": "Upang makatulong sa pagsasanggalang laban sa mga kusang paglutas ng hudyat, pakisagot lamang ang tanong na nakalitaw sa ibaba ([[Special:Captcha/help|marami pang kabatiran]]):", "questycaptcha-createaccount": "Upang makatulong sa pagsasanggalang laban sa kusang paglikha ng akawnt, pakisagot ang tanong na nakalitaw sa ibaba ([[Special:Captcha/help|marami pang kabatiran]]):", "questycaptcha-create": "Upang malikha ang pahina, pakisagot ang tanong na nakalitaw sa ibaba ([[Special:Captcha/help|marami pang kabatiran]]):", "questycaptcha-edit": "Upang mabago ang pahina, pakisagot ang tanong na nakalitaw sa ibaba ([[Special:Captcha/help|marami pang kabatiran]]):", "questycaptcha-sendemail": "Upang makatulong sa pagsasanggalang laban sa mga kusang paglusob, pakisagot lamang ang tanong na nakalitaw sa ibaba ([[Special:Captcha/help|marami pang kabatiran]]):", "questycaptchahelp-text": "Ang mga websayt na tumatanggap ng mga ambag mula sa madla, katulad ng wiking ito, ay madalas abusuhin ng mga manlulusob na gumagamit ng kasangkapang pangkusa upang madagdag ang kanilang mga kawing sa maraming mga sayt.\n\nKung minsan, partikular na kapag nagdaragdag ng bagong mga kawing pangweb sa isang pahina, maaaring humiling ang wiki na sagutin mo ang isang tanong. \nDahil isa itong gawaing mahirap ikusa, magpapahintulot ito ng karamihan sa tunay na mga tao na gawin ang kanilang mga kontribusyon habang pinahihinto ang karamihan sa mga ispamer at iba pang mga makarobot na mga panglusob.\n\nMangyaring makipag-ugnayan sa [[Special:ListAdmins|mga tagapangasiwa ng sayt]] para sa pagtulong kung hindi inaasahang pigilan ka mula sa paggawa ng tunay na mga ambag.\n\nPindutin ang pindutang 'bumalik' sa iyong pantingin-tingin upang makabalik sa pambago ng pahina." } PK ! `�C_� � i18n/br.jsonnu �Iw�� { "@metadata": { "authors": [ "Fohanno", "Fulup" ] }, "questycaptcha-addurl": "Degaset hoc'h liammoù diavaez nevez.\nA-benn hor skoazellañ da stourm a-enep d'ar strob emgefre, respontit d'ar goulenn a-is ([[Special:Captcha/help|muioc'h a ditouroù]]) :", "questycaptcha-badlogin": "Evit hor sikour da stourm a-enep ar freuzañ gerioù-tremen gant ardivinkoù, respontit d'ar goulenn a-is ([[Special:Captcha/help|muioc'h a ditouroù]]) :", "questycaptcha-createaccount": "Evit hor sikour da stourm a-enep ar c'hrouiñ kontoù emgefre, respontit d'ar goulenn a-is ([[Special:Captcha/help|muioc'h a ditouroù]]) :", "questycaptcha-create": "A-benn gellout krouiñ ar bajenn, respontit d'ar goulenn a-is ([[Special:Captcha/help|muioc'h a ditouroù]]) :", "questycaptcha-edit": "A-benn gellout degas kemmoù er bajenn-mañ, respontit d'ar goulenn a-is ([[Special:Captcha/help|muioc'h a ditouroù]]) :", "questycaptcha-sendemail": "Evit hor sikour da zizarbenn ar strob emgefre, respontit d'ar goulenn skrivet dindan ([[Special:Captcha/help|gouzout hiroc'h]]) :", "questycaptchahelp-text": "Alies e vez taget al lec'hiennoù a zegemer kemennadennoù a-berzh an holl, evel ar wiki-mañ, gant ar stroberien a implij ostilhoù emgefre evit postañ o liammoù war-du lec'hiennoù a bep seurt. Ha pa c'hallfent bezañ diverket, kazus-mat ez eo ar stroboù-se memes tra.\n\nA-wezhioù, dreist-holl pa vez ouzhpennet liammoù Web nevez war ur bajenn, e c'hallo ar wiki-mañ sevel ur goulenn ouzhoc'h. \nUn trevell start da emgefrekaat eo hemañ. Gant se e c'hallo an implijerien wirion postañ ar pezh a fell dezho tra ma vo lakaet un harz d'an darn vrasañ eus ar stroberien pe d'an dagerien robotek all.\n\nKit e darempred gant [[Special:ListAdmins|merourien al lec'hienn]] evit bezañ skoazellet m'hoc'h eus diaesterioù da gemer perzh da vat abalamour d'an teknik-se.\n\nPouezit war bouton 'kent' ho merdeer evit distreiñ d'ar bajenn gemmañ." } PK ! �67�e e i18n/fi.jsonnu �Iw�� { "@metadata": { "authors": [ "01miki10", "Crt", "Nike", "Valtlai", "Valtlait" ] }, "questycaptcha-addurl": "Muokkauksesi sisältää uusia ulkoisia linkkejä.\nSuojataksemme wikiä automaattisia roskamuokkauksia vastaan pyydämme sinua vastaamaan alla olevaan kysymykseen ([[Special:Captcha/help|lisätietoja]]):", "questycaptcha-badlogin": "Automatisoidun salasanan murtamisen estämiseksi vastaa alla olevaan kysymykseen ([[Special:Captcha/help|lisätietoja]]):", "questycaptcha-createaccount": "Automaattisen käyttäjätunnusten luonnin estämiseksi vastaa alla olevaan kysymykseen ([[Special:Captcha/help|lisätietoja]]):", "questycaptcha-create": "Luodaksesi sivun vastaa alla olevaan kysymykseen ([[Special:Captcha/help|lisätietoja]]):", "questycaptcha-edit": "Muokataksesi tätä sivua vastaa alla olevaan kysymykseen ([[Special:Captcha/help|lisätietoja]]):", "questycaptcha-sendemail": "Automatisoidun roskapostin lähettämisen estämiseksi vastaa alla olevaan kysymykseen ([[Special:Captcha/help|lisätietoja]]):", "questycaptchahelp-text": "Web-sivustot, jotka hyväksyvät materiaalia yleisöltä, kuten tämä wiki, joutuvat usein automaattisia työkaluja käyttävien ”spämmääjien” kohteeksi jotka lisäävät linkkejä eri sivustoille. Vaikka nämä roskalinkit voidaan poistaa, ne ovat merkittävä haittatekijä.\n\nJoskus, erityisesti kun lisäät uusia Web-linkkejä sivulle, wiki saattaa pyytää sinua vastaamaan kysymykseen.\nKoska tämä on vaikeasti automatisoitava tehtävä, se antaa useimpien oikeiden henkilöiden osallistua estäen roskamuokkausten ja muiden automaattisten hyökkäysten tekijöitä.\n\nOta yhteyttä [[Special:ListAdmins|ylläpitäjiin]] saadaksesi avustusta jos tämä odottamattomasti estää sinua tekemästä asiallisia muokkauksia.\n\nNapsauta selaimesi paluupainiketta palataksesi sivumuokkaimeen." } PK ! �|>Z� � i18n/pt-br.jsonnu �Iw�� { "@metadata": { "authors": [ "555", "Eduardo Addad de Oliveira", "Eduardo.mps", "Eduardoaddad", "Felipe L. Ewald", "Giro720", "Luckas" ] }, "questycaptcha-desc": "Gerador de Questy CAPTCHA para Confirm Edit", "questycaptcha-addurl": "Sua edição inclui novos links externos.\nPara proteger a wiki contra spam automatizado de edição, nós lhe pedimos gentilmente que responda a pergunta que aparece abaixo ([[Special:Captcha/help|mais informações]]):", "questycaptcha-badlogin": "Para proteger a wiki contra spam automatizado de edição, nós lhe pedimos gentilmente que responda a pergunta que aparece abaixo ([[Special:Captcha/help|mais informações]]):", "questycaptcha-createaccount": "Para proteger o wiki contra a quebra automática de senha, nós lhe pedimos gentilmente que responda a pergunta que aparece abaixo ([[Special:Captcha/help|mais informações]]):", "questycaptcha-create": "Para criar a página, por favor responda a questão que aparece abaixo ([[Special:Captcha/help|more info]]):", "questycaptcha-edit": "Para editar esta página, por favor responda a questão que aparece abaixo ([[Special:Captcha/help|more info]]):", "questycaptcha-sendemail": "Para proteger a wiki contra o spam automatizado, nós lhe pedimos gentilmente que responda a pergunta que aparece abaixo ([[Special:Captcha/help|mais informações]]):", "questycaptchahelp-text": "Sites que aceitam contribuições públicas, como este wiki, são vulneráveis a spammers que utilizam ferramentas automatizadas para inserir os seus links em diversos locais. \nApesar de ser possível remover tais links, eles são um incômodo significativo.\n\nAlgumas vezes, especialmente ao adicionar novos links externos a uma página, o wiki pode pedir a você que responda a uma pergunta. \nUma vez que essa é uma tarefa um tanto difícil de ser automatizada, ela possibilita que a maioria dos humanos faça as suas contribuições ao mesmo tempo que inibe as que forem feitas por spammers e mecanismos automatizados.\n\nEntre em contato com os [[Special:ListAdmins|administradores do site]] para pedir ajuda caso isso esteja te impedindo de realizar contribuições legítimas.\n\nClique no botão 'voltar' de seu navegador para retornar ao editor de páginas." } PK ! ��Y� � i18n/ca.jsonnu �Iw�� { "@metadata": { "authors": [ "Mguix", "Paucabot", "Toniher" ] }, "questycaptcha-addurl": "L'edició inclou enllaços externs nous.\nPer a protegir el wiki contra la brossa automàtica, us demanem amablement que responeu la pregunta que apareix a continuació ([[Special:Captcha/help|més informació]]):", "questycaptcha-create": "Per crear la pàgina, per favor responeu la pregunta que apareix a continuació ([[Special:Captcha/help|més informació]]):" } PK ! O�f� � i18n/el.jsonnu �Iw�� { "@metadata": { "authors": [ "Omnipaedista", "Protnet" ] }, "questycaptcha-desc": "Γεννήτρια Questy CAPTCHA για το Confirm Edit", "questycaptcha-addurl": "Η επεξεργασία σας περιλαμβάνει νέους εξωτερικούς συνδέσμους.\nΓια την προστασία του wiki ενάντια σε αυτοματοποιημένη επεξεργασία spam, σας παρακαλούμε να απαντήσετε στην παρακάτω ερώτηση ([[Special:Captcha/help|περισσότερες πληροφορίες]]):", "questycaptcha-badlogin": "Για την προστασία του wiki ενάντια σε αυτοματοποιημένο σπάσιμο κωδικών, σας παρακαλούμε να απαντήσετε στην παρακάτω ερώτηση ([[Special:Captcha/help|περισσότερες πληροφορίες]]):", "questycaptcha-createaccount": "Για την προστασία του wiki ενάντια σε αυτοματοποιημένη δημιουργία λογαριασμών, σας παρακαλούμε να απαντήσετε στην παρακάτω ερώτηση ([[Special:Captcha/help|περισσότερες πληροφορίες]]):", "questycaptcha-create": "Για να δημιουργήσετε τη σελίδα, σας παρακαλούμε να απαντήσετε στην παρακάτω ερώτηση ([[Special:Captcha/help|περισσότερες πληροφορίες]]):", "questycaptcha-edit": "Για να επεξεργαστείτε αυτή τη σελίδα, σας παρακαλούμε να απαντήσετε στην παρακάτω ερώτηση ([[Special:Captcha/help|περισσότερες πληροφορίες]]):", "questycaptcha-sendemail": "Για την προστασία του wiki ενάντια σε αυτοματοποιημένο σπαμάρισμα, σας παρακαλούμε να απαντήσετε στην παρακάτω ερώτηση ([[Special:Captcha/help|περισσότερες πληροφορίες]]):", "questycaptchahelp-text": "Οι ιστότοποι που επιτρέπουν δημόσιες συνεισφορές, όπως αυτό το wiki, παραβιάζονται συχνά από spammers που χρησιμοποιούν αυτοματοποιημένα εργαλεία για να δημοσιεύουν μαζικά υπερσυνδέσμους σε πλήθος ιστοτόπων. Αν και αυτοί οι σύνδεσμοι spam μπορούν να αφαιρεθούν, είναι μεγάλος μπελάς.\n\nΜερικές φορές, ειδικά κατά την προσθήκη νέων συνδέσμων σε μια σελίδα, το wiki μπορεί να σας ζητήσει να απαντήσετε σε μια ερώτηση. Δεδομένου ότι αυτή η εργασία είναι δύσκολο να αυτοματοποιηθεί, θα επιτρέψει στους περισσότερους πραγματικούς ανθρώπους να κάνουν τις δημοσιεύσεις τους, σταματώντας όμως spammers και άλλους ρομποτικά επιτιθέμενους.\n\nΠαρακαλούμε επικοινωνήστε με τους [[Special:ListAdmins|διαχειριστές του ιστότοπου]] για βοήθεια εάν αυτό για κάποιο λόγο σας αποτρέπει να εκτελέσετε θεμιτές ενέργειες.\n\nΠατήστε το κουμπί «πίσω» στον περιηγητή σας για να επιστρέψετε στον επεξεργαστή σελίδων." } PK ! M��� � i18n/et.jsonnu �Iw�� { "@metadata": { "authors": [ "Pikne" ] }, "questycaptcha-addurl": "Sinu muudatus sisaldab uusi välislinke.\nPalun vasta alljärgnevale küsimusele. Abinõu on kaitseks automaadistatud rämpsmuudatuste eest ([[Special:Captcha/help|lisateave]]):", "questycaptcha-badlogin": "Palun vasta alljärgnevale küsimusele. Abinõu on kaitseks automaatsete parooliäraarvajate eest ([[Special:Captcha/help|lisateave]]):", "questycaptcha-createaccount": "Palun vasta alljärgnevale küsimusele. Abinõu on kaitseks kontode automaatse loomise eest ([[Special:Captcha/help|lisateave]]):", "questycaptcha-create": "Lehekülje loomiseks vasta palun alljärgnevale küsimusele ([[Special:Captcha/help|lisateave]]):", "questycaptcha-edit": "Selle lehekülje muutmiseks vasta palun alljärgnevale küsimusele ([[Special:Captcha/help|lisateave]]):", "questycaptcha-sendemail": "Palun vasta alljärgnevale küsimusele. Abinõu on kaitseks automaadistatud rämpsmuudatuste eest ([[Special:Captcha/help|lisateave]]):", "questycaptchahelp-text": "Võrgukohti, mis lubavad külastajatel sisu muuta, nagu ka see viki, kasutavad sageli rämpsposti levitajad, kes lisavad lehekülgedele näiteks reklaamlinke. Kuigi neid linke saab eemaldada, on nad siiski tülikad.\n\nKui registreerid kasutajakonto või lisad mõnele leheküljele uusi veebilinke, võidakse paluda sul küsimusele vastata.\nKuna küsimusele vastamist on raske automaadistada, on see tõhusaks kaitseks rämpspostirobotite vastu ja lubab samas tavakasutajatel rahus muudatusi teha.\n\nKui sul tekib raskusi muudatuste tegemisel, võta palun ühendust selle võrgukoha [[Special:ListAdmins|administraatoritega]].\n\nRedigeerimislehele naasmiseks klõpsa brauseri ''tagasi''-nuppu." } PK ! D<�L� � i18n/ms.jsonnu �Iw�� { "@metadata": { "authors": [ "Anakmalaysia", "Pizza1016" ] }, "questycaptcha-addurl": "Suntingan anda mengandungi pautan luar baru.\nUntuk membanteras kegiatan spam automatik, anda diminta menjawab soalan yang berikut ([[Special:Captcha/help|maklumat lanjut]]):", "questycaptcha-badlogin": "Untuk membanteras kegiatan meneka kata laluan secara automatik, anda diminta menjawab soalan berikut ([[Special:Captcha/help|maklumat lanjut]]):", "questycaptcha-createaccount": "Untuk membanteras kegiatan pembukaan akaun secara automatik, anda diminta menjawab soalan berikut ([[Special:Captcha/help|maklumat lanjut]]):", "questycaptcha-create": "Untuk mencipta laman ini, anda diminta menjawab soalan berikut ([[Special:Captcha/help|maklumat lanjut]]):", "questycaptcha-edit": "Untuk menyunting laman ini, anda diminta menjawab soalan berikut ([[Special:Captcha/help|maklumat lanjut]]):", "questycaptcha-sendemail": "Untuk membanteras kegiatan spam secara automatik, anda diminta menjawab soalan berikut ([[Special:Captcha/help|maklumat lanjut]]):", "questycaptchahelp-text": "Tapak-tapak web yang menerima sumbangan dari orang awam, misalnya wiki ini, sering disalahgunakan oleh penghantar spam yang menggunakan peralatan berautomasi untuk menambah pautan-pautan mereka ke banyak tapak.\nWalaupun pautan-pautan spam ini boleh dipadamkan, namun ia amat menyusahkan.\n\nAdakalanya, terutamanya apabila menambah pautan web baru kepada sesebuah laman, wiki ini mungkin akan menanya anda satu soalan.\nOleh sebab tugas ini sukar dilakukan secara automatik, ia akan membolehkan kebanyakan manusia sebenar untuk membuat sumbangan mereka sambil menghalang penghantar spam dan serangan robotik yang seumpamanya.\n\nSila hubungi [[Special:ListAdmins|penyelia-penyelia tapak]] untuk mendapat bantuan jika ia menghalang anda daripada membuat sumbangan yang munasabah tanpa dijangka.\n\nSila tekan butang 'balik' dalam pelayar web anda untuk kembali ke penyunting laman." } PK ! o�G G i18n/zh-hans.jsonnu �Iw�� { "@metadata": { "authors": [ "Cwek", "Fantasticfears", "Impersonator 1", "Liuxinyu970226", "Mywood" ] }, "questycaptcha-desc": "用于确认编辑的问题验证码生成器", "questycaptcha-addurl": "您的编辑包含新的外部链接。为保护本wiki免受自动垃圾程序的破坏,我们恳请您回答下面显示的问题([[Special:Captcha/help|更多信息]]):", "questycaptcha-badlogin": "为保护本wiki免受自动密码破解的破坏,我们恳请你回答下面显示的问题([[Special:Captcha/help|更多信息]]):", "questycaptcha-createaccount": "为保护本wiki免受自动账户创建的破坏,我们恳请您回答下面显示的问题([[Special:Captcha/help|更多信息]]):", "questycaptcha-create": "要创建页面,请回答下面显示的问题([[Special:Captcha/help|更多信息]]):", "questycaptcha-edit": "要编辑该页面,请回答下面显示的问题([[Special:Captcha/help|更多信息]]):", "questycaptcha-sendemail": "为保护本wiki免受自动垃圾程序的破坏,我们恳请您回答下面显示的问题([[Special:Captcha/help|更多信息]]):", "questycaptchahelp-text": "接受公众贡献者的网站,比如本wiki,经常受到使用自动工具添加垃圾网站链接的垃圾制造者的破坏。尽管这些链接可以被删除,它们仍然极其麻烦。\n\n有时,特别是给页面添加新的网络链接时,本wiki可能需要你回答问题。由于这是一项难以用自动工具完成的任务,它可以允许在大多数真人做出贡献的同时,阻止大多数垃圾制造者和其他自动攻击者。\n\n如果这项措施意外地阻止你进行正常的贡献,请与[[Special:ListAdmins|网站管理员]]联系获取帮助。\n\n点击浏览器的“后退”按钮返回页面编辑器。" } PK ! S'B<� � i18n/hsb.jsonnu �Iw�� { "@metadata": { "authors": [ "J budissin", "Michawiki" ] }, "questycaptcha-addurl": "Twoja změna wobsahuje nowe eksterne wotkazy.\nZa škit přećiwo awtomatizowanemu spamej, wotmołw prošu na prašenje, kotrež so deleka jewi ([[Special:Captcha/help|dalše informacije]]):", "questycaptcha-badlogin": "Za škit přećiwo awtomatiskemu kradnjenju hesła, wotmołw prošu na prašenje, kotrež so deleka jewi ([[Special:Captcha/help|dalše informacije]]):", "questycaptcha-createaccount": "Za škit přećiwo awtomatizowanemu tworjenju kontow, wotmołw prošu na prašenje, kotrež so deleka jewi ([[Special:Captcha/help|dalše informacije]]):", "questycaptcha-create": "Zo by stronu wutworił, wotmołw prošu na prašenje, kotrež so deleka jewi ([[Special:Captcha/help|dalše informacije]]):", "questycaptcha-edit": "Zo by tutu stronu změnił, wotmołw prošu na prašenje, kotrež so deleka jewi ([[Special:Captcha/help|dalše informacije]]):", "questycaptcha-sendemail": "Za škit přećiwo awtomatiskemu spamowanju, wotmołw prošu na prašenje, kotrež so deleka jewi ([[Special:Captcha/help|dalše informacije]]):", "questycaptchahelp-text": "Websydła, kotrež přinoški ze zjawnosće akceptuja, kaž tutón wiki, so často wot spamarjow znjewužiwaja, kotřiž awtomatizowane nastroje wužiwaja, zo bychu swoje wotkazy wjele sydłam přidali. Hačrunjež so tute spamowe wotkazy hodźa wotstronić, su wone njesnadnje mjerzace.\n\nDruhdy, wosebje, hdyž so stronje nowe webwotkazy přidawaja, wiki so će něšto praša.\nDokelž je to nadawk, kotryž hodźi so jenož ćežko awtomatizować, dowoluje to woprawdźitym wosobam swoje přinoški wotpósłać, mjeztym zo so najwjace spamarjow a druhich nadpadowacych botow blokuje. \n\nProšu přińdź z [[Special:ListAdmins|administratorami sydła]] do rozmołwy wo pomoc, jeli to će haći legitimne přinoški wotpósłać. \n\nKlikń na tłóčatko \"Wróćo\" w swojim wobhladowaku, zo by so k wobdźěłowanskemu woknu wróćił." } PK ! @yS_� � i18n/nl.jsonnu �Iw�� { "@metadata": { "authors": [ "HanV", "McDutchie", "Siebrand" ] }, "questycaptcha-desc": "Questy CAPTCHA-generator voor Confirm Edit", "questycaptcha-addurl": "Uw bewerking bevat nieuwe externe koppelingen.\nBeantwoord de onderstaande vraag als bescherming tegen automatische spam ([[Special:Captcha/help|meer informatie]]):", "questycaptcha-badlogin": "Beantwoord de onderstaande vraag als bescherming tegen het automatisch kraken van wachtwoorden ([[Special:Captcha/help|meer informatie]]):", "questycaptcha-createaccount": "Beantwoord de onderstaande vraag als bescherming tegen het geautomatiseerd aanmaken van gebruikers ([[Special:Captcha/help|meer informatie]]):", "questycaptcha-create": "Beantwoord de onderstaande vraag om de pagina aan te maken ([[Special:Captcha/help|meer informatie]]):", "questycaptcha-edit": "Beantwoord de onderstaande vraag om deze pagina te bewerken ([[Special:Captcha/help|meer informatie]]):", "questycaptcha-sendemail": "Beantwoord de onderstaande vraag als bescherming tegen geautomatiseerde spam ([[Special:Captcha/help|meer informatie]]):", "questycaptchahelp-text": "Websites die vrij te bewerken zijn, zoals deze wiki, worden vaak misbruikt door spammers die er met hun programma's automatisch koppelingen op zetten naar vele websites.\nHoewel deze externe koppelingen weer verwijderd kunnen worden, leveren ze wel veel hinder en administratief werk op.\n\nSoms, en in het bijzonder bij het toevoegen van externe koppelingen op pagina's, vraag de wiki u een vraag te beantwoorden.\nOmdat dit proces lastig te automatiseren is, zijn vrijwel alleen mensen in staat dit proces succesvol te doorlopen en worden hiermee spammers en andere geautomatiseerde aanvallen geweerd.\n\nVraag assistentie van de [[Special:ListAdmins|sitebeheerders]] als dit proces u verhindert een nuttige bijdrage te leveren.\n\nKlik op de knop \"terug\" in uw browser om terug te gaan naar het tekstbewerkingsscherm." } PK ! Z���Q Q i18n/gl.jsonnu �Iw�� { "@metadata": { "authors": [ "Iváns", "Toliño" ] }, "questycaptcha-desc": "Xerador de preguntas CAPTCHA para Confirm Edit", "questycaptcha-addurl": "A súa edición inclúe novas ligazóns externas.\nPara protexer o wiki contra o spam automático, conteste a pregunta que aparece a continuación ([[Special:Captcha/help|máis información]]):", "questycaptcha-badlogin": "Para protexer o wiki contra o roubo de contrasinais, conteste a pregunta que aparece a continuación ([[Special:Captcha/help|máis información]]):", "questycaptcha-createaccount": "Para protexer o wiki contra a creación automática de contas, conteste a pregunta que aparece a continuación ([[Special:Captcha/help|máis información]]):", "questycaptcha-create": "Para crear a páxina, conteste a pregunta que aparece a continuación ([[Special:Captcha/help|máis información]]):", "questycaptcha-edit": "Para editar esta páxina, conteste a pregunta que aparece a continuación ([[Special:Captcha/help|máis información]]):", "questycaptcha-sendemail": "Para protexer o wiki contra o spam automático, conteste a pregunta que aparece a continuación ([[Special:Captcha/help|máis información]]):", "questycaptchahelp-text": "Os sitios web que aceptan publicar as contribucións dos usuarios, coma este wiki, sofren, con frecuencia, o abuso por parte de spammers que empregan ferramentas que automatizan a inclusión de lixo en forma de ligazóns publicitarias, nunha chea de páxinas, en pouco tempo.\nMentres as devanditas ligazóns non son eliminadas supoñen unha molestia e unha perda de tempo.\n\nEn ocasións, en particular cando engadas algunha nova ligazón externa, o wiki pode pedirche que contestes unha pregunta.\nComo esta tarefa é difícil de automatizar, permite distinguir entre persoas e robots e dificulta os ataques automatizados dos spammers.\n\nPor favor, ponte en contacto cun [[Special:ListAdmins|administrador do sitio]] para solicitar axuda se o sistema che impide rexistrarte para facer contribucións lexítimas.\n\nPreme no botón \"Atrás\" do teu navegador para volver á páxina de edición." } PK ! �lq~ ~ i18n/dsb.jsonnu �Iw�� { "@metadata": { "authors": [ "Michawiki" ] }, "questycaptcha-addurl": "Twója změna wopśimujo nowe eksterne wótkaze.\nAby wiki pśeśiwo zawtomatizěrowanemu spamoju šćitał, wótegroń pšosym na pšašanje, kótarež pokazujo se dołojce ([[Special:Captcha/help|dalšne informacije]]):", "questycaptcha-badlogin": "Aby wiki pśeśiwo zawtomatizěrowanemu wusnuchlenjeju gronidła šćitał, wótegroń pšosym na pšašanje, kótarež pokazujo se dołojce ([[Special:Captcha/help|dalšne informacije]]):", "questycaptcha-createaccount": "Aby wiki pśeśiwo zawtomatizěrowanemu napóranjeju kontow šćitał, wótegroń pšosym na pšašanje, kótarež pokazujo se dołojce ([[Special:Captcha/help|dalšne informacije]]):", "questycaptcha-create": "Aby napórał bok, wótegroń pšosym na pšašanje, kótarež pokazujo se dołojce ([[Special:Captcha/help|dalšne informacije]]):", "questycaptcha-edit": "Aby wobźěłał toś ten bok, wótegroń pšosym na pšašanje, kótarež pokazujo se dołojce ([[Special:Captcha/help|dalšne informacije]]):", "questycaptcha-sendemail": "Aby wiki pśeśiwo awtomatiskemu spamowanjeju šćitał, wótegroń pšosym pšašanje, kótarež pokazujo se dołojce ([[Special:Captcha/help|dalšne informacije]]):", "questycaptchahelp-text": "Websedła, kótarež akceptěruju zjawne pśinoski, ako toś ten wiki, znjewužywaju se cesto wót spamowarjow, kótarež wužywaju zawtomatizěrowane rědy, aby pśidali swóje wótkaze na wjele sedłow. Lěcrownož toś te spamowe wótkaze daju se wótpóraś, su wóne bejna pógóršota. \n\nWótergi, wósebnje, gaž se nowe wótkaze pśidawaju bokoju, jo móžno, až se śi wiki něco pšaša. \nDokulaž to jo nadawk, kótaryž dajo se śěžko awtomatizěrowaś, dowólujo to napšawdnym luźam jich pśinoski wótpósłaś, nejwěcej spamowarjow a robotowe ataki pak se zaźaržyju. \n\nStaj se pšosym z [[Special:ListAdmins|administratorami sedła]] z pšosbu wó pomoc do zwiska, jolic to śi njewócakane zawobarujo słanje legitimnych pśinoskow. \n\nKlikni na tłocašk \"Slědk\" we swójom wobglědowaku, aby wróśił se k wobźěłowańskemu woknoju." } PK ! ��� � i18n/he.jsonnu �Iw�� { "@metadata": { "authors": [ "Amire80", "Guycn2", "Rotemliss", "YaronSh" ] }, "questycaptcha-desc": "יצירת שאלות CAPTCHA עבור ההרחבה Confirm Edit", "questycaptcha-addurl": "עריכתך כוללת קישורים חיצוניים חדשים.\nכהגנה מפני ספאם אוטומטי, נא לענות על השאלה המופיעה להלן ([[Special:Captcha/help|מידע נוסף]]):", "questycaptcha-badlogin": "כהגנה מפני פריצת סיסמאות אוטומטית, נא לענות על השאלה המופיעה להלן ([[Special:Captcha/help|מידע נוסף]]):", "questycaptcha-createaccount": "כהגנה מפני יצירת חשבונות אוטומטית, נא לענות על השאלה המופיעה להלן ([[Special:Captcha/help|מידע נוסף]]):", "questycaptcha-create": "כדי ליצור את הדף, נא לענות על השאלה המופיעה להלן ([[Special:Captcha/help|מידע נוסף]]):", "questycaptcha-edit": "כדי לערוך את הדף, נא לענות על השאלה המופיעה להלן ([[Special:Captcha/help|מידע נוסף]]):", "questycaptcha-sendemail": "כדי לסייע בהגנה מפני הודעות ספאם אוטומטיות, נא לענות על השאלה המופיעה להלן ([[Special:Captcha/help|מידע נוסף]]):", "questycaptchahelp-text": "פעמים רבות מנצלים ספאמרים אתרים שמקבלים תוכן מהציבור, כמו אתר הוויקי הזה, כדי להוסיף את הקישורים שלהם לאתרים רבים באינטרנט, באמצעות כלים אוטומטיים.\nאמנם ניתן להסיר את קישורי הספאם הללו, אך הם מהווים מטרד משמעותי.\n\nלעיתים, בעיקר בעת הכנסת קישורי וב חדשים לתוך דף, אתר הוויקי עשוי לבקש ממך לענות על שאלה.\nכיוון שזו משימה שקשה לבצעה בצורה אוטומטית, הדבר יאפשר לבני־אדם אמיתיים לשלוח את הדפים, אך יעצור את רוב הספאמרים והמתקיפים הרובוטיים האחרים.\n\nנא ליצור קשר עם [[Special:ListAdmins|מפעילי המערכת]] לעזרה אם המערכת מונעת ממך באופן בלתי־צפוי לבצע עריכות לגיטימיות.\n\nנא ללחוץ על הכפתור \"חזרה\" בדפדפן שלך כדי לחזור לדף העריכה." } PK ! ud%�� � i18n/zh-hant.jsonnu �Iw�� { "@metadata": { "authors": [ "Cwlin0416", "Horacewai2", "Justincheng12345", "Kly", "Waihorace" ] }, "questycaptcha-desc": "用於確認編輯的問題型驗證碼產生器", "questycaptcha-addurl": "您的編輯使用了新的外部連結。為了防止垃圾編輯程式,我們要麻煩您回答以下的問題 ([[Special:Captcha/help|更多資訊]]):", "questycaptcha-badlogin": "為了防止密碼破解程式,我們要麻煩您回答以下的問題 ([[Special:Captcha/help|更多資訊]]):", "questycaptcha-createaccount": "為了防止自動註冊程式,我們要麻煩您回答以下的問題 ([[Special:Captcha/help|更多資訊]]):", "questycaptcha-create": "若要建立此頁面,請回答以下的問題 ([[Special:Captcha/help|更多資訊]]):", "questycaptcha-edit": "若要編輯此頁面,請回答以下的問題 ([[Special:Captcha/help|更多資訊]]):", "questycaptcha-sendemail": "為了防止垃圾編輯程式,我們要麻煩您回答以下的問題 ([[Special:Captcha/help|更多資訊]]):", "questycaptchahelp-text": "開放大眾編輯的網站,如本 Wiki,時常會遭受惡意的人士使用自動化的程式將他們的垃圾連結散步到許多網站。\n雖然這些垃圾可以手動移除,但十足造成了困擾。\n\n某些時候,特別是在頁面新增網站連結時,Wiki 可能會詢問您一些問題,讓自動化的程式難以回答,這讓真實的使用者可進行編輯貢獻的同時,阻止大部份自動化程式的攻擊。\n\n若這個功能在預料之外阻止你進行正常編輯,請與 [[Special:ListAdmins|管理員]] 聯繫取得協助。\n\n請點選瀏覽器的 \"返回\" 按鈕返回頁面編輯器。" } PK ! � @�b b i18n/es.jsonnu �Iw�� { "@metadata": { "authors": [ "Ciencia Al Poder", "Crazymadlover", "Jakeukalane", "Macofe", "Pertile", "Sporeunai", "Tiberius1701" ] }, "questycaptcha-addurl": "Tu edición incluye enlaces externos nuevos. \nPara proteger la wiki contra el spam automatizado, te pedimos que respondas la pregunta que aparece debajo ([[Special:Captcha/help|más información]]):", "questycaptcha-badlogin": "Para proteger la wiki contra el descifrado automatizado de contraseñas, te pedimos que respondas la pregunta que aparece debajo ([[Special:Captcha/help|más información]]):", "questycaptcha-createaccount": "Para proteger la wiki contra la creación automatizada de cuentas, te pedimos que respondas la pregunta que aparece debajo ([[Special:Captcha/help|más información]]):", "questycaptcha-create": "Para crear la página, por favor responde la pregunta que aparece abajo ([[Special:Captcha/help|más información]]):", "questycaptcha-edit": "Para editar esta página, responde la pregunta que aparece abajo ([[Special:Captcha/help|más información]]):", "questycaptcha-sendemail": "Para proteger la wiki contra el spam automatizado, te pedimos que respondas la pregunta que aparece debajo ([[Special:Captcha/help|más información]]):", "questycaptchahelp-text": "Los sitios web que aceptan contribuciones del público, como esta wiki, son constantemente acosadas por spammers que usan herramientas automatizadas para agregar sus enlaces a muchos sitios.\nSi bien estos enlaces de spam se pueden eliminar, son una molestia importante.\n\nA veces, especialmente cuando se agregan nuevos enlaces web a una página, el wiki puede pedirte que respondas a una pregunta.\nDado que esta es una tarea difícil de automatizar, permitirá que la mayoría de los seres humanos realicen sus contribuciones mientras detienen a la mayoría de los spammers y otros atacantes robóticos.\n\nPonte en contacto con los [[Special:ListAdmins|administradores del sitio]] para obtener ayuda si esto te impide realizar contribuciones legítimas.\n\nHaz clic en el botón «atrás» en tu navegador para regresar al editor de páginas." } PK ! ���Q� � i18n/roa-tara.jsonnu �Iw�� { "@metadata": { "authors": [ "Joetaras" ] }, "questycaptcha-desc": "Generatore CAPTCHA Questy pu Confirm Edit", "questycaptcha-addurl": "'U cangiamende tune 'nglude de le collegaminde de fore.\nPeproteggere condre a 'u spam automateche, pe piacere respunne a 'a domande ca iesse sotte ([[Special:Captcha/help|cchiù 'mbormaziune]]):", "questycaptcha-badlogin": "Pe proteggere condre a futteminde automatece de password, pe piacere respunne a 'a domande ca iesse aqquà sotte ([[Special:Captcha/help|cchiù 'mbormaziune]]):", "questycaptcha-createaccount": "Pe proteggere condre a ccreazione automateche de cunde utinde, pe piacere respunne a 'a domande ca iesse aqquà sotte ([[Special:Captcha/help|cchiù 'mbormaziune]]):", "questycaptcha-create": "Pe ccrejà sta pàgene, pe piacere respunne a 'a domande ca combare aqquà sotte ([[Special:Captcha/help|more info]]):", "questycaptcha-edit": "Pe cangià sta pàgene, pe piacere respunne a 'a domande ca combare aqquà sotte ([[Special:Captcha/help|more info]]):", "questycaptcha-sendemail": "Pe proteggere condre a spam automatece, pe piacere respunne a 'a domande ca iesse aqquà sotte ([[Special:Captcha/help|cchiù 'mbormaziune]]):", "questycaptchahelp-text": "Le site web ca accettane condrebbute da 'u pubbleche, cumme sta Uicchi, sonde spesse abusate da le ''spammer'' ca ausane struminde automatece e aggiungene le lore collegaminde a 'nu sacche de site.<br />\nPure ca chiste collegaminde de spam ponne essere luate, lore sò sembre 'nu scassamende de palle.<br />\n<br />\nCerte vote, specialmende quanne aggiunge 'nu nuève collegamende web a 'na pàgene, Uicchi te pò chiedere de responnere a 'na domande.<br />\nAccussì addeviene 'nu combete cchiù defficile da automatizzà, accussì se permette a le cristiane de fà cangiaminde reale e se blocchene de cchiù le ''spammer'' e otre attacche de robot.<br />\n<br />\nPe piacere condatte le [[Special:ListAdmins|amministrature d'u site]] pe assistenze ce stu fatte non ge funzione accume se deve e no te face fà le cangiaminde legittime.<br />\n<br />\nCazze 'u buttone 'rrete' jndr'à 'u browser tue pe turnà 'a pàgene d'u cangiamende." } PK ! o�S� � i18n/sl.jsonnu �Iw�� { "@metadata": { "authors": [ "Dbc334", "Eleassar" ] }, "questycaptcha-desc": "Domiseln generator CAPTCHA za potrditev urejanja", "questycaptcha-addurl": "Vaše urejanje vključuje nove zunanje povezave.\nZa zaščito vikija pred samodejnim smetjem vas prijazno prosimo, da odgovorite na spodnje vprašanje ([[Special:Captcha/help|več o tem]]):", "questycaptcha-badlogin": "Za zaščito vikija pred samodejnim ugotavljanjem gesel vas prijazno prosimo, da odgovorite na spodnje vprašanje ([[Special:Captcha/help|več o tem]]):", "questycaptcha-createaccount": "Za zaščito vikija pred samodejnim ustvarjanjem računov vas prijazno prosimo, da odgovorite na spodnje vprašanje ([[Special:Captcha/help|več o tem]]):", "questycaptcha-create": "Če želite ustvariti stran, prosimo odgovorite na spodaj zastavljeno vprašanje ([[Special:Captcha/help|več informacij]]):", "questycaptcha-edit": "Če želite urediti stran, prosimo odgovorite na spodaj zastavljeno vprašanje ([[Special:Captcha/help|več informacij]]):", "questycaptcha-sendemail": "Za zaščito vikija pred samodejnim smetenjem vas prijazno prosimo, da odgovorite na spodnje vprašanje ([[Special:Captcha/help|več o tem]]):", "questycaptchahelp-text": "Spletna mesta, ki omogočajo sodelovanje širše javnosti, kot na primer ta viki, pogosto zlorabljajo smetilci, ki za dodajanje svojih povezav na številne strani uporabljajo avtomatizirana orodja.\nČeprav je neželene povezave mogoče odstraniti, so precejšnja nadloga.\n\nVčasih, zlasti pri dodajanju novih spletnih povezav na stran, vam bo viki morda zastavil vprašanje.\nKer je to opravilo težko avtomatizirati, bo s tem večini ljudi prispevanje dovoljeno, smetilci in drugi robotski napadalci pa bodo ustavljeni.\n\nČe vam to nepričakovano preprečuje legitimno prispevanje, prosimo, da se obrnete na [[Special:ListAdmins|administratorje projekta]].\n\nZa vrnitev v urejevalnik v brskalniku izberite gumb »nazaj«." } PK ! =�,�B B i18n/it.jsonnu �Iw�� { "@metadata": { "authors": [ "Beta16", "Darth Kule", "Nemo bis" ] }, "questycaptcha-addurl": "La modifica richiesta aggiunge dei collegamenti esterni alla pagina.\nPer proteggere il wiki dallo spam automatico, ti chiediamo gentilmente di rispondere alla domanda che compare di seguito ([[Special:Captcha/help|come funziona?]]):", "questycaptcha-badlogin": "Per proteggere il wiki dalla forzatura automatica delle password, ti chiediamo gentilmente di rispondere alla domanda che compare di seguito ([[Special:Captcha/help|come funziona?]]):", "questycaptcha-createaccount": "Per proteggere il wiki dalla creazione automatica di nuovi accessi, ti chiediamo gentilmente di rispondere alla domanda che compare di seguito ([[Special:Captcha/help|come funziona?]]):", "questycaptcha-create": "Per creare la pagina si prega di rispondere alla domanda che compare di seguito ([[Special:Captcha/help|come funziona?]]):", "questycaptcha-edit": "Per modificare questa pagina si prega di rispondere alla domanda che compare di seguito ([[Special:Captcha/help|come funziona?]]):", "questycaptcha-sendemail": "Per proteggere il wiki dalle modifiche automatiche che aggiungono spam, ti chiediamo gentilmente di rispondere alla domanda che compare di seguito ([[Special:Captcha/help|come funziona?]]):", "questycaptchahelp-text": "Capita spesso che i siti web che accettano contributi pubblici, come questo wiki, siano presi di mira da persone che usano strumenti automatici per inserire collegamenti pubblicitari verso un gran numero di siti (spam). Per quanto i collegamenti indesiderati si possano rimuovere, si tratta comunque di una seccatura non indifferente. \n\nIn alcuni casi, ad esempio quando si tenta di aggiungere nuovi collegamenti web in una pagina, il software wiki può richiedere di rispondere a una domanda. Poiché si tratta di un'azione difficile da replicare da parte di un computer, questo meccanismo consente a (quasi tutti) gli utenti reali di effettuare i proprio contributi, impedendo l'accesso alla maggior parte degli spammer e degli altri attacchi automatizzati. \n\nSe queste procedure impediscono contributi che si ritengono legittimi, si prega di contattare gli [[Special:ListAdmins|amministratori del sito]] e chiedere loro assistenza. \n\nFare clic sul pulsante \"indietro\" del browser per tornare alla pagina di modifica." } PK ! ��샾 � i18n/nb.jsonnu �Iw�� { "@metadata": { "authors": [ "Danmichaelo", "Helland", "Jon Harald Søby", "Nghtwlkr", "Simny" ] }, "questycaptcha-desc": "Questy CAPTCHA-generator for Confirm Edit", "questycaptcha-addurl": "Redigeringen din inneholder nye eksterne lenker. For å beskytte wikien mot automatisert spam, ber vi om at du svarer på spørsmålet som vises under ([[Special:Captcha/help|mer informasjon]]):", "questycaptcha-badlogin": "For å hindre passordtyveri, ber vi deg å svare på spørsmålet under ([[Special:Captcha/help|mer informasjon]]):", "questycaptcha-createaccount": "For å beskytte wikien mot automatisert spam, ber vi deg om å svare på spørsmålet som vises under ([[Special:Captcha/help|mer informasjon]]):", "questycaptcha-create": "For å opprette siden, vennligst svar på spørsmålet som vises under ([[Special:Captcha/help|mer informasjon]]):", "questycaptcha-edit": "For å endre denne siden, vennligst svar på spørsmålet som vises under ([[Special:Captcha/help|mer informasjon]]):", "questycaptcha-sendemail": "For å beskytte wikien mot automatisert søppelpost, ber vi deg å svare på spørsmålet som vises nedenfor ([[Special:Captcha/help|mer info]]):", "questycaptchahelp-text": "Nettsteder som tar imot bidrag fra allmennheten, som denne wikien, er ofte utsatt for angrep fra spammere som bruker automatiserte verktøy for å legge til lenker til mange sider.\nSelv om disse spam-lenkene kan fjernes er de en stor plage.\n\nIblant, spesielt ved tillegg av nye lenker til en side, kan wikien be deg svare på et spørsmål.\nSiden dette er en oppgave som er vanskelig å automatisere, vil den tillate de fleste virkelige personer å bidra mens den stopper de fleste spammere og andre robotangrep.\n\nVennligst kontakt [[Special:ListAdmins|sideadministratorer]] for hjelp dersom dette er uventet hindrer deg fra å bidra med legitime bidrag.\n\nKlikk på 'tilbake'-knappen i nettleseren din for å gå tilbake til sideeditoren." } PK ! ��$n� � i18n/mt.jsonnu �Iw�� { "@metadata": { "authors": [ "Chrisportelli" ] }, "questycaptcha-addurl": "Il-modifika tiegħek tinkludi ħoloq esterni ġodda.\nSabiex tipproteġi kontra spam awtomatiku, jekk jogħġbok irrispondi l-mistoqsija li tidher hawn taħt ([[Special:Captcha/help|aktar informazzjoni]]):", "questycaptcha-badlogin": "Bħala prekawzjoni kontra l-infurzar awtomatiku tal-password, jekk jogħġbok irrispondi l-mistoqsija li tidher hawn taħt ([[Special:Captcha/help|aktar informazzjoni]]):", "questycaptcha-createaccount": "Bħala miżura ta' prekawzjoni kontra l-ħolqien awtomatiku tal-kontijiet, jekk jogħġbok irrispondi l-mistoqsija li tidher hawn taħt ([[Special:Captcha/help|aktar informazzjoni]]):", "questycaptcha-create": "Sabiex toħloq din il-paġna, jekk jogħġbok irrispondi l-mistoqsija li tidher hawn taħt ([[Special:Captcha/help|aktar informazzjoni]]):", "questycaptcha-edit": "Sabiex timmodifika din il-paġna, jekk jogħġbok irrispondi l-mistoqsija li tidher hawn taħt ([[Special:Captcha/help|aktar informazzjoni]]):", "questycaptcha-sendemail": "Bħala prekawzjoni kontra l-ispam awtomatiku, jekk jogħġbok irrispondi l-mistoqsija li tidher hawn taħt ([[Special:Captcha/help|aktar informazzjoni]]):", "questycaptchahelp-text": "Siti elettroniċi li jaċċettaw kontribuzzjonijiet mill-pubbliku, bħal din il-wiki, huma ħafna drabi abbużati minn ''spammers'' li jużaw għodda awtomatiċi sabiex idaħħlu ħoloq lejn ħafna siti.\nWaqt li dawn il-ħoloq ta' spam jistgħu jitneħħew, dan huwa xorta waħda xogħol għalxejn.\n\nXi drabi, speċjalment meta żżid ħoloq esterni ġodda f'paġna, il-paġna wiki tista' tistaqsik biex tirrispondi mistoqsija.\nMinħabba li din hija azzjoni li diffiċli li tiġi replikata min-naħa ta' kompjuter, dan il-mekkaniżmu jippermetti lil (kważi) kull utent li jeżisti li jagħmel il-kontribuzzjonijiet tiegħu waqt li ħafna ''spammers'' u attakki awtomatiċi jiġu mwaqqfa.\n\nJekk jogħġbok ikkuntatja lill-[[Special:ListAdmins|amministraturi tas-sit]] għall-għajnuna fuq jekk din il-proċedura hix qed tipprevjeni milli tagħmel kontribuzzjonijiet leġittimi.\n\nIklikkja fuq il-buttuna 'lura' tal-browżer tiegħek sabiex tirritorna għall-editur ta-paġna." } PK ! Hk0� � i18n/fa.jsonnu �Iw�� { "@metadata": { "authors": [ "Beginneruser", "Ebrahim", "Ebraminio", "Iriman", "Omidh" ] }, "questycaptcha-addurl": "ویرایش شما شامل پیوندهای جدید به بیرون است.\nبرای محافظت از ویکی در برابر هرزنامههای خودکار، ما از شما خواهش میکنیم که به سوال زیر پاسخ دهید ([[Special:Captcha/help|اطلاعات بیشتر]]):", "questycaptcha-badlogin": "برای محافظت ویکی در مقابل شکستن خودکار رمز عبور، ما با احترام از شما خواهشمندیم، به سوالی که در زیر ظاهر میشود پاسخ دهید ([[Special:Captcha/help|اطلاعات بیشتر]]):", "questycaptcha-createaccount": "برای جلوگیری از ایجاد خودکار حساب، خواهشمندیم به سوال زیر پاسخ دهید ([[Special:Captcha/help|اطلاعات بیشتر]]):", "questycaptcha-create": "برای ایجاد صفحه، لطفاً به سوالی که در زیر آمده است پاسخ دهید ([[Special:Captcha/help|اطلاعات بیشتر]]):", "questycaptcha-edit": "برای ویرایش این صفحه، لطفاً به سوال زیر پاسخ دهید ([[Special:Captcha/help|اطلاعات بیشتر]]):", "questycaptcha-sendemail": "برای حفاظت از ویکی در برابر هرزنامههای خودکار، از شما خواهش میکنیم که به سوال زیر پاسخ دهید ([[Special:Captcha/help|اطلاعات بیشتر]]):", "questycaptchahelp-text": "وبگاههایی که به عموم اجازهٔ نوشتن مطلب میدهند، مانند این ویکی، معمولاً توسط هرزنامه فرستندگانی که از ابزارهای خودکار برای افزودن پیوندهایشان به وبگاههای متعدد استفاده میکنند، مورد سوءاستفاده قرار میگیرند.\nاگر چه این پیوندهای هرزنامه را میتوان حذف کرد ولی باعث اعصابخوردی میشوند.\n\nگاهی اوقات، بخصوص زمانی که در یک صفحه پیوند جدیدی اضافه میکنید، ویکی ممکناست از شما سوالی بپرسد.\nبدلیل این که انجام اینکار برای ابزارهای خودکار سخت است، اجازه میدهد که انسانهای واقعی در ویکی شرکت کنند در حالی که بیشتر هرزنامهها و حملههای خودکار متوقف میشود.\n\nدر صورتی که سامانه به صورت پیشبینینشدهای از مشارکتهای صحیح شما جلوگیری میکند لطفاً با [[Special:ListAdmins|مدیران وبگاه]] تماس بگیرید.\n\nبر روی دکمهٔ «بازگشت» در مرورگر خود فشار دهید تا به صفحهٔ ویرایش برگردید." } PK ! p(� � i18n/ksh.jsonnu �Iw�� { "@metadata": { "authors": [ "Purodha" ] }, "questycaptcha-desc": "Dä <span style=\"text-transform:uppercase\" title=\"Jät zom Ennjävve, öm ze zeije, dadd ene Minsch vör em Kompjuhter sez\">Kaptscha</span>-Jennerahtor för et Zohsazprojramm Confirm Edit", "questycaptcha-addurl": "Ding Änderung säz neu Lengks noh ußerhallef vum Wiki.\nÖm uns jäje der automattesch dobeijedonn <i lang=\"en\">SPAM</i> ze hellefe,\nbes esu joot un donn di Frooch be_anntwoode, di heh dronger shteiht.\n([[Special:Captcha/help|Mieh Enfommazjuhne]])", "questycaptcha-badlogin": "Öm uns jäje et automattesche Paßwootknacke ze hellefe,\nbes esu joot un donn di Frooch be_anntwoode, di heh dronge shteiht.\n([[Special:Captcha/help|Mieh Enfommazjuhne]])", "questycaptcha-createaccount": "Öm uns jäje et maßesch automattesch neu Metmaacher Aanlääje ze hellefe,\nbes esu joot un donn di Frooch be_anntwoode, di heh dronger shteiht.\n([[Special:Captcha/help|Mieh Enfommazjuhne]])", "questycaptcha-create": "Öm di Sigg aanzelääje,\nbes esu joot, donn di Frooch be_anntwoode, di heh dronge shteiht.\n([[Special:Captcha/help|Mieh Enfommazjuhne]])", "questycaptcha-edit": "Öm di Sigg ze änderee,\nbes esu joohd, donn di Frohch be_anntwoode, di heh dronge schhteiht.\n([[Special:Captcha/help|Mih Enfommazjuhne]])", "questycaptcha-sendemail": "Öm et Wiki jääje automattesch enjedraare SPAM ze schötze,\nbes esu joot, donn di Frooch be_anntwoode, di heh dronger shteiht.\n([[Special:Captcha/help|Mieh Enfommazjuhne]])", "questycaptchahelp-text": "Websigge, di Beijdrääsch vun de Öffentleschkeit aannämme, wi dat Wiki heh,\nwääde öff vun <i lang=\"en\">SPAM</i>mer heimjesöhk. Di bruche Projramme\nför ier Lengks udder annder Jedrieße automattesch en dousende Wikis erin\nze bränge. Der <i lang=\"en\">SPAM</i> kam_mer wider fott maache, ävver dä\nblief e Ärjeneß.\n\nManschmohl, besönders, wann De neu Lengks en en Sigg donn wells, künnt et\nWiki Desch bedde, en Frooch ze be_antwoode. Nohdämm dat schwiiresch mem\nautomattesche Projramm henzekrijje es, löht et de Minsche ier Beidrääsch\nmaache, deiht ävver de miehßte <i lang=\"en\">SPAM</i>mer un ander Robots affhallde.\n\nDonn Desh aan de [[Special:ListAdmins|Köbeße vum Wiki]] wende,\nwann et Der trozdämm en de Fööß kütt, un De Dinge aanshtändejje Beijdraach\nnit en et Wiki kriß!\n\nDä „Retuur“-Lengk udder -Knopp vun Dingem Brauser brängk Desch wider op\ndi Sigg zom Ändere, woh De jraad wohß." } PK ! r Fb b i18n/ar.jsonnu �Iw�� { "@metadata": { "authors": [ "Ciphers", "Meno25", "OsamaK", "ديفيد" ] }, "questycaptcha-desc": "مولد كويستي كابتشا لConfirm Edit", "questycaptcha-addurl": "يحتوي تعديلك على وصلات خارجية جديدة،\nللمساعدة في الحماية من السبام التلقائي; من فضلك أجب على السؤال الذي يظهر أدناه ([[Special:Captcha/help|مزيد من المعلومات]]):", "questycaptcha-badlogin": "للمساعدة في الحماية من السبام التلقائي; من فضلك أجب على السؤال الذي يظهر أدناه ([[Special:Captcha/help|مزيد من المعلومات]]):", "questycaptcha-createaccount": "للمساعدة في الحماية من إنشاء الحسابات التلقائي; من فضلك أجب على السؤال الذي يظهر أدناه ([[Special:Captcha/help|مزيد من المعلومات]]):", "questycaptcha-create": "لتنشئ الصفحة، من فضلك أجب على السؤال الذي يظهر أدناه ([[Special:Captcha/help|مزيد من المعلومات]]):", "questycaptcha-edit": "لتحرّر هذه الصفحة، من فضلك أجب على السؤال الذي يظهر أدناه ([[Special:Captcha/help|مزيد من المعلومات]]):", "questycaptcha-sendemail": "لحماية الويكي من السبام الآلي; الرجاء الإجابة على السؤال الذي يظهر أدناه ([[Special:Captcha/help|المزيد من المعلومات]]):", "questycaptchahelp-text": "عادة ما يتم في المواقع التي تقبل الردود والرسائل من العامة، كهذا الويكي، تخريب الموقع عن طريق الأشخاص الذين يستعملون آليات معينة لإرسال وصلاتهم لمواقع متعددة بصورة آلية.\nوعلى الرغم من أن هذا يمكن إزالته ولكنه مزعج للغاية.\n\nفي بعض الأحيان، خصوصا عند إضافة وصلات لصفحة، ربما يعرض الويكي صورة ملونة أو مشوشة ويطلب منك إدخال كلمات موجودة بالصورة أو يعرض عليك مسألة رياضية عشوائية ويطلب منك حلها.\nولأن هذه المهمة صعبة للغاية لأن يقوم بها برنامج، سيسمح هذا للأشخاص الآدميين بإضافة تحريراتهم بينما ستوقف البرامج التخريبية والهجمات الآلية الأخرى.\n\nللأسف سيكون هذا صعبا بالنسبة لمستخدمي المتصفحات المحدودة أو التي تعتمد على النصوص فقط أو قراءة النصوص.\nفي الوقت الحالي لا يوجد لدينا بديل سمعي.\nمن فضلك راسل [[Special:ListAdmins|إداريي الموقع]] للمساعدة إذا كان هذا الأمر يمنعك من التعديل ووضع وصلات قانونية.\n\nإذا كنت تحرر صفحة معينة: اضغط زر 'العودة' في متصفحك للعودة إلى التحرير." } PK ! �&��� � i18n/te.jsonnu �Iw�� { "@metadata": { "authors": [ "Kiranmayee", "Veeven" ] }, "questycaptcha-addurl": "మీరు చేసిన మార్పులో కొత్త బయటి లింకులు ఉన్నాయి.\nఆటోమేటెడ్ స్పాము నుండి రక్షణకై, క్రింద కనిపించే ప్రశ్నకు సమాధానమివ్వండి ([[Special:Captcha/help|మరింత సమాచారం]]):", "questycaptcha-edit": "ఈ పేజీని సరిదిద్దడానికి, క్రింద కనిపించే ప్రశ్నకి జవాబివ్వండి ([[Special:Captcha/help|మరింత సమాచారం]]):" } PK ! 卂Y Y i18n/th.jsonnu �Iw�� { "@metadata": { "authors": [ "Harley Hartwell" ] }, "questycaptchahelp-text": "เว็บไซต์ที่บุคคลภายนอกเข้ามาช่วยเขียนได้ เช่น วิกินี้ มักถูกสแปมโดยผู้ใช้ที่ใช้บอตหรือโปรแกรมอัตโนมัติเพื่อเพิ่มลิงก์ไปยังเว็บไซต์หลาย ๆ เว็บไซต์ แม้เราจะสามารถนำลิงก์ที่สแปมออกได้ก็ตาม แต่ก็ย่ิอมก่อให้เกิดความรำคาญต่อผู้ใช้ได้เช่นกัน\n\nเนื่องจากการใส่ลิงก์เป็นเรื่องยากในการดูแลโดยอัตโนมัติ ในบางครั้ง โดยเฉพาะเมื่อคุณใส่ลิงก์เว็บภายนอก ระบบวิกิอาจขอให้คุณตอบคำถาม เพื่อป้องกันนักสแปมและโรบอตโจมตีอื่น ๆ ทำการแก้ไข แต่จะอนุญาตให้ผู้ที่ใกล้เคียงมนุษย์มากทีุ่สุดแก้ไขได้\n\nกรุณาติดต่อ [[Special:ListAdmins|ผู้ดูแลระบบ]] หากกระบวนการนี้ไม่สามารถทำให้คุณแก้ไขข้อมูลให้ถูกต้องได้\n\nกดปุ่ม 'Back' บนเบราเซอร์ของคุณเพื่อกลับไปยังหน้าแก้ไข" } PK ! ��$A$ $ i18n/pl.jsonnu �Iw�� { "@metadata": { "authors": [ "Rail", "Sp5uhe", "Tsca", "WTM" ] }, "questycaptcha-desc": "Generator Questy CAPTCHA do rozszerzenia ConfirmEdit", "questycaptcha-addurl": "Wprowadzony przez Ciebie tekst zawiera nowe linki zewnętrzne. Ochrona przed zautomatyzowanym spamem wymaga odpowiedzi na poniższe pytanie ([[Special:Captcha/help|więcej informacji]])", "questycaptcha-badlogin": "Ochrona przed zautomatyzowanym łamaniem haseł wymaga odpowiedzi na poniższe pytanie ([[Special:Captcha/help|więcej informacji]])", "questycaptcha-createaccount": "Ochrona przed zautomatyzowanym tworzeniem kont wymaga odpowiedzi na poniższe pytanie ([[Special:Captcha/help|więcej informacji]])", "questycaptcha-create": "Utworzenie strony jest możliwe po udzieleniu odpowiedzi na poniższe pytanie ([[Special:Captcha/help|więcej informacji]])", "questycaptcha-edit": "Edycja strony jest możliwa po udzieleniu odpowiedzi na poniższe pytanie ([[Special:Captcha/help|więcej informacji]])", "questycaptcha-sendemail": "Z uwagi na ochronę przed automatycznym spamem, należy odpowiedzieć na znajdujące się poniżej pytanie ([[Special:Captcha/help|pomoc]])", "questycaptchahelp-text": "Witryny, które publicznie udostępniają możliwość wprowadzania zmian, tak jak ta wiki, często są wykorzystywane przez spamerów, którzy korzystają ze zautomatyzowanych narzędzi, aby dodawać swoje linki do wielu stron.\nPomimo tego, że takie linki mogą zostać usunięte, jest to jednak uciążliwe.\n\nCzasami, zwłaszcza jeśli dodano nowe linki zewnętrzne, wiki może poprosić o udzielenie odpowiedzi na pytanie.\nPonieważ odpowiadanie na pytania jest czynnością trudną do zautomatyzowania, pozwala większości ludziom na wykonywanie edycji, zarazem uniemożliwiając ją spamerom i innym atakującym automatom.\n\nSkontaktuj się z [[Special:ListAdmins|administratorami]], jeśli potrzebujesz pomocy, ponieważ mechanizm ten uniemożliwia Ci dokonywania uzasadnionych edycji.\n\nKliknij przycisk 'wstecz' w przeglądarce, aby wrócić do strony edycji." } PK ! �?D� i18n/bs.jsonnu �Iw�� { "@metadata": { "authors": [ "CERminator", "KWiki", "Srdjan m", "Srđan" ] }, "questycaptcha-addurl": "Vaša izmjena sadrži nove vanjske linkove.\nU cilju zaštite wikija od automatiziranog neželjenog sadržaja, molimo odgovorite na pitanje koje je prikazano ispod ([[Special:Captcha/help|više informacija]]):", "questycaptcha-badlogin": "U cilju zaštite wikija od automatiziranog probijanja lozinki, molimo Vas da odgovorite na pitanje koje je prikazano ispod ([[Special:Captcha/help|više informacija]]):", "questycaptcha-createaccount": "U cilju zaštite wikija od automatiziranog pravljenja računa, molimo Vas da odgovorite na pitanje koje je prikazano ispod ([[Special:Captcha/help|više informacija]]):", "questycaptcha-create": "Da biste napravili stranicu, molimo Vas da odgovorite na pitanje koje je prikazano ispod ([[Special:Captcha/help|više informacija]]):", "questycaptcha-edit": "Da biste uredili ovu stranicu, molimo Vas da odgovorite na pitanje koje je prikazano ispod ([[Special:Captcha/help|više informacija]]):", "questycaptcha-sendemail": "U cilju zaštite wikija od automatiziranog spamovanja, molimo Vas da odgovorite na pitanje koje je prikazano ispod ([[Special:Captcha/help|više informacija]]):", "questycaptchahelp-text": "Websajtovi koji podržavaju doprinose iz javnosti, kao što je ovaj viki, često zloupotrebljavaju vandali koji koriste automatizovane alate da šalju svoje linkove ka mnogim sajtovima.\nIako se ovi neželjeni linkovi mogu ukloniti, oni ipak zadaju veliku muku.\n\nPonekad, pogotovo kad se dodaju novi internet linkovi na stranicu, wiki može tražiti od Vas da odgovorite na pitanje. Pošto je teško automatizovati ovakav zadatak, on omogućuje svim pravim ljudima da vrše svoje izmjene, ali će zato spriječiti vandale i ostale robotske napadače.\n\nMolimo Vas da kontaktirate [[Special:ListAdmins|administratore stranice]] za pomoć ako je ovo prepreka za Vas da pravite uobičajene izmjene.\n\nKliknite 'nazad' ('back') dugme vašeg preglednika da se vratite na polje za unos teksta." } PK ! �|�Ϳ � i18n/id.jsonnu �Iw�� { "@metadata": { "authors": [ "Bennylin", "Daud I.F. Argana", "Hidayatsrf", "Irwangatot", "IvanLanin", "Iwan Novirion" ] }, "questycaptcha-desc": "Generator Questy CAPTCHA untuk Confirm Edit", "questycaptcha-addurl": "Suntingan Anda menambahkan pranala luar baru.\nUntuk melindungi wiki ini dari spam suntingan otomatis, kami memohon Anda menjawab pertanyaan di bawah ini ([[Special:Captcha/help|info lebih lanjut]]):", "questycaptcha-badlogin": "Untuk melindungi wiki ini dari pemecah kata sandi otomatis, kami memohon Anda menjawab pertanyaan di bawah ini ([[Special:Captcha/help|info lebih lanjut]]):", "questycaptcha-createaccount": "Untuk melindungi wiki ini dari pembuatan akun otomatis, kami memohon Anda menjawab pertanyaan di bawah ini ([[Special:Captcha/help|info lebih lanjut]]):", "questycaptcha-create": "Untuk membuat halaman, mohon jawab pertanyaan di bawah ini\n([[Special:Captcha/help|info lebih lanjut]]):", "questycaptcha-edit": "Untuk menyunting halaman ini, mohon jawab pertanyaan di bawah ini\n([[Special:Captcha/help|info lebih lanjut]]):", "questycaptcha-sendemail": "Untuk melindungi wiki ini dari spam otomatis, kami memohon Anda menjawab pertanyaan di bawah ini ([[Special:Captcha/help|info lengkap]]):", "questycaptchahelp-text": "Situs-situs web yang menerima tulisan dari publik, seperti wiki ini, kerapkali disalahgunakan oleh pengguna-pengguna yang tidak bertanggungjawab untuk mengirimkan spam dengan menggunakan program-program otomatis guna membahkan pranala mereka pada berbagai situs web.\nWalaupun pranala-pranala spam tersebut dapat dibuang, tetapi tetap saja menimbulkan gangguan yang berarti.\n\nKadang-kadang, terutama sat menambahkan pranala web baru ke suatu halaman, wiki akan meminta anda menjawab suatu pertanyaan. \nKarena ini merupakan suatu pekerjaan yang sulit diotomatisasi, pembatasan ini akan dapat dengan mudah dilalui oleh manusia, sekaligus juga dapat menghentikan hampir semua serangan spam dan robot otomatis lainnya.\n\nSilakan hubungi [[Special:ListAdmins|pengurus]] untuk meminta bantuan jika hal ini menghambat anda untuk mengirimkan suntingan yang layak.\n\nTekan tombol 'back' di penjelajah web Anda untuk kembali ke halaman penyuntingan." } PK ! ����� � i18n/wuu-hans.jsonnu �Iw�� { "@metadata": { "authors": [ "Winston Sung" ] }, "questycaptcha-sendemail": "为仔保护本站弗畀自动化程序破坏,阿拉要麻烦侬回答下底只问题([[Special:Captcha/help|更多信息]]):" } PK ! �� i18n/ast.jsonnu �Iw�� { "@metadata": { "authors": [ "Xuacu" ] }, "questycaptcha-desc": "Xenerador Questy CAPTCHA pa Confirmar Edición", "questycaptcha-addurl": "La so edición incluye nuevos enllaces esternos. Pa protexer la wiki escontra'l spam d'edición automatizáu, pidimos-y que conteste la entruga qu'apaez embaxo ([[Special:Captcha/help|más información]]):", "questycaptcha-badlogin": "Pa protexer la wiki escontra'l descifráu automáticu de claves, pidimos-y que conteste la entruga qu'apaez embaxo ([[Special:Captcha/help|más información]]):", "questycaptcha-createaccount": "Pa protexer la wiki escontra la creación automática de cuentes, pidimos-y que conteste la entruga qu'apaez embaxo ([[Special:Captcha/help|más información]]):", "questycaptcha-create": "Pa crear la páxina, por favor conteste la entruga qu'apaez embaxo ([[Special:Captcha/help|más información]]):", "questycaptcha-edit": "Pa editar la páxina, por favor conteste la entruga qu'apaez embaxo ([[Special:Captcha/help|más información]]):", "questycaptcha-sendemail": "Pa protexer la wiki escontra'l corréu puxarra automáticu, pidimos-y que conteste la entruga qu'apaez embaxo ([[Special:Captcha/help|más información]]):", "questycaptchahelp-text": "Los sitios web qu'aceuten collaboración del públicu, como esta wiki, sufren de vezu l'abusu de «spammers» qu'usen ferramientes automátiques p'amestar los sos enllaces en munchos sitios.\nMentanto qu'esos enllaces puen desaniciase, suponen una bultable molestia.\n\nDacuando, especialmente al amestar enllaces nuevos a una páxina, la wiki pue pidi-y que conteste una entruga.\nComo esta ye una xera difícil d'automatizar, permitirá que la mayor parte de persones faiga collaboraciones mentanto torga a la mayor parte de «spammers» y otros atacantes robotizaos .\n\nPor favor, pongase'n contautu colos [[Special:ListAdmins|alministradores del sitiu]] pa pidir ayuda si esto ta torgando-y de mou inesperáu facer collaboraciones llexítimes.\n\nCalque nel botón «atrás» del navegador pa volver al editor de páxines." } PK ! /͐�! ! i18n/pms.jsonnu �Iw�� { "@metadata": { "authors": [ "Borichèt", "Dragonòt" ] }, "questycaptcha-addurl": "Toa modìfica a conten na neuva anliura esterna.\nPër giuté a protegi contra spam automàtich, për piasì arspond a la custion che a-i é sì sota ([[Special:Captcha/help|për savèjne ëd pì]]):", "questycaptcha-badlogin": "Për giuté a protegi contra ël crack ëd ciav automatisà, për piasì arspond a la custion che a ven fòra sota ([[Special:Captcha/help|për savèjne ëd pì]]):", "questycaptcha-createaccount": "Për giuté a protegi contra la creassion automàtica ëd cont, për piasì arspond a la custion che a ven fòra sota ([[Special:Captcha/help|për savejne ëd pì]]):", "questycaptcha-create": "Për creé la pàgina, për piasì arspond a la custion che a ven fòra sota: ([[Special:Captcha/help|për savejne ëd pì]]):", "questycaptcha-edit": "Për modifiché sta pàgina-sì, për piasì arspond a la custion che a ven fòra sota ([[Special:Captcha/help|për savejne ëd pì]]):", "questycaptcha-sendemail": "Për giuté a protegi contra la rumenta automàtica, për piasì ch'a risponda a la chestion ch'as vëdd sì-sota ([[Special:Captcha/help|për savèjne ëd pi]]):", "questycaptchahelp-text": "Soèns a-i riva che ij sit dla Ragnà che la gent a peul dovré për ëscrive chèich-còs, coma sta wiki-sì, a resto ambërlifà d'areclam da 'd màchine che a cario soa ròba dadsà e dadlà n'automàtich. \nPër tant che sti areclam un a peula peuj gaveje, a resta sempe un gran fastudi. \n\nDle vire, dzortut quand un a caria dj'anliure esterne neuve ansime a na pàgina, la wiki a peul ciameje ëd rësponde a na chestion. \nDa già ch'a l'é grama scrive un programa ch'a lo fasa, a ven che la pì gran part dla gent a-i la fa a scrive, ma la pi part dle màchine a-i la fa pa. \n\nPër piasì ch'a contata j'[[Special:ListAdmins|aministrator dël sit]] për d'assistensa se sòn a-j përmet nen ëd fé na contribussion legìtima.\n\nCh'a-i bata ansima al boton «andré» ant sò navigator për torné andré a l'editor dla pàgina." } PK ! �Fj�0 0 i18n/wa.jsonnu �Iw�� { "@metadata": { "authors": [ "Reptilien.19831209BE1", "Srtxg" ] }, "questycaptcha-addurl": "Dins vos candjmints i gn a des novelès dfoûtrinnès hårdêyes (URL).\nPo mete li wiki a houte des robots di spam, nos vs dimandans d' acertiner ki vos estoz bén ene djin, po çoula respondoz al kesse cial pa dzo ([[Special:Captcha/help|pus di racsegnes]]):", "questycaptcha-badlogin": "Po mete li wiki a houte des des robots ki sayèt d' adviner les screts, nos vs dimandans d' acertiner ki vos estoz bén ene djin, po çoula respondoz al kesse cial pa dzo ([[Special:Captcha/help|pus di racsegnes]]):", "questycaptcha-createaccount": "Po mete li wiki a houte des des robots k' ahivèt des contes otomaticmint, nos vs dimandans d' acertiner ki vos estoz bén ene djin, po çoula respondoz al kesse cial pa dzi ([[Special:Captcha/help|pus di racsegnes]]):", "questycaptcha-create": "Por vos poleur ahiver l' pådje, vos dvoz responde al kesse cial pa dzo ([[Special:Captcha/help|pus di racsegnes]]):", "questycaptcha-edit": "Po candjî cisse pådje ci, vos dvoz responde al kesse cial pa dzo ([[Special:Captcha/help|pus di racsegnes]]):", "questycaptcha-sendemail": "Po mete li wiki a houte des robots di spam, nos vs dimandans d’ bén vleur acertiner ki vos estoz bén ene djin, po çoula respondoz al kesse k’ on vos dmande ci-dzo ([[Special:Captcha/help|pus di racsegnes]]) :", "questycaptchahelp-text": "Les waibes k' acceptèt des messaedjes do publik, come ci wiki cial, sont sovint eployîs pa des må-fjhants spameus, po pleur mete, avou des usteyes otomatikes, des loyéns di rclame viè les sites da zels.\nBén seur, on pout todi les disfacer al mwin, mins c' est on soyant ovraedje.\n\nAdon, pa côps, copurade cwand vos radjoutez des hårdêyes a ene pådje, on eployrè ene passete d' acertinaedje, dj' ô bén k' on vs dimandrè d' responde a ene kesse. Come çoula est ene sacwè d' målåjheye a fé otomaticmint pa on robot, çoula permete di leyî les vraiyès djins fé leus candjmints tot arestant l' plupårt des spameus et des sfwaitès atakes pa robot.\n\nS' i vs plait contactez les [[Special:ListAdmins|manaedjeus do site]] po d' l' aidance si çoula vos espaitche di fé vos candjmints ledjitimes.\n\nClitchîz sol boton «En erî» di vosse betchteu waibe po rivni al pådje di dvant." } PK ! ��D�a a i18n/aln.jsonnu �Iw�� { "@metadata": { "authors": [ "Mdupont" ] }, "questycaptcha-addurl": "Your redakto përfshin të jashtme lidhje të reja. Për të ndihmuar në mbrojtjen kundër spam automatizuar, ju lutem përgjigje pyetjes që duket më poshtë ([[Special:Captcha/help|më shumë informacion]]):", "questycaptcha-badlogin": "Për të ndihmuar në mbrojtjen kundër fjalëkalimin automatizuar plasaritje, ju lutem përgjigje pyetjes që duket më poshtë ([[Special:Captcha/help|më shumë informacion]]):", "questycaptcha-createaccount": "Për të ndihmuar në mbrojtjen kundër krijimit llogari e automatizuar, ju lutemi përgjigje pyetjes që duket më poshtë ([[Special:Captcha/help|më shumë informacion]]):", "questycaptcha-create": "Për të krijuar një faqe, ju lutem përgjigje të pyetjes që duket më poshtë ([[Special:Captcha/help|më shumë informacion]]):", "questycaptcha-edit": "Për të redaktuar këtë faqe, ju lutem përgjigje të pyetjes që duket më poshtë ([[Special:Captcha/help|më shumë informacion]]):", "questycaptcha-sendemail": "Për të ndihmuar në mbrojtjen kundër spamming automatizuar, ju lutem përgjigje pyetjes që duket më poshtë ([[Special:Captcha/help|më shumë informacion]]):", "questycaptchahelp-text": "Web faqet që të pranojë kontribute nga publiku, si ky wiki, shpesh keqtrajtohen nga spammers që përdorin mjete të automatizuar për të shtuar lidhjet e tyre me shumë vende. Përderisa këto lidhje spam mund të hiqen, ata janë një ngatërresë të rëndësishme. Ndonjëherë, sidomos kur duke shtuar të reja web lidhje me një faqe, wiki mund të kërkojë që për t'iu përgjigjur një pyetje. Ngaqë kjo është një detyrë që është e vështirë për të automatizuar, ajo do të lejojë të vërtetë njerëzit më të japin kontribute të tyre, ndërsa ndaluar spammers më dhe robotik sulmuesit të tjera. Ju lutem kontaktoni [[Special:ListAdmins|faqe administratorët]] për ndihmë, nëse kjo është e papritur në parandalimin e ju nga bërja e kontributeve të ligjshme. Kliko 'butonin mbrapa në shfletuesin tuaj për t'u kthyer në faqen e redaktorit." } PK ! ٟa1z z i18n/de.jsonnu �Iw�� { "@metadata": { "authors": [ "Geitost", "Kghbln", "Metalhead64", "Pill", "Umherirrender" ] }, "questycaptcha-desc": "Ergänzt die Erweiterung „ConfirmEdit“ um ein Questy-CAPTCHA-Modul", "questycaptcha-addurl": "Deine Bearbeitung enthält neue externe Links.\nZum Schutz des Wikis vor automatisiertem Spam bitten wir dich, die untenstehende Frage zu beantworten, um die Seite speichern zu können ([[Special:Captcha/help|weitere Informationen]]):", "questycaptcha-badlogin": "Zum Schutz des Wikis vor einer Kompromittierung deines Benutzerkontos bitten wir dich, die untenstehende Frage zu beantworten, um dich anmelden zu können ([[Special:Captcha/help|weitere Informationen]]):", "questycaptcha-createaccount": "Zum Schutz des Wikis vor einer automatisierten Anlage von Benutzerkonten bitten wir dich, die folgende Frage zu beantworten ([[Special:Captcha/help|weitere Informationen]]):", "questycaptcha-create": "Bitte beantworte die folgende Frage, um diese Seite erstellen zu können ([[Special:Captcha/help|weitere Informationen]]):", "questycaptcha-edit": "Bitte beantworte die folgende Frage, um diese Seite speichern zu können ([[Special:Captcha/help|weitere Informationen]]):", "questycaptcha-sendemail": "Zum Schutz des Wikis vor automatisiertem Spam bitten wir dich, die untenstehende Frage zu beantworten ([[Special:Captcha/help|weitere Informationen]]):", "questycaptchahelp-text": "Internetangebote, die – wie dieses Wiki – für Beiträge von praktisch jedem offen sind, werden häufig von Spammern missbraucht, welche versuchen, mithilfe entsprechender Werkzeuge ihre Links automatisch auf vielen Webseiten zu platzieren.\nZwar können derartige Spam-Links wieder entfernt werden, doch stellen sie trotzdem ein erhebliches Ärgernis dar.\n\nIn manchen Fällen, meist beim Versuch, neue Weblinks zu einer Seite hinzuzufügen, kann es vorkommen, dass du um die Beantwortung einer Frage gebeten wirst.\nDa es kaum möglich ist, dies zu automatisieren, können hierdurch die meisten Spammer aufgehalten werden. Menschlichen Benutzer sollten ihre Bearbeitungen hingegen durchführen können.\n\nSollte dich dieses Verfahren beim Durchführen gewünschter Bearbeitungen behindern, wende dich bitte an einen [[Special:ListAdmins|Administrator]], um Unterstützung zu erhalten.\n\nDie Schaltfläche „Zurück“ des Browsers führt zurück zum vorherigen Bearbeitungsfenster." } PK ! �3�f� � i18n/pt.jsonnu �Iw�� { "@metadata": { "authors": [ "Athena in Wonderland", "Crazymadlover", "Fúlvio", "Giro720", "Hamilton Abreu" ] }, "questycaptcha-desc": "Gerador de Questy CAPTCHA para Confirm Edit", "questycaptcha-addurl": "A sua edição introduziu hiperligações externas novas.\nPara proteger esta wiki contra o spam automatizado, por favor, responda à questão apresentada abaixo ([[Special:Captcha/help|mais informações]]):", "questycaptcha-badlogin": "Para proteger esta wiki contra mecanismos automatizados de descoberta de palavras-passe, por favor, responda à questão apresentada abaixo ([[Special:Captcha/help|mais informações]]):", "questycaptcha-createaccount": "Para proteger esta wiki contra a criação de contas automatizada, por favor, responda à questão apresentada abaixo ([[Special:Captcha/help|mais informações]]):", "questycaptcha-create": "Para criar a página, por favor, responda à questão apresentada abaixo ([[Special:Captcha/help|mais informações]]):", "questycaptcha-edit": "Para editar esta página, por favor, responda à questão apresentada abaixo ([[Special:Captcha/help|mais informações]]):", "questycaptcha-sendemail": "Para proteger esta wiki contra o spam automatizado, por favor, responda à seguinte pergunta ([[Special:Captcha/help|mais informações]]):", "questycaptchahelp-text": "Sítios na Internet abertos a edição pública, como é o caso desta wiki, são frequentemente abusados por ''spammers'' que utilizam ferramentas automatizadas para inserção em massa de hiperligações em muitos sítios.\nEmbora essas hiperligações possam ser removidas, representam um incómodo significativo.\n\nPor vezes, especialmente quando introduzir hiperligações externas novas numa página, a wiki pedirá que responda a uma pergunta.\nPorque esta é uma tarefa difícil de automatizar, permite que a maioria das pessoas façam as suas edições, ao mesmo tempo que inibe edições feitas por ''spammers'' e outros mecanismos automatizados.\n\nPor favor, contacte os [[Special:ListAdmins|administradores]] para assistência, caso esta funcionalidade esteja a impedi-lo de fazer edições legítimas.\n\nClique o botão 'voltar' do seu browser para voltar à página de edição." } PK ! ��7u u i18n/io.jsonnu �Iw�� { "@metadata": { "authors": [ "Joao Xavier" ] }, "questycaptchahelp-text": "Pagini de l'interreto qui aceptas kontributaji del publiko, exemple ica Wiki, freque atakesas dal 'spammers', qui uzas programachi por komputeri qui adjuntas lia ligili a multa retpagini.\nMalgre ke la ligili 'spam' povas efacesar, li esas signifikiva jeno.\n\nKelkafoye, note kande vu adjuntos nova interretala ligili en ula pagino, la Wiki povos questionar vu.\nPro ke esas nefacila automatigar la respondi a la questioni, la questionado impedos la maxim multa ataki da 'spammers' ed altra automatala ataki, dum ke ol permisos la maxim multa homi kontributar.\n\nVoluntez demandar helpo del [[Special:ListAdmins|administreri di ca Wiki]] se ca procedo impedus vu sendor vua yusta kontributaji.\n\nKliktez la butono \"retroirar\" (\"back\") de vua retnavigilo por retroirar a la redakto-pagino." } PK ! 5��t t i18n/ko.jsonnu �Iw�� { "@metadata": { "authors": [ "Kwj2772", "Priviet", "Revi", "Ykhwong", "아라" ] }, "questycaptcha-desc": "편집 확인에 대한 탐구적인 CAPCHA(캡차) 생성기", "questycaptcha-addurl": "편집에 새로운 외부 링크가 포함되어 있습니다.\n자동 편집 스팸으로부터 보호하기 위해, 아래에 보이는 질문에 답해주세요 ([[Special:Captcha/help|자세한 정보]]):", "questycaptcha-badlogin": "자동 비밀번호 크래킹으로부터 보호하기 위해, 아래에 보이는 질문에 답해주세요 ([[Special:Captcha/help|자세한 정보]]):", "questycaptcha-createaccount": "자동 계정 만들기로부터 보호하기 위해, 아래에 보이는 질문에 답해주세요 ([[Special:Captcha/help|자세한 정보]]):", "questycaptcha-create": "문서를 만드려면 아래에 보이는 질문에 답해주세요 ([[Special:Captcha/help|자세한 정보]]):", "questycaptcha-edit": "이 문서를 편집하려면 아래에 보이는 질문에 답해주세요 ([[Special:Captcha/help|자세한 정보]]):", "questycaptcha-sendemail": "자동화된 스팸으로부터 보호하기 위해, 아래에 보이는 질문에 답해주세요 ([[Special:Captcha/help|자세한 정보]]):", "questycaptchahelp-text": "이 위키와 같이 사람의 공개적인 참여가 가능한 웹 사이트에서는 자동 프로그램이 스팸을 뿌리는 경우가 있습니다.\n물론 이러한 스팸은 제거할 수는 있지만 번거로운 작업이 늘어납니다.\n\n이러한 스팸을 방지하기 위해서, 이 위키의 문서에 웹 사이트 주소를 추가하는 등의 행동을 할 경우에는 질문에 답해달라고 하는 경우가 있습니다.\n이 글자 입력 작업은 자동 프로그램을 만들기가 힘들기 때문에 스팸을 효과적으로 막으면서 일반 사용자를 막지 않을 수 있습니다.\n\n예기치않게 정당한 행동을 하지 못하도록 막는다면 [[Special:ListAdmins|사이트 관리자]]에게 도움을 요청해 주세요.\n\n이전 화면으로 돌아가려면 웹 브라우저의 \"뒤로\" 버튼을 클릭하세요." } PK ! @��0^ ^ i18n/eu.jsonnu �Iw�� { "@metadata": { "authors": [ "Kobazulo" ] }, "questycaptcha-create": "Orrialdea sortzeko, behean agertzen den galdera erantzun ezazu mesedez ([[Special:Captcha/help|informazio gehiago]]):", "questycaptcha-edit": "Orrialde hau aldatzeko, behean agertzen den galdera erantzun ezazu mesedez ([[Special:Captcha/help|informazio gehiago]]):" } PK ! ��4� � i18n/sv.jsonnu �Iw�� { "@metadata": { "authors": [ "Boivie", "Rotsee", "Sabelöga", "WikiPhoenix" ] }, "questycaptcha-desc": "Questy CAPTCHA-generator för Confirm Edit", "questycaptcha-addurl": "Din redigering inkluderar nya externa länkar.\nFör att skydda wikin mot automatisk spam ber vi dig att svara på frågan här ([[Special:Captcha/help|mer information]]):", "questycaptcha-badlogin": "För att skydda wikin mot automatisk lösenordsknäckning ber vi dig att svara på frågan som finns nedan ([[Special:Captcha/help|mer information]]):", "questycaptcha-createaccount": "För att skydda wikin mot automatiskt kontoskapande ber vi dig att svara på frågan som finns nedan ([[Special:Captcha/help|mer information]]):", "questycaptcha-create": "För att skapa sidan, vänligen svara på frågan som finns nedan ([[Special:Captcha/help|mer information]]):", "questycaptcha-edit": "För att redigera denna sida, vänligen svara på frågan som finns nedan ([[Special:Captcha/help|mer information]]):", "questycaptcha-sendemail": "För att skydda wikin mot automatiskt spam ber vid dig att svara på frågan som visas nedan ([[Special:Captcha/help|mer information]]):", "questycaptchahelp-text": "Webbplatser som accepterar bidrag från allmänheten, som denna wiki, blir ofta utnyttjade av spammare som använder automatiska verktyg för att lägga till sina länkar till diverse sajter.\nÄven om dessa spam-länkar kan tas bort är de väldigt störande.\n\nIbland, särskilt vid tillägg av nya webblänkar till en sida, kan wikin be dig svara på en fråga.\nEftersom denna uppgift är svår att automatisera, låter den de flesta riktiga människor göra sina bidrag medan den stoppar de flesta spammare och andra robotattackerare.\n\nVänligen kontakta [[Special:ListAdmins|sajtens administratörer]] för hjälp ifall detta oväntat förhindrar dig från att göra tillåtna bidrag.\n\nKlicka på 'tillbaka'-knappen i din webbläsare för att återvända till sidredigeraren." } PK ! �i� � i18n/hu.jsonnu �Iw�� { "@metadata": { "authors": [ "Glanthor Reviol", "Tacsipacsi" ] }, "questycaptcha-addurl": "A szerkesztésed új külső hivatkozásokat tartalmaz.\nAz automatizált spamek megelőzése miatt kérjük, válaszolj az alábbi kérdésre ([[Special:Captcha/help|további segítség]]):", "questycaptcha-badlogin": "Hogy az automatizált jelszófeltörési kísérleteket megelőzzük, kérjük, válaszolj az alábbi kérdésre ([[Special:Captcha/help|további segítség]]):", "questycaptcha-createaccount": "A felhasználói fiókok automatizált létrehozásának elkerülésére kérjük, válaszolj az alábbi kérdésre ([[Special:Captcha/help|segítség]]):", "questycaptcha-create": "Kérlek válaszolj az alábbi kérdésre a lap létrehozásához ([[Special:Captcha/help|további információk]]):", "questycaptcha-edit": "A lap szerkesztéséhez kérlek válaszolj az alábbi kérdésre ([[Special:Captcha/help|további információk]]):", "questycaptcha-sendemail": "Az automatizált spamek megelőzése miatt kérjük, válaszolj az alábbi kérdésre ([[Special:Captcha/help|további segítség]]):", "questycaptchahelp-text": "Az olyan weboldalakat, amelyekre bárki írhat, gyakran támadják meg spammerek olyan eszközök felhasználásával, amelyek képesek automatikusan, emberi felügyelet nélkül elhelyezni hivatkozásokat sok különböző oldalon. \n\nNéha, különösen ha egy új külső hivatkozást teszel egy szócikkbe, a wiki egy egy kérdés megválaszolására kérhet.\nMivel ezt nehéz automatizálni, a valódi szerkesztőknek lehetőségük lesz szerkeszteni, miközben kiszűri a legtöbb spammert és más automatizált kártevőket.\n\nHa ez nem várt módon akadályoz a hasznos közreműködéseidben, segítségért kérlek vedd fel a kapcsolatot [[Special:ListAdmins|az oldal adminisztrátoraival]].\n\nHasználd a böngésződ „vissza” gombját a szöveg szerkesztéséhez való visszalépéshez." } PK ! �C% � � extension.jsonnu �Iw�� PK ! y,l?� � ( includes/QuestyCaptcha.phpnu �Iw�� PK ! ��FN�F �F S COPYINGnu �Iw�� PK ! ���&� � 6Z i18n/ba.jsonnu �Iw�� PK ! ��z�� � �e i18n/yi.jsonnu �Iw�� PK ! �%�� � -g i18n/oc.jsonnu �Iw�� PK ! �+�� � bo i18n/sr-el.jsonnu �Iw�� PK ! ��Mm� � )t i18n/sr-ec.jsonnu �Iw�� PK ! �j� � 2{ i18n/gcr.jsonnu �Iw�� PK ! ��Ȼ� � / i18n/mk.jsonnu �Iw�� PK ! rm�| | D� i18n/sk.jsonnu �Iw�� PK ! ܼ4�% % �� i18n/uk.jsonnu �Iw�� PK ! ��Q� � ]� i18n/is.jsonnu �Iw�� PK ! ��L� � �� i18n/de-formal.jsonnu �Iw�� PK ! \Ij� � T� i18n/ro.jsonnu �Iw�� PK ! ��>� � i18n/ia.jsonnu �Iw�� PK ! ���P P \� i18n/nl-informal.jsonnu �Iw�� PK ! �m�+ + � i18n/so.jsonnu �Iw�� PK ! �*��� � X� i18n/ja.jsonnu �Iw�� PK ! �W w� � 8� i18n/cy.jsonnu �Iw�� PK ! �J4�� � � i18n/lij.jsonnu �Iw�� PK ! :u�� � $� i18n/ilo.jsonnu �Iw�� PK ! dS��/ / C� i18n/eo.jsonnu �Iw�� PK ! z�f f �� i18n/en.jsonnu �Iw�� PK ! �_�9$ $ P� i18n/cs.jsonnu �Iw�� PK ! �� � � �� i18n/fit.jsonnu �Iw�� PK ! ��!�� � p i18n/nn.jsonnu �Iw�� PK ! �Z\_� � � i18n/gsw.jsonnu �Iw�� PK ! XJ�Q� � � i18n/be-tarask.jsonnu �Iw�� PK ! �չ�> > e i18n/lb.jsonnu �Iw�� PK ! /��.$ $ �" i18n/ru.jsonnu �Iw�� PK ! �|Ru ?/ i18n/lt.jsonnu �Iw�� PK ! �S3� � �3 i18n/tr.jsonnu �Iw�� PK ! I��� � 3= i18n/fr.jsonnu �Iw�� PK ! ���w� � G i18n/be.jsonnu �Iw�� PK ! ��n�K K �H i18n/qqq.jsonnu �Iw�� PK ! 4��� � wK i18n/tl.jsonnu �Iw�� PK ! `�C_� � 8T i18n/br.jsonnu �Iw�� PK ! �67�e e \ i18n/fi.jsonnu �Iw�� PK ! �|>Z� � �c i18n/pt-br.jsonnu �Iw�� PK ! ��Y� � �l i18n/ca.jsonnu �Iw�� PK ! O�f� � o i18n/el.jsonnu �Iw�� PK ! M��� � �} i18n/et.jsonnu �Iw�� PK ! D<�L� � �� i18n/ms.jsonnu �Iw�� PK ! o�G G � i18n/zh-hans.jsonnu �Iw�� PK ! S'B<� � q� i18n/hsb.jsonnu �Iw�� PK ! @yS_� � �� i18n/nl.jsonnu �Iw�� PK ! Z���Q Q v� i18n/gl.jsonnu �Iw�� PK ! �lq~ ~ � i18n/dsb.jsonnu �Iw�� PK ! ��� � �� i18n/he.jsonnu �Iw�� PK ! ud%�� � ¿ i18n/zh-hant.jsonnu �Iw�� PK ! � @�b b �� i18n/es.jsonnu �Iw�� PK ! ���Q� � j� i18n/roa-tara.jsonnu �Iw�� PK ! o�S� � ,� i18n/sl.jsonnu �Iw�� PK ! =�,�B B � i18n/it.jsonnu �Iw�� PK ! ��샾 � �� i18n/nb.jsonnu �Iw�� PK ! ��$n� � �� i18n/mt.jsonnu �Iw�� PK ! Hk0� � �� i18n/fa.jsonnu �Iw�� PK ! p(� � � i18n/ksh.jsonnu �Iw�� PK ! r Fb b � i18n/ar.jsonnu �Iw�� PK ! �&��� � ^ i18n/te.jsonnu �Iw�� PK ! 卂Y Y � i18n/th.jsonnu �Iw�� PK ! ��$A$ $ !( i18n/pl.jsonnu �Iw�� PK ! �?D� �0 i18n/bs.jsonnu �Iw�� PK ! �|�Ϳ � �8 i18n/id.jsonnu �Iw�� PK ! ����� � �A i18n/wuu-hans.jsonnu �Iw�� PK ! �� �B i18n/ast.jsonnu �Iw�� PK ! /͐�! ! QK i18n/pms.jsonnu �Iw�� PK ! �Fj�0 0 �S i18n/wa.jsonnu �Iw�� PK ! ��D�a a ] i18n/aln.jsonnu �Iw�� PK ! ٟa1z z �e i18n/de.jsonnu �Iw�� PK ! �3�f� � oo i18n/pt.jsonnu �Iw�� PK ! ��7u u zx i18n/io.jsonnu �Iw�� PK ! 5��t t +| i18n/ko.jsonnu �Iw�� PK ! @��0^ ^ ۄ i18n/eu.jsonnu �Iw�� PK ! ��4� � u� i18n/sv.jsonnu �Iw�� PK ! �i� � � i18n/hu.jsonnu �Iw�� PK M M ) l�
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0.03 |
proxy
|
phpinfo
|
ÐаÑтройка