From: jenkins-bot Date: Wed, 8 Nov 2017 20:28:23 +0000 (+0000) Subject: Merge "Group messages in WANObjectCache by key" X-Git-Tag: 1.31.0-rc.0~1572 X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=commitdiff_plain;h=6f6e7d6dfd5b4c5cdb4f1e4f80be77dd8ad71b57;hp=444073ddbc915d0dd64ed98a88431e3972e1e39f Merge "Group messages in WANObjectCache by key" --- diff --git a/RELEASE-NOTES-1.31 b/RELEASE-NOTES-1.31 index 4bfcfcb5de..9a4c74ce18 100644 --- a/RELEASE-NOTES-1.31 +++ b/RELEASE-NOTES-1.31 @@ -41,6 +41,7 @@ production. * … === Bug fixes in 1.31 === +* (T90902) Non-breaking space in header ID breaks anchor * … === Action API changes in 1.31 === @@ -92,8 +93,9 @@ changes to languages because of Phabricator reports. * Revision::selectArchiveFields() → Revision::getArchiveQueryInfo() * User::selectFields() → User::getQueryInfo() * WikiPage::selectFields() → WikiPage::getQueryInfo() -* Due to significant refactoring, method ContribsPager::getUserCond() that had - no access restriction has been removed. + * Due to significant refactoring, method ContribsPager::getUserCond() that had + no access restriction has been removed. + * Revision::setUserIdAndName() was deprecated. == Compatibility == MediaWiki 1.31 requires PHP 5.5.9 or later. There is experimental support for diff --git a/composer.json b/composer.json index 3c98b7759a..7031cad0c6 100644 --- a/composer.json +++ b/composer.json @@ -25,7 +25,7 @@ "ext-xml": "*", "liuggio/statsd-php-client": "1.0.18", "mediawiki/at-ease": "1.1.0", - "oojs/oojs-ui": "0.24.1", + "oojs/oojs-ui": "0.24.2", "oyejorge/less.php": "1.7.0.14", "php": ">=5.5.9", "psr/log": "1.0.2", diff --git a/docs/uidesign/mediawiki.diff.html b/docs/uidesign/mediawiki.diff.html index 0372595ce9..cd13dbac20 100644 --- a/docs/uidesign/mediawiki.diff.html +++ b/docs/uidesign/mediawiki.diff.html @@ -88,5 +88,54 @@ Deleted line + diffchange +

Here an example for the diff output when a whole paragraph was moved:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
  
⚫
Lorem ipsum alias non veritatis porro quidem harum ut et at ab sit atque soluta deleniti architecto ut pariatur? Non consequat. Aut minus occaecat quas lorem impedit, earum praesentium enim reprehenderit, anim consequat. Et maiores consequatur incidunt, nostrud non consectetur, ut eiusmod mollit anim eum vitae qui obcaecati molestiae nostrud dolore hic aperiam commodo nihil omnis aliquam irure expedita minima ut fugiat, error odi.
 
  
 
Lorem ipsum sunt ducimus, quos aut quia a nulla molestiae doloremque dolorem inventore vel officia temporibus at ut iste totam officiis impedit, quaerat voluptate fugiat esse est sit, assumenda quis quaerat provident, laborum molestiae esse, quam qui cillum velit, mollit veniam, consequuntur esse, dolorem do amet, maiores ad dolores dolor duis aut amet, adipisicing est.
 
Lorem ipsum sunt ducimus, quos aut quia a nulla molestiae doloremque dolorem inventore vel officia temporibus at ut iste totam officiis impedit, quaerat voluptate fugiat esse est sit, assumenda quis quaerat provident, laborum molestiae esse, quam qui cillum velit, mollit veniam, consequuntur esse, dolorem do amet, maiores ad dolores dolor duis aut amet, adipisicing est.
 +
 âš«
Lorem ipsum alias non veritatis porro quidem harum ut et at ab sit atque soluta deleniti architecto ut pariatur? Non consequat. Aut minus occaecat quas lorem impedit, earum praesentium enim reprehenderit, anim consequat. Et maiores consequatur incidunt, nostrud non consectetur, ut eiusmod mollit anim eum vitae qui obcaecati molestiae nostrud dolore hic aperiam commodo nihil omnis aliquam irure expedita minima ut fugiat, error odi.
  
+ diff --git a/includes/EditPage.php b/includes/EditPage.php index a07a236caf..4260c99324 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -2408,6 +2408,7 @@ class EditPage { $out->addModules( 'mediawiki.action.edit' ); $out->addModuleStyles( 'mediawiki.action.edit.styles' ); + $out->addModuleStyles( 'mediawiki.editfont.styles' ); $user = $this->context->getUser(); if ( $user->getOption( 'showtoolbar' ) ) { diff --git a/includes/Revision.php b/includes/Revision.php index 518360c07e..25c89c26ec 100644 --- a/includes/Revision.php +++ b/includes/Revision.php @@ -901,6 +901,7 @@ class Revision implements IDBAccessObject { * This should only be used for proposed revisions that turn out to be null edits * * @since 1.28 + * @deprecated since 1.31, please reuse old Revision object * @param int $id User ID * @param string $name User name */ diff --git a/includes/changes/ChangesListStringOptionsFilterGroup.php b/includes/changes/ChangesListStringOptionsFilterGroup.php index 653344a983..775fd76d1e 100644 --- a/includes/changes/ChangesListStringOptionsFilterGroup.php +++ b/includes/changes/ChangesListStringOptionsFilterGroup.php @@ -239,7 +239,8 @@ class ChangesListStringOptionsFilterGroup extends ChangesListFilterGroup { /** * Check if this filter group is currently active * - * @param {boolean} $isStructuredUI Is structured filters UI current enabled + * @param bool $isStructuredUI Is structured filters UI current enabled + * @return bool */ private function isActive( $isStructuredUI ) { // STRING_OPTIONS filter groups are exclusively active on Structured UI diff --git a/includes/diff/DifferenceEngine.php b/includes/diff/DifferenceEngine.php index 2568616b9c..813ee080e2 100644 --- a/includes/diff/DifferenceEngine.php +++ b/includes/diff/DifferenceEngine.php @@ -902,6 +902,7 @@ class DifferenceEngine extends ContextSource { * @param string $otext Old text, must be already segmented * @param string $ntext New text, must be already segmented * @return bool|string + * @throws Exception */ protected function textDiff( $otext, $ntext ) { global $wgExternalDiffEngine, $wgContLang; diff --git a/includes/libs/filebackend/SwiftFileBackend.php b/includes/libs/filebackend/SwiftFileBackend.php index e54e8daca6..f50d26b465 100644 --- a/includes/libs/filebackend/SwiftFileBackend.php +++ b/includes/libs/filebackend/SwiftFileBackend.php @@ -755,7 +755,8 @@ class SwiftFileBackend extends FileBackendStore { } } - $this->logger->error( __METHOD__ . ": unable to set SHA-1 metadata for $path" ); + $this->logger->error( __METHOD__ . ': unable to set SHA-1 metadata for {path}', + [ 'path' => $path ] ); return $objHdrs; // failed } @@ -1361,7 +1362,8 @@ class SwiftFileBackend extends FileBackendStore { if ( $rcode != 204 && $rcode !== 202 ) { $status->fatal( 'backend-fail-internal', $this->name ); - $this->logger->error( __METHOD__ . ': unexpected rcode value (' . $rcode . ')' ); + $this->logger->error( __METHOD__ . ': unexpected rcode value ({rcode})', + [ 'rcode' => $rcode ] ); } return $status; @@ -1772,10 +1774,18 @@ class SwiftFileBackend extends FileBackendStore { if ( $code == 401 ) { // possibly a stale token $this->srvCache->delete( $this->getCredsCacheKey( $this->swiftUser ) ); } - $this->logger->error( - "HTTP $code ($desc) in '{$func}' (given '" . FormatJson::encode( $params ) . "')" . - ( $err ? ": $err" : "" ) - ); + $msg = "HTTP {code} ({desc}) in '{func}' (given '{params}')"; + $msgParams = [ + 'code' => $code, + 'desc' => $desc, + 'func' => $func, + 'req_params' => FormatJson::encode( $params ), + ]; + if ( $err ) { + $msg .= ': {err}'; + $msgParams['err'] = $err; + } + $this->logger->error( $msg, $msgParams ); } } diff --git a/includes/page/WikiPage.php b/includes/page/WikiPage.php index 1047a93e7a..95b7be265e 100644 --- a/includes/page/WikiPage.php +++ b/includes/page/WikiPage.php @@ -1705,27 +1705,27 @@ class WikiPage implements Page, IDBAccessObject { throw new MWException( "Could not find text for current revision {$oldid}." ); } - // @TODO: pass content object?! - $revision = new Revision( [ - 'page' => $this->getId(), - 'title' => $this->mTitle, // for determining the default content model - 'comment' => $summary, - 'minor_edit' => $meta['minor'], - 'text' => $meta['serialized'], - 'len' => $newsize, - 'parent_id' => $oldid, - 'user' => $user->getId(), - 'user_text' => $user->getName(), - 'timestamp' => $now, - 'content_model' => $content->getModel(), - 'content_format' => $meta['serialFormat'], - ] ); - $changed = !$content->equals( $oldContent ); $dbw = wfGetDB( DB_MASTER ); if ( $changed ) { + // @TODO: pass content object?! + $revision = new Revision( [ + 'page' => $this->getId(), + 'title' => $this->mTitle, // for determining the default content model + 'comment' => $summary, + 'minor_edit' => $meta['minor'], + 'text' => $meta['serialized'], + 'len' => $newsize, + 'parent_id' => $oldid, + 'user' => $user->getId(), + 'user_text' => $user->getName(), + 'timestamp' => $now, + 'content_model' => $content->getModel(), + 'content_format' => $meta['serialFormat'], + ] ); + $prepStatus = $content->prepareSave( $this, $flags, $oldid, $user ); $status->merge( $prepStatus ); if ( !$status->isOK() ) { @@ -1791,11 +1791,9 @@ class WikiPage implements Page, IDBAccessObject { } else { // T34948: revision ID must be set to page {{REVISIONID}} and // related variables correctly. Likewise for {{REVISIONUSER}} (T135261). - $revision->setId( $this->getLatest() ); - $revision->setUserIdAndName( - $this->getUser( Revision::RAW ), - $this->getUserText( Revision::RAW ) - ); + // Since we don't insert a new revision into the database, the least + // error-prone way is to reuse given old revision. + $revision = $meta['oldRevision']; } if ( $changed ) { diff --git a/includes/parser/Parser.php b/includes/parser/Parser.php index f2e47dc36a..3548da9581 100644 --- a/includes/parser/Parser.php +++ b/includes/parser/Parser.php @@ -4206,6 +4206,9 @@ class Parser { # Decode HTML entities $safeHeadline = Sanitizer::decodeCharReferences( $safeHeadline ); + + $safeHeadline = $this->normalizeSectionName( $safeHeadline ); + $fallbackHeadline = Sanitizer::escapeIdForAttribute( $safeHeadline, Sanitizer::ID_FALLBACK ); $linkAnchor = Sanitizer::escapeIdForLink( $safeHeadline ); $safeHeadline = Sanitizer::escapeIdForAttribute( $safeHeadline, Sanitizer::ID_PRIMARY ); @@ -5767,6 +5770,8 @@ class Parser { $text = $this->stripSectionName( $text ); $text = Sanitizer::normalizeSectionNameWhitespace( $text ); $text = Sanitizer::decodeCharReferences( $text ); + $text = $this->normalizeSectionName( $text ); + return '#' . Sanitizer::escapeIdForLink( $text ); } @@ -5786,6 +5791,7 @@ class Parser { $text = $this->stripSectionName( $text ); $text = Sanitizer::normalizeSectionNameWhitespace( $text ); $text = Sanitizer::decodeCharReferences( $text ); + $text = $this->normalizeSectionName( $text ); if ( isset( $wgFragmentMode[1] ) && $wgFragmentMode[1] === 'legacy' ) { // ForAttribute() and ForLink() are the same for legacy encoding @@ -5797,6 +5803,24 @@ class Parser { return "#$id"; } + /** + * Apply the same normalization as code making links to this section would + * + * @param string $text + * @return string + */ + private function normalizeSectionName( $text ) { + # T90902: ensure the same normalization is applied for IDs as to links + $titleParser = MediaWikiServices::getInstance()->getTitleParser(); + try { + + $parts = $titleParser->splitTitleString( "#$text" ); + } catch ( MalformedTitleException $ex ) { + return $text; + } + return $parts['fragment']; + } + /** * Strips a text string of wikitext for use in a section anchor * diff --git a/includes/specials/SpecialJavaScriptTest.php b/includes/specials/SpecialJavaScriptTest.php index 17c64c8ede..b786c869fb 100644 --- a/includes/specials/SpecialJavaScriptTest.php +++ b/includes/specials/SpecialJavaScriptTest.php @@ -199,15 +199,6 @@ HTML; echo $html; } - /** - * Return an array of subpages that this special page will accept. - * - * @return string[] subpages - */ - public function getSubpagesForPrefixSearch() { - return self::$frameworks; - } - protected function getGroupName() { return 'other'; } diff --git a/includes/specials/SpecialPreferences.php b/includes/specials/SpecialPreferences.php index 7c55e5c8cb..8ad1630757 100644 --- a/includes/specials/SpecialPreferences.php +++ b/includes/specials/SpecialPreferences.php @@ -127,7 +127,7 @@ class SpecialPreferences extends SpecialPage { return Preferences::getFormObject( $user, $context ); } - private function showResetForm() { + protected function showResetForm() { if ( !$this->getUser()->isAllowed( 'editmyoptions' ) ) { throw new PermissionsError( 'editmyoptions' ); } diff --git a/includes/specials/SpecialUploadStash.php b/includes/specials/SpecialUploadStash.php index b0bb595e85..ce8b5a09a6 100644 --- a/includes/specials/SpecialUploadStash.php +++ b/includes/specials/SpecialUploadStash.php @@ -106,8 +106,7 @@ class SpecialUploadStash extends UnlistedSpecialPage { $message = $e->getMessage(); } catch ( SpecialUploadStashTooLargeException $e ) { $code = 500; - $message = 'Cannot serve a file larger than ' . self::MAX_SERVE_BYTES . - ' bytes. ' . $e->getMessage(); + $message = $e->getMessage(); } catch ( Exception $e ) { $code = 500; $message = $e->getMessage(); @@ -129,7 +128,9 @@ class SpecialUploadStash extends UnlistedSpecialPage { $type = strtok( $key, '/' ); if ( $type !== 'file' && $type !== 'thumb' ) { - throw new UploadStashBadPathException( "Unknown type '$type'" ); + throw new UploadStashBadPathException( + wfMessage( 'uploadstash-bad-path-unknown-type', $type ) + ); } $fileName = strtok( '/' ); $thumbPart = strtok( '/' ); @@ -137,7 +138,9 @@ class SpecialUploadStash extends UnlistedSpecialPage { if ( $type === 'thumb' ) { $srcNamePos = strrpos( $thumbPart, $fileName ); if ( $srcNamePos === false || $srcNamePos < 1 ) { - throw new UploadStashBadPathException( 'Unrecognized thumb name' ); + throw new UploadStashBadPathException( + wfMessage( 'uploadstash-bad-path-unrecognized-thumb-name' ) + ); } $paramString = substr( $thumbPart, 0, $srcNamePos - 1 ); @@ -147,8 +150,9 @@ class SpecialUploadStash extends UnlistedSpecialPage { return [ 'file' => $file, 'type' => $type, 'params' => $params ]; } else { - throw new UploadStashBadPathException( 'No handler found for ' . - "mime {$file->getMimeType()} of file {$file->getPath()}" ); + throw new UploadStashBadPathException( + wfMessage( 'uploadstash-bad-path-no-handler', $file->getMimeType(), $file->getPath() ) + ); } } @@ -194,12 +198,16 @@ class SpecialUploadStash extends UnlistedSpecialPage { $thumbnailImage = $file->transform( $params, $flags ); if ( !$thumbnailImage ) { - throw new MWException( 'Could not obtain thumbnail' ); + throw new UploadStashFileNotFoundException( + wfMessage( 'uploadstash-file-not-found-no-thumb' ) + ); } // we should have just generated it locally if ( !$thumbnailImage->getStoragePath() ) { - throw new UploadStashFileNotFoundException( "no local path for scaled item" ); + throw new UploadStashFileNotFoundException( + wfMessage( 'uploadstash-file-not-found-no-local-path' ) + ); } // now we should construct a File, so we can get MIME and other such info in a standard way @@ -207,7 +215,9 @@ class SpecialUploadStash extends UnlistedSpecialPage { $thumbFile = new UnregisteredLocalFile( false, $this->stash->repo, $thumbnailImage->getStoragePath(), false ); if ( !$thumbFile ) { - throw new UploadStashFileNotFoundException( "couldn't create local file object for thumbnail" ); + throw new UploadStashFileNotFoundException( + wfMessage( 'uploadstash-file-not-found-no-object' ) + ); } return $this->outputLocalFile( $thumbFile ); @@ -261,13 +271,19 @@ class SpecialUploadStash extends UnlistedSpecialPage { $status = $req->execute(); if ( !$status->isOK() ) { $errors = $status->getErrorsArray(); - $errorStr = "Fetching thumbnail failed: " . print_r( $errors, 1 ); - $errorStr .= "\nurl = $scalerThumbUrl\n"; - throw new MWException( $errorStr ); + throw new UploadStashFileNotFoundException( + wfMessage( + 'uploadstash-file-not-found-no-remote-thumb', + print_r( $errors, 1 ), + $scalerThumbUrl + ) + ); } $contentType = $req->getResponseHeader( "content-type" ); if ( !$contentType ) { - throw new MWException( "Missing content-type header" ); + throw new UploadStashFileNotFoundException( + wfMessage( 'uploadstash-file-not-found-missing-content-type' ) + ); } return $this->outputContents( $req->getContent(), $contentType ); @@ -284,7 +300,9 @@ class SpecialUploadStash extends UnlistedSpecialPage { */ private function outputLocalFile( File $file ) { if ( $file->getSize() > self::MAX_SERVE_BYTES ) { - throw new SpecialUploadStashTooLargeException(); + throw new SpecialUploadStashTooLargeException( + wfMessage( 'uploadstash-file-too-large', self::MAX_SERVE_BYTES ) + ); } return $file->getRepo()->streamFile( $file->getPath(), @@ -304,7 +322,9 @@ class SpecialUploadStash extends UnlistedSpecialPage { private function outputContents( $content, $contentType ) { $size = strlen( $content ); if ( $size > self::MAX_SERVE_BYTES ) { - throw new SpecialUploadStashTooLargeException(); + throw new SpecialUploadStashTooLargeException( + wfMessage( 'uploadstash-file-too-large', self::MAX_SERVE_BYTES ) + ); } // Cancel output buffering and gzipping if set wfResetOutputBuffers(); @@ -427,5 +447,5 @@ class SpecialUploadStash extends UnlistedSpecialPage { } } -class SpecialUploadStashTooLargeException extends MWException { +class SpecialUploadStashTooLargeException extends UploadStashException { } diff --git a/includes/upload/UploadStash.php b/includes/upload/UploadStash.php index da896f973d..c2ab899789 100644 --- a/includes/upload/UploadStash.php +++ b/includes/upload/UploadStash.php @@ -118,12 +118,15 @@ class UploadStash { */ public function getFile( $key, $noAuth = false ) { if ( !preg_match( self::KEY_FORMAT_REGEX, $key ) ) { - throw new UploadStashBadPathException( "key '$key' is not in a proper format" ); + throw new UploadStashBadPathException( + wfMessage( 'uploadstash-bad-path-bad-format', $key ) + ); } if ( !$noAuth && !$this->isLoggedIn ) { - throw new UploadStashNotLoggedInException( __METHOD__ . - ' No user is logged in, files must belong to users' ); + throw new UploadStashNotLoggedInException( + wfMessage( 'uploadstash-not-logged-in' ) + ); } if ( !isset( $this->fileMetadata[$key] ) ) { @@ -134,7 +137,9 @@ class UploadStash { } if ( !isset( $this->fileMetadata[$key] ) ) { - throw new UploadStashFileNotFoundException( "key '$key' not found in stash" ); + throw new UploadStashFileNotFoundException( + wfMessage( 'uploadstash-file-not-found', $key ) + ); } // create $this->files[$key] @@ -153,13 +158,16 @@ class UploadStash { if ( !$this->files[$key]->exists() ) { wfDebug( __METHOD__ . " tried to get file at $key, but it doesn't exist\n" ); // @todo Is this not an UploadStashFileNotFoundException case? - throw new UploadStashBadPathException( "path doesn't exist" ); + throw new UploadStashBadPathException( + wfMessage( 'uploadstash-bad-path' ) + ); } if ( !$noAuth ) { if ( $this->fileMetadata[$key]['us_user'] != $this->userId ) { - throw new UploadStashWrongOwnerException( "This file ($key) doesn't " - . "belong to the current user." ); + throw new UploadStashWrongOwnerException( + wfMessage( 'uploadstash-wrong-owner', $key ) + ); } } @@ -205,7 +213,9 @@ class UploadStash { public function stashFile( $path, $sourceType = null ) { if ( !is_file( $path ) ) { wfDebug( __METHOD__ . " tried to stash file at '$path', but it doesn't exist\n" ); - throw new UploadStashBadPathException( "path doesn't exist" ); + throw new UploadStashBadPathException( + wfMessage( 'uploadstash-bad-path' ) + ); } $mwProps = new MWFileProps( MimeMagic::singleton() ); @@ -236,7 +246,9 @@ class UploadStash { $this->fileProps[$key] = $fileProps; if ( !preg_match( self::KEY_FORMAT_REGEX, $key ) ) { - throw new UploadStashBadPathException( "key '$key' is not in a proper format" ); + throw new UploadStashBadPathException( + wfMessage( 'uploadstash-bad-path-bad-format', $key ) + ); } wfDebug( __METHOD__ . " key for '$path': $key\n" ); @@ -265,15 +277,15 @@ class UploadStash { // At this point, $error should contain the single "most important" // error, plus any parameters. $errorMsg = array_shift( $error ); - throw new UploadStashFileException( "Error storing file in '$path': " - . wfMessage( $errorMsg, $error )->text() ); + throw new UploadStashFileException( wfMessage( $errorMsg, $error ) ); } $stashPath = $storeStatus->value; // fetch the current user ID if ( !$this->isLoggedIn ) { - throw new UploadStashNotLoggedInException( __METHOD__ - . ' No user is logged in, files must belong to users' ); + throw new UploadStashNotLoggedInException( + wfMessage( 'uploadstash-not-logged-in' ) + ); } // insert the file metadata into the db. @@ -332,8 +344,9 @@ class UploadStash { */ public function clear() { if ( !$this->isLoggedIn ) { - throw new UploadStashNotLoggedInException( __METHOD__ - . ' No user is logged in, files must belong to users' ); + throw new UploadStashNotLoggedInException( + wfMessage( 'uploadstash-not-logged-in' ) + ); } wfDebug( __METHOD__ . ' clearing all rows for user ' . $this->userId . "\n" ); @@ -361,8 +374,9 @@ class UploadStash { */ public function removeFile( $key ) { if ( !$this->isLoggedIn ) { - throw new UploadStashNotLoggedInException( __METHOD__ - . ' No user is logged in, files must belong to users' ); + throw new UploadStashNotLoggedInException( + wfMessage( 'uploadstash-not-logged-in' ) + ); } $dbw = $this->repo->getMasterDB(); @@ -377,12 +391,15 @@ class UploadStash { ); if ( !$row ) { - throw new UploadStashNoSuchKeyException( "No such key ($key), cannot remove" ); + throw new UploadStashNoSuchKeyException( + wfMessage( 'uploadstash-no-such-key', $key ) + ); } if ( $row->us_user != $this->userId ) { - throw new UploadStashWrongOwnerException( "Can't delete: " - . "the file ($key) doesn't belong to this user." ); + throw new UploadStashWrongOwnerException( + wfMessage( 'uploadstash-wrong-owner', $key ) + ); } return $this->removeFileNoAuth( $key ); @@ -427,8 +444,9 @@ class UploadStash { */ public function listFiles() { if ( !$this->isLoggedIn ) { - throw new UploadStashNotLoggedInException( __METHOD__ - . ' No user is logged in, files must belong to users' ); + throw new UploadStashNotLoggedInException( + wfMessage( 'uploadstash-not-logged-in' ) + ); } $dbr = $this->repo->getReplicaDB(); @@ -481,7 +499,9 @@ class UploadStash { } if ( is_null( $extension ) ) { - throw new UploadStashFileException( "extension is null" ); + throw new UploadStashFileException( + wfMessage( 'uploadstash-no-extension' ) + ); } $extension = File::normalizeExtension( $extension ); @@ -546,7 +566,9 @@ class UploadStash { protected function initFile( $key ) { $file = new UploadStashFile( $this->repo, $this->fileMetadata[$key]['us_path'], $key ); if ( $file->getSize() === 0 ) { - throw new UploadStashZeroLengthFileException( "File is zero length" ); + throw new UploadStashZeroLengthFileException( + wfMessage( 'uploadstash-zero-length' ) + ); } $this->files[$key] = $file; @@ -586,14 +608,18 @@ class UploadStashFile extends UnregisteredLocalFile { ) { wfDebug( "UploadStash: tried to construct an UploadStashFile " . "from a file that should already exist at '$path', but path is not valid\n" ); - throw new UploadStashBadPathException( 'path is not valid' ); + throw new UploadStashBadPathException( + wfMessage( 'uploadstash-bad-path-invalid' ) + ); } // check if path exists! and is a plain file. if ( !$repo->fileExists( $path ) ) { wfDebug( "UploadStash: tried to construct an UploadStashFile from " . "a file that should already exist at '$path', but path is not found\n" ); - throw new UploadStashFileNotFoundException( 'cannot find path, or not a plain file' ); + throw new UploadStashFileNotFoundException( + wfMessage( 'uploadstash-file-not-found-not-exists' ) + ); } } @@ -739,7 +765,27 @@ class UploadStashFile extends UnregisteredLocalFile { } } -class UploadStashException extends MWException { +class UploadStashException extends MWException implements ILocalizedException { + /** @var string|array|MessageSpecifier */ + protected $messageSpec; + + /** + * @param string|array|MessageSpecifier $messageSpec See Message::newFromSpecifier + * @param int $code Exception code + * @param Exception|Throwable $previous The previous exception used for the exception chaining. + */ + public function __construct( $messageSpec, $code = 0, $previous = null ) { + $this->messageSpec = $messageSpec; + + $msg = $this->getMessageObject()->text(); + $msg = preg_replace( '!!', '"', $msg ); + $msg = Sanitizer::stripAllTags( $msg ); + parent::__construct( $msg, $code, $previous ); + } + + public function getMessageObject() { + return Message::newFromSpecifier( $this->messageSpec ); + } } class UploadStashFileNotFoundException extends UploadStashException { diff --git a/includes/widget/NamespaceInputWidget.php b/includes/widget/NamespaceInputWidget.php index 3e86738bb3..3e913b02ff 100644 --- a/includes/widget/NamespaceInputWidget.php +++ b/includes/widget/NamespaceInputWidget.php @@ -18,7 +18,7 @@ class NamespaceInputWidget extends \OOUI\DropdownInputWidget { * @param array $config Configuration options * @param string $config['includeAllValue'] If specified, add a "all namespaces" option to the * namespace dropdown, and use this as the input value for it - * @param number[] $config['exclude'] List of namespace numbers to exclude from the selector + * @param int[] $config['exclude'] List of namespace numbers to exclude from the selector */ public function __construct( array $config = [] ) { // Configuration initialization diff --git a/includes/widget/search/FullSearchResultWidget.php b/includes/widget/search/FullSearchResultWidget.php index 4c9839966b..5e45c63746 100644 --- a/includes/widget/search/FullSearchResultWidget.php +++ b/includes/widget/search/FullSearchResultWidget.php @@ -79,7 +79,7 @@ class FullSearchResultWidget implements SearchResultWidget { if ( !Hooks::run( 'ShowSearchHit', [ $this->specialPage, $result, $terms, &$link, &$redirect, &$section, &$extract, - &$score, &$size, &$date, &$related, &$html + &$score, &$desc, &$date, &$related, &$html ] ) ) { return $html; } diff --git a/languages/Language.php b/languages/Language.php index 8517f26eb3..81564ab202 100644 --- a/languages/Language.php +++ b/languages/Language.php @@ -167,7 +167,7 @@ class Language { * The form is '/(?:([strong ltr codepoint])|([strong rtl codepoint]))/u' . * * Generated by UnicodeJS (see tools/strongDir) from the UCD; see - * https://git.wikimedia.org/summary/unicodejs.git . + * https://phabricator.wikimedia.org/diffusion/GUJS/ . */ // @codingStandardsIgnoreStart // @codeCoverageIgnoreStart diff --git a/languages/i18n/ais.json b/languages/i18n/ais.json index ec5c6e27b1..cb59739a1d 100644 --- a/languages/i18n/ais.json +++ b/languages/i18n/ais.json @@ -39,6 +39,7 @@ "tog-watchlisthidebots": "midimut ilabu miazihay a piazihan-tu-sulit nu kikay-tademaw a mikawaway-kalumyiti", "tog-watchlisthideminor": "midimut ilabuay nu miazihay a piazihan-tu-sulit mikilulay a sumad", "tog-watchlisthideliu": "midimut miazihay a piazihan-tu-sulit patalabu misaungayay a mikawaway-kalumyiti", + "tog-watchlistreloadautomatically": "palalitemuh tu kawaw sakacucek misumad lunuk miliyaw maasip miazihay a piazihan tu sulit (maydih pisaungay JavaScript)", "tog-watchlisthideanons": "midimut miazihay a piazihan-tu-sulit mikawaway-kalumyiti nu paceba panganganay a misaungayay", "tog-watchlisthidepatrolled": "midimut ilabu miazihay a piazihan-tu-sulit natayza-mikibiay a mikawaway-kalumyiti", "tog-watchlisthidecategorization": "midimut kasabelih kakuniza", @@ -173,6 +174,8 @@ "create": "patizeng", "create-local": "cunusen itiniay a buhci tu kamu", "delete": "misipu", + "viewdeleted_short": "miciwsace {{PLURAL:$1|1 masipuay tu masumad|$1 masipuay tu masumad}}", + "protect": "midiput", "protect_change": "misumad", "unprotect": "misumad tu midiputay", "newpage": "baluhayay a kasabelih", @@ -201,6 +204,8 @@ "jumpto": "taayaw:", "jumptonavigation": "pasubana’ tu miidangay", "jumptosearch": "kilim", + "view-pool-error": "ahicanaca, tadayadah ku misaungayay mitanamay miciwsace tina a laculaculan, sefu-kikay masungaliw tu ku katumes.\npihalhalen mitanam aca.\n\n\n$1", + "generic-pool-error": "ahicanaca,tadayadah ku misaungayay mitanamay miciwsace tina a laculaculan, sefu-kikay masungaliw tu ku katumes.\npihalhalen mitanam aca.", "pool-timeout": "imahini mihalhal milawpes pamutek", "pool-queuefull": "laylay saculuk matumestu", "pool-errorunknown": "caay kapulita ku mungangaw", @@ -225,6 +230,7 @@ "privacypage": "Project:salimek a mikuwanay a kawaw", "badaccess": "mungangaw ku tungus", "badaccess-group0": "sisetyimo caay mahasa kisu mikawaw tina saungay.", + "badaccess-groups": "milunguc kisu misaungay dada’ tu {{PLURAL:$2|tina|uyniyay}} cyuncuay misaungayay taneng pisaungay: $1.", "versionrequired": "maydih $1 baziyong a MediaWiki", "versionrequiredtext": "maydih pisaungay $1 baziyong a MediaWiki dada’ kapah pisaungay tina kasabelih.\npiazih tu tatenga’ay [[Special:Version|baziyong]].", "ok": "malucekay", @@ -233,6 +239,7 @@ "youhavenewmessagesfromusers": "{{PLURAL:$4|kisu}}izaw namakay {{PLURAL:$3|zumaay a misaungayay|$3 misaungayay}} a $1 ($2).", "youhavenewmessagesmanyusers": "izaw kisu namakay katuud misaungayay a $1 ($2).", "newmessageslinkplural": "{{PLURAL:$1|cacay baluhay palatuh|999=baluhay palatuh}}", + "newmessagesdifflinkplural": "capi demiad {{PLURAL:$1|misumad|999=misumad}}", "youhavenewmessagesmulti": "izaw $1 baluhay palatuh kisu", "editsection": "mikawaway-kalumyiti", "editold": "mikawaway tu kalumyiti", @@ -270,12 +277,15 @@ "nstab-help": "buhci tu kamu a kasabelih", "nstab-category": "kakuniza", "mainpage-nstab": "saayaway a belih", + "nosuchspecialpage": "inayi’ tina sazumaay a kasabelih", + "nospecialpagetext": " milunguc nu misu a sazumaay a kasabelih la’cus.\n\nmaydih miala kapahay a sazumaay a kasabelih piazihan-tu-sulit kapah tayza [[Special:SpecialPages|{{int:specialpages}}]].", "error": "mungangaw", "databaseerror": "sulu nu nasulitan mungangaw", "databaseerror-text": "tahkal kalunasulitan-sulu palalitemuh tu kawaw mungangaw.\nuyniyan hakay pakatineng sisetyimo izaw ku munday.", "databaseerror-query": "palalitemuh tu kawaw: $1", "databaseerror-function": "sakapaluwaluway: $1", "databaseerror-error": "mungangaw: $1", + "laggedslavemode": " patalaw: kasabelih hakay caay yamalyilu capi demiad misabaluh.", "readonly": "pamutektu sulu nu nasulitan", "enterlockreason": "pisuliten pamutek a mahicaay, yamalyilu sausi miliyaw mawawah a tuki", "missingarticle-rev": "(masumad#: $1)", @@ -312,6 +322,9 @@ "actionthrottled": "makelec saungay tuway", "protectedpagetext": "tina kasabelih masetin midiput mitena’ mikawaway-kalumyiti saca zuma saungay tuway.", "viewsourcetext": "kapah kisu miciwsace atu mikopi tina kasabelih a sakatizeng banggu.", + "viewyourtext": "kapah kisu miciwsace atu kopi ilabu’ tina kasabelih kisu mikawaway-kalumyiti yuensma-kodo.", + "namespaceprotected": "inayi’ ku tungus kisu mikawaway-kalumyiti $1 pangangananay a salaedan a kasabelih.", + "customcssprotected": "inayi’ ku tungus kisu mikawaway-kalumyiti tina CSS kasabelih, zayhan tina kasabelih yamalyilu ku zuma misaungayay teked a setin.", "mycustomcssprotected": "inayi’ tungus mikawaway-kalumyiti tina CSS kasabelih.", "mycustomjsprotected": "inayi’ tungus kisu mikawaway-kalumyiti tina JavaScript kasabelih.", "myprivateinfoprotected": "inayi’ tungus kisu mikawaway-kalumyiti cesyun nu misu.", @@ -354,12 +367,14 @@ "login-security": "sawantanen tu ID nu misu", "nav-login-createaccount": "patalabu / panganganen ku canghaw", "logout": "katahkal", + "userlogout": "katahkal", "notloggedin": "caay henay patalabu", "userlogin-noaccount": "inayi’ ku canghaw kisu haw?", "userlogin-joinproject": "micunus {{SITENAME}}", "createaccount": "panganganen ku canghaw", "userlogin-resetpassword-link": "maliyuh ku mima kisu haw?", "userlogin-helplink2": "patalabu miedap", + "userlogin-reauth": "kanca kisu patalabu aca amisawantanen kisu ku {{GENDER:$1|$1}}.", "userlogin-createanother": "patizeng tu zumaay canghaw", "createacct-emailrequired": "imyiyo(email) puenengan", "createacct-emailoptional": "imyiyo(email) tigami (u pili’ay sasulitan)", @@ -389,6 +404,8 @@ "login-userblocked": "tina misaungayay mapalangat tuway, caay mahasa patalabu tuway.", "wrongpassword": "nasulitan nu misu a mima mungangaw, pitaneng aca.", "wrongpasswordempty": "nasuliten a mima inayi’.\npitaneng aca.", + "passwordtooshort": "numisu a mima sainayi’ay maydih {{PLURAL:$1|$1 tatebanan nu nisulitan}}", + "passwordtoolong": "mima la’cus matabesiw {{PLURAL:$1|$1 tatebanan nu nisulitan}}.", "passwordtoopopular": "amana pisaungay sawsawni maazihay a mima,pipili’en pisaungay uzumaay a mima.", "password-name-match": "mima nu misu la’cus kalecad tu misaungayay a kalungangan", "password-login-forbidden": "tina misaungayay a kalungangan atu mima masatezep pisaungay tuway.", @@ -396,10 +413,13 @@ "passwordremindertitle": "{{SITENAME}} a baluhay nanunuz mima", "noemail": "misaungayay \"$1\" inayi’ imyiyo(email) puenengan nasulitan.", "noemailcreate": "maydih kisu nipabeli cacay kapahay a imyiyo(email) puenengan.", + "passwordsent": "misaungayay \"$1\" a baluhay mima mapatahkal tu i saayaway a imyiyo(email) puenengan, kapihalhal henay maala tu tigami miliyaw patalabu aca", "mailerror": "pabahel imyiyo(email) mungangaw: $1", "emailauthenticated": "imyiyo(email) puenengan nu misu malucek tu i $2 $3.", + "emailnotauthenticated": "imyiyo(email) puenengan mu misu caay henay malucek, cayhenay patigami kisu isasa’ay a sasahicaan a imyiyo(email).", "noemailprefs": "i numisuay a setin tu kanamuhan misetin imyiyo(email) puenengan, kya kapah kisu pisaungay uyniyay sasahicaan.", "emailconfirmlink": "malucekay tu imyiyo(email) puenengan", + "invalidemailaddress": "la’cus mizawis tu caay tatenga’ay a kese tu ku imyiyo(email) puenengan, kapisuzu tu tatenga’ay imyiyo(email) puenengan a kese saca awas han ku nisulitan i langat-pisinga’an.", "cannotchangeemail": "tina Wiki satezep misumad canghaw a imyiyo(email) puenengan.", "emaildisabled": "tina calay-kakacawan(wangcan) caay kakapah pabahel imyiyo(email).", "accountcreated": "panganganen tu ku canghaw", @@ -408,6 +428,8 @@ "login-abort-generic": "patalabu kisu mungangaw - satezep tuway", "login-migrated-generic": "u canghaw nu misu maliyas tu, zumasatu tina Wiki nu misu misaungayay a kalungangan inayi’ tu.", "loginlanguagelabel": "kamu: $1", + "suspicious-userlogout": "katahkal a pilunguc nu misu kakakaiyan, hakay u numisu pisaungay izaw ku munday nu saazihay-sakaluk saca kabilil-miala kutay sefu-kikay", + "createacct-another-realname-tip": "tatenga’ay a ngangan ku mapili’ay a sasulitan pisinga’an.\namahica kisu nipabelitatenga’ay a ngangan, apasaungay i misaungayay paanin pangangan.", "pt-login": "patalabu", "pt-login-button": "patalabu", "pt-login-continue-button": "palalid patalabu", @@ -448,6 +470,7 @@ "botpasswords-updated-body": "pabeli misaungayay \"$2\" a kikay-tademaw \"$1\" a kikay-tademaw mima masabaluh tuway.", "botpasswords-deleted-title": "masipu tu kikay-tademaw mima", "botpasswords-deleted-body": "pabeli misaungayay \"$2\" a kikay-tademaw \"$1\" a kikay-tademaw mima masipu tuway.", + "botpasswords-no-provider": "BotPasswordsSessionProvider la’cus pisaungay.", "botpasswords-restriction-failed": "kikay-tademaw a mima kelec makai tu ayzaay a patalabu.", "botpasswords-invalid-name": "matuzu’ay a misaungayay a kalungangan caay yamalyilu kikay-tademaw mima maliyasay a tatebanan nu nisulitan (\"$1\")", "botpasswords-not-exist": "misaungayay \"$1\" zumasatu inayi’ kalungangan ku \"$2\" a kikay-tademaw mima.", @@ -456,12 +479,15 @@ "resetpass-no-info": "kanca kisu patalabu kyu taneng kakelulan kisu misuped-miala tina kasabelih.", "resetpass-submit-loggedin": "misumad tu mima", "resetpass-submit-cancel": "palawpes", + "resetpass-wrong-oldpass": "la’cusay a pananebul sa saca ayza izaway a mima.\nhakay kisu masumad tu ku mima, saca milunguctu tu cacay baluhay kananebulan a mima.", "resetpass-recycled": "piliyaw patizeng mima nu misu caay kalecaday nu ayzaayㄡ", + "resetpass-temp-emailed": "pisaungay kisu mananebuh imyiyo(email) pabahelan i kodo patalabu.\namapahezek patalabu, kanca kisu misetin tu cacay baluhay a mima itini:", "resetpass-temp-password": "nanunuz a mima:", "resetpass-abort-generic": "sacunus satezip tu misumad mima a saungay.", "resetpass-expired": "mima nu misu mangasiw tu. pisetin baluhayay a mima amipatalabu.", "passwordreset": "miliyaw miteka setin mima", "passwordreset-text-one": "pahezek tina aazihan cudad, micaliw tu imyiyo(email) pabahel nanuzu a mima sapaliyaw misetin mima nu misu.", + "passwordreset-text-many": "{{PLURAL:$1|pihezek tina aazihan cudad amicaliaw imyiyo(email) milayap nanunuz a mima.}}", "passwordreset-disabled": "tina Wiki mapasatezep tu miliyaw patizeng tu mima.", "passwordreset-emaildisabled": "uyni Wiki mapasatezep imyiyo(email) sasahicaan tuway.", "passwordreset-username": "misaungayay a kalungangan:", @@ -470,6 +496,7 @@ "passwordreset-emailtitle": "i {{SITENAME}} a canghaw pulita kalunasulitan", "passwordreset-emailtext-ip": "caay kapulita a tademaw (hakay kisu i, namakay IP puenengan $1) milunguc miliyaw patizeng i {{SITENAME}} ($4) a mima, isasa’ay sa ku mahizaay tina imyiyo(email) puenengan a misaungayay {{PLURAL:$3|canghaw}}:\n\n$2\n\n{{PLURAL:$3|tina nanunuzay a mima|uyniyay nanunuzay a mima}} nay ilabu’ nu {{PLURAL:$5|cacay a demiad|$5 a demiad}} kakatukuhan, kanca kisu tansul patalabu atu misaimed baluhayay a mima.\n\namahica caay kisu milunguc miliyaw patizeng mima, saca mazateng tu kisu ku mima, caay henay amisumad, kapah kisu sekipo tina palatuh zumasatu palalid pisaungay mahizaay saayaway mima nu misu.", "passwordreset-emailelement": "misaungayay a kalungangan:\n$1\n\nnanunuzay a mima:\n$2", + "passwordreset-emailsentusername": "amahica tina tatenga’ ku misaungayay tu kalungangan masulitay imyiyo(email) puenengan nu misu, apatahkal miliyaw patizeng tu mima a tigami kisu.", "passwordreset-nocaller": "manakanca nipabeli caller", "passwordreset-nosuchcaller": "Caller inayi’: $1", "passwordreset-ignored": "caay pilisimet miliyaw patizeng mima. hakay caay henay misetin nipabeliay?", @@ -519,6 +546,7 @@ "showdiff": "paazih ku masumaday", "blankarticle": " patalaw: imahini kisu patizengay a kasabelih ku nayi’ ku cacanay.\namahica kisu mipecec \"$1\", apatizeng inayi’ amahicahica lacul a kasabelih.", "anoneditwarning": "patalaw:caay henay kisu patalabu. anu miteka mikawaway tu kalumyiti, IP adolyise nu misu ama mitilak. anu kisu [$1 patalabu ] acasa [$2 panganganen ku canghaw ], misuay mikawaway tu kalumyiti payni tu nu misuay misaungayay kalungangan sacuzu’ ,izaway zuma kapahayay.", + "anonpreviewwarning": "caay henay patalabu kisu. misuped kasabelih a mahiya ku nu misu i IP puenengan sulit tu nakawawan tina kasabelih ilabu’ nu mikawaway-kalumyiti nazipa’an. ", "missingsummary": " pacekil:caay henay kisu suliten mikawaway-kalumyiti pecu’ nu lacul.\namahica kisu amisapecec aca \"$1\" kinacacay, atakud han pecu’ nu lacul kakelul misuped mikawaway-kalumyiti nu misu.", "missingcommenttext": "pisuliten buhci tu kamu isasa’.", "summary-preview": "mikawaway-kalumyiti pecu’ nu lacul pataayaway miazih:", @@ -530,22 +558,28 @@ "blockednoreason": "caay pasaheci tu mahicaay", "whitelistedittext": "piayawen $1 sakapah mikawaway-kalumyiti kasabelih.", "nosuchsectiontitle": "caykatepa tu tusil", + "nosuchsectiontext": "mitanam kisu mikawaway-kalumyiti a tusil inayi’. hakay miciwsace kasabelih kisu sa malimad saca masipu.", "loginreqtitle": "maydih patalabu", "loginreqlink": "patalabu", "loginreqpagetext": "$1 iayaw kyu kapah miciwsace zuma kasabelih.", "accmailtitle": "mima patigamitu", "newarticle": "(baluhay)", "newarticletext": "masasiket kisu tu nayi’ay tu kasabelih.\namipatizeng tina kasabelih, kaisasa mikawaway tu kalumyiti atilad misulit ku lacul (kahica nu kawaw piazih tu tatenga’ay [$1 misaungay a buhci tu kamu kasabelih ]).\namahica caay padeteng tayza tina kasabelih kisu haw, pihaymaw sapecec saazihay a tatiku pipenecan.", + "anontalkpagetext": "tina matatengil kasabelih apabeli caay henay panganganen ku canghaw a paceba panganganay a misaungayay pisaungay\nsisa kanca kami pisaungay IP puenengan ataazihan kika, uyzasa malecaday a IP puenengan hakay nay katuuday caykalecaday a misaungayay kapulungan.\namahica kisu ku paceba panganganay a misaungayay zumasatu kunizateng buhci tu kamu a lacul inayi’ mahizaay kisu, [[Special:CreateAccount|patizeng baluhay canghaw]] saca [[Special:UserLogin|patalabu]] miliyas masiwala tu zuma paceba panganganay a misaungayay.", "noarticletext": "kina kasabelih inayi’ lacul ayza,kapah tu kisu i zumaay a kasabelih [[Special:Search/{{PAGENAME}}| mikilim kina kasabelih pyawti ]]、[{{fullurl:{{#Special:Log}}|page={{FULLPAGENAMEE}}}} mikilim sasuala nasulitan nakawawan ] caay sa[{{fullurl:{{FULLPAGENAME}}|action=edit}} patizeng kina kasabelih ].", "noarticletext-nopermission": "tina kasabelih ayza inayi’ lacul,\nkapah tu kisu i zuma kasabelih [[Special:Search/{{PAGENAME}}| kilim kina kasabelih pyawti ]],acasa [{{fullurl:{{#Special:Log}}|page={{FULLPAGENAMEE}}}} kilim sasuala nasulitan nakawawan ],uyzasa inayi’ ku tungus patizeng tina kasabelih.", + "userpage-userdoesnotexist": "misaungayay canghaw \"$1\" caay henay pangangan。\namahica maydih kisu patizeng/mikawaway-kalumyiti tina a kasabelih, kaliayaw mikinsa tatenga’ay tu hakiza.", "userpage-userdoesnotexist-view": "misaungayay canghaw \"$1\" caay henay mapangangan.", "blocked-notice-logextract": "tina misaungayay malangat tu ayza.\nisasa’ay ku capi demiad malangatay a nasulitan apabeli miazih tu tatenga’ay:", "clearyourcache": " azihen:izikuzay misuped kisu kanca palawpes saazihay-sakaluk kabilil-miala ngay maazih sabaluhay sumad.\n* Firefox / Safari: pecec Shift sa sapecec miliyaw lisimeten , saca pecec Ctrl-F5 saca Ctrl-R (Mac sa ku ⌘-R) \n* Google Chrome: pecec Ctrl-Shift-R (Mac sa ku ⌘-Shift-R) \n* Internet Explorer: pecec Ctrl sa sapecec miliyaw lisimeten , saca pecec Ctrl-F5\n* Opera: taayaw pili’ → setin (i Mac ku Opera → setin tu kanamuhan ) nazikuzan sa katukuh aca midimut kasikazan & kazahkezan → palawpes azih kalunasulitan → kabilil-miala tuway a zunga atu tangan ", "userjspreview": "strong>imhini pataayaway miazih kisu numisuay misaungayay a JavaScript.\nJavaScript caay henay misuped!", + "sitecsspreview": "imhini kisu ayza i pataayaway miazih tina CSS, CSS caay henay suped!", "sitejspreview": " mipataayaway miazih tina JavaScript kisu ayza, JavaScript caay henay misuped!", "updated": "(misabaluh tuway)", "note": "azihen:", + "previewnote": "imahini kisu mapataayaway miazih, misu a pisumad caay henay kasinga’", "continue-editing": "taayaw mikawaway-kalumyiti nikatatapal", + "previewconflict": "tina pataayaway miazih paazih kisu ipabaway a sulit mikawaway-kalumyiti nikatatapal a lacul masuped tuway amapaazihay aheci.", "session_fail_preview": "ahicanaca! u nanu tina patalabu a tuki matahkal kalunasulitan mahedaw, la’cus kami lisimet nasanga’ mikawaway-kalumyiti.\n\n {{SITENAME}} mawawah tu saayaway HTML muse, sisa tina pataayaway miazih kya zunga caay paazih amiliyas JavaScript madebung.\n\nanu maydih kisu tatenga’ taneng misanga’ tina mikawaway-kalumyiti, pitaneng aca.\namahica caay malahci henay, nazikuz tu [[Special:UserLogout|katahkal]] piliyaw miteka patalabu, zumasatu pilucek saazihay-sakaluk setin ku \"mahasa tina calay-subal(wangyi) a cookie\".", "editing": "mikawaway tu kalumyiti $1 ayza", "creating": "patizeng ayza $1", @@ -568,7 +602,9 @@ "sectioneditnotsupported-title": "caay pidama mikawaway-kalumyiti tusil", "sectioneditnotsupported-text": "tina kasabelih caay midama mikawaway-kalumyiti tusil.", "permissionserrors": "mungangaw ku tungus", + "permissionserrorstext": "makay isasa’ay {{PLURAL:$1|mahicaay}}, inayi’ ku tungus kisu miteka ayzaay pisaungay", "permissionserrorstext-withaction": "namakay isasaay {{PLURAL:$1|mahicaay}}, inayi’ kisu situngus miteka $2 miteka tuway misaungay:", + "recreate-moveddeleted-warn": " patalaw: imahini kisu miliyaw patizeng nasawniay masipuay tu kasabelih. \n\nkanca kisu mizateng palalid mikawaway-kalumyiti tina bilih haw?\nitini nipabeli masipu atu milimad nasulitan nazipa’an sapiazih tu tatenga’ay", "moveddeleted-notice": "kina kasabelih masipu tu.\nisasa nipabeli kina kasabelihay a masipu atu milimad nasulitan nakawawan, taneng miazih tu tatenga’ay.", "log-fulllog": "ciwsace leku nasulitan-nazipa’an", "edit-hook-aborted": "mikawaway-kalumyiti masatezep tuway nay Hook.\nzumasatu caay patukil inayi’ amahicahica buhci tu kamu.", @@ -627,6 +663,7 @@ "next": "zikuzan a cacay", "last": "ayaway", "page_last": "sazikuzay a kasabelih", + "histlegend": "sasutili’ mapili’ ay a baziyong sasizuma: mipili’ amisasutili’ masumad nu ayaway baziyong a cacay-pili’-atilad atu sapecec pututay a pipenecan miteka sasutili’.
\ntatebanan nu nisulitan buhci tu kamu: ({{int:cur}}) = pisasutili’ sefu-kikayluhay sumad baziyong, ({{int:last}}) = sasutili’ tu masumad nu ayaway baziyong, {{int:minoreditletter}} = mikilulay masumad nu ayaway.", "history-fieldset-title": "mikilim masumad nu ayaway", "history-show-deleted": "paazih a cacay ku masipuay tu masumad", "histfirst": "sakasumamadan", @@ -640,15 +677,20 @@ "rev-deleted-comment": "(masipu tu mikawaway-kalumyiti pecu’ nu lacul)", "rev-deleted-user": "(misipu misaungayay a kalungangan tuway)", "rev-deleted-event": "(masipu tu nasulitan-nazipa’an nu paazih tu sulit)", + "rev-deleted-user-contribs": "[misaungayay a kalungangan saca IP puenengan masipu tuway - madimut paanin piazihan-tu-sulit a mikawaway-kalumyiti]", "rev-delundel": "misumad ku maazihay", "rev-showdeleted": "paazih", "revisiondelete": "masipu/palawpes misipu masumad nu ayaway", "revdelete-nooldid-title": "la’cusay a pamutekan masumad nu ayaway", "revdelete-no-file": "matuzu’ay a tangan inayi’ tu.", "revdelete-show-file-submit": "hang", + "revdelete-selected-text": "mapili’ tuway [[:$2]] tebanay{{PLURAL:$1|cacayay|yadahay}} masumad nu ayaway", + "revdelete-selected-file": "mapili’ tu [[:$2]] labu’ay {{PLURAL:$1|cacay|yadahay}} tangan baziyong:", "logdelete-selected": "mapili’ {{PLURAL:$1|cacay|yadah}} nasulitan nazipa’an saungay nu binawlan.", "revdelete-text-text": "masipuay a sumad uyzatu matahkal kasabelih nazipa’an, uyzasa lacul caay mawawah misuped-miala.", "revdelete-text-file": "masipuay a tangan baziyong uyzatu matahkal i tangan nazipa’an, uyzasa lacul caay pawawah misuped-miala.", + "logdelete-text": "masipuay tu nasulitan a saungay nu binawlan a tahkal henay i nasulitan ilabu’, nika liyad a lacul a caay kawawah paazih tu katuuday misuped-miala.", + "revdelete-text-others": "amahica caay misetin uzumaay a sakacucek, zuma mikuwanay izaw tu ku tungus miciwsace atu palawpes masipu midimutay a lacul.", "revdelete-legend": "misetin paazih a kelec", "revdelete-hide-text": "masumad nu ayaway a sulit", "revdelete-hide-image": "midimut lacul nu tangan", @@ -669,7 +711,11 @@ "pagehist": "kasabelih nazipa’an", "deletedhist": "masiputu tu nazipa’an", "revdelete-hide-current": "midimut i $1 $2 a kasacacay mungangaw: tina ku sumad nuayzaay, amana midimut.", + "revdelete-show-no-access": "miciwsace tu $1 $2 a kasacacay mungangaw: tina kasacacay mapasiket tu \"makelec tu\". inayi’ ku tungus kisu misuped-miala..", + "revdelete-modify-no-access": "misumad nay $1 $2 kasacacay mungangaw: tina kasacacay masiket tu \"makelec tu\".\ninayi’ ku tungus kisu misuped-miala.", "revdelete-modify-missing": "misumad kasacacay ID $1 mungangaw: kalunasulitan-sulu inayi’ kya kalunasulitan", + "revdelete-no-change": "patalaw: i $1 $2 a kasacacay malunguc tu pisumad paazihay a setin.", + "revdelete-concurrent-change": "misumad i $1 $2 kasacacay mungangaway: itisuwan mitanam misumad pataayaw tu setyitase, mapasumad tu.\npikinsa tu nasulitan nazipa’an.", "revdelete-reason-dropdown": "* lalid maazihay a misipuay a mahicaay \n** midebung nisanga’an niza tu tungus a kawaw \n** caay matatungusay a buhci tu kamu saca tekeday a cesyun\n** caay matatungusay a misaungayay a kalungangan \n** midimut yamalyilu palawacu’ay a cesyun", "revdelete-otherreason": "zumaay/nicunusay a mahicaay:", "revdelete-reasonotherlist": "zuma a mahicaay", @@ -688,6 +734,7 @@ "mergehistory-fail-bad-timestamp": "tatukian a suyling la’cus.", "mergehistory-fail-invalid-source": "saangangan kasabelih la’cus.", "mergehistory-fail-invalid-dest": "pamutekan kasabelih la’cus.", + "mergehistory-fail-no-change": "nazipa’an mikabu caay henay mikabu amahicahica tu masumad nu ayaway sulit nazipa’an. pisaliyaw kinsa kasabelih atu tukiay aazihen-sulyang.", "mergehistory-fail-permission": "mangadis tungus,la’cus mikabu nazipa’an.", "mergehistory-fail-self-merge": "malecad ku kalungangan nu saangangan kasabelih atu papatuzu’an kasabelih.", "mergehistory-fail-timestamps-overlap": "angangan masumad nu ayaway baziyong misaliyaw, saca i zikuz nu papatuzu’an masumad nu ayaway baziyong sa matahkal.", @@ -713,6 +760,7 @@ "editundo": "patiku", "diff-empty": "(inayi’ sasizuma)", "diff-multi-sameuser": "(malecaday misaungayay {{PLURAL:$1|ilaed izaw ku $1 a sumad}}inayi’ paazih)", + "diff-multi-otherusers": "({{PLURAL:$1|cacay ilabu’ay a sumad|$1 ilabu’ay a sumad}} nay {{PLURAL:$2|uzumaay a misaungay|$2 misaungayay}} caay paazih)", "searchresults": "heci nu makatepa", "searchresults-title": "$1 heci nu makatepa", "titlematches": "kasabelih satangah matatungus", @@ -722,9 +770,11 @@ "nextn": "zikuzan a cacay {{PLURAL:$1|$1}}", "prev-page": "ayaway a belih", "next-page": "zikuzan a belih", + "prevn-title": "nuayaway $1 {{PLURAL:$1|heci}}", "nextn-title": "nuzikuzan saka {{PLURAL:$1|a heci}}", "shown-title": "paybelih {{PLURAL:$1|$1 ku heci}} paazih", "viewprevnext": "ciwsace ($1 {{int:pipe-separator}} $2) ($3)", + "searchmenu-exists": "tina Wiki izawtu kalungangan ku \"[[:$1]]\" a kasabelih. {{PLURAL:$2|0=|saca piazih tu tatenga’ay zuma heci nu makatepa.}}", "searchmenu-new": " uyni Wiki patizeng ku kasabelih \"[[:$1]]\"!{{PLURAL:$2|0=| acasa miazih tu tatenga’ay patalabuay a matepa’ay a heci. |acasa miazih tu tatenga’ay zuma matepa’ay a heci.}}", "searchprofile-articles": "lacul kasabelih", "searchprofile-images": "kayadah-myiti", @@ -817,11 +867,15 @@ "prefs-searchoptions": "kilim", "prefs-namespaces": "pangangananay a salaedan", "default": "pataayaw tu kawaw", + "prefs-files": "tangan", "prefs-custom-css": "pakuniza misanga’ CSS", "prefs-custom-js": "pakuniza misanga’ JavaScript", "prefs-common-css-js": "sacahamin nuhekalan kapulungan a CSS/JavaScript:", + "prefs-reset-intro": "kapah kisu misaungay tina kasabelih miliyaw patizeng tunumisu misetin tu kanamuhan mala calay-kakacawan(wangcan) pataayaw sulyang.\ntina pisaungay a la’cus panukasan.", "prefs-emailconfirm-label": "imyiyo(email) malucekay tuway:", + "youremail": "imyiyo(email):", "username": "{{GENDER:$1|misaungayay a kalungangan}}:", + "prefs-memberingroups": "{{GENDER:$2|mikitinay}} {{PLURAL:$1|luyaluy}}:", "prefs-registration": "pangangan a demiad:", "yourrealname": "tatengaay a ngangan:", "yourlanguage": "kamu:", @@ -830,12 +884,15 @@ "yournick": "baluhay sulitan a ngangan:", "prefs-help-signature": "i sasukamu kasabelih buhci tu kamu kanca pisaungay \"~~~~\" pangangan, bkya tatebanan nu nisulitan amaliyaw tu sulitan nu ngangan atu tuki.", "badsig": "mungangaw a saayaway sulitan a ngangan.\npikinsa HTML aazihen-paya.", + "badsiglength": "numisuay a nipangangan tadatanayu’.\nselepen tu $1 ke {{PLURAL:$1|tatebanan nu nisulitan}}", "yourgender": "milunguc kisu pisaungay canan a etul muawaw tisuwanan?", "gender-unknown": "anu miawaw tisuwan sa, tina zwanti hakay amana misaungay tu etul-sulit.", "gender-male": "mikawaway-kalumyiti Wiki kasabelih ciniza", "gender-female": "mikawaway-kalumyiti Wiki kasabelih ciniza", "prefs-help-gender": "tina kanamuhan a setin ku mapili’ay langat-pisinga’an.\nsisetyimo apisaungay namapili’ay nu misu a sasakawawen mitakus tisuwan, anu sasukamu tu tawan mapatahkal tisuwan sa apisaungay tu matatungus a ngangan.\ntina cesyun apabinawlan.", "email": "imyiyo(email)", + "prefs-help-realname": "tatenga’ay ngangan mipili’ tu sasulitan pisinga’an. \nanu pabeli, tatenga’ay ngangan hakay kapah malumisuay nalimaan a sapangangan", + "prefs-help-email": "imyiyo(email) puenengan ku mipili’ sasulitan langat-pisinga’an.\nnika i miliyaw patizeng mima sa matineng pisaungay,hakay kisu kalamapawan tu mima.", "prefs-help-email-required": "imyiyo(email) puenengan manakanca suliten naca kasacacay.", "prefs-info": "anganganay a cesyun", "prefs-i18n": "masakitakiay", @@ -935,6 +992,7 @@ "right-ipblock-exempt": "sekipo IP milangat, lunuk milangat atu subal milangat kinsa", "right-unblockself": "mihulak tu ku langat nu maku", "right-protect": "misumad midiput tindud atu mikawaway-kalumyiti mapatatusul midiputay a kasabelih", + "right-editprotected": "mikawaway-kalumyiti midiput tu kasalaylay ku \"{{int:protect-level-sysop}}\" a kasabelih.", "right-editcontentmodel": "mikawaway-kalumyiti kasabelih a lacul tatudungen-misanga’", "right-editinterface": "mikawaway-kalumyiti misaungayay taypuolayta", "right-editusercss": "mikawaway-kalumyiti zuma misaungayay a CSS tangan", @@ -942,6 +1000,7 @@ "right-editmyusercss": "mikawaway-kalumyiti numisuay a misaungayay CSS tangan", "right-editmyuserjs": "mikawaway-kalumyiti numisuay misaungayay a JavaScript tangan", "right-viewmywatchlist": "ciwsace misuay a miazihay a piazihan-tu-sulit", + "right-editmywatchlist": "mikawaway-kalumyiti misuay miazihay a piazihan tu sulit. azihen, kanahatu inayi’ kuyni tungus, izaw hatizaay pisaungay cunusen ku kasabelih katukuh miazihay a piazihan tu sulit", "right-viewmyprivateinfo": "ciwsace numisuay a dimut kalunasulitan (tinaku, imyiyo(email) puenengan atu tatenga’ay a ngangan)", "right-editmyoptions": "mikawaway-kalumyiti nucimacimaay a setin tu kanamuhan", "right-rollback": "besuchan patiku sazikuzay a misaungayay a mikawaway-kalumyiti kasabelih", @@ -959,6 +1018,9 @@ "right-siteadmin": "pamutek atu mihulak azihen sulu nu nasulitan", "right-override-export-depth": "patahkal ku kasabelih yamalyilu masasiket lacul, ilabu pabaw-sahezek silima tindud", "right-sendemail": "pabahel imyiyo(email) patakus zuma misaungayay", + "right-managechangetags": "patizeng zumasat nay nasulitan-sulu (palawpes) mitiyung [[Special:Tags| aazihen-paya]]", + "right-applychangetags": "miladay ku cimaay a sumad pulung han caedung [[Special:Tags|aazihen-paya]]", + "right-changetags": "micunus atu misipu amahicahica tu ikasasizuma masumad nu ayaway atu nasulitan nazipa’an kasacacayan [[Special:Tags|aazihen-paya]]", "right-deletechangetags": "nay kalunasulitan-sulu masipu [[Special:Tags|aazihen-paya]]", "grant-generic": "\"$1\" tungus pulung han", "grant-group-page-interaction": "kasasukamu tu kasabelih", @@ -973,6 +1035,7 @@ "grant-createaccount": "panganganen ku canghaw", "grant-createeditmovepage": "patizeng、mikawaway-kalumyiti atu milimad kasabelih", "grant-delete": "misipu kasabelih, misumad nu ayaway atu nasulitan-nazipa’an", + "grant-editinterface": "mikawaway-kalumyiti MediaWiki pangangananay a salaedan atu misaungayay CSS/JavaScript", "grant-editmycssjs": "mikawaway-kalumyiti numisuay a misaungayay CSS/JavaScript", "grant-editmyoptions": "mikawaway-kalumyiti misaungayay setin tu kanamuhan nu misu", "grant-editmywatchlist": "mikawaway-kalumyiti numisu misisip a piazihan-tu-sulit", @@ -1119,7 +1182,9 @@ "rcfilters-filter-categorization-description": "mamicunus i kakuniza saca nay kakuniza masipuay a kasabelih nasulitanㄡ", "rcfilters-filter-logactions-label": "saungay a nasulitan nazipa’an", "rcfilters-filter-logactions-description": "mikuwan saungay, patizeng canghaw, misipu kasabelih, patapabaw...", + "rcfilters-hideminor-conflicts-typeofchange": "izaw ku zumaay misumad nikalahizaan la’cus matuzu’ay mala \"mikilulay\", sisa tina sakacucek nu misapili’ atu isasa’ay a sumad nikalahizaan sakacucek nu misapili’ sasula’cus: $1", "rcfilters-filtergroup-lastRevision": "sabaluhay masumad", + "rcnotefrom": "isasa’ay a {{PLURAL:$5|ku}}nay $3 $4 a sumad (sayadah paazih $1).", "rclistfrom": "paazih nay $3 $2 baluhayay a sumad katukuh ayza", "rcshowhideminor": "$1 mikilulay mikawaway-kalumyiti", "rcshowhideminor-show": "paazih", @@ -1190,8 +1255,10 @@ "ignorewarning": "sekipo patalaw atu misuped tu tangan", "ignorewarnings": "sekipo sacahamin patalaw", "minlength1": "tangan kalungangan manakanca anu inayi’ i cacay tatebanan-nisulitan.", + "illegalfilename": "tangan kalungangan \"$1\" yamalyilu kasabelih satangahan pasatezep pisaungayan tatebanan nu nisulitan.\nkapiliyaw pangangan mamin sa patapabawen.", "filename-toolong": "tangan kalungangan amana mangsiw 240 wyiyincu.", "badfilename": "masumad tuway tangan kalungangan ku \"$1\"", + "filetype-mime-mismatch": "tangan mikilulay-tangan-ngangan \".$1\" caay katatungus sedap katukuhan tangan MIME nikalahizaan ($2)", "filetype-badmime": "amana mahasa patapabaw MIME nikalahizaan ku \"$1\" a tangan.", "filetype-bad-ie-mime": "Internet Explorer amitangan itini nikalahizaan mungangaw piazih ku \"$1\", hakay malecay midimutay a mundayk, caay mahasa patapabaw tina nikalahizaan tangan.", "filetype-missing": "kya tangan inayi’ mikilulay ngangan nu tangan (tinaku \".jpg\")", @@ -1208,6 +1275,7 @@ "tmp-write-error": "suliten nanunuz a tangan mungangaw.", "large-file": "patahkal nizateng a tangan hacica-tabaki pabaw-sahezek u $1;\ntina tangan u $2.", "largefileserver": "tina tangan hacica-tabaki mangsiw sefu-kikay setin a mahasaay a subal.", + "emptyfile": "patapabaway tu tangan nu misu nayay ilabu.\nhakay u tangan a kalungangan mungangaw ku sulitan.\nkapikinsa maydih kisu patapabaw tu nayaay a tangan.", "windows-nonascii-filename": "tina Wiki caay midama pisaungay sazumaay bacu a tangan kalungangan.", "file-exists-duplicate": "tina tangan masaliyaw isasa’ay a {{PLURAL:$1|cacay|yadah}} tangan", "uploadwarning": "patapabaw patalaw", @@ -1216,9 +1284,12 @@ "uploaddisabled": "mapasatezep tu ku patapabaw", "copyuploaddisabled": "mapasatezep pisaungay URL patudud.", "uploaddisabledtext": "patapabaw tangan mapasatezep tuway.", + "php-uploaddisabledtext": "PHP mapasatezep tangan patapabaw.\npikinsa file_uploads setin.", + "uploadscripted": "tina tangan yamalyilu hakay u calay-belih(wangyi) saazihay-sakaluk a mungangaw masaungay HTML saca Script.", "upload-scripted-pi-callback": "la’cus patapabaw yamalyilu XML-stylesheet sapisadimel mituzu’ a tangan.", "uploaded-script-svg": "i mapatapabaway a SVG tangan matepa kapah micengseay a kuku’-ulic aazihen-paya \"$1\".", "uploaded-hostile-svg": "i mapatapabaway a SVG tangan yangse aazihen-paya matepa caay kaenapay a CSS.", + "uploaded-setting-href-svg": "masatezep pisaungay \"set\" aazihen-paya amicunus \"href\" susin ta mama yinsu.", "uploaded-image-filter-svg": "ilabu’ mapatapabaway a SVG tangan matepa zunga sebseb-sakaluk pisaungay URL:<$1 $2=\"$3\">.", "uploadinvalidxml": "la’cus mitingalaw matapabaway tangan a XML.", "upload-source": "saangangan a tangan", @@ -1229,6 +1300,7 @@ "upload-description": "tangan sapuelac", "upload-options": "patapabaw mapiliay", "watchthisupload": "miazih tina tangan", + "filewasdeleted": "nasawniay izaw tu ku malecaday kalungangan a tangan patapabaw, masiputu nazikuzan.\nkanca kisu a patapabaw tina tangan pataayaw mikinsa $1.", "upload-proto-error": "padinwaay a ketun caay katatenga’", "upload-file-error": "ilabuay a mungangaw", "upload-file-error-text": "mitanam i sefu-kikay patizeng singa’an tu sulit sa tahkal labuay mungangaw.\npimasukazih [[Special:ListUsers/sysop|mikuwanay]].", @@ -1247,9 +1319,14 @@ "upload-form-label-infoform-title": "pulitaay a kalunasulitan", "upload-form-label-infoform-name": "kalungangan", "upload-form-label-infoform-description": "sapuelac", + "upload-form-label-infoform-description-tooltip": "sapuyu’en ku kamu sapuelac tu nalimaan amahicahicaay tu matatungus pibuhci tu kamu i kalukawaw.\ntinaku i sasing, taneng mapatahkal ku sasakamuen i sasing, kalukawawatu kahicelaan.", "upload-form-label-own-work": "uyni ku nalimaan nu maku", "upload-form-label-infoform-categories": "kakuniza", "upload-form-label-infoform-date": "demiad", + "upload-form-label-own-work-message-generic-local": "milucek tu kaku patapabaway a tangan nu maku maduduc tu ku isasa’ay {{SITENAME}} miedapay a cedang atu sapabeli tu kinli a cedang", + "upload-form-label-not-own-work-local-generic-local": "kapah kisu mitanam [[Special:Upload|pataayaw tu kawaw a patapabaw kasabelih]].", + "upload-form-label-own-work-message-generic-foreign": "matineng tu kaku patapabaw tina tangan tayza i cacay kapulungan suped-sulu, milucek tu kaku miduduc tu nu wiki a cedang atu sapabeli tu kinli a likec.", + "upload-form-label-not-own-work-message-generic-foreign": "anu makai kisu patubeli miduduc kasasimel suped-sulu a amikuwanay-pasayzaay patapabaw tu tangan,piedeb tina sasukamu-liwang a mitanam tuzumaay a sakaluk.", "backend-fail-stream": "la’cus pabahel tu tangan \"$1\".", "backend-fail-backup": "la’cus mikopi tu tangan \"$1\".", "backend-fail-notexists": "tangan $1 inayi’.", @@ -1267,6 +1344,7 @@ "backend-fail-closetemp": "la’cus miedeb misinga’ tu tangan.", "backend-fail-read": "la’cus maasip tangan \"$1\".", "backend-fail-create": "la’cus pasulit tu tangan \"$1\".", + "backend-fail-readonly": "suped-sulu zikuzan \"$1\" ayzaay aasipen muse. mahicaay: $2", "backend-fail-synced": "tangan \"$1\" atu ilabuay i zikuzan nu suped-sulu a setyitase caay kalecad", "backend-fail-connect": "la’cus misasiket tayza suped-sulu zikuzan malutapiingan \"$1\"", "backend-fail-internal": "suped-sulu zikuzan \"$1\" izaw caay kapulitaay a mungangaw.", @@ -1287,6 +1365,7 @@ "zip-file-open-error": "miwawah tangan miteka ZIP kinsa sa mungangaw.", "zip-wrong-format": "matuzu’ay a tangan caay ku ZIP tangan.", "zip-bad": "ZIP tangan malepi’tu saca la’cus miasip.\nla’cus habutud han miteka zahkez kinsa.", + "zip-unsupported": "ZIP tangan pisaungay tu MediaWiki ayza caay kadama sasahicaan.\nla’cus malecek miteka kazahkez mikinsa.", "uploadstash": "patapabaw ku sulu nu pisipetan", "uploadstash-clear": "palamadac tu suped-sulu nu tangan", "uploadstash-nofiles": "inayi’ masupetay a tangan nu misu.", @@ -1353,6 +1432,7 @@ "filehist-comment": "pacunus sakacaay kapawan", "imagelinks": "sakapaluwaluway nu tangan", "linkstoimage": "isasaay {{PLURAL:$1| kasabelih misiket |saka $1 a kasabelih misiket}}katukuh tina tangan:", + "linkstoimage-more": "mangasiw $1 {{PLURAL:$1|kasabelih masasiket}} ta tina tangan.\nisasa’ay piazihan-tu-sulit pasilsil iayaway a dada’ {{PLURAL:$1|1 masasiket|$1 masasiket}} ta tina tangan a kasabelih.\nkapah tu kisu miciwsace [[Special:WhatLinksHere/$2|leku piazihan-tu-sulit]].", "nolinkstoimage": "nayi’ ku kasabelih masasiket katukuh tini a tangan.", "linkstoimage-redirect": "$1 (tangan miliyaw patatuzu’) $2", "sharedupload": "tina tangan namakay $1 satu hakay masaungay nu zuma a cwanan.", @@ -1367,6 +1447,7 @@ "filerevert-legend": "patiku tu tangan", "filerevert-comment": "mahicaay:", "filerevert-defaultcomment": "patiku tuway tayza i $1 $2 ($3) a baziyong", + "filerevert-submit": "patiku", "filerevert-success": "[[Media:$1|$1]] mapatiku ta [$4 i $2 $3 a baziyong ].", "filerevert-badversion": "caay katepa tangan nu nasawniay matuzu’ tu demiad a itiniay baziyong.", "filerevert-identical": "ayzaay baziyong a tangan atu mipili’ay baziyong malecalecad.", @@ -1377,6 +1458,7 @@ "filedelete-submit": "masipu", "filedelete-success": "masipu tu $1.", "filedelete-nofile": "$1 inayi’.", + "filedelete-nofile-old": "inayi’ matepa $1 izaway matuzu’ay a susinay emicen henay baziyong.", "filedelete-otherreason": "zumaay/nicunusay a mahicaay:", "filedelete-reason-otherlist": "zuma a mahicaay", "filedelete-reason-dropdown": "* sawsawni maazih misipuay a mahicaay \n**midebung nisanga’an niza tu tungus a kawaw \n**tangan misaliyaw", @@ -1389,8 +1471,10 @@ "unwatchedpages": "caayay kasisip a kasabelih", "listredirects": "miliyaw patatuzu’ piazihan tu sulit", "listduplicatedfiles": "misaliyaw tu tangan piazihan tu sulit", + "listduplicatedfiles-summary": "tina piazihan tu sulit yamalyilu sabaluhay baziyong a tangan atu zuma tangan misaliyaw a piazihan tu sulit, tina piazihan tu sulit dada’ paazih itiniay a tangan", "unusedtemplates": "caayay kasaungay a taazihan mitudung", "randompage": "kakibalucu’ ay a kasabelih", + "randompage-nopages": "i {{PLURAL:$2|pangangananay a salaedan}} inayi’ amahicahica tu kasabelih: $1.", "randomincategory": "kakibalucu’ kakuniza a kasabelih", "randomincategory-invalidcategory": "\"$1\" caay ku kapahay a kakuniza kalungangan.", "randomincategory-nopages": "ilabu nu [[:Category:$1]] inayi’ amahicahica tu kasabelih.", @@ -1404,6 +1488,7 @@ "statistics-header-users": "misaungayay a sausi cesyun", "statistics-header-hooks": "zuma a sausi", "statistics-articles": "lacul kasabelih", + "statistics-pages": "kasabelih", "statistics-pages-desc": "i Wiki sacahamin a kasabelih, yamalyilu sasukamu kasabelih, miliyaw patatuzau’ kasabelih…", "statistics-files": "mapatapabaw tu a tangan", "statistics-edits": "nay {{SITENAME}} napatizeng katukuh ayza sa kasabelih mikawaway-kalumyiti sulyang", @@ -1417,9 +1502,12 @@ "pageswithprop-prophidden-long": "midimut mangasiw tanaya’ a susin sulyang ($1) tuway", "pageswithprop-prophidden-binary": "madimut tusa-taayaw-eneng susin sulyang ($1)", "doubleredirects": "tusaay a miliyaw patatuzu’", + "double-redirect-fixed-move": "[[$1]] mapahezek tu milimad.\ntina kasabelih malunuk misaimed zumasatu mamiliyaw patatuzau’ tu [[$2]].", + "double-redirect-fixed-maintenance": "i midiput a kawaw sa lunuk misumad tupatibabaay miliyaw patatuzu’ nay [[$1]] katukuh [[$2]].", "double-redirect-fixer": "miliyaw patatuzu’ misumaday", "brokenredirects": "malepi’ ay miliyaw patatuzu’", "brokenredirectstext": "isasa’ miliyaw patatuzu’ kasabelih masasiket a kasabelih inayi’:", + "brokenredirects-edit": "mikawaway-kalumyiti", "brokenredirects-delete": "misipu", "withoutinterwiki": "inayi’ ku kamu masasiket a kasabelih", "withoutinterwiki-summary": "isasa’ay inayi’ masasiket tu zuma kamu baziyong a kasabelih.", @@ -1437,6 +1525,7 @@ "ntransclusions": "$1 {{PLURAL:$1|ku kasabelih}}", "specialpage-empty": "tina aazihen cudad inayi’ amahicahica a heci.", "lonelypages": "masipulu’ a kasabelih", + "lonelypagestext": "isasa’ay a kasabelih caay henay {{SITENAME}} zumaay kasabelih masasiket saca nicaliwan.", "uncategorizedpages": "cayhen kakunizaay a kasabelih", "uncategorizedcategories": "cayhenay kakunizaay a kakuniza", "uncategorizedimages": "cayhen kakunizaay a tangan", @@ -1475,6 +1564,7 @@ "protectedpages-params": "midiput tu aazihen a sulyang", "protectedpages-reason": "mahicaay", "protectedpages-submit": "paazih tu kasabelih", + "protectedpages-unknown-timestamp": "caay kapulita", "protectedpages-unknown-performer": "caay kapulita a misaungayay", "protectedtitles": "madiputay a satangahan", "protectedtitlesempty": "inayi’ pisaungay uyniyay aazihen-sulyang a madiputay satangahan ayza.", @@ -1545,14 +1635,17 @@ "booksources": "nu cudad atu laculaculan", "booksources-search-legend": "mikilim ku cudad atu laculaculan", "booksources-search": "kilim", + "booksources-text": "isasa’ay a piazihan tu sulit yamalyilu zuma pacakay baluhay cudad saca malumanay cudad i calay-kakacawan(wangcan) masasiket, hakay izaw ku kaydihan nu misu a cudad pataayaw matineng tatalaayaway a cesyun.", "booksources-invalid-isbn": "nipabeli nu misu a ISBN caay tatenga’ay; pikinsa kopiay a saangangan mungangaw haw?", "magiclink-tracking-rfc": "pisaungay RFC kaliwaza misasiket kasabelih", "magiclink-tracking-pmid": "masasiketay a kasabelih nu pisaungay PMID kaliwaza tina Wiki mapasatezep tu miliyaw patizeng tu mima", "magiclink-tracking-isbn": "misasiketay a kasabelih nu pisaungay ISBN kaliwaza", "specialloguserlabel": "mileku-misaungayay:", + "speciallogtitlelabel": "pamutekan (satangahan saca {{ns:user}}: misaungayay pakatineng misaungayay):", "log": "nasulitan nakawawan", "logeventslist-submit": "paazih", "all-logs-page": "sacahamin pabinawlan nasulitan nazipa’an", + "alllogstext": "mikabu paazih sacahamin {{SITENAME}} sacahamin nikalahizaan a nasulitan nazipa’an.\nkapah kisu sapecec mutengteng-patasasa’ sakakawawen mapili’ay mipili’ nazipa’an a nikalahizaan, matuzu’ay misaungayay a kalungangan (sawantanen tabakiay atu adidi’ay a sulit) saca malawilaway a kasabelih (sawantanen tabakiay atu adidi’ay a sulit).", "logempty": "inayi’ nasulitan-nazipa’an matatungus tu sakacucek.", "log-title-wildcard": "mikilim satangahan nu nay tina langat-pisinga’an saayaway sulit", "showhideselectedlogentries": "paazih/midimut mapili’ay a nasulitan-nazipa’an a kasacacay", @@ -1606,9 +1699,12 @@ "listgrouprights-removegroup": "misipu {{PLURAL:$2|cyucu}}:$1", "listgrouprights-addgroup-all": "micunus sacahamin a luyaluy", "listgrouprights-removegroup-all": "misipu sacahamin luyaluy", + "listgrouprights-addgroup-self": "i nimisuan a canghaw ilabu’ micunusan {{PLURAL:$2|cacay|yadahay}} luyaluy: $1", + "listgrouprights-removegroup-self": "pasipu canghaw nu misuay {{PLURAL:$2|cacay|yadah}} cyucu: $1", "listgrouprights-addgroup-self-all": "i misuay a canghaw micunus sacahamin a luyaluy", "listgrouprights-removegroup-self-all": "misipu canghaw nu misu sacahamin a cyucu", "listgrouprights-namespaceprotection-header": "pangangananay a salaedan mikelec", + "listgrouprights-namespaceprotection-namespace": "pangangananay a salaedan", "listgrouprights-namespaceprotection-restrictedto": "mahasa misaungayay mikawaway-kalumyiti a tungus", "listgrants": "pabeli tu kinli", "listgrants-rights": "kinli", @@ -1644,6 +1740,7 @@ "emailsent": "mapatahkal tu i imyiyo(email)", "emailsenttext": "patigamitu ku imyiyo(email) palatuh nu misu.", "usermessage-summary": "subelid tu latuh tayza i sisetyimo.", + "usermessage-editor": "sisetyimo palatuh", "watchlist": "miazihay a piazihan tu sulit", "mywatchlist": "miazihay a piazihan tu sulit", "watchlistfor2": "$1 miazihay a piazihan-tu-sulit $2", @@ -1660,9 +1757,13 @@ "unwatchthispage": "pahanhan miazih", "notanarticle": "caay ku lacul nu kasabelih", "notvisiblerev": "sazikuzay nay zuma misaungayay namasumad masipu tuway", + "watchlist-details": "{{PLURAL:$1|miazihay a piazihan-tu-sulit nu misu izaw $1 kasabelih}}(yamalyilu sasukamu kasabelih).", "wlheader-enotif": "mawawah tuway imyiyo(email) patakus sasahicaan.", + "wlheader-showupdated": "i tisuwan sazikuz tu ciwsace sazikuzay misumad tu kasabelih a u kibetulay paazih", + "wlnote": "isasa’ay {{PLURAL:$1|u nazikuzay a sumad|u nazikuzay $1 sumad}} i inazikuzay {{PLURAL:$2|tuki|$2 tuki}}, itawya $3, $4.", "wlshowlast": "paazih capi demaid $1 tuki $2 demiad", "watchlist-hide": "midimut", + "watchlist-submit": "paazih", "wlshowtime": "apaazihay a tuki-tenes:", "wlshowhideminor": "cayka yadah ku misumad", "wlshowhidebots": "kikay a tademaw", @@ -1712,6 +1813,7 @@ "cantrollback": "la’cus patiku mikawaway-kalumyiti;\ntina kasabelih a sazikuz paaninay u kinacacay a masacudaday.", "alreadyrolled": "la’cus patiku nay [[User:$2|$2]] ([[User talk:$2|sasukamu]]{{int:pipe-separator}}[[Special:Contributions/$2|{{int:contribslink}}]] sapihica sazikuzay cacay mikawaway-kalumyiti [[:$1]], izawtu zumaay tatemaw mikawaway-kalumyiti saca patikutu kya kasabelih.)\n\nsazikuzay a cacay mikawaway-kalumyiti kya kasabelih a misaungayay sa ku [[User:$3|$3]] ([[User talk:$3|sasukamu]]{{int:pipe-separator}}[[Special:Contributions/$3|{{int:contribslink}}]]).", "editcomment": "mikawaway-kalumyiti pecu’ nu lacul ku: $1.", + "rollback-success-notify": "mapatiku $1 nikawawan mikawaway-kalumyiti;\nmisumad patiku ta $2 masumad nu ayaway a sazikuz cacay baziyong. [$3 paazih ku masumaday]", "sessionfailure-title": "kasasiket mungangaw", "sessionfailure": "kisu patalabu kasasiketan mahiza simunday,\nsaka pataayaw-milangat kasasiketan maalaw atu madebung, tina saungay mapalawpes tuway.\npitatiku ayaway a kasabelih, miliyaw maasip kya kasabelih pitaneng aca.", "changecontentmodel": "misumad lacul tatudungen misanga’", @@ -1725,12 +1827,17 @@ "changecontentmodel-emptymodels-title": "inayi’ ku silaheciay a lacul tatudungen-misanga", "changecontentmodel-emptymodels-text": "[[:$1]] a lacul akamiliyaw tu amahicahica nikalahizaan.", "log-name-contentmodel": "lacul tatudungen misanga’ misumad nasulitan nazipa’an", + "log-description-contentmodel": "tina kasabelih pasilsil tu kasabelih lacul tatudungen misanga’ sumad misulit atu pisaungay caay pataayaw tu kawaw tu lacul nu tatudungen misanga’ patizeng tu kasabelih", + "logentry-contentmodel-new": "$1 {{GENDER:$2|masaungay tuway}} caay pataayaw tu kawaw a lacul tatudungen misanga’ \"$5\" patizeng kasabelih $3", + "logentry-contentmodel-change-revertlink": "patiku", + "logentry-contentmodel-change-revert": "patiku", "protectlogpage": "midiput nasulitan nakawawan", "protectedarticle": "madiput tuway \"[[$1]]\"", "modifiedarticleprotection": "masumad tuway \"[[$1]]\" a midiput tindud", "unprotectedarticle": "mahulak tu \"[[$1]]\" a diput", "movedarticleprotection": "malimad \"[[$2]]\" a midiput setin tu \"[[$1]]\"", "protectedarticle-comment": "{{GENDER:$2|madiputay}} \"[[$1]]\"", + "modifiedarticleprotection-comment": "{{GENDER:$2|masumad tuway}} \"[[$1]]\" a midiputay a kasaselal", "unprotectedarticle-comment": "{{GENDER:$2|masipu tu }} \"[[$1]]\" a midiput", "protect-title": "misumad \"$1\" a midiputay a tindud", "protect-title-notallowed": "ciwsace \"$1\" a midiput tindud", @@ -1745,6 +1852,7 @@ "protect_expiry_invalid": "la’cusay a kakatekuhan", "protect_expiry_old": "Expiration time is in the past.", "protect-unchain-permissions": "mihulak pamutek yadahay a midiput mapiliay", + "protect-text": "kapah kisu itini miciwsace atu misumad kasabelih $1 a midiput tu kasalaylay.", "protect-default": "mahasa sacahamin misaungayay", "protect-fallback": "mahasa dada’ ku \"$1\" situngusay a misaungayay", "protect-level-autoconfirmed": "mahasa dada’ lunuk malucekay tu misaungayay", @@ -1774,14 +1882,17 @@ "restriction-level-all": "amahicahicaay a kasalelal", "undelete": "ciwsace masipuay tu kasabelih", "undeletepage": "ciwsace atu patiku masipuay tu kasabelih", + "undeletepagetitle": "isasa’ay mala [[:$1|$1]] masipuay tu masumad nu ayaway baziyong.", "viewdeletedpage": "ciwsace masipuay tu kasabelih", "undelete-fieldset-title": "patiku misumad nu ayaway", "undeleterevisions": "$1{{PLURAL:$1|baziyong}}misipu", "undeleterevdel": "amahica sabaluhayay a kasabelih saca tangan masumad nu ayaway masipu tu liyad, a la’cus mileku palawpes misipuay a saungay.\nanumahiza sa kanca mipili’ hatizaay saca palawpes midimut masipuay tu sabaluhay a sumad nu ayaway.", "undelete-revision": "masipu nu $3 a $1 (i $4 $5) masumad nu ayaway", + "undeleterevision-missing": "la’cus saca mahedaw a nisumadan.\nhakay kisu pisaungay tu mungangaway misiket, saca kya amasumad nu ayaway namaemicen patiku saca masipu.", "undelete-nodiff": "inayi’ nasawniay a sumad.", "undeletebtn": "patiku", "undeletelink": "ciwsace/patiku", + "undeleteviewlink": "ciwsace", "undeleteinvert": "kabelihan mipili’", "undeletecomment": "mahicaay:", "cannotundelete": "liyad saca hamin a palawpes misipu mungangaw:\n$1", @@ -1792,6 +1903,7 @@ "undelete-filename-mismatch": "la’cus palawpes misipu tuki sapa $1 a tangan misumad nu ayaway: tangan kalungangan caay matatungus.", "undelete-bad-store-key": "la’cus palawpes masipu tuki ku $1 a tangan masumad nu ayaway: tangan caay henay misipu mahedaw tuway.", "undelete-cleanup-error": "yu misipu caay pisaungay a misinga’ tangan \"$1\" sa mungangaw.", + "undelete-missing-filearchive": "nasulitan-sulu inayi’ay i tangan emicen henay ID $1, la’cus patiku tangan.\nkya tangan hakay mapalawpes tu masipu.", "undelete-error": "palawpes masipu kasabelih mungangaw", "undelete-error-short": "palawpes masipu tangan mungangaw: $1", "undelete-error-long": "imahini palawpes misipu tangan bahal mungangaw:\n\n$1", @@ -1823,6 +1935,7 @@ "sp-contributions-logs": "nasulitan nakawawan", "sp-contributions-talk": "sasukamu", "sp-contributions-blocked-notice": "tina misaungayay malangat tu ayza.\nisasa’ay ku capi demiad malangatay a nasulitan apabeli miazih tu tatenga’ay:", + "sp-contributions-blocked-notice-anon": "tina IP puenengan malangat tuway ayza.\nisasa’ay u capi demiad milangat nazipa’an mamiazih tu tatenga’ay", "sp-contributions-search": "mikilim tu paanin", "sp-contributions-username": "IP puenengan saca misaungayay a kalungangan:", "sp-contributions-toponly": "paazih a cacay sabaluhay masumad nu ayaway a mikawaway-kalumyiti", @@ -1833,6 +1946,7 @@ "whatlinkshere-title": "masasiket tayza \"$1\" a kasabelih", "whatlinkshere-page": "Kasabelih:", "linkshere": "isasaay a kasabelih masasiket tazuma tu [[:$1]]:", + "nolinkshere": "No pages link to [[:$1]].", "nolinkshere-ns": "mapili’ay a pangangananay a salaedan inayi’ kasabelih masasiket tu [[:$1]].", "isredirect": "miliyaw patatuzu’", "istemplate": "palaculen tu kasabelih", @@ -1856,8 +1970,10 @@ "ipb-hardblock": "amana pisaungay tina IP puenengan patalabuay a misaungayay mikawaway-kalumyiti", "ipbcreateaccount": "mitena’ patizeng baluhay canghaw", "ipbemailban": "satezep misaungayay pabahel imyiyo(email)", + "ipbenableautoblock": "lunuk milangat tina misaungayay sazikuz pisaungayan IP puenengan atu sacahamin izikuzay mitanam mikawaway-kalumyiti pisaungayan IP puenengan", "ipbsubmit": "milangat tina misaungayay", "ipbother": "zuma a tatukian:", + "ipboptions": "2 a tuki:2 hours,1 a demiad:1 day,3 a demiad:3 days,1 a lipay:1 week,2 a lipay:2 weeks,1 a lulad:1 month,3 bulad:3 months,6 a bulad:6 months,1 a mihca:1 year, haynisadikud:infinite", "ipbhidename": "mikawaway-kalumyiti ayu piazihan-tu-sulit midimut misaungayay a kalungangan", "ipbwatchuser": "miazih tina misaungayay a misaungayay kasabelih atu sasukamu kasabelih niza", "ipb-disableusertalk": "mitena’ tina misaungayay i malangat a demiad mikawaway-kalumyiti numisuay a sasukamu kasabelih", @@ -1867,6 +1983,7 @@ "blockipsuccesssub": "milangat malahci", "ipb-blockingself": "amilangat tu kisu haw! malucek kisu amahiza haw?", "ipb-confirmhideuser": "amilangat kisu cacay a misaungayay zumasatu \"midimut\" kya misaungayay, apasatezep paazih sacahamin patahkal i piazihan-tu-sulit atu ibalu nu nasulitan a misaungayay a kalungangan.\ntatenga’ kisu ahatizaan haw?", + "ipb-confirmaction": "anu malucekay hinien mahica asa kisu, kapikinsa tu isasa’ay \"{{int:ipb-confirm}}\" langat-pisinga’an.", "ipb-edit-dropdown": "malangat a mahicaay nu mikawaway-kalumyiti", "ipb-unblock-addr": "mihulak tu langat $1", "ipb-unblock": "mihulak malangat misaungayay a kalungangan saca IP puenengan", @@ -1874,10 +1991,12 @@ "ipb-blocklist-contribs": "{{GENDER:$1|$1}} a paanin", "ipb-blocklist-duration-left": "$1 pakawili", "unblockip": "mihulak malangat misaungayay", + "unblockiptext": "pisaungay isasa’ay a aazihan cudad apatiku nuayaw malangatay a IP puenengan saca misaungayay a kalungangan a suliten misuped-miala.", "ipusubmit": "misipu tina langat", "unblocked": "[[User:$1|$1]] a langat mahulak tuway.", "unblocked-range": "mahulak tu ku langat $1.", "unblocked-id": "misipu tuway $1 a langat.", + "unblocked-ip": "[[Special:Contributions/$1|$1]] mahulak ku langat tuway.", "blocklist": "malangatay tu a misaungayay", "autoblocklist-submit": "kilim", "ipblocklist": "malangatay tu a misaungayay", @@ -1912,6 +2031,7 @@ "autoblocker": "IP nu misu puenengan izay capi demiad pasaungay ni [[User:$1|$1]] sisa lunuk malangat.\nmilangat $1 a mahicaay ku \"$2\"", "blocklogpage": "milangat tu nasulitan nakawawan", "blocklog-showlog": "tina misaungayay nasawniay malangat tuway.\nisasa’ay ku malangatay a kiluk sapaazih tu tatenga’ay:", + "blocklog-showsuppresslog": "tina misaungayay nasawniay malangat zumasatu midimut.\nisasa’ay sa u satezep paazih kiluk amiazih tu tatenga’ay", "blocklogentry": "malangat [[$1]] a kakatukuhan i $2 $3", "reblock-logentry": "misumad [[$1]] a langat kakatukuhan katukuh $2 $3", "unblocklogentry": "mahulak malangat $1 tuway", @@ -1966,6 +2086,7 @@ "move-watch": "miazih katahkalan atu nabalucu’ kasabelih", "movepagebtn": "milimad kasabelih", "pagemovedsub": "milimad malaheci tuway", + "movepage-moved": " malimad tuway \"$1\" ta \"$2\"", "movepage-moved-redirect": "patizeng miliyawtu patatuzu’ kasabelih tuway.", "movepage-moved-noredirect": "palawpes tuway patizeng miliyaw patatuzu’ kasabelih.", "articleexists": "kya kasabelih kalungangan izaw tu, saca napili’ay a kalungangan nu misu la’cus.\npipili’ zuma kalunganga.", @@ -1980,8 +2101,11 @@ "movelogpagetext": "isasa’ay sa u sacahamin milimad kasabelih a saungay nasulitan piazihan-tu-sulit.", "movesubpage": "{{PLURAL:$1|sailuc-kasabelih}}", "movesubpagetext": "tina kasabelih izaw $1 {{PLURAL:$1|sailuc-kasabelih}} mahiza isasa’ay.", + "movesubpagetalktext": "patatapalen a sasukamu kasabelih izaw isasa’ay $1 belih{{PLURAL:$1|sailuc-kasabelih}}", "movenosubpage": "tina kasabelih inayi’ amahicahica tu sailuc-kasabelih.", "movereason": "mahicaay:", + "revertmove": "patiku", + "delete_and_move_text": "papatuzu’an a kasabelih \"[[:$1]]\" izaw tuway.\nmaydih kisu misipu tu kasabelih i pahezek milimad?", "delete_and_move_confirm": "hang, masipu tina kasabelih", "delete_and_move_reason": "masipu tuway kya namakay [[$1]] kasabelih kapah milimad", "immobile-source-namespace": "la’cus milimad i pangangananay a salaedan \"$1\" a kasabelih.", @@ -1997,6 +2121,8 @@ "fix-double-redirects": "misabaluh sacahamin patatuzu’ nuayaway a satangahan miliyaw patatuzu’ kasabelih", "move-leave-redirect": "miliwan miliyaw patatuzu’ kasabelih", "semiprotectedpagemovewarning": " azihen: tina kasabelih madiput tuway, u mapanganganay a misaungayay dada’ kapah milimad. \nisasa’ sa, pabeli capi demiad a nasulitan nazipa’an kya kapah miazih tu tatenga’ay:", + "move-over-sharedrepo": "[[:$1]] mamueneng tu i kapulungan tangan-sulu, u tangan a milimad tayni satangahan a mitahpu tu kapulungan tangan.", + "file-exists-sharedrepo": "mipili’ay a tangan kalungangan i kapulungan tangan-sulu masaungay tu ku zuma tangan.\npipili’en ku zuma a kalungangan.", "export": "patahkal ku kasabelih", "exporttext": "kapah kisu patahkal matuzu’ay kasabelih saca kayadah belih a sulit atu mikawaway-kalumyiti nazipa’an, pisaungay XML kese a tabu.\nuyniyay tangan kapah pacumud ta zuma pisaungay MediaWiki a Wiki, micaliw [[Special:Import|pacumud kasabelih]].\n\napatahkal kasabelih, isasa’ nu sulit atilad misulit kasabelih pyawti, cacay pyawti pisaungay cacay tusil, zumasatu pipili’ apatahkal ayzaay a sumad yamalyilu haw sacahamin nazipa’an masumad nu ayaway nasulitan, saca patahkal dada’ ayzaay a sumad atu sazikuzay mikawaway-kalumyiti a cesyun。\n\ni sulit atilad kapah tu kisu pisaungay masasiket, tinaku:[[{{#Special:Export}}/{{MediaWiki:Mainpage}}]] dayhiw patahkal kasabelih \"[[{{MediaWiki:Mainpage}}]]\"", "exportall": "patahkal sacahamin kasabelih", @@ -2036,6 +2162,7 @@ "thumbnail_image-type": "caypi damaenay a zunga nikalahizaan", "thumbnail_gd-library": "caay pahezek GD setin: caay kataneng hansu-sausi $1", "thumbnail_image-missing": "tangan mahedaw: $1", + "thumbnail_image-failure-limit": "capi demiad paazih tina sukep tu zunga pinapian tuway mungangaw ($1 saca yadah ), pisawsawni teneng aca.", "import": "pacumuden kasabelih", "importinterwiki": "nay zuma wiki pacumud", "import-interwiki-sourcewiki": "saangangan Wiki:", @@ -2058,6 +2185,7 @@ "importcantopen": "la’cusay miwawah pacumuday a tangan", "importbadinterwiki": "la’cusay a interwiki masasiket", "importsuccess": "pahezek tuway pacumud!", + "importnosources": "caay satetek amahicahica mapacumuday a wiki saangangan zumasatu maedeben pisaungay nazipa’an nasulitan patapabaw sasahicaan.", "importnofile": "caay henay papabaw pacumud tangan.", "importuploaderrorsize": "patapabaw pacumud tangan mungangaw.\ntangan hacica-tabaki mangasiw mahasa patapabaw hacica-tabaki.", "importuploaderrorpartial": "patapabaw pacumud tu tangan mungangaw.\npatapabaw dada’ liyad a tangan.", @@ -2070,8 +2198,10 @@ "import-invalid-interwiki": "amana pacumud nay matuzu’ay a Wiki.", "import-error-edit": "inayi’ tungus kisu mikawaway-kalumyiti kasabelih \"$1\", la’cus micumud", "import-error-create": "inayi’ tungus kisu patizeng kasabelih \"$1\", la’cus micumud.", + "import-error-interwiki": "kasabelih \"$1\" kalungangan maliwan hizantu mala hekalay masasiket (interwiki) pisaungay, la’cus pacumud.", "import-error-special": "kasabelih \"$1\" tungusay nu caay mahasa kasabelih a sazumaay azihen pangangananay a salaedan, la’cus pacumud.", "import-error-invalid": "kasabelih \"$1\" pacumud tina Wiki a kalungangan la’cus, la’cus pacumud.", + "import-options-wrong": "{{PLURAL:$2|mapili’ay}} mungangaw: $1", "import-rootpage-invalid": "matuzu’ay a limit-kasabelih satangahan la’cus.", "import-rootpage-nosubpage": "pangangananay a salaedann \"$1\" a lamit kasabelih caay mahasa sailuc-kasabelih", "importlogpage": "pacumuden nasulitan nazipa’an", @@ -2080,6 +2210,7 @@ "import-logentry-interwiki-detail": "nay $2 pacumud tu $1 {{PLURAL:$1|masumad nu ayaway}}", "javascripttest": "JavaScript mitanam", "javascripttest-pagetext-unknownaction": "caykapulitay saungay \"$1\"", + "javascripttest-qunit-intro": "piazih tu tatenga’ay mediawiki.org a [$1 mitanam buhci tu kamu cudad].", "tooltip-pt-userpage": "{{GENDER:|misaungayay nu misu}} kasabelih", "tooltip-pt-anonuserpage": "imahini kisu ku isasa’ay a kika mikawaway-kalumyiti tina IP puenengan a misaungayay kasabelih.", "tooltip-pt-mytalk": "{{GENDER:|misuay }}sasukamu a kasabelih", @@ -2150,10 +2281,13 @@ "tooltip-undo": "\"patiku\" kapah tu patiku tuyni mikawaway tu kalumyiti payni pataayaway miazih muse miwawah mikawaway tu kalumyiti aazihan cudad, saka caay cayaw nu labu micunus mahicaay.", "tooltip-preferences-save": "pisuped tu setin nu kanamuhan", "tooltip-summary": "kapisulitan apuyu’ay a pecu’ nu lacul", + "anonymous": "{{SITENAME}} a paceba pangangan {{PLURAL:$1|misaungayay}}", "siteuser": "{{SITENAME}} misaungayay $1", "anonuser": "{{SITENAME}} paceba panganganay a misaungayay $1", "othercontribs": "tina kasabelih nay $1 sapaanin.", "others": "zuma", + "siteusers": "{{SITENAME}} {{PLURAL:$2|misaungayay}} $1", + "anonusers": "{{SITENAME}} paceba pangangan {{PLURAL:$2|misaungayay}} $1", "creditspage": "kasabelih kasakumi nu misayingaay", "nocredits": "tina kasabelih inayi’ kasakumi nu misayingaay cesyun.", "spamprotectiontitle": "misapili’ a cengse nu babakahen a sulit", @@ -2186,6 +2320,7 @@ "pageinfo-few-visiting-watchers": "miazih capi demiad mikawaway-kalumyiti a misaungayay hakay ku miazihay a misaungayay.", "pageinfo-redirects-name": "patuzu’ tina kasabelih a miliyaw patatuzu’ kasabelih nikayadah", "pageinfo-subpages-name": "tina belih a sailuc-kasabelih nikayadah", + "pageinfo-subpages-value": "$1 ($2 ke{{PLURAL:$2|miliyaw patatuzau’}}; $3 {{PLURAL:$3|caay piliyaw patatuzau’}})", "pageinfo-firstuser": "kasabelih patizengay", "pageinfo-firsttime": "patizeng demiad nu kasabelih", "pageinfo-lastuser": "capiay a mikawaway-kalumyiti", @@ -2238,6 +2373,7 @@ "filedelete-archive-read-only": "calay-belih(wangyi) sefu-kikay inayi’ malangat-misupet dilyikotoling \"$1\" suliten a tungus.", "previousdiff": "← malumanay a mikawaway tu kalumyiti", "nextdiff": "baluhayay mikawaway tu kalumyit →", + "imagemaxsize": "zunga pinalu hacica tabaki kelec:
(saungay i tangan sapuelac kasabelih)", "thumbsize": "sukep tu zunga hacica-tabaki:", "widthheightpage": "$1 × $2, $3 {{PLURAL:$3|ku kasabelih}}", "file-info": "tangan hacica-tabaki: $1, MIME nikalahizaan: $2", @@ -2255,6 +2391,7 @@ "file-info-gif-looped": "palalacalen", "file-info-gif-frames": "$1 {{PLURAL:$1|kulit sapat}}", "file-info-png-frames": "$1 {{PLURAL:$1|kulit sapat}}", + "file-no-thumb-animation": "azihen: kyu sitaneng mikelec, tina tangan sukep tu zunga nayi’ ku laheci nu tunghwa", "newimages": "baluhay tangan a sulu nu zunga", "newimages-summary": "uyni sazumaay a kasabelih paazih sabaluhay patapabaw a tangan", "newimages-legend": "kilim", @@ -2487,6 +2624,7 @@ "exif-exposureprogram-7": "muse nu tademaw sasing (sapiicapiay a sasing,sanat inayi’ itada)", "exif-exposureprogram-8": "makaazihay muse (i makaazihay a sasing,paedil-sanat i zikuz)", "exif-subjectdistance-value": "$1 mi", + "exif-meteringmode-0": "caay kapulita", "exif-meteringmode-1": "lalet", "exif-meteringmode-2": "pikuwanan pacunus lalet", "exif-meteringmode-3": "baniyut-ditek", @@ -2494,6 +2632,7 @@ "exif-meteringmode-5": "muse", "exif-meteringmode-6": "liyad", "exif-meteringmode-255": "zuma", + "exif-lightsource-0": "caay kapulita", "exif-lightsource-1": "likat", "exif-lightsource-2": "inkwang a tinghuy", "exif-lightsource-3": "useteng-tinghuy", @@ -2555,6 +2694,7 @@ "exif-sharpness-0": "tatungus", "exif-sharpness-1": "pu’nel", "exif-sharpness-2": "takalaw", + "exif-subjectdistancerange-0": "caay kapulita", "exif-subjectdistancerange-1": "ciyuci", "exif-subjectdistancerange-2": "pakatepalay a azih", "exif-subjectdistancerange-3": "pakabatatay a azih", @@ -2628,9 +2768,11 @@ "confirmemail_invalidated": "palawpes tu imyiyo(email) puenengan palucekay", "invalidateemail": "palawpes imyiyo(email) malucekay tuway", "notificationemail_subject_changed": "{{SITENAME}} panganganay a imyiyo(email) puenengan masumad tuway", + "scarytranscludedisabled": "[Interwiki miliyaw kodo caay ka saungayen]", "scarytranscludefailed": "[taazihan-mitudung $1 maasip mungangaw]", "scarytranscludefailed-httpstatus": "[taazihan-mitudung $1 maasip mungangaw: HTTP $2]", "scarytranscludetoolong": "[URL tada tanayu’]", + "deletedwhileediting": " patalaw:tinakasabelih i kisuwan miteka mikawaway-kalumyiti nazikuzan a masipu!", "recreate": "miliyaw miteka patizeng", "confirm-purge-title": "misipu tina kasabelih", "confirm_purge_button": "malucekay", @@ -2664,9 +2806,11 @@ "autoredircomment": "kasabelih miliyaw patatuzu’ tu [[$1]]", "autosumm-new": "napatizeng tu kasabelih, lacul ku \"$1\"", "autosumm-newblank": "patizeng nayi’ ku cacan a kasabelih", + "lag-warn-normal": "tina piazihan tu sulit hakay caay paazih tu macapiay demiad $1 {{PLURAL:$1| widi}}labu’ay a sumad.", "watchlistedit-normal-title": "miazihay a piazihan tu sulit nu mikawaway-kalumyiti", "watchlistedit-normal-legend": "nay miazihay a piazihan-tu-sulit misipu satangahan", "watchlistedit-normal-submit": "misipu satangahan", + "watchlistedit-normal-done": "masipu tuway nay miazihay a piazihan-tu-sulit nu misu {{PLURAL:$1|$1}} satangahan", "watchlistedit-raw-title": "mikawaway-kalumyiti saayaway misisip a piazihan-tu-sulit", "watchlistedit-raw-submit": "misabaluhay misisip tu piazihan-tu-sulit", "watchlistedit-raw-done": "misabaluh tuway miazihay a piazihan-tu-sulit nu misu.", @@ -2739,6 +2883,7 @@ "fileduplicatesearch-summary": "sausi macamel-sulyang (Hash) amikilim misaliyaway a tangan.", "fileduplicatesearch-filename": "kalungangan nu tangan:", "fileduplicatesearch-submit": "kilim", + "fileduplicatesearch-info": "$1 × $2 syangsu
tangan pinalu’ hacica tabaki’: $3
MIME nikalahizaan: $4", "fileduplicatesearch-result-1": "tangan $1 inayi’ misaliyaw tu tangan.", "fileduplicatesearch-result-n": "tina tangan \"$1\" izaw {{PLURAL:$2|1 malecad misaliyaw|$2 malecad misaliyaw}}.", "fileduplicatesearch-noresults": "inayi’ ku kalungangan nu \"$1\" a tangan.", @@ -2780,6 +2925,7 @@ "tags-deactivate": "mapasatezep", "tags-hitcount": "$1 {{PLURAL:$1|misumad}}", "tags-manage-no-permission": "inayi’ tungus kisu mikuwan numisumad aazihen a paya.", + "tags-manage-blocked": "la’cus kisu i {{GENDER:$1|kisu}} malangat a demiad sanay mikuwan misumaday a aazihen-paya.", "tags-create-heading": "patizeng baluhay aazihen a paya", "tags-create-explanation": "i pataayaw tu kawaw a pulita sa, baluhay patizengay a aazihen-paya kapah masaungayay atu kikay-tademaw pisaungay.", "tags-create-tag-name": "aazihen a paya kalungangan:", @@ -2788,6 +2934,7 @@ "tags-create-no-name": "manakanca kisu matuzu’ay cacay aazihen a paya kalungangan.", "tags-create-invalid-title-chars": "aazihen-paya kalungangan caay yamalyilu la’cus misaungayay kasabelih satangahan a tatebanan-nisulitan", "tags-create-already-exists": "aazihen a paya \"$1\" izaw tu.", + "tags-create-warnings-above": "mitanam patizeng aazihen-paya \"$1\" tatukian mahica isasa’ {{PLURAL:$2|patalaw}}:", "tags-create-warnings-below": "apalalid patizeng aazihen a paya kisu haw?", "tags-delete-title": "misipu tu aazihen a paya", "tags-delete-explanation-initial": "imahini amisipu kisu tu aazihen-paya \"$1\" nay kalunasulitan-sulu.", @@ -2796,6 +2943,7 @@ "tags-delete-submit": "la’cus palawpes misipu tina aazihen a paya", "tags-delete-not-allowed": "la’cus misipu nay sacunus misaheciay a aazihen-paya, anu... kya sacunus mahasa tuway", "tags-delete-not-found": "aazihen a paya \"$1\" inayi’.", + "tags-delete-warnings-after-delete": "aazihen-paya \"$1\" masipu tuway, nika matahkal isasa’ {{PLURAL:$2|patalaw}}", "tags-delete-no-permission": "inayi’ tungus masipu aazihen a paya kisu.", "tags-activate-title": "miteka aazihen a paya", "tags-activate-question": "amiteka kisu tu aazihen a paya \"$1\".", @@ -2808,13 +2956,21 @@ "tags-deactivate-reason": "mahicaay:", "tags-deactivate-not-allowed": "la’cus mapasatezep aazihen a paya \"$1\".", "tags-apply-no-permission": "inayi’ tungus kisu papulung nu misuay a sumad caedung aazihen-paya.", + "tags-apply-blocked": "la’cus kisu i {{GENDER:$1|kisu}} malangat tu sa caedung misumad aazihen-paya nu misu a sumad.", "tags-apply-not-allowed-one": "caay mahasa lima-saungay caedung aazihen-paya \"$1\".", + "tags-apply-not-allowed-multi": "caay mahasa lima-saungay caedung isasa’ay {{PLURAL:$2|aazihen-paya}}:$1", "tags-update-no-permission": "inayi’ tungus kisu micunus atu misipu amahicahica tu akuakuay a masumad nu ayaway atu nasulitan nazipa’an kasacacay a aazihen-paya.", + "tags-update-blocked": "la’cus kisu i {{GENDER:$1|kisu}} malangatay a demiad sanay misipu masumaday a aazihen-paya.", "tags-update-add-not-allowed-one": "caay mahasa lima-saungay pacunus aazihen-paya \"$1\".", + "tags-update-add-not-allowed-multi": "caay mahasa lima-saungay micunus isasa’ay {{PLURAL:$2|aazihen-paya}}:$1", "tags-update-remove-not-allowed-one": "caay mahasa lima-saungay misipu aazihen-paya \"$1\".", + "tags-update-remove-not-allowed-multi": "caay mahasa lima-saungay misipu isasa’ay {{PLURAL:$2|aazihen-paya}}:$1", "tags-edit-title": "aazihen a paya mikawaway-kalumyiti", "tags-edit-manage-link": "aazihen a paya nu kuwan", + "tags-edit-revision-selected": "mapili’ tuway [[:$2]] tebanay{{PLURAL:$1|cacayay|yadahay}} masumad nu ayaway", "tags-edit-logentry-selected": "mapili’ {{PLURAL:$1|cacay|yadah}} nasulitan nazipa’an saungay nu binawlan.", + "tags-edit-revision-legend": "micunus saca misipu tina aazihen-paya nay {{PLURAL:$1|tina masumad nu ayaway|hamin $1 ku masumad nu ayaway}}", + "tags-edit-logentry-legend": "micunus saca misipu tina aazihen-paya maka {{PLURAL:$1|tina nasulitan nazipa’an kasacacay|sacahamin $1 ku nazipa’an kasacacay}}", "tags-edit-existing-tags": "izaway tu a taazihen-paya:", "tags-edit-existing-tags-none": "inayi’", "tags-edit-new-tags": "baluhay aazihen a paya:", @@ -2825,6 +2981,7 @@ "tags-edit-chosen-no-results": "inayi’ aazihen a paya matatungus sakacucek", "tags-edit-reason": "mahicaay:", "tags-edit-revision-submit": "caedung kya sumad katukuh i {{PLURAL:$1|tina misumad nu ayaway|$1 masumad nu ayaway}}", + "tags-edit-logentry-submit": "caedung sumad ta {{PLURAL:$1|tina nazipa’an kasacacay|$1 nasulitan nazipa’an kasacacay }}", "tags-edit-success": "macaedung tu ku sasumad.", "tags-edit-failure": "misumad la’cus micaedung:\n$1", "tags-edit-nooldid-title": "la’cusay a pamutekan masumad nu ayaway", @@ -2867,6 +3024,8 @@ "htmlform-date-placeholder": "YYYY-MM-DD", "htmlform-time-placeholder": "HH:MM:SS", "htmlform-datetime-placeholder": "YYYY-MM-DD HH:MM:SS", + "htmlform-date-invalid": "matuzu’ kisu a sulyang caay kakapah ku taazihan a demiad, pitanam misaungay YYYY-MM-DD kese", + "htmlform-time-invalid": "matuzu’ay a sulyang nu misu caay kacacay kapah taazihan a tuki, pitanam misaungay HH:MM:SS kese", "htmlform-date-toolow": "matuzu’ay a sulyang nu misu mahasaay a demiad i ayaw nu $1.", "htmlform-date-toohigh": "matuzu’ay a sulyang i zikuz nu mahasaay a demiad $1.", "htmlform-time-toolow": "namatuzu’ kisu a sulyang i ayaw nu saayaw mahasa a tuki $1.", @@ -2877,11 +3036,17 @@ "htmlform-title-not-creatable": "\"$1\" amana patizeng kasabelih a satangahan", "htmlform-title-not-exists": "$1 inayi’", "htmlform-user-not-exists": "$1 inayi’", + "htmlform-user-not-valid": "$1 caay kakapahay a misaungayay a kalungangan.", "logentry-delete-delete": "$1 {{GENDER:$2|masiputu}} kasabelih $3", + "logentry-delete-delete_redir": "$1 micaliw ku miliyaw misulit {{GENDER:$2|masipu tu}} miliyaw patatuzu’ $3", "logentry-delete-restore": "$1{{GENDER:$2|patiku}} kasabelih $3($4)", "restore-count-files": "{{PLURAL:$1|1 tangan}}", "logentry-delete-event": "ilabu nu $1 {{GENDER:$2|masumad tuway}} $3 {{PLURAL:$5|1 nazipa’an|$5 nasulitan nazipa’an}} a maazihay:$4", + "logentry-delete-revision": "ilabu nu $1 {{GENDER:$2|masumad tuway}} $3 {{PLURAL:$5|1 nazipa’an|$5 nasulitan nazipa’an}} a maazihay:$4", + "logentry-delete-revision-legacy": "$1 {{GENDER:$2|masumad tuway}} kasabelih $3 masumad nu ayaway a maazihay", "logentry-suppress-delete": "$1 {{GENDER:$2|misatezep paazih tuway}} kasabelih $3", + "logentry-suppress-event-legacy": "$1 {{GENDER:$2|milimekan misumad}} $3 nasulitan nazipa’an a maazihay", + "logentry-suppress-revision-legacy": "$1 {{GENDER:$2|masumad tu}} kasabelih $3 labu’ masumad nu ayaway a maazihay", "revdelete-content-hid": "madimut tu ku lacul", "revdelete-summary-hid": "madimut mikawaway-kalumyiti pecu’ nu lacul", "revdelete-uname-hid": "midimut misaungayay a kalungangan", @@ -2890,22 +3055,36 @@ "revdelete-uname-unhid": "palawpes midimut misaungayay a kalungangan", "revdelete-restricted": "caedung mikuwanay a kelec tuway", "revdelete-unrestricted": "masipu tu ku mikuwanay a kelec", + "logentry-block-unblock": "$1 {{GENDER:$2|mahulaktu ku langat}} {{GENDER:$4|$3}}", "logentry-import-upload": "$1 nay tangan patapabaw {{GENDER:$2|pacumud}} $3", "logentry-import-upload-details": "$1 pisaungay tangan patapabaw tuway {{GENDER:$2|pacumud}} $3 ($4 {{PLURAL:$4| misumad nu ayaway}})", + "logentry-import-interwiki": "$1 namakay zuma wiki {{GENDER:$2|pacumud}} $3", + "logentry-merge-merge": "$1 pala $3 {{GENDER:$2|mikabu}} ta $4 (masumad nu ayaway baziyong ta $5)", "logentry-move-move": "$1 {{GENDER:$2|milimad tuway}} kasabelih $3 katukuh $4", + "logentry-move-move-noredirect": "$1 {{GENDER:$2|malimad tuway}} kasabelih $3 katukuh $4, caay pisubelid miliyaw patatuzau’", "logentry-move-move_redir": "$1 malimad kasabelih $3 tu $4 zumasatu mitahpu nuayaway miliyaw patatuzau’", + "logentry-patrol-patrol": "$1 {{GENDER:$2|mapasilusi}} kasabelih $3 a sumad $4 ku mapatayza tu mikibi", + "logentry-patrol-patrol-auto": "$1 malunuk tu {{GENDER:$2| silusi }} kasabelih $3 sumad $4 apatayza mikibi tu.", "logentry-newusers-newusers": "{{GENDER:$2|patizeng}} misaungayay canghaw tuway $1", "logentry-newusers-create": "{{GENDER:$2|patizeng}} misaungayay canghaw tuway $1", "logentry-newusers-create2": "$1 {{GENDER:$2|mapatizeng tu}} misaungayay canghaw $3", + "logentry-newusers-byemail": "$1 {{GENDER:$2|mapatizeng tu}} misaungayay canghaw $3 atu u imyiyo(email) sapatakus a mima", "logentry-newusers-autocreate": "lunuk {{GENDER:$2|patizeng}} misaungayay a canghaw $1", + "logentry-protect-move_prot": "$1 {{GENDER:$2|malimad tuway}} midiput setin nay $4 ta $3", "logentry-protect-unprotect": "$1 {{GENDER:$2|masipu tuway}} $3 a midiput", "logentry-protect-protect": "$1 {{GENDER:$2|madiput tuway}} $3 $4", + "logentry-protect-protect-cascade": "$1 {{GENDER:$2|madiput}} $3 $4 [patatusul]", + "logentry-protect-modify": "$1 {{GENDER:$2|masumad tuway}} $3 a midiputay a kasaselal $4", + "logentry-protect-modify-cascade": "$1 {{GENDER:$2|masumad tuway}} $3 a midiputay tu kasatindud $4 [patatusul]", "logentry-rights-rights": "$1 {{GENDER:$2|masumad tuway}} {{GENDER:$6|$3}} a luyaluy tatungus sakawaway nay $4 mala $5", + "logentry-rights-autopromote": "$1 malunuk {{GENDER:$2|pacakat}} nay $4 mala $5", "logentry-upload-upload": "$1 {{GENDER:$2|masayacay tuway}} $3", "logentry-upload-overwrite": "$1 {{GENDER:$2|patapabaw tuway}} baluhay baziyong a $3", "logentry-upload-revert": "$1 {{GENDER:$2|masayacay tuway}} $3", "log-name-managetags": "tazihan-paya kuwan tu nasulitan", "logentry-managetags-create": "$1 {{GENDER:$2|mapatizeng yuway}} aazihen-paya \"$4\"", + "logentry-managetags-activate": "$1 {{GENDER:$2|misaungay tuway}} aazihen-paya \"$4\" pabeli tu misaungayay atu kikay-tademaw pisaungay", + "logentry-managetags-deactivate": "$1 {{GENDER:$2|mapasatezep tuway}} aazihen-paya \"$4\" pabeli misaungayay atu kikay-tademaw pisaungay", "log-name-tag": "aazihen a paya nasulitan nazipa’an", "logentry-tag-update-remove-revision": "$1 {{GENDER:$2|masipu tuway}} {{PLURAL:$9|aazihen-paya}} $8 nay kasabelih $3 sumad $4.", "logentry-tag-update-remove-logentry": "$1 {{GENDER:$2|masipu tuway}} {{PLURAL:$9|aazihen-paya}} $8 nay nasulitan nazipa’an kasacacay $3 a sumad $5.", @@ -2913,6 +3092,7 @@ "rightslogentry-temporary-group": "$1 (nanunuz, katukuh $2)", "feedback-adding": "imahini micunus nabalucu’ hwidubaku tayza kasabelih...", "feedback-back": "tatiku", + "feedback-bugcheck": "kapah! kinsaen nabalucu’an nu misu mapasilsil tu [$1 matinengay a munday] haw?", "feedback-bugnew": "makinsa tu kaku. patubeli baluhay a munday", "feedback-cancel": "palawpes", "feedback-close": "malahecitu", @@ -2939,6 +3119,7 @@ "duration-seconds": "$1 {{PLURAL:$1|a beti}}", "duration-minutes": "$1 {{PLURAL:$1|widi}}", "duration-hours": "$1 {{PLURAL:$1|tuki}}", + "duration-days": "$1 {{PLURAL:$1|a demiad}}", "duration-weeks": "$1 {{PLURAL:$1|a lipas}}", "duration-years": "$1 {{PLURAL:$1|a mihca}}", "duration-decades": "$1{{PLURAL:$1|0 a mihca}}", @@ -2985,10 +3166,13 @@ "action-pagelang": "misumad kasabelih a kamu", "log-name-pagelang": "kamu misumad a nasulitan nazipa’an", "log-description-pagelang": "tina kasabelih sa ku kasabelih kamu sumad nasulitan-nazipa’an.", + "logentry-pagelang-pagelang": "$1 {{GENDER:$2|masumad tuway}} kasabelih $3 kamuay tayza $4 katukuh $5", "default-skin-not-found": "ayah! kisu i $wgDefaultSkin misetinay a Wiki pataayaw tu kawaw nuhekalan $1 la’cus pisaungay.\n\nnilacul laylay nu misu kanca yamalyilu isasa’ay a {{PLURAL:$4| nuhekalan}}. piazih tu tatenga’ay [https://www.mediawiki.org/wiki/Manual:Skin_configuration misaungay a cudad: nuhekalan a setin] kya maala hicaen {{PLURAL:$4|miwawah nuhekalan zumasatu misetin pataayaw tu kawaw sulyang}}a cesyun .\n\n$2\n\n; amahica kisu nasawni milacul tuway MediaWiki:\n: hakay kisu ku pisaungay git saca kakilul micaliw yuensma-kodo pisaungay zuma sakaluk milacul, u malecekay tina pulita。pitanam milacul [https://www.mediawiki.org/wiki/Category:All_skins mediawiki.org a nuhekalan dilyikotoling] a liyad nuhekalan pisaungay isasa’ay a sasakawawen:\n:* patasasa’ [https://www.mediawiki.org/wiki/Special:MyLanguage/Download tarball milacul cengse], kya cengse yamalyilu yadahay nuhekalan atu sacunus. kapah kisu kopi atu mizepit i skins/dilyikotoling. \n:* nay [https://www.mediawiki.org/wiki/Special:SkinDistributor mediawiki.org] patasasa’ tekeday a nuhekalan tarball.\n:* [https://www.mediawiki.org/wiki/Download_from_Git#Using_Git_to_download_MediaWiki_skins pisaungay Git patasasa’ nuhekalan].\n: amahica kisu ku MediaWiki a saayaway miteka a misakakawaway,mahizaay kanca caay lawilawnumisuay a git suped-sulu.\n\n; amahica kisu nasawni pacakat MediaWiki:\n: MediaWiki 1.24 atu sasutili’ay baluhayay a baziyong caaytu lunuk miwawah malacul tu nuhekalan (piazih tu tatenga’ay [https://www.mediawiki.org/wiki/Manual:Skin_autodiscovery misaungay a cuad: nuhekalan lunuk mikilim]). kapah kisu isasa’ {{PLURAL:$5|silsil}}pazepit i LocalSettings.php ngay miwawah {{PLURAL:$5| sacahamin }} ayzasa malacul tuway a {{PLURAL:$5|nuhekalan}}:\n\n
$3
\n\n; amahica kisu nasawni misumad LocalSettings.php:\n: pisaliyaw milucek kisu misulit a nuhekalan kalungangan mungangaw haw?", "default-skin-not-found-no-skins": "ayah! kisu i $wgDefaultSkin misetinay a Wiki pataayaw tu kawaw nuhekalan $1 la’cus pisaungay.\n\ncaay milacul kisu amahicahica a nuhekalan.\n\n; amahica kisu nasawni milacul tuway saca pacakat tuway MediaWiki:\n: hakay kisu ku pisaungay git saca kakilul micaliw yuensma-kodo pisaungay zuma sakaluk milacul, u malecekay tina pulita. MediaWiki 1.24 saca sasutili’ay baluhayay a baziyong i angangan suped-sulu caay yamalyilu amahicahica a nuhekalan. pitanam milacul [https://www.mediawiki.org/wiki/Category:All_skins mediawiki.org a nuhekalan dilyikotoling] a liyad nuhekalan pisaungay isasa’ay a sasakawawen:\n:* patasasa’ [https://www.mediawiki.org/wiki/Special:MyLanguage/Download tarball milacul cengse], kya cengse yamalyilu yadahay nuhekalan atu sacunus. kapah kisu kopi atu mizepit i skins/dilyikotoling.\n:* nay [https://www.mediawiki.org/wiki/Special:SkinDistributor mediawiki.org] patasasa’ tekeday a nuhekalan tarball.\n:* [https://www.mediawiki.org/wiki/Download_from_Git#Using_Git_to_download_MediaWiki_skins pisaungay Git patasasa’ nuhekalan].\n: amahica kisu ku MediaWiki a saayaway miteka a misakakawaway, mahizaay kanca caay lawilawnumisuay a git suped-sulu。piazih tu tatenga’ay [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Skin_configuration misaungay a cudad: nuhekalan setin] ngay maala hicaen miwawah nuhekalan zumasatu misetin pataayaw tu kawaw sulyang a cesyun.", "default-skin-not-found-row-enabled": "* $1 / $2 (mawawah tu)", "mediastatistics": "myiti sausi cesyun", + "mediastatistics-summary": "patapabawan tu ku tangan nikalahizaan u sausi ku cesyun, tina aazihen cudad dada’ sausi tangan sefu-kikay baluhay baziyong, caay yamalyilu maluman atu masipuay tu baziyong.", + "mediastatistics-nbytes": "{{PLURAL:$1|$1 wyiyincu}} ($2; $3%)", "mediastatistics-allbytes": "sacahamin tangan a pulung tangan pinalu hacica-tabaki: {{PLURAL:$1|$1 wyiyincu}} ($2).", "mediastatistics-table-mimetype": "MIME nikalahizaan", "mediastatistics-table-extensions": "kapah saungay a mikilulay a ngangan nu tangan", @@ -3003,6 +3187,7 @@ "mediastatistics-header-executable": "kapah tu mileku", "mediastatistics-header-archive": "piepian mipecec tuway a kese", "mediastatistics-header-total": "sacahamin a tangan", + "json-warn-trailing-comma": "masipu tuway $1 JSON sazikuzay {{PLURAL:$1|widi-bacu}}", "json-error-unknown": "JSON simunday. mungangaw: $1", "json-error-depth": "mangasiw tu ilabu kelec nu sakalud", "json-error-state-mismatch": "la’cus saca kese caay tatenga’ay a JSON", @@ -3044,6 +3229,7 @@ "sessionmanager-tie": "la’cus mikabu kayadahay a milunguc zencen nikalahizaan:$1", "sessionprovider-generic": "$1 kasasiketan", "sessionprovider-mediawiki-session-cookiesessionprovider": "palana’an nu cookie amikasasiket a ngatu", + "sessionprovider-nocookies": "Cookie sasahicaan hakay maedeb tu, pilucek kisu misumad miwawah Cookie sasahicaan zumasatu miliyaw misaungay.", "randomrootpage": "kakibalucu’ lamitay kasabelih", "log-action-filter-block": "milangat nikalahizaan:", "log-action-filter-contentmodel": "lacul tatudungen-misanga’ misumad nikalahizaan:", @@ -3161,6 +3347,8 @@ "unlinkaccounts": "palawpes masasiketay a canghaw", "unlinkaccounts-success": "malawpes masasiket tu canghaw.", "authenticationdatachange-ignored": "zencen kalunasulitan a sumad caay henay milisimet, hakay inayi’ misetin nipabeliay?", + "userjsispublic": "kapiazihen: JavaScript bisac a kasabelih kapah u zumaay ku misaungayay amiciwsace, amana yamalyilu ku dimut kalunasulitan.", + "usercssispublic": "piazihen: CSS sailuc-kasabelih kapah miciwsace ku zuma misaungayay, amana yamalyilu silangiwngiway a kalunasulitan.", "restrictionsfield-badip": "la’cusay a IP puenengan saca subal: $1", "restrictionsfield-label": "mahasaay a subal nu IP:", "restrictionsfield-help": "cacay IP puenengan saca CIDR tatungus cacay a silsil, amiwawah sacahamin tatungus kapah pisaungay:
0.0.0.0/0\n::/0
", diff --git a/languages/i18n/ang.json b/languages/i18n/ang.json index 00f1c40372..d1e4b144da 100644 --- a/languages/i18n/ang.json +++ b/languages/i18n/ang.json @@ -315,6 +315,8 @@ "cannotdelete": "Se tramet oþðe ymele \"$1\" ne meahte beon ahwiten. Meahtlice hæfþ adihtere ær hine astricon.", "cannotdelete-title": "Ne cann forlēosan þone tramet \"$1\"", "badtitle": "Nā genge titul", + "title-invalid-too-long": "Se trametnama þone þū wilt is to lang. He sceal bēon ne langor þon $1 {{PLURAL:$1|byte|bytan}} in UTF-8 rūncræfte.", + "title-invalid-leading-colon": "Se trametnama þone þū wilt beclypeþ unregolfæsten twafealden prican æt his orde.", "querypage-no-updates": "Ednīwunga for þissum tramete ne sindon nū gelīfeda. \nCȳþþu hēr ne biþ hraðe ednīwod.", "viewsource": "Sēon fruman", "viewsource-title": "Fruman for $1 sēon", diff --git a/languages/i18n/ar.json b/languages/i18n/ar.json index 23146f3b7d..4c077a6e3f 100644 --- a/languages/i18n/ar.json +++ b/languages/i18n/ar.json @@ -1336,6 +1336,7 @@ "recentchanges-summary": "تابع آخر التغييرات في الويكي من هذه الصفحة.", "recentchanges-noresult": "لا توجد تغييرات خلال الفترة المحددة تطابق هذه المعايير.", "recentchanges-timeout": "البحث انتهى بدون نتائج. ربما تحب تجربة مدخلات بحث مختلفة.", + "recentchanges-network": "نتيجة لخطأ تقني، لم يمكن تحميل أي نتائج. من فضلك حاول إعادة تحديث الصفحة.", "recentchanges-feed-description": "تابع أحدث التغييرات للويكي عبر هذه التلقيمة.", "recentchanges-label-newpage": "أنشأ هذا التعديل صفحة جديدة", "recentchanges-label-minor": "هذا تعديل طفيف", @@ -1376,7 +1377,7 @@ "rcfilters-restore-default-filters": "استرجاع المرشحات الافتراضية", "rcfilters-clear-all-filters": "مسح كل المرشحات", "rcfilters-show-new-changes": "عرض أحدث التغييرات", - "rcfilters-search-placeholder": "رشح أحدث التغييرات (تصفح أو ابدأ الكتابة)", + "rcfilters-search-placeholder": "رشح التغييرات (استخدم القائمة أو البحث لاسم المرشح)", "rcfilters-invalid-filter": "مرشح غير صحيح", "rcfilters-empty-filter": "لا مرشحات فعالة. كل المساهمات معروضة.", "rcfilters-filterlist-title": "مرشحات", diff --git a/languages/i18n/as.json b/languages/i18n/as.json index 60607f4c3e..98b56751de 100644 --- a/languages/i18n/as.json +++ b/languages/i18n/as.json @@ -70,7 +70,6 @@ "underline-never": "কেতিয়াও নহয়", "underline-default": "ব্ৰাউজাৰ ডিফল্ট", "editfont-style": "সম্পাদনা ক্ষেত্ৰৰ ফ'ণ্ট শৈলী:", - "editfont-default": "ব্ৰাউজাৰ ডিফ'ল্ট", "editfont-monospace": "ম'ন'স্পেছ ফ'ণ্ট", "editfont-sansserif": "ছেন্স-ছেৰিফ ফ'ণ্ট", "editfont-serif": "ছেৰিফ ফ'ণ্ট", @@ -604,7 +603,7 @@ "accmailtext": "[[User talk:$1|$1]]-ৰ কাৰণে যাদৃচ্ছিকভাৱে উৎপন্ন কৰা গুপ্তশব্দ $2লৈ পঠোৱা হ'ল । \nএই নতুন একাউন্টত প্ৰৱেশ কৰি ''[[Special:ChangePassword|গুপ্তশব্দ সলনি কৰক]]'' পৃষ্ঠাখনত শব্দতো সলনি কৰি ল’ব পাৰিব ।", "newarticle": "(নতুন)", "newarticletext": "আপুনি বিচৰা প্ৰবন্ধটো বিচাৰি পোৱা নগ'ল।\n\nইচ্ছা কৰিলে আপুনিয়েই এই প্ৰবন্ধটো লিখা আৰম্ভ কৰিব পাৰে। [$1 ইয়াত] সহায় পাব।\n\nআপুনি যদি ইয়ালৈ ভুলতে আহিছে, তেনেহলে আপোনাৰ ব্ৰাওজাৰৰ '''BACK''' বুটামত টিপা মাৰক।", - "anontalkpagetext": "----''এইখন আলোচনা পৃষ্ঠা বেনামী সদস্যৰ বাবে, যিয়ে নিজা একাউণ্ট সৃষ্টি কৰা নাই বা যিয়ে সেই একাউণ্ট ব্যৱহাৰ নকৰে।\nএতেকে আমি তেখেতসকলক আই-পি ঠিকনাৰে চিনাক্ত কৰিবলৈ বাধ্য।\nসেই একেই আই-পি ঠিকনা অনেকেই ব্যৱহাৰ কৰিব পাৰে।\nআপুনি যদি এজন বেনামী সদস্য আৰু যদি আপুনি অনুভৱ কৰে যে আপোনাৰ প্ৰতি অপ্ৰাসঙ্গিক মন্তব্য কৰা হৈছে, তেনেহলে আন বেনামী সদস্যৰ পৰা পৃথক কৰিবলৈ \n[[Special:CreateAccount|একাউন্ট সৃষ্টি কৰক]] বা [[Special:UserLogin|প্ৰৱেশ কৰক]] ।''", + "anontalkpagetext": "----''এইখন আলোচনা পৃষ্ঠা বেনামী সদস্যৰ বাবে, যিয়ে নিজা একাউণ্ট সৃষ্টি কৰা নাই বা যিয়ে সেই একাউণ্ট ব্যৱহাৰ নকৰে।\nএতেকে আমি তেখেতসকলক আই-পি ঠিকনাৰে চিনাক্ত কৰিবলৈ বাধ্য।\nসেই একেই আই-পি ঠিকনা অনেকেই ব্যৱহাৰ কৰিব পাৰে।\nআপুনি যদি এজন বেনামী সদস্য আৰু যদি আপুনি অনুভৱ কৰে যে আপোনাৰ প্ৰতি অপ্ৰাসঙ্গিক মন্তব্য কৰা হৈছে, তেনেহলে আন বেনামী সদস্যৰ পৰা পৃথক কৰিবলৈ \n[[Special:CreateAccount|একাউণ্ট সৃষ্টি কৰক]] বা [[Special:UserLogin|প্ৰৱেশ কৰক]] ।''", "noarticletext": "এই পৃষ্ঠাত বৰ্তমান কোনো পাঠ্য নাই ।\nআপুনি আন পৃষ্ঠাত [[Special:Search/{{PAGENAME}}|এই শিৰোনামা সন্ধান কৰিব পাৰে]],\n[{{fullurl:{{#Special:Log}}|page={{FULLPAGENAMEE}}}} সম্পৰ্কীয় অভিলেখ সন্ধান কৰিব পাৰে],\nবা [{{fullurl:{{FULLPAGENAME}}|action=edit}} এই পৃষ্ঠা সৃষ্টি কৰিব পাৰে]", "noarticletext-nopermission": "এই পৃষ্ঠাত বৰ্তমান কোনো পাঠ্য নাই।\nআপুনি আন পৃষ্ঠাত [[Special:Search/{{PAGENAME}}|এই শিৰোনামা সন্ধান কৰিব পাৰে]],\nবা [{{fullurl:{{#Special:Log}}|page={{FULLPAGENAMEE}}}} সম্পৰ্কীয় অভিলেখ সন্ধান কৰিব পাৰে], কিন্তু এই পৃষ্ঠা সৃষ্টি কৰিবলৈ আপোনাৰ অনুমতি নাই।", "missing-revision": "\"{{FULLPAGENAME}}\" নামৰ পৃষ্ঠাৰ #$1 সংশোধনৰ অস্তিত্ব নাই।\n\nসাধাৰণতে বিলোপ কৰা এখন পৃষ্ঠাৰ পুৰণা ইতিহাস লিংক অনুসৰণ কৰিলে এনে হয়।\n[{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} বিলোপন ল'গ]ত অধিক তথ্য পাব।", @@ -636,7 +635,6 @@ "explainconflict": "আপুনি সম্পাদনা আৰম্ভ কৰাৰ পাছত আন কোনোবাই এই পৃষ্ঠাটো সলনি কৰিলে।\nপাঠ্য-স্থানৰ উপৰ ভাগত এই পৃষ্ঠাৰ প্ৰচলিত পাঠ্য দিয়া হৈছে।\nআপোনাৰ সলনিসমূহ পাঠ্য-স্থানৰ তলৰ ভাগত দেখুওৱা হৈছে।\nআপুনি আপোনাৰ সালসলনিসমূহ প্ৰচলিত পাঠ্যত অন্তৰ্ভুক্ত কৰিব পাৰে।\nআপুনি \"$1\" টিপিলে '''কেৱল''' পাঠ্য-স্থানৰ উপৰ ভাগৰ অংশখিনিহে সংৰক্ষিত হ'ব ।", "yourtext": "আপুনি লিখা পাঠ", "storedversion": "জমা সংস্কৰণ", - "nonunicodebrowser": "'''সতৰ্কবাণী: আপোনাৰ ব্ৰাউজাৰ ইউনিক’ড-ভাৱাপন্ন নহয় ।'''\nআপুনি ঠিকমতে সম্পাদনা কৰিব পৰাকৈ সমাধান আছে: non-ASCII কেৰেক্টাৰবোৰ সম্পাদনা ক্ষেত্ৰত hexadecimal ক’ড হিছাপে দেখা যাব ।", "editingold": "'''সাৱধান: আপুনি এই পৃষ্ঠাৰ এটি পুৰণি সংস্কৰণ সম্পাদনা কৰি আছে ।\nযদি আপুনি আপোনাৰ সম্পাদনাসমূহ জমা কৰে, সেই পৰৱৰ্তী সংস্কৰণসমূহ হেৰাই যাব ‌‌।'''", "yourdiff": "তফাৎ", "copyrightwarning": "অনুগ্ৰহ কৰি মন কৰক যে {{SITENAME}}লৈ কৰা সকলো বৰঙণি $2 ৰ চৰ্তাৱলীৰ মতে প্ৰদান কৰা বুলি ধৰি লোৱা হ'ব (আৰু অধিক জানিবলৈ $1 চাওক)। যদি আপুনি আপোনাৰ লিখনি নিৰ্দয়ভাৱে সম্পাদনা কৰা আৰু ইচ্ছামতে পুনৰ্বিতৰণ কৰা ভাল নাপায়, তেনেহ'লে নিজৰ লিখনি ইয়াত নিদিব।\n
\n\nইয়াত আপোনাৰ লিখনি দিয়াৰ লগে লগে আপোনা-আপুনি প্ৰতিশ্ৰুতি দিয়া হৈছে যে এই লিখনিটো আপোনাৰ মৌলিক লিখনি, বা কোনো স্বত্বাধিকাৰ নথকা বা কোনো ৰাজহুৱা ৱেবছাইট বা তেনে কোনো মুকলি উৎসৰ পৰা আহৰণ কৰা।\n'''স্বত্বাধিকাৰযুক্ত কোনো সমল অনুমতি অবিহনে দাখিল নকৰে যেন!'''", @@ -1150,7 +1148,7 @@ "recentchanges-legend-heading": "ব্যাখ্যা:", "recentchanges-legend-newpage": "{{int:recentchanges-label-newpage}} (লগতে [[Special:NewPages|নতুন পৃষ্ঠাসমূহৰ তালিকা]] চাওক)", "recentchanges-legend-plusminus": "(''±১২৩'')", - "rcnotefrom": "তলত '''$2''' ৰ পৰা হোৱা ('''$1''' লৈকে) পৰিৱৰ্তন দেখুৱা হৈছে ।", + "rcnotefrom": "$2ৰ পৰা হোৱা পৰিৱৰ্তনসমূহ (সৰ্বোচ্চ $1টা দেখুৱা হৈছে)।", "rclistfrom": "$3 $2ৰ পৰা নতুন সালসলনি দেখুৱাওক", "rcshowhideminor": "$1 -সংখ্যক নগণ্য সম্পাদনা", "rcshowhideminor-show": "দেখুৱাওক", @@ -1693,10 +1691,10 @@ "unwatchthispage": "চকু দিয়া বন্ধ কৰক", "notanarticle": "সমল পৃষ্ঠা নহয়", "notvisiblerev": "অন্য কোনো সদস্যই কৰা সংশোধনী বিলোপ কৰা হৈছে", - "watchlist-details": "আলোচনা পৃষ্ঠাসমূহ বেলেগকৈ লেখত নধৰি {{PLURAL:$1|$1 টা পৃষ্ঠা}} আপোনাৰ লক্ষ্য-তালিকাত আছে।", + "watchlist-details": "আপোনাৰ লক্ষ্য-তালিকাত {{PLURAL:$1|$1 টা পৃষ্ঠা}} আছে (আলোচনা পৃষ্ঠাসহ)।", "wlheader-enotif": "ইমেইল জাননী সক্ৰিয় কৰা হৈছে।", "wlheader-showupdated": "আপোনাৰ শেষ পৰিদৰ্শনৰ পিছত সলনি হোৱা পৃষ্ঠাসমূহ '''গাঢ়''' আখৰত দেখুওৱা হৈছে।", - "wlnote": "তলত {{PLURAL:$1| হ'ল সৰ্বশেষ পৰিৱৰ্তন|হ'ল সৰ্বশেষ '''$1''' পৰিৱৰ্তনসমূহ}} সৰ্বশেষ {{PLURAL:$2|ঘন্টা|'''$2''' ঘন্টা}}, $3, $4 -ৰ হিচাপে।", + "wlnote": "তলত $3, $4 তাৰিখত বিগত {{PLURAL:$2|১ ঘণ্টাত|$2 ঘণ্টাত}} সংঘটিত {{PLURAL:$1|শেহতীয়া এটা পৰিৱৰ্তন|শেহতীয়া $1টা পৰিৱৰ্তন}} দেখুওৱা হ'ল।", "wlshowlast": "যোৱা $1 ঘণ্টা $2 দিন চাওক", "wlshowhidecategorization": "পৃষ্ঠা শ্ৰেণীকৰণ", "watchlist-options": "লক্ষ্য-তালিকা পছন্দসমূহ", @@ -1901,7 +1899,6 @@ "block": "সদস্য বাৰণ কৰক", "unblock": "সদস্যৰ বাৰণ উঠাই লওক", "blockip": "সদস্য বাৰণ কৰক", - "blockip-legend": "সদস্য বাৰণ কৰক", "blockiptext": "তলৰ প্ৰপত্ৰখন ব্যৱহাৰ কৰি কোনো নিৰ্দিষ্ট আই.পি. ঠিকনা বা সদস্যনামৰ লিখাৰ অধিকাৰ বাৰণ কৰিব পাৰে ।\nকেৱল ধ্বংসপ্ৰৱণতা ৰোধ কৰিবলৈ আৰু [[{{MediaWiki:Policy-url}}|নীতি]] মানি চলি এনে কৰক ।\nতলত এটা নিৰ্দিষ্ট কাৰণ উল্লেখ কৰক (যেনে, ধ্বংসসাধন কৰা পৃষ্ঠাৰ নাম) ।", "ipaddressorusername": "আই-পি ঠিকনা বা সদস্যনাম:", "ipbexpiry": "ম্যাদ উকলিব:", @@ -2200,7 +2197,7 @@ "tooltip-feed-rss": "এই পৃষ্ঠাৰ বাবে আৰ-এচ-এচ ভুক্তি", "tooltip-feed-atom": "এই পৃষ্ঠাৰ বাবে এটম ভুক্তি", "tooltip-t-contributions": "{{GENDER:$1|এই সদস্যজনৰ}} বৰঙণিসমূহৰ তালিকা চাওক", - "tooltip-t-emailuser": "এই সদস্যজনলৈ ই-মেইল পঠাওক", + "tooltip-t-emailuser": "{{GENDER:$1|এই সদস্যগৰাকীলৈ}} এটা ইমেইল পঠিয়াওক", "tooltip-t-info": "এই পৃষ্ঠাৰ বিষয়ে অধিক তথ্য", "tooltip-t-upload": "ফাইল আপল'ডৰ বাবে", "tooltip-t-specialpages": "বিশেষ পৃষ্ঠাসমূহৰ সূচী", @@ -2953,6 +2950,7 @@ "logentry-rights-rights-legacy": "$1-ৰ গোট সদস্যপদ $3-লৈ সলনি কৰা হ'ল", "logentry-rights-autopromote": "$1ক $4ৰ পৰা $5লৈ স্বয়ংক্ৰিয়ভাৱে পদোন্নীত কৰা হ’ল", "logentry-upload-upload": "$1 $3 {{GENDER:$2|আপল'ড কৰা হ'ল}}", + "logentry-upload-overwrite": "$1 $3-ৰ এটা নতুন সংস্কৰণ {{GENDER:$2|-এ আপল'ড কৰিছে}}", "rightsnone": "(নাই)", "feedback-adding": "পৃষ্ঠাত প্ৰতিক্ৰিয়া যোগ কৰা হৈছে...", "feedback-bugcheck": "অতি উত্তম! কেৱল পৰীক্ষা কৰক যে ই ইতিমধ্যে [$1 জ্ঞাত বাগসমূহ]ৰ এটা নহয়।", diff --git a/languages/i18n/ast.json b/languages/i18n/ast.json index dbb99159bf..2c731d8304 100644 --- a/languages/i18n/ast.json +++ b/languages/i18n/ast.json @@ -698,7 +698,7 @@ "sectioneditnotsupported-text": "La edición de seición nun tien sofitu nesta páxina.", "permissionserrors": "Fallu de permisos", "permissionserrorstext": "Nun tien permisu pa facer eso {{PLURAL:$1|pol siguiente motivu|polos siguientes motivos}}:", - "permissionserrorstext-withaction": "Nun tien permisu pa $2 {{PLURAL:$1|pol siguiente motivu|polos siguientes motivos}}:", + "permissionserrorstext-withaction": "Nun tienes permisu pa $2 {{PLURAL:$1|pol siguiente motivu|polos siguientes motivos}}:", "contentmodelediterror": "Nun ye posible editar esta revisión porque'l so modelu de conteníu ye $1, que ye distintu del modelu de conteníu actual de la páxina, $2.", "recreate-moveddeleted-warn": "'''Avisu: Tas volviendo a crear una páxina que se desanició anteriormente.'''\n\nHabríes considerar si ye afechisco siguir editando esta páxina.\nEquí tienes el rexistru de desanicios y tresllaos d'esta páxina:", "moveddeleted-notice": "Esta páxina se desanició.\nComo referencia, embaxo s'ufre'l rexistru de desanicios, proteiciones y tresllaos de la páxina.", @@ -1280,6 +1280,7 @@ "recentchanges-summary": "Sigui los cambios más recientes na wiki nesta páxina.", "recentchanges-noresult": "Nengún cambiu nel periodu conseñáu coincide con esos criterios.", "recentchanges-timeout": "Esta gueta escosó'l tiempu. Escurque quieras tentar con parámetros de gueta distintos.", + "recentchanges-network": "Nun se cargó nenguna resultancia por cuenta d'un problema técnicu. Tenta volver a cargar la páxina.", "recentchanges-feed-description": "Sigui nesta canal los últimos cambios de la wiki.", "recentchanges-label-newpage": "Esta edición creó una páxina nueva", "recentchanges-label-minor": "Esta ye una edición menor", @@ -1318,10 +1319,11 @@ "rcfilters-savedqueries-apply-and-setdefault-label": "Crear filtru predetermináu", "rcfilters-savedqueries-cancel-label": "Encaboxar", "rcfilters-savedqueries-add-new-title": "Guardar les preferencies de filtru actuales", + "rcfilters-savedqueries-already-saved": "Estos filtros yá se guardaron", "rcfilters-restore-default-filters": "Restaurar los filtros predeterminaos", "rcfilters-clear-all-filters": "Borrar tolos filtros", "rcfilters-show-new-changes": "Ver los cambeos más recién", - "rcfilters-search-placeholder": "Filtriar cambeos recién (restolar o empezar a escribir)", + "rcfilters-search-placeholder": "Filtriar cambeos (usa'l menú o busca'l nome del filtru)", "rcfilters-invalid-filter": "Filtru inválidu", "rcfilters-empty-filter": "Nun hai filtros activos. Amuésense toles contribuciones.", "rcfilters-filterlist-title": "Filtros", @@ -1648,6 +1650,25 @@ "uploadstash-refresh": "Anovar la llista de ficheros", "uploadstash-thumbnail": "ver miniatura", "uploadstash-exception": "Nun pudo guardase la subida nel almacén ($1): «$2».", + "uploadstash-bad-path": "La ruta nun esiste.", + "uploadstash-bad-path-invalid": "La ruta nun ye válida.", + "uploadstash-bad-path-unknown-type": "Triba «$1» desconocida.", + "uploadstash-bad-path-unrecognized-thumb-name": "Nun se reconoció'l nome de miniatura.", + "uploadstash-bad-path-no-handler": "Nun s'alcontró un xestor pal tipu mime $1 del ficheru $2.", + "uploadstash-bad-path-bad-format": "La clave «$1» nun ta nun formatu correutu.", + "uploadstash-file-not-found": "La clave «$1» nun s'alcontró nel almacén.", + "uploadstash-file-not-found-no-thumb": "Nun pudo llograse la miniatura.", + "uploadstash-file-not-found-no-local-path": "Nun hai una ruta llocal pal elementu redimensionáu.", + "uploadstash-file-not-found-no-object": "Nun pudo crease l'oxetu de ficheru llocal pa la miniatura.", + "uploadstash-file-not-found-no-remote-thumb": "Falló la descarga de la miniatura: $1\nurl = $2\n.", + "uploadstash-file-not-found-missing-content-type": "Falta la cabecera de triba de conteníu.", + "uploadstash-file-not-found-not-exists": "Nun pudo alcontrase la ruta, o nun ye un ficheru.", + "uploadstash-file-too-large": "Nun puede sirvise un ficheru mayor de $1 bytes.", + "uploadstash-not-logged-in": "Nun hai usuarios con sesión aniciada, los ficheros tienen de pertenecer a usuarios.", + "uploadstash-wrong-owner": "Esti ficheru ($1) nun pertenez al usuariu actual.", + "uploadstash-no-such-key": "Nun esiste esa clave ($1), nun pudo desaniciase.", + "uploadstash-no-extension": "La estensión ye nula.", + "uploadstash-zero-length": "El ficheru tien tamañu cero.", "invalid-chunk-offset": "Allugamientu inválidu del fragmentu", "img-auth-accessdenied": "Accesu denegáu", "img-auth-nopathinfo": "Falta PATH_INFO.\nEl to sirvidor nun ta configuráu pa pasar esta información.\nPue tar basáu en CGI y nun tener sofitu pa img_auth.\nVer https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Image_Authorization", diff --git a/languages/i18n/az.json b/languages/i18n/az.json index 3b379ff34e..548fa4c88a 100644 --- a/languages/i18n/az.json +++ b/languages/i18n/az.json @@ -769,6 +769,7 @@ "powersearch-togglelabel": "Yoxla:", "powersearch-toggleall": "Hamısı", "powersearch-togglenone": "Heç biri", + "powersearch-remember": "Gələcək axtarışlarımda bu seçimi xatırla", "search-external": "Xarici axtarış", "preferences": "Nizamlamalar", "mypreferences": "Nizamlamalar", diff --git a/languages/i18n/be-tarask.json b/languages/i18n/be-tarask.json index 29d8381e11..2643ad89d3 100644 --- a/languages/i18n/be-tarask.json +++ b/languages/i18n/be-tarask.json @@ -991,7 +991,7 @@ "recentchangesdays-max": "Максымальна $1 {{PLURAL:$1|дзень|дні|дзён}}", "recentchangescount": "Колькасьць рэдагаваньняў для паказу па змоўчаньні:", "prefs-help-recentchangescount": "Гэта ўключае апошнія зьмены, гісторыі старонак і журналы падзеяў.", - "prefs-help-watchlist-token2": "Гэта сакрэтны ключ да стужкі вашага сьпісу назіраньня.\nКожны, хто ведае яго, можа набыць доступ да вашага сьпісу назіраньня, таму не дзяліцеся ім.\n[[Special:ResetTokens|Пстрыкніце тут, калі вам трэба скінуць яго]].", + "prefs-help-watchlist-token2": "Гэта сакрэтны ключ да стужкі вашага сьпісу назіраньня.\nКожны, хто ведае яго, можа атрымаць доступ да вашага сьпісу назіраньня, таму не дзяліцеся ім.\nКалі вам трэба, [[Special:ResetTokens|вы можаце скінуць яго]].", "savedprefs": "Вашыя налады былі захаваныя.", "savedrights": "Групы {{GENDER:$1|ўдзельніка|ўдзельніцы}} $1 былі захаваныя.", "timezonelegend": "Часавы пояс:", @@ -1280,6 +1280,7 @@ "recentchanges-summary": "Сачыце за апошнімі зьменамі ў {{GRAMMAR:месны|{{SITENAME}}}} на гэтай старонцы.", "recentchanges-noresult": "Зьмены, што пасуюць дадзенаму пэрыяду і крытэрам, ня знойдзеныя.", "recentchanges-timeout": "Адведзены на гэты пошук час скончыўся. Вы можаце паспрабаваць іншыя парамэтры пошуку.", + "recentchanges-network": "Праз тэхнічную памылку вынікі ня могуць быць загружаныя. Калі ласка, паспрабуйце абнавіць старонку.", "recentchanges-feed-description": "Сачыце за апошнімі зьменамі ў вікі праз гэтую стужку.", "recentchanges-label-newpage": "Гэтым рэдагаваньнем была створаная новая старонка", "recentchanges-label-minor": "Гэта дробнае рэдагаваньне", @@ -1646,6 +1647,7 @@ "uploadstash-refresh": "Абнавіць сьпіс файлаў.", "uploadstash-thumbnail": "прагляд мініятуры", "uploadstash-exception": "Не магу захаваць загрузку ў сховішчы ($1): «$2».", + "uploadstash-bad-path": "Шлях не існуе.", "invalid-chunk-offset": "Няслушнае зрушэньне фрагмэнту", "img-auth-accessdenied": "Доступ забаронены", "img-auth-nopathinfo": "Адсутнічае PATH_INFO.\nВаш сэрвэр не ўстаноўлены на пропуск гэтай інфармацыі.\nМагчма, ён працуе праз CGI і не падтрымлівае img_auth.\nГлядзіце https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Image_Authorization.", diff --git a/languages/i18n/bn.json b/languages/i18n/bn.json index 1944e262ed..6c39836180 100644 --- a/languages/i18n/bn.json +++ b/languages/i18n/bn.json @@ -35,7 +35,9 @@ "Elias Ahmmad", "Catrope", "Mohammed Galib Hasan", - "এম আবু সাঈদ" + "এম আবু সাঈদ", + "Shahadat1971", + "Rasal Lia" ] }, "tog-underline": "সংযোগের নিচে দাগ দেখানো হোক:", @@ -1301,6 +1303,7 @@ "recentchanges-summary": "এই পাতায় উইকিটির সবচেয়ে সাম্প্রতিক পরিবর্তনগুলি অনুসরণ করুন।", "recentchanges-noresult": "নির্ধারিত সময়ের মধ্যে কোনো পরিবর্তন পাওয়া যায়নি।", "recentchanges-timeout": "এই অনুসন্ধানের সময় শেষ হয়েছে। আপনি ভিন্ন অনুসন্ধানের পরামিতি দিয়ে চেষ্টা করতে পারেন।", + "recentchanges-network": "কারিগরি ত্রুটির কারনে কোন ফলাফল পাওয়া যায়নি । অনুগ্রহকরে এই পাতাটি রিফ্রেশ করে আমার চেষ্টা করুন ।", "recentchanges-feed-description": "এই ফিডে উইকিটির সবচেয়ে সাম্প্রতিক পরিবর্তনগুলি অনুসরণ করুন।", "recentchanges-label-newpage": "এই সম্পাদনায় একটি নতুন পাতা তৈরি হয়েছে", "recentchanges-label-minor": "এটি একটি অনুল্লেখিত সম্পাদনা", @@ -1666,6 +1669,23 @@ "uploadstash-refresh": "ফাইলের তালিকা রিফ্রেশ করুন", "uploadstash-thumbnail": "থাম্বনেইল দেখুন", "uploadstash-exception": "স্টাসে আপলোড সঞ্চয় করা যায়নি ($1): \"$2\"।", + "uploadstash-bad-path": "পথের অস্তিত্ব নেই।", + "uploadstash-bad-path-invalid": "পথ বৈধ নয়।", + "uploadstash-bad-path-unknown-type": "\"$1\" ধরন অজানা।", + "uploadstash-bad-path-unrecognized-thumb-name": "সংক্ষিপ্ত চিত্রটির নাম অস্বীকৃত।", + "uploadstash-bad-path-no-handler": "$2 ফাইলের মূকাভিনয় $1-এর জন্য কোন নিয়ন্ত্রক পাওয়া যায়নি।", + "uploadstash-bad-path-bad-format": "চাবি \"$1\" সঠিক অাদলে নেই।", + "uploadstash-file-not-found-no-thumb": "সংক্ষিপ্ত চিত্রও পাওয়া যায়নি।", + "uploadstash-file-not-found-no-local-path": "স্কেল করা আইটেমের জন্য কোনো স্থানীয় পথ নেই।", + "uploadstash-file-not-found-no-object": "সংক্ষিপ্ত চিত্রের সংশ্লিষ্ট স্থানীয় ফাইলের সামগ্রী তৈরি করা যায়নি।", + "uploadstash-file-not-found-missing-content-type": "সামগ্রীর-ধরনের শিরোনাম অনুপস্থিত।", + "uploadstash-file-not-found-not-exists": "পথ পাওয়া যাচ্ছে না, অথবা ফাইল স্বাভাবিক নয়।", + "uploadstash-file-too-large": "$1 বাইটের বড় ফাইল পরিবেশন করা যাবে না।", + "uploadstash-not-logged-in": "কোন ব্যবহারকারী প্রবেশ করেনি, নথিগুলো অবশ্যই ব্যবহারকারীদের অধিকারে থাকবে।", + "uploadstash-wrong-owner": "এই ফাইলটি ($1) বর্তমান ব্যবহারকারীর অন্তর্গত নয়।", + "uploadstash-no-such-key": "এই রকম কোন চাবি নেই ($1), বাতিল করা যাবে না,", + "uploadstash-no-extension": "এক্সটেনশনটি অকার্যকর।", + "uploadstash-zero-length": "ফাইলটির দৈর্ঘ্য শূন্য।", "invalid-chunk-offset": "ত্রুটিপূর্ণ চাংক অফসেট", "img-auth-accessdenied": "প্রবেশাধিকার নাই", "img-auth-nopathinfo": "PATH_INFO পাওয়া যাচ্ছে না।\nআপনার সার্ভার থেকে এই তথ্য পাঠানোর জন্য কনফিগার করা হয়নি।\nএটি হয়তো CGI ভিত্তিক এবং img_auth সমর্থন করে না।\nবিস্তারিত দেখুন https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Image_Authorization।", @@ -3599,6 +3619,7 @@ "compare-title-not-exists": "আপনার কাঙ্ক্ষিত শিরোনামটি নেই।", "compare-revision-not-exists": "আপনার কাঙ্ক্ষিত সংস্করণটি নেই।", "diff-form": "পার্থক্য", + "diff-form-oldid": "পুরানো সংস্করণ আইডি (ঐচ্ছিক)", "diff-form-submit": "পার্থক্য দেখান", "permanentlink": "স্থায়ী সংযোগ", "permanentlink-revid": "সংশোধন আইডি", diff --git a/languages/i18n/bs.json b/languages/i18n/bs.json index 75858b9e52..3505ecc909 100644 --- a/languages/i18n/bs.json +++ b/languages/i18n/bs.json @@ -931,7 +931,7 @@ "searchprofile-advanced-tooltip": "Traži u ostalim imenskim prostorima", "search-result-size": "$1 ({{PLURAL:$2|$2 riječ|$2 riječi}})", "search-result-category-size": "{{PLURAL:$1|1 član|$1 člana|$1 članova}} ({{PLURAL:$2|1 potkategorija|$2 potkategorije|$2 potkategorija}}, {{PLURAL:$3|1 datoteka|$3 datoteke|$3 datoteka}})", - "search-redirect": "(preusmjereno sa $1)", + "search-redirect": "(preusmjerenje sa $1)", "search-section": "(sekcija $1)", "search-category": "(kategorija $1)", "search-file-match": "(podudara se sadržaj datoteke)", diff --git a/languages/i18n/ce.json b/languages/i18n/ce.json index 6acdc116e7..1b6d15cf54 100644 --- a/languages/i18n/ce.json +++ b/languages/i18n/ce.json @@ -3083,6 +3083,8 @@ "date-range-to": "Терхье:", "sessionprovider-generic": "$1 сесси", "randomrootpage": "Цахууш нисъелла ораман агӀо", + "log-action-filter-block": "Блоктохаран тайпа:", + "log-action-filter-all": "Ерриге", "log-action-filter-block-block": "Блоктохар", "log-action-filter-block-reblock": "Блоктохар хийцар", "log-action-filter-block-unblock": "БлокдӀаяхарш", diff --git a/languages/i18n/cs.json b/languages/i18n/cs.json index 92b64a301c..cddd35e402 100644 --- a/languages/i18n/cs.json +++ b/languages/i18n/cs.json @@ -1302,6 +1302,7 @@ "recentchanges-summary": "Na této stránce sledujte poslední změny na {{grammar:6sg|{{SITENAME}}}}.", "recentchanges-noresult": "V daném období neodpovídaly zadaným kritériím žádné změny.", "recentchanges-timeout": "Časový limit vyhledávání vypršel. Můžete ho zkusit znovu s jinými parametry.", + "recentchanges-network": "Kvůli technické chybě se nepodařilo načíst žádné výsledky. Zkuste obnovit stránku.", "recentchanges-feed-description": "Na tomto kanále sledujte poslední změny na {{grammar:6sg|{{SITENAME}}}}.", "recentchanges-label-newpage": "Touto editací byla založena nová stránka", "recentchanges-label-minor": "Toto je malá editace", @@ -1343,7 +1344,7 @@ "rcfilters-restore-default-filters": "Obnovit výchozí filtry", "rcfilters-clear-all-filters": "Zrušit všechny filtry", "rcfilters-show-new-changes": "Zobrazit nejnovější změny", - "rcfilters-search-placeholder": "Filtrujte poslední změny (prohlížejte nebo začněte psát)", + "rcfilters-search-placeholder": "Filtrovat poslední změny (použijte menu nebo vyhledejte název filtru)", "rcfilters-invalid-filter": "Neplatný filtr", "rcfilters-empty-filter": "Žádné aktivní filtry. Zobrazeny jsou všechny příspěvky.", "rcfilters-filterlist-title": "Filtry", diff --git a/languages/i18n/csb.json b/languages/i18n/csb.json index 405e14fb2b..e3240db351 100644 --- a/languages/i18n/csb.json +++ b/languages/i18n/csb.json @@ -41,7 +41,7 @@ "tog-shownumberswatching": "Pòkażë lëczba ùzérającëch brëkòwników", "tog-oldsig": "Wëzdrzatk twòjegò pòdpisënkù:", "tog-fancysig": "Wzérôj na pòdpisënk jakno na wikikòd (bez aùtomatnych lënków)", - "tog-uselivepreview": "Felënk dinamicznegò pòdzérkù", + "tog-uselivepreview": "Wëskrzëni pòdzérk bez zladowaniô znowa starnë", "tog-forceeditsummary": "Pëtôj przed wéńdzenim do pùstégò pòdrechòwania edicëji", "tog-watchlisthideown": "Zatacë mòje edicje z lëstë ùzérónëch artiklów", "tog-watchlisthidebots": "Zatacë edicëje botów z lëstë ùzérónëch artiklów", @@ -61,7 +61,6 @@ "underline-never": "Nigdë", "underline-default": "Tak jak w domëslnym przezérnikù abò skórczi.", "editfont-style": "Sztél fònta w edicjowim pòlu:", - "editfont-default": "Domëslny przezérnik", "editfont-monospace": "fònt ò stałi szérzé", "editfont-sansserif": "bezszëfrowi fònt", "editfont-serif": "szefrowi fònt", @@ -561,7 +560,7 @@ "prefs-rc": "Slédné edicje", "prefs-watchlist": "Lësta ùzérónëch artiklów", "prefs-watchlist-days": "Wielëna dniów dlô wëskrzëniwaniô na lësce ùzérónëch artiklów:", - "prefs-watchlist-edits": "Maksymalnô lëczba edicëjów do pòkazaniô w rozszérzoné lësce ùzérónëch artiklów:", + "prefs-watchlist-edits": "Maksymalnô wielëna edicëjów do wëskrzënieniô w lësce ùzérónych artiklów:", "prefs-misc": "Jine", "saveprefs": "Zapiszë", "prefs-editing": "Edicëjô", diff --git a/languages/i18n/de.json b/languages/i18n/de.json index a67bc9c05d..db8d953c96 100644 --- a/languages/i18n/de.json +++ b/languages/i18n/de.json @@ -1729,6 +1729,25 @@ "uploadstash-refresh": "Liste der Dateien aktualisieren", "uploadstash-thumbnail": "Vorschaubild ansehen", "uploadstash-exception": "Upload konnte nicht gespeichert werden ($1): „$2“.", + "uploadstash-bad-path": "Der Pfad ist nicht vorhanden.", + "uploadstash-bad-path-invalid": "Der Pfad ist nicht gültig.", + "uploadstash-bad-path-unknown-type": "Unbekannter Typ „$1“.", + "uploadstash-bad-path-unrecognized-thumb-name": "Nicht erkannter Vorschaubildname.", + "uploadstash-bad-path-no-handler": "Es wurde kein Verarbeitungsprogramm für den MIME-Typ $1 der Datei $2 gefunden.", + "uploadstash-bad-path-bad-format": "Der Schlüssel „$1“ ist nicht in einem passenden Format.", + "uploadstash-file-not-found": "Der Schlüssel „$1“ wurde nicht im Speicher gefunden.", + "uploadstash-file-not-found-no-thumb": "Das Vorschaubild konnte nicht abgerufen werden.", + "uploadstash-file-not-found-no-local-path": "Kein lokaler Pfad für das skalierte Element.", + "uploadstash-file-not-found-no-object": "Es kann kein lokales Dateiobjekt für das Vorschaubild erstellt werden.", + "uploadstash-file-not-found-no-remote-thumb": "Das Abrufen des Vorschaubildes ist fehlgeschlagen: $1\nURL: $2", + "uploadstash-file-not-found-missing-content-type": "Fehlender Inhaltstyp-Header.", + "uploadstash-file-not-found-not-exists": "Der Pfad konnte nicht gefunden werden oder die Datei ist nicht eindeutig.", + "uploadstash-file-too-large": "Es kann keine Datei angeboten werden, die größer als $1 Bytes ist.", + "uploadstash-not-logged-in": "Es ist kein Benutzer angemeldet. Dateien müssen zu Benutzern gehören.", + "uploadstash-wrong-owner": "Diese Datei ($1) gehört nicht dem aktuellen Benutzer.", + "uploadstash-no-such-key": "Kein entsprechender Schlüssel ($1). Entfernen nicht möglich.", + "uploadstash-no-extension": "Die Erweiterung hat einen Wert von null.", + "uploadstash-zero-length": "Die Datei hat eine Größe von null.", "invalid-chunk-offset": "Ungültiger Startpunkt", "img-auth-accessdenied": "Zugriff verweigert", "img-auth-nopathinfo": "Die Angabe PATH_INFO fehlt.\nDer Server ist nicht dafür eingerichtet, diese Information weiterzugeben.\nSie könnte CGI-gestützt sein und kann daher „img_auth“ (Authentifizierung des Dateiaufrufs) nicht unterstützen.\nSiehe auch https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Image_Authorization (englisch).", @@ -2154,7 +2173,7 @@ "emailccsubject": "Kopie deiner Nachricht an $1: $2", "emailsent": "E-Mail verschickt", "emailsenttext": "Deine E-Mail wurde verschickt.", - "emailuserfooter": "Diese E-Mail wurde von „$1“ an „{{GENDER:$2|$2}}“ durch die Funktion „{{int:emailuser|$2}}“ bei {{SITENAME}} {{GENDER:$1|gesendet}}. Falls {{GENDER:$2|du}} auf diese E-Mail antwortest, wird sie direkt an {{GENDER:$1|den Originalabsender|die Originalabsenderin}} gesendet. Dabei erfährt {{GENDER:$1|er|sie}} {{GENDER:$2|deine}} E-Mail-Adresse.", + "emailuserfooter": "Diese E-Mail wurde von „$1“ an „{{GENDER:$2|$2}}“ durch die Funktion „E-Mail an {{GENDER:$2|diesen Benutzer|diese Benutzerin}}“ bei {{SITENAME}} {{GENDER:$1|gesendet}}. Falls {{GENDER:$2|du}} auf diese E-Mail antwortest, wird sie direkt an {{GENDER:$1|den Originalabsender|die Originalabsenderin}} gesendet. Dabei erfährt {{GENDER:$1|er|sie}} {{GENDER:$2|deine}} E-Mail-Adresse.", "usermessage-summary": "Systemnachricht gespeichert.", "usermessage-editor": "System-Messenger", "usermessage-template": "MediaWiki:Benutzernachricht", diff --git a/languages/i18n/el.json b/languages/i18n/el.json index 9addae6d14..d19411130d 100644 --- a/languages/i18n/el.json +++ b/languages/i18n/el.json @@ -54,7 +54,8 @@ "Thodoris", "Ftsalamp", "Kostas20142", - "Nikosgranturismogt" + "Nikosgranturismogt", + "KATRINE1992" ] }, "tog-underline": "Υπογράμμιση συνδέσμων:", @@ -91,6 +92,7 @@ "tog-watchlisthideminor": "Απόκρυψη των επεξεργασιών μικρής σημασίας από τη λίστα παρακολούθησης", "tog-watchlisthideliu": "Απόκρυψη επεξεργασιών συνδεδεμένων χρηστών από τη λίστα παρακολούθησης", "tog-watchlistreloadautomatically": "Φορτώσετε εκ νέου η λίστα παρακολούθησής αυτόματα κάθε φορά που ένα φίλτρο έχει αλλάξει (Απαιτείται JavaScript)", + "tog-watchlistunwatchlinks": "Προσθέσετε άμεσους συνδέσμους μη παρακολούθησης/παρακολούθησης για να παρακολουθείτε εγγραφές (απαιτείται JavaScript για την λειτουργική στάθμιση)", "tog-watchlisthideanons": "Απόκρυψη επεξεργασιών ανωνύμων χρηστών από τη λίστα παρακολούθησης", "tog-watchlisthidepatrolled": "Απόκρυψη ελεγμένων επεξεργασιών από τη λίστα παρακολούθησης", "tog-watchlisthidecategorization": "Απόκρυψη κατηγοριοποίησης σελίδων", @@ -601,6 +603,9 @@ "passwordreset-emailelement": "Όνομα χρήστη: \n$1\n\nΠροσωρινός κωδικός πρόσβασης:\n$2", "passwordreset-emailsentemail": "Αν αυτή η διεύθυνση ηλεκτρονικού ταχυδρομείου συνδέεται με το λογαριασμό σας, τότε θα σας αποσταλεί μήνυμα ηλεκτρονικού ταχυδρομείου για την επαναφορά του κωδικού πρόσβασης.", "passwordreset-emailsentusername": "Αν υπάρχει μια διεύθυνση ηλεκτρονικού ταχυδρομείου που συνδέεται με αυτό το όνομα χρήστη, τότε θα σας αποσταλεί ένα μήνυμα ηλεκτρονικού ταχυδρομείου για την επαναφορά του κωδικού πρόσβασης.", + "passwordreset-nocaller": "Πρέπει να γίνει κλήση", + "passwordreset-nosuchcaller": "Δεν υπάρχει κλήση : $1", + "passwordreset-ignored": "Δεν έγινε ανάκτηση κωδικού πρόσβασης. Μήπως δεν υπήρξε προμηθευτής;", "passwordreset-invalidemail": "Μη έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου", "passwordreset-nodata": "Δεν δόθηκε όνομα χρήστη ή διεύθυνση email.", "changeemail": "Αλλαγή ή αφαίρεση της διεύθυνσης ηλεκτρονικού ταχυδρομείου", @@ -710,6 +715,7 @@ "yourtext": "Το κείμενό σας", "storedversion": "Αποθηκευμένη έκδοση", "editingold": "'''Προειδοποίηση: Επεξεργάζεστε μια παλιότερη αναθεώρηση αυτής της σελίδας.'''\nΑν την αποθηκεύσετε, όσες αλλαγές έχουν γίνει μετά από αυτή την αναθεώρηση θα χαθούν.", + "unicode-support-fail": "Φαίνεται πως ο περιηγητής σας δεν υποστηρίζει το Unicode. Απαιτείται η επεξεργασία σελίδων, έτσι η επεξεργασμένη σελίδα δεν αποθηκεύτηκε.", "yourdiff": "Διαφορές", "copyrightwarning": "Παρακαλούμε σημειώστε ότι όλες οι συνεισφορές στον ιστότοπο {{SITENAME}} θεωρούνται ότι δημοσιεύονται σύμφωνα με την $2 (βλ. $1 για λεπτομέρειες).\nΑν δεν επιθυμείτε τα κείμενά σας να τα επεξεργάζονται ανηλεώς άλλοι χρήστες και να τα διαδίδουν κατά βούληση, τότε να μην τα υποβάλλετε εδώ.
Μας υπόσχεστε επίσης ότι αυτό το γράψατε μόνοι σας ή το αντιγράψατε από κάποια ελεύθερη πηγή ως κοινό κτήμα ή κάτι ανάλογο.\nΜην υποβάλλετε δουλειά που προστατεύεται από πνευματικά δικαιώματα χωρίς άδεια!", "copyrightwarning2": "Σημειώστε ότι όλες οι συνεισφορές στον ιστότοπο {{SITENAME}} μπορούν να υποστούν επεξεργασία, να αλλαχθούν, ή να αφαιρεθούν από άλλους συνεισφέροντες. Αν δεν θέλετε τα γραπτά σας να υποστούν επεξεργασία κατά βούληση, τότε μην τα τοποθετήσετε σε αυτό το χώρο.
\nΕπίσης μας υπόσχεστε πως ό,τι γράφετε είναι δικό σας, ή αντιγραμμένο από μια πηγή που είναι κοινό κτήμα, ή μια παρόμοια ελεύθερη πηγή (δείτε $1 για λεπτομέρειες).\n'''ΠΑΡΑΚΑΛΟΥΜΕ ΝΑ ΜΗΝ ΤΟΠΟΘΕΤΕΙΤΕ ΠΝΕΥΜΑΤΙΚΑ ΚΑΤΟΧΥΡΩΜΕΝΟ ΕΡΓΟ ΧΩΡΙΣ ΑΔΕΙΑ!'''", @@ -752,6 +758,8 @@ "invalid-content-data": "Μη έγκυρα δεδομένα περιεχομένου", "content-not-allowed-here": "Το περιεχόμενο «$1» δεν επιτρέπεται στη σελίδα [[$2]]", "editwarning-warning": "Αφήνοντας αυτή τη σελίδα μπορεί να έχει ως συνέπεια να χαθούν κάποιες αλλαγές που έχετε κάνει.\nΑν έχετε συνδεθεί, μπορείτε να απενεργοποιήσετε αυτή την προειδοποίηση στην ενότητα \"{{int:prefs-editing}}\" των προτιμήσεών σας.", + "editpage-invalidcontentmodel-title": "Δεν υποστηρίχτηκε το μοντέλο περιεχομένου", + "editpage-invalidcontentmodel-text": "Το μοντέλο ''$1'' δεν υποστηρίχτηκε.", "editpage-notsupportedcontentformat-title": "Μορφή περιεχομένου που δεν υποστηρίζεται", "editpage-notsupportedcontentformat-text": "Η μορφή του περιεχομένου $1 δεν υποστηρίζεται από το μοντέλο περιεχομένου $2.", "content-model-wikitext": "κείμενο wiki", @@ -760,6 +768,8 @@ "content-model-css": "CSS", "content-json-empty-object": "Κενό αντικείμενο", "content-json-empty-array": "Κενός πίνακα", + "deprecated-self-close-category": "Σελίδες που χρησιμοποιούν μη έγκυρα tags HTML που κλείνουν αυτόματα", + "deprecated-self-close-category-desc": "Η σελίδα περιέχει HTML tags που κλείνουν αυτόματα, όπως <b/> ή <span/>. Η λειτουργία τους θα αλλάξει σύντομα για να συνάδει με τις προδιαγραφές HTML5, για αυτό και η χρήση τους στο wikitext υποτιμήθηκε.", "duplicate-args-warning": "Προειδοποίηση: Η σελίδα [[:$1]] καλεί το πρότυπο [[:$2]] με περισσότερες από μία τιμές για την παράμετρο \"$3\". Μόνο η τελευταία παρεχόμενη τιμή θα χρησιμοποιηθεί.", "duplicate-args-category": "Σελίδες που χρησιμοποιούν διπλές παραμέτρους σε κλήσεις προτύπων", "duplicate-args-category-desc": "Η σελίδα περιέχει κλήσεις πρότυπων που χρησιμοποιούν διπλές παραμέτρους, όπως {{foo|bar=1|bar=2}} or {{foo|bar|1=baz}}.", @@ -770,6 +780,9 @@ "post-expand-template-argument-warning": "'''Προειδοποίηση:''' Αυτή η σελίδα περιέχει τουλάχιστον μια παράμετρο προτύπου η οποία έχει πολύ μεγάλο μέγεθος ανάπτυξης.\nΑυτές οι παράμετροι έχουν παραλειφθεί.", "post-expand-template-argument-category": "Σελίδες που περιέχουν παραλειπόμενες παραμέτρους προτύπων", "parser-template-loop-warning": "Εντοπίστηκε πρότυπο σε βρόχο: [[$1]]", + "template-loop-category": "Μη προσβάσιμες σελίδες", + "template-loop-category-desc": "Η σελίδα δεν είναι προσβάσιμη, πχ ένα πρότυπο αναδρομικό", + "template-loop-warning": "Προειδοποίηση: Οι αναδρομές σε αυτήν την σελίδα {{:$1}}που μπλοκάρει το μοντέλο (σαν ατέλειωτη αναδρομική κλήση).", "parser-template-recursion-depth-warning": "Το όριο του μάκρους της αναδρομής του πρότυπου έχει ξεπεραστεί ($1)", "language-converter-depth-warning": "Το όριο βάθους του μετατροπέα γλώσσας έχει ξεπεραστεί ($1)", "node-count-exceeded-category": "Σελίδες υπέρβασης του αριθμού κόμβων", @@ -898,8 +911,10 @@ "mergehistory-fail-bad-timestamp": "Η χρονική σήμανση δεν είναι έγκυρη.", "mergehistory-fail-invalid-source": "Η πηγή σελίδας δεν είναι έγκυρη.", "mergehistory-fail-invalid-dest": "Η σελίδα προορισμού δεν είναι έγκυρη.", + "mergehistory-fail-no-change": "Η συγχώνευση του ιστορικού δεν συγχώνευσε επαναλήψεις. Παρακαλώ ελέγξετε ξανά την σελίδα και τις χρονικές παραμέτρους.", "mergehistory-fail-permission": "Μη επαρκή δικαιώματα για τη συγχώνευση του ιστορικού.", "mergehistory-fail-self-merge": "Η πηγή και ο προορισμός των σελίδων είναι ο ίδιος.", + "mergehistory-fail-timestamps-overlap": "Οι αρχικές επαναλήψεις επικαλύπτουν ή ακολουθούν μετά τις επαναλήψεις.", "mergehistory-fail-toobig": "Δεν είναι δυνατό να πραγματοποιηθεί η συγχώνευση ιστορικών, καθώς πάνω από $1 {{PLURAL:$1|αναθεώρηση|αναθεωρήσεις}} θα μετακινούνταν.", "mergehistory-no-source": "Η σελίδα πηγής $1 δεν υπάρχει.", "mergehistory-no-destination": "Η σελίδα προορισμού $1 δεν υπάρχει.", @@ -1036,7 +1051,8 @@ "timezoneregion-europe": "Ευρώπη", "timezoneregion-indian": "Ινδικός Ωκεανός", "timezoneregion-pacific": "Ειρηνικός Ωκεανός", - "allowemail": "Ενεργοποίηση παραλαβής μηνύματος ηλεκτρονικού ταχυδρομείου από άλλους χρήστες", + "allowemail": "Να επιτρέπεται σε άλλους χρήστες να μου στέλνουν email", + "email-blacklist-label": "Απαγορεύστε σε αυτούς τους χρήστες να μου στέλνουν email:", "prefs-searchoptions": "Αναζήτηση", "prefs-namespaces": "Περιοχές ονομάτων", "default": "προεπιλογή", @@ -1078,6 +1094,7 @@ "prefs-editor": "Συντάκτης", "prefs-preview": "Προεπισκόπηση", "prefs-advancedrc": "Προηγμένες επιλογές", + "prefs-opt-out": "Optar por no los mejoramientos", "prefs-advancedrendering": "Προηγμένες επιλογές", "prefs-advancedsearchoptions": "Προηγμένες επιλογές", "prefs-advancedwatchlist": "Προηγμένες επιλογές", @@ -1093,7 +1110,9 @@ "userrights-user-editname": "Δηλώστε όνομα χρήστη:", "editusergroup": "Φόρτωση ομάδων χρηστών", "editinguser": "Αλλαγή δικαιωμάτων χρήστη {{GENDER:$1|του χρήστη|της χρήστριας}} [[User:$1|$1]] $2", + "viewinguserrights": "Ver a los derechos del usuario {{GENDER:$1|user}} {{Usuario:$1|$1}}", "userrights-editusergroup": "Επεξεργασία ομάδων χρηστών", + "userrights-viewusergroup": "Ver a los grupos {{GENDER: 1|user}}", "saveusergroups": "Αποθήκευση {{GENDER:$1|ομάδων}} χρηστών", "userrights-groupsmember": "Μέλος της ομάδας:", "userrights-groupsmember-auto": "Αυτονόητο μέλος του:", @@ -1111,6 +1130,7 @@ "userrights-expiry-options": "1 ημέρα:1 day,1 εβδομάδα:1 week,1 μήνας:1 month,3 μήνες:3 months,6 μήνες:6 months,1 έτος:1 year", "userrights-invalid-expiry": "Ο χρόνος λήξης για την ομάδα «$1» δεν είναι έγκυρος.", "userrights-expiry-in-past": "Ο χρόνος λήξης για την ομάδα «$1» είναι στο παρελθόν.", + "userrights-cannot-shorten-expiry": "No puede determinar a la expiracion de la participacion al grupo ''$1''. Solamente los usuarios que tienen permiso de agregar y remover este grupo pueden determinar el tiempo de", "userrights-conflict": "Σύγκρουση αλλαγών στα δικαιώματα χρήστη! Παρακαλούμε επανεξετάστε και επικυρώστε τις αλλαγές σας.", "group": "Ομάδα:", "group-user": "Χρήστες", @@ -1300,6 +1320,8 @@ "recentchanges-legend": "Επιλογές πρόσφατων αλλαγών", "recentchanges-summary": "Παρακολουθήστε τις πιο πρόσφατες αλλαγές στο wiki σε αυτή τη σελίδα.", "recentchanges-noresult": "Χωρίς αλλαγές κατά τη διάρκεια της συγκεκριμένης χρονικής περιόδου, με αυτά τα κριτήρια.", + "recentchanges-timeout": "Ο χρόνος της αναζήτησης τελείωσε. Μπορεί να θέλετε να δοκιμάσετε διαφορετικές παραμέτρους αναζήτησης.", + "recentchanges-network": "Λόγω ενός τεχνικού λάθους, δεν μπόρεσαν να προβληθούν τα αποτελέσματα. Παρακαλώ προσπαθήστε να ανανεώσετε την σελίδα.", "recentchanges-feed-description": "Παρακολούθηση των πιο πρόσφατων αλλαγών στο wiki σε αυτή τη ροή.", "recentchanges-label-newpage": "Αυτή η επεξεργασία δημιούργησε μια νέα σελίδα", "recentchanges-label-minor": "Αυτή είναι μια μικροεπεξεργασία", @@ -1310,7 +1332,8 @@ "recentchanges-legend-newpage": "{{int:recentchanges-label-newpage}} (δείτε [[Special:NewPages|κατάλογος νέων σελίδων]])", "recentchanges-legend-plusminus": "(±123)", "recentchanges-submit": "Προβολή", - "rcfilters-other-review-tools": "Άλλα εργαλεία επιθεώρησης", + "rcfilters-tag-remove": "Διαγράψετε το '$1'", + "rcfilters-other-review-tools": "Άλλα εργαλεία ελέγχου", "rcfilters-group-results-by-page": "Ομαδοποίηση αποτελεσμάτων ανά σελίδα", "rcfilters-grouping-title": "Ομαδοποίηση", "rcfilters-activefilters": "Ενεργά φίλτρα", @@ -1384,7 +1407,6 @@ "rcfilters-filter-logactions-label": "Καταγραφόμενες ενέργειες", "rcfilters-filter-logactions-description": "Διαχειριστικές ενέργειες, δημιουργίες λογαριασμών, διαγραφές σελίδων, ανεβάσματα αρχείων…", "rcfilters-exclude-button-off": "Εξαίρεση επιλεγμένων", - "rcfilters-view-advanced-filters-label": "Προχωρημένα φίλτρα", "rcfilters-view-tags": "Επεξεργασίες με ετικέτες", "rcfilters-view-namespaces-tooltip": "Φιλτράρισμα αποτελεσμάτων κατά ονοματοχώρο", "rcnotefrom": "Παρακάτω {{PLURAL:$5|είναι η αλλαγή|είναι οι αλλαγές}} από $3, $4 (έως $1 που εμφανίζεται).", @@ -1611,6 +1633,19 @@ "uploadstash-errclear": "Η εκκαθάριση των αρχείων απέτυχε.", "uploadstash-refresh": "Ανανεώσετε τη λίστα των αρχείων", "uploadstash-thumbnail": "προβολή μικρογραφίας", + "uploadstash-bad-path": "Δεν υπάρχει τρόπος", + "uploadstash-bad-path-invalid": "Ο τρόπος δεν είναι έγκυρος.", + "uploadstash-bad-path-unknown-type": "Άγνωστος τύπος ''$1''.", + "uploadstash-bad-path-bad-format": "Ο κωδικός ''$1' δεν έχει τον κατάλληλο τύπο.", + "uploadstash-file-not-found-no-thumb": "Δεν μπόρεσε να αποκτήσει το ''thumbnail''.", + "uploadstash-file-not-found-missing-content-type": "Λείπει τίτλος περιεχομένου", + "uploadstash-file-not-found-not-exists": "Δεν μπορεί να βρει τον τρόπο, ή όχι έναν κανονικό φάκελλο.", + "uploadstash-file-too-large": "Δεν δέχεται έναν φάκελλο μεγαλύτερο από $1 bytes.", + "uploadstash-not-logged-in": "Δεν υπάρχει συνδεδεμένος χρήστης,οι φάκελλοι πρέπει να ανήκουν σε χρήστες.", + "uploadstash-wrong-owner": "Αυτός ο φάκελλος ($1) δεν ανήκει στον παρόντα χρήστη.", + "uploadstash-no-such-key": "Δε υπάρχει τέτοιος κωδικός ($1), δεν μπορεί να αφαιρέσει.", + "uploadstash-no-extension": "Καμία προέκταση", + "uploadstash-zero-length": "Ο φάκελλος είναι κενός.", "invalid-chunk-offset": "Άκυρο κομμάτι όφσετ", "img-auth-accessdenied": "Δεν επετράπη η πρόσβαση", "img-auth-nopathinfo": "Λείπει το PATH_INFO.\nΟ διακομιστής σας δεν είναι ρυθμισμένος για να περάσει αυτές τις πληροφορίες.\nΜπορεί να είναι βασισμένος σε CGI και να μην υποστηρίζει img_atuh.\nΔείτε https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Image_Authorization", diff --git a/languages/i18n/en.json b/languages/i18n/en.json index 27bc813eb9..b463d95b04 100644 --- a/languages/i18n/en.json +++ b/languages/i18n/en.json @@ -1382,6 +1382,7 @@ "rcfilters-savedqueries-apply-and-setdefault-label": "Create default filter", "rcfilters-savedqueries-cancel-label": "Cancel", "rcfilters-savedqueries-add-new-title": "Save current filter settings", + "rcfilters-savedqueries-already-saved": "These filters are already saved", "rcfilters-restore-default-filters": "Restore default filters", "rcfilters-clear-all-filters": "Clear all filters", "rcfilters-show-new-changes": "View newest changes", @@ -1722,6 +1723,25 @@ "uploadstash-refresh": "Refresh the list of files", "uploadstash-thumbnail": "view thumbnail", "uploadstash-exception": "Could not store upload in the stash ($1): \"$2\".", + "uploadstash-bad-path": "Path doesn't exist.", + "uploadstash-bad-path-invalid": "Path is not valid.", + "uploadstash-bad-path-unknown-type": "Unknown type \"$1\".", + "uploadstash-bad-path-unrecognized-thumb-name": "Unrecognized thumb name.", + "uploadstash-bad-path-no-handler": "No handler found for mime $1 of file $2.", + "uploadstash-bad-path-bad-format": "Key \"$1\" is not in a proper format.", + "uploadstash-file-not-found": "Key \"$1\" not found in stash.", + "uploadstash-file-not-found-no-thumb": "Could not obtain thumbnail.", + "uploadstash-file-not-found-no-local-path": "No local path for scaled item.", + "uploadstash-file-not-found-no-object": "Couldn't create local file object for thumbnail.", + "uploadstash-file-not-found-no-remote-thumb": "Fetching thumbnail failed: $1\nURL = $2", + "uploadstash-file-not-found-missing-content-type": "Missing content-type header.", + "uploadstash-file-not-found-not-exists": "Cannot find path, or not a plain file.", + "uploadstash-file-too-large": "Cannot serve a file larger than $1 bytes.", + "uploadstash-not-logged-in": "No user is logged in, files must belong to users.", + "uploadstash-wrong-owner": "This file ($1) doesn't belong to the current user.", + "uploadstash-no-such-key": "No such key ($1), cannot remove.", + "uploadstash-no-extension": "Extension is null.", + "uploadstash-zero-length": "File is zero length.", "invalid-chunk-offset": "Invalid chunk offset", "img-auth-accessdenied": "Access denied", "img-auth-nopathinfo": "Missing PATH_INFO.\nYour server is not set up to pass this information.\nIt may be CGI-based and cannot support img_auth.\nSee https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Image_Authorization.", diff --git a/languages/i18n/es.json b/languages/i18n/es.json index 348334a5db..5044becabf 100644 --- a/languages/i18n/es.json +++ b/languages/i18n/es.json @@ -164,7 +164,8 @@ "Javier", "Luisangelrg", "Pierpao", - "Ohlila" + "Ohlila", + "KATRINE1992" ] }, "tog-underline": "Subrayar los enlaces:", @@ -1429,7 +1430,8 @@ "recentchanges-legend": "Opciones sobre cambios recientes", "recentchanges-summary": "Sigue los cambios más recientes del wiki en esta página.", "recentchanges-noresult": "No hubo cambios que respondan a esos criterios durante el período seleccionado.", - "recentchanges-network": "Debido a un problema técnico, ningún resultado ha sido cargado. Trata de volver a cargar la página.", + "recentchanges-timeout": "Se agotó el tiempo de espera de esta búsqueda. Puede que quieras probar con otros parámetros de búsqueda.", + "recentchanges-network": "No se cargó ningún resultado debido a un problema técnico. Prueba a volver a cargar la página.", "recentchanges-feed-description": "Realiza un seguimiento de los cambios más recientes en el wiki con este canal.", "recentchanges-label-newpage": "Esta edición creó una página", "recentchanges-label-minor": "Esta es una edición menor", @@ -1616,6 +1618,7 @@ "uploadbtn": "Subir un archivo", "reuploaddesc": "Cancelar subida y volver al formulario", "upload-tryagain": "Enviar la descripción modificada del archivo", + "upload-tryagain-nostash": "Enviar el archivo cargado de nuevo y la descripción modificada", "uploadnologin": "No has iniciado sesión", "uploadnologintext": "Tienes que $1 para subir archivos.", "upload_directory_missing": "El directorio de subida de archivos ($1) no existe, y el servidor no ha podido crearlo.", @@ -1675,6 +1678,7 @@ "file-deleted-duplicate-notitle": "Un archivo idéntico a este ha sido borrado con anterioridad, y el título ha sido suprimido. Deberías contactar con alguien capaz de ver los datos de archivos borrados para que revise esta situación antes de proceder a subir de nuevo este archivo.", "uploadwarning": "Advertencia de subida de archivo", "uploadwarning-text": "Modifica la descripción del archivo abajo indicada e inténtalo de nuevo.", + "uploadwarning-text-nostash": "Carga el archivo una vez más, modifica la descripción siguiente e inténtalo de nuevo.", "savefile": "Guardar archivo", "uploaddisabled": "Se desactivó la subida de archivos.", "copyuploaddisabled": "Se desactivó la subida de archivos mediante URL.", @@ -1795,6 +1799,22 @@ "uploadstash-refresh": "Actualizar la lista de archivos", "uploadstash-thumbnail": "ver miniatura", "uploadstash-exception": "No se pudo almacenar la carga en el área provisional ($1): «$2».", + "uploadstash-bad-path": "La ruta no existe.", + "uploadstash-bad-path-invalid": "La ruta no es válida.", + "uploadstash-bad-path-unknown-type": "El tipo «$1» es desconocido.", + "uploadstash-bad-path-no-handler": "No se encontró ningún manejador para el MIME $1 del archivo $2.", + "uploadstash-bad-path-bad-format": "El formato de la clave «$1» es incorrecto.", + "uploadstash-file-not-found-no-thumb": "No se pudo obtener la miniatura.", + "uploadstash-file-not-found-no-local-path": "Ningun mood local para objeto escalado.", + "uploadstash-file-not-found-no-object": "No se pudo crear el objeto del archivo local para la miniatura.", + "uploadstash-file-not-found-missing-content-type": "Una etiqueta de contenido falta", + "uploadstash-file-not-found-not-exists": "No puede encontrar el camino, o no un fichero simple.", + "uploadstash-file-too-large": "No puede contenir un fichero mas ggrande que $ bytes", + "uploadstash-not-logged-in": "No ha accedido ningún usuario; los archivos deben pertenecer a un usuario.", + "uploadstash-wrong-owner": "Este archivo ($1) no pertenece al usuario actual.", + "uploadstash-no-such-key": "No existe esta clave ($1); no se puede eliminar.", + "uploadstash-no-extension": "No hay ninguna extension", + "uploadstash-zero-length": "El fichero esta vacio", "invalid-chunk-offset": "Desplazamiento inválido del fragmento", "img-auth-accessdenied": "Acceso denegado", "img-auth-nopathinfo": "Falta PATH_INFO.\nEl servidor no está configurado para proporcionar esta información.\nEs posible que esté basado en CGI y que no sea compatible con img_auth.\nConsulte https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Image_Authorization.", @@ -3667,6 +3687,8 @@ "compare-title-not-exists": "El título especificado no existe.", "compare-revision-not-exists": "La revisión especificada no existe.", "diff-form": "Diferencias", + "diff-form-oldid": "Id. de revisión anterior (opcional)", + "diff-form-revid": "Identificador de revisión de las diferencias", "diff-form-submit": "Mostrar diferencias", "permanentlink": "Enlace permanente", "permanentlink-revid": "Id. de revisión", diff --git a/languages/i18n/fa.json b/languages/i18n/fa.json index 19ba617c19..4df5481b7b 100644 --- a/languages/i18n/fa.json +++ b/languages/i18n/fa.json @@ -1329,6 +1329,7 @@ "recentchanges-summary": "آخرین تغییرات ویکی را در این صفحه پی‌گیری کنید.", "recentchanges-noresult": "در فاصله زمانی ارائه شده هیچ تغییری با این معیارهای صورت نگرفته است", "recentchanges-timeout": "این جستجو زمانش تمام شد. اگر مایلید کلیدواژه‌های دیگری را جستجو کنید.", + "recentchanges-network": "به دلیل خطای فنی، نتیجه‌ای بدست نیامد. لطفاً برای تازه‌سازی صفحخ مجدداُ تلاش کنید.", "recentchanges-feed-description": "آخرین تغییرات ویکی را در این خوراک پی‌گیری کنید.", "recentchanges-label-newpage": "این ویرایش صفحه‌ای تازه ایجاد کرد", "recentchanges-label-minor": "این یک ویرایش جزئی است", @@ -1370,7 +1371,7 @@ "rcfilters-restore-default-filters": "بازگردانی پالایه‌های پیش‌فرض", "rcfilters-clear-all-filters": "پاک‌کردن تمام پالایه‌ها", "rcfilters-show-new-changes": "دیدن جدیدترین تغییرات", - "rcfilters-search-placeholder": "پالایش تغییرات اخیر (جستجو یا شروع به تایپ)", + "rcfilters-search-placeholder": "پالایش تغییرات (استفاده از منو یا جستجو برای نام پالایه)", "rcfilters-invalid-filter": "پالایهٔ نامعتبر", "rcfilters-empty-filter": "پالایه‌ای فعال نیست. همهٔ مشارکت‌های دیده می‌شوند.", "rcfilters-filterlist-title": "پالایه‌ها", @@ -1447,7 +1448,6 @@ "rcfilters-tag-prefix-namespace-inverted": ":نه $1", "rcfilters-exclude-button-off": "مستثنی کردن انتخاب‌ها", "rcfilters-exclude-button-on": "مستثنی کردن انتخاب‌ها", - "rcfilters-view-advanced-filters-label": "پالایه‌های پیشرفته", "rcfilters-view-tags": "ویرایش‌های برچسب‌شده", "rcfilters-view-namespaces-tooltip": "نتیجهٔ پالایه بر پایهٔ فضای نام", "rcfilters-view-tags-tooltip": "نتایج پالایه با کمک برچسب‌های ویرایش", diff --git a/languages/i18n/fi.json b/languages/i18n/fi.json index 7e0407350b..2d666038df 100644 --- a/languages/i18n/fi.json +++ b/languages/i18n/fi.json @@ -710,6 +710,7 @@ "yourtext": "Oma tekstisi", "storedversion": "Tallennettu versio", "editingold": "'''Varoitus: Olet muokkaamassa vanhaa versiota tämän sivun tekstistä. Jos tallennat sen, kaikki tämän version jälkeen tehdyt muutokset katoavat.'''", + "unicode-support-fail": "Vaikuttaa siltä, että selaimesi ei tue Unicodea. Sitä tarvitaan sivujen muokkaukseen, joten muokkaustasi ei tallennettu.", "yourdiff": "Eroavaisuudet", "copyrightwarning": "'''Muutoksesi astuvat voimaan välittömästi.''' Kaikki {{GRAMMAR:illative|{{SITENAME}}}} tehtävät tuotokset katsotaan julkaistuksi $2 -lisenssin mukaisesti ($1). Jos et halua, että kirjoitustasi muokataan armottomasti ja uudelleenkäytetään vapaasti, älä tallenna kirjoitustasi. Tallentamalla muutoksesi lupaat, että kirjoitit tekstisi itse, tai kopioit sen jostain vapaasta lähteestä. '''ÄLÄ KÄYTÄ TEKIJÄNOIKEUDEN ALAISTA MATERIAALIA ILMAN LUPAA!'''", "copyrightwarning2": "Huomaa, että kuka tahansa voi muokata, muuttaa ja poistaa kaikkia sivustolle tekemiäsi lisäyksiä ja muutoksia. Muokkaamalla sivustoa luovutat sivuston käyttäjille tämän oikeuden ja takaat, että lisäämäsi aineisto on joko itse kirjoittamaasi tai peräisin jostain vapaasta lähteestä. Lisätietoja sivulla $1. '''TEKIJÄNOIKEUDEN ALAISEN MATERIAALIN KÄYTTÄMINEN ILMAN LUPAA ON EHDOTTOMASTI KIELLETTYÄ!'''", @@ -1307,6 +1308,8 @@ "recentchanges-legend": "Tuoreiden muutosten asetukset", "recentchanges-summary": "Tällä sivulla voi seurata tuoreita tähän wikiin tehtyjä muutoksia.", "recentchanges-noresult": "Ei muutoksia, jotka täyttävät nämä kriteerit valitun ajanjakson aikana.", + "recentchanges-timeout": "Tämä haku aikakatkaistiin. Saatat haluta kokeilla toisia hakuehtoja.", + "recentchanges-network": "Teknisen virheen vuoksi tuloksia ei voitu ladata. Yritä sivun päivittämistä.", "recentchanges-feed-description": "Tällä sivulla voi seurata tuoreita {{GRAMMAR:illative|{{SITENAME}}}} tehtyjä muutoksia.", "recentchanges-label-newpage": "Tämä muutos loi uuden sivun", "recentchanges-label-minor": "Tämä on pieni muutos", @@ -1348,7 +1351,7 @@ "rcfilters-restore-default-filters": "Palauta oletussuodattimet", "rcfilters-clear-all-filters": "Tyhjennä kaikki suodattimet", "rcfilters-show-new-changes": "Näytä uusimmat muutokset", - "rcfilters-search-placeholder": "Suodata tuoreita muutoksia (selaa tai ala kirjoittaa)", + "rcfilters-search-placeholder": "Suodata muutoksia (käytä valikkoa tai etsi suodattimen nimeä)", "rcfilters-invalid-filter": "Virheellinen suodatin", "rcfilters-empty-filter": "Ei aktiivisia suodattimia. Kaikki muutokset näytetään.", "rcfilters-filterlist-title": "Suodattimet", @@ -1400,6 +1403,8 @@ "rcfilters-filter-watchlist-notwatched-label": "Ei tarkkailulistalla", "rcfilters-filter-watchlist-notwatched-description": "Kaikki paitsi muutokset tarkkailulistallasi oleviin sivuihin.", "rcfilters-filtergroup-watchlistactivity": "Tarkkailulistan aktiivisuus", + "rcfilters-filter-watchlistactivity-unseen-label": "Näkemättömät muutokset", + "rcfilters-filter-watchlistactivity-seen-label": "Nähdyt muutokset", "rcfilters-filtergroup-changetype": "Muutoksen tyyppi", "rcfilters-filter-pageedits-label": "Sivun muokkaukset", "rcfilters-filter-pageedits-description": "Muokkaukset wikin sisältöön, keskusteluihin, luokkakuvauksiin…", @@ -1416,17 +1421,24 @@ "rcfilters-filter-lastrevision-label": "Viimeisin versio", "rcfilters-filter-lastrevision-description": "Vain viimeisin muutos sivulle.", "rcfilters-filter-previousrevision-label": "Ei viimeisin muutos", + "rcfilters-filter-previousrevision-description": "Kaikki muutokset, jotka eivät ole viimeisin versio.", "rcfilters-filter-excluded": "Poissuljettu", "rcfilters-tag-prefix-namespace-inverted": ":ei $1", "rcfilters-exclude-button-off": "Poissulje valitut", "rcfilters-exclude-button-on": "Poissuljetaan valitut", + "rcfilters-view-tags": "Merkatut muokkaukset", "rcfilters-view-namespaces-tooltip": "Suodata tuloksia nimiavaruuden mukaan", "rcfilters-view-tags-tooltip": "Suodata tuloksia käyttäen merkkauksia", + "rcfilters-view-return-to-default-tooltip": "Palaa suodattimien päävalikkon", + "rcfilters-view-tags-help-icon-tooltip": "Lue lisää merkatuista muutoksista", "rcfilters-liveupdates-button": "Live-päivitykset", "rcfilters-liveupdates-button-title-on": "Ota live-päivitykset pois käytöstä", + "rcfilters-liveupdates-button-title-off": "Näytä uudet muutokset niiden tapahtuessa", "rcfilters-watchlist-markseen-button": "Merkitse kaikki muutokset nähdyiksi", "rcfilters-watchlist-edit-watchlist-button": "Muokkaa tarkkailemiasi sivuja", "rcfilters-watchlist-showupdated": "Muutokset sivuihin, joilla et ole vieraillut sen jälkeen kun muutokset on tehty, on lihavoitu ja värimerkitty.", + "rcfilters-preference-label": "Piilota tuoreiden muutosten parannettu versio", + "rcfilters-preference-help": "Peruuttaa vuoden 2017 käyttöliittymän uudistuksen ja kaikki sen jälkeen lisätyt työkalut.", "rcnotefrom": "Alla ovat muutokset $3, $4 lähtien. (Enintään $1 näytetään.)", "rclistfromreset": "Tyhjennä ajankohdan valinta", "rclistfrom": "Näytä uudet muutokset $3 kello $2 alkaen", @@ -2384,7 +2396,9 @@ "blocklist": "Estetyt käyttäjät", "autoblocklist": "Automaattiset estot", "autoblocklist-submit": "Hae", + "autoblocklist-legend": "Automaattisten estojen lista", "autoblocklist-localblocks": "{{PLURAL:$1|Paikallinen automaattinen esto|Paikalliset automaattiset estot}}", + "autoblocklist-total-autoblocks": "Automaattisten estojen kokonaismäärä: $1", "autoblocklist-empty": "Automaattisten estojen lista on tyhjä.", "autoblocklist-otherblocks": "{{PLURAL:$1|Muu automaattinen esto|Muut automaattiset estot}}", "ipblocklist": "Estetyt käyttäjät", @@ -3520,7 +3534,9 @@ "compare-title-not-exists": "Määrittämääsi sivua ei ole.", "compare-revision-not-exists": "Määrittämääsi versiota ei ole.", "diff-form": "Eroavaisuudet", + "diff-form-submit": "Näytä muutokset", "permanentlink": "Pysyvä linkki", + "permanentlink-revid": "Versiotunniste", "dberr-problems": "Tällä sivustolla on teknisiä ongelmia.", "dberr-again": "Odota hetki ja lataa sivu uudelleen.", "dberr-info": "(Tietokantaan ei saada yhteyttä: $1)", @@ -3919,6 +3935,7 @@ "revid": "versio $1", "pageid": "sivun tunnistenumero $1", "gotointerwiki": "Lähdössä {{GRAMMAR:elative|{{SITENAME}}}}", + "gotointerwiki-invalid": "Annettu otsikko on virheellinen.", "gotointerwiki-external": "Olet lähdössä {{GRAMMAR:elative|{{SITENAME}}}} toiselle sivustolle [[$2]].\n\n'''[$1 Jatka osoitteeseen $1]'''", "undelete-cantedit": "Et voi palauttaa tätä sivua, koska sinulla ei ole oikeutta muokata tätä sivua.", "undelete-cantcreate": "Et voi palauttaa tätä sivua, koska tällä nimellä ei ole olemassaolevaa sivua eikä sinulla ole oikeutta luoda tätä sivua.", diff --git a/languages/i18n/fr.json b/languages/i18n/fr.json index 7454eb236c..fb22fc5683 100644 --- a/languages/i18n/fr.json +++ b/languages/i18n/fr.json @@ -1223,7 +1223,7 @@ "userrights": "Droits des utilisateurs", "userrights-lookup-user": "Sélectionner un utilisateur", "userrights-user-editname": "Entrez un nom d'utilisateur :", - "editusergroup": "Charger des groupes d’utilisateurs", + "editusergroup": "Afficher les groupes d’utilisateurs", "editinguser": "Modification des droits de l’{{GENDER:$1|utilisateur|utilisatrice}} [[User:$1|$1]] $2", "viewinguserrights": "Affichage des droits utilisateur de {{GENDER:$1|l’utilisateur|l’utilisatrice}} [[User:$1|$1]] $2", "userrights-editusergroup": "Modifier les groupes de l'utilisat{{GENDER:$1|eur|rice}}", @@ -1438,6 +1438,7 @@ "recentchanges-summary": "Suivez les changements les plus récents du wiki sur cette page.", "recentchanges-noresult": "Aucune modification correspondant à ces critères sur la période indiquée.", "recentchanges-timeout": "Cette recherche a dépassé le délai imparti. Vous pouvez vouloir essayer avec des paramètres de recherche différents.", + "recentchanges-network": "Aucun résultat ne peut être affiché du fait d’une erreur technique. Veuillez actualiser la page.", "recentchanges-feed-description": "Suivez les dernières modifications du wiki dans ce flux.", "recentchanges-label-newpage": "Cette modification a créé une nouvelle page", "recentchanges-label-minor": "Cette modification est mineure.", @@ -1808,6 +1809,25 @@ "uploadstash-refresh": "Actualiser la liste des fichiers", "uploadstash-thumbnail": "afficher la vignette", "uploadstash-exception": "Impossible de stocker le téléversement dans la réserve ($1) : « $2 ».", + "uploadstash-bad-path": "Le chemin n’existe pas.", + "uploadstash-bad-path-invalid": "Le chemin n’est pas valide.", + "uploadstash-bad-path-unknown-type": "Type « $1 » inconnu.", + "uploadstash-bad-path-unrecognized-thumb-name": "Nom de vignette non reconnu.", + "uploadstash-bad-path-no-handler": "Aucun gestionnaire trouvé pour le type MIME $1 du fichier $2.", + "uploadstash-bad-path-bad-format": "La clé « $1 » n’est pas dans un format correct.", + "uploadstash-file-not-found": "La clé « $1 » n’a pas été trouvée dans la réserve.", + "uploadstash-file-not-found-no-thumb": "Impossible d’obtenir une vignette.", + "uploadstash-file-not-found-no-local-path": "Aucun chemin local pour l’élément mis à l’échelle.", + "uploadstash-file-not-found-no-object": "Impossible de créer l’objet fichier local pour la vignette.", + "uploadstash-file-not-found-no-remote-thumb": "La récupération de la vignette a échoué : $1\nurl = $2\n.", + "uploadstash-file-not-found-missing-content-type": "Entête content-type manquant.", + "uploadstash-file-not-found-not-exists": "Impossible de trouver le chemin, ou bien ce n’est pas un fichier.", + "uploadstash-file-too-large": "Impossible de fournir un fichier pus gros que $1 octets.", + "uploadstash-not-logged-in": "Aucun utilisateur n’est connecté, les fichiers doivent appartenir à des utilisateurs.", + "uploadstash-wrong-owner": "Ce fichier ($1) n’appartient pas à l’utilisateur courant.", + "uploadstash-no-such-key": "Aucune clé semblable ($1), impossible de supprimer.", + "uploadstash-no-extension": "L’extension est nulle.", + "uploadstash-zero-length": "La taille du fichier est zéro.", "invalid-chunk-offset": "Offset de segment non valide", "img-auth-accessdenied": "Accès refusé", "img-auth-nopathinfo": "PATH_INFO manquant.\nVotre serveur n’est pas paramétré pour transmettre cette information.\nIl fonctionne peut-être en CGI et ne prend pas en charge img_auth.\nVoir : https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Image_Authorization.", diff --git a/languages/i18n/frr.json b/languages/i18n/frr.json index cd49c626c8..9b055aba6b 100644 --- a/languages/i18n/frr.json +++ b/languages/i18n/frr.json @@ -61,7 +61,6 @@ "underline-never": "Nimer", "underline-default": "Komt üüb dan browser uun", "editfont-style": "Skraftoort för di tekst uun't werkfial:", - "editfont-default": "Hinget faan browser-iinstelangen uf", "editfont-monospace": "Skraft mä en fääst tiakenbreetje", "editfont-sansserif": "Skraft saner seriifen (fiin onerstreger)", "editfont-serif": "Skraft mä seriifen (fiin onerstreger)", @@ -96,8 +95,8 @@ "march-gen": "Marts", "april-gen": "April", "may-gen": "Mei", - "june-gen": "Juuni", - "july-gen": "Juuli", + "june-gen": "Jüüne", + "july-gen": "Jüüle", "august-gen": "August", "september-gen": "September", "october-gen": "Oktoober", @@ -165,7 +164,7 @@ "errorpagetitle": "Diar as wat skiaf gingen", "returnto": "Turag tu sidj $1.", "tagline": "Faan {{SITENAME}}", - "help": "MediaWiki Halep", + "help": "Halep", "search": "Schük", "search-ignored-headings": " #
\n# Auerskraften, diar bi't schüken ei beaachtet wurd.\n# Jodiar feranrangen wurd seekert, wan det sidj mä det auerskraft indeksiaret wurden as.\n# Dü könst det sidjenindeksiarang föörtji, wan dü en nul-edit maagest.\n# Syntax:\n#   * Ales, wat bääft en dobelkrüs („#“) stäänt, as en komentaar.\n#   * Arke rä, wat ei leesag as, as di akeroot tiitel, diar ei beaachtet woort.\nFutnuuten\nFerwisangen\nLuke uk diar\n #
", "searchbutton": "Schük", diff --git a/languages/i18n/ga.json b/languages/i18n/ga.json index 6e7e68f2e3..d6c0cfb2ae 100644 --- a/languages/i18n/ga.json +++ b/languages/i18n/ga.json @@ -31,7 +31,7 @@ "tog-extendwatchlist": "Leathnaigh an liosta faire chun gach athrú cuí a thaispeáint", "tog-usenewrc": "Athruithe a ghrúpáil de réir leathanaigh sna hathruithe le déanaí agus sa liosta faire", "tog-numberheadings": "Uimhrigh ceannteidil go huathoibríoch", - "tog-showtoolbar": "Taispeáin an barra uirlisí eagair", + "tog-showtoolbar": "Taispeáin an barra uirlisí eagarthóireachta", "tog-editondblclick": "Déchliceáil chun leathanaigh a chur in eagar", "tog-editsectiononrightclick": "Cumasaigh mír-eagarthóireacht le deaschliceáil ar cheannteidil", "tog-watchcreations": "Cuir ar mo liosta faire leathanaigh a chruthaím", @@ -116,6 +116,18 @@ "oct": "DFómh", "nov": "Samh", "dec": "Noll", + "january-date": "Eanáir $1", + "february-date": "Feabhra $1", + "march-date": "Márta $1", + "april-date": "Aibreán $1", + "may-date": "Bealtaine $1", + "june-date": "Meitheamh $1", + "july-date": "Iúil $1", + "august-date": "Lúnasa $1", + "september-date": "Meán Fómhair $1", + "october-date": "Deireadh Fómhair $1", + "november-date": "Samhain $1", + "december-date": "Nollaig $1", "pagecategories": "{{PLURAL:$1|Catagóir|Catagóirí}}", "category_header": "Ailt sa chatagóir \"$1\"", "subcategories": "Fo-chatagóirí", @@ -156,6 +168,7 @@ "searcharticle": "Gabh", "history": "Stair an lch seo", "history_short": "Stair", + "history_small": "stair", "updatedmarker": "leasaithe (ó shin mo chuairt dheireanach)", "printableversion": "Eagrán inphriontáilte", "permalink": "Nasc buan", @@ -202,6 +215,7 @@ "disclaimers": "Séanadh", "disclaimerpage": "Project:Séanadh_ginearálta", "edithelp": "Cabhair eagarthóireachta", + "helppage-top-gethelp": "Cabhair", "mainpage": "Príomhleathanach", "mainpage-description": "Príomhleathanach", "policy-url": "Project:Polasaí", @@ -233,7 +247,7 @@ "collapsible-expand": "Leathnaigh", "thisisdeleted": "Breathnaigh nó cuir ar ais $1?", "viewdeleted": "Féach ar $1?", - "restorelink": "{{PLURAL:$1|athrú scriosta amháin|$1 athruithe scriosta}}", + "restorelink": "{{PLURAL:$1|athrú amháin scriosta|$1 athrú scriosta}}", "feedlinks": "Fotha:", "feed-invalid": "Cineál liostáil fotha neamhbhailí.", "feed-unavailable": "Níl fotha sindeacáitiú ar fáil", @@ -261,6 +275,7 @@ "nospecialpagetext": "Tá tú tar éis iarradh ar leathanach speisialta neamhbhailí.\n\nTá liosta de leathanaigh speisialta bhailí ar fáil ag [[Special:SpecialPages|{{int:specialpages}}]].", "error": "Earráid", "databaseerror": "Earráid sa bhunachar sonraí", + "databaseerror-error": "Earráid: $1", "laggedslavemode": "Rabhadh: B'fhéidir nach bhfuil na nuashonrúcháin is déanaí le feiceáil ar an leathanach seo.", "readonly": "Bunachar sonraí faoi ghlas", "enterlockreason": "Iontráil cúis don glasáil, agus meastachán\nden uair a díghlasálfar an bunachar sonraí.", @@ -301,6 +316,7 @@ "yourname": "D'ainm úsáideora", "userlogin-yourname": "Ainm úsáideora", "userlogin-yourname-ph": "Iontráil d'ainm úsáideora", + "createacct-another-username-ph": "Iontráil an t-ainm úsáideora:", "yourpassword": "D'fhocal faire", "userlogin-yourpassword": "Pasfhocal", "userlogin-yourpassword-ph": "Iontráil do phasfhocal", @@ -309,6 +325,9 @@ "createacct-yourpasswordagain": "Deimhnigh an pasfhocal", "createacct-yourpasswordagain-ph": "Iontráil an pasfhocal arís", "userlogin-remembermypassword": "Coinnigh logáilte isteach mé", + "cannotlogin-title": "Ní féidir logáil isteach", + "cannotloginnow-title": "Ní féidir logáil isteach faoi láthair", + "cannotloginnow-text": "Ní féidir logáil isteach nuair atá $1 in úsáid", "yourdomainname": "D'fhearann", "externaldberror": "Bhí earráid bhunachair sonraí ann maidir le fíordheimhniú seachtrach, nóThere was either an external authentication database error or you are not allowed to update your external account.", "login": "Logáil isteach", @@ -409,10 +428,12 @@ "hr_tip": "Líne cothrománach (inúsáidte go coigilteach)", "summary": "Achoimriú:", "subject": "Ábhar/ceannlíne:", - "minoredit": "Mionathrú é seo", + "minoredit": "Is mionathrú é seo", "watchthis": "Déan faire ar an lch seo", "savearticle": "Sábháil an lch", + "savechanges": "Sábháil athruithe", "publishpage": "Foilsigh leathanach", + "publishchanges": "Foilsigh athruithe", "preview": "Réamhamharc", "showpreview": "Taispeáin réamhamharc", "showdiff": "Taispeáin athruithe", @@ -486,7 +507,7 @@ "last": "rmh", "page_first": "céad", "page_last": "deireanach", - "histlegend": "Chun difríochtaí a roghnú, marcáil na cnaipíní de na heagráin atá tú ag iarraidh comparáid a dhéanamh astu, agus brúigh Iontráil nó an cnaipe ag bun an leathanaigh.
\nTreoir: (rth) = difríocht ón leagan reatha, (rmh) = difríocht ón leagan roimhe, m = mionathrú.", + "histlegend": "Rogha Difr: marcáil an dá leagan atá comparáid le déanamh eatarthu agus brúigh an eochair ENTER nó an cnaipe ag bun an lch.
\nTreoir: ({{int:cur}}) = difríocht ón leagan reatha, ({{int:last}}) = difríocht ón leagan roimhe, {{int:minoreditletter}} = mionathrú.", "history-fieldset-title": "Brabhsáil an stáir", "histfirst": "An ceann is luaithe", "histlast": "An ceann is déanaí", @@ -524,7 +545,7 @@ "notextmatches": "Ní bhfuarthas an téacs ar leathanach ar bith", "prevn": "na {{PLURAL:$1|$1}} cinn roimhe seo", "nextn": "an {{PLURAL:$1|$1}} i ndiadh", - "shown-title": "Taispeáin $1 {{PLURAL:$1|thoradh|torthaí}} an leathanach", + "shown-title": "Taispeáin $1 {{PLURAL:$1|toradh}} in aghaidh an leathanaigh", "viewprevnext": "Taispeáin ($1 {{int:pipe-separator}} $2) ($3).", "searchmenu-new": "'''Cruthaigh an leathanach \"[[:$1]]\" ar an vicí seo!'''", "searchprofile-articles": "Leathanaigh ábhair", @@ -554,15 +575,18 @@ "searchdisabled": "Tá brón orainn! Mhíchumasaíodh an cuardach téacs iomlán go sealadach chun luas an tsuímh a chosaint. Idir an dá linn, is féidir leat an cuardach Google anseo thíos a úsáid - b'fhéidir go bhfuil sé as dáta.", "preferences": "Sainroghanna", "mypreferences": "Sainroghanna", + "prefs-edits": "Líon na n-athruithe:", "prefs-skin": "Craiceann", "skin-preview": "Réamhamharc", "datedefault": "Is cuma liom", "prefs-personal": "Sonraí úsáideora", "prefs-rc": "Athruithe is déanaí", "prefs-watchlist": "Liosta faire", + "prefs-editwatchlist-label": "Athraigh iontrálacha ar do liosta faire:", + "prefs-editwatchlist-clear": "Glan do liosta faire", "prefs-watchlist-days": "Líon na laethanta le taispeáint sa liosta faire:", "prefs-watchlist-days-max": "$1 {{PLURAL:$1|lá}} ar a mhéad", - "prefs-watchlist-edits": "Líon na n-athruithe le taispeáint sa liosta leathnaithe faire:", + "prefs-watchlist-edits": "Uaslíon na n-athruithe le taispeáint sa liosta faire:", "prefs-watchlist-edits-max": "Uasmhéid: 1000", "prefs-misc": "Éagsúla", "prefs-resetpass": "Athraigh focal faire", @@ -644,10 +668,14 @@ "grouppage-bot": "{{ns:project}}:Róbónna", "grouppage-sysop": "{{ns:project}}:Riarthóirí", "grouppage-bureaucrat": "{{ns:project}}:Maorlathaigh", + "right-minoredit": "Marcáil athruithe mar mhionathruithe", "right-upload": "Uaslódáil comhaid", + "right-upload_by_url": "Uaslódáil comhaid ó URL", "right-delete": "Scrios leathanaigh", "right-undelete": "Díscrios leathanach", "right-userrights": "Cur gach cearta usáideoira in eagar", + "grant-editmywatchlist": "Athraigh do liosta faire", + "grant-viewmywatchlist": "Féarch ar do liosta faire", "newuserlogpage": "Log cruthú úsáideoira", "rightslog": "Log cearta úsáideoira", "action-edit": "an leathanach seo a athrú", @@ -655,19 +683,83 @@ "action-createaccount": "an cuntas seo a chruthú", "action-minoredit": "an athrú seo a mharcáil mar mionathrú", "action-upload": "uaslódáil an comhad", - "nchanges": "{{PLURAL:$1|Athrú amháin|$1 athruithe}}", + "action-editmywatchlist": "athraigh do liosta faire", + "nchanges": "{{PLURAL:$1|athrú amháin|$1 athrú}}", "enhancedrc-history": "stair", "recentchanges": "Athruithe is déanaí", "recentchanges-legend": "Roghanna do na hathruithe is déanaí", "recentchanges-summary": "Déan faire ar na hathruithe is déanaí sa vicí ar an leathanach seo.", + "recentchanges-noresult": "Ní dhearnadh aon athrú i rith na tréimhse seo a mheaitseálann leis na critéir seo.", "recentchanges-feed-description": "Rianaigh na n-athruite vicí is déanaí sa fotha seo.", "recentchanges-label-newpage": "Cruthaíodh lch nua leis an eagarthóireacht seo", "recentchanges-label-minor": "Mionathrú é seo", "recentchanges-label-bot": "Chomhlíon róbó an t-athrú seo", + "recentchanges-label-unpatrolled": "Ní dhearnadh patról ar an athrú seo go fóill", + "recentchanges-label-plusminus": "D'athraigh méid an leathanaigh de réir an líon bearta seo", "recentchanges-legend-heading": "Eochair:", "recentchanges-legend-newpage": "$1 - leathanach nua", + "recentchanges-submit": "Taispeáin", + "rcfilters-legend-heading": "Liosta na ngiorrúchán:", + "rcfilters-other-review-tools": "Uirlisí athbhreithnithe eile", + "rcfilters-activefilters": "Scagairí gníomhacha", + "rcfilters-advancedfilters": "Ardscagairí", + "rcfilters-limit-shownum": "Taispeáin an {{PLURAL:$1|athrú}} is déanaí", + "rcfilters-days-title": "Le cúpla lá anuas", + "rcfilters-hours-title": "Uaireanta is déanaí", + "rcfilters-days-show-days": "$1 {{PLURAL:$1|lá}}", + "rcfilters-quickfilters": "Scagairí sábháilte", + "rcfilters-savedqueries-defaultlabel": "Scagairí sábháilte", + "rcfilters-restore-default-filters": "Cuir scagairí réamhshocraithe i bhfeidhm", + "rcfilters-show-new-changes": "Féach ar na hathruithe is déanaí", + "rcfilters-empty-filter": "Níl aon scagairí gníomhacha. Gach iarracht á thaispeáint.", + "rcfilters-filterlist-feedbacklink": "Inis dúinn céard a shíleann tú faoi na huirlisí scagairí (nua) seo", + "rcfilters-highlightbutton-title": "Aibhsigh torthaí", + "rcfilters-filterlist-noresults": "Níor aimsíodh aon scagairí", + "rcfilters-filtergroup-authorship": "Údarthacht na n-iarrachtaí", + "rcfilters-filter-editsbyself-label": "Athruithe déanta agatsa", + "rcfilters-filter-editsbyself-description": "Do chuid iarrachtaí féin", + "rcfilters-filter-editsbyother-label": "Athruithe déanta ag daoine eile", + "rcfilters-filter-editsbyother-description": "Gach athrú seachas do chinn féin.", + "rcfilters-filtergroup-userExpLevel": "Clárú úsáideoirí agus taithí", + "rcfilters-filter-user-experience-level-registered-label": "Cláraithe", + "rcfilters-filter-user-experience-level-registered-description": "Eagarthóirí atá logáilte isteach.", + "rcfilters-filter-user-experience-level-unregistered-label": "Neamhchláraithe", + "rcfilters-filter-user-experience-level-unregistered-description": "Eagarthóirí nach bhfuil logáilte isteach.", + "rcfilters-filter-user-experience-level-newcomer-label": "Núíosaigh", + "rcfilters-filter-user-experience-level-newcomer-description": "Eagarthóirí atá cláraithe ach atá níos lú ná 10 n-athrú nó 4 lá gníomhacha acu", + "rcfilters-filter-user-experience-level-learner-label": "Foghlaimeoirí", + "rcfilters-filter-user-experience-level-learner-description": "Eagarthóirí atá cláraithe le taithí idir \"Núíosaigh\" agus \"Ard-úsáideoirí\"", + "rcfilters-filter-user-experience-level-experienced-description": "Eagarthóirí atá cláraithe le níos mó ná 500 athrú agus 30 lá gníomhacha.", + "rcfilters-filtergroup-automated": "Iarrachtaí uathoibríocha", + "rcfilters-filter-bots-label": "Bota", + "rcfilters-filter-bots-description": "Athruithe déanta ag uirlisí uathoibríocha.", + "rcfilters-filter-humans-label": "Daonna (ní bota)", + "rcfilters-filter-humans-description": "Athruithe déanta ag eagarthóirí daonna.", + "rcfilters-filter-minor-label": "Mionathruithe", + "rcfilters-filter-minor-description": "Mionathruithe marcáilte ag úsáideoir", + "rcfilters-filter-major-description": "Athruithe nár marcáladh mar mhionathruithe.", + "rcfilters-filtergroup-watchlist": "Leathanaigh ar an liosta faire", + "rcfilters-filter-watchlist-watched-label": "Ar an Liosta Faire", + "rcfilters-filter-watchlist-watched-description": "Athruithe do leathanaigh ar do Liosta Faire", + "rcfilters-filter-watchlist-watchednew-label": "Athruithe nua ar do Liosta Faire", + "rcfilters-filter-watchlist-watchednew-description": "Athruithe do leathanaigh ar an liosta faire nach raibh tú ar cuairt acu ó rinneadh athruithe dóibh.", + "rcfilters-filter-watchlist-notwatched-label": "Níl sé ar an Liosta Faire", + "rcfilters-filter-watchlist-notwatched-description": "Gach rud seachas athruithe do leathanaigh ar do liosta faire", + "rcfilters-filtergroup-changetype": "Cineál an athraithe", + "rcfilters-filter-pageedits-label": "Athruithe lch.", + "rcfilters-filter-pageedits-description": "Athruithe ar ábhar, ar phlé, ar chatagóirí...", + "rcfilters-filter-newpages-label": "Cruthuithe lch.", + "rcfilters-filter-newpages-description": "Athruithe a chruthaíonn leathanaigh nua.", + "rcfilters-filter-categorization-label": "Athruithe ar chatagóirí", + "rcfilters-filter-categorization-description": "Taifid de leathanaigh a cuireadh le nó a baineadh ó chatagóirí.", + "rcfilters-filter-logactions-label": "Gníomhartha logáilte", + "rcfilters-filtergroup-lastRevision": "Leaganacha reatha", + "rcfilters-filter-lastrevision-description": "Díreach an t-athrú is déanaí den leathanach.", + "rcfilters-filter-previousrevision-label": "Ní an leagan reatha é seo", + "rcfilters-filter-previousrevision-description": "Gach athrú nach an \"leagan reatha\" é", + "rcfilters-view-tags": "Athruithe clibeáilte", "rcnotefrom": "Is iad seo a leanas na hathruithe ó $2 (go dti $1 taispeánaithe).", - "rclistfrom": "Taispeáin athruithe nua ó $3 $2 anuas", + "rclistfrom": "Taispeáin athruithe nua ó ag tosú le $2, $3", "rcshowhideminor": "$1 mionathruithe", "rcshowhideminor-show": "Taispeáin", "rcshowhideminor-hide": "Folaigh", @@ -675,14 +767,17 @@ "rcshowhidebots-show": "Taispeáin", "rcshowhidebots-hide": "Folaigh", "rcshowhideliu": "$1 úsáideoir cláraithe", + "rcshowhideliu-show": "Taispeáin", "rcshowhideliu-hide": "Folaigh", "rcshowhideanons": "$1 úsáideoirí gan ainm", "rcshowhideanons-show": "Taispeáin", "rcshowhideanons-hide": "Folaigh", - "rcshowhidepatr": "$1 athruithe faoi phatról", + "rcshowhidepatr": "$1 athrú faoi phatról", + "rcshowhidepatr-show": "Taispeáin", "rcshowhidemine": "$1 mo chuid athruithe", "rcshowhidemine-show": "Taispeáin", "rcshowhidemine-hide": "Folaigh", + "rcshowhidecategorization-show": "Taispeáin", "rclinks": "Taispeáin an $1 athrú is déanaí sa $2 lá seo caite", "diff": "difr", "hist": "stair", @@ -700,11 +795,11 @@ "recentchangeslinked": "Athruithe gaolmhara", "recentchangeslinked-feed": "Athruithe gaolmhara", "recentchangeslinked-toolbox": "Athruithe gaolmhara", - "recentchangeslinked-title": "Athruithe gaolmhara le \"$1\"", + "recentchangeslinked-title": "Athruithe gaolmhar le \"$1\"", "recentchangeslinked-summary": "Seo liosta na n-athruithe atá deanta is déanaí le leathanaigh atá naiscthe as leathanach sonraithe (nó baill an chatagóir sonraithe).\nTá na leathanaigh ar do [[Special:Watchlist|liosta faire]] i '''gcló trom'''.", "recentchangeslinked-page": "Ainm leathanaigh:", "recentchangeslinked-to": "Taispeáin athruithe do leathanaigh nasctha leis an leathanach áirithe sin ina áit.", - "upload": "Uaslódaigh comhad", + "upload": "Uaslódáil comhad", "uploadbtn": "Uaslódaigh comhad", "reuploaddesc": "Dul ar ais chuig an fhoirm uaslódála.", "uploadnologin": "Nil tú logáilte isteach", @@ -734,9 +829,12 @@ "sourcefilename": "Comhadainm foinse:", "destfilename": "Comhadainm sprice:", "upload-maxfilesize": "Méad comhad is mó: $1", + "upload-options": "Roghanna uaslódála", "watchthisupload": "Déan faire ar an leathanach seo", "upload-proto-error": "Prótacal mícheart", "upload-file-error": "Earráid inmheánach", + "upload-dialog-title": "Uaslódáil comhad", + "upload-dialog-button-upload": "Uaslódáil", "license": "Ceadúnas:", "license-header": "Ceadúnú", "nolicense": "Níl aon cheann roghnaithe", @@ -794,6 +892,8 @@ "statistics": "Staidrimh", "statistics-header-users": "Staidreamh úsáideora", "statistics-pages": "Leathanaigh", + "statistics-files": "Comhaid uaslódáilte", + "statistics-users": "Cláraithe [[Special:ListUsers|users]]", "doubleredirects": "Athsheoltaí dúbailte", "doubleredirectstext": "Tabhair faoi deara: B'fheidir go bhfuil toraidh bréagacha ar an liosta seo.\nDe ghnáth cíallaíonn sé sin go bhfuil téacs breise le naisc thíos sa chéad #REDIRECT no #ATHSHEOLADH.
\n Sa\ngach sraith tá náisc chuig an chéad is an dara athsheoladh, chomh maith le chéad líne an dara téacs athsheolaidh. De\nghnáth tugann sé sin an sprioc-alt \"fíor\".", "brokenredirects": "Atreoruithe briste", @@ -825,13 +925,16 @@ "mostimages": "Na comhaid naiscthe is mó", "mostrevisions": "Leathanaigh leis na leasaithe is mó", "prefixindex": "Gach leathanach le réimír", + "prefixindex-submit": "Taispeáin", "shortpages": "Leathanaigh ghearra", "longpages": "Leathanaigh fhada", "deadendpages": "Leathanaigh chaocha", "protectedpages": "Leathanaigh chosanta", "protectedtitles": "Teidil chosanta", "listusers": "Liosta úsáideoirí", + "listusers-editsonly": "Ná taispeáin ach úsáideoirí a rinne athruithe", "newpages": "Leathanaigh nua", + "newpages-submit": "Taispeáin", "newpages-username": "Ainm úsáideora:", "ancientpages": "Na leathanaigh is sine", "move": "Athainmnigh", @@ -842,12 +945,15 @@ "notargettext": "Níor thug tú leathanach nó úsáideoir sprice\nchun an gníomh seo a dhéanamh ar.", "pager-newer-n": "{{PLURAL:$1|1 níos nuaí|$1 níos nuaí}}", "pager-older-n": "{{PLURAL:$1|1 níos sine|$1 níos sine}}", + "apisandbox": "API: bosca gainimh", + "apisandbox-unfullscreen": "Taispeáin lch.", "booksources": "Leabharfhoinsí", "booksources-search-legend": "Cuardaigh le foinsí leabhar", "booksources-search": "Cuardaigh", "specialloguserlabel": "Úsáideoir:", "speciallogtitlelabel": "Teideal:", "log": "Logaí", + "logeventslist-submit": "Taispeáin", "all-logs-page": "Gach loga poiblí", "alllogstext": "Bailiúchán cuimsitheach de gach loga {{SITENAME}}.\nIs féidir leat an méid ar taispeáint a chúngú trí roghnú an saghas loga, an t-ainm úsáideora (cásíogair), nó an leathanach (cásíogair freisin) atá i gceist agat.", "allpages": "Gach leathanach", @@ -861,9 +967,11 @@ "allpagesprefix": "Taispeáin leathanaigh leis an réimír:", "allpages-bad-ns": "Níl an t-ainmspás \"$1\" ar {{SITENAME}}", "categories": "Catagóirí", + "categories-submit": "Taispeáin", "categoriespagetext": "Tá leathanaigh nó meáin {{PLURAL:$1|sa chatagóir|sna catagóirí}} seo a leanas.\nNí thaispeántar [[Special:UnusedCategories|catagóiri neamhúsáidte]] anseo.\nFéach freisin ar [[Special:WantedCategories|catagóirí faoi iarraidh]].", - "deletedcontributions": "Dréachtaí úsáideora scriosta", + "deletedcontributions": "Iarrachtaí úsáideoirí scriosta", "deletedcontributions-title": "Dréachtaí úsáideora scriosta", + "sp-deletedcontributions-contribs": "iarrachtaí", "linksearch": "Naisc eachtraigh", "linksearch-ns": "Ainmspás:", "linksearch-ok": "Cuardaigh", @@ -893,7 +1001,9 @@ "nowatchlist": "Níl aon rud ar do liosta faire.", "watchlistanontext": "$1, le d'thoil, chun míreanna ar do liosta faire a fheiceáil ná a athrú.", "watchnologin": "Níl tú logáilte isteach", + "addwatch": "Cuir leis an liosta faire", "addedwatchtext": "Cuireadh an leathanach \"$1\" le do [[Special:Watchlist|liosta faire]].\nAmach anseo liostálfar athruithe don leathanach seo agus dá leathanach plé ansin,\nagus beidh '''cló trom''' ar a theideal san [[Special:RecentChanges|liosta de na hathruithe is déanaí]] sa chaoi go bhfeicfeá iad go héasca.", + "removewatch": "Bain ón liosta faire", "removedwatchtext": "Baineadh an leathanach \"[[:$1]]\" as [[Special:Watchlist|do liosta faire]].", "watch": "Déan faire", "watchthispage": "Déan faire ar an leathanach seo", @@ -904,8 +1014,12 @@ "watchlist-details": "Tá tú ag faire ar {{PLURAL:$1|leathanach amháin|$1 leathanaigh}}, gan leathanaigh phlé a chur san áireamh.", "wlheader-enotif": "Cumasaíodh fógraí riomhphoist.", "wlheader-showupdated": "Tá '''cló trom''' ar leathanaigh a athraíodh ón uair is deireanaí a d'fhéach tú orthu.", - "wlnote": "Is {{PLURAL:$1|é seo thíos an t-athrú deireanach|iad seo thíos na '''$1''' athruithe deireanacha}} {{PLURAL:$2|san uair deireanach|sna '''$2''' uaire deireanacha}}.", - "wlshowlast": "Líon na n-uair is déanaí le taispeáint: $1. Líon na laethanta is déanaí le taispeáint: $2. Taispeáin .", + "wlnote": "Is {{PLURAL:$1|é seo thíos an t-athrú is déanaí|iad seo thíos an '''$1''' athrú is déanaí}} {{PLURAL:$2|san uair an chloig dheireanach|sa '''$2''' uair an chloig dheireanacha}}.", + "wlshowlast": "Líon na n-uaireanta is déanaí le taispeáint: $1. Líon na laethanta is déanaí le taispeáint: $2.", + "watchlist-submit": "Taispeáin", + "wlshowhideminor": "mionathruithe", + "wlshowhidebots": "botaí", + "wlshowhideliu": "Úsáideoirí cláraithe", "watchlist-options": "Roghanna don liosta faire", "watching": "Ag faire...", "unwatching": "Á bhaint de do liosta faire...", @@ -914,6 +1028,7 @@ "enotif_lastvisited": "Féach ar $1 le haghaidh gach athrú a rinneadh ó thús na cuairte seo caite a rinne tú.", "enotif_anon_editor": "úsáideoir gan ainm $1", "enotif_body": "A $WATCHINGUSERNAME, a chara,\n\n$CHANGEDORCREATED $PAGEEDITOR an leathanach $PAGETITLE ag {{SITENAME}} ar $PAGEEDITDATE, féach ar $PAGETITLE_URL chun an leagan reatha a fháil.\n\n$NEWPAGE\n\nAthchoimriú an úsáideora a rinne é: $PAGESUMMARY $PAGEMINOREDIT\n\nSonraí teagmhála an úsáideora:\nr-phost: $PAGEEDITOR_EMAIL\nvicí: $PAGEEDITOR_WIKI\n\nI gcás athruithe eile, ní bheidh aon fhógra eile muna dtéann tú go dtí an leathanach seo.\nIs féidir freisin na bratacha fógartha a athrú do gach leathanach ar do liosta faire.\n\n\t Is mise le meas,\n\t Fógrachóras cairdiúil {{GRAMMAR:genitive|{{SITENAME}}}}\n\n--\nChun socruithe do liosta faire a athrú, tabhair cuairt ar\n{{canonicalurl:Special:Watchlist/edit}}\n\nChun an leathanach a bhaint de do liosta faire, tabhair cuairt ar\n$UNWATCHURL\n\nAiseolas agus a thuilleadh cabhrach:\n$HELPPAGE", + "enotif_minoredit": "Is mionathrú é seo", "created": "Chruthaigh", "changed": "D'athraigh", "deletepage": "Scrios an leathanach", @@ -924,6 +1039,7 @@ "delete-confirm": "Scrios \"$1\"", "delete-legend": "Scrios", "historywarning": "'''Rabhadh:''' Tá stair (tuairim is {{PLURAL:$1|leagan amháin|$1 leaganacha}}) ag an leathanach a bhfuil tú ar tí é a scriosadh:", + "historyaction-submit": "Taispeáin", "confirmdeletetext": "Tá tú ar tí leathanach, agus a chuid staire, a scriosadh.\nDeimhnigh, le do thoil, gur mhian leat é seo a dhéanamh, go dtuigeann tú torthaí an ghnímh seo agus go bhfuil tú dá dhéanamh de réir [[{{MediaWiki:Policy-url}}|an pholasaí]].", "actioncomplete": "Gníomh críochnaithe", "deletedtext": "scriosadh \"$1\".\nFéach ar $2 chun cuntas na scriosiadh deireanacha a fháil.", @@ -937,7 +1053,7 @@ "deletereason-dropdown": "*Fáthanna coitianta scriosta\n** Iarratas ón údar\n** Sárú cóipchirt\n** Loitiméireacht", "rollback": "Athruithe a rolladh siar", "rollbacklink": "roll siar", - "rollbacklinkcount": "Roll siar $1 {{PLURAL:$1|athrú|athruithe}}", + "rollbacklinkcount": "Roll siar $1 {{PLURAL:$1|athrú}}", "rollbackfailed": "Theip an rolladh siar", "cantrollback": "Ní féidir an athrú a athúsáid; ba é údar an ailt an t-aon duine a rinne athrú dó.", "alreadyrolled": "Ní féidir eagrán níos luaí an leathanaigh [[:$1]] le [[User:$2|$2]] ([[User talk:$2|Plé]]{{int:pipe-separator}}[[Special:Contributions/$2|{{int:contribslink}}]]) a athúsáid; d'athraigh duine eile é cheana fein, nó d'athúsáid duine eile eagrán níos luaí cheana féin.\n\n[[User:$3|$3]] ([[User talk:$3|Plé]]{{int:pipe-separator}}[[Special:Contributions/$3|{{int:contribslink}}]]) an té a rinne an athrú is déanaí.", @@ -975,7 +1091,7 @@ "pagesize": "(bearta)", "restriction-edit": "Cuir in eagar", "restriction-create": "Cruthaigh", - "restriction-upload": "Uaslódaigh", + "restriction-upload": "Uaslódáil", "restriction-level-autoconfirmed": "leathghlasáil", "undelete": "Díscrios leathanach scriosta", "undeletepage": "Féach ar leathanaigh scriosta agus díscrios iad", @@ -996,26 +1112,29 @@ "namespace": "Ainmspás:", "invert": "Iompaigh rogha bunoscionn", "blanknamespace": "(Gnáth)", - "contributions": "Dréachtaí {{GENDER:$1|úsáideora}}", + "contributions": "Iarrachtaí {{GENDER:$1|úsáideora}}", "contributions-title": "Dréachtaí úsáideora do $1", - "mycontris": "Dréachtaí", + "mycontris": "Iarrachtaí", "anoncontribs": "Dréachtaí", "contribsub2": "Do $1 ($2)", "nocontribs": "Ní bhfuarthas aon athrú a bhí cosúil le na crítéir seo.", "uctop": "(reatha)", "month": "Ón mhí seo (agus níos luaithe):", "year": "Ón bhliain seo (agus níos luaithe):", - "sp-contributions-newbies": "Taispeáin dréachtaí ó chuntais nua amháin", + "sp-contributions-newbies": "Taispeáin iarrachtaí ó chuntais nua amháin", "sp-contributions-newbies-sub": "Le cuntais nua", - "sp-contributions-newbies-title": "Dréachtaí úsáideora do chuntasaí nua", + "sp-contributions-newbies-title": "Iarrachtaí úsáideora do chuntais nua", "sp-contributions-blocklog": "Log coisc", + "sp-contributions-suppresslog": "iarrachtaí {{GENDER:$1|user}} folaithe", "sp-contributions-deleted": "dréachtaí {{GENDER:$1|úsáideora}} scriosta", "sp-contributions-uploads": "uaslódálacha", "sp-contributions-logs": "logaí", "sp-contributions-talk": "plé", "sp-contributions-userrights": "bainistíocht cearta úsáideora", - "sp-contributions-search": "Cuardaigh dréachtaí", + "sp-contributions-search": "Cuardaigh iarrachtaí", "sp-contributions-username": "Seoladh IP nó ainm úsáideora:", + "sp-contributions-toponly": "Ná taispeáin ach na leaganacha is déanaí", + "sp-contributions-hideminor": "Folaigh mionathruithe", "sp-contributions-submit": "Cuardaigh", "whatlinkshere": "Naisc leis an lch seo", "whatlinkshere-title": "Naisc le $1", @@ -1048,6 +1167,7 @@ "blockipsuccesstext": "Choisceadh [[Special:Contributions/$1|$1]].\n
Féach ar an g[[Special:BlockList|liosta coisc IP]] chun coisc a athbhreithniú.", "ipb-unblock-addr": "Díchoisc $1", "ipb-unblock": "Díchosc ainm úsáideora ná seoladh IP", + "ipb-blocklist-contribs": "Iarrachtaí le haghaidh {{GENDER:$1|$1}}", "unblockip": "Díchoisc úsáideoir", "unblockiptext": "Úsáid an foirm anseo thíos chun bealach scríofa a thabhairt ar ais do seoladh\nIP nó ainm úsáideora a raibh faoi chosc roimhe seo.", "ipusubmit": "Bain an chosc seo", @@ -1148,7 +1268,7 @@ "tooltip-pt-anontalk": "Plé maidir le na hathruithe a dhéantar ón seoladh IP seo", "tooltip-pt-preferences": "{{GENDER:|Do}} chuid sainroghanna", "tooltip-pt-watchlist": "Liosta de na leathanaigh a bhfuil tú á bhfaire ar athruithe", - "tooltip-pt-mycontris": "Liosta do chuid dréachtaí", + "tooltip-pt-mycontris": "Liosta de do chuid iarrachtaí féin", "tooltip-pt-login": "Moltar duit logáil isteach, ach níl sé riachtanach.", "tooltip-pt-logout": "Logáil amach", "tooltip-ca-talk": "Plé maidir leis an leathanach ábhair", @@ -1177,7 +1297,7 @@ "tooltip-t-recentchangeslinked": "Na hathruithe is déanaí ar leathanaigh a nascaíonn chuig an leathanach seo", "tooltip-feed-rss": "Fotha RSS don leathanach seo", "tooltip-feed-atom": "Fotha Atom don leathanach seo", - "tooltip-t-contributions": "Féach ar an liosta dréachtaí a rinne an t-úsáideoir seo", + "tooltip-t-contributions": "Féach ar liosta iarrachtaí an úsáideora seo {{GENDER:$1|this user}}", "tooltip-t-emailuser": "Cuir teachtaireacht chuig an úsáideoir seo", "tooltip-t-upload": "Comhaid íomhá nó meáin a uaslódáil", "tooltip-t-specialpages": "Liosta de gach leathanach speisialta", @@ -1193,13 +1313,15 @@ "tooltip-ca-nstab-template": "Féach ar an teimpléad", "tooltip-ca-nstab-help": "Féach ar an leathanach cabhrach", "tooltip-ca-nstab-category": "Féach ar an leathanach catagóire", - "tooltip-minoredit": "Déan mionathrú den athrú seo", + "tooltip-minoredit": "Marcáil mar mhionathrú", "tooltip-save": "Sábháil do chuid athruithe", "tooltip-publish": "Foilsigh do chuid athruithe", "tooltip-preview": "Réamhamharc ar do chuid athruithe; úsáid an gné seo roimh a shábhálaíonn tú!", "tooltip-diff": "Taispeáin na difríochtaí áirithe a rinne tú don téacs", "tooltip-compareselectedversions": "Féach na difríochtaí idir an dhá leagain roghnaithe den leathanach seo.", "tooltip-watch": "Cuir an leathanach seo le do liosta faire", + "tooltip-watchlistedit-raw-submit": "Nuashonraigh an liosta faire", + "tooltip-upload": "Tosaigh ag uaslódáil", "tooltip-rollback": "Fill ar leagan an leathanaigh seo roimh athruithe an eagarthóra dheireanaigh in aon chlic amháin", "tooltip-undo": "Cuirtear \"Cealaigh\" an t-athrú seo ar cheal agus osclaítear an fhoirm eagair i mód réamhamhairc. Is féidir cúis na hathruithe a chur san achoimre.", "tooltip-summary": "Cuir isteach achoimre ghearr", @@ -1240,10 +1362,12 @@ "newimages": "Gailearaí na n-íomhánna nua", "imagelisttext": "Tá liosta thíos de {{PLURAL:$1|comhad amháin|$1 comhaid $2}}.", "newimages-label": "Comhadainm (nó cuid de):", + "newimages-newbies": "Taispeáin iarrachtaí ó chuntais nua amháin", "noimages": "Tada le feiceáil.", "ilsubmit": "Cuardaigh", "bydate": "de réir dáta", "sp-newimages-showfrom": "Taispeáin íomhánna nua as $2, $1", + "days": "{{PLURAL:$1|$1 lá}}", "bad_image_list": "Is é seo a leanas an formáid:\n\nNíl ach míreanna liosta amháin (línte ag tosú le *) san áireamh.\nIs riachtanach gur nasc do dhrochchomhad é an chéad nasc ar líne.\nIs eisceachtaí iad na naisc eile ar an líne céanna, .i. leathanaigh gur féidir an comhad a bheith orthu go hinlíne.", "metadata": "Meiteasonraí", "metadata-help": "Tá breis eolais sa comhad seo, curtha, is dócha, as ceamara digiteach ná scanóir a chruthaigh ná a digitigh é.\nMá tá an comhad mionathraithe as an bunleagan, b'fhéidir nach mbeidh ceann de na sonraí fágtha sa comhad atá athruithe.", @@ -1365,6 +1489,7 @@ "exif-source": "Foinse", "exif-languagecode": "Teanga", "exif-iimcategory": "Catagóir", + "exif-intellectualgenre": "Cineál na míre", "exif-compression-1": "Neamh-chomhbhrúite", "exif-unknowndate": "Dáta anaithnid", "exif-orientation-1": "Gnáth", @@ -1465,6 +1590,8 @@ "exif-gpsdirection-t": "Fíorthreo", "exif-gpsdirection-m": "Treo maighnéadach", "exif-dc-publisher": "Foilsitheoir", + "exif-dc-type": "Cineál an mheáin", + "exif-iimcategory-hum": "Suim daonna", "namespacesall": "iad uile", "monthsall": "gach mí", "confirmemail": "Deimhnigh do ríomhsheoladh", @@ -1484,6 +1611,8 @@ "recreate": "Athchruthaigh", "confirm_purge_button": "Tá", "confirm-purge-top": "An bhfuil tú cinnte go dteastaíonn uait taisce an leathanaigh seo a bhánú?", + "confirm-watch-top": "Cuir an leathanach seo le do liosta faire?", + "confirm-unwatch-top": "Bain an leathanach seo ó do liosta faire?", "imgmultipageprev": "'← leathanach roimhe sin", "imgmultipagenext": "leathanach a leanas →", "imgmultigoto": "Téigh go leathanach $1", @@ -1503,6 +1632,10 @@ "watchlistedit-raw-titles": "Teideail:", "watchlistedit-raw-submit": "Nuashonraigh do liosta faire", "watchlistedit-raw-done": "Tá do liosta faire nuashonraithe.", + "watchlistedit-clear-title": "Glan an liosta faire", + "watchlistedit-clear-explain": "Bainfear gach teideal ó do liosta faire", + "watchlistedit-clear-submit": "Glan an liosta faire (Tá sé seo buan)", + "watchlisttools-clear": "Glan an liosta faire", "watchlisttools-view": "Féach ar na hathruithe ábhartha", "watchlisttools-edit": "Féach ar do liosta faire ná cuir in eagar é", "watchlisttools-raw": "Cuir do amhliosta faire in eagar", @@ -1533,6 +1666,11 @@ "feedback-cancel": "Cealaigh", "feedback-message": "Teachtaireacht:", "searchsuggest-search": "Cuardaigh {{SITENAME}}", + "duration-days": "$1 {{PLURAL:$1|lá}}", "expand_templates_remove_comments": "Scrios nótaí tráchta", - "expand_templates_preview": "Réamhamharc" + "expand_templates_preview": "Réamhamharc", + "log-action-filter-block": "Cineál an bhloic:", + "log-action-filter-delete": "Cineál an scriosta:", + "log-action-filter-protect": "Cineál na cosanta:", + "log-action-filter-suppress": "Cineál an tsochta:" } diff --git a/languages/i18n/gl.json b/languages/i18n/gl.json index ef99780ff3..cc9688ac34 100644 --- a/languages/i18n/gl.json +++ b/languages/i18n/gl.json @@ -312,7 +312,7 @@ "nstab-category": "Categoría", "mainpage-nstab": "Páxina principal", "nosuchaction": "Non existe esa acción", - "nosuchactiontext": "A acción especificada polo enderezo URL é inválida.\nPode que non o escribise ben ou que seguise unha ligazón incorrecta.\nIsto tamén podería indicar un erro en {{SITENAME}}.", + "nosuchactiontext": "A acción especificada polo enderezo URL non é válida.\nPode que non o escribise ben ou que seguise unha ligazón incorrecta.\nIsto tamén podería indicar un erro en {{SITENAME}}.", "nosuchspecialpage": "Non existe esa páxina especial", "nospecialpagetext": "Solicitou unha páxina especial que non está recoñecida polo wiki.\n\nPode atopar unha lista coas páxinas especiais válidas en [[Special:SpecialPages|{{int:specialpages}}]].", "error": "Erro", @@ -352,12 +352,12 @@ "badtitle": "Título incorrecto", "badtitletext": "O título da páxina pedida non era válido, estaba baleiro ou proviña dunha ligazón interlingüística ou interwiki incorrecta.\nPoida que conteña un ou máis caracteres dos que non se poden empregar nos títulos.", "title-invalid-empty": "O título de páxina solicitado está baleiro ou só contén o nome dun espazo de nomes.", - "title-invalid-utf8": "O título de páxina solicitado contén unha secuencia UTF-8 inválida.", + "title-invalid-utf8": "O título de páxina solicitado contén unha secuencia UTF-8 non válida.", "title-invalid-interwiki": "O título de páxina solicitado contén unha ligazón interwiki que non se pode utilizar nos títulos.", "title-invalid-talk-namespace": "O título de páxina solicitado fai referencia a unha páxina de conversa que pode non existir.", "title-invalid-characters": "O título de páxina solicitado contén caracteres inválidos: \"$1\".", "title-invalid-relative": "O título ten unha ruta relativa. Os títulos de páxina relativos (./, ../) son inválidos, porque a miúdo non son accesibles cando se consultan desde o navegador do usuario.", - "title-invalid-magic-tilde": "O título de páxina solicitado contén unha secuencia con tiles inválida (~~~).", + "title-invalid-magic-tilde": "O título de páxina solicitado contén unha secuencia con tiles non válida (~~~).", "title-invalid-too-long": "O título de páxina solicitado é moi longo. Non pode ser maior de $1 {{PLURAL:$1|byte|bytes}} en codificación UTF-8.", "title-invalid-leading-colon": "O título de páxina solicitado contén un carácter de dous puntos non permitido ao comezo.", "perfcached": "Esta información é da memoria caché e pode ser que non estea completamente actualizada. Hai un máximo de {{PLURAL:$1|$1 resultado dispoñible|$1 resultados dispoñibles}} na caché.", @@ -825,7 +825,7 @@ "rev-delundel": "mostrar/agochar", "rev-showdeleted": "mostrar", "revisiondelete": "Borrar/restaurar revisións", - "revdelete-nooldid-title": "Revisión inválida", + "revdelete-nooldid-title": "Revisión non válida", "revdelete-nooldid-text": "Non indicou a revisión sobre a que realizar esta función, ou a revisión especificada non existe ou está intentando agochar a revisión actual.", "revdelete-no-file": "O ficheiro especificado non existe.", "revdelete-show-file-confirm": "Está seguro de querer ver unha revisión borrada do ficheiro \"$1\" do día $2 ás $3?", @@ -1304,6 +1304,8 @@ "recentchanges-legend": "Opcións dos cambios recentes", "recentchanges-summary": "Nesta páxina pode seguir as modificacións máis recentes feitas no wiki.", "recentchanges-noresult": "Non se produciron cambios que coincidisen con eses criterios durante o período especificado.", + "recentchanges-timeout": "Esta procura rematou o temo límite de consulta. Tente usar parámetros de procura diferentes.", + "recentchanges-network": "Debido a un erro técnico, non foi posible cargar ningún resultado. Por favor, probe refrescando a páxina.", "recentchanges-feed-description": "Nesta fonte de novas pode seguir as modificacións máis recentes feitas no wiki.", "recentchanges-label-newpage": "Esta edición creou unha nova páxina", "recentchanges-label-minor": "Esta é unha edición pequena", @@ -1345,7 +1347,7 @@ "rcfilters-restore-default-filters": "Restaurar os filtros por defecto", "rcfilters-clear-all-filters": "Borrar todos os filtros", "rcfilters-show-new-changes": "Mostrar os cambios máis recentes", - "rcfilters-search-placeholder": "Filtrar os cambios recentes (navegar ou comezar a escribir)", + "rcfilters-search-placeholder": "Filtrar os cambios (use o menú ou procure o nome dun filtro)", "rcfilters-invalid-filter": "Filtro no válido", "rcfilters-empty-filter": "Non hai filtros activos. Móstranse tódalas contribucións.", "rcfilters-filterlist-title": "Filtros", @@ -1422,7 +1424,6 @@ "rcfilters-tag-prefix-namespace-inverted": ":non $1", "rcfilters-exclude-button-off": "Excluír os seleccionados", "rcfilters-exclude-button-on": "Excluíndo os seleccionados", - "rcfilters-view-advanced-filters-label": "Filtros avanzados", "rcfilters-view-tags": "Edicións marcadas", "rcfilters-view-namespaces-tooltip": "Filtrar resultados por espazo de nomes", "rcfilters-view-tags-tooltip": "Filtrar resultados usando etiquetas de edición", @@ -1566,7 +1567,7 @@ "uploaded-script-svg": "Atopouse un elemento de comandos \"$1\" no ficheiro SVG subido.", "uploaded-hostile-svg": "Atopouse CSS non seguro no elemento de estilo do ficheiro SVG subido.", "uploaded-event-handler-on-svg": "Non está permitido fixar atributos de xestión de eventos $1=\"$2\" nos ficheiros SVG.", - "uploaded-href-attribute-svg": "Os atributos href nos ficheiros SVG só están autorizados a ligar con enderezos http:// ou https://, mais atopouse <$1 $2=\"$3\">.", + "uploaded-href-attribute-svg": "Os elementos só poden ligar (href) a datos: obxectivos (ficheiro incluído), http:// ou https://, ou fragmentos (#, mesmo-documento). Para outros elementos, como , datos únicos: e fragmentos están permitidos. Tenta incluír imaxes cando exportes o teu SVG. Atopouse <$1 $2=\"$3\">.", "uploaded-href-unsafe-target-svg": "Atopouse un href a datos non seguros: un enderezo URI <$1 $2=\"$3\"> no ficheiro SVG subido.", "uploaded-animate-svg": "Atopouse unha etiqueta \"animate\", que podería cambiar o seu href, usando o atributo \"from\" <$1 $2=\"$3\"> no ficheiro SVG subido.", "uploaded-setting-event-handler-svg": "Non está permitido fixar os atributos de xestión de eventos, mais atopouse <$1 $2=\"$3\"> no ficheiro SVG subido.", @@ -1675,6 +1676,25 @@ "uploadstash-refresh": "Actualizar a lista de ficheiros", "uploadstash-thumbnail": "ver a miniatura", "uploadstash-exception": "Imposible gardar a subida na reserva ($1): \"$2\".", + "uploadstash-bad-path": "A ruta non existe.", + "uploadstash-bad-path-invalid": "A ruta non é válida.", + "uploadstash-bad-path-unknown-type": "O tipo «$1» é descoñecido.", + "uploadstash-bad-path-unrecognized-thumb-name": "O nome da miniatura é desceñecido.", + "uploadstash-bad-path-no-handler": "Non se atopou ningunha rutina de tratamento para o tipo MIME $1 do ficheiro $2.", + "uploadstash-bad-path-bad-format": "O formato da clave «$1» é incorrecto.", + "uploadstash-file-not-found": "A chave \"$1\" non se atopou na reserva.", + "uploadstash-file-not-found-no-thumb": "Non se puido obter a miniatura.", + "uploadstash-file-not-found-no-local-path": "Non hai unha ruta local para o elemento redimensionado.", + "uploadstash-file-not-found-no-object": "Non se puido crear o obxecto do ficheiro local para a miniatura.", + "uploadstash-file-not-found-no-remote-thumb": "Fallou a obtención de miniatura: $1\nurl = $2\n.", + "uploadstash-file-not-found-missing-content-type": "Falta cabeceira de tipo de contido.", + "uploadstash-file-not-found-not-exists": "Non se pode atopar a ruta, ou non é un ficheiro plano.", + "uploadstash-file-too-large": "Non se pode servir un ficheiro máis grande de $1 bytes.", + "uploadstash-not-logged-in": "Non se iniciou sesión de usuario, os ficheiros deben pertencer a usuarios.", + "uploadstash-wrong-owner": "Este ficheiro ($1) non pertence ó usuario actual.", + "uploadstash-no-such-key": "No existe esta clave ($1); non se pode eliminar.", + "uploadstash-no-extension": "A extensión é nula.", + "uploadstash-zero-length": "O ficheiro ten tamaño cero.", "invalid-chunk-offset": "Desprazamento inválido do fragmento", "img-auth-accessdenied": "Acceso rexeitado", "img-auth-nopathinfo": "Falta a PATH_INFO.\nO seu servidor non está configurado para pasar esta información.\nPode ser que estea baseado en CGI e non soporte img_auth.\nVéxase https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Image_Authorization.", @@ -3582,7 +3602,7 @@ "tags-edit-logentry-submit": "Aplicar os cambios a {{PLURAL:$1|esta entrada do rexistro|$1 entradas do rexistro}}", "tags-edit-success": "Aplicáronse os cambios.", "tags-edit-failure": "Non se puideron aplicar os cambios:\n$1", - "tags-edit-nooldid-title": "Revisión inválida", + "tags-edit-nooldid-title": "Revisión non válida", "tags-edit-nooldid-text": "Non indicou a revisión sobre a que realizar esta función, ou a revisión especificada non existe.", "tags-edit-none-selected": "Por favor, seleccione polo menos unha etiqueta que engadir ou quitar.", "comparepages": "Comparar páxinas", diff --git a/languages/i18n/he.json b/languages/i18n/he.json index 1b9fe23c6e..2472d853bf 100644 --- a/languages/i18n/he.json +++ b/languages/i18n/he.json @@ -1342,6 +1342,7 @@ "rcfilters-savedqueries-apply-and-setdefault-label": "יצירת מסנן התחלתי", "rcfilters-savedqueries-cancel-label": "ביטול", "rcfilters-savedqueries-add-new-title": "שמירת הגדרות המסננים הנוכחיות", + "rcfilters-savedqueries-already-saved": "מסננים אלה כבר נשמרו", "rcfilters-restore-default-filters": "שחזור למסנני ברירת המחדל", "rcfilters-clear-all-filters": "מחיקת כל המסננים", "rcfilters-show-new-changes": "הצגת השינויים החדשים ביותר", @@ -1672,6 +1673,25 @@ "uploadstash-refresh": "רענון רשימת הקבצים", "uploadstash-thumbnail": "הצגת תמונה ממוזערת", "uploadstash-exception": "לא ניתן לאחסן את ההעלאה בסליק ($1): \"$2\".", + "uploadstash-bad-path": "הנתיב אינו קיים.", + "uploadstash-bad-path-invalid": "הנתיב אינו תקין.", + "uploadstash-bad-path-unknown-type": "הסוג \"$1\" אינו מוכר.", + "uploadstash-bad-path-unrecognized-thumb-name": "שם הקובץ הממוזער אינו מוכר.", + "uploadstash-bad-path-no-handler": "לא נמצא רכיב המטפל ב־MIME מסוג $1 המתאים לקובץ $2.", + "uploadstash-bad-path-bad-format": "המפתח \"$1\" אינו בפורמט המתאים.", + "uploadstash-file-not-found": "המפתח \"$1\" לא נמצא בסליק הקבצים.", + "uploadstash-file-not-found-no-thumb": "לא ניתן לייצר קובץ ממוזער.", + "uploadstash-file-not-found-no-local-path": "אין נתיב מקומי לפריט בגודל שונה.", + "uploadstash-file-not-found-no-object": "לא ניתן היה לייצר אובייקט של קובץ מקומי עבור הקובץ הממוזער.", + "uploadstash-file-not-found-no-remote-thumb": "מציאת הקובץ הממוזער נכשלה: $1\nכתובת ה־URL היא $2", + "uploadstash-file-not-found-missing-content-type": "חסרה כותרת Content-type.", + "uploadstash-file-not-found-not-exists": "לא ניתן היה למצוא את הנתיב, או שהנתיב אינו קובץ פשוט.", + "uploadstash-file-too-large": "לא ניתן להעביר קובץ שגודלו מעל {{PLURAL:$1|בית אחד|$1 בתים}}.", + "uploadstash-not-logged-in": "המשתמש אינו מחובר לחשבון, אך קבצים חייבים להשתייך למשתמשים.", + "uploadstash-wrong-owner": "הקובץ ($1) אינו שייך למשתמש הנוכחי.", + "uploadstash-no-such-key": "אין מפתח כזה ($1), לא ניתן להסירו.", + "uploadstash-no-extension": "הסיומת ריקה.", + "uploadstash-zero-length": "הקובץ באורך אפס.", "invalid-chunk-offset": "היסט גוש לא תקין", "img-auth-accessdenied": "הגישה נדחתה", "img-auth-nopathinfo": "PATH_INFO חסר.\nהשרת אינו מוגדר להעברת מידע זה.\nייתכן שהוא מבוסס על CGI ולכן אינו יכול לתמוך ב־img_auth.\nראו https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Image_Authorization.", diff --git a/languages/i18n/hr.json b/languages/i18n/hr.json index d0063f8f32..9ab3efac30 100644 --- a/languages/i18n/hr.json +++ b/languages/i18n/hr.json @@ -197,7 +197,7 @@ "searcharticle": "Kreni", "history": "Povijest stranice", "history_short": "Povijest", - "history_small": "stare izmjene", + "history_small": "povijest", "updatedmarker": "obnovljeno od posljednjeg posjeta", "printableversion": "Inačica za ispis", "permalink": "Trajna poveznica", @@ -754,7 +754,7 @@ "undo-summary-username-hidden": "Uklanjanje izmjene $1 suradnika skrivenoga suradničkoga imena", "cantcreateaccount-text": "Otvaranje suradničkog računa ove IP adrese ('''$1''') blokirao/la je [[User:$3|$3]].\n\nRazlog koji je dao/la $3 je ''$2''", "viewpagelogs": "Vidi evidencije za ovu stranicu", - "nohistory": "Ova stranica nema starijih izmjena.", + "nohistory": "Ne postoji povijest izmjena za ovu stranicu.", "currentrev": "Trenutačna inačica", "currentrev-asof": "Trenutačna izmjena od $1", "revisionasof": "Inačica od $1", @@ -779,7 +779,7 @@ "history-feed-item-nocomment": "$1 u (test) $2", "history-feed-empty": "Tražena stranica ne postoji.\nStranica je vjerojatno prethodno izbrisana s wikija, ili preimenovana.\nPokušajte [[Special:Search|pretražiti]] važnije nove stranice na wikiju.", "history-edit-tags": "Uredi oznake označenih izmjena", - "rev-deleted-comment": "(komentar uklonjen)", + "rev-deleted-comment": "(sažetak izmjene uklonjen)", "rev-deleted-user": "(suradničko ime uklonjeno)", "rev-deleted-event": "(zapis uklonjen)", "rev-deleted-user-contribs": "[suradničko ime ili IP adresa uklonjeni - izmjena skrivena u doprinosima]", @@ -3030,7 +3030,7 @@ "exif-urgency-low": "Nisko ( $1 )", "exif-urgency-high": "Visoko ($1)", "exif-urgency-other": "Suradnički definiran prioritet ($1)", - "namespacesall": "sve", + "namespacesall": "svi", "monthsall": "sve", "confirmemail": "Potvrdite adresu e-pošte", "confirmemail_noemail": "Niste unijeli važeću e-mail adresu u Vaše [[Special:Preferences|suradničke postavke]].", @@ -3352,7 +3352,7 @@ "htmlform-int-toolow": "Vrijednost koju ste naveli je ispod minimuma od $1", "htmlform-int-toohigh": "Vrijednost koju ste naveli je iznad maksimuma od $1", "htmlform-required": "Ova je vrijednost potrebna", - "htmlform-submit": "Pošalji", + "htmlform-submit": "Unesi", "htmlform-reset": "Poništi izmjene", "htmlform-selectorother-other": "Drugi", "htmlform-no": "Ne", @@ -3385,7 +3385,7 @@ "logentry-suppress-event-legacy": "$1 je tajno {{GENDER:$2|promijenio|promijenila}} vidljivost zapisa u evidenciji na $3", "logentry-suppress-revision-legacy": "$1 je tajno {{GENDER:$2|promijenio|promijenila}} vidljivost uređivanja na stranici $3", "revdelete-content-hid": "sadržaj je sakriven", - "revdelete-summary-hid": "sažetak uređivanja je sakriven", + "revdelete-summary-hid": "sažetak uređivanja je skriven", "revdelete-uname-hid": "suradničko ime skriveno", "revdelete-content-unhid": "sadržaj uređivanja je otkriven", "revdelete-summary-unhid": "sažetak uređivanja je otkriven", diff --git a/languages/i18n/it.json b/languages/i18n/it.json index 91212c766c..4b673bbddb 100644 --- a/languages/i18n/it.json +++ b/languages/i18n/it.json @@ -1374,6 +1374,7 @@ "recentchanges-legend": "Opzioni ultime modifiche", "recentchanges-summary": "Questa pagina presenta le modifiche più recenti ai contenuti del sito.", "recentchanges-noresult": "Nessuna modifica durante il periodo inserito che soddisfa questi criteri.", + "recentchanges-network": "A causa di un errore tecnico, non è possibile caricare alcun risultato. Aggiorna la pagina.", "recentchanges-feed-description": "Questo feed riporta le modifiche più recenti ai contenuti del sito.", "recentchanges-label-newpage": "Creazione di una nuova pagina", "recentchanges-label-minor": "Modifica minore", @@ -1740,6 +1741,8 @@ "uploadstash-refresh": "Aggiorna l'elenco dei file", "uploadstash-thumbnail": "vedi miniatura", "uploadstash-exception": "Impossibile memorizzare il caricamento in stash ($1): \"$2\".", + "uploadstash-bad-path-unknown-type": "Tipo sconosciuto \"$1\".", + "uploadstash-zero-length": "Il file ha lunghezza zero.", "invalid-chunk-offset": "Offset della parte non valido.", "img-auth-accessdenied": "Accesso negato", "img-auth-nopathinfo": "PATH_INFO mancante.\nIl server non è impostato per passare questa informazione.\nPotrebbe essere basato su CGI e non può supportare img_auth.\nVedi https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Image_Authorization", @@ -1805,7 +1808,7 @@ "linkstoimage": "{{PLURAL:$1|La seguente pagina contiene|Le seguenti $1 pagine contengono}} collegamenti a questo file:", "linkstoimage-more": "Più di $1 {{PLURAL:$1|pagina punta|pagine puntano}} a questo file.\nDi seguito sono elencate solo {{PLURAL:$1|la prima pagina che punta|le prime $1 pagine che puntano}} a questo file.\nÈ disponibile un [[Special:WhatLinksHere/$2|elenco completo]].", "nolinkstoimage": "Nessuna pagina contiene collegamenti al file.", - "morelinkstoimage": "Visualizza [[Special:WhatLinksHere/$1|altri link]] a questo file.", + "morelinkstoimage": "Visualizza [[Special:WhatLinksHere/$1|altri collegamenti]] a questo file.", "linkstoimage-redirect": "$1 (reindirizzamento file) $2", "duplicatesoffile": "{{PLURAL:$1|Il seguente file è un duplicato|I seguenti $1 file sono duplicati}} di questo file ([[Special:FileDuplicateSearch/$2|ulteriori dettagli]]):", "sharedupload": "Questo file proviene da $1 e può essere utilizzato da altri progetti.", diff --git a/languages/i18n/ka.json b/languages/i18n/ka.json index 6fc18114b9..0eae5d3d26 100644 --- a/languages/i18n/ka.json +++ b/languages/i18n/ka.json @@ -1979,7 +1979,7 @@ "booksources-invalid-isbn": "თქვენს მიერ მითითებული ISBN, შეცდომას შეიცავს. შეამოწმეთ, თუ თავდაპირველი წყარო სწორადაა აკრეფილი.", "magiclink-tracking-rfc": "გვერდები, რომლებიც იყენებენ RFC magic ბმულებს", "magiclink-tracking-rfc-desc": "ეს გვერდი იყენებს RFC magic ბმულებს. იხილეთ [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Magic_links mediawiki.org], თუ გსურთ წაიკითხოთ მიგრაციის ინსტრუქცია.", - "magiclink-tracking-pmid": "გვერდები, რომლებიც იყენებენ PMID magic ბმულებს", + "magiclink-tracking-pmid": "გვერდები PMID-ის ჯადოსნური ბმულებით", "magiclink-tracking-pmid-desc": "ეს გვერდი იყენებს PMID magic ბმულებს. იხილეთ [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Magic_links mediawiki.org], თუ გსურთ წაიკითხოთ მიგრაციის ინსტრუქცია.", "magiclink-tracking-isbn": "გვერდები, რომლებიც იყენებენ ISBN magic ბმულებს", "magiclink-tracking-isbn-desc": "ეს გვერდი იყენებს ISBN magic ბმულებს. იხილეთ [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Magic_links mediawiki.org], თუ გსურთ წაიკითხოთ მიგრაციის ინსტრუქცია.", diff --git a/languages/i18n/ko.json b/languages/i18n/ko.json index 3f7759bcde..44938aabd8 100644 --- a/languages/i18n/ko.json +++ b/languages/i18n/ko.json @@ -1331,6 +1331,7 @@ "recentchanges-summary": "이 페이지에서 위키의 최근 바뀜을 추적합니다.", "recentchanges-noresult": "지정한 조건과 일치하는 주어진 기간 동안 바뀜이 없습니다.", "recentchanges-timeout": "이 검색의 시간이 초과되었습니다. 다른 검색 변수를 사용할 수 있습니다.", + "recentchanges-network": "기술적인 문제로 결과를 불러올 수 없습니다. 페이지를 다시 새로 고침해 주십시오.", "recentchanges-feed-description": "이 피드에 위키의 최근 바뀜을 추적합니다.", "recentchanges-label-newpage": "새 문서", "recentchanges-label-minor": "사소한 편집", @@ -1699,6 +1700,22 @@ "uploadstash-refresh": "파일 목록을 새로 고침", "uploadstash-thumbnail": "섬네일 보기", "uploadstash-exception": "비공개로 업로드할 수 없습니다 ($1): \"$2\".", + "uploadstash-bad-path": "경로가 존재하지 않습니다.", + "uploadstash-bad-path-invalid": "경로가 유효하지 않습니다.", + "uploadstash-bad-path-unknown-type": "알 수 없는 유형 \"$1\".", + "uploadstash-bad-path-no-handler": "파일 $2의 mime $1에 대한 핸들러를 찾을 수 없습니다.", + "uploadstash-bad-path-bad-format": "\"$1\" 키는 적절한 포맷이 아닙니다.", + "uploadstash-file-not-found-no-thumb": "섬네일을 가져오지 못했습니다.", + "uploadstash-file-not-found-no-object": "섬네일을 위한 로컬 파일 객체를 만들 수 없습니다.", + "uploadstash-file-not-found-no-remote-thumb": "섬네일 가져오기를 실패했습니다: $1\nurl = $2\n.", + "uploadstash-file-not-found-missing-content-type": "content-type 헤더가 없습니다.", + "uploadstash-file-not-found-not-exists": "경로를 찾을 수 없거나 단순 파일이 아닙니다.", + "uploadstash-file-too-large": "$1 바이트를 초과하는 파일을 처리할 수 없습니다.", + "uploadstash-not-logged-in": "로그인한 사용자가 없습니다. 파일은 사용자에 속해야 합니다.", + "uploadstash-wrong-owner": "이 파일($1)은 현재 사용자에 속해있지 않습니다.", + "uploadstash-no-such-key": "해당 키($1)가 없으므로 제거할 수 없습니다.", + "uploadstash-no-extension": "확장자가 비어 있습니다.", + "uploadstash-zero-length": "파일 길이가 0입니다.", "invalid-chunk-offset": "청크 오프셋이 잘못되었습니다.", "img-auth-accessdenied": "접근이 거부됨", "img-auth-nopathinfo": "PATH_INFO를 잃었습니다.\n서버가 이 정보를 받을 수 있도록 설정되어 있지 않습니다.\n이러한 경우는 서버가 CGI 기반이고 img_auth를 지원하지 않을 때 나타날 수 있습니다.\nhttps://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Image_Authorization을 참조하십시오.", diff --git a/languages/i18n/lad.json b/languages/i18n/lad.json index e39f17059e..1f945f36d4 100644 --- a/languages/i18n/lad.json +++ b/languages/i18n/lad.json @@ -61,7 +61,7 @@ "editfont-serif": "Tipografía serif", "sunday": "Alhadh", "monday": "Lunes", - "tuesday": "Martes", + "tuesday": "martes", "wednesday": "Miércoles", "thursday": "Juğeves", "friday": "Viernes", @@ -73,18 +73,18 @@ "thu": "Juğ", "fri": "Vie", "sat": "Shab", - "january": "Jenero", + "january": "jenero", "february": "febrero", - "march": "Março", - "april": "Abril", - "may_long": "Mayo", - "june": "Junio", - "july": "Julio", - "august": "Agosto", - "september": "Setiembre", - "october": "Ochobre", - "november": "Noviembre", - "december": "Diziembre", + "march": "março", + "april": "abril", + "may_long": "mayo", + "june": "junio", + "july": "julio", + "august": "agosto", + "september": "septembre", + "october": "oktobre", + "november": "novembre", + "december": "decembre", "january-gen": "Jenero", "february-gen": "Febrero", "march-gen": "Março", @@ -97,18 +97,18 @@ "october-gen": "Ochobre", "november-gen": "Noviembre", "december-gen": "Diziembre", - "jan": "Jen", - "feb": "Feb", - "mar": "Mar", - "apr": "Abr", - "may": "May", - "jun": "Jun", - "jul": "Jul", - "aug": "Ago", - "sep": "Set", - "oct": "Ocho", - "nov": "Nov", - "dec": "Diz", + "jan": "jen", + "feb": "feb", + "mar": "mar", + "apr": "abr", + "may": "may", + "jun": "jun", + "jul": "jul", + "aug": "ago", + "sep": "sep", + "oct": "okt", + "nov": "nov", + "dec": "dec", "january-date": "Jenero $1", "february-date": "Fevrero $1", "march-date": "Marso $1", @@ -153,7 +153,7 @@ "actions": "Aksiones", "namespaces": "Espacios de nombres", "variants": "Variantes", - "navigation-heading": "Menu de navigasyon", + "navigation-heading": "Menű de navigación", "errorpagetitle": "Yerro", "returnto": "Tornar a $1.", "tagline": "De {{SITENAME}}", @@ -161,11 +161,11 @@ "search": "Buxcar", "searchbutton": "Buxcar", "go": "Ir", - "searcharticle": "Ir", + "searcharticle": "Yir", "history": "La istoria de la hoja", "history_short": "Istoria", "updatedmarker": "trocado desde mi visita de alcavo", - "printableversion": "La forma parâ imprimir", + "printableversion": "Forma imprimivle", "permalink": "Atamiento permanente", "print": "Imprimir", "view": "Ver", @@ -210,7 +210,7 @@ "currentevents": "Novedades", "currentevents-url": "Project:Novedades", "disclaimers": "Refuso de responsabilidad", - "disclaimerpage": "Project:Refuzo de responsabilitá jeneral", + "disclaimerpage": "Project:Refuso de responsabilidad jeneral", "edithelp": "¿Cómo se la troca?", "mainpage": "La Primera Hoja", "mainpage-description": "La Primera Hoja", @@ -250,7 +250,7 @@ "feed-invalid": "Tipo de kanal de subskripsyon es invalido.", "feed-unavailable": "Kanales de subskripsyon no estan disponibles", "site-rss-feed": "Fuente de RSS de $1", - "site-atom-feed": "Canal Atomo de $1", + "site-atom-feed": "Corriente Atomo de $1", "page-rss-feed": "\"$1\" Fuente RSS", "page-atom-feed": "Canal Atomo de $1", "red-link-title": "$1 (la hoja no egziste)", @@ -908,8 +908,9 @@ "tooltip-pt-preferences": "Mis preferencias", "tooltip-pt-watchlist": "Una lista de trocamientos en las hojas que escojites parâ cudiar u süivar (seguir)", "tooltip-pt-mycontris": "La lista de tus kontribüsyones", - "tooltip-pt-login": "Te encorajamos de entrar ma no estás obligado", + "tooltip-pt-login": "Te consejamos de entrar a tu cuento, portanto no sos obligado", "tooltip-pt-logout": "Sal de tu cuento", + "tooltip-pt-createaccount": "Te consejamos de avrir un cuento y hazer entrada allá, portanto no sos obligado", "tooltip-ca-talk": "Diskusyón encima del artíkolo", "tooltip-ca-edit": "Puedes trocar esta hoja. Ma te rogamos para que eches una ojada (previsteo) antes de enrejistrarla.", "tooltip-ca-addsection": "Ajusta un kapítolo muevo", @@ -921,16 +922,16 @@ "tooltip-ca-watch": "Ajusta esta hoja a tu lista de acavidamientos", "tooltip-ca-unwatch": "Quita esta hoja de tu lista de acavidamientos", "tooltip-search": "Buxca en {{SITENAME}}", - "tooltip-search-go": "Vate a la hoja con este nombre egzakto, si egziste.", + "tooltip-search-go": "Entra a la hoja con el mismo nombre, si la hoja egziste", "tooltip-search-fulltext": "Buxca este teksto en las hojas", "tooltip-p-logo": "Vijita la primera hoja", "tooltip-n-mainpage": "Vijita la primera hoja", "tooltip-n-mainpage-description": "Vijita la primera hoja", - "tooltip-n-portal": "Encima del projeto, lo que puedes hazer y ande topar todo", + "tooltip-n-portal": "Encima del projeto, lo que se puede hazer y ande se topa las cosas", "tooltip-n-currentevents": "Jhaberes de oy día en ancho", - "tooltip-n-recentchanges": "Lista de los trocamientos dalcavo en el viki", + "tooltip-n-recentchanges": "La lista de los trocamientos dalcavo enel viki", "tooltip-n-randompage": "Carga una hoja por azardo", - "tooltip-n-help": "Ambézate y topa ayudo", + "tooltip-n-help": "Para saver mas y tomar ayudo", "tooltip-t-whatlinkshere": "Una lista de todas las hojas del viki que tienen atamientos a esta hoja", "tooltip-t-recentchangeslinked": "Los trocamientos dalcavo en las hojas atadas a la ésta", "tooltip-feed-rss": "Sindicación RSS de esta hoja", @@ -938,7 +939,7 @@ "tooltip-t-contributions": "Lista de kontribüsyón (ajustamientos) deste usador", "tooltip-t-emailuser": "A este usuario, mándale una letra electrόnica (ímey)", "tooltip-t-upload": "Suve dosyas", - "tooltip-t-specialpages": "Lista de todas las hojas especiales", + "tooltip-t-specialpages": "La lista de todas las hojas especiales", "tooltip-t-print": "La forma apropiada parâ imprimir esta hoja", "tooltip-t-permalink": "Atamiento permanente (fikso) a este enderechamiento de la hoja", "tooltip-ca-nstab-main": "Ve el artíkolo", @@ -958,6 +959,7 @@ "tooltip-undo": "«Des-hazer» abolta este trocamiento y lo avre en el modo de previsteo. Permete escrivir una razón en el rezümé.", "tooltip-summary": "Esplica en pocos biervos", "anonymous": "{{PLURAL:$1|Uzuario anonimo|Uzuarios anonimos}} de {{SITENAME}}", + "pageinfo-toolboxlink": "Información encima de la hoja", "pageinfo-contentpage-yes": "Si", "pageinfo-protect-cascading-yes": "Si", "previousdiff": "← Trocamiento más antiguo", @@ -1094,7 +1096,7 @@ "feedback-cancel": "Anular", "feedback-message": "Messaje", "feedback-subject": "Sujeto", - "searchsuggest-search": "Bushkar", + "searchsuggest-search": "Busxca en {{SITENAME}}", "duration-seconds": "$1{{PLURAL:$1|segundo|segundos}}", "duration-minutes": "$1{{PLURAL:$1|minuto|minutos}}", "duration-hours": "$1{{PLURAL:$1|ora|oras}}", diff --git a/languages/i18n/lb.json b/languages/i18n/lb.json index b8ff7476f0..7e96931866 100644 --- a/languages/i18n/lb.json +++ b/languages/i18n/lb.json @@ -1243,6 +1243,7 @@ "recentchanges-legend": "Optioune vun de rezenten Ännerungen", "recentchanges-summary": "Op dëser Säit kënnt Dir déi rezent Ännerungen op dëser Wiki gesinn.", "recentchanges-noresult": "Keng Ännerunge während der Period déi ugi gouf passen op de Critère.", + "recentchanges-network": "Duerch en technesche Feeler konnte keng Resultater geluede ginn. Probéiert d'Säit nei ze lueden.", "recentchanges-feed-description": "Verfollegt mat dësem Feed déi rezent Ännerungen op {{SITENAME}}.", "recentchanges-label-newpage": "Mat dëser Ännerung gouf eng nei Säit ugeluecht", "recentchanges-label-minor": "Dëst ass eng kleng Ännerung", @@ -1340,7 +1341,7 @@ "rcfilters-filter-pageedits-label": "Säitenännerungen", "rcfilters-filter-pageedits-description": "Ännerungen um Wikiinhalt, an Diskussiounen, a Beschreiwunge vu Kategorien, ...", "rcfilters-filter-newpages-label": "Ugeluecht Säiten", - "rcfilters-filter-newpages-description": "Ännerunge mat deene nei Säiten ugeluecht ginn.", + "rcfilters-filter-newpages-description": "Ännerunge mat deenen nei Säiten ugeluecht ginn.", "rcfilters-filter-categorization-label": "Ännerunge vun de Kategorien:", "rcfilters-filter-logactions-label": "Protokolléiert Aktiounen", "rcfilters-filter-logactions-description": "Administrativ Aktiounen, Uleeë vu Benotzerkonten, Läsche vu Säiten, Eropgeluede Fichieren, ...", @@ -1363,7 +1364,7 @@ "rcfilters-liveupdates-button-title-on": "Live-Aktualiséierungen ausschalten", "rcfilters-liveupdates-button-title-off": "Nei Ännerunge weisen esoubal wéi se gemaach ginn", "rcfilters-watchlist-markseen-button": "All Ännerungen als gesi markéieren", - "rcfilters-watchlist-edit-watchlist-button": "Ännert Är Lëscht vun iwwerwaachte säiten", + "rcfilters-watchlist-edit-watchlist-button": "Ännert Är Lëscht vun iwwerwaachte Säiten", "rcfilters-watchlist-showupdated": "Ännerungen op Säiten déi Dir net besicht hutt zanter d'Ännerunge gemaach goufen si fett geschriwwen.", "rcfilters-preference-label": "Déi verbessert Versioun vun de rezenten Ännerunge verstoppen", "rcnotefrom": "Hei drënner {{PLURAL:$5|gëtt d'Ännerung|ginn d'Ännerungen}} zanter $3, $4 (maximal $1 Ännerunge gi gewisen).", @@ -1583,6 +1584,10 @@ "uploadstash-errclear": "D'Läsche vun de Fichieren huet net funktionéiert.", "uploadstash-refresh": "Lëscht vun de Fichieren aktualiséieren", "uploadstash-thumbnail": "Miniaturbild weisen", + "uploadstash-bad-path": "Wee (path) gëtt et net.", + "uploadstash-bad-path-unknown-type": "Onbekannten Typ \"$1\".", + "uploadstash-no-extension": "Erweiderung ass eidel (null).", + "uploadstash-zero-length": "Fichier huet d'Gréisst null.", "img-auth-accessdenied": "Zougang refuséiert", "img-auth-nopathinfo": "PATH_INFO feelt.\nÄre Server ass net agestallt fir déi Informatioun weiderzeginn.\nEt kann u CGI leien an datt imag_auth net ënnerstëtzt gëtt.\nKuckt https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Image_Authorization", "img-auth-notindir": "De gefrote Pad ass net am Upload-Repertoire agestallt.", diff --git a/languages/i18n/lv.json b/languages/i18n/lv.json index 6d1d7ae223..9727689620 100644 --- a/languages/i18n/lv.json +++ b/languages/i18n/lv.json @@ -1127,7 +1127,7 @@ "rcfilters-savedqueries-add-new-title": "Saglabāt esošos filtra iestatījumus", "rcfilters-restore-default-filters": "Atjaunot noklusētos filtrus", "rcfilters-clear-all-filters": "Noņemt visus filtrus", - "rcfilters-show-new-changes": "Rādīt jaunās izmaiņas", + "rcfilters-show-new-changes": "Skatīt jaunās izmaiņas", "rcfilters-search-placeholder": "Filtrēt pēdējās izmaiņas (pārlūko vai sāc rakstīt)", "rcfilters-invalid-filter": "Nederīgs filtrs", "rcfilters-empty-filter": "Nav aktīvu filtru. Tiek rādītas visas izmaiņas.", @@ -1300,6 +1300,7 @@ "uploaddisabledtext": "Failu augšupielāde ir atslēgta.", "php-uploaddisabledtext": "Failu augšupielāde ir atslēgta PHP.\nLūdzu, pārbaudi file_uploads uzstādījumu.", "uploadscripted": "Šis fails satur HTML vai skriptu kodu, kuru, interneta pārlūks, var kļūdas pēc, mēģināt interpretēt (ar potenciāli sliktām sekām).", + "uploadinvalidxml": "Nevarēja apstrādāt augšupielādētā faila XML saturu.", "uploadvirus": "Šis fails satur vīrusu! Sīkāk: $1", "uploadjava": "Fails ir ZIP fails, kas satur Java .class failu.\nJava failu augšupielāde nav atļauta, jo tas var radīt iespējas apiet drošības ierobežojumus.", "upload-source": "Augšuplādējamais fails", @@ -1347,7 +1348,7 @@ "backend-fail-writetemp": "Nevar ierakstīt pagaidu failu.", "backend-fail-closetemp": "Nevar aizvērt pagaidu failu.", "backend-fail-read": "Nevar lasīt failu $1.", - "backend-fail-create": "Nevar izveidot failu $1.", + "backend-fail-create": "Nevar rakstīt failā \"$1\".", "zip-wrong-format": "Norādītais fails nebija ZIP fails.", "uploadstash-errclear": "Failu tīrīšana neizdevās.", "uploadstash-refresh": "Atsvaidzināt failu sarakstu", @@ -1381,7 +1382,7 @@ "listfiles_size": "Izmērs", "listfiles_description": "Apraksts", "listfiles_count": "Versijas", - "listfiles-show-all": "Iekļaut attēlus vecās versijas", + "listfiles-show-all": "Iekļaut failu vecās versijas", "listfiles-latestversion": "Pašreizējā versija", "listfiles-latestversion-yes": "Jā", "listfiles-latestversion-no": "Nē", @@ -2660,7 +2661,9 @@ "version-libraries-license": "Licence", "version-libraries-description": "Apraksts", "version-libraries-authors": "Autori", + "redirect": "Pāradresēt pēc faila, lietotāja, lapas, versijas vai žurnāla ieraksta ID", "redirect-submit": "Aiziet", + "redirect-lookup": "Meklēt:", "redirect-value": "Vērtība:", "redirect-user": "Lietotāja ID", "redirect-page": "Lapas ID", diff --git a/languages/i18n/lzh.json b/languages/i18n/lzh.json index d4f0ae1faa..84b95f6756 100644 --- a/languages/i18n/lzh.json +++ b/languages/i18n/lzh.json @@ -635,6 +635,7 @@ "history-feed-description": "維基誌審", "history-feed-item-nocomment": "$1於$2", "history-feed-empty": "此頁不存,或刪、或更。類由此[[Special:Search|尋]]", + "history-edit-tags": "修訂標識", "rev-deleted-comment": "(此註刪矣)", "rev-deleted-user": "(此簿刪矣)", "rev-deleted-event": "(此誌刪矣)", diff --git a/languages/i18n/mk.json b/languages/i18n/mk.json index 59bbf58fb3..dd76403f12 100644 --- a/languages/i18n/mk.json +++ b/languages/i18n/mk.json @@ -1293,6 +1293,7 @@ "recentchanges-summary": "На оваа страница ги следите скорешните промени на викито.", "recentchanges-noresult": "Нема промени од дадениот период што одговараат на бараното.", "recentchanges-timeout": "Ова пребарување истече. Пробајте со поинакви параметри.", + "recentchanges-network": "Поради техничка грешка, не можев да го вчитам исходот. Превчитајте ја страницата.", "recentchanges-feed-description": "Следење на најскорешните промени на викито во овие емитувања.", "recentchanges-label-newpage": "Нова страница", "recentchanges-label-minor": "Ова е ситна промена", @@ -1662,6 +1663,25 @@ "uploadstash-refresh": "Превчитај го списокот на податотеки", "uploadstash-thumbnail": "погл. минијатура", "uploadstash-exception": "Не можев да го складирам подигнатото во складиштето ($1): „$2“.", + "uploadstash-bad-path": "Патеката не постои.", + "uploadstash-bad-path-invalid": "Патеката е неважечка.", + "uploadstash-bad-path-unknown-type": "Непознат вид „$1“.", + "uploadstash-bad-path-unrecognized-thumb-name": "Непрепознаено име на минијатурата.", + "uploadstash-bad-path-no-handler": "Не најдов ракувач за MIME-типот $1 на податотеката $2.", + "uploadstash-bad-path-bad-format": "Клучот „$1“ не е соодветен формат.", + "uploadstash-file-not-found": "Клучот „$1“ не е пронајден во складот.", + "uploadstash-file-not-found-no-thumb": "Не можев да ја добијам минијатурата.", + "uploadstash-file-not-found-no-local-path": "Нема месна патека за размеруван елемент.", + "uploadstash-file-not-found-no-object": "Не можам да создадам месен податотечен објект за минијатурата.", + "uploadstash-file-not-found-no-remote-thumb": "Не успеа добивањето на минијатурата: $1\nurl = $2\n.", + "uploadstash-file-not-found-missing-content-type": "Недостасува заглавието за содржински тип.", + "uploadstash-file-not-found-not-exists": "Не можав да ја најдам патеката или простата податотека.", + "uploadstash-file-too-large": "Не можам да послужам податотека поголема од $1 бајти.", + "uploadstash-not-logged-in": "Нема најавен корисник. Податотеките мора да припаѓаат на корисници.", + "uploadstash-wrong-owner": "Оваа податотека ($1) не му припаѓа на тековниот корисник.", + "uploadstash-no-such-key": "Нема таков клуч ($1). Не можам да отстранам.", + "uploadstash-no-extension": "Наставката е празна.", + "uploadstash-zero-length": "Податотеката има нулта должина.", "invalid-chunk-offset": "Неважечка појдовна точка", "img-auth-accessdenied": "Оневозможен пристап", "img-auth-nopathinfo": "Недостасува PATH_INFO.\nВашиот опслужувач не е нагоден за да ја предаде оваа информација.\nМожеби се заснова на CGI, и така не подржува img_auth.\nПогл. https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Image_Authorization.", diff --git a/languages/i18n/nb.json b/languages/i18n/nb.json index 1aa6530b49..b037fa64a2 100644 --- a/languages/i18n/nb.json +++ b/languages/i18n/nb.json @@ -1686,6 +1686,25 @@ "uploadstash-refresh": "Oppdater listen over filer", "uploadstash-thumbnail": "vis miniatyrbilde", "uploadstash-exception": "Kunne ikke lagre opplastingen i stashen ($1): «$2».", + "uploadstash-bad-path": "Stien finnes ikke.", + "uploadstash-bad-path-invalid": "Stien er ugyldig.", + "uploadstash-bad-path-unknown-type": "Ukjent type «$1».", + "uploadstash-bad-path-unrecognized-thumb-name": "Ukjent miniatyrnavn.", + "uploadstash-bad-path-no-handler": "Ingen behandlingsmåte funnet for MIME-n $1 til fila $2.", + "uploadstash-bad-path-bad-format": "Nøkkelen «$1» er ikke i et korrekt format.", + "uploadstash-file-not-found": "Nøkkelen «$1» ble ikke funnet i stash.", + "uploadstash-file-not-found-no-thumb": "Kunne ikke hente miniatyrbilde.", + "uploadstash-file-not-found-no-local-path": "Ingen lokal sti for skalert element.", + "uploadstash-file-not-found-no-object": "Kunne ikke opprette lokalt filobjekt for miniatyrbilde.", + "uploadstash-file-not-found-no-remote-thumb": "Henting av miniatyrbilde feilet: $1\nurl = $2", + "uploadstash-file-not-found-missing-content-type": "Mangler content-type-header.", + "uploadstash-file-not-found-not-exists": "Kan ikke finne sti eller fil.", + "uploadstash-file-too-large": "Kan ikke tilby en fil som er større enn $1 byte.", + "uploadstash-not-logged-in": "Ingen bruker er logget inn, filer må tilhøre brukere.", + "uploadstash-wrong-owner": "Denne fila ($1) hører ikke til den gjeldende brukeren.", + "uploadstash-no-such-key": "Ingen slik nøkkel ($1), kan ikke fjerne.", + "uploadstash-no-extension": "Utvidelsen er null.", + "uploadstash-zero-length": "Filen har en lengde på null.", "invalid-chunk-offset": "Ugyldig delforskyvning", "img-auth-accessdenied": "Ingen tilgang", "img-auth-nopathinfo": "Manglende PATH_INFO.\nTjeneren din er ikke satt opp til å gi denne informasjonen.\nDen er kanskje CGI-basert og støtter ikke img_auth.\nhttps://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Image_Authorization Se bildeautorisasjon.", diff --git a/languages/i18n/nl.json b/languages/i18n/nl.json index b95b07ffdb..79c03c3b30 100644 --- a/languages/i18n/nl.json +++ b/languages/i18n/nl.json @@ -1723,6 +1723,22 @@ "uploadstash-refresh": "Lijst met bestanden bijwerken", "uploadstash-thumbnail": "miniatuurafbeelding weergeven", "uploadstash-exception": "Kon de upload niet opslaan in de opslagplaats ($1): \"$2\".", + "uploadstash-bad-path": "Pad bestaat niet.", + "uploadstash-bad-path-invalid": "Pad is ongeldig.", + "uploadstash-bad-path-unknown-type": "Onbekend type \"$1\".", + "uploadstash-bad-path-unrecognized-thumb-name": "Miniatuurnaam onbekend.", + "uploadstash-bad-path-bad-format": "Sleutel \"$1\" is niet in het juiste formaat.", + "uploadstash-file-not-found": "Sleutel \"$1\" niet gevonden in de opslag.", + "uploadstash-file-not-found-no-thumb": "Kon geen miniatuur verkrijgen.", + "uploadstash-file-not-found-no-object": "Kan geen lokaal bestandsobject voor het miniatuur aanmaken.", + "uploadstash-file-not-found-no-remote-thumb": "Ophalen van het miniatuur mislukt: $1\nurl = $2\n.", + "uploadstash-file-not-found-not-exists": "Kan het pad niet vinden, of het bestand is geen platte tekst.", + "uploadstash-file-too-large": "Kan geen bestand versturen dat groter is dan $1 bytes.", + "uploadstash-not-logged-in": "Er is geen gebruiker aangemeld, bestanden moeten van een gebruiker zijn.", + "uploadstash-wrong-owner": "Dit bestand ($1) is niet van de huidige gebruiker.", + "uploadstash-no-such-key": "Geen sleutel met deze naam ($1), kan de sleutel niet verwijderen.", + "uploadstash-no-extension": "Extensie ontbreekt.", + "uploadstash-zero-length": "Bestandsgrootte is nul.", "invalid-chunk-offset": "Ongeldige chunkoffset", "img-auth-accessdenied": "Toegang geweigerd", "img-auth-nopathinfo": "PATH_INFO ontbreekt.\nUw server is niet ingesteld om deze gegevens door te geven.\nMisschien gebruikt deze CGI, en dan wordt img_auth niet ondersteund.\nZie https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Image_Authorization voor meer informatie.", diff --git a/languages/i18n/pcd.json b/languages/i18n/pcd.json index 3db9ccbdf6..8884b0b669 100644 --- a/languages/i18n/pcd.json +++ b/languages/i18n/pcd.json @@ -494,11 +494,12 @@ "recentchanges": "Darins canjemints", "recentchanges-legend": "Opchons éd chés nouvieus canjemints", "recentchanges-feed-description": "Tracher chés pus darins cangemints du wiki din chol alimintachon.", - "recentchanges-label-newpage": "Chol modificacion ale o créé eune nouvèle pache", + "recentchanges-label-newpage": "Chol modificacion al o créé eune nouvèle pache", "recentchanges-label-minor": "C'est un tiot canjemint", "recentchanges-label-bot": "Chol modificacion ale o té foaite pèr un robot.", "recentchanges-label-unpatrolled": "Chol modificacion ale n’o poin coèr té controlée.", "recentchanges-label-plusminus": "Él taille deul pache al o cangé éd chol nombe d’octets.", + "recentchanges-legend-newpage": "{{int:recentchanges-label-newpage}} (vir étou èl [[Special:NewPages|lisse des nouvèles paches]]).", "rcfilters-legend-heading": "Lisse des abréviacions :", "rcnotefrom": "Vlo chés modificacions foaites édpuis l' '''$2''' (dousqu'à '''$1''' au plus).", "rclistfrom": "Montrer chés nouvieus cangemints d'puis $3 $2", diff --git a/languages/i18n/pl.json b/languages/i18n/pl.json index 2d48b61259..0caf39a163 100644 --- a/languages/i18n/pl.json +++ b/languages/i18n/pl.json @@ -1357,6 +1357,7 @@ "recentchanges-legend": "Opcje ostatnich zmian", "recentchanges-summary": "Ta strona przedstawia historię ostatnich zmian w tej wiki.", "recentchanges-noresult": "Brak zmian w wybranym okresie spełniających twoje kryteria.", + "recentchanges-network": "Z powodu błędu technicznego nie można załadować żadnych wyników. Spróbuj odświeżyć stronę.", "recentchanges-feed-description": "Obserwuj najświeższe zmiany w tej wiki.", "recentchanges-label-newpage": "W tej edycji utworzono nową stronę", "recentchanges-label-minor": "To jest drobna zmiana", @@ -1398,7 +1399,7 @@ "rcfilters-restore-default-filters": "Przywróć domyślne filtry", "rcfilters-clear-all-filters": "Wyczyść filtry", "rcfilters-show-new-changes": "Zobacz nowsze zmiany", - "rcfilters-search-placeholder": "Filtruj ostatnie zmiany (przeglądaj lub zacznij wpisywać)", + "rcfilters-search-placeholder": "Filtruj zmiany (użyj menu lub wyszukaj według nazwy filtra)", "rcfilters-invalid-filter": "Nieprawidłowy filtr", "rcfilters-empty-filter": "Brak aktywnych filtrów. Wyświetlane są wszystkie zmiany.", "rcfilters-filterlist-title": "Filtry", @@ -1475,11 +1476,11 @@ "rcfilters-tag-prefix-namespace-inverted": ":nie z $1", "rcfilters-exclude-button-off": "Wyklucz zaznaczone", "rcfilters-exclude-button-on": "Zaznaczone są wykluczone", - "rcfilters-view-advanced-filters-label": "Zaawansowane filtry", "rcfilters-view-tags": "Edycje ze znacznikami zmian", "rcfilters-view-namespaces-tooltip": "Przefiltruj wyniki według przestrzeni nazw", "rcfilters-view-tags-tooltip": "Przefiltruj wyniki według znaczników zmian", "rcfilters-view-return-to-default-tooltip": "Wróć do głównego menu filtra", + "rcfilters-view-tags-help-icon-tooltip": "Dowiedz się więcej o znacznikach zmian", "rcfilters-liveupdates-button": "Aktualizacje na bieżąco", "rcfilters-liveupdates-button-title-on": "Wyłącz aktualizacje na bieżąco", "rcfilters-liveupdates-button-title-off": "Wyświetlaj nowe zmiany zaraz po tym jak nastąpią", @@ -1487,6 +1488,7 @@ "rcfilters-watchlist-edit-watchlist-button": "Edytuj swoją listę obserwowanych stron", "rcfilters-watchlist-showupdated": "Wytłuszczono strony, których nie odwiedził{{GENDER:|e|a|e}}ś od czasu zapisania ostatnich zmian.", "rcfilters-preference-label": "Wyłącz ulepszenia strony Ostatnie zmiany", + "rcfilters-preference-help": "Wycofuje wszystkie zmiany interfejsu z 2017 i narzędzia dodane od tamtej pory.", "rcnotefrom": "Poniżej {{PLURAL:$5|pokazano zmianę|pokazano zmiany}} {{PLURAL:$5|wykonaną|wykonane}} po $3, $4 (nie więcej niż '''$1''' pozycji).", "rclistfromreset": "Zresetuj wybór daty", "rclistfrom": "Pokaż nowe zmiany od $3 $2", @@ -1722,6 +1724,8 @@ "uploadstash-refresh": "Odśwież listę plików", "uploadstash-thumbnail": "pokaż miniaturkę", "uploadstash-exception": "Nie udało się zapisać przesyłanego pliku w magazynie tymczasowym ($1): „$2”.", + "uploadstash-bad-path": "Ścieżka nie istnieje.", + "uploadstash-bad-path-invalid": "Ścieżka jest nieprawidłowa.", "invalid-chunk-offset": "Nieprawidłowe przesunięcie fragmentu", "img-auth-accessdenied": "Odmowa dostępu", "img-auth-nopathinfo": "Brak PATH_INFO.\nSerwer nie został skonfigurowany, tak aby przekazywał tę informację.\nMożliwe, że jest oparty na CGI i nie może obsługiwać img_auth.\nWięcej o informacji o autoryzacji grafik na https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Image_Authorization.", diff --git a/languages/i18n/pt-br.json b/languages/i18n/pt-br.json index c130545f68..d5517b09ca 100644 --- a/languages/i18n/pt-br.json +++ b/languages/i18n/pt-br.json @@ -1424,7 +1424,7 @@ "rcfilters-restore-default-filters": "Restaurar filtros padrão", "rcfilters-clear-all-filters": "Limpar todos os filtros", "rcfilters-show-new-changes": "Veja as novas mudanças", - "rcfilters-search-placeholder": "Filtrar alterações (use o menu ou procure o nome do filtro))", + "rcfilters-search-placeholder": "Filtrar mudanças (usar o menu ou procurar o nome do filtro)", "rcfilters-invalid-filter": "Filtro inválido", "rcfilters-empty-filter": "Nenhum filtro ativo. Todas as contribuições são mostradas.", "rcfilters-filterlist-title": "Filtros", @@ -1751,6 +1751,25 @@ "uploadstash-refresh": "Atualizar a lista de arquivos", "uploadstash-thumbnail": "ver miniatura", "uploadstash-exception": " Não foi possível armazenar o upload no cache ($1): \"$2\".", + "uploadstash-bad-path": "O caminho não existe.", + "uploadstash-bad-path-invalid": "O caminho não é válido.", + "uploadstash-bad-path-unknown-type": "O tipo \"$1\" é desconhecido.", + "uploadstash-bad-path-unrecognized-thumb-name": "O nome da miniatura é desconhecido.", + "uploadstash-bad-path-no-handler": "Não foi encontrada uma rotina de tratamento para o tipo mime $1 do ficheiro $2.", + "uploadstash-bad-path-bad-format": "A chave \"$1\" não tem um formato apropriado.", + "uploadstash-file-not-found": "A chave \"$1\" não foi encontrada na área de arquivos escondidos.", + "uploadstash-file-not-found-no-thumb": "Não foi possível obter a miniatura.", + "uploadstash-file-not-found-no-local-path": "Não existe um caminho local para o elemento redimensionado.", + "uploadstash-file-not-found-no-object": "Não foi possível criar um objeto arquivo local para a miniatura.", + "uploadstash-file-not-found-no-remote-thumb": "A obtenção da miniatura falhou: $1\nURL = $2\n.", + "uploadstash-file-not-found-missing-content-type": "Cabeçalho content-type em falta.", + "uploadstash-file-not-found-not-exists": "Não é possível encontrar o caminho, ou o arquivo não é normal.", + "uploadstash-file-too-large": "Não é possível servir um arquivo maior do que $1 bytes.", + "uploadstash-not-logged-in": "Não há nenhum usuário com sessão iniciada; os arquivos têm de pertencer a usuários.", + "uploadstash-wrong-owner": "Este arquivo ($1) não pertence ao usuário atual.", + "uploadstash-no-such-key": "A chave ($1) não existe; não é possível remover.", + "uploadstash-no-extension": "A extensão é nula.", + "uploadstash-zero-length": "O arquivo tem tamanho zero.", "invalid-chunk-offset": "Deslocamento de fragmento inválido", "img-auth-accessdenied": "Acesso negado", "img-auth-nopathinfo": "PATH_INFO em falta.\nO seu servidor não está configurado para passar esta informação.\nPode ser baseado em CGI e não consegue suportar img_auth.\nConsulte a documentação em [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Image_Authorization Image Authorization].", diff --git a/languages/i18n/pt.json b/languages/i18n/pt.json index 6403757489..d55c5b6296 100644 --- a/languages/i18n/pt.json +++ b/languages/i18n/pt.json @@ -680,7 +680,7 @@ "anonpreviewwarning": "Não iniciou sessão. Ao gravar, registará o seu endereço IP no histórico de edições da página.", "missingsummary": "Atenção: Não introduziu um resumo da edição.\nSe clicar novamente \"$1\", a sua edição será gravada sem resumo.", "selfredirect": "Aviso: Está a redirecionar esta página para si mesma.\nPode ter especificado o destino errado para o redirecionamento ou pode estar a editar a página errada.\nSe clicar novamente \"$1\", o redirecionamento será criado na mesma.", - "missingcommenttext": "Introduza um comentário abaixo, por favor.", + "missingcommenttext": "Introduza um comentário, por favor.", "missingcommentheader": "Atenção: Não introduziu um assunto para este comentário.\nSe clicar novamente \"$1\", a sua edição será gravada sem assunto.", "summary-preview": "Antevisão do resumo de edição:", "subject-preview": "Antevisão do assunto:", @@ -758,7 +758,7 @@ "sectioneditnotsupported-text": "A edição de secções não é suportada nesta página.", "permissionserrors": "Erro de permissão", "permissionserrorstext": "Não possui permissão para fazer isso, {{PLURAL:$1|pelo seguinte motivo|pelos seguintes motivos}}:", - "permissionserrorstext-withaction": "Não possui permissão para $2, {{PLURAL:$1|pelo seguinte motivo|pelos seguintes motivos}}:", + "permissionserrorstext-withaction": "Não tem permissão para $2, {{PLURAL:$1|pelo seguinte motivo|pelos seguintes motivos}}:", "contentmodelediterror": "Não pode editar esta revisão porque o modelo de conteúdo é $1, que é diferente do modelo atual da página $2.", "recreate-moveddeleted-warn": "Aviso: Está a recriar uma página anteriormente eliminada.\n\nVerifique se é apropriado continuar a editar esta página.\nPara sua conveniência, é apresentado abaixo o registo de eliminação e movimentação da página:", "moveddeleted-notice": "Esta página foi eliminada.\nPara sua referência, é apresentado abaixo o registo de eliminação, proteção e movimentação da página.", @@ -1339,6 +1339,8 @@ "recentchanges-legend": "Opções das mudanças recentes", "recentchanges-summary": "Acompanhe nesta página as mudanças mais recentes da wiki.", "recentchanges-noresult": "Não foi realizada nenhuma alteração que corresponda a estes critérios durante o período especificado.", + "recentchanges-timeout": "O tempo limite para esta pesquisa foi ultrapassado. Tente usar parâmetros de pesquisa diferentes.", + "recentchanges-network": "Devido a uma falha técnica, não foi possível carregar nenhum resultado. Tente atualizar a página, por favor.", "recentchanges-feed-description": "Acompanhe neste ''feed'' as mudanças mais recentes da wiki.", "recentchanges-label-newpage": "Esta edição criou uma nova página", "recentchanges-label-minor": "Esta é uma edição menor", @@ -1380,7 +1382,7 @@ "rcfilters-restore-default-filters": "Restaurar os filtros padrão", "rcfilters-clear-all-filters": "Limpar todos os filtros", "rcfilters-show-new-changes": "Mostrar as mudanças mais recentes", - "rcfilters-search-placeholder": "Filtrar mudanças recentes (navegue ou comece a escrever)", + "rcfilters-search-placeholder": "Filtrar mudanças (usar o menu ou procurar o nome do filtro)", "rcfilters-invalid-filter": "Filtro inválido", "rcfilters-empty-filter": "Não há filtros ativos. São mostradas todas as contribuições.", "rcfilters-filterlist-title": "Filtros", @@ -1404,7 +1406,7 @@ "rcfilters-filter-user-experience-level-unregistered-label": "Não registados", "rcfilters-filter-user-experience-level-unregistered-description": "Editores que não estão autenticados.", "rcfilters-filter-user-experience-level-newcomer-label": "Novatos", - "rcfilters-filter-user-experience-level-newcomer-description": "Editores registados, com menos de 10 edições e de 4 dias de atividade.", + "rcfilters-filter-user-experience-level-newcomer-description": "Editores registados, que têm menos de 10 edições ou de 4 dias de atividade.", "rcfilters-filter-user-experience-level-learner-label": "Aprendizes", "rcfilters-filter-user-experience-level-learner-description": "Editores registados, com mais experiência do que \"Novatos\", mas menos do que \"Utilizadores experientes\".", "rcfilters-filter-user-experience-level-experienced-label": "Utilizadores experientes", @@ -1457,7 +1459,6 @@ "rcfilters-tag-prefix-namespace-inverted": ":não $1", "rcfilters-exclude-button-off": "Excluir os selecionados", "rcfilters-exclude-button-on": "A excluir os selecionados", - "rcfilters-view-advanced-filters-label": "Filtros avançados", "rcfilters-view-tags": "Edições etiquetadas", "rcfilters-view-namespaces-tooltip": "Filtrar resultados por espaço nominal", "rcfilters-view-tags-tooltip": "Filtrar resultados usando etiquetas de edição", @@ -1708,6 +1709,25 @@ "uploadstash-refresh": "Atualizar a lista de ficheiros", "uploadstash-thumbnail": "ver miniatura", "uploadstash-exception": "Não foi possível gravar o carregamento na área de ficheiros escondidos ($1): \"$2\".", + "uploadstash-bad-path": "O caminho não existe.", + "uploadstash-bad-path-invalid": "O caminho não é válido.", + "uploadstash-bad-path-unknown-type": "O tipo \"$1\" é desconhecido.", + "uploadstash-bad-path-unrecognized-thumb-name": "O nome da miniatura é desconhecido.", + "uploadstash-bad-path-no-handler": "Não foi encontrada uma rotina de tratamento para o tipo mime $1 do ficheiro $2.", + "uploadstash-bad-path-bad-format": "A chave \"$1\" não tem um formato apropriado.", + "uploadstash-file-not-found": "A chave \"$1\" não foi encontrada na área de ficheiros escondidos.", + "uploadstash-file-not-found-no-thumb": "Não foi possível obter a miniatura.", + "uploadstash-file-not-found-no-local-path": "Não existe um caminho local para o elemento redimensionado.", + "uploadstash-file-not-found-no-object": "Não foi possível criar um objeto ficheiro local para a miniatura.", + "uploadstash-file-not-found-no-remote-thumb": "A obtenção da miniatura falhou: $1\nURL = $2\n.", + "uploadstash-file-not-found-missing-content-type": "Cabeçalho content-type em falta.", + "uploadstash-file-not-found-not-exists": "Não é possível encontrar o caminho, ou o ficheiro não é normal.", + "uploadstash-file-too-large": "Não é possível servir um ficheiro maior do que $1 bytes.", + "uploadstash-not-logged-in": "Não há nenhum utilizador com sessão iniciada; os ficheiros têm de pertencer a utilizadores.", + "uploadstash-wrong-owner": "Este ficheiro ($1) não pertence ao utilizador atual.", + "uploadstash-no-such-key": "A chave ($1) não existe; não é possível remover.", + "uploadstash-no-extension": "A extensão é nula.", + "uploadstash-zero-length": "O ficheiro tem tamanho zero.", "invalid-chunk-offset": "Deslocamento de fragmento inválido", "img-auth-accessdenied": "Acesso negado", "img-auth-nopathinfo": "PATH_INFO em falta.\nO seu servidor não está configurado para passar esta informação.\nPode ser baseado em CGI e não consegue suportar img_auth.\nConsulte a documentação em https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Image_Authorization.", @@ -2890,7 +2910,7 @@ "file-no-thumb-animation": "Nota: Devido a limitações técnicas, miniaturas deste ficheiro não serão animadas.", "file-no-thumb-animation-gif": "Nota: Devido a limitações técnicas, miniaturas de GIFs com imagens de alta resolução como este não serão animadas.", "newimages": "Galeria de novos ficheiros", - "imagelisttext": "Abaixo está uma lista de $1 {{PLURAL:$1|ficheiro|ficheiros}} ordenados $2.", + "imagelisttext": "Abaixo está uma lista de $1 {{PLURAL:$1|ficheiro ordenado|ficheiros ordenados}} $2.", "newimages-summary": "Esta página especial mostra os ficheiros mais recentemente enviados.", "newimages-legend": "Filtrar", "newimages-label": "Nome de ficheiro (ou parte dele):", diff --git a/languages/i18n/qqq.json b/languages/i18n/qqq.json index b4a8d247f7..0f7f086897 100644 --- a/languages/i18n/qqq.json +++ b/languages/i18n/qqq.json @@ -1576,6 +1576,7 @@ "rcfilters-savedqueries-apply-and-setdefault-label": "Label for the button to apply saving a new filter setting and set it as default in [[Special:RecentChanges]]. This is for a small popup, please try to use a short string.", "rcfilters-savedqueries-cancel-label": "Label for the button to cancel the saving of a new quick link in [[Special:RecentChanges]]\n{{Identical|Cancel}}", "rcfilters-savedqueries-add-new-title": "Title for the popup to add new quick link in [[Special:RecentChanges]]. This is for a small popup, please try to use a short string.", + "rcfilters-savedqueries-already-saved": "Title for the popup in [[Special:RecentChanges]] that indicates that current set of filters is already saved. This is for a small popup, please try to use a short string.", "rcfilters-restore-default-filters": "Label for the button that resets filters to defaults", "rcfilters-clear-all-filters": "Title for the button that clears all filters", "rcfilters-show-new-changes": "Label for the button to show new changes.", @@ -1916,6 +1917,25 @@ "uploadstash-refresh": "Used as link text in [[Special:UploadStash]].", "uploadstash-thumbnail": "Used as link text in [[Special:UploadStash]].", "uploadstash-exception": "Error message shown when an action related to the upload stash fails unexpectedly.\n\nParameters:\n* $1 - exception name, e.g. 'UploadStashFileNotFoundException'\n* $2 - exceptions details (always in English), e.g. 'cannot find path, or not a plain file'", + "uploadstash-bad-path": "Error message when the upload stash path doesn't exist.", + "uploadstash-bad-path-invalid": "Error message when the upload stash path is invalid.", + "uploadstash-bad-path-unknown-type": "Error message when the upload stash key is of an invalid type.\n\nParameters:\n* $1 - the type", + "uploadstash-bad-path-unrecognized-thumb-name": "Error message when the upload stash key is of an unrecognized thumbnail", + "uploadstash-bad-path-no-handler": "Error message when no handler can be found for the given upload stash key.\n\nParameters:\n* $1 - the mine type\n* $2 - the file path", + "uploadstash-bad-path-bad-format": "Error message when the upload stash key if formatted incorrectly.\n\nParameters:\n* $1 - the stash key", + "uploadstash-file-not-found": "Error message when a stashed file can't be found.\n\nParameters:\n* $1 - the stash key", + "uploadstash-file-not-found-no-thumb": "Error message when no thumbnail could be generated.", + "uploadstash-file-not-found-no-local-path": "Error message when no locally generated thumbnail can be found.", + "uploadstash-file-not-found-no-object": "Error message when no local thumbnail object can be created.", + "uploadstash-file-not-found-no-remote-thumb": "Error message when a thumbnail could not be retrieved from a remote server.\n\nParameters:\n*1 - error details\n* $2 - remote url", + "uploadstash-file-not-found-missing-content-type": "Error message when a thumbnail from a remote server is missing the content-type header.", + "uploadstash-file-not-found-not-exists": "Error message when a stashed file doesn't exist.", + "uploadstash-file-too-large": "Error message when a too large thumbnail is requested.\n\nParameters:\n* $1 - The maximum amount of bytes", + "uploadstash-not-logged-in": "Error message when a logged out user tries to access a stashed upload.", + "uploadstash-wrong-owner": "Error message when a wrong user tries to access a stashed upload.\n\nParameters:\n* $1 - the stash key", + "uploadstash-no-such-key": "Error message when a stash key couldn't be found.\n\nParameters:\n* $1 - the stash key", + "uploadstash-no-extension": "Error message when a stashed file has no extension.", + "uploadstash-zero-length": "Error message when a file has no length (file size is zero).", "invalid-chunk-offset": "Error that can happen if chunks get uploaded out of order.\nAs a result of this error, clients can continue from an offset provided or restart the upload.\nUsed on [[Special:UploadWizard]].", "img-auth-accessdenied": "[[mw:Manual:Image Authorization|Manual:Image Authorization]]: Access Denied\n{{Identical|Access denied}}", "img-auth-nopathinfo": "[[mw:Manual:Image Authorization|Manual:Image Authorization]]: Missing PATH_INFO - see english description\n{{Doc-important|This is plain text. Do not use any wiki syntax.}}", @@ -2230,7 +2250,7 @@ "apisandbox-dynamic-parameters-add-placeholder": "JavaScript text field placeholder for the widget to add a new arbitrary parameter.", "apisandbox-dynamic-error-exists": "Displayed as an error message from JavaScript when trying to add a new arbitrary parameter with a name that already exists. Parameters:\n* $1 - Parameter name that failed.", "apisandbox-deprecated-parameters": "JavaScript button label and fieldset legend for separating deprecated parameters in the UI.", - "apisandbox-fetch-token": "Tooltop for the button that fetches a CSRF token.", + "apisandbox-fetch-token": "Label for the button that fetches a CSRF token.", "apisandbox-submit-invalid-fields-title": "Title for a JavaScript error message when fields are invalid.", "apisandbox-submit-invalid-fields-message": "Content for a JavaScript error message when fields are invalid.", "apisandbox-results": "JavaScript tab label for the tab displaying the API query results.\n{{Identical|Result}}", diff --git a/languages/i18n/ru.json b/languages/i18n/ru.json index 77f9bc5b0e..3293e4e65f 100644 --- a/languages/i18n/ru.json +++ b/languages/i18n/ru.json @@ -400,7 +400,7 @@ "nstab-template": "Шаблон", "nstab-help": "Справка", "nstab-category": "Категория", - "mainpage-nstab": "Главная страница", + "mainpage-nstab": "Заглавная", "nosuchaction": "Такого действия нет", "nosuchactiontext": "Указанное в URL действие ошибочно.\nВозможно, вы допустили опечатку при наборе URL или перешли по ошибочной ссылке.\nЭто может также указывать на ошибку в проекте {{SITENAME}}.", "nosuchspecialpage": "Нет такой служебной страницы", @@ -1430,7 +1430,7 @@ "rcfilters-restore-default-filters": "Восстановить фильтры по умолчанию", "rcfilters-clear-all-filters": "Очистить все фильтры", "rcfilters-show-new-changes": "Последние изменения", - "rcfilters-search-placeholder": "Последние изменения фильтров (просмотрите или начните вводить)", + "rcfilters-search-placeholder": "Изменения фильтров (используйте меню или ищите по названию фильтра)", "rcfilters-invalid-filter": "Недопустимый фильтр", "rcfilters-empty-filter": "Нет активных фильтров. Показываются все правки.", "rcfilters-filterlist-title": "Фильтры", diff --git a/languages/i18n/sa.json b/languages/i18n/sa.json index babf75cc40..666f91a1f9 100644 --- a/languages/i18n/sa.json +++ b/languages/i18n/sa.json @@ -1770,7 +1770,7 @@ "rollback-success": "$1 इत्यस्य सम्पादनम् अपनयतु । \n$2 द्वारा सम्पादितां अन्तिमावृत्तिं पुनस्थापयतु ।", "sessionfailure-title": "सत्रस्य वैफल्यम् ।", "sessionfailure": "भवतः प्रवेशत्रेण सह कापि समस्या अस्ति इति भाति ।\nसत्रापहरणात् रक्षणस्य सावधानार्थं भवतः क्रियाकलापः अपनीतः ।\nनिर्गत्य पूर्वपुटं गत्वा पुनः गत्वा प्रयत्नं करोतु ।", - "protectlogpage": "सुरक्षािता संरक्षितावलिः", + "protectlogpage": "सुरक्षायाः संरक्षितावलिः :", "protectlogtext": "अधो दत्ता सुरक्षार्थं कृतपरिवर्ननानां सूचिका अस्ति । \nवरतमानस्य सुरक्षितपुटानां सूचिकार्थम् अत्र [[Special:ProtectedPages|सुरक्षितपुटानां सूचिका]] पश्यतु ।", "protectedarticle": "\"[[$1]]\" संरक्षितमस्ति", "modifiedarticleprotection": "\"[[$1]]\" इत्येतदर्थं सुरक्षा-स्तरः परिवर्तित: :", diff --git a/languages/i18n/sat.json b/languages/i18n/sat.json index 629efd286d..bdc02ec47c 100644 --- a/languages/i18n/sat.json +++ b/languages/i18n/sat.json @@ -233,6 +233,7 @@ "ok": "Ṭhik gea", "retrievedfrom": "\"$1\" khon ñam ạgui", "youhavenewmessages": "Amaḱ do $1 ($2) menaḱa", + "newmessageslinkplural": "{{PLURAL:$1|ᱢᱤᱫ ᱱᱟᱶᱟ ᱢᱮᱥᱮᱡᱽ|999=ᱱᱟᱶᱟ ᱢᱮᱥᱮᱡᱽᱠᱚ}}", "newmessagesdifflinkplural": "ᱢᱩᱪᱟᱹᱫ {{PLURAL:$1|ᱵᱚᱫᱚᱞ|999=ᱵᱚᱫᱚᱞᱠᱚ}}", "youhavenewmessagesmulti": "Amaḱ nãwã mesagko do $1 menaḱa", "editsection": "Tońge", @@ -481,6 +482,7 @@ "storedversion": "Rukhiyạ nãwã aroe", "yourdiff": "Farak", "templatesused": "Noa sakamre beoharen {{PLURAL:$1 ṭempeleṭ ṭempeleṭko}}:", + "templatesusedpreview": "{{PLURAL:$1|ᱪᱷᱟᱸᱪ|ᱪᱷᱟᱸᱪᱠᱚ}} ᱵᱮᱵᱷᱟᱨ ᱟᱠᱟᱱᱟ ᱱᱟᱶᱟ ᱧᱮᱱᱮᱞᱨᱮ:", "template-protected": "Rukhiạ", "template-semiprotected": "(Kạṭic-rukhiyạ)", "hiddencategories": "Noa sakam do {{PLURAL:$1 1 ukuakan bhag $1 uku akan bhagkorenaḱ}} gaõtarenge:", @@ -504,6 +506,7 @@ "post-expand-template-inclusion-category": "Sakamko oka borḍre noa tahẽna ona doe paromkeda", "post-expand-template-argument-warning": "'''Sontoroḱmẽ:''' Noa sakamre komse kom mitṭen forma joṛao menaḱa ạḍi lạṭute pasnao akana.\nOnate noa ạrgumenṭkodo bạgi giḍi hoena.", "post-expand-template-argument-category": "Bagi forma ạrgumenṭ sapdoho sakam", + "undo-failure": "ᱥᱟᱯᱲᱟᱣᱠᱚ ᱵᱟᱭ ᱟᱹᱪᱩᱨ ᱨᱩᱣᱟᱹᱲᱚᱜ-ᱟ ᱛᱟᱞᱟ-ᱢᱟᱞᱟ ᱥᱟᱯᱲᱟᱣ ᱵᱤᱨᱚᱫᱽ ᱤᱫᱤᱠᱟᱛᱮ |", "viewpagelogs": "Noa sakam reaḱ cạbi udukme", "nohistory": "Noa sakam re do jahan sompadon reaḱ jạṛ bạnuḱa.", "currentrev": "Mucạt nãwã aroe", @@ -553,10 +556,12 @@ "mergelog": "ᱞᱚᱜᱽ ᱢᱮᱥᱟ", "revertmerge": "bań mit́", "history-title": "\"$1\": Jạṛ nãwã aroe", + "difference-title": "\"$1\" ᱨᱮᱱᱟᱜ ᱫᱚᱦᱲᱟᱭᱮᱱ ᱛᱟᱞᱟᱨᱮ ᱯᱷᱟᱨᱟᱠ", "lineno": "Sạr $1:", "compareselectedversions": "Noa barea nãwã bachawanaḱ talare tolonayme", "editundo": "ruạṛ", "diff-empty": "(ᱵᱷᱮᱜᱮᱫ ᱵᱟᱹᱱᱩᱜ)", + "diff-multi-sameuser": "({{PLURAL:$1|ᱢᱤᱫ ᱛᱟᱞᱟ-ᱢᱟᱞᱟ ᱫᱚᱦᱲᱟ|$1 ᱛᱟᱞᱟ-ᱢᱟᱞᱟ ᱫᱚᱦᱲᱟᱠᱚ}} ᱥᱚᱢᱟᱱ ᱵᱮᱵᱷᱟᱨᱤᱭᱟᱹ ᱫᱟᱨᱟᱭᱛᱮ ᱵᱟᱭ ᱧᱮᱞᱚᱜ-ᱟ)", "searchresults": "Se̠ndra pho̠l", "searchresults-title": "\"$1\" renaḱ Sẽndra phol", "prevn": "Laha reaḱ {{PLURAL:$1|$1}}", @@ -645,6 +650,7 @@ "recentchanges": "Nãwã bo̠do̠lko", "recentchanges-legend": "Nahaḱ bodol teaḱko", "recentchanges-summary": "Noa sakamre wiki reaḱ joto khon nãwã bodolko paṅjaṅjaymẽ.", + "recentchanges-noresult": "ᱮᱢᱞᱮᱱ ᱥᱚᱢᱚᱭ ᱵᱷᱤᱛᱤᱨ ᱨᱮ ᱵᱚᱫᱚᱞᱟᱜ ᱠᱚ ᱵᱟᱭ ᱢᱤᱫᱩᱜ ᱠᱟᱱᱟ ᱾", "recentchanges-feed-description": "Noa feedre wiki reaḱ joto khon nãwã bodolko paṅjaymẽ", "recentchanges-label-newpage": "Noa sompadon do nãwã mint́ṭen sakame tearkeda", "recentchanges-label-minor": "Noado hudiń mạchi toṅge", @@ -682,6 +688,7 @@ "rc-change-size-new": "$1 {{PLURAL:$1|ᱵᱟᱭᱤᱴ|ᱵᱟᱭᱤᱴᱥ}} ᱵᱚᱫᱚᱞ ᱛᱟᱭᱚᱢ", "rc-enhanced-expand": "Purạote uduḱ", "rc-enhanced-hide": "Purạo cuku", + "rc-old-title": "ᱚᱥᱚᱞᱨᱮ ᱛᱮᱭᱟᱨᱟᱠᱟᱱᱟ \"$1\" ᱞᱮᱠᱟᱛᱮ", "recentchangeslinked": "Sãotenaḱ bodolko", "recentchangeslinked-feed": "ᱥᱟᱹᱜᱟᱹᱭᱟᱱ ᱵᱚᱫᱚᱞᱠᱚ", "recentchangeslinked-toolbox": "Noṛjoṛ palaṭko", @@ -723,7 +730,9 @@ "imagelinks": "Phayel bebohar", "linkstoimage": "Latar reaḱ {{PLURAL:$1 sakam $1 sakam}} khon noa rẽtre joṛao menaḱa:", "nolinkstoimage": "Nonḍe do noa são joṛao sakam banuka", + "linkstoimage-redirect": "$1 (ᱨᱮᱫ ᱢᱚᱦᱰᱟᱜ-ᱟ) $2", "sharedupload-desc-here": "Noa rẽt do nonḍe khon- $1 ar paseć eṭaḱaḱ porjekṭko beoharakana.\nNoa reaḱ pasnao katha [$2 rẽt pasnao sakam] latare emena", + "filepage-nofile": "ᱱᱚᱶᱟ ᱧᱩᱛᱩᱢᱟᱜ ᱨᱮᱫ ᱵᱟᱹᱱᱩᱜ-ᱟ ᱾", "upload-disallowed-here": "Am do noa phayel cetanre bam ol daṛẽaḱa", "randompage": "Joṛao sakam", "statistics": "Halot", @@ -746,6 +755,7 @@ "booksources": "Puthi ńamoḱ ṭhại/jayga", "booksources-search-legend": "Puthi reak ṭhai sendrayme", "booksources-search": "Sendra", + "specialloguserlabel": "ᱠᱟᱹᱢᱤᱭᱟᱹ:", "speciallogtitlelabel": "ᱡᱚᱥ (ᱧᱩᱛᱩᱢ ᱟᱨᱵᱟᱝ {{ns:user}}:ᱵᱮᱵᱷᱟᱨᱤᱭᱟᱹ ᱞᱟᱹᱜᱩᱫ ᱵᱮᱵᱷᱟᱨᱤᱭᱟᱹ ᱧᱩᱛᱩᱢ):", "log": "Cạbiko", "all-logs-page": "ᱡᱚᱛᱚ ᱫᱤᱥᱣᱟᱹ ᱞᱚᱜᱽ ᱠᱚ", @@ -778,6 +788,7 @@ "watch": "Ńelme", "unwatch": "bang nelok' a", "watchlist-details": "Baṅ purạo tạlikare {{PLURAL:$1ṭen sakam $1 ṭen sakam}} menaḱa (roṛ sakamko lekhare baṅ sapkate)", + "wlnote": "ᱞᱟᱛᱟᱨ ᱨᱮᱱᱟᱜ {{PLURAL:$1|ᱫᱚ ᱢᱩᱪᱟᱹᱫ ᱵᱚᱫᱚᱞ ᱠᱟᱱᱟ|ᱠᱚ ᱫᱚ ᱢᱩᱪᱟᱹᱫ $1 ᱵᱚᱫᱚᱞᱠᱟᱱᱟ}} ᱢᱩᱪᱟᱹᱫ ᱨᱮ {{PLURAL:$2|ᱴᱟᱲᱟᱝ|$2 ᱴᱟᱲᱟᱝ}}, $3, $4 ᱞᱮᱠᱟᱛᱮ ᱾", "wlshowlast": "Mucạtet́ udukmẽ $1 baje $2 maha", "watchlist-options": "Ńelok tạlika reak sonketko", "watching": "Ńeloḱ kana...", @@ -789,8 +800,10 @@ "actionfailed": "Kami bang hoe-lena", "dellogpage": "Mãrao log", "rollbacklink": "Ghurlạo ạcur", + "rollbacklinkcount": "ᱜᱚᱰᱟᱣ ᱨᱩᱣᱟᱹᱲ $1 {{PLURAL:$1|ᱥᱟᱯᱲᱟᱣ|ᱥᱟᱯᱲᱟᱣᱠᱚ}}", "protectlogpage": "Rukhiyạy tala cạbi", "protectedarticle": "Rukhiyạgeya \"[[$1]]\"", + "modifiedarticleprotection": "\"[[$1]]\" ᱞᱟᱹᱜᱤᱫ ᱨᱩᱠᱷᱭᱟᱹ ᱟᱲᱮ ᱵᱚᱫᱚᱞᱮᱱᱟ", "protectcomment": "karon", "protectexpiry": "Cabaḱ", "protect-default": "ᱡᱚᱛᱚ ᱵᱮᱵᱷᱟᱨᱤᱭᱟᱹᱠᱚ ᱫᱟᱣ ᱮᱢ", @@ -802,6 +815,7 @@ "namespace": "Ńutum reaḱ ṭhai", "invert": "Seć bachao", "tooltip-invert": "ᱱᱚᱶᱟ ᱵᱟᱠᱥᱟ ᱴᱤᱠ ᱢᱮ ᱥᱟᱦᱴᱟ ᱠᱷᱚᱱ ᱵᱚᱫᱚᱞᱟᱜᱠᱚ ᱫᱟᱱᱟᱝ ᱞᱟᱹᱜᱤᱫ ᱵᱟᱛᱷᱚᱱ ᱨᱟᱠᱷᱟ ᱧᱩᱛᱩᱢ ᱥᱟᱶᱛᱮ (ᱟᱨ ᱡᱚᱯᱚᱲᱟᱣᱟᱱ ᱨᱟᱠᱷᱟ ᱧᱩᱛᱩᱢ ᱡᱩᱫᱤ ᱴᱤᱠ ᱟᱠᱟᱱᱟ)", + "namespace_association": "ᱥᱚᱦᱚᱫᱤᱭᱟᱹ ᱨᱟᱠᱷᱟ ᱧᱩᱛᱩᱢ", "tooltip-namespace_association": "ᱱᱚᱶᱟ ᱵᱟᱠᱥᱟ ᱴᱤᱠ ᱢᱮ ᱨᱚᱯᱚᱲ ᱵᱟᱝᱠᱷᱟᱱ ᱥᱟᱛᱟᱢ ᱨᱟᱠᱷᱟ ᱧᱩᱛᱩᱢ ᱵᱟᱪᱷᱚᱱ ᱟᱠᱟᱱ ᱨᱟᱠᱷᱟ ᱧᱩᱛᱩᱢ ᱥᱟᱶ ᱡᱚᱯᱚᱲᱟᱣ ᱟᱠᱟᱱᱟᱜ", "blanknamespace": "Mukhiạ̣", "contributions": "{{GENDER:$1|Beoharićaḱ }} Kạmiko", @@ -809,7 +823,8 @@ "mycontris": "Ińaḱ kạmiko", "anoncontribs": "Ińaḱ kạmiko", "contribsub2": "$1 ($2) lạgitte", - "uctop": "(coṭ utạr)", + "nocontribs": "ᱱᱚᱶᱟ ᱮᱢᱟᱜ ᱥᱟᱶ ᱡᱚᱲᱟᱣᱟᱱ ᱵᱚᱫᱚᱞᱠᱚ ᱵᱟᱭ ᱧᱟᱢᱞᱮᱱᱟ |", + "uctop": "(ᱱᱤᱛᱚᱜ)", "month": "Cando khon (ar etohopreaḱ)", "year": "Nia serma reak' pahil khoch'", "sp-contributions-newbies": "Nãwã ekaunṭ lạgit kạmiko uduḱme", @@ -1009,6 +1024,7 @@ "redirect": "ᱨᱮᱫ, ᱵᱮᱵᱷᱟᱨᱩᱭᱟᱹ, ᱥᱟᱦᱴᱟ, ᱧᱮᱞ-ᱟᱹᱨᱩ, ᱵᱟᱝᱠᱷᱟᱱ ᱞᱚᱜᱽ ID ᱫᱟᱨᱟᱭᱛᱮ ᱢᱚᱦᱰᱟ", "redirect-submit": "ᱥᱮᱱᱚᱜ", "redirect-lookup": "ᱧᱮᱞᱢᱮ", + "redirect-value": "ᱫᱟᱢ:", "redirect-user": "ᱵᱮᱵᱷᱟᱨᱤᱭᱟᱹ ID", "redirect-page": "ᱥᱟᱦᱴᱟ ID", "redirect-revision": "ᱥᱟᱦᱴᱟ ᱧᱮᱞ-ᱟᱹᱨᱩ", @@ -1023,10 +1039,12 @@ "logentry-delete-restore": "$1 {{GENDER:$2|ᱨᱟᱠᱷᱟ ᱫᱚᱲᱦᱟ}} ᱠᱮᱜ-ᱟ ᱥᱟᱦᱴᱟ $3 ($4)", "revdelete-content-hid": "ᱩᱱᱩᱫᱩᱜ ᱫᱟᱱᱟᱝ", "logentry-move-move": "$1 beoharić $3 sakam do $4 ńutumre {{GENDER:$2|ạcạr}} akada", + "logentry-move-move-noredirect": "$1 {{GENDER:$2|ᱩᱪᱟᱹᱲᱠᱮᱜ-ᱟᱭ}} ᱥᱟᱦᱴᱟ $3 to $4 ᱢᱚᱦᱰᱟ ᱵᱤᱱ ᱵᱟᱹᱜᱤ ᱠᱟᱛᱮ", "logentry-move-move_redir": "$1 {{GENDER:$2|ᱩᱪᱟᱹᱲᱮᱱᱟ}} ᱥᱟᱦᱴᱟ $3 ᱠᱷᱚᱱ $4 ᱪᱮᱛᱟᱱ ᱢᱚᱸᱦᱰᱟ ᱦᱟᱠᱟᱱᱟ", "logentry-newusers-create": "Beoharićaḱ hisạb khata $1 do jhićena", "logentry-newusers-autocreate": "ᱵᱮᱵᱷᱟᱨᱤᱭᱟᱹ ᱠᱷᱟᱛᱟ $1 ᱫᱚ {{GENDER:$2|ᱛᱮᱭᱟᱨᱮᱱᱟ}} ᱟᱡᱛᱮᱜᱮ", "logentry-upload-upload": "$1 {{GENDER:$2|rakaṕ akadae}} $3", + "logentry-upload-overwrite": "$1 {{GENDER:$2|ᱞᱟᱫᱮᱭᱮᱱᱟ}} ᱢᱤᱫ ᱱᱟᱶᱟ ᱵᱷᱟᱨᱥᱚᱱ $3 ᱨᱮᱱᱟᱜ", "searchsuggest-search": "ᱥᱮᱸᱫᱽᱨᱟ {{SITENAME}}", "duration-days": "$1 {{PLURAL:$1|ᱢᱟᱦᱟᱸ|ᱢᱟᱸᱦᱟᱸ}}", "randomrootpage": "ᱟᱹᱛᱷᱟᱣᱲᱤ ᱨᱮᱦᱮᱫ ᱥᱟᱦᱴᱟ" diff --git a/languages/i18n/skr-arab.json b/languages/i18n/skr-arab.json index 593980e1c9..7f9f28662c 100644 --- a/languages/i18n/skr-arab.json +++ b/languages/i18n/skr-arab.json @@ -26,16 +26,16 @@ "editfont-sansserif": "سنس سیرف فونٹ", "editfont-serif": "سیرف فونٹ", "sunday": "اتوار", - "monday": "سونوار", + "monday": "سون٘وار", "tuesday": "منگل", - "wednesday": "بدھ", + "wednesday": "ٻُدھ", "thursday": "خمیس", "friday": "جمعہ", "saturday": "چھݨ چھݨ", "sun": "اتوار", - "mon": "سونوار", + "mon": "سون٘وار", "tue": "منگل", - "wed": "بدھ", + "wed": "ٻُدھ", "thu": "خمیس", "fri": "جمعہ", "sat": "چھݨ چھݨ", diff --git a/languages/i18n/sl.json b/languages/i18n/sl.json index 3321b46115..6dbd987520 100644 --- a/languages/i18n/sl.json +++ b/languages/i18n/sl.json @@ -1282,6 +1282,7 @@ "recentchanges-summary": "Na tej strani lahko spremljate najnovejše spremembe wikija.", "recentchanges-noresult": "V danem obdobju nobena sprememba ne ustreza tem merilom.", "recentchanges-timeout": "Čas iskanja je potekel. Poskusite uporabiti drugačne parametre iskanja.", + "recentchanges-network": "Zaradi tehnične napake rezultatov ne moremo naložiti. Prosimo, poskusite osvežiti stran.", "recentchanges-feed-description": "Spremljajte zadnje spremembe wikija prek tega vira.", "recentchanges-label-newpage": "To urejanje je ustvarilo novo stran", "recentchanges-label-minor": "To je manjše urejanje", diff --git a/languages/i18n/sv.json b/languages/i18n/sv.json index 82575b112f..e7d3c4eeb2 100644 --- a/languages/i18n/sv.json +++ b/languages/i18n/sv.json @@ -1344,6 +1344,7 @@ "recentchanges-summary": "Följ de senaste ändringarna i wikin på denna sida.", "recentchanges-noresult": "Inga ändringar under den angivna perioden matchar dessa kriterier.", "recentchanges-timeout": "Tidsgränsen för denna sökning har gått ut. Du kan prova andra sökparametrar.", + "recentchanges-network": "På grund av ett tekniskt fel kunde inga resultat läsas in. Försök att uppdatera sidan.", "recentchanges-feed-description": "Följ de senaste ändringarna i wikin genom detta flöde", "recentchanges-label-newpage": "Denna redigering skapade en ny sida", "recentchanges-label-minor": "Detta är en mindre ändring", @@ -1385,7 +1386,7 @@ "rcfilters-restore-default-filters": "Återställ standardfilter", "rcfilters-clear-all-filters": "Rensa alla filter", "rcfilters-show-new-changes": "Visa de nyaste ändringarna", - "rcfilters-search-placeholder": "Filtrera senaste ändringar (bläddra eller börja skriva)", + "rcfilters-search-placeholder": "Filtrera senaste ändringar (använd menyn eller sök efter filternamn)", "rcfilters-invalid-filter": "Ogiltigt filter", "rcfilters-empty-filter": "Inga aktiva filter. Alla bidrag visas.", "rcfilters-filterlist-title": "Filter", diff --git a/languages/i18n/tr.json b/languages/i18n/tr.json index 0679022f27..0516e32d7e 100644 --- a/languages/i18n/tr.json +++ b/languages/i18n/tr.json @@ -779,7 +779,7 @@ "permissionserrorstext": "Aşağıdaki {{PLURAL:$1|sebep|sebepler}}den dolayı, bunu yapmaya yetkiniz yok:", "permissionserrorstext-withaction": "Aşağıdaki {{PLURAL:$1|neden|nedenler}}den dolayı $2 yetkiniz yok:", "recreate-moveddeleted-warn": "Uyarı: Daha önceden silinmiş bir sayfayı tekrar oluşturuyorsunuz.\n\nBu sayfayı düzenlemeye devam etmenin uygun olup olmadığını düşünmelisiniz.\nBu sayfanın silme ve taşıma günlüğü kolaylık için burada verilmiştir:", - "moveddeleted-notice": "Bu sayfa silinmiş.\nSayfanın silme ve taşıma kaydı referans için aşağıda verilmiştir.", + "moveddeleted-notice": "Bu sayfa silinmiş.\nSayfanın silme, koruma ve taşıma kaydı referans için aşağıda verilmiştir.", "log-fulllog": "Tam günlüğü gör", "edit-hook-aborted": "Değişiklik çengelle durduruldu.\nBir açıklama verilmedi.", "edit-gone-missing": "Sayfa güncellenemiyor.\nSilinmiş görünüyor.", diff --git a/languages/i18n/ur.json b/languages/i18n/ur.json index 7108864055..9ec4ccee7c 100644 --- a/languages/i18n/ur.json +++ b/languages/i18n/ur.json @@ -636,7 +636,7 @@ "anonpreviewwarning": "آپ داخل نہیں ہیں، چنانچہ تبدیلیاں محفوظ کرنے کی صورت میں اس صفحہ کا تاریخچہ آپ کا آئی پی پتا محفوظ کر لے گا۔", "missingsummary": "'''انتباہ:''' آپ نے ترمیمی خلاصہ مہیّا نہیں کیا.\nاگر آپ نے محفوظ کا بٹن دوبارہ دبایا تو آپ کی ترمیم بغیر کسی خلاصہ کے محفوظ ہوجائے گی.", "selfredirect": "انتباہ: آپ پیش نظر صفحہ کو خود اسی کی جانب رجوع مکرر کر رہے ہیں۔\nشاید آپ نے رجوع مکرر کا غلط ہدف درج کیا ہے یا غلط صفحہ میں ترمیم کر رہے ہیں۔\nتاہم اگر آپ «$1» پر دوبارہ کلک کریں تو بہرصورت اس رجوع مکرر کو بنا دیا جائے گا۔", - "missingcommenttext": "براہِ کرم! تبصرہ نیچے درج کیجئے.", + "missingcommenttext": "براہ کرم اپنا تبصرہ درج کریں۔", "missingcommentheader": "یاددہانی: آپ نے اِس تبصرہ کیلئے عنوان یا شہ سرخی مہیّا نہیں کی ہے۔\nاگر آپ نے \"$1\" کا بٹن دوبارہ دبایا تو آپ کا تبصرہ بغیر کسی عنوان کے محفوظ ہوجائے گا۔", "summary-preview": "خلاصہِ ترمیم کی نمائش:", "subject-preview": "عنوان/شہ سرخی کی نمائش:", diff --git a/languages/i18n/yue.json b/languages/i18n/yue.json index 3756ee1a26..f30b982c9e 100644 --- a/languages/i18n/yue.json +++ b/languages/i18n/yue.json @@ -62,7 +62,7 @@ "tog-shownumberswatching": "顯示有幾多人監視", "tog-oldsig": "你而家嘅簽名:", "tog-fancysig": "將簽名以維基字對待(冇自動連結)", - "tog-uselivepreview": "用即時預覽", + "tog-uselivepreview": "響冇重新加載過個頁面嘅情況下用即時預覽", "tog-forceeditsummary": "我冇入修改註解時通知我", "tog-watchlisthideown": "響監視清單度隱藏我嘅編輯", "tog-watchlisthidebots": "響監視清單度隱藏機械人嘅編輯", @@ -621,7 +621,7 @@ "anonpreviewwarning": "''你重未登入,你嘅 IP 位址會喺呢個頁面嘅修訂歷史中記錄落嚟。''", "missingsummary": "'''提醒:''' 你未提供編輯摘要。如果你再撳多一下「$1」嘅話,咁你儲存嘅編輯就會無摘要。", "selfredirect": "警告: 你個跳轉彈返去自己度。\n你可能設錯咗跳轉目標,或者改錯咗版。\n如果你再撳多「$1」一下,就會照幫你開呢個跳轉。", - "missingcommenttext": "請輸入一個註解。", + "missingcommenttext": "請打評語。", "missingcommentheader": "提醒:你響呢個註解度並無提供一個主題/標題。如果你再撳一次「$1」,你嘅編輯就會無題。", "summary-preview": "編輯摘要預覽:", "subject-preview": "主題預覽:", @@ -701,7 +701,7 @@ "contentmodelediterror": "你唔改得呢版修訂,因為呢個修訂嘅內容模型係 $1 ,同而家嘅內容模型 $2 有分別。", "recreate-moveddeleted-warn": "'''警告: 你而家重開一版係先前曾經刪除過嘅。'''\n\n你應該要考慮吓繼續編輯呢一版係唔係適合嘅。\n為咗方便起見,呢一版嘅刪除同搬版記錄已經響下面提供:", "moveddeleted-notice": "呢一版已經刪咗。\n呢版嘅刪除同搬版日誌響下面提供咗以便參考。", - "moveddeleted-notice-recent": "唔好意思,呢版啱啱刪走咗(最近24個鐘內)。\n呢版刪版同搬版紀錄喺下低做參考。", + "moveddeleted-notice-recent": "唔好意思,呢版啱啱刪走咗(最近24個鐘內)。\n呢版嘅刪版、搬版同保護紀錄喺下低做參考。", "log-fulllog": "睇成個日誌", "edit-hook-aborted": "編輯由鈎取消咗。\n佢無畀到解釋。", "edit-gone-missing": "唔能夠更新頁。\n佢可能啱啱刪除咗。", @@ -961,7 +961,7 @@ "prefs-editwatchlist-clear": "清理你嘅監視清單", "prefs-watchlist-days": "監視清單嘅顯示日數:", "prefs-watchlist-days-max": "最多 $1 日", - "prefs-watchlist-edits": "喺加強版監視清單度嘅最多顯示更改數:", + "prefs-watchlist-edits": "監視清單度嘅最多顯示更改數:", "prefs-watchlist-edits-max": "最大數量:1000", "prefs-watchlist-token": "監視清單幣:", "prefs-misc": "雜項", @@ -1000,7 +1000,7 @@ "timezoneregion-europe": "歐洲", "timezoneregion-indian": "印度洋", "timezoneregion-pacific": "太平洋", - "allowemail": "由其它用戶啟用電子郵件", + "allowemail": "允許其它用戶發電子郵件俾我", "prefs-searchoptions": "搵嘢", "prefs-namespaces": "空間名", "default": "預設", @@ -1267,7 +1267,7 @@ "rcfilters-days-show-hours": "$1{{PLURAL:$1|個鐘}}", "rcfilters-highlighted-filters-list": "螢光標示: $1", "rcfilters-quickfilters": "儲存咗嘅篩選條件", - "rcfilters-quickfilters-placeholder-title": "未有儲存咗嘅連結", + "rcfilters-quickfilters-placeholder-title": "未有儲存咗嘅過濾器", "rcfilters-quickfilters-placeholder-description": "要儲存篩選條件設定留返第日用,撳下面用緊篩選條件嗰度嗰個書籤公仔。", "rcfilters-savedqueries-defaultlabel": "儲存咗嘅篩選條件", "rcfilters-savedqueries-rename": "改名", @@ -1360,7 +1360,6 @@ "rcfilters-tag-prefix-namespace-inverted": ":唔係 $1", "rcfilters-exclude-button-off": "排除揀咗嘅", "rcfilters-exclude-button-on": "排除揀咗嘅", - "rcfilters-view-advanced-filters-label": "進階嘅篩選條件", "rcfilters-view-tags": "有標籤嘅編輯", "rcfilters-view-namespaces-tooltip": "跟版名空間去篩選結果", "rcfilters-view-tags-tooltip": "用編輯標籤去篩選結果", @@ -1421,9 +1420,9 @@ "recentchangeslinked-page": "頁名:", "recentchangeslinked-to": "顯示連到所畀到嘅版", "recentchanges-page-added-to-category": "[[:$1]] 加咗落分類", - "recentchanges-page-added-to-category-bundled": "[[:$1]] 同另外 [[Special:WhatLinksHere/$1|{{PLURAL:$2|1 版|$2 版}}]]加咗落分類", + "recentchanges-page-added-to-category-bundled": "[[:$1]] 同另外 [[Special:WhatLinksHere/$1|一版比其他版包含咗]]", "recentchanges-page-removed-from-category": "[[:$1]] 拎走咗分類", - "recentchanges-page-removed-from-category-bundled": "[[:$1]] 同另外 {{PLURAL:$2|1 版|$2 版}}拎走咗分類", + "recentchanges-page-removed-from-category-bundled": "$1[[:$1]] 同另外 [[Special:WhatLinksHere/$1|伊一版比其他版包含咗]] 響分類到拎走左", "autochange-username": "MediaWiki 自動改動", "upload": "上載檔案", "uploadbtn": "上載檔案", @@ -1560,7 +1559,7 @@ "uploadstash-summary": "呢一版提供已經上載咗(或者上載緊)但係重未發佈到wiki嘅檔案存取。呢啲檔案除咗係上載佢哋嘅用戶之外其他人都會睇唔到。", "uploadstash-clear": "清除貯藏檔案", "uploadstash-nofiles": "你冇貯藏咗嘅檔案。", - "uploadstash-badtoken": "進行呢個動作唔成功,或者你嘅編輯資訊已經過咗期。再試吓喇。", + "uploadstash-badtoken": "進行呢個動作唔成功,可能係你嘅編輯資訊已經過咗期。再試吓喇。", "uploadstash-errclear": "清除檔案唔成功。", "uploadstash-refresh": "更新檔案清單", "invalid-chunk-offset": "非法偏移塊", @@ -1916,7 +1915,7 @@ "unwatchthispage": "停止監視", "notanarticle": "唔係一個內容頁", "notvisiblerev": "上次由唔同用戶嘅修訂已經刪除咗", - "watchlist-details": "唔計討論頁,有 $1 {{PLURAL:$1|版}}響你個監視清單度。", + "watchlist-details": "計埋討論頁,有 $1 {{PLURAL:$1|版}}響你個監視清單度。", "wlheader-enotif": "電郵通知已經啟用咗。", "wlheader-showupdated": "標'''粗體字'''嘅頁響你上次嚟之後畀人改過。", "wlnote": "下面係直到$3 $4為止,最近'''$2'''個鐘之內嘅最新$1次修改。", @@ -1987,7 +1986,7 @@ "editcomment": "編輯摘要係:$1。", "revertpage": "已經反轉由[[Special:Contributions/$2|$2]]([[User talk:$2|對話]])所寫嘅編輯到[[User:$1|$1]]嘅最後修訂。", "revertpage-nouser": "已經反轉咗由收埋咗嘅用戶名所寫嘅編輯,到[[User:$1|$1]]所寫嘅最後修訂版本。", - "rollback-success": "已經反轉由$1所寫嘅編輯;恢復到$2嘅最後修訂。", + "rollback-success": "已經反轉由{{GENDER:$3|$1}};所寫嘅編輯;恢復到{{GENDER:$4|$2}}嘅最後修訂。", "sessionfailure-title": "會話失敗", "sessionfailure": "你嘅登入會話 (session) 好似有啲問題;\n為咗防止會話劫持,呢個操作已經取消。\n請返去之前嗰版,重新載入嗰版然後再試。", "changecontentmodel": "喺頁面內改目錄類", @@ -2111,12 +2110,12 @@ "sp-contributions-newbies-sub": "新戶口嘅貢獻", "sp-contributions-newbies-title": "新戶口嘅用戶貢獻", "sp-contributions-blocklog": "封鎖日誌", - "sp-contributions-suppresslog": "壓制咗嘅用戶貢獻", - "sp-contributions-deleted": "已經刪除咗嘅用戶貢獻", + "sp-contributions-suppresslog": "壓制咗{{GENDER:$1|user}}嘅用戶貢獻", + "sp-contributions-deleted": "用戶{{GENDER:$1|user}}嘅貢獻已經刪除咗", "sp-contributions-uploads": "上載", "sp-contributions-logs": "日誌", "sp-contributions-talk": "傾偈", - "sp-contributions-userrights": "用戶權限管理", + "sp-contributions-userrights": "{{GENDER:$1|user}}用戶權限管理", "sp-contributions-blocked-notice": "呢位用戶現時封鎖緊。\n最近嘅封鎖日誌項目響下面提供以便參考:", "sp-contributions-blocked-notice-anon": "呢個IP地址現時封鎖緊。\n最近嘅封鎖日誌項目響下面提供以便參考:", "sp-contributions-search": "搵貢獻", @@ -3083,7 +3082,7 @@ "compare-rev1": "修訂1", "compare-rev2": "修訂2", "compare-submit": "比較", - "diff-form": "表", + "diff-form": "唔同嘅地方", "dberr-problems": "對唔住!呢一版出現咗一啲技術性問題。", "dberr-again": "試吓等多幾分種然後開試。", "dberr-info": "(唔能夠連繫個資料庫:$1)", diff --git a/languages/i18n/zh-hans.json b/languages/i18n/zh-hans.json index 40541b1b14..e6ff1e376f 100644 --- a/languages/i18n/zh-hans.json +++ b/languages/i18n/zh-hans.json @@ -1364,6 +1364,7 @@ "recentchanges-summary": "在本页面追踪本wiki的最近更改。", "recentchanges-noresult": "在此期间没有符合这些条件的编辑", "recentchanges-timeout": "此次搜索已超时。您可以尝试不同的搜索参数。", + "recentchanges-network": "由于技术错误,没有加载任何结果。请尝试刷新页面。", "recentchanges-feed-description": "用这个源跟踪本wiki的最近更改。", "recentchanges-label-newpage": "该编辑创建了新页面", "recentchanges-label-minor": "该编辑为小编辑", @@ -1732,6 +1733,25 @@ "uploadstash-refresh": "更新文件列表", "uploadstash-thumbnail": "显示缩略图", "uploadstash-exception": "不能将上传内容存储至暂存处($1):“$2”。", + "uploadstash-bad-path": "路径不存在。", + "uploadstash-bad-path-invalid": "路径无效。", + "uploadstash-bad-path-unknown-type": "未知类型“$1”。", + "uploadstash-bad-path-unrecognized-thumb-name": "无法识别的缩略图名称。", + "uploadstash-bad-path-no-handler": "找不到用于文件$2的mime $1的处理器。", + "uploadstash-bad-path-bad-format": "关键字“$1”的格式不适当。", + "uploadstash-file-not-found": "在暂存处找不到关键字“$1”。", + "uploadstash-file-not-found-no-thumb": "无法获得缩略图。", + "uploadstash-file-not-found-no-local-path": "没有用于缩放项目的本地路径。", + "uploadstash-file-not-found-no-object": "无法创建用于缩略图的本地文件对象。", + "uploadstash-file-not-found-no-remote-thumb": "取得缩略图失败:$1\nurl = $2。", + "uploadstash-file-not-found-missing-content-type": "缺少内容类型标头。", + "uploadstash-file-not-found-not-exists": "找不到路径,或不是纯文件。", + "uploadstash-file-too-large": "无法处理超过$1字节的文件。", + "uploadstash-not-logged-in": "没有用户登录,文件必须属于用户。", + "uploadstash-wrong-owner": "此文件($1)不属于当前用户。", + "uploadstash-no-such-key": "没有该关键字($1),不能移除。", + "uploadstash-no-extension": "扩展名为空。", + "uploadstash-zero-length": "文件长度为零。", "invalid-chunk-offset": "无效区块偏移量", "img-auth-accessdenied": "拒绝访问", "img-auth-nopathinfo": "PATH_INFO缺失。\n您的服务器尚未设置传送该信息。\n它可能基于CGI,因而不支持img_auth。\n请参见https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Image_Authorization。", diff --git a/languages/i18n/zh-hant.json b/languages/i18n/zh-hant.json index 577296deef..e21a647f0d 100644 --- a/languages/i18n/zh-hant.json +++ b/languages/i18n/zh-hant.json @@ -90,7 +90,8 @@ "Corainn", "WhitePhosphorus", "Translatealcd", - "蘭斯特" + "蘭斯特", + "机智的小鱼君" ] }, "tog-underline": "底線標示連結:", @@ -1045,7 +1046,7 @@ "prefs-editwatchlist-clear": "清除您的監視清單", "prefs-watchlist-days": "在監視清單中顯示的天數:", "prefs-watchlist-days-max": "最多 $1 {{PLURAL:$1|天}}", - "prefs-watchlist-edits": "展開監視清單中顯示的變更數量上限:", + "prefs-watchlist-edits": "監視清單中顯示的變更數量上限:", "prefs-watchlist-edits-max": "數量上限:1000", "prefs-watchlist-token": "監視清單金鑰:", "prefs-misc": "其他", @@ -1397,7 +1398,7 @@ "rcfilters-invalid-filter": "無效的過濾條件", "rcfilters-empty-filter": "沒有使用中的過濾條件。已顯示所有的貢獻。", "rcfilters-filterlist-title": "過濾條件", - "rcfilters-filterlist-whatsthis": "這是什麼?", + "rcfilters-filterlist-whatsthis": "這些是怎樣工作的?", "rcfilters-filterlist-feedbacklink": "告訴我們您對這些(新)過濾工具有什麼想法", "rcfilters-highlightbutton-title": "明顯標示結果", "rcfilters-highlightmenu-title": "選擇顏色", diff --git a/maintenance/Maintenance.php b/maintenance/Maintenance.php index 174b9732dd..d37b990b2d 100644 --- a/maintenance/Maintenance.php +++ b/maintenance/Maintenance.php @@ -307,6 +307,17 @@ abstract class Maintenance { return $this->hasArg( $argId ) ? $this->mArgs[$argId] : $default; } + /** + * Returns batch size + * + * @since 1.31 + * + * @return int|null + */ + protected function getBatchSize() { + return $this->mBatchSize; + } + /** * Set the batch size. * @param int $s The number of operations to do in a batch diff --git a/maintenance/checkImages.php b/maintenance/checkImages.php index c2f0b2713b..6fe15fb60e 100644 --- a/maintenance/checkImages.php +++ b/maintenance/checkImages.php @@ -47,7 +47,7 @@ class CheckImages extends Maintenance { do { $res = $dbr->select( $fileQuery['tables'], $fileQuery['fields'], [ 'img_name > ' . $dbr->addQuotes( $start ) ], - __METHOD__, [ 'LIMIT' => $this->mBatchSize ], $fileQuery['joins'] ); + __METHOD__, [ 'LIMIT' => $this->getBatchSize() ], $fileQuery['joins'] ); foreach ( $res as $row ) { $numImages++; $start = $row->img_name; diff --git a/maintenance/checkUsernames.php b/maintenance/checkUsernames.php index e6d95477c3..f29f8367c8 100644 --- a/maintenance/checkUsernames.php +++ b/maintenance/checkUsernames.php @@ -50,7 +50,7 @@ class CheckUsernames extends Maintenance { __METHOD__, [ 'ORDER BY' => 'user_id', - 'LIMIT' => $this->mBatchSize, + 'LIMIT' => $this->getBatchSize(), ] ); diff --git a/maintenance/cleanupBlocks.php b/maintenance/cleanupBlocks.php index 37417c73d1..5c5c88f0b0 100644 --- a/maintenance/cleanupBlocks.php +++ b/maintenance/cleanupBlocks.php @@ -44,8 +44,9 @@ class CleanupBlocks extends Maintenance { $max = $db->selectField( 'ipblocks', 'MAX(ipb_user)' ); // Step 1: Clean up any duplicate user blocks - for ( $from = 1; $from <= $max; $from += $this->mBatchSize ) { - $to = min( $max, $from + $this->mBatchSize - 1 ); + $batchSize = $this->getBatchSize(); + for ( $from = 1; $from <= $max; $from += $batchSize ) { + $to = min( $max, $from + $batchSize - 1 ); $this->output( "Cleaning up duplicate ipb_user ($from-$to of $max)\n" ); $delete = []; @@ -118,8 +119,8 @@ class CleanupBlocks extends Maintenance { } // Step 2: Update the user name in any blocks where it doesn't match - for ( $from = 1; $from <= $max; $from += $this->mBatchSize ) { - $to = min( $max, $from + $this->mBatchSize - 1 ); + for ( $from = 1; $from <= $max; $from += $batchSize ) { + $to = min( $max, $from + $batchSize - 1 ); $this->output( "Cleaning up mismatched user name ($from-$to of $max)\n" ); $res = $db->select( diff --git a/maintenance/cleanupEmptyCategories.php b/maintenance/cleanupEmptyCategories.php index 8672223819..2d22704de1 100644 --- a/maintenance/cleanupEmptyCategories.php +++ b/maintenance/cleanupEmptyCategories.php @@ -109,7 +109,7 @@ TEXT __METHOD__, [ 'ORDER BY' => 'page_title', - 'LIMIT' => $this->mBatchSize, + 'LIMIT' => $this->getBatchSize(), ], [ 'category' => [ 'LEFT JOIN', 'page_title = cat_title' ], @@ -161,7 +161,7 @@ TEXT __METHOD__, [ 'ORDER BY' => 'cat_title', - 'LIMIT' => $this->mBatchSize, + 'LIMIT' => $this->getBatchSize(), ], [ 'page' => [ 'LEFT JOIN', [ diff --git a/maintenance/cleanupInvalidDbKeys.php b/maintenance/cleanupInvalidDbKeys.php index b487f896ca..569fd2bbd6 100644 --- a/maintenance/cleanupInvalidDbKeys.php +++ b/maintenance/cleanupInvalidDbKeys.php @@ -161,7 +161,7 @@ TEXT $titleField . $dbr->buildLike( $percent, '_' ), ], LIST_OR ) ], __METHOD__, - [ 'LIMIT' => $this->mBatchSize ] + [ 'LIMIT' => $this->getBatchSize() ] ); $this->outputStatus( "Number of invalid rows: " . $res->numRows() . "\n" ); diff --git a/maintenance/cleanupRemovedModules.php b/maintenance/cleanupRemovedModules.php index dbaf6438c2..a6f10c6b39 100644 --- a/maintenance/cleanupRemovedModules.php +++ b/maintenance/cleanupRemovedModules.php @@ -57,7 +57,7 @@ class CleanupRemovedModules extends Maintenance { $modDeps = $dbw->tableName( 'module_deps' ); $i = 1; - foreach ( array_chunk( $rows, $this->mBatchSize ) as $chunk ) { + foreach ( array_chunk( $rows, $this->getBatchSize() ) as $chunk ) { // WHERE ( mod=A AND skin=A ) OR ( mod=A AND skin=B) .. $conds = array_map( function ( stdClass $row ) use ( $dbw ) { return $dbw->makeList( (array)$row, IDatabase::LIST_AND ); diff --git a/maintenance/cleanupUploadStash.php b/maintenance/cleanupUploadStash.php index 95bbe3d3ff..14c6a6b18a 100644 --- a/maintenance/cleanupUploadStash.php +++ b/maintenance/cleanupUploadStash.php @@ -103,7 +103,7 @@ class UploadStashCleanup extends Maintenance { foreach ( $iterator as $file ) { if ( wfTimestamp( TS_UNIX, $tempRepo->getFileTimestamp( "$dir/$file" ) ) < $cutoff ) { $batch[] = [ 'op' => 'delete', 'src' => "$dir/$file" ]; - if ( count( $batch ) >= $this->mBatchSize ) { + if ( count( $batch ) >= $this->getBatchSize() ) { $this->doOperations( $tempRepo, $batch ); $i += count( $batch ); $batch = []; @@ -129,7 +129,7 @@ class UploadStashCleanup extends Maintenance { foreach ( $iterator as $file ) { if ( wfTimestamp( TS_UNIX, $tempRepo->getFileTimestamp( "$dir/$file" ) ) < $cutoff ) { $batch[] = [ 'op' => 'delete', 'src' => "$dir/$file" ]; - if ( count( $batch ) >= $this->mBatchSize ) { + if ( count( $batch ) >= $this->getBatchSize() ) { $this->doOperations( $tempRepo, $batch ); $i += count( $batch ); $batch = []; diff --git a/maintenance/convertUserOptions.php b/maintenance/convertUserOptions.php index 675d0695d9..501f045607 100644 --- a/maintenance/convertUserOptions.php +++ b/maintenance/convertUserOptions.php @@ -61,7 +61,7 @@ class ConvertUserOptions extends Maintenance { __METHOD__, [ 'ORDER BY' => 'user_id', - 'LIMIT' => $this->mBatchSize, + 'LIMIT' => $this->getBatchSize(), ] ); $id = $this->convertOptionBatch( $res, $dbw ); diff --git a/maintenance/copyFileBackend.php b/maintenance/copyFileBackend.php index 4f625fc69a..ee103b8848 100644 --- a/maintenance/copyFileBackend.php +++ b/maintenance/copyFileBackend.php @@ -109,11 +109,11 @@ class CopyFileBackend extends Maintenance { foreach ( $srcPathsRel as $srcPathRel ) { // Check up on the rate file periodically to adjust the concurrency if ( $rateFile && ( !$count || ( $count % 500 ) == 0 ) ) { - $this->mBatchSize = max( 1, (int)file_get_contents( $rateFile ) ); - $this->output( "\tBatch size is now {$this->mBatchSize}.\n" ); + $this->setBatchSize( max( 1, (int)file_get_contents( $rateFile ) ) ); + $this->output( "\tBatch size is now {$this->getBatchSize()}.\n" ); } $batchPaths[$srcPathRel] = 1; // remove duplicates - if ( count( $batchPaths ) >= $this->mBatchSize ) { + if ( count( $batchPaths ) >= $this->getBatchSize() ) { $this->copyFileBatch( array_keys( $batchPaths ), $backendRel, $src, $dst ); $batchPaths = []; // done } @@ -136,11 +136,11 @@ class CopyFileBackend extends Maintenance { foreach ( $delPathsRel as $delPathRel ) { // Check up on the rate file periodically to adjust the concurrency if ( $rateFile && ( !$count || ( $count % 500 ) == 0 ) ) { - $this->mBatchSize = max( 1, (int)file_get_contents( $rateFile ) ); - $this->output( "\tBatch size is now {$this->mBatchSize}.\n" ); + $this->setBatchSize( max( 1, (int)file_get_contents( $rateFile ) ) ); + $this->output( "\tBatch size is now {$this->getBatchSize()}.\n" ); } $batchPaths[$delPathRel] = 1; // remove duplicates - if ( count( $batchPaths ) >= $this->mBatchSize ) { + if ( count( $batchPaths ) >= $this->getBatchSize() ) { $this->delFileBatch( array_keys( $batchPaths ), $backendRel, $dst ); $batchPaths = []; // done } diff --git a/maintenance/copyJobQueue.php b/maintenance/copyJobQueue.php index e1d697d88d..08e40fd648 100644 --- a/maintenance/copyJobQueue.php +++ b/maintenance/copyJobQueue.php @@ -77,7 +77,7 @@ class CopyJobQueue extends Maintenance { foreach ( $jobs as $job ) { ++$total; $batch[] = $job; - if ( count( $batch ) >= $this->mBatchSize ) { + if ( count( $batch ) >= $this->getBatchSize() ) { $dst->push( $batch ); $totalOK += count( $batch ); $batch = []; diff --git a/maintenance/deleteSelfExternals.php b/maintenance/deleteSelfExternals.php index ed15fd13b3..ab257846bd 100644 --- a/maintenance/deleteSelfExternals.php +++ b/maintenance/deleteSelfExternals.php @@ -33,7 +33,7 @@ class DeleteSelfExternals extends Maintenance { public function __construct() { parent::__construct(); $this->addDescription( 'Delete self-references to $wgServer from externallinks' ); - $this->mBatchSize = 1000; + $this->setBatchSize( 1000 ); } public function execute() { @@ -44,7 +44,7 @@ class DeleteSelfExternals extends Maintenance { wfWaitForSlaves(); $this->commitTransaction( $db, __METHOD__ ); $q = $db->limitResult( "DELETE /* deleteSelfExternals */ FROM externallinks WHERE el_to" - . $db->buildLike( $wgServer . '/', $db->anyString() ), $this->mBatchSize ); + . $db->buildLike( $wgServer . '/', $db->anyString() ), $this->getBatchSize() ); $this->output( "Deleting a batch\n" ); $db->query( $q ); if ( !$db->affectedRows() ) { diff --git a/maintenance/dev/installphp.sh b/maintenance/dev/installphp.sh index d26ffa67f7..1e3d410f14 100755 --- a/maintenance/dev/installphp.sh +++ b/maintenance/dev/installphp.sh @@ -12,13 +12,14 @@ if [ "x$PHP" != "x" -a -x "$PHP" ]; then exit 0 fi -TAR=php5.4-latest.tar.gz -PHPURL="http://snaps.php.net/$TAR" +VER=5.6.32 +TAR="php-$VER.tar.gz" +PHPURL="https://secure.php.net/get/$TAR/from/this/mirror" cd "$DEV" -echo "Preparing to download and install a local copy of PHP 5.4, note that this can take some time to do." -echo "If you wish to avoid re-doing this for uture dev installations of MediaWiki we suggest installing php in ~/.mediawiki/php" +echo "Preparing to download and install a local copy of PHP $VER, note that this can take some time to do." +echo "If you wish to avoid re-doing this for future dev installations of MediaWiki we suggest installing php in ~/.mediawiki/php" echo -n "Install PHP in ~/.mediawiki/php [y/N]: " read INSTALLINHOME @@ -31,27 +32,27 @@ case "$INSTALLINHOME" in ;; esac -# Some debain-like systems bundle wget but not curl, some other systems +# Some debian-like systems bundle wget but not curl, some other systems # like os x bundle curl but not wget... use whatever is available -echo -n "Downloading PHP 5.4" +echo -n "Downloading PHP $VER" if command -v wget &>/dev/null; then - echo "- using wget" - wget "$PHPURL" + echo " - using wget" + wget -O "$TAR" "$PHPURL" elif command -v curl &>/dev/null; then - echo "- using curl" - curl -O "$PHPURL" + echo " - using curl" + curl "$PHPURL" -L -o "$TAR" else - echo "- aborting" + echo " - aborting" echo "Could not find curl or wget." >&2; exit 1; fi -echo "Extracting php 5.4" +echo "Extracting php $VER" tar -xzf "$TAR" -cd php5.4-*/ +cd "php-$VER/" -echo "Configuring and installing php 5.4 in $PREFIX" +echo "Configuring and installing php $VER in $PREFIX" ./configure --prefix="$PREFIX" make make install diff --git a/maintenance/dumpCategoriesAsRdf.php b/maintenance/dumpCategoriesAsRdf.php index ff50498f0a..282a04b0c3 100644 --- a/maintenance/dumpCategoriesAsRdf.php +++ b/maintenance/dumpCategoriesAsRdf.php @@ -60,7 +60,7 @@ class DumpCategoriesAsRdf extends Maintenance { $dbr, 'page', [ 'page_title' ], - $this->mBatchSize + $this->getBatchSize() ); $it->addConditions( [ 'page_namespace' => NS_CATEGORY, @@ -80,7 +80,7 @@ class DumpCategoriesAsRdf extends Maintenance { $dbr, 'categorylinks', [ 'cl_from', 'cl_to' ], - $this->mBatchSize + $this->getBatchSize() ); $it->addConditions( [ 'cl_type' => 'subcat', diff --git a/maintenance/findMissingFiles.php b/maintenance/findMissingFiles.php index 4ce7ca68ae..8bf2bdb457 100644 --- a/maintenance/findMissingFiles.php +++ b/maintenance/findMissingFiles.php @@ -37,6 +37,7 @@ class FindMissingFiles extends Maintenance { $repo = RepoGroup::singleton()->getLocalRepo(); $dbr = $repo->getReplicaDB(); $be = $repo->getBackend(); + $batchSize = $this->getBatchSize(); $mtime1 = $dbr->timestampOrNull( $this->getOption( 'mtimeafter', null ) ); $mtime2 = $dbr->timestampOrNull( $this->getOption( 'mtimebefore', null ) ); @@ -66,7 +67,7 @@ class FindMissingFiles extends Maintenance { __METHOD__, // DISTINCT causes a pointless filesort [ 'ORDER BY' => 'name', 'GROUP BY' => 'name', - 'LIMIT' => $this->mBatchSize ], + 'LIMIT' => $batchSize ], $joinConds ); @@ -101,7 +102,7 @@ class FindMissingFiles extends Maintenance { $checkPaths[] = $file->getPath(); } - foreach ( array_chunk( $checkPaths, $this->mBatchSize ) as $paths ) { + foreach ( array_chunk( $checkPaths, $batchSize ) as $paths ) { $be->preloadFileStat( [ 'srcs' => $paths ] ); foreach ( $paths as $path ) { if ( $be->fileExists( [ 'src' => $path ] ) === false ) { @@ -110,7 +111,7 @@ class FindMissingFiles extends Maintenance { } } } - } while ( $res->numRows() >= $this->mBatchSize ); + } while ( $res->numRows() >= $batchSize ); } } diff --git a/maintenance/findOrphanedFiles.php b/maintenance/findOrphanedFiles.php index 765fbe4a0a..c4cab71688 100644 --- a/maintenance/findOrphanedFiles.php +++ b/maintenance/findOrphanedFiles.php @@ -61,7 +61,7 @@ class FindOrphanedFiles extends Maintenance { } $pathBatch[] = $path; - if ( count( $pathBatch ) >= $this->mBatchSize ) { + if ( count( $pathBatch ) >= $this->getBatchSize() ) { $this->checkFiles( $repo, $pathBatch, $verbose ); $pathBatch = []; } diff --git a/maintenance/fixDefaultJsonContentPages.php b/maintenance/fixDefaultJsonContentPages.php index 460b553455..7262770b6f 100644 --- a/maintenance/fixDefaultJsonContentPages.php +++ b/maintenance/fixDefaultJsonContentPages.php @@ -64,12 +64,12 @@ class FixDefaultJsonContentPages extends LoggedUpdateMaintenance { 'page_id > ' . $dbr->addQuotes( $lastPage ) ], __METHOD__, - [ 'ORDER BY' => 'page_id', 'LIMIT' => $this->mBatchSize ] + [ 'ORDER BY' => 'page_id', 'LIMIT' => $this->getBatchSize() ] ); foreach ( $rows as $row ) { $this->handleRow( $row ); } - } while ( $rows->numRows() >= $this->mBatchSize ); + } while ( $rows->numRows() >= $this->getBatchSize() ); } return true; diff --git a/maintenance/fixUserRegistration.php b/maintenance/fixUserRegistration.php index 37fd44fb2e..30364c655b 100644 --- a/maintenance/fixUserRegistration.php +++ b/maintenance/fixUserRegistration.php @@ -51,7 +51,7 @@ class FixUserRegistration extends Maintenance { ], __METHOD__, [ - 'LIMIT' => $this->mBatchSize, + 'LIMIT' => $this->getBatchSize(), 'ORDER BY' => 'user_id', ] ); @@ -83,7 +83,7 @@ class FixUserRegistration extends Maintenance { $this->output( "Waiting for replica DBs..." ); wfWaitForSlaves(); $this->output( " done.\n" ); - } while ( $res->numRows() >= $this->mBatchSize ); + } while ( $res->numRows() >= $this->getBatchSize() ); } } diff --git a/maintenance/initUserPreference.php b/maintenance/initUserPreference.php index f4da570fbb..7b7cf15a76 100644 --- a/maintenance/initUserPreference.php +++ b/maintenance/initUserPreference.php @@ -46,7 +46,7 @@ class InitUserPreference extends Maintenance { $dbr, 'user_properties', [ 'up_user', 'up_property' ], - $this->mBatchSize + $this->getBatchSize() ); $iterator->setFetchColumns( [ 'up_user', 'up_value' ] ); $iterator->addConditions( [ diff --git a/maintenance/invalidateUserSessions.php b/maintenance/invalidateUserSessions.php index 11e3372ce6..8f67acddb9 100644 --- a/maintenance/invalidateUserSessions.php +++ b/maintenance/invalidateUserSessions.php @@ -83,7 +83,7 @@ class InvalidateUserSesssions extends Maintenance { . str_replace( [ "\r", "\n" ], ' ', $e->getMessage() ) . "\n" ); } - if ( $i % $this->mBatchSize ) { + if ( $i % $this->getBatchSize() ) { $lbFactory->waitForReplication(); } } diff --git a/maintenance/jsduck/categories.json b/maintenance/jsduck/categories.json index 3623593762..66e8d01fcb 100644 --- a/maintenance/jsduck/categories.json +++ b/maintenance/jsduck/categories.json @@ -34,7 +34,8 @@ "mw.cookie", "mw.experiments", "mw.viewport", - "mw.htmlform.*" + "mw.htmlform.*", + "mw.visibleTimeout" ] }, { diff --git a/maintenance/makeTestEdits.php b/maintenance/makeTestEdits.php index ca2f7c51c9..1effb61d4e 100644 --- a/maintenance/makeTestEdits.php +++ b/maintenance/makeTestEdits.php @@ -55,7 +55,7 @@ class MakeTestEdits extends Maintenance { $page->doEditContent( $content, $summary, 0, false, $user ); $this->output( "Edited $title\n" ); - if ( $i && ( $i % $this->mBatchSize ) == 0 ) { + if ( $i && ( $i % $this->getBatchSize() ) == 0 ) { wfWaitForSlaves(); } } diff --git a/maintenance/manageJobs.php b/maintenance/manageJobs.php index 32333b768b..5f39a3d5ce 100644 --- a/maintenance/manageJobs.php +++ b/maintenance/manageJobs.php @@ -82,7 +82,7 @@ class ManageJobs extends Maintenance { $queue->push( $job ); ++$count; - if ( ( $count % $this->mBatchSize ) == 0 ) { + if ( ( $count % $this->getBatchSize() ) == 0 ) { $queue->waitForBackups(); } } diff --git a/maintenance/mergeMessageFileList.php b/maintenance/mergeMessageFileList.php index bb47631357..8d2534eec5 100644 --- a/maintenance/mergeMessageFileList.php +++ b/maintenance/mergeMessageFileList.php @@ -80,29 +80,29 @@ class MergeMessageFileList extends Maintenance { $extdirs = explode( ':', $extdir ); $entries = []; foreach ( $extdirs as $extdir ) { - $entries = array_merge( $entries, scandir( $extdir ) ); - } - foreach ( $entries as $extname ) { - if ( $extname == '.' || $extname == '..' || !is_dir( "$extdir/$extname" ) ) { - continue; - } - $possibilities = [ - "$extdir/$extname/extension.json", - "$extdir/$extname/skin.json", - "$extdir/$extname/$extname.php" - ]; - $found = false; - foreach ( $possibilities as $extfile ) { - if ( file_exists( $extfile ) ) { - $mmfl['setupFiles'][] = $extfile; - $found = true; - break; + $entries = scandir( $extdir ); + foreach ( $entries as $extname ) { + if ( $extname == '.' || $extname == '..' || !is_dir( "$extdir/$extname" ) ) { + continue; + } + $possibilities = [ + "$extdir/$extname/extension.json", + "$extdir/$extname/skin.json", + "$extdir/$extname/$extname.php" + ]; + $found = false; + foreach ( $possibilities as $extfile ) { + if ( file_exists( $extfile ) ) { + $mmfl['setupFiles'][] = $extfile; + $found = true; + break; + } } - } - if ( !$found ) { - $this->error( "Extension {$extname} in {$extdir} lacks expected entry point: " . - "extension.json, skin.json, or {$extname}.php." ); + if ( !$found ) { + $this->error( "Extension {$extname} in {$extdir} lacks expected entry point: " . + "extension.json, skin.json, or {$extname}.php." ); + } } } } diff --git a/maintenance/migrateComments.php b/maintenance/migrateComments.php index 9d4e2615c0..01ee9f84fd 100644 --- a/maintenance/migrateComments.php +++ b/maintenance/migrateComments.php @@ -161,7 +161,7 @@ class MigrateComments extends LoggedUpdateMaintenance { __METHOD__, [ 'ORDER BY' => $primaryKey, - 'LIMIT' => $this->mBatchSize, + 'LIMIT' => $this->getBatchSize(), ] ); if ( !$res->numRows() ) { @@ -245,7 +245,7 @@ class MigrateComments extends LoggedUpdateMaintenance { __METHOD__, [ 'ORDER BY' => $primaryKey, - 'LIMIT' => $this->mBatchSize, + 'LIMIT' => $this->getBatchSize(), ], [ $newTable => [ 'LEFT JOIN', "{$primaryKey}={$newPrimaryKey}" ] ] ); diff --git a/maintenance/migrateFileRepoLayout.php b/maintenance/migrateFileRepoLayout.php index f771fff73d..b2cce3ea58 100644 --- a/maintenance/migrateFileRepoLayout.php +++ b/maintenance/migrateFileRepoLayout.php @@ -69,6 +69,7 @@ class MigrateFileRepoLayout extends Maintenance { $conds[] = 'img_timestamp >= ' . $dbw->addQuotes( $dbw->timestamp( $since ) ); } + $batchSize = $this->getBatchSize(); $batch = []; $lastName = ''; do { @@ -76,7 +77,7 @@ class MigrateFileRepoLayout extends Maintenance { [ 'img_name', 'img_sha1' ], array_merge( [ 'img_name > ' . $dbw->addQuotes( $lastName ) ], $conds ), __METHOD__, - [ 'LIMIT' => $this->mBatchSize, 'ORDER BY' => 'img_name' ] + [ 'LIMIT' => $batchSize, 'ORDER BY' => 'img_name' ] ); foreach ( $res as $row ) { @@ -143,7 +144,7 @@ class MigrateFileRepoLayout extends Maintenance { 'src' => $spath, 'dst' => $dpath, 'img' => $ofile->getArchiveName() ]; } - if ( count( $batch ) >= $this->mBatchSize ) { + if ( count( $batch ) >= $batchSize ) { $this->runBatch( $batch, $be ); $batch = []; } @@ -166,7 +167,7 @@ class MigrateFileRepoLayout extends Maintenance { $res = $dbw->select( 'filearchive', [ 'fa_storage_key', 'fa_id', 'fa_name' ], array_merge( [ 'fa_id > ' . $dbw->addQuotes( $lastId ) ], $conds ), __METHOD__, - [ 'LIMIT' => $this->mBatchSize, 'ORDER BY' => 'fa_id' ] + [ 'LIMIT' => $batchSize, 'ORDER BY' => 'fa_id' ] ); foreach ( $res as $row ) { @@ -201,7 +202,7 @@ class MigrateFileRepoLayout extends Maintenance { $batch[] = [ 'op' => 'copy', 'src' => $spath, 'dst' => $dpath, 'overwriteSame' => true, 'img' => "(ID {$row->fa_id}) {$row->fa_name}" ]; - if ( count( $batch ) >= $this->mBatchSize ) { + if ( count( $batch ) >= $batchSize ) { $this->runBatch( $batch, $be ); $batch = []; } diff --git a/maintenance/migrateUserGroup.php b/maintenance/migrateUserGroup.php index 597a876df9..ad82542fb5 100644 --- a/maintenance/migrateUserGroup.php +++ b/maintenance/migrateUserGroup.php @@ -42,6 +42,7 @@ class MigrateUserGroup extends Maintenance { $oldGroup = $this->getArg( 0 ); $newGroup = $this->getArg( 1 ); $dbw = $this->getDB( DB_MASTER ); + $batchSize = $this->getBatchSize(); $start = $dbw->selectField( 'user_groups', 'MIN(ug_user)', [ 'ug_group' => $oldGroup ], __FUNCTION__ ); $end = $dbw->selectField( 'user_groups', 'MAX(ug_user)', @@ -50,9 +51,9 @@ class MigrateUserGroup extends Maintenance { $this->error( "Nothing to do - no users in the '$oldGroup' group", true ); } # Do remaining chunk - $end += $this->mBatchSize - 1; + $end += $batchSize - 1; $blockStart = $start; - $blockEnd = $start + $this->mBatchSize - 1; + $blockEnd = $start + $batchSize - 1; // Migrate users over in batches... while ( $blockEnd <= $end ) { $affected = 0; @@ -97,8 +98,8 @@ class MigrateUserGroup extends Maintenance { } $count += $affected; - $blockStart += $this->mBatchSize; - $blockEnd += $this->mBatchSize; + $blockStart += $batchSize; + $blockEnd += $batchSize; wfWaitForSlaves(); } $this->output( "Done! $count users in group '$oldGroup' are now in '$newGroup' instead.\n" ); diff --git a/maintenance/populateBacklinkNamespace.php b/maintenance/populateBacklinkNamespace.php index 295dacda99..eb8280613f 100644 --- a/maintenance/populateBacklinkNamespace.php +++ b/maintenance/populateBacklinkNamespace.php @@ -59,11 +59,12 @@ class PopulateBacklinkNamespace extends LoggedUpdateMaintenance { return false; } $end = $db->selectField( 'page', 'MAX(page_id)', false, __METHOD__ ); + $batchSize = $this->getBatchSize(); # Do remaining chunk - $end += $this->mBatchSize - 1; + $end += $batchSize - 1; $blockStart = $start; - $blockEnd = $start + $this->mBatchSize - 1; + $blockEnd = $start + $batchSize - 1; while ( $blockEnd <= $end ) { $this->output( "...doing page_id from $blockStart to $blockEnd\n" ); $cond = "page_id BETWEEN $blockStart AND $blockEnd"; @@ -85,8 +86,8 @@ class PopulateBacklinkNamespace extends LoggedUpdateMaintenance { __METHOD__ ); } - $blockStart += $this->mBatchSize - 1; - $blockEnd += $this->mBatchSize - 1; + $blockStart += $batchSize - 1; + $blockEnd += $batchSize - 1; wfWaitForSlaves(); } return true; diff --git a/maintenance/populateContentModel.php b/maintenance/populateContentModel.php index d99f70a10e..7cc829d99e 100644 --- a/maintenance/populateContentModel.php +++ b/maintenance/populateContentModel.php @@ -97,6 +97,7 @@ class PopulateContentModel extends Maintenance { $toSave = []; $lastId = 0; $nsCondition = $ns === 'all' ? [] : [ 'page_namespace' => $ns ]; + $batchSize = $this->getBatchSize(); do { $rows = $dbw->select( 'page', @@ -106,20 +107,20 @@ class PopulateContentModel extends Maintenance { 'page_id > ' . $dbw->addQuotes( $lastId ), ] + $nsCondition, __METHOD__, - [ 'LIMIT' => $this->mBatchSize, 'ORDER BY' => 'page_id ASC' ] + [ 'LIMIT' => $batchSize, 'ORDER BY' => 'page_id ASC' ] ); $this->output( "Fetched {$rows->numRows()} rows.\n" ); foreach ( $rows as $row ) { $title = Title::newFromRow( $row ); $model = ContentHandler::getDefaultModelFor( $title ); $toSave[$model][] = $row->page_id; - if ( count( $toSave[$model] ) >= $this->mBatchSize ) { + if ( count( $toSave[$model] ) >= $batchSize ) { $this->updatePageRows( $dbw, $toSave[$model], $model ); unset( $toSave[$model] ); } $lastId = $row->page_id; } - } while ( $rows->numRows() >= $this->mBatchSize ); + } while ( $rows->numRows() >= $batchSize ); foreach ( $toSave as $model => $pages ) { $this->updatePageRows( $dbw, $pages, $model ); } @@ -168,6 +169,7 @@ class PopulateContentModel extends Maintenance { $toSave = []; $idsToClear = []; $lastId = 0; + $batchSize = $this->getBatchSize(); do { $rows = $dbw->select( $selectTables, @@ -181,7 +183,7 @@ class PopulateContentModel extends Maintenance { "$key > " . $dbw->addQuotes( $lastId ), ] + $where, __METHOD__, - [ 'LIMIT' => $this->mBatchSize, 'ORDER BY' => "$key ASC" ], + [ 'LIMIT' => $batchSize, 'ORDER BY' => "$key ASC" ], $join_conds ); $this->output( "Fetched {$rows->numRows()} rows.\n" ); @@ -232,12 +234,12 @@ class PopulateContentModel extends Maintenance { } } - if ( count( $toSave[$defaultModel] ) >= $this->mBatchSize ) { + if ( count( $toSave[$defaultModel] ) >= $batchSize ) { $this->updateRevisionOrArchiveRows( $dbw, $toSave[$defaultModel], $defaultModel, $table ); unset( $toSave[$defaultModel] ); } } - } while ( $rows->numRows() >= $this->mBatchSize ); + } while ( $rows->numRows() >= $batchSize ); foreach ( $toSave as $model => $ids ) { $this->updateRevisionOrArchiveRows( $dbw, $ids, $model, $table ); } diff --git a/maintenance/populateFilearchiveSha1.php b/maintenance/populateFilearchiveSha1.php index 7557a42ff4..cbd969db06 100644 --- a/maintenance/populateFilearchiveSha1.php +++ b/maintenance/populateFilearchiveSha1.php @@ -58,7 +58,7 @@ class PopulateFilearchiveSha1 extends LoggedUpdateMaintenance { $this->output( "Populating fa_sha1 field from fa_storage_key\n" ); $endId = $dbw->selectField( $table, 'MAX(fa_id)', false, __METHOD__ ); - $batchSize = $this->mBatchSize; + $batchSize = $this->getBatchSize(); $done = 0; do { diff --git a/maintenance/populateImageSha1.php b/maintenance/populateImageSha1.php index b581d6614c..2735a1ed8d 100644 --- a/maintenance/populateImageSha1.php +++ b/maintenance/populateImageSha1.php @@ -119,7 +119,7 @@ class PopulateImageSha1 extends LoggedUpdateMaintenance { $numRows = $res->numRows(); $i = 0; foreach ( $res as $row ) { - if ( $i % $this->mBatchSize == 0 ) { + if ( $i % $this->getBatchSize() == 0 ) { $this->output( sprintf( "Done %d of %d, %5.3f%% \r", $i, $numRows, $i / $numRows * 100 ) ); wfWaitForSlaves(); diff --git a/maintenance/populateIpChanges.php b/maintenance/populateIpChanges.php index 40a596c8f2..178c49a73e 100644 --- a/maintenance/populateIpChanges.php +++ b/maintenance/populateIpChanges.php @@ -78,7 +78,7 @@ TEXT $this->output( "Copying IP revisions to ip_changes, from rev_id $start to rev_id $end\n" ); while ( $blockStart <= $end ) { - $blockEnd = min( $blockStart + $this->mBatchSize, $end ); + $blockEnd = min( $blockStart + $this->getBatchSize(), $end ); $rows = $dbr->select( 'revision', [ 'rev_id', 'rev_timestamp', 'rev_user_text' ], diff --git a/maintenance/populateLogSearch.php b/maintenance/populateLogSearch.php index e75b84d530..113cc63950 100644 --- a/maintenance/populateLogSearch.php +++ b/maintenance/populateLogSearch.php @@ -53,6 +53,7 @@ class PopulateLogSearch extends LoggedUpdateMaintenance { } protected function doDBUpdates() { + $batchSize = $this->getBatchSize(); $db = $this->getDB( DB_MASTER ); if ( !$db->tableExists( 'log_search' ) ) { $this->error( "log_search does not exist" ); @@ -68,9 +69,9 @@ class PopulateLogSearch extends LoggedUpdateMaintenance { $end = $db->selectField( 'logging', 'MAX(log_id)', false, __FUNCTION__ ); # Do remaining chunk - $end += $this->mBatchSize - 1; + $end += $batchSize - 1; $blockStart = $start; - $blockEnd = $start + $this->mBatchSize - 1; + $blockEnd = $start + $batchSize - 1; $delTypes = [ 'delete', 'suppress' ]; // revisiondelete types while ( $blockEnd <= $end ) { @@ -158,8 +159,8 @@ class PopulateLogSearch extends LoggedUpdateMaintenance { $log->addRelations( 'target_author_ip', $userIPs, $row->log_id ); } } - $blockStart += $this->mBatchSize; - $blockEnd += $this->mBatchSize; + $blockStart += $batchSize; + $blockEnd += $batchSize; wfWaitForSlaves(); } $this->output( "Done populating log_search table.\n" ); diff --git a/maintenance/populateLogUsertext.php b/maintenance/populateLogUsertext.php index dd120fe003..c5c079ac0a 100644 --- a/maintenance/populateLogUsertext.php +++ b/maintenance/populateLogUsertext.php @@ -48,6 +48,7 @@ class PopulateLogUsertext extends LoggedUpdateMaintenance { } protected function doDBUpdates() { + $batchSize = $this->getBatchSize(); $db = $this->getDB( DB_MASTER ); $start = $db->selectField( 'logging', 'MIN(log_id)', false, __METHOD__ ); if ( !$start ) { @@ -58,9 +59,9 @@ class PopulateLogUsertext extends LoggedUpdateMaintenance { $end = $db->selectField( 'logging', 'MAX(log_id)', false, __METHOD__ ); # Do remaining chunk - $end += $this->mBatchSize - 1; + $end += $batchSize - 1; $blockStart = $start; - $blockEnd = $start + $this->mBatchSize - 1; + $blockEnd = $start + $batchSize - 1; while ( $blockEnd <= $end ) { $this->output( "...doing log_id from $blockStart to $blockEnd\n" ); $cond = "log_id BETWEEN $blockStart AND $blockEnd AND log_user = user_id"; @@ -73,8 +74,8 @@ class PopulateLogUsertext extends LoggedUpdateMaintenance { [ 'log_id' => $row->log_id ], __METHOD__ ); } $this->commitTransaction( $db, __METHOD__ ); - $blockStart += $this->mBatchSize; - $blockEnd += $this->mBatchSize; + $blockStart += $batchSize; + $blockEnd += $batchSize; wfWaitForSlaves(); } $this->output( "Done populating log_user_text field.\n" ); diff --git a/maintenance/populatePPSortKey.php b/maintenance/populatePPSortKey.php index 366905a6a9..98d535aa29 100644 --- a/maintenance/populatePPSortKey.php +++ b/maintenance/populatePPSortKey.php @@ -57,7 +57,7 @@ class PopulatePPSortKey extends LoggedUpdateMaintenance { __METHOD__, [ 'ORDER BY' => 'pp_page, pp_propname', - 'LIMIT' => $this->mBatchSize + 'LIMIT' => $this->getBatchSize() ] ); diff --git a/maintenance/populateParentId.php b/maintenance/populateParentId.php index 457033a4fa..99c2b23014 100644 --- a/maintenance/populateParentId.php +++ b/maintenance/populateParentId.php @@ -46,6 +46,7 @@ class PopulateParentId extends LoggedUpdateMaintenance { } protected function doDBUpdates() { + $batchSize = $this->getBatchSize(); $db = $this->getDB( DB_MASTER ); if ( !$db->tableExists( 'revision' ) ) { $this->error( "revision table does not exist" ); @@ -62,7 +63,7 @@ class PopulateParentId extends LoggedUpdateMaintenance { } # Do remaining chunk $blockStart = intval( $start ); - $blockEnd = intval( $start ) + $this->mBatchSize - 1; + $blockEnd = intval( $start ) + $batchSize - 1; $count = 0; $changed = 0; while ( $blockStart <= $end ) { @@ -116,8 +117,8 @@ class PopulateParentId extends LoggedUpdateMaintenance { __METHOD__ ); $count++; } - $blockStart += $this->mBatchSize; - $blockEnd += $this->mBatchSize; + $blockStart += $batchSize; + $blockEnd += $batchSize; wfWaitForSlaves(); } $this->output( "rev_parent_id population complete ... {$count} rows [{$changed} changed]\n" ); diff --git a/maintenance/populateRecentChangesSource.php b/maintenance/populateRecentChangesSource.php index 5d5da89a8c..eb9797f0b0 100644 --- a/maintenance/populateRecentChangesSource.php +++ b/maintenance/populateRecentChangesSource.php @@ -41,6 +41,7 @@ class PopulateRecentChangesSource extends LoggedUpdateMaintenance { protected function doDBUpdates() { $dbw = $this->getDB( DB_MASTER ); + $batchSize = $this->getBatchSize(); if ( !$dbw->fieldExists( 'recentchanges', 'rc_source' ) ) { $this->error( 'rc_source field in recentchanges table does not exist.' ); } @@ -52,9 +53,9 @@ class PopulateRecentChangesSource extends LoggedUpdateMaintenance { return true; } $end = $dbw->selectField( 'recentchanges', 'MAX(rc_id)', false, __METHOD__ ); - $end += $this->mBatchSize - 1; + $end += $batchSize - 1; $blockStart = $start; - $blockEnd = $start + $this->mBatchSize - 1; + $blockEnd = $start + $batchSize - 1; $updatedValues = $this->buildUpdateCondition( $dbw ); @@ -74,8 +75,8 @@ class PopulateRecentChangesSource extends LoggedUpdateMaintenance { $this->output( "." ); wfWaitForSlaves(); - $blockStart += $this->mBatchSize; - $blockEnd += $this->mBatchSize; + $blockStart += $batchSize; + $blockEnd += $batchSize; } $this->output( "\nDone.\n" ); diff --git a/maintenance/populateRevisionLength.php b/maintenance/populateRevisionLength.php index 0cb14c42c8..5de5819735 100644 --- a/maintenance/populateRevisionLength.php +++ b/maintenance/populateRevisionLength.php @@ -75,6 +75,7 @@ class PopulateRevisionLength extends LoggedUpdateMaintenance { protected function doLenUpdates( $table, $idCol, $prefix, $queryInfo ) { $dbr = $this->getDB( DB_REPLICA ); $dbw = $this->getDB( DB_MASTER ); + $batchSize = $this->getBatchSize(); $start = $dbw->selectField( $table, "MIN($idCol)", false, __METHOD__ ); $end = $dbw->selectField( $table, "MAX($idCol)", false, __METHOD__ ); if ( !$start || !$end ) { @@ -85,7 +86,7 @@ class PopulateRevisionLength extends LoggedUpdateMaintenance { # Do remaining chunks $blockStart = intval( $start ); - $blockEnd = intval( $start ) + $this->mBatchSize - 1; + $blockEnd = intval( $start ) + $batchSize - 1; $count = 0; while ( $blockStart <= $end ) { @@ -114,8 +115,8 @@ class PopulateRevisionLength extends LoggedUpdateMaintenance { $this->commitTransaction( $dbw, __METHOD__ ); } - $blockStart += $this->mBatchSize; - $blockEnd += $this->mBatchSize; + $blockStart += $batchSize; + $blockEnd += $batchSize; wfWaitForSlaves(); } diff --git a/maintenance/populateRevisionSha1.php b/maintenance/populateRevisionSha1.php index f96c2eca36..89eff02159 100644 --- a/maintenance/populateRevisionSha1.php +++ b/maintenance/populateRevisionSha1.php @@ -77,6 +77,7 @@ class PopulateRevisionSha1 extends LoggedUpdateMaintenance { */ protected function doSha1Updates( $table, $idCol, $queryInfo, $prefix ) { $db = $this->getDB( DB_MASTER ); + $batchSize = $this->getBatchSize(); $start = $db->selectField( $table, "MIN($idCol)", false, __METHOD__ ); $end = $db->selectField( $table, "MAX($idCol)", false, __METHOD__ ); if ( !$start || !$end ) { @@ -87,9 +88,9 @@ class PopulateRevisionSha1 extends LoggedUpdateMaintenance { $count = 0; # Do remaining chunk - $end += $this->mBatchSize - 1; + $end += $batchSize - 1; $blockStart = $start; - $blockEnd = $start + $this->mBatchSize - 1; + $blockEnd = $start + $batchSize - 1; while ( $blockEnd <= $end ) { $this->output( "...doing $idCol from $blockStart to $blockEnd\n" ); $cond = "$idCol BETWEEN $blockStart AND $blockEnd @@ -106,8 +107,8 @@ class PopulateRevisionSha1 extends LoggedUpdateMaintenance { } $this->commitTransaction( $db, __METHOD__ ); - $blockStart += $this->mBatchSize; - $blockEnd += $this->mBatchSize; + $blockStart += $batchSize; + $blockEnd += $batchSize; wfWaitForSlaves(); } diff --git a/maintenance/purgeChangedFiles.php b/maintenance/purgeChangedFiles.php index 3c0fc7e572..98054523bc 100644 --- a/maintenance/purgeChangedFiles.php +++ b/maintenance/purgeChangedFiles.php @@ -200,7 +200,7 @@ class PurgeChangedFiles extends Maintenance { $this->verbose( "Purged file {$row->log_title}; {$type} @{$row->log_timestamp}.\n" ); - if ( $this->hasOption( 'sleep-per-batch' ) && ++$bSize > $this->mBatchSize ) { + if ( $this->hasOption( 'sleep-per-batch' ) && ++$bSize > $this->getBatchSize() ) { $bSize = 0; // sleep-per-batch is milliseconds, usleep wants micro seconds. usleep( 1000 * (int)$this->getOption( 'sleep-per-batch' ) ); diff --git a/maintenance/purgeChangedPages.php b/maintenance/purgeChangedPages.php index cf65c69315..cce9b036a5 100644 --- a/maintenance/purgeChangedPages.php +++ b/maintenance/purgeChangedPages.php @@ -79,7 +79,7 @@ class PurgeChangedPages extends Maintenance { $stuckCount = 0; // loop breaker while ( true ) { // Adjust bach size if we are stuck in a second that had many changes - $bSize = $this->mBatchSize + ( $stuckCount * $this->mBatchSize ); + $bSize = ( $stuckCount + 1 ) * $this->getBatchSize(); $res = $dbr->select( [ 'page', 'revision' ], diff --git a/maintenance/purgeList.php b/maintenance/purgeList.php index 5ca7918ea9..8cf217f95f 100644 --- a/maintenance/purgeList.php +++ b/maintenance/purgeList.php @@ -99,7 +99,7 @@ class PurgeList extends Maintenance { $conds + [ 'page_id > ' . $dbr->addQuotes( $startId ) ], __METHOD__, [ - 'LIMIT' => $this->mBatchSize, + 'LIMIT' => $this->getBatchSize(), 'ORDER BY' => 'page_id' ] diff --git a/maintenance/purgeModuleDeps.php b/maintenance/purgeModuleDeps.php index feeeb65b65..591f7ee744 100644 --- a/maintenance/purgeModuleDeps.php +++ b/maintenance/purgeModuleDeps.php @@ -48,7 +48,7 @@ class PurgeModuleDeps extends Maintenance { $modDeps = $dbw->tableName( 'module_deps' ); $i = 1; - foreach ( array_chunk( $rows, $this->mBatchSize ) as $chunk ) { + foreach ( array_chunk( $rows, $this->getBatchSize() ) as $chunk ) { // WHERE ( mod=A AND skin=A ) OR ( mod=A AND skin=B) .. $conds = array_map( function ( stdClass $row ) use ( $dbw ) { return $dbw->makeList( (array)$row, IDatabase::LIST_AND ); diff --git a/maintenance/rebuildFileCache.php b/maintenance/rebuildFileCache.php index fe3944c876..19d8d06154 100644 --- a/maintenance/rebuildFileCache.php +++ b/maintenance/rebuildFileCache.php @@ -78,6 +78,7 @@ class RebuildFileCache extends Maintenance { $this->output( "Building content page file cache from page {$start}!\n" ); $dbr = $this->getDB( DB_REPLICA ); + $batchSize = $this->getBatchSize(); $overwrite = $this->hasOption( 'overwrite' ); $start = ( $start > 0 ) ? $start @@ -92,9 +93,9 @@ class RebuildFileCache extends Maintenance { $_SERVER['HTTP_ACCEPT_ENCODING'] = 'bgzip'; // hack, no real client # Do remaining chunk - $end += $this->mBatchSize - 1; + $end += $batchSize - 1; $blockStart = $start; - $blockEnd = $start + $this->mBatchSize - 1; + $blockEnd = $start + $batchSize - 1; $dbw = $this->getDB( DB_MASTER ); // Go through each page and save the output @@ -171,8 +172,8 @@ class RebuildFileCache extends Maintenance { } $this->commitTransaction( $dbw, __METHOD__ ); // commit any changes (just for sanity) - $blockStart += $this->mBatchSize; - $blockEnd += $this->mBatchSize; + $blockStart += $batchSize; + $blockEnd += $batchSize; } $this->output( "Done!\n" ); } diff --git a/maintenance/rebuildrecentchanges.php b/maintenance/rebuildrecentchanges.php index a2cf3c5bca..6d4a4bfb10 100644 --- a/maintenance/rebuildrecentchanges.php +++ b/maintenance/rebuildrecentchanges.php @@ -109,7 +109,7 @@ class RebuildRecentchanges extends Maintenance { 'rc_timestamp < ' . $dbw->addQuotes( $dbw->timestamp( $this->cutoffTo ) ) ] ); - foreach ( array_chunk( $rcids, $this->mBatchSize ) as $rcidBatch ) { + foreach ( array_chunk( $rcids, $this->getBatchSize() ) as $rcidBatch ) { $dbw->delete( 'recentchanges', [ 'rc_id' => $rcidBatch ], __METHOD__ ); wfGetLBFactory()->waitForReplication(); } @@ -166,7 +166,7 @@ class RebuildRecentchanges extends Maintenance { ] + $rcCommentStore->insert( $dbw, $comment ), __METHOD__ ); - if ( ( ++$inserted % $this->mBatchSize ) == 0 ) { + if ( ( ++$inserted % $this->getBatchSize() ) == 0 ) { wfGetLBFactory()->waitForReplication(); } } @@ -256,7 +256,7 @@ class RebuildRecentchanges extends Maintenance { $lastOldId = intval( $obj->rc_this_oldid ); $lastSize = $size; - if ( ( ++$updated % $this->mBatchSize ) == 0 ) { + if ( ( ++$updated % $this->getBatchSize() ) == 0 ) { wfGetLBFactory()->waitForReplication(); } } @@ -340,7 +340,7 @@ class RebuildRecentchanges extends Maintenance { __METHOD__ ); - if ( ( ++$inserted % $this->mBatchSize ) == 0 ) { + if ( ( ++$inserted % $this->getBatchSize() ) == 0 ) { wfGetLBFactory()->waitForReplication(); } } @@ -392,7 +392,7 @@ class RebuildRecentchanges extends Maintenance { __METHOD__ ); - foreach ( array_chunk( $rcids, $this->mBatchSize ) as $rcidBatch ) { + foreach ( array_chunk( $rcids, $this->getBatchSize() ) as $rcidBatch ) { $dbw->update( 'recentchanges', [ 'rc_bot' => 1 ], @@ -474,7 +474,7 @@ class RebuildRecentchanges extends Maintenance { __METHOD__ ); - if ( ( ++$updates % $this->mBatchSize ) == 0 ) { + if ( ( ++$updates % $this->getBatchSize() ) == 0 ) { wfGetLBFactory()->waitForReplication(); } } diff --git a/maintenance/recountCategories.php b/maintenance/recountCategories.php index a4bfa98992..b4d75c7a1a 100644 --- a/maintenance/recountCategories.php +++ b/maintenance/recountCategories.php @@ -97,8 +97,8 @@ TEXT } protected function doWork() { - $this->output( "Finding up to {$this->mBatchSize} drifted rows " . - "starting at cat_id {$this->minimumId}...\n" ); + $this->output( "Finding up to {$this->getBatchSize()} drifted rows " . + "starting at cat_id {$this->getBatchSize()}...\n" ); $countingConds = [ 'cl_to = cat_title' ]; if ( $this->mode === 'subcats' ) { @@ -124,7 +124,7 @@ TEXT "cat_{$this->mode} != ($countingSubquery)" ], __METHOD__, - [ 'LIMIT' => $this->mBatchSize ] + [ 'LIMIT' => $this->getBatchSize() ] ); if ( !$idsToUpdate ) { return false; diff --git a/maintenance/refreshFileHeaders.php b/maintenance/refreshFileHeaders.php index e123de7fdb..bd625ba129 100644 --- a/maintenance/refreshFileHeaders.php +++ b/maintenance/refreshFileHeaders.php @@ -78,8 +78,15 @@ class RefreshFileHeaders extends Maintenance { $conds[] = "img_minor_mime = {$dbr->addQuotes( $minor_mime )}"; } - $res = $dbr->select( $fileQuery['tables'], $fileQuery['fields'], $conds, - __METHOD__, [ 'LIMIT' => $this->mBatchSize, 'ORDER BY' => 'img_name ASC' ], $fileQuery['joins'] + $res = $dbr->select( $fileQuery['tables'], + $fileQuery['fields'], + $conds, + __METHOD__, + [ + 'LIMIT' => $this->getBatchSize(), + 'ORDER BY' => 'img_name ASC' + ], + $fileQuery['joins'] ); if ( $res->numRows() > 0 ) { @@ -122,7 +129,7 @@ class RefreshFileHeaders extends Maintenance { $this->output( "Updating headers for {$backendOperationsCount} file(s).\n" ); $this->updateFileHeaders( $repo, $backendOperations ); - } while ( $res->numRows() === $this->mBatchSize ); + } while ( $res->numRows() === $this->getBatchSize() ); $this->output( "Done. Updated headers for $count file(s).\n" ); } diff --git a/maintenance/refreshImageMetadata.php b/maintenance/refreshImageMetadata.php index b7f03d9bb6..f6c0673b10 100644 --- a/maintenance/refreshImageMetadata.php +++ b/maintenance/refreshImageMetadata.php @@ -106,7 +106,8 @@ class RefreshImageMetadata extends Maintenance { $error = 0; $dbw = $this->getDB( DB_MASTER ); - if ( $this->mBatchSize <= 0 ) { + $batchSize = $this->getBatchSize(); + if ( $batchSize <= 0 ) { $this->error( "Batch size is too low...", 12 ); } @@ -120,7 +121,7 @@ class RefreshImageMetadata extends Maintenance { } $options = [ - 'LIMIT' => $this->mBatchSize, + 'LIMIT' => $batchSize, 'ORDER BY' => 'img_name ASC', ]; @@ -194,7 +195,7 @@ class RefreshImageMetadata extends Maintenance { } $conds2 = [ 'img_name > ' . $dbw->addQuotes( $row->img_name ) ]; wfWaitForSlaves(); - } while ( $res->numRows() === $this->mBatchSize ); + } while ( $res->numRows() === $batchSize ); $total = $upgraded + $leftAlone; if ( $force ) { diff --git a/maintenance/refreshLinks.php b/maintenance/refreshLinks.php index b099aff44f..cea9e0cbab 100644 --- a/maintenance/refreshLinks.php +++ b/maintenance/refreshLinks.php @@ -80,9 +80,9 @@ class RefreshLinks extends Maintenance { $redir = $this->hasOption( 'redirects-only' ); $oldRedir = $this->hasOption( 'old-redirects-only' ); $this->doRefreshLinks( $start, $new, $end, $redir, $oldRedir ); - $this->deleteLinksFromNonexistent( null, null, $this->mBatchSize, $dfnChunkSize ); + $this->deleteLinksFromNonexistent( null, null, $this->getBatchSize(), $dfnChunkSize ); } else { - $this->deleteLinksFromNonexistent( $start, $end, $this->mBatchSize, $dfnChunkSize ); + $this->deleteLinksFromNonexistent( $start, $end, $this->getBatchSize(), $dfnChunkSize ); } } @@ -456,7 +456,7 @@ class RefreshLinks extends Maintenance { __METHOD__, [ 'ORDER BY' => [ 'cl_timestamp', 'cl_from' ], - 'LIMIT' => $this->mBatchSize, + 'LIMIT' => $this->getBatchSize(), ] ); @@ -470,7 +470,7 @@ class RefreshLinks extends Maintenance { self::fixLinksFromArticle( $row->page_id ); } - } while ( $res->numRows() == $this->mBatchSize ); + } while ( $res->numRows() == $this->getBatchSize() ); } /** diff --git a/maintenance/removeInvalidEmails.php b/maintenance/removeInvalidEmails.php index 1034005aa0..91025bf109 100644 --- a/maintenance/removeInvalidEmails.php +++ b/maintenance/removeInvalidEmails.php @@ -36,7 +36,7 @@ class RemoveInvalidEmails extends Maintenance { 'user_email_authenticated IS NULL' ], __METHOD__, - [ 'LIMIT' => $this->mBatchSize ] + [ 'LIMIT' => $this->getBatchSize() ] ); $count = $rows->numRows(); $badIds = []; diff --git a/maintenance/resetUserTokens.php b/maintenance/resetUserTokens.php index 1c8b4b9d0b..710198b870 100644 --- a/maintenance/resetUserTokens.php +++ b/maintenance/resetUserTokens.php @@ -80,7 +80,7 @@ class ResetUserTokens extends Maintenance { $maxid = $dbr->selectField( 'user', 'MAX(user_id)', [], __METHOD__ ); $min = 0; - $max = $this->mBatchSize; + $max = $this->getBatchSize(); do { $result = $dbr->select( 'user', @@ -99,7 +99,7 @@ class ResetUserTokens extends Maintenance { } $min = $max; - $max = $min + $this->mBatchSize; + $max = $min + $this->getBatchSize(); wfWaitForSlaves(); } while ( $min <= $maxid ); diff --git a/maintenance/syncFileBackend.php b/maintenance/syncFileBackend.php index 82149a6ddd..154f54e53f 100644 --- a/maintenance/syncFileBackend.php +++ b/maintenance/syncFileBackend.php @@ -161,7 +161,7 @@ class SyncFileBackend extends Maintenance { $next = null; do { - $limit = min( $this->mBatchSize, $end - $start + 1 ); // don't go pass ending ID + $limit = min( $this->getBatchSize(), $end - $start + 1 ); // don't go pass ending ID $this->output( "Doing id $start to " . ( $start + $limit - 1 ) . "...\n" ); $entries = $src->getJournal()->getChangeEntries( $start, $limit, $next ); diff --git a/maintenance/updateRestrictions.php b/maintenance/updateRestrictions.php index 2f3fc36534..334ed279f6 100644 --- a/maintenance/updateRestrictions.php +++ b/maintenance/updateRestrictions.php @@ -41,6 +41,7 @@ class UpdateRestrictions extends Maintenance { public function execute() { $db = $this->getDB( DB_MASTER ); + $batchSize = $this->getBatchSize(); if ( !$db->tableExists( 'page_restrictions' ) ) { $this->error( "page_restrictions table does not exist", true ); } @@ -52,9 +53,9 @@ class UpdateRestrictions extends Maintenance { $end = $db->selectField( 'page', 'MAX(page_id)', false, __METHOD__ ); # Do remaining chunk - $end += $this->mBatchSize - 1; + $end += $batchSize - 1; $blockStart = $start; - $blockEnd = $start + $this->mBatchSize - 1; + $blockEnd = $start + $batchSize - 1; $encodedExpiry = 'infinity'; while ( $blockEnd <= $end ) { $this->output( "...doing page_id from $blockStart to $blockEnd out of $end\n" ); @@ -105,8 +106,8 @@ class UpdateRestrictions extends Maintenance { throw new MWException( "Deadlock loop failed wtf :(" ); } } - $blockStart += $this->mBatchSize - 1; - $blockEnd += $this->mBatchSize - 1; + $blockStart += $batchSize - 1; + $blockEnd += $batchSize - 1; wfWaitForSlaves(); } $this->output( "...removing dead rows from page_restrictions\n" ); diff --git a/maintenance/wrapOldPasswords.php b/maintenance/wrapOldPasswords.php index 85fa7805e6..981143ecf7 100644 --- a/maintenance/wrapOldPasswords.php +++ b/maintenance/wrapOldPasswords.php @@ -87,7 +87,7 @@ class WrapOldPasswords extends Maintenance { __METHOD__, [ 'ORDER BY' => 'user_id', - 'LIMIT' => $this->mBatchSize, + 'LIMIT' => $this->getBatchSize(), 'LOCK IN SHARE MODE', ] ); diff --git a/resources/Resources.php b/resources/Resources.php index 7d606e7fbc..34b083688f 100644 --- a/resources/Resources.php +++ b/resources/Resources.php @@ -133,7 +133,7 @@ return [ 'jquery' => [ 'scripts' => [ - 'resources/lib/jquery/jquery3.js', + 'resources/lib/jquery/jquery.js', 'resources/lib/jquery/jquery.migrate.js', ], 'raw' => true, @@ -1134,6 +1134,7 @@ return [ 'scripts' => 'resources/src/mediawiki/mediawiki.notification.js', 'dependencies' => [ 'mediawiki.util', + 'mediawiki.visibleTimeout', ], 'targets' => [ 'desktop', 'mobile' ], ], @@ -1388,6 +1389,14 @@ return [ 'scripts' => 'resources/src/mediawiki/mediawiki.experiments.js', 'targets' => [ 'desktop', 'mobile' ], ], + 'mediawiki.editfont.styles' => [ + 'styles' => 'resources/src/mediawiki/mediawiki.editfont.css', + 'targets' => [ 'desktop', 'mobile' ], + ], + 'mediawiki.visibleTimeout' => [ + 'scripts' => 'resources/src/mediawiki/mediawiki.visibleTimeout.js', + 'targets' => [ 'desktop', 'mobile' ], + ], /* MediaWiki Action */ @@ -1399,6 +1408,7 @@ return [ 'styles' => 'resources/src/mediawiki.action/mediawiki.action.edit.css', 'dependencies' => [ 'mediawiki.action.edit.styles', + 'mediawiki.editfont.styles', 'jquery.textSelection', 'oojs-ui-core', 'mediawiki.widgets.visibleByteLimit', @@ -1849,6 +1859,7 @@ return [ 'rcfilters-savedqueries-new-name-label', 'rcfilters-savedqueries-new-name-placeholder', 'rcfilters-savedqueries-add-new-title', + 'rcfilters-savedqueries-already-saved', 'rcfilters-savedqueries-apply-label', 'rcfilters-savedqueries-apply-and-setdefault-label', 'rcfilters-savedqueries-cancel-label', diff --git a/resources/lib/jquery/jquery.js b/resources/lib/jquery/jquery.js new file mode 100644 index 0000000000..d2d8ca4790 --- /dev/null +++ b/resources/lib/jquery/jquery.js @@ -0,0 +1,10253 @@ +/*! + * jQuery JavaScript Library v3.2.1 + * https://jquery.com/ + * + * Includes Sizzle.js + * https://sizzlejs.com/ + * + * Copyright JS Foundation and other contributors + * Released under the MIT license + * https://jquery.org/license + * + * Date: 2017-03-20T18:59Z + */ +( function( global, factory ) { + + "use strict"; + + if ( typeof module === "object" && typeof module.exports === "object" ) { + + // For CommonJS and CommonJS-like environments where a proper `window` + // is present, execute the factory and get jQuery. + // For environments that do not have a `window` with a `document` + // (such as Node.js), expose a factory as module.exports. + // This accentuates the need for the creation of a real `window`. + // e.g. var jQuery = require("jquery")(window); + // See ticket #14549 for more info. + module.exports = global.document ? + factory( global, true ) : + function( w ) { + if ( !w.document ) { + throw new Error( "jQuery requires a window with a document" ); + } + return factory( w ); + }; + } else { + factory( global ); + } + +// Pass this if window is not defined yet +} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { + +// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 +// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode +// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common +// enough that all such attempts are guarded in a try block. +"use strict"; + +var arr = []; + +var document = window.document; + +var getProto = Object.getPrototypeOf; + +var slice = arr.slice; + +var concat = arr.concat; + +var push = arr.push; + +var indexOf = arr.indexOf; + +var class2type = {}; + +var toString = class2type.toString; + +var hasOwn = class2type.hasOwnProperty; + +var fnToString = hasOwn.toString; + +var ObjectFunctionString = fnToString.call( Object ); + +var support = {}; + + + + function DOMEval( code, doc ) { + doc = doc || document; + + var script = doc.createElement( "script" ); + + script.text = code; + doc.head.appendChild( script ).parentNode.removeChild( script ); + } +/* global Symbol */ +// Defining this global in .eslintrc.json would create a danger of using the global +// unguarded in another place, it seems safer to define global only for this module + + + +var + version = "3.2.1", + + // Define a local copy of jQuery + jQuery = function( selector, context ) { + + // The jQuery object is actually just the init constructor 'enhanced' + // Need init if jQuery is called (just allow error to be thrown if not included) + return new jQuery.fn.init( selector, context ); + }, + + // Support: Android <=4.0 only + // Make sure we trim BOM and NBSP + rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, + + // Matches dashed string for camelizing + rmsPrefix = /^-ms-/, + rdashAlpha = /-([a-z])/g, + + // Used by jQuery.camelCase as callback to replace() + fcamelCase = function( all, letter ) { + return letter.toUpperCase(); + }; + +jQuery.fn = jQuery.prototype = { + + // The current version of jQuery being used + jquery: version, + + constructor: jQuery, + + // The default length of a jQuery object is 0 + length: 0, + + toArray: function() { + return slice.call( this ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + + // Return all the elements in a clean array + if ( num == null ) { + return slice.call( this ); + } + + // Return just the one element from the set + return num < 0 ? this[ num + this.length ] : this[ num ]; + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems ) { + + // Build a new jQuery matched element set + var ret = jQuery.merge( this.constructor(), elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + each: function( callback ) { + return jQuery.each( this, callback ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map( this, function( elem, i ) { + return callback.call( elem, i, elem ); + } ) ); + }, + + slice: function() { + return this.pushStack( slice.apply( this, arguments ) ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + eq: function( i ) { + var len = this.length, + j = +i + ( i < 0 ? len : 0 ); + return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); + }, + + end: function() { + return this.prevObject || this.constructor(); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: push, + sort: arr.sort, + splice: arr.splice +}; + +jQuery.extend = jQuery.fn.extend = function() { + var options, name, src, copy, copyIsArray, clone, + target = arguments[ 0 ] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + + // Skip the boolean and the target + target = arguments[ i ] || {}; + i++; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !jQuery.isFunction( target ) ) { + target = {}; + } + + // Extend jQuery itself if only one argument is passed + if ( i === length ) { + target = this; + i--; + } + + for ( ; i < length; i++ ) { + + // Only deal with non-null/undefined values + if ( ( options = arguments[ i ] ) != null ) { + + // Extend the base object + for ( name in options ) { + src = target[ name ]; + copy = options[ name ]; + + // Prevent never-ending loop + if ( target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject( copy ) || + ( copyIsArray = Array.isArray( copy ) ) ) ) { + + if ( copyIsArray ) { + copyIsArray = false; + clone = src && Array.isArray( src ) ? src : []; + + } else { + clone = src && jQuery.isPlainObject( src ) ? src : {}; + } + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend( { + + // Unique for each copy of jQuery on the page + expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), + + // Assume jQuery is ready without the ready module + isReady: true, + + error: function( msg ) { + throw new Error( msg ); + }, + + noop: function() {}, + + isFunction: function( obj ) { + return jQuery.type( obj ) === "function"; + }, + + isWindow: function( obj ) { + return obj != null && obj === obj.window; + }, + + isNumeric: function( obj ) { + + // As of jQuery 3.0, isNumeric is limited to + // strings and numbers (primitives or objects) + // that can be coerced to finite numbers (gh-2662) + var type = jQuery.type( obj ); + return ( type === "number" || type === "string" ) && + + // parseFloat NaNs numeric-cast false positives ("") + // ...but misinterprets leading-number strings, particularly hex literals ("0x...") + // subtraction forces infinities to NaN + !isNaN( obj - parseFloat( obj ) ); + }, + + isPlainObject: function( obj ) { + var proto, Ctor; + + // Detect obvious negatives + // Use toString instead of jQuery.type to catch host objects + if ( !obj || toString.call( obj ) !== "[object Object]" ) { + return false; + } + + proto = getProto( obj ); + + // Objects with no prototype (e.g., `Object.create( null )`) are plain + if ( !proto ) { + return true; + } + + // Objects with prototype are plain iff they were constructed by a global Object function + Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; + return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; + }, + + isEmptyObject: function( obj ) { + + /* eslint-disable no-unused-vars */ + // See https://github.com/eslint/eslint/issues/6125 + var name; + + for ( name in obj ) { + return false; + } + return true; + }, + + type: function( obj ) { + if ( obj == null ) { + return obj + ""; + } + + // Support: Android <=2.3 only (functionish RegExp) + return typeof obj === "object" || typeof obj === "function" ? + class2type[ toString.call( obj ) ] || "object" : + typeof obj; + }, + + // Evaluates a script in a global context + globalEval: function( code ) { + DOMEval( code ); + }, + + // Convert dashed to camelCase; used by the css and data modules + // Support: IE <=9 - 11, Edge 12 - 13 + // Microsoft forgot to hump their vendor prefix (#9572) + camelCase: function( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); + }, + + each: function( obj, callback ) { + var length, i = 0; + + if ( isArrayLike( obj ) ) { + length = obj.length; + for ( ; i < length; i++ ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } else { + for ( i in obj ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } + + return obj; + }, + + // Support: Android <=4.0 only + trim: function( text ) { + return text == null ? + "" : + ( text + "" ).replace( rtrim, "" ); + }, + + // results is for internal usage only + makeArray: function( arr, results ) { + var ret = results || []; + + if ( arr != null ) { + if ( isArrayLike( Object( arr ) ) ) { + jQuery.merge( ret, + typeof arr === "string" ? + [ arr ] : arr + ); + } else { + push.call( ret, arr ); + } + } + + return ret; + }, + + inArray: function( elem, arr, i ) { + return arr == null ? -1 : indexOf.call( arr, elem, i ); + }, + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + merge: function( first, second ) { + var len = +second.length, + j = 0, + i = first.length; + + for ( ; j < len; j++ ) { + first[ i++ ] = second[ j ]; + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, invert ) { + var callbackInverse, + matches = [], + i = 0, + length = elems.length, + callbackExpect = !invert; + + // Go through the array, only saving the items + // that pass the validator function + for ( ; i < length; i++ ) { + callbackInverse = !callback( elems[ i ], i ); + if ( callbackInverse !== callbackExpect ) { + matches.push( elems[ i ] ); + } + } + + return matches; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var length, value, + i = 0, + ret = []; + + // Go through the array, translating each of the items to their new values + if ( isArrayLike( elems ) ) { + length = elems.length; + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + + // Go through every key on the object, + } else { + for ( i in elems ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + } + + // Flatten any nested arrays + return concat.apply( [], ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // Bind a function to a context, optionally partially applying any + // arguments. + proxy: function( fn, context ) { + var tmp, args, proxy; + + if ( typeof context === "string" ) { + tmp = fn[ context ]; + context = fn; + fn = tmp; + } + + // Quick check to determine if target is callable, in the spec + // this throws a TypeError, but we will just return undefined. + if ( !jQuery.isFunction( fn ) ) { + return undefined; + } + + // Simulated bind + args = slice.call( arguments, 2 ); + proxy = function() { + return fn.apply( context || this, args.concat( slice.call( arguments ) ) ); + }; + + // Set the guid of unique handler to the same of original handler, so it can be removed + proxy.guid = fn.guid = fn.guid || jQuery.guid++; + + return proxy; + }, + + now: Date.now, + + // jQuery.support is not used in Core but other projects attach their + // properties to it so it needs to exist. + support: support +} ); + +if ( typeof Symbol === "function" ) { + jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; +} + +// Populate the class2type map +jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), +function( i, name ) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); +} ); + +function isArrayLike( obj ) { + + // Support: real iOS 8.2 only (not reproducible in simulator) + // `in` check used to prevent JIT error (gh-2145) + // hasOwn isn't used here due to false negatives + // regarding Nodelist length in IE + var length = !!obj && "length" in obj && obj.length, + type = jQuery.type( obj ); + + if ( type === "function" || jQuery.isWindow( obj ) ) { + return false; + } + + return type === "array" || length === 0 || + typeof length === "number" && length > 0 && ( length - 1 ) in obj; +} +var Sizzle = +/*! + * Sizzle CSS Selector Engine v2.3.3 + * https://sizzlejs.com/ + * + * Copyright jQuery Foundation and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: 2016-08-08 + */ +(function( window ) { + +var i, + support, + Expr, + getText, + isXML, + tokenize, + compile, + select, + outermostContext, + sortInput, + hasDuplicate, + + // Local document vars + setDocument, + document, + docElem, + documentIsHTML, + rbuggyQSA, + rbuggyMatches, + matches, + contains, + + // Instance-specific data + expando = "sizzle" + 1 * new Date(), + preferredDoc = window.document, + dirruns = 0, + done = 0, + classCache = createCache(), + tokenCache = createCache(), + compilerCache = createCache(), + sortOrder = function( a, b ) { + if ( a === b ) { + hasDuplicate = true; + } + return 0; + }, + + // Instance methods + hasOwn = ({}).hasOwnProperty, + arr = [], + pop = arr.pop, + push_native = arr.push, + push = arr.push, + slice = arr.slice, + // Use a stripped-down indexOf as it's faster than native + // https://jsperf.com/thor-indexof-vs-for/5 + indexOf = function( list, elem ) { + var i = 0, + len = list.length; + for ( ; i < len; i++ ) { + if ( list[i] === elem ) { + return i; + } + } + return -1; + }, + + booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", + + // Regular expressions + + // http://www.w3.org/TR/css3-selectors/#whitespace + whitespace = "[\\x20\\t\\r\\n\\f]", + + // http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier + identifier = "(?:\\\\.|[\\w-]|[^\0-\\xa0])+", + + // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors + attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + + // Operator (capture 2) + "*([*^$|!~]?=)" + whitespace + + // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]" + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace + + "*\\]", + + pseudos = ":(" + identifier + ")(?:\\((" + + // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: + // 1. quoted (capture 3; capture 4 or capture 5) + "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + + // 2. simple (capture 6) + "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + + // 3. anything else (capture 2) + ".*" + + ")\\)|)", + + // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter + rwhitespace = new RegExp( whitespace + "+", "g" ), + rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), + + rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), + rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ), + + rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ), + + rpseudo = new RegExp( pseudos ), + ridentifier = new RegExp( "^" + identifier + "$" ), + + matchExpr = { + "ID": new RegExp( "^#(" + identifier + ")" ), + "CLASS": new RegExp( "^\\.(" + identifier + ")" ), + "TAG": new RegExp( "^(" + identifier + "|[*])" ), + "ATTR": new RegExp( "^" + attributes ), + "PSEUDO": new RegExp( "^" + pseudos ), + "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), + "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), + // For use in libraries implementing .is() + // We use this for POS matching in `select` + "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + + whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) + }, + + rinputs = /^(?:input|select|textarea|button)$/i, + rheader = /^h\d$/i, + + rnative = /^[^{]+\{\s*\[native \w/, + + // Easily-parseable/retrievable ID or TAG or CLASS selectors + rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, + + rsibling = /[+~]/, + + // CSS escapes + // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters + runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ), + funescape = function( _, escaped, escapedWhitespace ) { + var high = "0x" + escaped - 0x10000; + // NaN means non-codepoint + // Support: Firefox<24 + // Workaround erroneous numeric interpretation of +"0x" + return high !== high || escapedWhitespace ? + escaped : + high < 0 ? + // BMP codepoint + String.fromCharCode( high + 0x10000 ) : + // Supplemental Plane codepoint (surrogate pair) + String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); + }, + + // CSS string/identifier serialization + // https://drafts.csswg.org/cssom/#common-serializing-idioms + rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, + fcssescape = function( ch, asCodePoint ) { + if ( asCodePoint ) { + + // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER + if ( ch === "\0" ) { + return "\uFFFD"; + } + + // Control characters and (dependent upon position) numbers get escaped as code points + return ch.slice( 0, -1 ) + "\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; + } + + // Other potentially-special ASCII characters get backslash-escaped + return "\\" + ch; + }, + + // Used for iframes + // See setDocument() + // Removing the function wrapper causes a "Permission Denied" + // error in IE + unloadHandler = function() { + setDocument(); + }, + + disabledAncestor = addCombinator( + function( elem ) { + return elem.disabled === true && ("form" in elem || "label" in elem); + }, + { dir: "parentNode", next: "legend" } + ); + +// Optimize for push.apply( _, NodeList ) +try { + push.apply( + (arr = slice.call( preferredDoc.childNodes )), + preferredDoc.childNodes + ); + // Support: Android<4.0 + // Detect silently failing push.apply + arr[ preferredDoc.childNodes.length ].nodeType; +} catch ( e ) { + push = { apply: arr.length ? + + // Leverage slice if possible + function( target, els ) { + push_native.apply( target, slice.call(els) ); + } : + + // Support: IE<9 + // Otherwise append directly + function( target, els ) { + var j = target.length, + i = 0; + // Can't trust NodeList.length + while ( (target[j++] = els[i++]) ) {} + target.length = j - 1; + } + }; +} + +function Sizzle( selector, context, results, seed ) { + var m, i, elem, nid, match, groups, newSelector, + newContext = context && context.ownerDocument, + + // nodeType defaults to 9, since context defaults to document + nodeType = context ? context.nodeType : 9; + + results = results || []; + + // Return early from calls with invalid selector or context + if ( typeof selector !== "string" || !selector || + nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { + + return results; + } + + // Try to shortcut find operations (as opposed to filters) in HTML documents + if ( !seed ) { + + if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { + setDocument( context ); + } + context = context || document; + + if ( documentIsHTML ) { + + // If the selector is sufficiently simple, try using a "get*By*" DOM method + // (excepting DocumentFragment context, where the methods don't exist) + if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) { + + // ID selector + if ( (m = match[1]) ) { + + // Document context + if ( nodeType === 9 ) { + if ( (elem = context.getElementById( m )) ) { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( elem.id === m ) { + results.push( elem ); + return results; + } + } else { + return results; + } + + // Element context + } else { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( newContext && (elem = newContext.getElementById( m )) && + contains( context, elem ) && + elem.id === m ) { + + results.push( elem ); + return results; + } + } + + // Type selector + } else if ( match[2] ) { + push.apply( results, context.getElementsByTagName( selector ) ); + return results; + + // Class selector + } else if ( (m = match[3]) && support.getElementsByClassName && + context.getElementsByClassName ) { + + push.apply( results, context.getElementsByClassName( m ) ); + return results; + } + } + + // Take advantage of querySelectorAll + if ( support.qsa && + !compilerCache[ selector + " " ] && + (!rbuggyQSA || !rbuggyQSA.test( selector )) ) { + + if ( nodeType !== 1 ) { + newContext = context; + newSelector = selector; + + // qSA looks outside Element context, which is not what we want + // Thanks to Andrew Dupont for this workaround technique + // Support: IE <=8 + // Exclude object elements + } else if ( context.nodeName.toLowerCase() !== "object" ) { + + // Capture the context ID, setting it first if necessary + if ( (nid = context.getAttribute( "id" )) ) { + nid = nid.replace( rcssescape, fcssescape ); + } else { + context.setAttribute( "id", (nid = expando) ); + } + + // Prefix every selector in the list + groups = tokenize( selector ); + i = groups.length; + while ( i-- ) { + groups[i] = "#" + nid + " " + toSelector( groups[i] ); + } + newSelector = groups.join( "," ); + + // Expand context for sibling selectors + newContext = rsibling.test( selector ) && testContext( context.parentNode ) || + context; + } + + if ( newSelector ) { + try { + push.apply( results, + newContext.querySelectorAll( newSelector ) + ); + return results; + } catch ( qsaError ) { + } finally { + if ( nid === expando ) { + context.removeAttribute( "id" ); + } + } + } + } + } + } + + // All others + return select( selector.replace( rtrim, "$1" ), context, results, seed ); +} + +/** + * Create key-value caches of limited size + * @returns {function(string, object)} Returns the Object data after storing it on itself with + * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) + * deleting the oldest entry + */ +function createCache() { + var keys = []; + + function cache( key, value ) { + // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) + if ( keys.push( key + " " ) > Expr.cacheLength ) { + // Only keep the most recent entries + delete cache[ keys.shift() ]; + } + return (cache[ key + " " ] = value); + } + return cache; +} + +/** + * Mark a function for special use by Sizzle + * @param {Function} fn The function to mark + */ +function markFunction( fn ) { + fn[ expando ] = true; + return fn; +} + +/** + * Support testing using an element + * @param {Function} fn Passed the created element and returns a boolean result + */ +function assert( fn ) { + var el = document.createElement("fieldset"); + + try { + return !!fn( el ); + } catch (e) { + return false; + } finally { + // Remove from its parent by default + if ( el.parentNode ) { + el.parentNode.removeChild( el ); + } + // release memory in IE + el = null; + } +} + +/** + * Adds the same handler for all of the specified attrs + * @param {String} attrs Pipe-separated list of attributes + * @param {Function} handler The method that will be applied + */ +function addHandle( attrs, handler ) { + var arr = attrs.split("|"), + i = arr.length; + + while ( i-- ) { + Expr.attrHandle[ arr[i] ] = handler; + } +} + +/** + * Checks document order of two siblings + * @param {Element} a + * @param {Element} b + * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b + */ +function siblingCheck( a, b ) { + var cur = b && a, + diff = cur && a.nodeType === 1 && b.nodeType === 1 && + a.sourceIndex - b.sourceIndex; + + // Use IE sourceIndex if available on both nodes + if ( diff ) { + return diff; + } + + // Check if b follows a + if ( cur ) { + while ( (cur = cur.nextSibling) ) { + if ( cur === b ) { + return -1; + } + } + } + + return a ? 1 : -1; +} + +/** + * Returns a function to use in pseudos for input types + * @param {String} type + */ +function createInputPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for buttons + * @param {String} type + */ +function createButtonPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return (name === "input" || name === "button") && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for :enabled/:disabled + * @param {Boolean} disabled true for :disabled; false for :enabled + */ +function createDisabledPseudo( disabled ) { + + // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable + return function( elem ) { + + // Only certain elements can match :enabled or :disabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled + if ( "form" in elem ) { + + // Check for inherited disabledness on relevant non-disabled elements: + // * listed form-associated elements in a disabled fieldset + // https://html.spec.whatwg.org/multipage/forms.html#category-listed + // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled + // * option elements in a disabled optgroup + // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled + // All such elements have a "form" property. + if ( elem.parentNode && elem.disabled === false ) { + + // Option elements defer to a parent optgroup if present + if ( "label" in elem ) { + if ( "label" in elem.parentNode ) { + return elem.parentNode.disabled === disabled; + } else { + return elem.disabled === disabled; + } + } + + // Support: IE 6 - 11 + // Use the isDisabled shortcut property to check for disabled fieldset ancestors + return elem.isDisabled === disabled || + + // Where there is no isDisabled, check manually + /* jshint -W018 */ + elem.isDisabled !== !disabled && + disabledAncestor( elem ) === disabled; + } + + return elem.disabled === disabled; + + // Try to winnow out elements that can't be disabled before trusting the disabled property. + // Some victims get caught in our net (label, legend, menu, track), but it shouldn't + // even exist on them, let alone have a boolean value. + } else if ( "label" in elem ) { + return elem.disabled === disabled; + } + + // Remaining elements are neither :enabled nor :disabled + return false; + }; +} + +/** + * Returns a function to use in pseudos for positionals + * @param {Function} fn + */ +function createPositionalPseudo( fn ) { + return markFunction(function( argument ) { + argument = +argument; + return markFunction(function( seed, matches ) { + var j, + matchIndexes = fn( [], seed.length, argument ), + i = matchIndexes.length; + + // Match elements found at the specified indexes + while ( i-- ) { + if ( seed[ (j = matchIndexes[i]) ] ) { + seed[j] = !(matches[j] = seed[j]); + } + } + }); + }); +} + +/** + * Checks a node for validity as a Sizzle context + * @param {Element|Object=} context + * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value + */ +function testContext( context ) { + return context && typeof context.getElementsByTagName !== "undefined" && context; +} + +// Expose support vars for convenience +support = Sizzle.support = {}; + +/** + * Detects XML nodes + * @param {Element|Object} elem An element or a document + * @returns {Boolean} True iff elem is a non-HTML XML node + */ +isXML = Sizzle.isXML = function( elem ) { + // documentElement is verified for cases where it doesn't yet exist + // (such as loading iframes in IE - #4833) + var documentElement = elem && (elem.ownerDocument || elem).documentElement; + return documentElement ? documentElement.nodeName !== "HTML" : false; +}; + +/** + * Sets document-related variables once based on the current document + * @param {Element|Object} [doc] An element or document object to use to set the document + * @returns {Object} Returns the current document + */ +setDocument = Sizzle.setDocument = function( node ) { + var hasCompare, subWindow, + doc = node ? node.ownerDocument || node : preferredDoc; + + // Return early if doc is invalid or already selected + if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) { + return document; + } + + // Update global variables + document = doc; + docElem = document.documentElement; + documentIsHTML = !isXML( document ); + + // Support: IE 9-11, Edge + // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) + if ( preferredDoc !== document && + (subWindow = document.defaultView) && subWindow.top !== subWindow ) { + + // Support: IE 11, Edge + if ( subWindow.addEventListener ) { + subWindow.addEventListener( "unload", unloadHandler, false ); + + // Support: IE 9 - 10 only + } else if ( subWindow.attachEvent ) { + subWindow.attachEvent( "onunload", unloadHandler ); + } + } + + /* Attributes + ---------------------------------------------------------------------- */ + + // Support: IE<8 + // Verify that getAttribute really returns attributes and not properties + // (excepting IE8 booleans) + support.attributes = assert(function( el ) { + el.className = "i"; + return !el.getAttribute("className"); + }); + + /* getElement(s)By* + ---------------------------------------------------------------------- */ + + // Check if getElementsByTagName("*") returns only elements + support.getElementsByTagName = assert(function( el ) { + el.appendChild( document.createComment("") ); + return !el.getElementsByTagName("*").length; + }); + + // Support: IE<9 + support.getElementsByClassName = rnative.test( document.getElementsByClassName ); + + // Support: IE<10 + // Check if getElementById returns elements by name + // The broken getElementById methods don't pick up programmatically-set names, + // so use a roundabout getElementsByName test + support.getById = assert(function( el ) { + docElem.appendChild( el ).id = expando; + return !document.getElementsByName || !document.getElementsByName( expando ).length; + }); + + // ID filter and find + if ( support.getById ) { + Expr.filter["ID"] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + return elem.getAttribute("id") === attrId; + }; + }; + Expr.find["ID"] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var elem = context.getElementById( id ); + return elem ? [ elem ] : []; + } + }; + } else { + Expr.filter["ID"] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + var node = typeof elem.getAttributeNode !== "undefined" && + elem.getAttributeNode("id"); + return node && node.value === attrId; + }; + }; + + // Support: IE 6 - 7 only + // getElementById is not reliable as a find shortcut + Expr.find["ID"] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var node, i, elems, + elem = context.getElementById( id ); + + if ( elem ) { + + // Verify the id attribute + node = elem.getAttributeNode("id"); + if ( node && node.value === id ) { + return [ elem ]; + } + + // Fall back on getElementsByName + elems = context.getElementsByName( id ); + i = 0; + while ( (elem = elems[i++]) ) { + node = elem.getAttributeNode("id"); + if ( node && node.value === id ) { + return [ elem ]; + } + } + } + + return []; + } + }; + } + + // Tag + Expr.find["TAG"] = support.getElementsByTagName ? + function( tag, context ) { + if ( typeof context.getElementsByTagName !== "undefined" ) { + return context.getElementsByTagName( tag ); + + // DocumentFragment nodes don't have gEBTN + } else if ( support.qsa ) { + return context.querySelectorAll( tag ); + } + } : + + function( tag, context ) { + var elem, + tmp = [], + i = 0, + // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too + results = context.getElementsByTagName( tag ); + + // Filter out possible comments + if ( tag === "*" ) { + while ( (elem = results[i++]) ) { + if ( elem.nodeType === 1 ) { + tmp.push( elem ); + } + } + + return tmp; + } + return results; + }; + + // Class + Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) { + if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { + return context.getElementsByClassName( className ); + } + }; + + /* QSA/matchesSelector + ---------------------------------------------------------------------- */ + + // QSA and matchesSelector support + + // matchesSelector(:active) reports false when true (IE9/Opera 11.5) + rbuggyMatches = []; + + // qSa(:focus) reports false when true (Chrome 21) + // We allow this because of a bug in IE8/9 that throws an error + // whenever `document.activeElement` is accessed on an iframe + // So, we allow :focus to pass through QSA all the time to avoid the IE error + // See https://bugs.jquery.com/ticket/13378 + rbuggyQSA = []; + + if ( (support.qsa = rnative.test( document.querySelectorAll )) ) { + // Build QSA regex + // Regex strategy adopted from Diego Perini + assert(function( el ) { + // Select is set to empty string on purpose + // This is to test IE's treatment of not explicitly + // setting a boolean content attribute, + // since its presence should be enough + // https://bugs.jquery.com/ticket/12359 + docElem.appendChild( el ).innerHTML = "" + + ""; + + // Support: IE8, Opera 11-12.16 + // Nothing should be selected when empty strings follow ^= or $= or *= + // The test attribute must be unknown in Opera but "safe" for WinRT + // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section + if ( el.querySelectorAll("[msallowcapture^='']").length ) { + rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); + } + + // Support: IE8 + // Boolean attributes and "value" are not treated correctly + if ( !el.querySelectorAll("[selected]").length ) { + rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); + } + + // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ + if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { + rbuggyQSA.push("~="); + } + + // Webkit/Opera - :checked should return selected option elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + // IE8 throws error here and will not see later tests + if ( !el.querySelectorAll(":checked").length ) { + rbuggyQSA.push(":checked"); + } + + // Support: Safari 8+, iOS 8+ + // https://bugs.webkit.org/show_bug.cgi?id=136851 + // In-page `selector#id sibling-combinator selector` fails + if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { + rbuggyQSA.push(".#.+[+~]"); + } + }); + + assert(function( el ) { + el.innerHTML = "" + + ""; + + // Support: Windows 8 Native Apps + // The type and name attributes are restricted during .innerHTML assignment + var input = document.createElement("input"); + input.setAttribute( "type", "hidden" ); + el.appendChild( input ).setAttribute( "name", "D" ); + + // Support: IE8 + // Enforce case-sensitivity of name attribute + if ( el.querySelectorAll("[name=d]").length ) { + rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); + } + + // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) + // IE8 throws error here and will not see later tests + if ( el.querySelectorAll(":enabled").length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Support: IE9-11+ + // IE's :disabled selector does not pick up the children of disabled fieldsets + docElem.appendChild( el ).disabled = true; + if ( el.querySelectorAll(":disabled").length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Opera 10-11 does not throw on post-comma invalid pseudos + el.querySelectorAll("*,:x"); + rbuggyQSA.push(",.*:"); + }); + } + + if ( (support.matchesSelector = rnative.test( (matches = docElem.matches || + docElem.webkitMatchesSelector || + docElem.mozMatchesSelector || + docElem.oMatchesSelector || + docElem.msMatchesSelector) )) ) { + + assert(function( el ) { + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9) + support.disconnectedMatch = matches.call( el, "*" ); + + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( el, "[s!='']:x" ); + rbuggyMatches.push( "!=", pseudos ); + }); + } + + rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") ); + rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") ); + + /* Contains + ---------------------------------------------------------------------- */ + hasCompare = rnative.test( docElem.compareDocumentPosition ); + + // Element contains another + // Purposefully self-exclusive + // As in, an element does not contain itself + contains = hasCompare || rnative.test( docElem.contains ) ? + function( a, b ) { + var adown = a.nodeType === 9 ? a.documentElement : a, + bup = b && b.parentNode; + return a === bup || !!( bup && bup.nodeType === 1 && ( + adown.contains ? + adown.contains( bup ) : + a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 + )); + } : + function( a, b ) { + if ( b ) { + while ( (b = b.parentNode) ) { + if ( b === a ) { + return true; + } + } + } + return false; + }; + + /* Sorting + ---------------------------------------------------------------------- */ + + // Document order sorting + sortOrder = hasCompare ? + function( a, b ) { + + // Flag for duplicate removal + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + // Sort on method existence if only one input has compareDocumentPosition + var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; + if ( compare ) { + return compare; + } + + // Calculate position if both inputs belong to the same document + compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ? + a.compareDocumentPosition( b ) : + + // Otherwise we know they are disconnected + 1; + + // Disconnected nodes + if ( compare & 1 || + (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) { + + // Choose the first element that is related to our preferred document + if ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) { + return -1; + } + if ( b === document || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) { + return 1; + } + + // Maintain original order + return sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + } + + return compare & 4 ? -1 : 1; + } : + function( a, b ) { + // Exit early if the nodes are identical + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + var cur, + i = 0, + aup = a.parentNode, + bup = b.parentNode, + ap = [ a ], + bp = [ b ]; + + // Parentless nodes are either documents or disconnected + if ( !aup || !bup ) { + return a === document ? -1 : + b === document ? 1 : + aup ? -1 : + bup ? 1 : + sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + + // If the nodes are siblings, we can do a quick check + } else if ( aup === bup ) { + return siblingCheck( a, b ); + } + + // Otherwise we need full lists of their ancestors for comparison + cur = a; + while ( (cur = cur.parentNode) ) { + ap.unshift( cur ); + } + cur = b; + while ( (cur = cur.parentNode) ) { + bp.unshift( cur ); + } + + // Walk down the tree looking for a discrepancy + while ( ap[i] === bp[i] ) { + i++; + } + + return i ? + // Do a sibling check if the nodes have a common ancestor + siblingCheck( ap[i], bp[i] ) : + + // Otherwise nodes in our document sort first + ap[i] === preferredDoc ? -1 : + bp[i] === preferredDoc ? 1 : + 0; + }; + + return document; +}; + +Sizzle.matches = function( expr, elements ) { + return Sizzle( expr, null, null, elements ); +}; + +Sizzle.matchesSelector = function( elem, expr ) { + // Set document vars if needed + if ( ( elem.ownerDocument || elem ) !== document ) { + setDocument( elem ); + } + + // Make sure that attribute selectors are quoted + expr = expr.replace( rattributeQuotes, "='$1']" ); + + if ( support.matchesSelector && documentIsHTML && + !compilerCache[ expr + " " ] && + ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && + ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { + + try { + var ret = matches.call( elem, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || support.disconnectedMatch || + // As well, disconnected nodes are said to be in a document + // fragment in IE 9 + elem.document && elem.document.nodeType !== 11 ) { + return ret; + } + } catch (e) {} + } + + return Sizzle( expr, document, null, [ elem ] ).length > 0; +}; + +Sizzle.contains = function( context, elem ) { + // Set document vars if needed + if ( ( context.ownerDocument || context ) !== document ) { + setDocument( context ); + } + return contains( context, elem ); +}; + +Sizzle.attr = function( elem, name ) { + // Set document vars if needed + if ( ( elem.ownerDocument || elem ) !== document ) { + setDocument( elem ); + } + + var fn = Expr.attrHandle[ name.toLowerCase() ], + // Don't get fooled by Object.prototype properties (jQuery #13807) + val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? + fn( elem, name, !documentIsHTML ) : + undefined; + + return val !== undefined ? + val : + support.attributes || !documentIsHTML ? + elem.getAttribute( name ) : + (val = elem.getAttributeNode(name)) && val.specified ? + val.value : + null; +}; + +Sizzle.escape = function( sel ) { + return (sel + "").replace( rcssescape, fcssescape ); +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +/** + * Document sorting and removing duplicates + * @param {ArrayLike} results + */ +Sizzle.uniqueSort = function( results ) { + var elem, + duplicates = [], + j = 0, + i = 0; + + // Unless we *know* we can detect duplicates, assume their presence + hasDuplicate = !support.detectDuplicates; + sortInput = !support.sortStable && results.slice( 0 ); + results.sort( sortOrder ); + + if ( hasDuplicate ) { + while ( (elem = results[i++]) ) { + if ( elem === results[ i ] ) { + j = duplicates.push( i ); + } + } + while ( j-- ) { + results.splice( duplicates[ j ], 1 ); + } + } + + // Clear input after sorting to release objects + // See https://github.com/jquery/sizzle/pull/225 + sortInput = null; + + return results; +}; + +/** + * Utility function for retrieving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +getText = Sizzle.getText = function( elem ) { + var node, + ret = "", + i = 0, + nodeType = elem.nodeType; + + if ( !nodeType ) { + // If no nodeType, this is expected to be an array + while ( (node = elem[i++]) ) { + // Do not traverse comment nodes + ret += getText( node ); + } + } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { + // Use textContent for elements + // innerText usage removed for consistency of new lines (jQuery #11153) + if ( typeof elem.textContent === "string" ) { + return elem.textContent; + } else { + // Traverse its children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + // Do not include comment or processing instruction nodes + + return ret; +}; + +Expr = Sizzle.selectors = { + + // Can be adjusted by the user + cacheLength: 50, + + createPseudo: markFunction, + + match: matchExpr, + + attrHandle: {}, + + find: {}, + + relative: { + ">": { dir: "parentNode", first: true }, + " ": { dir: "parentNode" }, + "+": { dir: "previousSibling", first: true }, + "~": { dir: "previousSibling" } + }, + + preFilter: { + "ATTR": function( match ) { + match[1] = match[1].replace( runescape, funescape ); + + // Move the given value to match[3] whether quoted or unquoted + match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape ); + + if ( match[2] === "~=" ) { + match[3] = " " + match[3] + " "; + } + + return match.slice( 0, 4 ); + }, + + "CHILD": function( match ) { + /* matches from matchExpr["CHILD"] + 1 type (only|nth|...) + 2 what (child|of-type) + 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) + 4 xn-component of xn+y argument ([+-]?\d*n|) + 5 sign of xn-component + 6 x of xn-component + 7 sign of y-component + 8 y of y-component + */ + match[1] = match[1].toLowerCase(); + + if ( match[1].slice( 0, 3 ) === "nth" ) { + // nth-* requires argument + if ( !match[3] ) { + Sizzle.error( match[0] ); + } + + // numeric x and y parameters for Expr.filter.CHILD + // remember that false/true cast respectively to 0/1 + match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) ); + match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" ); + + // other types prohibit arguments + } else if ( match[3] ) { + Sizzle.error( match[0] ); + } + + return match; + }, + + "PSEUDO": function( match ) { + var excess, + unquoted = !match[6] && match[2]; + + if ( matchExpr["CHILD"].test( match[0] ) ) { + return null; + } + + // Accept quoted arguments as-is + if ( match[3] ) { + match[2] = match[4] || match[5] || ""; + + // Strip excess characters from unquoted arguments + } else if ( unquoted && rpseudo.test( unquoted ) && + // Get excess from tokenize (recursively) + (excess = tokenize( unquoted, true )) && + // advance to the next closing parenthesis + (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { + + // excess is a negative index + match[0] = match[0].slice( 0, excess ); + match[2] = unquoted.slice( 0, excess ); + } + + // Return only captures needed by the pseudo filter method (type and argument) + return match.slice( 0, 3 ); + } + }, + + filter: { + + "TAG": function( nodeNameSelector ) { + var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); + return nodeNameSelector === "*" ? + function() { return true; } : + function( elem ) { + return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; + }; + }, + + "CLASS": function( className ) { + var pattern = classCache[ className + " " ]; + + return pattern || + (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && + classCache( className, function( elem ) { + return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || "" ); + }); + }, + + "ATTR": function( name, operator, check ) { + return function( elem ) { + var result = Sizzle.attr( elem, name ); + + if ( result == null ) { + return operator === "!="; + } + if ( !operator ) { + return true; + } + + result += ""; + + return operator === "=" ? result === check : + operator === "!=" ? result !== check : + operator === "^=" ? check && result.indexOf( check ) === 0 : + operator === "*=" ? check && result.indexOf( check ) > -1 : + operator === "$=" ? check && result.slice( -check.length ) === check : + operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : + operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : + false; + }; + }, + + "CHILD": function( type, what, argument, first, last ) { + var simple = type.slice( 0, 3 ) !== "nth", + forward = type.slice( -4 ) !== "last", + ofType = what === "of-type"; + + return first === 1 && last === 0 ? + + // Shortcut for :nth-*(n) + function( elem ) { + return !!elem.parentNode; + } : + + function( elem, context, xml ) { + var cache, uniqueCache, outerCache, node, nodeIndex, start, + dir = simple !== forward ? "nextSibling" : "previousSibling", + parent = elem.parentNode, + name = ofType && elem.nodeName.toLowerCase(), + useCache = !xml && !ofType, + diff = false; + + if ( parent ) { + + // :(first|last|only)-(child|of-type) + if ( simple ) { + while ( dir ) { + node = elem; + while ( (node = node[ dir ]) ) { + if ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) { + + return false; + } + } + // Reverse direction for :only-* (if we haven't yet done so) + start = dir = type === "only" && !start && "nextSibling"; + } + return true; + } + + start = [ forward ? parent.firstChild : parent.lastChild ]; + + // non-xml :nth-child(...) stores cache data on `parent` + if ( forward && useCache ) { + + // Seek `elem` from a previously-cached index + + // ...in a gzip-friendly way + node = parent; + outerCache = node[ expando ] || (node[ expando ] = {}); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + (outerCache[ node.uniqueID ] = {}); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex && cache[ 2 ]; + node = nodeIndex && parent.childNodes[ nodeIndex ]; + + while ( (node = ++nodeIndex && node && node[ dir ] || + + // Fallback to seeking `elem` from the start + (diff = nodeIndex = 0) || start.pop()) ) { + + // When found, cache indexes on `parent` and break + if ( node.nodeType === 1 && ++diff && node === elem ) { + uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; + break; + } + } + + } else { + // Use previously-cached element index if available + if ( useCache ) { + // ...in a gzip-friendly way + node = elem; + outerCache = node[ expando ] || (node[ expando ] = {}); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + (outerCache[ node.uniqueID ] = {}); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex; + } + + // xml :nth-child(...) + // or :nth-last-child(...) or :nth(-last)?-of-type(...) + if ( diff === false ) { + // Use the same loop as above to seek `elem` from the start + while ( (node = ++nodeIndex && node && node[ dir ] || + (diff = nodeIndex = 0) || start.pop()) ) { + + if ( ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) && + ++diff ) { + + // Cache the index of each encountered element + if ( useCache ) { + outerCache = node[ expando ] || (node[ expando ] = {}); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + (outerCache[ node.uniqueID ] = {}); + + uniqueCache[ type ] = [ dirruns, diff ]; + } + + if ( node === elem ) { + break; + } + } + } + } + } + + // Incorporate the offset, then check against cycle size + diff -= last; + return diff === first || ( diff % first === 0 && diff / first >= 0 ); + } + }; + }, + + "PSEUDO": function( pseudo, argument ) { + // pseudo-class names are case-insensitive + // http://www.w3.org/TR/selectors/#pseudo-classes + // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters + // Remember that setFilters inherits from pseudos + var args, + fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || + Sizzle.error( "unsupported pseudo: " + pseudo ); + + // The user may use createPseudo to indicate that + // arguments are needed to create the filter function + // just as Sizzle does + if ( fn[ expando ] ) { + return fn( argument ); + } + + // But maintain support for old signatures + if ( fn.length > 1 ) { + args = [ pseudo, pseudo, "", argument ]; + return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? + markFunction(function( seed, matches ) { + var idx, + matched = fn( seed, argument ), + i = matched.length; + while ( i-- ) { + idx = indexOf( seed, matched[i] ); + seed[ idx ] = !( matches[ idx ] = matched[i] ); + } + }) : + function( elem ) { + return fn( elem, 0, args ); + }; + } + + return fn; + } + }, + + pseudos: { + // Potentially complex pseudos + "not": markFunction(function( selector ) { + // Trim the selector passed to compile + // to avoid treating leading and trailing + // spaces as combinators + var input = [], + results = [], + matcher = compile( selector.replace( rtrim, "$1" ) ); + + return matcher[ expando ] ? + markFunction(function( seed, matches, context, xml ) { + var elem, + unmatched = matcher( seed, null, xml, [] ), + i = seed.length; + + // Match elements unmatched by `matcher` + while ( i-- ) { + if ( (elem = unmatched[i]) ) { + seed[i] = !(matches[i] = elem); + } + } + }) : + function( elem, context, xml ) { + input[0] = elem; + matcher( input, null, xml, results ); + // Don't keep the element (issue #299) + input[0] = null; + return !results.pop(); + }; + }), + + "has": markFunction(function( selector ) { + return function( elem ) { + return Sizzle( selector, elem ).length > 0; + }; + }), + + "contains": markFunction(function( text ) { + text = text.replace( runescape, funescape ); + return function( elem ) { + return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1; + }; + }), + + // "Whether an element is represented by a :lang() selector + // is based solely on the element's language value + // being equal to the identifier C, + // or beginning with the identifier C immediately followed by "-". + // The matching of C against the element's language value is performed case-insensitively. + // The identifier C does not have to be a valid language name." + // http://www.w3.org/TR/selectors/#lang-pseudo + "lang": markFunction( function( lang ) { + // lang value must be a valid identifier + if ( !ridentifier.test(lang || "") ) { + Sizzle.error( "unsupported lang: " + lang ); + } + lang = lang.replace( runescape, funescape ).toLowerCase(); + return function( elem ) { + var elemLang; + do { + if ( (elemLang = documentIsHTML ? + elem.lang : + elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) { + + elemLang = elemLang.toLowerCase(); + return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; + } + } while ( (elem = elem.parentNode) && elem.nodeType === 1 ); + return false; + }; + }), + + // Miscellaneous + "target": function( elem ) { + var hash = window.location && window.location.hash; + return hash && hash.slice( 1 ) === elem.id; + }, + + "root": function( elem ) { + return elem === docElem; + }, + + "focus": function( elem ) { + return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); + }, + + // Boolean properties + "enabled": createDisabledPseudo( false ), + "disabled": createDisabledPseudo( true ), + + "checked": function( elem ) { + // In CSS3, :checked should return both checked and selected elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + var nodeName = elem.nodeName.toLowerCase(); + return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); + }, + + "selected": function( elem ) { + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + // Contents + "empty": function( elem ) { + // http://www.w3.org/TR/selectors/#empty-pseudo + // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), + // but not by others (comment: 8; processing instruction: 7; etc.) + // nodeType < 6 works because attributes (2) do not appear as children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + if ( elem.nodeType < 6 ) { + return false; + } + } + return true; + }, + + "parent": function( elem ) { + return !Expr.pseudos["empty"]( elem ); + }, + + // Element/input types + "header": function( elem ) { + return rheader.test( elem.nodeName ); + }, + + "input": function( elem ) { + return rinputs.test( elem.nodeName ); + }, + + "button": function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === "button" || name === "button"; + }, + + "text": function( elem ) { + var attr; + return elem.nodeName.toLowerCase() === "input" && + elem.type === "text" && + + // Support: IE<8 + // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" + ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" ); + }, + + // Position-in-collection + "first": createPositionalPseudo(function() { + return [ 0 ]; + }), + + "last": createPositionalPseudo(function( matchIndexes, length ) { + return [ length - 1 ]; + }), + + "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { + return [ argument < 0 ? argument + length : argument ]; + }), + + "even": createPositionalPseudo(function( matchIndexes, length ) { + var i = 0; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "odd": createPositionalPseudo(function( matchIndexes, length ) { + var i = 1; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; --i >= 0; ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; ++i < length; ) { + matchIndexes.push( i ); + } + return matchIndexes; + }) + } +}; + +Expr.pseudos["nth"] = Expr.pseudos["eq"]; + +// Add button/input type pseudos +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { + Expr.pseudos[ i ] = createInputPseudo( i ); +} +for ( i in { submit: true, reset: true } ) { + Expr.pseudos[ i ] = createButtonPseudo( i ); +} + +// Easy API for creating new setFilters +function setFilters() {} +setFilters.prototype = Expr.filters = Expr.pseudos; +Expr.setFilters = new setFilters(); + +tokenize = Sizzle.tokenize = function( selector, parseOnly ) { + var matched, match, tokens, type, + soFar, groups, preFilters, + cached = tokenCache[ selector + " " ]; + + if ( cached ) { + return parseOnly ? 0 : cached.slice( 0 ); + } + + soFar = selector; + groups = []; + preFilters = Expr.preFilter; + + while ( soFar ) { + + // Comma and first run + if ( !matched || (match = rcomma.exec( soFar )) ) { + if ( match ) { + // Don't consume trailing commas as valid + soFar = soFar.slice( match[0].length ) || soFar; + } + groups.push( (tokens = []) ); + } + + matched = false; + + // Combinators + if ( (match = rcombinators.exec( soFar )) ) { + matched = match.shift(); + tokens.push({ + value: matched, + // Cast descendant combinators to space + type: match[0].replace( rtrim, " " ) + }); + soFar = soFar.slice( matched.length ); + } + + // Filters + for ( type in Expr.filter ) { + if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || + (match = preFilters[ type ]( match ))) ) { + matched = match.shift(); + tokens.push({ + value: matched, + type: type, + matches: match + }); + soFar = soFar.slice( matched.length ); + } + } + + if ( !matched ) { + break; + } + } + + // Return the length of the invalid excess + // if we're just parsing + // Otherwise, throw an error or return tokens + return parseOnly ? + soFar.length : + soFar ? + Sizzle.error( selector ) : + // Cache the tokens + tokenCache( selector, groups ).slice( 0 ); +}; + +function toSelector( tokens ) { + var i = 0, + len = tokens.length, + selector = ""; + for ( ; i < len; i++ ) { + selector += tokens[i].value; + } + return selector; +} + +function addCombinator( matcher, combinator, base ) { + var dir = combinator.dir, + skip = combinator.next, + key = skip || dir, + checkNonElements = base && key === "parentNode", + doneName = done++; + + return combinator.first ? + // Check against closest ancestor/preceding element + function( elem, context, xml ) { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + return matcher( elem, context, xml ); + } + } + return false; + } : + + // Check against all ancestor/preceding elements + function( elem, context, xml ) { + var oldCache, uniqueCache, outerCache, + newCache = [ dirruns, doneName ]; + + // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching + if ( xml ) { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + if ( matcher( elem, context, xml ) ) { + return true; + } + } + } + } else { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + outerCache = elem[ expando ] || (elem[ expando ] = {}); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {}); + + if ( skip && skip === elem.nodeName.toLowerCase() ) { + elem = elem[ dir ] || elem; + } else if ( (oldCache = uniqueCache[ key ]) && + oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { + + // Assign to newCache so results back-propagate to previous elements + return (newCache[ 2 ] = oldCache[ 2 ]); + } else { + // Reuse newcache so results back-propagate to previous elements + uniqueCache[ key ] = newCache; + + // A match means we're done; a fail means we have to keep checking + if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) { + return true; + } + } + } + } + } + return false; + }; +} + +function elementMatcher( matchers ) { + return matchers.length > 1 ? + function( elem, context, xml ) { + var i = matchers.length; + while ( i-- ) { + if ( !matchers[i]( elem, context, xml ) ) { + return false; + } + } + return true; + } : + matchers[0]; +} + +function multipleContexts( selector, contexts, results ) { + var i = 0, + len = contexts.length; + for ( ; i < len; i++ ) { + Sizzle( selector, contexts[i], results ); + } + return results; +} + +function condense( unmatched, map, filter, context, xml ) { + var elem, + newUnmatched = [], + i = 0, + len = unmatched.length, + mapped = map != null; + + for ( ; i < len; i++ ) { + if ( (elem = unmatched[i]) ) { + if ( !filter || filter( elem, context, xml ) ) { + newUnmatched.push( elem ); + if ( mapped ) { + map.push( i ); + } + } + } + } + + return newUnmatched; +} + +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { + if ( postFilter && !postFilter[ expando ] ) { + postFilter = setMatcher( postFilter ); + } + if ( postFinder && !postFinder[ expando ] ) { + postFinder = setMatcher( postFinder, postSelector ); + } + return markFunction(function( seed, results, context, xml ) { + var temp, i, elem, + preMap = [], + postMap = [], + preexisting = results.length, + + // Get initial elements from seed or context + elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), + + // Prefilter to get matcher input, preserving a map for seed-results synchronization + matcherIn = preFilter && ( seed || !selector ) ? + condense( elems, preMap, preFilter, context, xml ) : + elems, + + matcherOut = matcher ? + // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, + postFinder || ( seed ? preFilter : preexisting || postFilter ) ? + + // ...intermediate processing is necessary + [] : + + // ...otherwise use results directly + results : + matcherIn; + + // Find primary matches + if ( matcher ) { + matcher( matcherIn, matcherOut, context, xml ); + } + + // Apply postFilter + if ( postFilter ) { + temp = condense( matcherOut, postMap ); + postFilter( temp, [], context, xml ); + + // Un-match failing elements by moving them back to matcherIn + i = temp.length; + while ( i-- ) { + if ( (elem = temp[i]) ) { + matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); + } + } + } + + if ( seed ) { + if ( postFinder || preFilter ) { + if ( postFinder ) { + // Get the final matcherOut by condensing this intermediate into postFinder contexts + temp = []; + i = matcherOut.length; + while ( i-- ) { + if ( (elem = matcherOut[i]) ) { + // Restore matcherIn since elem is not yet a final match + temp.push( (matcherIn[i] = elem) ); + } + } + postFinder( null, (matcherOut = []), temp, xml ); + } + + // Move matched elements from seed to results to keep them synchronized + i = matcherOut.length; + while ( i-- ) { + if ( (elem = matcherOut[i]) && + (temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) { + + seed[temp] = !(results[temp] = elem); + } + } + } + + // Add elements to results, through postFinder if defined + } else { + matcherOut = condense( + matcherOut === results ? + matcherOut.splice( preexisting, matcherOut.length ) : + matcherOut + ); + if ( postFinder ) { + postFinder( null, results, matcherOut, xml ); + } else { + push.apply( results, matcherOut ); + } + } + }); +} + +function matcherFromTokens( tokens ) { + var checkContext, matcher, j, + len = tokens.length, + leadingRelative = Expr.relative[ tokens[0].type ], + implicitRelative = leadingRelative || Expr.relative[" "], + i = leadingRelative ? 1 : 0, + + // The foundational matcher ensures that elements are reachable from top-level context(s) + matchContext = addCombinator( function( elem ) { + return elem === checkContext; + }, implicitRelative, true ), + matchAnyContext = addCombinator( function( elem ) { + return indexOf( checkContext, elem ) > -1; + }, implicitRelative, true ), + matchers = [ function( elem, context, xml ) { + var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( + (checkContext = context).nodeType ? + matchContext( elem, context, xml ) : + matchAnyContext( elem, context, xml ) ); + // Avoid hanging onto element (issue #299) + checkContext = null; + return ret; + } ]; + + for ( ; i < len; i++ ) { + if ( (matcher = Expr.relative[ tokens[i].type ]) ) { + matchers = [ addCombinator(elementMatcher( matchers ), matcher) ]; + } else { + matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); + + // Return special upon seeing a positional matcher + if ( matcher[ expando ] ) { + // Find the next relative operator (if any) for proper handling + j = ++i; + for ( ; j < len; j++ ) { + if ( Expr.relative[ tokens[j].type ] ) { + break; + } + } + return setMatcher( + i > 1 && elementMatcher( matchers ), + i > 1 && toSelector( + // If the preceding token was a descendant combinator, insert an implicit any-element `*` + tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" }) + ).replace( rtrim, "$1" ), + matcher, + i < j && matcherFromTokens( tokens.slice( i, j ) ), + j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), + j < len && toSelector( tokens ) + ); + } + matchers.push( matcher ); + } + } + + return elementMatcher( matchers ); +} + +function matcherFromGroupMatchers( elementMatchers, setMatchers ) { + var bySet = setMatchers.length > 0, + byElement = elementMatchers.length > 0, + superMatcher = function( seed, context, xml, results, outermost ) { + var elem, j, matcher, + matchedCount = 0, + i = "0", + unmatched = seed && [], + setMatched = [], + contextBackup = outermostContext, + // We must always have either seed elements or outermost context + elems = seed || byElement && Expr.find["TAG"]( "*", outermost ), + // Use integer dirruns iff this is the outermost matcher + dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1), + len = elems.length; + + if ( outermost ) { + outermostContext = context === document || context || outermost; + } + + // Add elements passing elementMatchers directly to results + // Support: IE<9, Safari + // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id + for ( ; i !== len && (elem = elems[i]) != null; i++ ) { + if ( byElement && elem ) { + j = 0; + if ( !context && elem.ownerDocument !== document ) { + setDocument( elem ); + xml = !documentIsHTML; + } + while ( (matcher = elementMatchers[j++]) ) { + if ( matcher( elem, context || document, xml) ) { + results.push( elem ); + break; + } + } + if ( outermost ) { + dirruns = dirrunsUnique; + } + } + + // Track unmatched elements for set filters + if ( bySet ) { + // They will have gone through all possible matchers + if ( (elem = !matcher && elem) ) { + matchedCount--; + } + + // Lengthen the array for every element, matched or not + if ( seed ) { + unmatched.push( elem ); + } + } + } + + // `i` is now the count of elements visited above, and adding it to `matchedCount` + // makes the latter nonnegative. + matchedCount += i; + + // Apply set filters to unmatched elements + // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` + // equals `i`), unless we didn't visit _any_ elements in the above loop because we have + // no element matchers and no seed. + // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that + // case, which will result in a "00" `matchedCount` that differs from `i` but is also + // numerically zero. + if ( bySet && i !== matchedCount ) { + j = 0; + while ( (matcher = setMatchers[j++]) ) { + matcher( unmatched, setMatched, context, xml ); + } + + if ( seed ) { + // Reintegrate element matches to eliminate the need for sorting + if ( matchedCount > 0 ) { + while ( i-- ) { + if ( !(unmatched[i] || setMatched[i]) ) { + setMatched[i] = pop.call( results ); + } + } + } + + // Discard index placeholder values to get only actual matches + setMatched = condense( setMatched ); + } + + // Add matches to results + push.apply( results, setMatched ); + + // Seedless set matches succeeding multiple successful matchers stipulate sorting + if ( outermost && !seed && setMatched.length > 0 && + ( matchedCount + setMatchers.length ) > 1 ) { + + Sizzle.uniqueSort( results ); + } + } + + // Override manipulation of globals by nested matchers + if ( outermost ) { + dirruns = dirrunsUnique; + outermostContext = contextBackup; + } + + return unmatched; + }; + + return bySet ? + markFunction( superMatcher ) : + superMatcher; +} + +compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { + var i, + setMatchers = [], + elementMatchers = [], + cached = compilerCache[ selector + " " ]; + + if ( !cached ) { + // Generate a function of recursive functions that can be used to check each element + if ( !match ) { + match = tokenize( selector ); + } + i = match.length; + while ( i-- ) { + cached = matcherFromTokens( match[i] ); + if ( cached[ expando ] ) { + setMatchers.push( cached ); + } else { + elementMatchers.push( cached ); + } + } + + // Cache the compiled function + cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); + + // Save selector and tokenization + cached.selector = selector; + } + return cached; +}; + +/** + * A low-level selection function that works with Sizzle's compiled + * selector functions + * @param {String|Function} selector A selector or a pre-compiled + * selector function built with Sizzle.compile + * @param {Element} context + * @param {Array} [results] + * @param {Array} [seed] A set of elements to match against + */ +select = Sizzle.select = function( selector, context, results, seed ) { + var i, tokens, token, type, find, + compiled = typeof selector === "function" && selector, + match = !seed && tokenize( (selector = compiled.selector || selector) ); + + results = results || []; + + // Try to minimize operations if there is only one selector in the list and no seed + // (the latter of which guarantees us context) + if ( match.length === 1 ) { + + // Reduce context if the leading compound selector is an ID + tokens = match[0] = match[0].slice( 0 ); + if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && + context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[1].type ] ) { + + context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0]; + if ( !context ) { + return results; + + // Precompiled matchers will still verify ancestry, so step up a level + } else if ( compiled ) { + context = context.parentNode; + } + + selector = selector.slice( tokens.shift().value.length ); + } + + // Fetch a seed set for right-to-left matching + i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length; + while ( i-- ) { + token = tokens[i]; + + // Abort if we hit a combinator + if ( Expr.relative[ (type = token.type) ] ) { + break; + } + if ( (find = Expr.find[ type ]) ) { + // Search, expanding context for leading sibling combinators + if ( (seed = find( + token.matches[0].replace( runescape, funescape ), + rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context + )) ) { + + // If seed is empty or no tokens remain, we can return early + tokens.splice( i, 1 ); + selector = seed.length && toSelector( tokens ); + if ( !selector ) { + push.apply( results, seed ); + return results; + } + + break; + } + } + } + } + + // Compile and execute a filtering function if one is not provided + // Provide `match` to avoid retokenization if we modified the selector above + ( compiled || compile( selector, match ) )( + seed, + context, + !documentIsHTML, + results, + !context || rsibling.test( selector ) && testContext( context.parentNode ) || context + ); + return results; +}; + +// One-time assignments + +// Sort stability +support.sortStable = expando.split("").sort( sortOrder ).join("") === expando; + +// Support: Chrome 14-35+ +// Always assume duplicates if they aren't passed to the comparison function +support.detectDuplicates = !!hasDuplicate; + +// Initialize against the default document +setDocument(); + +// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) +// Detached nodes confoundingly follow *each other* +support.sortDetached = assert(function( el ) { + // Should return 1, but returns 4 (following) + return el.compareDocumentPosition( document.createElement("fieldset") ) & 1; +}); + +// Support: IE<8 +// Prevent attribute/property "interpolation" +// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx +if ( !assert(function( el ) { + el.innerHTML = ""; + return el.firstChild.getAttribute("href") === "#" ; +}) ) { + addHandle( "type|href|height|width", function( elem, name, isXML ) { + if ( !isXML ) { + return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); + } + }); +} + +// Support: IE<9 +// Use defaultValue in place of getAttribute("value") +if ( !support.attributes || !assert(function( el ) { + el.innerHTML = ""; + el.firstChild.setAttribute( "value", "" ); + return el.firstChild.getAttribute( "value" ) === ""; +}) ) { + addHandle( "value", function( elem, name, isXML ) { + if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { + return elem.defaultValue; + } + }); +} + +// Support: IE<9 +// Use getAttributeNode to fetch booleans when getAttribute lies +if ( !assert(function( el ) { + return el.getAttribute("disabled") == null; +}) ) { + addHandle( booleans, function( elem, name, isXML ) { + var val; + if ( !isXML ) { + return elem[ name ] === true ? name.toLowerCase() : + (val = elem.getAttributeNode( name )) && val.specified ? + val.value : + null; + } + }); +} + +return Sizzle; + +})( window ); + + + +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; + +// Deprecated +jQuery.expr[ ":" ] = jQuery.expr.pseudos; +jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; +jQuery.escapeSelector = Sizzle.escape; + + + + +var dir = function( elem, dir, until ) { + var matched = [], + truncate = until !== undefined; + + while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { + if ( elem.nodeType === 1 ) { + if ( truncate && jQuery( elem ).is( until ) ) { + break; + } + matched.push( elem ); + } + } + return matched; +}; + + +var siblings = function( n, elem ) { + var matched = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + matched.push( n ); + } + } + + return matched; +}; + + +var rneedsContext = jQuery.expr.match.needsContext; + + + +function nodeName( elem, name ) { + + return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); + +}; +var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); + + + +var risSimple = /^.[^:#\[\.,]*$/; + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, not ) { + if ( jQuery.isFunction( qualifier ) ) { + return jQuery.grep( elements, function( elem, i ) { + return !!qualifier.call( elem, i, elem ) !== not; + } ); + } + + // Single element + if ( qualifier.nodeType ) { + return jQuery.grep( elements, function( elem ) { + return ( elem === qualifier ) !== not; + } ); + } + + // Arraylike of elements (jQuery, arguments, Array) + if ( typeof qualifier !== "string" ) { + return jQuery.grep( elements, function( elem ) { + return ( indexOf.call( qualifier, elem ) > -1 ) !== not; + } ); + } + + // Simple selector that can be filtered directly, removing non-Elements + if ( risSimple.test( qualifier ) ) { + return jQuery.filter( qualifier, elements, not ); + } + + // Complex selector, compare the two sets, removing non-Elements + qualifier = jQuery.filter( qualifier, elements ); + return jQuery.grep( elements, function( elem ) { + return ( indexOf.call( qualifier, elem ) > -1 ) !== not && elem.nodeType === 1; + } ); +} + +jQuery.filter = function( expr, elems, not ) { + var elem = elems[ 0 ]; + + if ( not ) { + expr = ":not(" + expr + ")"; + } + + if ( elems.length === 1 && elem.nodeType === 1 ) { + return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; + } + + return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { + return elem.nodeType === 1; + } ) ); +}; + +jQuery.fn.extend( { + find: function( selector ) { + var i, ret, + len = this.length, + self = this; + + if ( typeof selector !== "string" ) { + return this.pushStack( jQuery( selector ).filter( function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + } ) ); + } + + ret = this.pushStack( [] ); + + for ( i = 0; i < len; i++ ) { + jQuery.find( selector, self[ i ], ret ); + } + + return len > 1 ? jQuery.uniqueSort( ret ) : ret; + }, + filter: function( selector ) { + return this.pushStack( winnow( this, selector || [], false ) ); + }, + not: function( selector ) { + return this.pushStack( winnow( this, selector || [], true ) ); + }, + is: function( selector ) { + return !!winnow( + this, + + // If this is a positional/relative selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + typeof selector === "string" && rneedsContext.test( selector ) ? + jQuery( selector ) : + selector || [], + false + ).length; + } +} ); + + +// Initialize a jQuery object + + +// A central reference to the root jQuery(document) +var rootjQuery, + + // A simple way to check for HTML strings + // Prioritize #id over to avoid XSS via location.hash (#9521) + // Strict HTML recognition (#11290: must start with <) + // Shortcut simple #id case for speed + rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, + + init = jQuery.fn.init = function( selector, context, root ) { + var match, elem; + + // HANDLE: $(""), $(null), $(undefined), $(false) + if ( !selector ) { + return this; + } + + // Method init() accepts an alternate rootjQuery + // so migrate can support jQuery.sub (gh-2101) + root = root || rootjQuery; + + // Handle HTML strings + if ( typeof selector === "string" ) { + if ( selector[ 0 ] === "<" && + selector[ selector.length - 1 ] === ">" && + selector.length >= 3 ) { + + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = rquickExpr.exec( selector ); + } + + // Match html or make sure no context is specified for #id + if ( match && ( match[ 1 ] || !context ) ) { + + // HANDLE: $(html) -> $(array) + if ( match[ 1 ] ) { + context = context instanceof jQuery ? context[ 0 ] : context; + + // Option to run scripts is true for back-compat + // Intentionally let the error be thrown if parseHTML is not present + jQuery.merge( this, jQuery.parseHTML( + match[ 1 ], + context && context.nodeType ? context.ownerDocument || context : document, + true + ) ); + + // HANDLE: $(html, props) + if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { + for ( match in context ) { + + // Properties of context are called as methods if possible + if ( jQuery.isFunction( this[ match ] ) ) { + this[ match ]( context[ match ] ); + + // ...and otherwise set as attributes + } else { + this.attr( match, context[ match ] ); + } + } + } + + return this; + + // HANDLE: $(#id) + } else { + elem = document.getElementById( match[ 2 ] ); + + if ( elem ) { + + // Inject the element directly into the jQuery object + this[ 0 ] = elem; + this.length = 1; + } + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || root ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(DOMElement) + } else if ( selector.nodeType ) { + this[ 0 ] = selector; + this.length = 1; + return this; + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( jQuery.isFunction( selector ) ) { + return root.ready !== undefined ? + root.ready( selector ) : + + // Execute immediately if ready is not present + selector( jQuery ); + } + + return jQuery.makeArray( selector, this ); + }; + +// Give the init function the jQuery prototype for later instantiation +init.prototype = jQuery.fn; + +// Initialize central reference +rootjQuery = jQuery( document ); + + +var rparentsprev = /^(?:parents|prev(?:Until|All))/, + + // Methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.fn.extend( { + has: function( target ) { + var targets = jQuery( target, this ), + l = targets.length; + + return this.filter( function() { + var i = 0; + for ( ; i < l; i++ ) { + if ( jQuery.contains( this, targets[ i ] ) ) { + return true; + } + } + } ); + }, + + closest: function( selectors, context ) { + var cur, + i = 0, + l = this.length, + matched = [], + targets = typeof selectors !== "string" && jQuery( selectors ); + + // Positional selectors never match, since there's no _selection_ context + if ( !rneedsContext.test( selectors ) ) { + for ( ; i < l; i++ ) { + for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { + + // Always skip document fragments + if ( cur.nodeType < 11 && ( targets ? + targets.index( cur ) > -1 : + + // Don't pass non-elements to Sizzle + cur.nodeType === 1 && + jQuery.find.matchesSelector( cur, selectors ) ) ) { + + matched.push( cur ); + break; + } + } + } + } + + return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); + }, + + // Determine the position of an element within the set + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; + } + + // Index in selector + if ( typeof elem === "string" ) { + return indexOf.call( jQuery( elem ), this[ 0 ] ); + } + + // Locate the position of the desired element + return indexOf.call( this, + + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[ 0 ] : elem + ); + }, + + add: function( selector, context ) { + return this.pushStack( + jQuery.uniqueSort( + jQuery.merge( this.get(), jQuery( selector, context ) ) + ) + ); + }, + + addBack: function( selector ) { + return this.add( selector == null ? + this.prevObject : this.prevObject.filter( selector ) + ); + } +} ); + +function sibling( cur, dir ) { + while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} + return cur; +} + +jQuery.each( { + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, i, until ) { + return dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return sibling( elem, "nextSibling" ); + }, + prev: function( elem ) { + return sibling( elem, "previousSibling" ); + }, + nextAll: function( elem ) { + return dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, i, until ) { + return dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, i, until ) { + return dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return siblings( ( elem.parentNode || {} ).firstChild, elem ); + }, + children: function( elem ) { + return siblings( elem.firstChild ); + }, + contents: function( elem ) { + if ( nodeName( elem, "iframe" ) ) { + return elem.contentDocument; + } + + // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only + // Treat the template element as a regular one in browsers that + // don't support it. + if ( nodeName( elem, "template" ) ) { + elem = elem.content || elem; + } + + return jQuery.merge( [], elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var matched = jQuery.map( this, fn, until ); + + if ( name.slice( -5 ) !== "Until" ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + matched = jQuery.filter( selector, matched ); + } + + if ( this.length > 1 ) { + + // Remove duplicates + if ( !guaranteedUnique[ name ] ) { + jQuery.uniqueSort( matched ); + } + + // Reverse order for parents* and prev-derivatives + if ( rparentsprev.test( name ) ) { + matched.reverse(); + } + } + + return this.pushStack( matched ); + }; +} ); +var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); + + + +// Convert String-formatted options into Object-formatted ones +function createOptions( options ) { + var object = {}; + jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { + object[ flag ] = true; + } ); + return object; +} + +/* + * Create a callback list using the following parameters: + * + * options: an optional list of space-separated options that will change how + * the callback list behaves or a more traditional option object + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible options: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( options ) { + + // Convert options from String-formatted to Object-formatted if needed + // (we check in cache first) + options = typeof options === "string" ? + createOptions( options ) : + jQuery.extend( {}, options ); + + var // Flag to know if list is currently firing + firing, + + // Last fire value for non-forgettable lists + memory, + + // Flag to know if list was already fired + fired, + + // Flag to prevent firing + locked, + + // Actual callback list + list = [], + + // Queue of execution data for repeatable lists + queue = [], + + // Index of currently firing callback (modified by add/remove as needed) + firingIndex = -1, + + // Fire callbacks + fire = function() { + + // Enforce single-firing + locked = locked || options.once; + + // Execute callbacks for all pending executions, + // respecting firingIndex overrides and runtime changes + fired = firing = true; + for ( ; queue.length; firingIndex = -1 ) { + memory = queue.shift(); + while ( ++firingIndex < list.length ) { + + // Run callback and check for early termination + if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && + options.stopOnFalse ) { + + // Jump to end and forget the data so .add doesn't re-fire + firingIndex = list.length; + memory = false; + } + } + } + + // Forget the data if we're done with it + if ( !options.memory ) { + memory = false; + } + + firing = false; + + // Clean up if we're done firing for good + if ( locked ) { + + // Keep an empty list if we have data for future add calls + if ( memory ) { + list = []; + + // Otherwise, this object is spent + } else { + list = ""; + } + } + }, + + // Actual Callbacks object + self = { + + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + + // If we have memory from a past run, we should fire after adding + if ( memory && !firing ) { + firingIndex = list.length - 1; + queue.push( memory ); + } + + ( function add( args ) { + jQuery.each( args, function( _, arg ) { + if ( jQuery.isFunction( arg ) ) { + if ( !options.unique || !self.has( arg ) ) { + list.push( arg ); + } + } else if ( arg && arg.length && jQuery.type( arg ) !== "string" ) { + + // Inspect recursively + add( arg ); + } + } ); + } )( arguments ); + + if ( memory && !firing ) { + fire(); + } + } + return this; + }, + + // Remove a callback from the list + remove: function() { + jQuery.each( arguments, function( _, arg ) { + var index; + while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + list.splice( index, 1 ); + + // Handle firing indexes + if ( index <= firingIndex ) { + firingIndex--; + } + } + } ); + return this; + }, + + // Check if a given callback is in the list. + // If no argument is given, return whether or not list has callbacks attached. + has: function( fn ) { + return fn ? + jQuery.inArray( fn, list ) > -1 : + list.length > 0; + }, + + // Remove all callbacks from the list + empty: function() { + if ( list ) { + list = []; + } + return this; + }, + + // Disable .fire and .add + // Abort any current/pending executions + // Clear all callbacks and values + disable: function() { + locked = queue = []; + list = memory = ""; + return this; + }, + disabled: function() { + return !list; + }, + + // Disable .fire + // Also disable .add unless we have memory (since it would have no effect) + // Abort any pending executions + lock: function() { + locked = queue = []; + if ( !memory && !firing ) { + list = memory = ""; + } + return this; + }, + locked: function() { + return !!locked; + }, + + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + if ( !locked ) { + args = args || []; + args = [ context, args.slice ? args.slice() : args ]; + queue.push( args ); + if ( !firing ) { + fire(); + } + } + return this; + }, + + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + + // To know if the callbacks have already been called at least once + fired: function() { + return !!fired; + } + }; + + return self; +}; + + +function Identity( v ) { + return v; +} +function Thrower( ex ) { + throw ex; +} + +function adoptValue( value, resolve, reject, noValue ) { + var method; + + try { + + // Check for promise aspect first to privilege synchronous behavior + if ( value && jQuery.isFunction( ( method = value.promise ) ) ) { + method.call( value ).done( resolve ).fail( reject ); + + // Other thenables + } else if ( value && jQuery.isFunction( ( method = value.then ) ) ) { + method.call( value, resolve, reject ); + + // Other non-thenables + } else { + + // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: + // * false: [ value ].slice( 0 ) => resolve( value ) + // * true: [ value ].slice( 1 ) => resolve() + resolve.apply( undefined, [ value ].slice( noValue ) ); + } + + // For Promises/A+, convert exceptions into rejections + // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in + // Deferred#then to conditionally suppress rejection. + } catch ( value ) { + + // Support: Android 4.0 only + // Strict mode functions invoked without .call/.apply get global-object context + reject.apply( undefined, [ value ] ); + } +} + +jQuery.extend( { + + Deferred: function( func ) { + var tuples = [ + + // action, add listener, callbacks, + // ... .then handlers, argument index, [final state] + [ "notify", "progress", jQuery.Callbacks( "memory" ), + jQuery.Callbacks( "memory" ), 2 ], + [ "resolve", "done", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 0, "resolved" ], + [ "reject", "fail", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 1, "rejected" ] + ], + state = "pending", + promise = { + state: function() { + return state; + }, + always: function() { + deferred.done( arguments ).fail( arguments ); + return this; + }, + "catch": function( fn ) { + return promise.then( null, fn ); + }, + + // Keep pipe for back-compat + pipe: function( /* fnDone, fnFail, fnProgress */ ) { + var fns = arguments; + + return jQuery.Deferred( function( newDefer ) { + jQuery.each( tuples, function( i, tuple ) { + + // Map tuples (progress, done, fail) to arguments (done, fail, progress) + var fn = jQuery.isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; + + // deferred.progress(function() { bind to newDefer or newDefer.notify }) + // deferred.done(function() { bind to newDefer or newDefer.resolve }) + // deferred.fail(function() { bind to newDefer or newDefer.reject }) + deferred[ tuple[ 1 ] ]( function() { + var returned = fn && fn.apply( this, arguments ); + if ( returned && jQuery.isFunction( returned.promise ) ) { + returned.promise() + .progress( newDefer.notify ) + .done( newDefer.resolve ) + .fail( newDefer.reject ); + } else { + newDefer[ tuple[ 0 ] + "With" ]( + this, + fn ? [ returned ] : arguments + ); + } + } ); + } ); + fns = null; + } ).promise(); + }, + then: function( onFulfilled, onRejected, onProgress ) { + var maxDepth = 0; + function resolve( depth, deferred, handler, special ) { + return function() { + var that = this, + args = arguments, + mightThrow = function() { + var returned, then; + + // Support: Promises/A+ section 2.3.3.3.3 + // https://promisesaplus.com/#point-59 + // Ignore double-resolution attempts + if ( depth < maxDepth ) { + return; + } + + returned = handler.apply( that, args ); + + // Support: Promises/A+ section 2.3.1 + // https://promisesaplus.com/#point-48 + if ( returned === deferred.promise() ) { + throw new TypeError( "Thenable self-resolution" ); + } + + // Support: Promises/A+ sections 2.3.3.1, 3.5 + // https://promisesaplus.com/#point-54 + // https://promisesaplus.com/#point-75 + // Retrieve `then` only once + then = returned && + + // Support: Promises/A+ section 2.3.4 + // https://promisesaplus.com/#point-64 + // Only check objects and functions for thenability + ( typeof returned === "object" || + typeof returned === "function" ) && + returned.then; + + // Handle a returned thenable + if ( jQuery.isFunction( then ) ) { + + // Special processors (notify) just wait for resolution + if ( special ) { + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ) + ); + + // Normal processors (resolve) also hook into progress + } else { + + // ...and disregard older resolution values + maxDepth++; + + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ), + resolve( maxDepth, deferred, Identity, + deferred.notifyWith ) + ); + } + + // Handle all other returned values + } else { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Identity ) { + that = undefined; + args = [ returned ]; + } + + // Process the value(s) + // Default process is resolve + ( special || deferred.resolveWith )( that, args ); + } + }, + + // Only normal processors (resolve) catch and reject exceptions + process = special ? + mightThrow : + function() { + try { + mightThrow(); + } catch ( e ) { + + if ( jQuery.Deferred.exceptionHook ) { + jQuery.Deferred.exceptionHook( e, + process.stackTrace ); + } + + // Support: Promises/A+ section 2.3.3.3.4.1 + // https://promisesaplus.com/#point-61 + // Ignore post-resolution exceptions + if ( depth + 1 >= maxDepth ) { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Thrower ) { + that = undefined; + args = [ e ]; + } + + deferred.rejectWith( that, args ); + } + } + }; + + // Support: Promises/A+ section 2.3.3.3.1 + // https://promisesaplus.com/#point-57 + // Re-resolve promises immediately to dodge false rejection from + // subsequent errors + if ( depth ) { + process(); + } else { + + // Call an optional hook to record the stack, in case of exception + // since it's otherwise lost when execution goes async + if ( jQuery.Deferred.getStackHook ) { + process.stackTrace = jQuery.Deferred.getStackHook(); + } + window.setTimeout( process ); + } + }; + } + + return jQuery.Deferred( function( newDefer ) { + + // progress_handlers.add( ... ) + tuples[ 0 ][ 3 ].add( + resolve( + 0, + newDefer, + jQuery.isFunction( onProgress ) ? + onProgress : + Identity, + newDefer.notifyWith + ) + ); + + // fulfilled_handlers.add( ... ) + tuples[ 1 ][ 3 ].add( + resolve( + 0, + newDefer, + jQuery.isFunction( onFulfilled ) ? + onFulfilled : + Identity + ) + ); + + // rejected_handlers.add( ... ) + tuples[ 2 ][ 3 ].add( + resolve( + 0, + newDefer, + jQuery.isFunction( onRejected ) ? + onRejected : + Thrower + ) + ); + } ).promise(); + }, + + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + return obj != null ? jQuery.extend( obj, promise ) : promise; + } + }, + deferred = {}; + + // Add list-specific methods + jQuery.each( tuples, function( i, tuple ) { + var list = tuple[ 2 ], + stateString = tuple[ 5 ]; + + // promise.progress = list.add + // promise.done = list.add + // promise.fail = list.add + promise[ tuple[ 1 ] ] = list.add; + + // Handle state + if ( stateString ) { + list.add( + function() { + + // state = "resolved" (i.e., fulfilled) + // state = "rejected" + state = stateString; + }, + + // rejected_callbacks.disable + // fulfilled_callbacks.disable + tuples[ 3 - i ][ 2 ].disable, + + // progress_callbacks.lock + tuples[ 0 ][ 2 ].lock + ); + } + + // progress_handlers.fire + // fulfilled_handlers.fire + // rejected_handlers.fire + list.add( tuple[ 3 ].fire ); + + // deferred.notify = function() { deferred.notifyWith(...) } + // deferred.resolve = function() { deferred.resolveWith(...) } + // deferred.reject = function() { deferred.rejectWith(...) } + deferred[ tuple[ 0 ] ] = function() { + deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); + return this; + }; + + // deferred.notifyWith = list.fireWith + // deferred.resolveWith = list.fireWith + // deferred.rejectWith = list.fireWith + deferred[ tuple[ 0 ] + "With" ] = list.fireWith; + } ); + + // Make the deferred a promise + promise.promise( deferred ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( singleValue ) { + var + + // count of uncompleted subordinates + remaining = arguments.length, + + // count of unprocessed arguments + i = remaining, + + // subordinate fulfillment data + resolveContexts = Array( i ), + resolveValues = slice.call( arguments ), + + // the master Deferred + master = jQuery.Deferred(), + + // subordinate callback factory + updateFunc = function( i ) { + return function( value ) { + resolveContexts[ i ] = this; + resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; + if ( !( --remaining ) ) { + master.resolveWith( resolveContexts, resolveValues ); + } + }; + }; + + // Single- and empty arguments are adopted like Promise.resolve + if ( remaining <= 1 ) { + adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject, + !remaining ); + + // Use .then() to unwrap secondary thenables (cf. gh-3000) + if ( master.state() === "pending" || + jQuery.isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { + + return master.then(); + } + } + + // Multiple arguments are aggregated like Promise.all array elements + while ( i-- ) { + adoptValue( resolveValues[ i ], updateFunc( i ), master.reject ); + } + + return master.promise(); + } +} ); + + +// These usually indicate a programmer mistake during development, +// warn about them ASAP rather than swallowing them by default. +var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; + +jQuery.Deferred.exceptionHook = function( error, stack ) { + + // Support: IE 8 - 9 only + // Console exists when dev tools are open, which can happen at any time + if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { + window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); + } +}; + + + + +jQuery.readyException = function( error ) { + window.setTimeout( function() { + throw error; + } ); +}; + + + + +// The deferred used on DOM ready +var readyList = jQuery.Deferred(); + +jQuery.fn.ready = function( fn ) { + + readyList + .then( fn ) + + // Wrap jQuery.readyException in a function so that the lookup + // happens at the time of error handling instead of callback + // registration. + .catch( function( error ) { + jQuery.readyException( error ); + } ); + + return this; +}; + +jQuery.extend( { + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Handle when the DOM is ready + ready: function( wait ) { + + // Abort if there are pending holds or we're already ready + if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { + return; + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.resolveWith( document, [ jQuery ] ); + } +} ); + +jQuery.ready.then = readyList.then; + +// The ready event handler and self cleanup method +function completed() { + document.removeEventListener( "DOMContentLoaded", completed ); + window.removeEventListener( "load", completed ); + jQuery.ready(); +} + +// Catch cases where $(document).ready() is called +// after the browser event has already occurred. +// Support: IE <=9 - 10 only +// Older IE sometimes signals "interactive" too soon +if ( document.readyState === "complete" || + ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { + + // Handle it asynchronously to allow scripts the opportunity to delay ready + window.setTimeout( jQuery.ready ); + +} else { + + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", completed ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", completed ); +} + + + + +// Multifunctional method to get and set values of a collection +// The value/s can optionally be executed if it's a function +var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { + var i = 0, + len = elems.length, + bulk = key == null; + + // Sets many values + if ( jQuery.type( key ) === "object" ) { + chainable = true; + for ( i in key ) { + access( elems, fn, i, key[ i ], true, emptyGet, raw ); + } + + // Sets one value + } else if ( value !== undefined ) { + chainable = true; + + if ( !jQuery.isFunction( value ) ) { + raw = true; + } + + if ( bulk ) { + + // Bulk operations run against the entire set + if ( raw ) { + fn.call( elems, value ); + fn = null; + + // ...except when executing function values + } else { + bulk = fn; + fn = function( elem, key, value ) { + return bulk.call( jQuery( elem ), value ); + }; + } + } + + if ( fn ) { + for ( ; i < len; i++ ) { + fn( + elems[ i ], key, raw ? + value : + value.call( elems[ i ], i, fn( elems[ i ], key ) ) + ); + } + } + } + + if ( chainable ) { + return elems; + } + + // Gets + if ( bulk ) { + return fn.call( elems ); + } + + return len ? fn( elems[ 0 ], key ) : emptyGet; +}; +var acceptData = function( owner ) { + + // Accepts only: + // - Node + // - Node.ELEMENT_NODE + // - Node.DOCUMENT_NODE + // - Object + // - Any + return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); +}; + + + + +function Data() { + this.expando = jQuery.expando + Data.uid++; +} + +Data.uid = 1; + +Data.prototype = { + + cache: function( owner ) { + + // Check if the owner object already has a cache + var value = owner[ this.expando ]; + + // If not, create one + if ( !value ) { + value = {}; + + // We can accept data for non-element nodes in modern browsers, + // but we should not, see #8335. + // Always return an empty object. + if ( acceptData( owner ) ) { + + // If it is a node unlikely to be stringify-ed or looped over + // use plain assignment + if ( owner.nodeType ) { + owner[ this.expando ] = value; + + // Otherwise secure it in a non-enumerable property + // configurable must be true to allow the property to be + // deleted when data is removed + } else { + Object.defineProperty( owner, this.expando, { + value: value, + configurable: true + } ); + } + } + } + + return value; + }, + set: function( owner, data, value ) { + var prop, + cache = this.cache( owner ); + + // Handle: [ owner, key, value ] args + // Always use camelCase key (gh-2257) + if ( typeof data === "string" ) { + cache[ jQuery.camelCase( data ) ] = value; + + // Handle: [ owner, { properties } ] args + } else { + + // Copy the properties one-by-one to the cache object + for ( prop in data ) { + cache[ jQuery.camelCase( prop ) ] = data[ prop ]; + } + } + return cache; + }, + get: function( owner, key ) { + return key === undefined ? + this.cache( owner ) : + + // Always use camelCase key (gh-2257) + owner[ this.expando ] && owner[ this.expando ][ jQuery.camelCase( key ) ]; + }, + access: function( owner, key, value ) { + + // In cases where either: + // + // 1. No key was specified + // 2. A string key was specified, but no value provided + // + // Take the "read" path and allow the get method to determine + // which value to return, respectively either: + // + // 1. The entire cache object + // 2. The data stored at the key + // + if ( key === undefined || + ( ( key && typeof key === "string" ) && value === undefined ) ) { + + return this.get( owner, key ); + } + + // When the key is not a string, or both a key and value + // are specified, set or extend (existing objects) with either: + // + // 1. An object of properties + // 2. A key and value + // + this.set( owner, key, value ); + + // Since the "set" path can have two possible entry points + // return the expected data based on which path was taken[*] + return value !== undefined ? value : key; + }, + remove: function( owner, key ) { + var i, + cache = owner[ this.expando ]; + + if ( cache === undefined ) { + return; + } + + if ( key !== undefined ) { + + // Support array or space separated string of keys + if ( Array.isArray( key ) ) { + + // If key is an array of keys... + // We always set camelCase keys, so remove that. + key = key.map( jQuery.camelCase ); + } else { + key = jQuery.camelCase( key ); + + // If a key with the spaces exists, use it. + // Otherwise, create an array by matching non-whitespace + key = key in cache ? + [ key ] : + ( key.match( rnothtmlwhite ) || [] ); + } + + i = key.length; + + while ( i-- ) { + delete cache[ key[ i ] ]; + } + } + + // Remove the expando if there's no more data + if ( key === undefined || jQuery.isEmptyObject( cache ) ) { + + // Support: Chrome <=35 - 45 + // Webkit & Blink performance suffers when deleting properties + // from DOM nodes, so set to undefined instead + // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) + if ( owner.nodeType ) { + owner[ this.expando ] = undefined; + } else { + delete owner[ this.expando ]; + } + } + }, + hasData: function( owner ) { + var cache = owner[ this.expando ]; + return cache !== undefined && !jQuery.isEmptyObject( cache ); + } +}; +var dataPriv = new Data(); + +var dataUser = new Data(); + + + +// Implementation Summary +// +// 1. Enforce API surface and semantic compatibility with 1.9.x branch +// 2. Improve the module's maintainability by reducing the storage +// paths to a single mechanism. +// 3. Use the same single mechanism to support "private" and "user" data. +// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) +// 5. Avoid exposing implementation details on user objects (eg. expando properties) +// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 + +var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, + rmultiDash = /[A-Z]/g; + +function getData( data ) { + if ( data === "true" ) { + return true; + } + + if ( data === "false" ) { + return false; + } + + if ( data === "null" ) { + return null; + } + + // Only convert to a number if it doesn't change the string + if ( data === +data + "" ) { + return +data; + } + + if ( rbrace.test( data ) ) { + return JSON.parse( data ); + } + + return data; +} + +function dataAttr( elem, key, data ) { + var name; + + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = getData( data ); + } catch ( e ) {} + + // Make sure we set the data so it isn't changed later + dataUser.set( elem, key, data ); + } else { + data = undefined; + } + } + return data; +} + +jQuery.extend( { + hasData: function( elem ) { + return dataUser.hasData( elem ) || dataPriv.hasData( elem ); + }, + + data: function( elem, name, data ) { + return dataUser.access( elem, name, data ); + }, + + removeData: function( elem, name ) { + dataUser.remove( elem, name ); + }, + + // TODO: Now that all calls to _data and _removeData have been replaced + // with direct calls to dataPriv methods, these can be deprecated. + _data: function( elem, name, data ) { + return dataPriv.access( elem, name, data ); + }, + + _removeData: function( elem, name ) { + dataPriv.remove( elem, name ); + } +} ); + +jQuery.fn.extend( { + data: function( key, value ) { + var i, name, data, + elem = this[ 0 ], + attrs = elem && elem.attributes; + + // Gets all values + if ( key === undefined ) { + if ( this.length ) { + data = dataUser.get( elem ); + + if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { + i = attrs.length; + while ( i-- ) { + + // Support: IE 11 only + // The attrs elements can be null (#14894) + if ( attrs[ i ] ) { + name = attrs[ i ].name; + if ( name.indexOf( "data-" ) === 0 ) { + name = jQuery.camelCase( name.slice( 5 ) ); + dataAttr( elem, name, data[ name ] ); + } + } + } + dataPriv.set( elem, "hasDataAttrs", true ); + } + } + + return data; + } + + // Sets multiple values + if ( typeof key === "object" ) { + return this.each( function() { + dataUser.set( this, key ); + } ); + } + + return access( this, function( value ) { + var data; + + // The calling jQuery object (element matches) is not empty + // (and therefore has an element appears at this[ 0 ]) and the + // `value` parameter was not undefined. An empty jQuery object + // will result in `undefined` for elem = this[ 0 ] which will + // throw an exception if an attempt to read a data cache is made. + if ( elem && value === undefined ) { + + // Attempt to get data from the cache + // The key will always be camelCased in Data + data = dataUser.get( elem, key ); + if ( data !== undefined ) { + return data; + } + + // Attempt to "discover" the data in + // HTML5 custom data-* attrs + data = dataAttr( elem, key ); + if ( data !== undefined ) { + return data; + } + + // We tried really hard, but the data doesn't exist. + return; + } + + // Set the data... + this.each( function() { + + // We always store the camelCased key + dataUser.set( this, key, value ); + } ); + }, null, value, arguments.length > 1, null, true ); + }, + + removeData: function( key ) { + return this.each( function() { + dataUser.remove( this, key ); + } ); + } +} ); + + +jQuery.extend( { + queue: function( elem, type, data ) { + var queue; + + if ( elem ) { + type = ( type || "fx" ) + "queue"; + queue = dataPriv.get( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !queue || Array.isArray( data ) ) { + queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); + } else { + queue.push( data ); + } + } + return queue || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + startLength = queue.length, + fn = queue.shift(), + hooks = jQuery._queueHooks( elem, type ), + next = function() { + jQuery.dequeue( elem, type ); + }; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + startLength--; + } + + if ( fn ) { + + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + // Clear up the last queue stop function + delete hooks.stop; + fn.call( elem, next, hooks ); + } + + if ( !startLength && hooks ) { + hooks.empty.fire(); + } + }, + + // Not public - generate a queueHooks object, or return the current one + _queueHooks: function( elem, type ) { + var key = type + "queueHooks"; + return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { + empty: jQuery.Callbacks( "once memory" ).add( function() { + dataPriv.remove( elem, [ type + "queue", key ] ); + } ) + } ); + } +} ); + +jQuery.fn.extend( { + queue: function( type, data ) { + var setter = 2; + + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + setter--; + } + + if ( arguments.length < setter ) { + return jQuery.queue( this[ 0 ], type ); + } + + return data === undefined ? + this : + this.each( function() { + var queue = jQuery.queue( this, type, data ); + + // Ensure a hooks for this queue + jQuery._queueHooks( this, type ); + + if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + } ); + }, + dequeue: function( type ) { + return this.each( function() { + jQuery.dequeue( this, type ); + } ); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, obj ) { + var tmp, + count = 1, + defer = jQuery.Deferred(), + elements = this, + i = this.length, + resolve = function() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + }; + + if ( typeof type !== "string" ) { + obj = type; + type = undefined; + } + type = type || "fx"; + + while ( i-- ) { + tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); + if ( tmp && tmp.empty ) { + count++; + tmp.empty.add( resolve ); + } + } + resolve(); + return defer.promise( obj ); + } +} ); +var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; + +var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); + + +var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; + +var isHiddenWithinTree = function( elem, el ) { + + // isHiddenWithinTree might be called from jQuery#filter function; + // in that case, element will be second argument + elem = el || elem; + + // Inline style trumps all + return elem.style.display === "none" || + elem.style.display === "" && + + // Otherwise, check computed style + // Support: Firefox <=43 - 45 + // Disconnected elements can have computed display: none, so first confirm that elem is + // in the document. + jQuery.contains( elem.ownerDocument, elem ) && + + jQuery.css( elem, "display" ) === "none"; + }; + +var swap = function( elem, options, callback, args ) { + var ret, name, + old = {}; + + // Remember the old values, and insert the new ones + for ( name in options ) { + old[ name ] = elem.style[ name ]; + elem.style[ name ] = options[ name ]; + } + + ret = callback.apply( elem, args || [] ); + + // Revert the old values + for ( name in options ) { + elem.style[ name ] = old[ name ]; + } + + return ret; +}; + + + + +function adjustCSS( elem, prop, valueParts, tween ) { + var adjusted, + scale = 1, + maxIterations = 20, + currentValue = tween ? + function() { + return tween.cur(); + } : + function() { + return jQuery.css( elem, prop, "" ); + }, + initial = currentValue(), + unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), + + // Starting value computation is required for potential unit mismatches + initialInUnit = ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && + rcssNum.exec( jQuery.css( elem, prop ) ); + + if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { + + // Trust units reported by jQuery.css + unit = unit || initialInUnit[ 3 ]; + + // Make sure we update the tween properties later on + valueParts = valueParts || []; + + // Iteratively approximate from a nonzero starting point + initialInUnit = +initial || 1; + + do { + + // If previous iteration zeroed out, double until we get *something*. + // Use string for doubling so we don't accidentally see scale as unchanged below + scale = scale || ".5"; + + // Adjust and apply + initialInUnit = initialInUnit / scale; + jQuery.style( elem, prop, initialInUnit + unit ); + + // Update scale, tolerating zero or NaN from tween.cur() + // Break the loop if scale is unchanged or perfect, or if we've just had enough. + } while ( + scale !== ( scale = currentValue() / initial ) && scale !== 1 && --maxIterations + ); + } + + if ( valueParts ) { + initialInUnit = +initialInUnit || +initial || 0; + + // Apply relative offset (+=/-=) if specified + adjusted = valueParts[ 1 ] ? + initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : + +valueParts[ 2 ]; + if ( tween ) { + tween.unit = unit; + tween.start = initialInUnit; + tween.end = adjusted; + } + } + return adjusted; +} + + +var defaultDisplayMap = {}; + +function getDefaultDisplay( elem ) { + var temp, + doc = elem.ownerDocument, + nodeName = elem.nodeName, + display = defaultDisplayMap[ nodeName ]; + + if ( display ) { + return display; + } + + temp = doc.body.appendChild( doc.createElement( nodeName ) ); + display = jQuery.css( temp, "display" ); + + temp.parentNode.removeChild( temp ); + + if ( display === "none" ) { + display = "block"; + } + defaultDisplayMap[ nodeName ] = display; + + return display; +} + +function showHide( elements, show ) { + var display, elem, + values = [], + index = 0, + length = elements.length; + + // Determine new display value for elements that need to change + for ( ; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + + display = elem.style.display; + if ( show ) { + + // Since we force visibility upon cascade-hidden elements, an immediate (and slow) + // check is required in this first loop unless we have a nonempty display value (either + // inline or about-to-be-restored) + if ( display === "none" ) { + values[ index ] = dataPriv.get( elem, "display" ) || null; + if ( !values[ index ] ) { + elem.style.display = ""; + } + } + if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { + values[ index ] = getDefaultDisplay( elem ); + } + } else { + if ( display !== "none" ) { + values[ index ] = "none"; + + // Remember what we're overwriting + dataPriv.set( elem, "display", display ); + } + } + } + + // Set the display of the elements in a second loop to avoid constant reflow + for ( index = 0; index < length; index++ ) { + if ( values[ index ] != null ) { + elements[ index ].style.display = values[ index ]; + } + } + + return elements; +} + +jQuery.fn.extend( { + show: function() { + return showHide( this, true ); + }, + hide: function() { + return showHide( this ); + }, + toggle: function( state ) { + if ( typeof state === "boolean" ) { + return state ? this.show() : this.hide(); + } + + return this.each( function() { + if ( isHiddenWithinTree( this ) ) { + jQuery( this ).show(); + } else { + jQuery( this ).hide(); + } + } ); + } +} ); +var rcheckableType = ( /^(?:checkbox|radio)$/i ); + +var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]+)/i ); + +var rscriptType = ( /^$|\/(?:java|ecma)script/i ); + + + +// We have to close these tags to support XHTML (#13200) +var wrapMap = { + + // Support: IE <=9 only + option: [ 1, "" ], + + // XHTML parsers do not magically insert elements in the + // same way that tag soup parsers do. So we cannot shorten + // this by omitting or other required elements. + thead: [ 1, "", "
" ], + col: [ 2, "", "
" ], + tr: [ 2, "", "
" ], + td: [ 3, "", "
" ], + + _default: [ 0, "", "" ] +}; + +// Support: IE <=9 only +wrapMap.optgroup = wrapMap.option; + +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + + +function getAll( context, tag ) { + + // Support: IE <=9 - 11 only + // Use typeof to avoid zero-argument method invocation on host objects (#15151) + var ret; + + if ( typeof context.getElementsByTagName !== "undefined" ) { + ret = context.getElementsByTagName( tag || "*" ); + + } else if ( typeof context.querySelectorAll !== "undefined" ) { + ret = context.querySelectorAll( tag || "*" ); + + } else { + ret = []; + } + + if ( tag === undefined || tag && nodeName( context, tag ) ) { + return jQuery.merge( [ context ], ret ); + } + + return ret; +} + + +// Mark scripts as having already been evaluated +function setGlobalEval( elems, refElements ) { + var i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + dataPriv.set( + elems[ i ], + "globalEval", + !refElements || dataPriv.get( refElements[ i ], "globalEval" ) + ); + } +} + + +var rhtml = /<|&#?\w+;/; + +function buildFragment( elems, context, scripts, selection, ignored ) { + var elem, tmp, tag, wrap, contains, j, + fragment = context.createDocumentFragment(), + nodes = [], + i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + elem = elems[ i ]; + + if ( elem || elem === 0 ) { + + // Add nodes directly + if ( jQuery.type( elem ) === "object" ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); + + // Convert non-html into a text node + } else if ( !rhtml.test( elem ) ) { + nodes.push( context.createTextNode( elem ) ); + + // Convert html into DOM nodes + } else { + tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); + + // Deserialize a standard representation + tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); + wrap = wrapMap[ tag ] || wrapMap._default; + tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; + + // Descend through wrappers to the right content + j = wrap[ 0 ]; + while ( j-- ) { + tmp = tmp.lastChild; + } + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, tmp.childNodes ); + + // Remember the top-level container + tmp = fragment.firstChild; + + // Ensure the created nodes are orphaned (#12392) + tmp.textContent = ""; + } + } + } + + // Remove wrapper from fragment + fragment.textContent = ""; + + i = 0; + while ( ( elem = nodes[ i++ ] ) ) { + + // Skip elements already in the context collection (trac-4087) + if ( selection && jQuery.inArray( elem, selection ) > -1 ) { + if ( ignored ) { + ignored.push( elem ); + } + continue; + } + + contains = jQuery.contains( elem.ownerDocument, elem ); + + // Append to fragment + tmp = getAll( fragment.appendChild( elem ), "script" ); + + // Preserve script evaluation history + if ( contains ) { + setGlobalEval( tmp ); + } + + // Capture executables + if ( scripts ) { + j = 0; + while ( ( elem = tmp[ j++ ] ) ) { + if ( rscriptType.test( elem.type || "" ) ) { + scripts.push( elem ); + } + } + } + } + + return fragment; +} + + +( function() { + var fragment = document.createDocumentFragment(), + div = fragment.appendChild( document.createElement( "div" ) ), + input = document.createElement( "input" ); + + // Support: Android 4.0 - 4.3 only + // Check state lost if the name is set (#11217) + // Support: Windows Web Apps (WWA) + // `name` and `type` must use .setAttribute for WWA (#14901) + input.setAttribute( "type", "radio" ); + input.setAttribute( "checked", "checked" ); + input.setAttribute( "name", "t" ); + + div.appendChild( input ); + + // Support: Android <=4.1 only + // Older WebKit doesn't clone checked state correctly in fragments + support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Support: IE <=11 only + // Make sure textarea (and checkbox) defaultValue is properly cloned + div.innerHTML = ""; + support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; +} )(); +var documentElement = document.documentElement; + + + +var + rkeyEvent = /^key/, + rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, + rtypenamespace = /^([^.]*)(?:\.(.+)|)/; + +function returnTrue() { + return true; +} + +function returnFalse() { + return false; +} + +// Support: IE <=9 only +// See #13393 for more info +function safeActiveElement() { + try { + return document.activeElement; + } catch ( err ) { } +} + +function on( elem, types, selector, data, fn, one ) { + var origFn, type; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + on( elem, type, selector, data, types[ type ], one ); + } + return elem; + } + + if ( data == null && fn == null ) { + + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return elem; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return elem.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + } ); +} + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + global: {}, + + add: function( elem, types, handler, data, selector ) { + + var handleObjIn, eventHandle, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.get( elem ); + + // Don't attach events to noData or text/comment nodes (but allow plain objects) + if ( !elemData ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + selector = handleObjIn.selector; + } + + // Ensure that invalid selectors throw exceptions at attach time + // Evaluate against documentElement in case elem is a non-element node (e.g., document) + if ( selector ) { + jQuery.find.matchesSelector( documentElement, selector ); + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + if ( !( events = elemData.events ) ) { + events = elemData.events = {}; + } + if ( !( eventHandle = elemData.handle ) ) { + eventHandle = elemData.handle = function( e ) { + + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? + jQuery.event.dispatch.apply( elem, arguments ) : undefined; + }; + } + + // Handle multiple events separated by a space + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // There *must* be a type, no attaching namespace-only handlers + if ( !type ) { + continue; + } + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend( { + type: type, + origType: origType, + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + needsContext: selector && jQuery.expr.match.needsContext.test( selector ), + namespace: namespaces.join( "." ) + }, handleObjIn ); + + // Init the event handler queue if we're the first + if ( !( handlers = events[ type ] ) ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener if the special events handler returns false + if ( !special.setup || + special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + }, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + + var j, origCount, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); + + if ( !elemData || !( events = elemData.events ) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector ? special.delegateType : special.bindType ) || type; + handlers = events[ type ] || []; + tmp = tmp[ 2 ] && + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); + + // Remove matching events + origCount = j = handlers.length; + while ( j-- ) { + handleObj = handlers[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !tmp || tmp.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || + selector === "**" && handleObj.selector ) ) { + handlers.splice( j, 1 ); + + if ( handleObj.selector ) { + handlers.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( origCount && !handlers.length ) { + if ( !special.teardown || + special.teardown.call( elem, namespaces, elemData.handle ) === false ) { + + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove data and the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + dataPriv.remove( elem, "handle events" ); + } + }, + + dispatch: function( nativeEvent ) { + + // Make a writable jQuery.Event from the native event object + var event = jQuery.event.fix( nativeEvent ); + + var i, j, ret, matched, handleObj, handlerQueue, + args = new Array( arguments.length ), + handlers = ( dataPriv.get( this, "events" ) || {} )[ event.type ] || [], + special = jQuery.event.special[ event.type ] || {}; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[ 0 ] = event; + + for ( i = 1; i < arguments.length; i++ ) { + args[ i ] = arguments[ i ]; + } + + event.delegateTarget = this; + + // Call the preDispatch hook for the mapped type, and let it bail if desired + if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { + return; + } + + // Determine handlers + handlerQueue = jQuery.event.handlers.call( this, event, handlers ); + + // Run delegates first; they may want to stop propagation beneath us + i = 0; + while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { + event.currentTarget = matched.elem; + + j = 0; + while ( ( handleObj = matched.handlers[ j++ ] ) && + !event.isImmediatePropagationStopped() ) { + + // Triggered event must either 1) have no namespace, or 2) have namespace(s) + // a subset or equal to those in the bound event (both can have no namespace). + if ( !event.rnamespace || event.rnamespace.test( handleObj.namespace ) ) { + + event.handleObj = handleObj; + event.data = handleObj.data; + + ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || + handleObj.handler ).apply( matched.elem, args ); + + if ( ret !== undefined ) { + if ( ( event.result = ret ) === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + // Call the postDispatch hook for the mapped type + if ( special.postDispatch ) { + special.postDispatch.call( this, event ); + } + + return event.result; + }, + + handlers: function( event, handlers ) { + var i, handleObj, sel, matchedHandlers, matchedSelectors, + handlerQueue = [], + delegateCount = handlers.delegateCount, + cur = event.target; + + // Find delegate handlers + if ( delegateCount && + + // Support: IE <=9 + // Black-hole SVG instance trees (trac-13180) + cur.nodeType && + + // Support: Firefox <=42 + // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) + // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click + // Support: IE 11 only + // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) + !( event.type === "click" && event.button >= 1 ) ) { + + for ( ; cur !== this; cur = cur.parentNode || this ) { + + // Don't check non-elements (#13208) + // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) + if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { + matchedHandlers = []; + matchedSelectors = {}; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + + // Don't conflict with Object.prototype properties (#13203) + sel = handleObj.selector + " "; + + if ( matchedSelectors[ sel ] === undefined ) { + matchedSelectors[ sel ] = handleObj.needsContext ? + jQuery( sel, this ).index( cur ) > -1 : + jQuery.find( sel, this, null, [ cur ] ).length; + } + if ( matchedSelectors[ sel ] ) { + matchedHandlers.push( handleObj ); + } + } + if ( matchedHandlers.length ) { + handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); + } + } + } + } + + // Add the remaining (directly-bound) handlers + cur = this; + if ( delegateCount < handlers.length ) { + handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); + } + + return handlerQueue; + }, + + addProp: function( name, hook ) { + Object.defineProperty( jQuery.Event.prototype, name, { + enumerable: true, + configurable: true, + + get: jQuery.isFunction( hook ) ? + function() { + if ( this.originalEvent ) { + return hook( this.originalEvent ); + } + } : + function() { + if ( this.originalEvent ) { + return this.originalEvent[ name ]; + } + }, + + set: function( value ) { + Object.defineProperty( this, name, { + enumerable: true, + configurable: true, + writable: true, + value: value + } ); + } + } ); + }, + + fix: function( originalEvent ) { + return originalEvent[ jQuery.expando ] ? + originalEvent : + new jQuery.Event( originalEvent ); + }, + + special: { + load: { + + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + focus: { + + // Fire native event if possible so blur/focus sequence is correct + trigger: function() { + if ( this !== safeActiveElement() && this.focus ) { + this.focus(); + return false; + } + }, + delegateType: "focusin" + }, + blur: { + trigger: function() { + if ( this === safeActiveElement() && this.blur ) { + this.blur(); + return false; + } + }, + delegateType: "focusout" + }, + click: { + + // For checkbox, fire native event so checked state will be right + trigger: function() { + if ( this.type === "checkbox" && this.click && nodeName( this, "input" ) ) { + this.click(); + return false; + } + }, + + // For cross-browser consistency, don't fire native .click() on links + _default: function( event ) { + return nodeName( event.target, "a" ); + } + }, + + beforeunload: { + postDispatch: function( event ) { + + // Support: Firefox 20+ + // Firefox doesn't alert if the returnValue field is not set. + if ( event.result !== undefined && event.originalEvent ) { + event.originalEvent.returnValue = event.result; + } + } + } + } +}; + +jQuery.removeEvent = function( elem, type, handle ) { + + // This "if" is needed for plain objects + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle ); + } +}; + +jQuery.Event = function( src, props ) { + + // Allow instantiation without the 'new' keyword + if ( !( this instanceof jQuery.Event ) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = src.defaultPrevented || + src.defaultPrevented === undefined && + + // Support: Android <=2.3 only + src.returnValue === false ? + returnTrue : + returnFalse; + + // Create target properties + // Support: Safari <=6 - 7 only + // Target should not be a text node (#504, #13143) + this.target = ( src.target && src.target.nodeType === 3 ) ? + src.target.parentNode : + src.target; + + this.currentTarget = src.currentTarget; + this.relatedTarget = src.relatedTarget; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || jQuery.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + constructor: jQuery.Event, + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse, + isSimulated: false, + + preventDefault: function() { + var e = this.originalEvent; + + this.isDefaultPrevented = returnTrue; + + if ( e && !this.isSimulated ) { + e.preventDefault(); + } + }, + stopPropagation: function() { + var e = this.originalEvent; + + this.isPropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopPropagation(); + } + }, + stopImmediatePropagation: function() { + var e = this.originalEvent; + + this.isImmediatePropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopImmediatePropagation(); + } + + this.stopPropagation(); + } +}; + +// Includes all common event props including KeyEvent and MouseEvent specific props +jQuery.each( { + altKey: true, + bubbles: true, + cancelable: true, + changedTouches: true, + ctrlKey: true, + detail: true, + eventPhase: true, + metaKey: true, + pageX: true, + pageY: true, + shiftKey: true, + view: true, + "char": true, + charCode: true, + key: true, + keyCode: true, + button: true, + buttons: true, + clientX: true, + clientY: true, + offsetX: true, + offsetY: true, + pointerId: true, + pointerType: true, + screenX: true, + screenY: true, + targetTouches: true, + toElement: true, + touches: true, + + which: function( event ) { + var button = event.button; + + // Add which for key events + if ( event.which == null && rkeyEvent.test( event.type ) ) { + return event.charCode != null ? event.charCode : event.keyCode; + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) { + if ( button & 1 ) { + return 1; + } + + if ( button & 2 ) { + return 3; + } + + if ( button & 4 ) { + return 2; + } + + return 0; + } + + return event.which; + } +}, jQuery.event.addProp ); + +// Create mouseenter/leave events using mouseover/out and event-time checks +// so that event delegation works in jQuery. +// Do the same for pointerenter/pointerleave and pointerover/pointerout +// +// Support: Safari 7 only +// Safari sends mouseenter too often; see: +// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 +// for the description of the bug (it existed in older Chrome versions as well). +jQuery.each( { + mouseenter: "mouseover", + mouseleave: "mouseout", + pointerenter: "pointerover", + pointerleave: "pointerout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var ret, + target = this, + related = event.relatedTarget, + handleObj = event.handleObj; + + // For mouseenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +} ); + +jQuery.fn.extend( { + + on: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn ); + }, + one: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + var handleObj, type; + if ( types && types.preventDefault && types.handleObj ) { + + // ( event ) dispatched jQuery.Event + handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace ? + handleObj.origType + "." + handleObj.namespace : + handleObj.origType, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + + // ( types-object [, selector] ) + for ( type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each( function() { + jQuery.event.remove( this, types, fn, selector ); + } ); + } +} ); + + +var + + /* eslint-disable max-len */ + + // See https://github.com/eslint/eslint/issues/3229 + rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi, + + /* eslint-enable */ + + // Support: IE <=10 - 11, Edge 12 - 13 + // In IE/Edge using regex groups here causes severe slowdowns. + // See https://connect.microsoft.com/IE/feedback/details/1736512/ + rnoInnerhtml = /\s*$/g; + +// Prefer a tbody over its parent table for containing new rows +function manipulationTarget( elem, content ) { + if ( nodeName( elem, "table" ) && + nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { + + return jQuery( ">tbody", elem )[ 0 ] || elem; + } + + return elem; +} + +// Replace/restore the type attribute of script elements for safe DOM manipulation +function disableScript( elem ) { + elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; + return elem; +} +function restoreScript( elem ) { + var match = rscriptTypeMasked.exec( elem.type ); + + if ( match ) { + elem.type = match[ 1 ]; + } else { + elem.removeAttribute( "type" ); + } + + return elem; +} + +function cloneCopyEvent( src, dest ) { + var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events; + + if ( dest.nodeType !== 1 ) { + return; + } + + // 1. Copy private data: events, handlers, etc. + if ( dataPriv.hasData( src ) ) { + pdataOld = dataPriv.access( src ); + pdataCur = dataPriv.set( dest, pdataOld ); + events = pdataOld.events; + + if ( events ) { + delete pdataCur.handle; + pdataCur.events = {}; + + for ( type in events ) { + for ( i = 0, l = events[ type ].length; i < l; i++ ) { + jQuery.event.add( dest, type, events[ type ][ i ] ); + } + } + } + } + + // 2. Copy user data + if ( dataUser.hasData( src ) ) { + udataOld = dataUser.access( src ); + udataCur = jQuery.extend( {}, udataOld ); + + dataUser.set( dest, udataCur ); + } +} + +// Fix IE bugs, see support tests +function fixInput( src, dest ) { + var nodeName = dest.nodeName.toLowerCase(); + + // Fails to persist the checked state of a cloned checkbox or radio button. + if ( nodeName === "input" && rcheckableType.test( src.type ) ) { + dest.checked = src.checked; + + // Fails to return the selected option to the default selected state when cloning options + } else if ( nodeName === "input" || nodeName === "textarea" ) { + dest.defaultValue = src.defaultValue; + } +} + +function domManip( collection, args, callback, ignored ) { + + // Flatten any nested arrays + args = concat.apply( [], args ); + + var fragment, first, scripts, hasScripts, node, doc, + i = 0, + l = collection.length, + iNoClone = l - 1, + value = args[ 0 ], + isFunction = jQuery.isFunction( value ); + + // We can't cloneNode fragments that contain checked, in WebKit + if ( isFunction || + ( l > 1 && typeof value === "string" && + !support.checkClone && rchecked.test( value ) ) ) { + return collection.each( function( index ) { + var self = collection.eq( index ); + if ( isFunction ) { + args[ 0 ] = value.call( this, index, self.html() ); + } + domManip( self, args, callback, ignored ); + } ); + } + + if ( l ) { + fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + // Require either new content or an interest in ignored elements to invoke the callback + if ( first || ignored ) { + scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); + hasScripts = scripts.length; + + // Use the original fragment for the last item + // instead of the first because it can end up + // being emptied incorrectly in certain situations (#8070). + for ( ; i < l; i++ ) { + node = fragment; + + if ( i !== iNoClone ) { + node = jQuery.clone( node, true, true ); + + // Keep references to cloned scripts for later restoration + if ( hasScripts ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( scripts, getAll( node, "script" ) ); + } + } + + callback.call( collection[ i ], node, i ); + } + + if ( hasScripts ) { + doc = scripts[ scripts.length - 1 ].ownerDocument; + + // Reenable scripts + jQuery.map( scripts, restoreScript ); + + // Evaluate executable scripts on first document insertion + for ( i = 0; i < hasScripts; i++ ) { + node = scripts[ i ]; + if ( rscriptType.test( node.type || "" ) && + !dataPriv.access( node, "globalEval" ) && + jQuery.contains( doc, node ) ) { + + if ( node.src ) { + + // Optional AJAX dependency, but won't run scripts if not present + if ( jQuery._evalUrl ) { + jQuery._evalUrl( node.src ); + } + } else { + DOMEval( node.textContent.replace( rcleanScript, "" ), doc ); + } + } + } + } + } + } + + return collection; +} + +function remove( elem, selector, keepData ) { + var node, + nodes = selector ? jQuery.filter( selector, elem ) : elem, + i = 0; + + for ( ; ( node = nodes[ i ] ) != null; i++ ) { + if ( !keepData && node.nodeType === 1 ) { + jQuery.cleanData( getAll( node ) ); + } + + if ( node.parentNode ) { + if ( keepData && jQuery.contains( node.ownerDocument, node ) ) { + setGlobalEval( getAll( node, "script" ) ); + } + node.parentNode.removeChild( node ); + } + } + + return elem; +} + +jQuery.extend( { + htmlPrefilter: function( html ) { + return html.replace( rxhtmlTag, "<$1>" ); + }, + + clone: function( elem, dataAndEvents, deepDataAndEvents ) { + var i, l, srcElements, destElements, + clone = elem.cloneNode( true ), + inPage = jQuery.contains( elem.ownerDocument, elem ); + + // Fix IE cloning issues + if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && + !jQuery.isXMLDoc( elem ) ) { + + // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 + destElements = getAll( clone ); + srcElements = getAll( elem ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + fixInput( srcElements[ i ], destElements[ i ] ); + } + } + + // Copy the events from the original to the clone + if ( dataAndEvents ) { + if ( deepDataAndEvents ) { + srcElements = srcElements || getAll( elem ); + destElements = destElements || getAll( clone ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + cloneCopyEvent( srcElements[ i ], destElements[ i ] ); + } + } else { + cloneCopyEvent( elem, clone ); + } + } + + // Preserve script evaluation history + destElements = getAll( clone, "script" ); + if ( destElements.length > 0 ) { + setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); + } + + // Return the cloned set + return clone; + }, + + cleanData: function( elems ) { + var data, elem, type, + special = jQuery.event.special, + i = 0; + + for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { + if ( acceptData( elem ) ) { + if ( ( data = elem[ dataPriv.expando ] ) ) { + if ( data.events ) { + for ( type in data.events ) { + if ( special[ type ] ) { + jQuery.event.remove( elem, type ); + + // This is a shortcut to avoid jQuery.event.remove's overhead + } else { + jQuery.removeEvent( elem, type, data.handle ); + } + } + } + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataPriv.expando ] = undefined; + } + if ( elem[ dataUser.expando ] ) { + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataUser.expando ] = undefined; + } + } + } + } +} ); + +jQuery.fn.extend( { + detach: function( selector ) { + return remove( this, selector, true ); + }, + + remove: function( selector ) { + return remove( this, selector ); + }, + + text: function( value ) { + return access( this, function( value ) { + return value === undefined ? + jQuery.text( this ) : + this.empty().each( function() { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + this.textContent = value; + } + } ); + }, null, value, arguments.length ); + }, + + append: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.appendChild( elem ); + } + } ); + }, + + prepend: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.insertBefore( elem, target.firstChild ); + } + } ); + }, + + before: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this ); + } + } ); + }, + + after: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this.nextSibling ); + } + } ); + }, + + empty: function() { + var elem, + i = 0; + + for ( ; ( elem = this[ i ] ) != null; i++ ) { + if ( elem.nodeType === 1 ) { + + // Prevent memory leaks + jQuery.cleanData( getAll( elem, false ) ); + + // Remove any remaining nodes + elem.textContent = ""; + } + } + + return this; + }, + + clone: function( dataAndEvents, deepDataAndEvents ) { + dataAndEvents = dataAndEvents == null ? false : dataAndEvents; + deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; + + return this.map( function() { + return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); + } ); + }, + + html: function( value ) { + return access( this, function( value ) { + var elem = this[ 0 ] || {}, + i = 0, + l = this.length; + + if ( value === undefined && elem.nodeType === 1 ) { + return elem.innerHTML; + } + + // See if we can take a shortcut and just use innerHTML + if ( typeof value === "string" && !rnoInnerhtml.test( value ) && + !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { + + value = jQuery.htmlPrefilter( value ); + + try { + for ( ; i < l; i++ ) { + elem = this[ i ] || {}; + + // Remove element nodes and prevent memory leaks + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + elem.innerHTML = value; + } + } + + elem = 0; + + // If using innerHTML throws an exception, use the fallback method + } catch ( e ) {} + } + + if ( elem ) { + this.empty().append( value ); + } + }, null, value, arguments.length ); + }, + + replaceWith: function() { + var ignored = []; + + // Make the changes, replacing each non-ignored context element with the new content + return domManip( this, arguments, function( elem ) { + var parent = this.parentNode; + + if ( jQuery.inArray( this, ignored ) < 0 ) { + jQuery.cleanData( getAll( this ) ); + if ( parent ) { + parent.replaceChild( elem, this ); + } + } + + // Force callback invocation + }, ignored ); + } +} ); + +jQuery.each( { + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" +}, function( name, original ) { + jQuery.fn[ name ] = function( selector ) { + var elems, + ret = [], + insert = jQuery( selector ), + last = insert.length - 1, + i = 0; + + for ( ; i <= last; i++ ) { + elems = i === last ? this : this.clone( true ); + jQuery( insert[ i ] )[ original ]( elems ); + + // Support: Android <=4.0 only, PhantomJS 1 only + // .get() because push.apply(_, arraylike) throws on ancient WebKit + push.apply( ret, elems.get() ); + } + + return this.pushStack( ret ); + }; +} ); +var rmargin = ( /^margin/ ); + +var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); + +var getStyles = function( elem ) { + + // Support: IE <=11 only, Firefox <=30 (#15098, #14150) + // IE throws on elements created in popups + // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" + var view = elem.ownerDocument.defaultView; + + if ( !view || !view.opener ) { + view = window; + } + + return view.getComputedStyle( elem ); + }; + + + +( function() { + + // Executing both pixelPosition & boxSizingReliable tests require only one layout + // so they're executed at the same time to save the second computation. + function computeStyleTests() { + + // This is a singleton, we need to execute it only once + if ( !div ) { + return; + } + + div.style.cssText = + "box-sizing:border-box;" + + "position:relative;display:block;" + + "margin:auto;border:1px;padding:1px;" + + "top:1%;width:50%"; + div.innerHTML = ""; + documentElement.appendChild( container ); + + var divStyle = window.getComputedStyle( div ); + pixelPositionVal = divStyle.top !== "1%"; + + // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 + reliableMarginLeftVal = divStyle.marginLeft === "2px"; + boxSizingReliableVal = divStyle.width === "4px"; + + // Support: Android 4.0 - 4.3 only + // Some styles come back with percentage values, even though they shouldn't + div.style.marginRight = "50%"; + pixelMarginRightVal = divStyle.marginRight === "4px"; + + documentElement.removeChild( container ); + + // Nullify the div so it wouldn't be stored in the memory and + // it will also be a sign that checks already performed + div = null; + } + + var pixelPositionVal, boxSizingReliableVal, pixelMarginRightVal, reliableMarginLeftVal, + container = document.createElement( "div" ), + div = document.createElement( "div" ); + + // Finish early in limited (non-browser) environments + if ( !div.style ) { + return; + } + + // Support: IE <=9 - 11 only + // Style of cloned element affects source element cloned (#8908) + div.style.backgroundClip = "content-box"; + div.cloneNode( true ).style.backgroundClip = ""; + support.clearCloneStyle = div.style.backgroundClip === "content-box"; + + container.style.cssText = "border:0;width:8px;height:0;top:0;left:-9999px;" + + "padding:0;margin-top:1px;position:absolute"; + container.appendChild( div ); + + jQuery.extend( support, { + pixelPosition: function() { + computeStyleTests(); + return pixelPositionVal; + }, + boxSizingReliable: function() { + computeStyleTests(); + return boxSizingReliableVal; + }, + pixelMarginRight: function() { + computeStyleTests(); + return pixelMarginRightVal; + }, + reliableMarginLeft: function() { + computeStyleTests(); + return reliableMarginLeftVal; + } + } ); +} )(); + + +function curCSS( elem, name, computed ) { + var width, minWidth, maxWidth, ret, + + // Support: Firefox 51+ + // Retrieving style before computed somehow + // fixes an issue with getting wrong values + // on detached elements + style = elem.style; + + computed = computed || getStyles( elem ); + + // getPropertyValue is needed for: + // .css('filter') (IE 9 only, #12537) + // .css('--customProperty) (#3144) + if ( computed ) { + ret = computed.getPropertyValue( name ) || computed[ name ]; + + if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) { + ret = jQuery.style( elem, name ); + } + + // A tribute to the "awesome hack by Dean Edwards" + // Android Browser returns percentage for some values, + // but width seems to be reliably pixels. + // This is against the CSSOM draft spec: + // https://drafts.csswg.org/cssom/#resolved-values + if ( !support.pixelMarginRight() && rnumnonpx.test( ret ) && rmargin.test( name ) ) { + + // Remember the original values + width = style.width; + minWidth = style.minWidth; + maxWidth = style.maxWidth; + + // Put in the new values to get a computed value out + style.minWidth = style.maxWidth = style.width = ret; + ret = computed.width; + + // Revert the changed values + style.width = width; + style.minWidth = minWidth; + style.maxWidth = maxWidth; + } + } + + return ret !== undefined ? + + // Support: IE <=9 - 11 only + // IE returns zIndex value as an integer. + ret + "" : + ret; +} + + +function addGetHookIf( conditionFn, hookFn ) { + + // Define the hook, we'll check on the first run if it's really needed. + return { + get: function() { + if ( conditionFn() ) { + + // Hook not needed (or it's not possible to use it due + // to missing dependency), remove it. + delete this.get; + return; + } + + // Hook needed; redefine it so that the support test is not executed again. + return ( this.get = hookFn ).apply( this, arguments ); + } + }; +} + + +var + + // Swappable if display is none or starts with table + // except "table", "table-cell", or "table-caption" + // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display + rdisplayswap = /^(none|table(?!-c[ea]).+)/, + rcustomProp = /^--/, + cssShow = { position: "absolute", visibility: "hidden", display: "block" }, + cssNormalTransform = { + letterSpacing: "0", + fontWeight: "400" + }, + + cssPrefixes = [ "Webkit", "Moz", "ms" ], + emptyStyle = document.createElement( "div" ).style; + +// Return a css property mapped to a potentially vendor prefixed property +function vendorPropName( name ) { + + // Shortcut for names that are not vendor prefixed + if ( name in emptyStyle ) { + return name; + } + + // Check for vendor prefixed names + var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), + i = cssPrefixes.length; + + while ( i-- ) { + name = cssPrefixes[ i ] + capName; + if ( name in emptyStyle ) { + return name; + } + } +} + +// Return a property mapped along what jQuery.cssProps suggests or to +// a vendor prefixed property. +function finalPropName( name ) { + var ret = jQuery.cssProps[ name ]; + if ( !ret ) { + ret = jQuery.cssProps[ name ] = vendorPropName( name ) || name; + } + return ret; +} + +function setPositiveNumber( elem, value, subtract ) { + + // Any relative (+/-) values have already been + // normalized at this point + var matches = rcssNum.exec( value ); + return matches ? + + // Guard against undefined "subtract", e.g., when used as in cssHooks + Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : + value; +} + +function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) { + var i, + val = 0; + + // If we already have the right measurement, avoid augmentation + if ( extra === ( isBorderBox ? "border" : "content" ) ) { + i = 4; + + // Otherwise initialize for horizontal or vertical properties + } else { + i = name === "width" ? 1 : 0; + } + + for ( ; i < 4; i += 2 ) { + + // Both box models exclude margin, so add it if we want it + if ( extra === "margin" ) { + val += jQuery.css( elem, extra + cssExpand[ i ], true, styles ); + } + + if ( isBorderBox ) { + + // border-box includes padding, so remove it if we want content + if ( extra === "content" ) { + val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + } + + // At this point, extra isn't border nor margin, so remove border + if ( extra !== "margin" ) { + val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } else { + + // At this point, extra isn't content, so add padding + val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + + // At this point, extra isn't content nor padding, so add border + if ( extra !== "padding" ) { + val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } + } + + return val; +} + +function getWidthOrHeight( elem, name, extra ) { + + // Start with computed style + var valueIsBorderBox, + styles = getStyles( elem ), + val = curCSS( elem, name, styles ), + isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; + + // Computed unit is not pixels. Stop here and return. + if ( rnumnonpx.test( val ) ) { + return val; + } + + // Check for style in case a browser which returns unreliable values + // for getComputedStyle silently falls back to the reliable elem.style + valueIsBorderBox = isBorderBox && + ( support.boxSizingReliable() || val === elem.style[ name ] ); + + // Fall back to offsetWidth/Height when value is "auto" + // This happens for inline elements with no explicit setting (gh-3571) + if ( val === "auto" ) { + val = elem[ "offset" + name[ 0 ].toUpperCase() + name.slice( 1 ) ]; + } + + // Normalize "", auto, and prepare for extra + val = parseFloat( val ) || 0; + + // Use the active box-sizing model to add/subtract irrelevant styles + return ( val + + augmentWidthOrHeight( + elem, + name, + extra || ( isBorderBox ? "border" : "content" ), + valueIsBorderBox, + styles + ) + ) + "px"; +} + +jQuery.extend( { + + // Add in style property hooks for overriding the default + // behavior of getting and setting a style property + cssHooks: { + opacity: { + get: function( elem, computed ) { + if ( computed ) { + + // We should always get a number back from opacity + var ret = curCSS( elem, "opacity" ); + return ret === "" ? "1" : ret; + } + } + } + }, + + // Don't automatically add "px" to these possibly-unitless properties + cssNumber: { + "animationIterationCount": true, + "columnCount": true, + "fillOpacity": true, + "flexGrow": true, + "flexShrink": true, + "fontWeight": true, + "lineHeight": true, + "opacity": true, + "order": true, + "orphans": true, + "widows": true, + "zIndex": true, + "zoom": true + }, + + // Add in properties whose names you wish to fix before + // setting or getting the value + cssProps: { + "float": "cssFloat" + }, + + // Get and set the style property on a DOM Node + style: function( elem, name, value, extra ) { + + // Don't set styles on text and comment nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { + return; + } + + // Make sure that we're working with the right name + var ret, type, hooks, + origName = jQuery.camelCase( name ), + isCustomProp = rcustomProp.test( name ), + style = elem.style; + + // Make sure that we're working with the right name. We don't + // want to query the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Gets hook for the prefixed version, then unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // Check if we're setting a value + if ( value !== undefined ) { + type = typeof value; + + // Convert "+=" or "-=" to relative numbers (#7345) + if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { + value = adjustCSS( elem, name, ret ); + + // Fixes bug #9237 + type = "number"; + } + + // Make sure that null and NaN values aren't set (#7116) + if ( value == null || value !== value ) { + return; + } + + // If a number was passed in, add the unit (except for certain CSS properties) + if ( type === "number" ) { + value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); + } + + // background-* props affect original clone's values + if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { + style[ name ] = "inherit"; + } + + // If a hook was provided, use that value, otherwise just set the specified value + if ( !hooks || !( "set" in hooks ) || + ( value = hooks.set( elem, value, extra ) ) !== undefined ) { + + if ( isCustomProp ) { + style.setProperty( name, value ); + } else { + style[ name ] = value; + } + } + + } else { + + // If a hook was provided get the non-computed value from there + if ( hooks && "get" in hooks && + ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { + + return ret; + } + + // Otherwise just get the value from the style object + return style[ name ]; + } + }, + + css: function( elem, name, extra, styles ) { + var val, num, hooks, + origName = jQuery.camelCase( name ), + isCustomProp = rcustomProp.test( name ); + + // Make sure that we're working with the right name. We don't + // want to modify the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Try prefixed name followed by the unprefixed name + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // If a hook was provided get the computed value from there + if ( hooks && "get" in hooks ) { + val = hooks.get( elem, true, extra ); + } + + // Otherwise, if a way to get the computed value exists, use that + if ( val === undefined ) { + val = curCSS( elem, name, styles ); + } + + // Convert "normal" to computed value + if ( val === "normal" && name in cssNormalTransform ) { + val = cssNormalTransform[ name ]; + } + + // Make numeric if forced or a qualifier was provided and val looks numeric + if ( extra === "" || extra ) { + num = parseFloat( val ); + return extra === true || isFinite( num ) ? num || 0 : val; + } + + return val; + } +} ); + +jQuery.each( [ "height", "width" ], function( i, name ) { + jQuery.cssHooks[ name ] = { + get: function( elem, computed, extra ) { + if ( computed ) { + + // Certain elements can have dimension info if we invisibly show them + // but it must have a current display style that would benefit + return rdisplayswap.test( jQuery.css( elem, "display" ) ) && + + // Support: Safari 8+ + // Table columns in Safari have non-zero offsetWidth & zero + // getBoundingClientRect().width unless display is changed. + // Support: IE <=11 only + // Running getBoundingClientRect on a disconnected node + // in IE throws an error. + ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? + swap( elem, cssShow, function() { + return getWidthOrHeight( elem, name, extra ); + } ) : + getWidthOrHeight( elem, name, extra ); + } + }, + + set: function( elem, value, extra ) { + var matches, + styles = extra && getStyles( elem ), + subtract = extra && augmentWidthOrHeight( + elem, + name, + extra, + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + styles + ); + + // Convert to pixels if value adjustment is needed + if ( subtract && ( matches = rcssNum.exec( value ) ) && + ( matches[ 3 ] || "px" ) !== "px" ) { + + elem.style[ name ] = value; + value = jQuery.css( elem, name ); + } + + return setPositiveNumber( elem, value, subtract ); + } + }; +} ); + +jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, + function( elem, computed ) { + if ( computed ) { + return ( parseFloat( curCSS( elem, "marginLeft" ) ) || + elem.getBoundingClientRect().left - + swap( elem, { marginLeft: 0 }, function() { + return elem.getBoundingClientRect().left; + } ) + ) + "px"; + } + } +); + +// These hooks are used by animate to expand properties +jQuery.each( { + margin: "", + padding: "", + border: "Width" +}, function( prefix, suffix ) { + jQuery.cssHooks[ prefix + suffix ] = { + expand: function( value ) { + var i = 0, + expanded = {}, + + // Assumes a single number if not a string + parts = typeof value === "string" ? value.split( " " ) : [ value ]; + + for ( ; i < 4; i++ ) { + expanded[ prefix + cssExpand[ i ] + suffix ] = + parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; + } + + return expanded; + } + }; + + if ( !rmargin.test( prefix ) ) { + jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; + } +} ); + +jQuery.fn.extend( { + css: function( name, value ) { + return access( this, function( elem, name, value ) { + var styles, len, + map = {}, + i = 0; + + if ( Array.isArray( name ) ) { + styles = getStyles( elem ); + len = name.length; + + for ( ; i < len; i++ ) { + map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); + } + + return map; + } + + return value !== undefined ? + jQuery.style( elem, name, value ) : + jQuery.css( elem, name ); + }, name, value, arguments.length > 1 ); + } +} ); + + +function Tween( elem, options, prop, end, easing ) { + return new Tween.prototype.init( elem, options, prop, end, easing ); +} +jQuery.Tween = Tween; + +Tween.prototype = { + constructor: Tween, + init: function( elem, options, prop, end, easing, unit ) { + this.elem = elem; + this.prop = prop; + this.easing = easing || jQuery.easing._default; + this.options = options; + this.start = this.now = this.cur(); + this.end = end; + this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); + }, + cur: function() { + var hooks = Tween.propHooks[ this.prop ]; + + return hooks && hooks.get ? + hooks.get( this ) : + Tween.propHooks._default.get( this ); + }, + run: function( percent ) { + var eased, + hooks = Tween.propHooks[ this.prop ]; + + if ( this.options.duration ) { + this.pos = eased = jQuery.easing[ this.easing ]( + percent, this.options.duration * percent, 0, 1, this.options.duration + ); + } else { + this.pos = eased = percent; + } + this.now = ( this.end - this.start ) * eased + this.start; + + if ( this.options.step ) { + this.options.step.call( this.elem, this.now, this ); + } + + if ( hooks && hooks.set ) { + hooks.set( this ); + } else { + Tween.propHooks._default.set( this ); + } + return this; + } +}; + +Tween.prototype.init.prototype = Tween.prototype; + +Tween.propHooks = { + _default: { + get: function( tween ) { + var result; + + // Use a property on the element directly when it is not a DOM element, + // or when there is no matching style property that exists. + if ( tween.elem.nodeType !== 1 || + tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { + return tween.elem[ tween.prop ]; + } + + // Passing an empty string as a 3rd parameter to .css will automatically + // attempt a parseFloat and fallback to a string if the parse fails. + // Simple values such as "10px" are parsed to Float; + // complex values such as "rotate(1rad)" are returned as-is. + result = jQuery.css( tween.elem, tween.prop, "" ); + + // Empty strings, null, undefined and "auto" are converted to 0. + return !result || result === "auto" ? 0 : result; + }, + set: function( tween ) { + + // Use step hook for back compat. + // Use cssHook if its there. + // Use .style if available and use plain properties where available. + if ( jQuery.fx.step[ tween.prop ] ) { + jQuery.fx.step[ tween.prop ]( tween ); + } else if ( tween.elem.nodeType === 1 && + ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || + jQuery.cssHooks[ tween.prop ] ) ) { + jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); + } else { + tween.elem[ tween.prop ] = tween.now; + } + } + } +}; + +// Support: IE <=9 only +// Panic based approach to setting things on disconnected nodes +Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { + set: function( tween ) { + if ( tween.elem.nodeType && tween.elem.parentNode ) { + tween.elem[ tween.prop ] = tween.now; + } + } +}; + +jQuery.easing = { + linear: function( p ) { + return p; + }, + swing: function( p ) { + return 0.5 - Math.cos( p * Math.PI ) / 2; + }, + _default: "swing" +}; + +jQuery.fx = Tween.prototype.init; + +// Back compat <1.8 extension point +jQuery.fx.step = {}; + + + + +var + fxNow, inProgress, + rfxtypes = /^(?:toggle|show|hide)$/, + rrun = /queueHooks$/; + +function schedule() { + if ( inProgress ) { + if ( document.hidden === false && window.requestAnimationFrame ) { + window.requestAnimationFrame( schedule ); + } else { + window.setTimeout( schedule, jQuery.fx.interval ); + } + + jQuery.fx.tick(); + } +} + +// Animations created synchronously will run synchronously +function createFxNow() { + window.setTimeout( function() { + fxNow = undefined; + } ); + return ( fxNow = jQuery.now() ); +} + +// Generate parameters to create a standard animation +function genFx( type, includeWidth ) { + var which, + i = 0, + attrs = { height: type }; + + // If we include width, step value is 1 to do all cssExpand values, + // otherwise step value is 2 to skip over Left and Right + includeWidth = includeWidth ? 1 : 0; + for ( ; i < 4; i += 2 - includeWidth ) { + which = cssExpand[ i ]; + attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; + } + + if ( includeWidth ) { + attrs.opacity = attrs.width = type; + } + + return attrs; +} + +function createTween( value, prop, animation ) { + var tween, + collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), + index = 0, + length = collection.length; + for ( ; index < length; index++ ) { + if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { + + // We're done with this property + return tween; + } + } +} + +function defaultPrefilter( elem, props, opts ) { + var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, + isBox = "width" in props || "height" in props, + anim = this, + orig = {}, + style = elem.style, + hidden = elem.nodeType && isHiddenWithinTree( elem ), + dataShow = dataPriv.get( elem, "fxshow" ); + + // Queue-skipping animations hijack the fx hooks + if ( !opts.queue ) { + hooks = jQuery._queueHooks( elem, "fx" ); + if ( hooks.unqueued == null ) { + hooks.unqueued = 0; + oldfire = hooks.empty.fire; + hooks.empty.fire = function() { + if ( !hooks.unqueued ) { + oldfire(); + } + }; + } + hooks.unqueued++; + + anim.always( function() { + + // Ensure the complete handler is called before this completes + anim.always( function() { + hooks.unqueued--; + if ( !jQuery.queue( elem, "fx" ).length ) { + hooks.empty.fire(); + } + } ); + } ); + } + + // Detect show/hide animations + for ( prop in props ) { + value = props[ prop ]; + if ( rfxtypes.test( value ) ) { + delete props[ prop ]; + toggle = toggle || value === "toggle"; + if ( value === ( hidden ? "hide" : "show" ) ) { + + // Pretend to be hidden if this is a "show" and + // there is still data from a stopped show/hide + if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { + hidden = true; + + // Ignore all other no-op show/hide data + } else { + continue; + } + } + orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); + } + } + + // Bail out if this is a no-op like .hide().hide() + propTween = !jQuery.isEmptyObject( props ); + if ( !propTween && jQuery.isEmptyObject( orig ) ) { + return; + } + + // Restrict "overflow" and "display" styles during box animations + if ( isBox && elem.nodeType === 1 ) { + + // Support: IE <=9 - 11, Edge 12 - 13 + // Record all 3 overflow attributes because IE does not infer the shorthand + // from identically-valued overflowX and overflowY + opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; + + // Identify a display type, preferring old show/hide data over the CSS cascade + restoreDisplay = dataShow && dataShow.display; + if ( restoreDisplay == null ) { + restoreDisplay = dataPriv.get( elem, "display" ); + } + display = jQuery.css( elem, "display" ); + if ( display === "none" ) { + if ( restoreDisplay ) { + display = restoreDisplay; + } else { + + // Get nonempty value(s) by temporarily forcing visibility + showHide( [ elem ], true ); + restoreDisplay = elem.style.display || restoreDisplay; + display = jQuery.css( elem, "display" ); + showHide( [ elem ] ); + } + } + + // Animate inline elements as inline-block + if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { + if ( jQuery.css( elem, "float" ) === "none" ) { + + // Restore the original display value at the end of pure show/hide animations + if ( !propTween ) { + anim.done( function() { + style.display = restoreDisplay; + } ); + if ( restoreDisplay == null ) { + display = style.display; + restoreDisplay = display === "none" ? "" : display; + } + } + style.display = "inline-block"; + } + } + } + + if ( opts.overflow ) { + style.overflow = "hidden"; + anim.always( function() { + style.overflow = opts.overflow[ 0 ]; + style.overflowX = opts.overflow[ 1 ]; + style.overflowY = opts.overflow[ 2 ]; + } ); + } + + // Implement show/hide animations + propTween = false; + for ( prop in orig ) { + + // General show/hide setup for this element animation + if ( !propTween ) { + if ( dataShow ) { + if ( "hidden" in dataShow ) { + hidden = dataShow.hidden; + } + } else { + dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); + } + + // Store hidden/visible for toggle so `.stop().toggle()` "reverses" + if ( toggle ) { + dataShow.hidden = !hidden; + } + + // Show elements before animating them + if ( hidden ) { + showHide( [ elem ], true ); + } + + /* eslint-disable no-loop-func */ + + anim.done( function() { + + /* eslint-enable no-loop-func */ + + // The final step of a "hide" animation is actually hiding the element + if ( !hidden ) { + showHide( [ elem ] ); + } + dataPriv.remove( elem, "fxshow" ); + for ( prop in orig ) { + jQuery.style( elem, prop, orig[ prop ] ); + } + } ); + } + + // Per-property setup + propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); + if ( !( prop in dataShow ) ) { + dataShow[ prop ] = propTween.start; + if ( hidden ) { + propTween.end = propTween.start; + propTween.start = 0; + } + } + } +} + +function propFilter( props, specialEasing ) { + var index, name, easing, value, hooks; + + // camelCase, specialEasing and expand cssHook pass + for ( index in props ) { + name = jQuery.camelCase( index ); + easing = specialEasing[ name ]; + value = props[ index ]; + if ( Array.isArray( value ) ) { + easing = value[ 1 ]; + value = props[ index ] = value[ 0 ]; + } + + if ( index !== name ) { + props[ name ] = value; + delete props[ index ]; + } + + hooks = jQuery.cssHooks[ name ]; + if ( hooks && "expand" in hooks ) { + value = hooks.expand( value ); + delete props[ name ]; + + // Not quite $.extend, this won't overwrite existing keys. + // Reusing 'index' because we have the correct "name" + for ( index in value ) { + if ( !( index in props ) ) { + props[ index ] = value[ index ]; + specialEasing[ index ] = easing; + } + } + } else { + specialEasing[ name ] = easing; + } + } +} + +function Animation( elem, properties, options ) { + var result, + stopped, + index = 0, + length = Animation.prefilters.length, + deferred = jQuery.Deferred().always( function() { + + // Don't match elem in the :animated selector + delete tick.elem; + } ), + tick = function() { + if ( stopped ) { + return false; + } + var currentTime = fxNow || createFxNow(), + remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), + + // Support: Android 2.3 only + // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) + temp = remaining / animation.duration || 0, + percent = 1 - temp, + index = 0, + length = animation.tweens.length; + + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( percent ); + } + + deferred.notifyWith( elem, [ animation, percent, remaining ] ); + + // If there's more to do, yield + if ( percent < 1 && length ) { + return remaining; + } + + // If this was an empty animation, synthesize a final progress notification + if ( !length ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + } + + // Resolve the animation and report its conclusion + deferred.resolveWith( elem, [ animation ] ); + return false; + }, + animation = deferred.promise( { + elem: elem, + props: jQuery.extend( {}, properties ), + opts: jQuery.extend( true, { + specialEasing: {}, + easing: jQuery.easing._default + }, options ), + originalProperties: properties, + originalOptions: options, + startTime: fxNow || createFxNow(), + duration: options.duration, + tweens: [], + createTween: function( prop, end ) { + var tween = jQuery.Tween( elem, animation.opts, prop, end, + animation.opts.specialEasing[ prop ] || animation.opts.easing ); + animation.tweens.push( tween ); + return tween; + }, + stop: function( gotoEnd ) { + var index = 0, + + // If we are going to the end, we want to run all the tweens + // otherwise we skip this part + length = gotoEnd ? animation.tweens.length : 0; + if ( stopped ) { + return this; + } + stopped = true; + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( 1 ); + } + + // Resolve when we played the last frame; otherwise, reject + if ( gotoEnd ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + deferred.resolveWith( elem, [ animation, gotoEnd ] ); + } else { + deferred.rejectWith( elem, [ animation, gotoEnd ] ); + } + return this; + } + } ), + props = animation.props; + + propFilter( props, animation.opts.specialEasing ); + + for ( ; index < length; index++ ) { + result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); + if ( result ) { + if ( jQuery.isFunction( result.stop ) ) { + jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = + jQuery.proxy( result.stop, result ); + } + return result; + } + } + + jQuery.map( props, createTween, animation ); + + if ( jQuery.isFunction( animation.opts.start ) ) { + animation.opts.start.call( elem, animation ); + } + + // Attach callbacks from options + animation + .progress( animation.opts.progress ) + .done( animation.opts.done, animation.opts.complete ) + .fail( animation.opts.fail ) + .always( animation.opts.always ); + + jQuery.fx.timer( + jQuery.extend( tick, { + elem: elem, + anim: animation, + queue: animation.opts.queue + } ) + ); + + return animation; +} + +jQuery.Animation = jQuery.extend( Animation, { + + tweeners: { + "*": [ function( prop, value ) { + var tween = this.createTween( prop, value ); + adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); + return tween; + } ] + }, + + tweener: function( props, callback ) { + if ( jQuery.isFunction( props ) ) { + callback = props; + props = [ "*" ]; + } else { + props = props.match( rnothtmlwhite ); + } + + var prop, + index = 0, + length = props.length; + + for ( ; index < length; index++ ) { + prop = props[ index ]; + Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; + Animation.tweeners[ prop ].unshift( callback ); + } + }, + + prefilters: [ defaultPrefilter ], + + prefilter: function( callback, prepend ) { + if ( prepend ) { + Animation.prefilters.unshift( callback ); + } else { + Animation.prefilters.push( callback ); + } + } +} ); + +jQuery.speed = function( speed, easing, fn ) { + var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { + complete: fn || !fn && easing || + jQuery.isFunction( speed ) && speed, + duration: speed, + easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing + }; + + // Go to the end state if fx are off + if ( jQuery.fx.off ) { + opt.duration = 0; + + } else { + if ( typeof opt.duration !== "number" ) { + if ( opt.duration in jQuery.fx.speeds ) { + opt.duration = jQuery.fx.speeds[ opt.duration ]; + + } else { + opt.duration = jQuery.fx.speeds._default; + } + } + } + + // Normalize opt.queue - true/undefined/null -> "fx" + if ( opt.queue == null || opt.queue === true ) { + opt.queue = "fx"; + } + + // Queueing + opt.old = opt.complete; + + opt.complete = function() { + if ( jQuery.isFunction( opt.old ) ) { + opt.old.call( this ); + } + + if ( opt.queue ) { + jQuery.dequeue( this, opt.queue ); + } + }; + + return opt; +}; + +jQuery.fn.extend( { + fadeTo: function( speed, to, easing, callback ) { + + // Show any hidden elements after setting opacity to 0 + return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() + + // Animate to the value specified + .end().animate( { opacity: to }, speed, easing, callback ); + }, + animate: function( prop, speed, easing, callback ) { + var empty = jQuery.isEmptyObject( prop ), + optall = jQuery.speed( speed, easing, callback ), + doAnimation = function() { + + // Operate on a copy of prop so per-property easing won't be lost + var anim = Animation( this, jQuery.extend( {}, prop ), optall ); + + // Empty animations, or finishing resolves immediately + if ( empty || dataPriv.get( this, "finish" ) ) { + anim.stop( true ); + } + }; + doAnimation.finish = doAnimation; + + return empty || optall.queue === false ? + this.each( doAnimation ) : + this.queue( optall.queue, doAnimation ); + }, + stop: function( type, clearQueue, gotoEnd ) { + var stopQueue = function( hooks ) { + var stop = hooks.stop; + delete hooks.stop; + stop( gotoEnd ); + }; + + if ( typeof type !== "string" ) { + gotoEnd = clearQueue; + clearQueue = type; + type = undefined; + } + if ( clearQueue && type !== false ) { + this.queue( type || "fx", [] ); + } + + return this.each( function() { + var dequeue = true, + index = type != null && type + "queueHooks", + timers = jQuery.timers, + data = dataPriv.get( this ); + + if ( index ) { + if ( data[ index ] && data[ index ].stop ) { + stopQueue( data[ index ] ); + } + } else { + for ( index in data ) { + if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { + stopQueue( data[ index ] ); + } + } + } + + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && + ( type == null || timers[ index ].queue === type ) ) { + + timers[ index ].anim.stop( gotoEnd ); + dequeue = false; + timers.splice( index, 1 ); + } + } + + // Start the next in the queue if the last step wasn't forced. + // Timers currently will call their complete callbacks, which + // will dequeue but only if they were gotoEnd. + if ( dequeue || !gotoEnd ) { + jQuery.dequeue( this, type ); + } + } ); + }, + finish: function( type ) { + if ( type !== false ) { + type = type || "fx"; + } + return this.each( function() { + var index, + data = dataPriv.get( this ), + queue = data[ type + "queue" ], + hooks = data[ type + "queueHooks" ], + timers = jQuery.timers, + length = queue ? queue.length : 0; + + // Enable finishing flag on private data + data.finish = true; + + // Empty the queue first + jQuery.queue( this, type, [] ); + + if ( hooks && hooks.stop ) { + hooks.stop.call( this, true ); + } + + // Look for any active animations, and finish them + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && timers[ index ].queue === type ) { + timers[ index ].anim.stop( true ); + timers.splice( index, 1 ); + } + } + + // Look for any animations in the old queue and finish them + for ( index = 0; index < length; index++ ) { + if ( queue[ index ] && queue[ index ].finish ) { + queue[ index ].finish.call( this ); + } + } + + // Turn off finishing flag + delete data.finish; + } ); + } +} ); + +jQuery.each( [ "toggle", "show", "hide" ], function( i, name ) { + var cssFn = jQuery.fn[ name ]; + jQuery.fn[ name ] = function( speed, easing, callback ) { + return speed == null || typeof speed === "boolean" ? + cssFn.apply( this, arguments ) : + this.animate( genFx( name, true ), speed, easing, callback ); + }; +} ); + +// Generate shortcuts for custom animations +jQuery.each( { + slideDown: genFx( "show" ), + slideUp: genFx( "hide" ), + slideToggle: genFx( "toggle" ), + fadeIn: { opacity: "show" }, + fadeOut: { opacity: "hide" }, + fadeToggle: { opacity: "toggle" } +}, function( name, props ) { + jQuery.fn[ name ] = function( speed, easing, callback ) { + return this.animate( props, speed, easing, callback ); + }; +} ); + +jQuery.timers = []; +jQuery.fx.tick = function() { + var timer, + i = 0, + timers = jQuery.timers; + + fxNow = jQuery.now(); + + for ( ; i < timers.length; i++ ) { + timer = timers[ i ]; + + // Run the timer and safely remove it when done (allowing for external removal) + if ( !timer() && timers[ i ] === timer ) { + timers.splice( i--, 1 ); + } + } + + if ( !timers.length ) { + jQuery.fx.stop(); + } + fxNow = undefined; +}; + +jQuery.fx.timer = function( timer ) { + jQuery.timers.push( timer ); + jQuery.fx.start(); +}; + +jQuery.fx.interval = 13; +jQuery.fx.start = function() { + if ( inProgress ) { + return; + } + + inProgress = true; + schedule(); +}; + +jQuery.fx.stop = function() { + inProgress = null; +}; + +jQuery.fx.speeds = { + slow: 600, + fast: 200, + + // Default speed + _default: 400 +}; + + +// Based off of the plugin by Clint Helfers, with permission. +// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ +jQuery.fn.delay = function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; + type = type || "fx"; + + return this.queue( type, function( next, hooks ) { + var timeout = window.setTimeout( next, time ); + hooks.stop = function() { + window.clearTimeout( timeout ); + }; + } ); +}; + + +( function() { + var input = document.createElement( "input" ), + select = document.createElement( "select" ), + opt = select.appendChild( document.createElement( "option" ) ); + + input.type = "checkbox"; + + // Support: Android <=4.3 only + // Default value for a checkbox should be "on" + support.checkOn = input.value !== ""; + + // Support: IE <=11 only + // Must access selectedIndex to make default options select + support.optSelected = opt.selected; + + // Support: IE <=11 only + // An input loses its value after becoming a radio + input = document.createElement( "input" ); + input.value = "t"; + input.type = "radio"; + support.radioValue = input.value === "t"; +} )(); + + +var boolHook, + attrHandle = jQuery.expr.attrHandle; + +jQuery.fn.extend( { + attr: function( name, value ) { + return access( this, jQuery.attr, name, value, arguments.length > 1 ); + }, + + removeAttr: function( name ) { + return this.each( function() { + jQuery.removeAttr( this, name ); + } ); + } +} ); + +jQuery.extend( { + attr: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set attributes on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + // Fallback to prop when attributes are not supported + if ( typeof elem.getAttribute === "undefined" ) { + return jQuery.prop( elem, name, value ); + } + + // Attribute hooks are determined by the lowercase version + // Grab necessary hook if one is defined + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + hooks = jQuery.attrHooks[ name.toLowerCase() ] || + ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); + } + + if ( value !== undefined ) { + if ( value === null ) { + jQuery.removeAttr( elem, name ); + return; + } + + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + elem.setAttribute( name, value + "" ); + return value; + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + ret = jQuery.find.attr( elem, name ); + + // Non-existent attributes return null, we normalize to undefined + return ret == null ? undefined : ret; + }, + + attrHooks: { + type: { + set: function( elem, value ) { + if ( !support.radioValue && value === "radio" && + nodeName( elem, "input" ) ) { + var val = elem.value; + elem.setAttribute( "type", value ); + if ( val ) { + elem.value = val; + } + return value; + } + } + } + }, + + removeAttr: function( elem, value ) { + var name, + i = 0, + + // Attribute names can contain non-HTML whitespace characters + // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 + attrNames = value && value.match( rnothtmlwhite ); + + if ( attrNames && elem.nodeType === 1 ) { + while ( ( name = attrNames[ i++ ] ) ) { + elem.removeAttribute( name ); + } + } + } +} ); + +// Hooks for boolean attributes +boolHook = { + set: function( elem, value, name ) { + if ( value === false ) { + + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else { + elem.setAttribute( name, name ); + } + return name; + } +}; + +jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) { + var getter = attrHandle[ name ] || jQuery.find.attr; + + attrHandle[ name ] = function( elem, name, isXML ) { + var ret, handle, + lowercaseName = name.toLowerCase(); + + if ( !isXML ) { + + // Avoid an infinite loop by temporarily removing this function from the getter + handle = attrHandle[ lowercaseName ]; + attrHandle[ lowercaseName ] = ret; + ret = getter( elem, name, isXML ) != null ? + lowercaseName : + null; + attrHandle[ lowercaseName ] = handle; + } + return ret; + }; +} ); + + + + +var rfocusable = /^(?:input|select|textarea|button)$/i, + rclickable = /^(?:a|area)$/i; + +jQuery.fn.extend( { + prop: function( name, value ) { + return access( this, jQuery.prop, name, value, arguments.length > 1 ); + }, + + removeProp: function( name ) { + return this.each( function() { + delete this[ jQuery.propFix[ name ] || name ]; + } ); + } +} ); + +jQuery.extend( { + prop: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set properties on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + + // Fix name and attach hooks + name = jQuery.propFix[ name ] || name; + hooks = jQuery.propHooks[ name ]; + } + + if ( value !== undefined ) { + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + return ( elem[ name ] = value ); + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + return elem[ name ]; + }, + + propHooks: { + tabIndex: { + get: function( elem ) { + + // Support: IE <=9 - 11 only + // elem.tabIndex doesn't always return the + // correct value when it hasn't been explicitly set + // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + // Use proper attribute retrieval(#12072) + var tabindex = jQuery.find.attr( elem, "tabindex" ); + + if ( tabindex ) { + return parseInt( tabindex, 10 ); + } + + if ( + rfocusable.test( elem.nodeName ) || + rclickable.test( elem.nodeName ) && + elem.href + ) { + return 0; + } + + return -1; + } + } + }, + + propFix: { + "for": "htmlFor", + "class": "className" + } +} ); + +// Support: IE <=11 only +// Accessing the selectedIndex property +// forces the browser to respect setting selected +// on the option +// The getter ensures a default option is selected +// when in an optgroup +// eslint rule "no-unused-expressions" is disabled for this code +// since it considers such accessions noop +if ( !support.optSelected ) { + jQuery.propHooks.selected = { + get: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent && parent.parentNode ) { + parent.parentNode.selectedIndex; + } + return null; + }, + set: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent ) { + parent.selectedIndex; + + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + } + }; +} + +jQuery.each( [ + "tabIndex", + "readOnly", + "maxLength", + "cellSpacing", + "cellPadding", + "rowSpan", + "colSpan", + "useMap", + "frameBorder", + "contentEditable" +], function() { + jQuery.propFix[ this.toLowerCase() ] = this; +} ); + + + + + // Strip and collapse whitespace according to HTML spec + // https://html.spec.whatwg.org/multipage/infrastructure.html#strip-and-collapse-whitespace + function stripAndCollapse( value ) { + var tokens = value.match( rnothtmlwhite ) || []; + return tokens.join( " " ); + } + + +function getClass( elem ) { + return elem.getAttribute && elem.getAttribute( "class" ) || ""; +} + +jQuery.fn.extend( { + addClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( jQuery.isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + if ( typeof value === "string" && value ) { + classes = value.match( rnothtmlwhite ) || []; + + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + if ( cur.indexOf( " " + clazz + " " ) < 0 ) { + cur += clazz + " "; + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + removeClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( jQuery.isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + if ( !arguments.length ) { + return this.attr( "class", "" ); + } + + if ( typeof value === "string" && value ) { + classes = value.match( rnothtmlwhite ) || []; + + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + + // This expression is here for better compressibility (see addClass) + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + + // Remove *all* instances + while ( cur.indexOf( " " + clazz + " " ) > -1 ) { + cur = cur.replace( " " + clazz + " ", " " ); + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var type = typeof value; + + if ( typeof stateVal === "boolean" && type === "string" ) { + return stateVal ? this.addClass( value ) : this.removeClass( value ); + } + + if ( jQuery.isFunction( value ) ) { + return this.each( function( i ) { + jQuery( this ).toggleClass( + value.call( this, i, getClass( this ), stateVal ), + stateVal + ); + } ); + } + + return this.each( function() { + var className, i, self, classNames; + + if ( type === "string" ) { + + // Toggle individual class names + i = 0; + self = jQuery( this ); + classNames = value.match( rnothtmlwhite ) || []; + + while ( ( className = classNames[ i++ ] ) ) { + + // Check each className given, space separated list + if ( self.hasClass( className ) ) { + self.removeClass( className ); + } else { + self.addClass( className ); + } + } + + // Toggle whole class name + } else if ( value === undefined || type === "boolean" ) { + className = getClass( this ); + if ( className ) { + + // Store className if set + dataPriv.set( this, "__className__", className ); + } + + // If the element has a class name or if we're passed `false`, + // then remove the whole classname (if there was one, the above saved it). + // Otherwise bring back whatever was previously saved (if anything), + // falling back to the empty string if nothing was stored. + if ( this.setAttribute ) { + this.setAttribute( "class", + className || value === false ? + "" : + dataPriv.get( this, "__className__" ) || "" + ); + } + } + } ); + }, + + hasClass: function( selector ) { + var className, elem, + i = 0; + + className = " " + selector + " "; + while ( ( elem = this[ i++ ] ) ) { + if ( elem.nodeType === 1 && + ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { + return true; + } + } + + return false; + } +} ); + + + + +var rreturn = /\r/g; + +jQuery.fn.extend( { + val: function( value ) { + var hooks, ret, isFunction, + elem = this[ 0 ]; + + if ( !arguments.length ) { + if ( elem ) { + hooks = jQuery.valHooks[ elem.type ] || + jQuery.valHooks[ elem.nodeName.toLowerCase() ]; + + if ( hooks && + "get" in hooks && + ( ret = hooks.get( elem, "value" ) ) !== undefined + ) { + return ret; + } + + ret = elem.value; + + // Handle most common string cases + if ( typeof ret === "string" ) { + return ret.replace( rreturn, "" ); + } + + // Handle cases where value is null/undef or number + return ret == null ? "" : ret; + } + + return; + } + + isFunction = jQuery.isFunction( value ); + + return this.each( function( i ) { + var val; + + if ( this.nodeType !== 1 ) { + return; + } + + if ( isFunction ) { + val = value.call( this, i, jQuery( this ).val() ); + } else { + val = value; + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + + } else if ( typeof val === "number" ) { + val += ""; + + } else if ( Array.isArray( val ) ) { + val = jQuery.map( val, function( value ) { + return value == null ? "" : value + ""; + } ); + } + + hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; + + // If set returns undefined, fall back to normal setting + if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { + this.value = val; + } + } ); + } +} ); + +jQuery.extend( { + valHooks: { + option: { + get: function( elem ) { + + var val = jQuery.find.attr( elem, "value" ); + return val != null ? + val : + + // Support: IE <=10 - 11 only + // option.text throws exceptions (#14686, #14858) + // Strip and collapse whitespace + // https://html.spec.whatwg.org/#strip-and-collapse-whitespace + stripAndCollapse( jQuery.text( elem ) ); + } + }, + select: { + get: function( elem ) { + var value, option, i, + options = elem.options, + index = elem.selectedIndex, + one = elem.type === "select-one", + values = one ? null : [], + max = one ? index + 1 : options.length; + + if ( index < 0 ) { + i = max; + + } else { + i = one ? index : 0; + } + + // Loop through all the selected options + for ( ; i < max; i++ ) { + option = options[ i ]; + + // Support: IE <=9 only + // IE8-9 doesn't update selected after form reset (#2551) + if ( ( option.selected || i === index ) && + + // Don't return options that are disabled or in a disabled optgroup + !option.disabled && + ( !option.parentNode.disabled || + !nodeName( option.parentNode, "optgroup" ) ) ) { + + // Get the specific value for the option + value = jQuery( option ).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + return values; + }, + + set: function( elem, value ) { + var optionSet, option, + options = elem.options, + values = jQuery.makeArray( value ), + i = options.length; + + while ( i-- ) { + option = options[ i ]; + + /* eslint-disable no-cond-assign */ + + if ( option.selected = + jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 + ) { + optionSet = true; + } + + /* eslint-enable no-cond-assign */ + } + + // Force browsers to behave consistently when non-matching value is set + if ( !optionSet ) { + elem.selectedIndex = -1; + } + return values; + } + } + } +} ); + +// Radios and checkboxes getter/setter +jQuery.each( [ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = { + set: function( elem, value ) { + if ( Array.isArray( value ) ) { + return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); + } + } + }; + if ( !support.checkOn ) { + jQuery.valHooks[ this ].get = function( elem ) { + return elem.getAttribute( "value" ) === null ? "on" : elem.value; + }; + } +} ); + + + + +// Return jQuery for attributes-only inclusion + + +var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/; + +jQuery.extend( jQuery.event, { + + trigger: function( event, data, elem, onlyHandlers ) { + + var i, cur, tmp, bubbleType, ontype, handle, special, + eventPath = [ elem || document ], + type = hasOwn.call( event, "type" ) ? event.type : event, + namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; + + cur = tmp = elem = elem || document; + + // Don't do events on text and comment nodes + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf( "." ) > -1 ) { + + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split( "." ); + type = namespaces.shift(); + namespaces.sort(); + } + ontype = type.indexOf( ":" ) < 0 && "on" + type; + + // Caller can pass in a jQuery.Event object, Object, or just an event type string + event = event[ jQuery.expando ] ? + event : + new jQuery.Event( type, typeof event === "object" && event ); + + // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) + event.isTrigger = onlyHandlers ? 2 : 3; + event.namespace = namespaces.join( "." ); + event.rnamespace = event.namespace ? + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : + null; + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data == null ? + [ event ] : + jQuery.makeArray( data, [ event ] ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + if ( !rfocusMorph.test( bubbleType + type ) ) { + cur = cur.parentNode; + } + for ( ; cur; cur = cur.parentNode ) { + eventPath.push( cur ); + tmp = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( tmp === ( elem.ownerDocument || document ) ) { + eventPath.push( tmp.defaultView || tmp.parentWindow || window ); + } + } + + // Fire handlers on the event path + i = 0; + while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { + + event.type = i > 1 ? + bubbleType : + special.bindType || type; + + // jQuery handler + handle = ( dataPriv.get( cur, "events" ) || {} )[ event.type ] && + dataPriv.get( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + + // Native handler + handle = ontype && cur[ ontype ]; + if ( handle && handle.apply && acceptData( cur ) ) { + event.result = handle.apply( cur, data ); + if ( event.result === false ) { + event.preventDefault(); + } + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( ( !special._default || + special._default.apply( eventPath.pop(), data ) === false ) && + acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name as the event. + // Don't do default actions on window, that's where global variables be (#6170) + if ( ontype && jQuery.isFunction( elem[ type ] ) && !jQuery.isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + tmp = elem[ ontype ]; + + if ( tmp ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + elem[ type ](); + jQuery.event.triggered = undefined; + + if ( tmp ) { + elem[ ontype ] = tmp; + } + } + } + } + + return event.result; + }, + + // Piggyback on a donor event to simulate a different one + // Used only for `focus(in | out)` events + simulate: function( type, elem, event ) { + var e = jQuery.extend( + new jQuery.Event(), + event, + { + type: type, + isSimulated: true + } + ); + + jQuery.event.trigger( e, null, elem ); + } + +} ); + +jQuery.fn.extend( { + + trigger: function( type, data ) { + return this.each( function() { + jQuery.event.trigger( type, data, this ); + } ); + }, + triggerHandler: function( type, data ) { + var elem = this[ 0 ]; + if ( elem ) { + return jQuery.event.trigger( type, data, elem, true ); + } + } +} ); + + +jQuery.each( ( "blur focus focusin focusout resize scroll click dblclick " + + "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + + "change select submit keydown keypress keyup contextmenu" ).split( " " ), + function( i, name ) { + + // Handle event binding + jQuery.fn[ name ] = function( data, fn ) { + return arguments.length > 0 ? + this.on( name, null, data, fn ) : + this.trigger( name ); + }; +} ); + +jQuery.fn.extend( { + hover: function( fnOver, fnOut ) { + return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); + } +} ); + + + + +support.focusin = "onfocusin" in window; + + +// Support: Firefox <=44 +// Firefox doesn't have focus(in | out) events +// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 +// +// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 +// focus(in | out) events fire after focus & blur events, +// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order +// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 +if ( !support.focusin ) { + jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler on the document while someone wants focusin/focusout + var handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + var doc = this.ownerDocument || this, + attaches = dataPriv.access( doc, fix ); + + if ( !attaches ) { + doc.addEventListener( orig, handler, true ); + } + dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); + }, + teardown: function() { + var doc = this.ownerDocument || this, + attaches = dataPriv.access( doc, fix ) - 1; + + if ( !attaches ) { + doc.removeEventListener( orig, handler, true ); + dataPriv.remove( doc, fix ); + + } else { + dataPriv.access( doc, fix, attaches ); + } + } + }; + } ); +} +var location = window.location; + +var nonce = jQuery.now(); + +var rquery = ( /\?/ ); + + + +// Cross-browser xml parsing +jQuery.parseXML = function( data ) { + var xml; + if ( !data || typeof data !== "string" ) { + return null; + } + + // Support: IE 9 - 11 only + // IE throws on parseFromString with invalid input. + try { + xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); + } catch ( e ) { + xml = undefined; + } + + if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { + jQuery.error( "Invalid XML: " + data ); + } + return xml; +}; + + +var + rbracket = /\[\]$/, + rCRLF = /\r?\n/g, + rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, + rsubmittable = /^(?:input|select|textarea|keygen)/i; + +function buildParams( prefix, obj, traditional, add ) { + var name; + + if ( Array.isArray( obj ) ) { + + // Serialize array item. + jQuery.each( obj, function( i, v ) { + if ( traditional || rbracket.test( prefix ) ) { + + // Treat each array item as a scalar. + add( prefix, v ); + + } else { + + // Item is non-scalar (array or object), encode its numeric index. + buildParams( + prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", + v, + traditional, + add + ); + } + } ); + + } else if ( !traditional && jQuery.type( obj ) === "object" ) { + + // Serialize object item. + for ( name in obj ) { + buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); + } + + } else { + + // Serialize scalar item. + add( prefix, obj ); + } +} + +// Serialize an array of form elements or a set of +// key/values into a query string +jQuery.param = function( a, traditional ) { + var prefix, + s = [], + add = function( key, valueOrFunction ) { + + // If value is a function, invoke it and use its return value + var value = jQuery.isFunction( valueOrFunction ) ? + valueOrFunction() : + valueOrFunction; + + s[ s.length ] = encodeURIComponent( key ) + "=" + + encodeURIComponent( value == null ? "" : value ); + }; + + // If an array was passed in, assume that it is an array of form elements. + if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { + + // Serialize the form elements + jQuery.each( a, function() { + add( this.name, this.value ); + } ); + + } else { + + // If traditional, encode the "old" way (the way 1.3.2 or older + // did it), otherwise encode params recursively. + for ( prefix in a ) { + buildParams( prefix, a[ prefix ], traditional, add ); + } + } + + // Return the resulting serialization + return s.join( "&" ); +}; + +jQuery.fn.extend( { + serialize: function() { + return jQuery.param( this.serializeArray() ); + }, + serializeArray: function() { + return this.map( function() { + + // Can add propHook for "elements" to filter or add form elements + var elements = jQuery.prop( this, "elements" ); + return elements ? jQuery.makeArray( elements ) : this; + } ) + .filter( function() { + var type = this.type; + + // Use .is( ":disabled" ) so that fieldset[disabled] works + return this.name && !jQuery( this ).is( ":disabled" ) && + rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && + ( this.checked || !rcheckableType.test( type ) ); + } ) + .map( function( i, elem ) { + var val = jQuery( this ).val(); + + if ( val == null ) { + return null; + } + + if ( Array.isArray( val ) ) { + return jQuery.map( val, function( val ) { + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ); + } + + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ).get(); + } +} ); + + +var + r20 = /%20/g, + rhash = /#.*$/, + rantiCache = /([?&])_=[^&]*/, + rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, + + // #7653, #8125, #8152: local protocol detection + rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, + rnoContent = /^(?:GET|HEAD)$/, + rprotocol = /^\/\//, + + /* Prefilters + * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) + * 2) These are called: + * - BEFORE asking for a transport + * - AFTER param serialization (s.data is a string if s.processData is true) + * 3) key is the dataType + * 4) the catchall symbol "*" can be used + * 5) execution will start with transport dataType and THEN continue down to "*" if needed + */ + prefilters = {}, + + /* Transports bindings + * 1) key is the dataType + * 2) the catchall symbol "*" can be used + * 3) selection will start with transport dataType and THEN go to "*" if needed + */ + transports = {}, + + // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression + allTypes = "*/".concat( "*" ), + + // Anchor tag for parsing the document origin + originAnchor = document.createElement( "a" ); + originAnchor.href = location.href; + +// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport +function addToPrefiltersOrTransports( structure ) { + + // dataTypeExpression is optional and defaults to "*" + return function( dataTypeExpression, func ) { + + if ( typeof dataTypeExpression !== "string" ) { + func = dataTypeExpression; + dataTypeExpression = "*"; + } + + var dataType, + i = 0, + dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; + + if ( jQuery.isFunction( func ) ) { + + // For each dataType in the dataTypeExpression + while ( ( dataType = dataTypes[ i++ ] ) ) { + + // Prepend if requested + if ( dataType[ 0 ] === "+" ) { + dataType = dataType.slice( 1 ) || "*"; + ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); + + // Otherwise append + } else { + ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); + } + } + } + }; +} + +// Base inspection function for prefilters and transports +function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { + + var inspected = {}, + seekingTransport = ( structure === transports ); + + function inspect( dataType ) { + var selected; + inspected[ dataType ] = true; + jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { + var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); + if ( typeof dataTypeOrTransport === "string" && + !seekingTransport && !inspected[ dataTypeOrTransport ] ) { + + options.dataTypes.unshift( dataTypeOrTransport ); + inspect( dataTypeOrTransport ); + return false; + } else if ( seekingTransport ) { + return !( selected = dataTypeOrTransport ); + } + } ); + return selected; + } + + return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); +} + +// A special extend for ajax options +// that takes "flat" options (not to be deep extended) +// Fixes #9887 +function ajaxExtend( target, src ) { + var key, deep, + flatOptions = jQuery.ajaxSettings.flatOptions || {}; + + for ( key in src ) { + if ( src[ key ] !== undefined ) { + ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; + } + } + if ( deep ) { + jQuery.extend( true, target, deep ); + } + + return target; +} + +/* Handles responses to an ajax request: + * - finds the right dataType (mediates between content-type and expected dataType) + * - returns the corresponding response + */ +function ajaxHandleResponses( s, jqXHR, responses ) { + + var ct, type, finalDataType, firstDataType, + contents = s.contents, + dataTypes = s.dataTypes; + + // Remove auto dataType and get content-type in the process + while ( dataTypes[ 0 ] === "*" ) { + dataTypes.shift(); + if ( ct === undefined ) { + ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); + } + } + + // Check if we're dealing with a known content-type + if ( ct ) { + for ( type in contents ) { + if ( contents[ type ] && contents[ type ].test( ct ) ) { + dataTypes.unshift( type ); + break; + } + } + } + + // Check to see if we have a response for the expected dataType + if ( dataTypes[ 0 ] in responses ) { + finalDataType = dataTypes[ 0 ]; + } else { + + // Try convertible dataTypes + for ( type in responses ) { + if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { + finalDataType = type; + break; + } + if ( !firstDataType ) { + firstDataType = type; + } + } + + // Or just use first one + finalDataType = finalDataType || firstDataType; + } + + // If we found a dataType + // We add the dataType to the list if needed + // and return the corresponding response + if ( finalDataType ) { + if ( finalDataType !== dataTypes[ 0 ] ) { + dataTypes.unshift( finalDataType ); + } + return responses[ finalDataType ]; + } +} + +/* Chain conversions given the request and the original response + * Also sets the responseXXX fields on the jqXHR instance + */ +function ajaxConvert( s, response, jqXHR, isSuccess ) { + var conv2, current, conv, tmp, prev, + converters = {}, + + // Work with a copy of dataTypes in case we need to modify it for conversion + dataTypes = s.dataTypes.slice(); + + // Create converters map with lowercased keys + if ( dataTypes[ 1 ] ) { + for ( conv in s.converters ) { + converters[ conv.toLowerCase() ] = s.converters[ conv ]; + } + } + + current = dataTypes.shift(); + + // Convert to each sequential dataType + while ( current ) { + + if ( s.responseFields[ current ] ) { + jqXHR[ s.responseFields[ current ] ] = response; + } + + // Apply the dataFilter if provided + if ( !prev && isSuccess && s.dataFilter ) { + response = s.dataFilter( response, s.dataType ); + } + + prev = current; + current = dataTypes.shift(); + + if ( current ) { + + // There's only work to do if current dataType is non-auto + if ( current === "*" ) { + + current = prev; + + // Convert response if prev dataType is non-auto and differs from current + } else if ( prev !== "*" && prev !== current ) { + + // Seek a direct converter + conv = converters[ prev + " " + current ] || converters[ "* " + current ]; + + // If none found, seek a pair + if ( !conv ) { + for ( conv2 in converters ) { + + // If conv2 outputs current + tmp = conv2.split( " " ); + if ( tmp[ 1 ] === current ) { + + // If prev can be converted to accepted input + conv = converters[ prev + " " + tmp[ 0 ] ] || + converters[ "* " + tmp[ 0 ] ]; + if ( conv ) { + + // Condense equivalence converters + if ( conv === true ) { + conv = converters[ conv2 ]; + + // Otherwise, insert the intermediate dataType + } else if ( converters[ conv2 ] !== true ) { + current = tmp[ 0 ]; + dataTypes.unshift( tmp[ 1 ] ); + } + break; + } + } + } + } + + // Apply converter (if not an equivalence) + if ( conv !== true ) { + + // Unless errors are allowed to bubble, catch and return them + if ( conv && s.throws ) { + response = conv( response ); + } else { + try { + response = conv( response ); + } catch ( e ) { + return { + state: "parsererror", + error: conv ? e : "No conversion from " + prev + " to " + current + }; + } + } + } + } + } + } + + return { state: "success", data: response }; +} + +jQuery.extend( { + + // Counter for holding the number of active queries + active: 0, + + // Last-Modified header cache for next request + lastModified: {}, + etag: {}, + + ajaxSettings: { + url: location.href, + type: "GET", + isLocal: rlocalProtocol.test( location.protocol ), + global: true, + processData: true, + async: true, + contentType: "application/x-www-form-urlencoded; charset=UTF-8", + + /* + timeout: 0, + data: null, + dataType: null, + username: null, + password: null, + cache: null, + throws: false, + traditional: false, + headers: {}, + */ + + accepts: { + "*": allTypes, + text: "text/plain", + html: "text/html", + xml: "application/xml, text/xml", + json: "application/json, text/javascript" + }, + + contents: { + xml: /\bxml\b/, + html: /\bhtml/, + json: /\bjson\b/ + }, + + responseFields: { + xml: "responseXML", + text: "responseText", + json: "responseJSON" + }, + + // Data converters + // Keys separate source (or catchall "*") and destination types with a single space + converters: { + + // Convert anything to text + "* text": String, + + // Text to html (true = no transformation) + "text html": true, + + // Evaluate text as a json expression + "text json": JSON.parse, + + // Parse text as xml + "text xml": jQuery.parseXML + }, + + // For options that shouldn't be deep extended: + // you can add your own custom options here if + // and when you create one that shouldn't be + // deep extended (see ajaxExtend) + flatOptions: { + url: true, + context: true + } + }, + + // Creates a full fledged settings object into target + // with both ajaxSettings and settings fields. + // If target is omitted, writes into ajaxSettings. + ajaxSetup: function( target, settings ) { + return settings ? + + // Building a settings object + ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : + + // Extending ajaxSettings + ajaxExtend( jQuery.ajaxSettings, target ); + }, + + ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), + ajaxTransport: addToPrefiltersOrTransports( transports ), + + // Main method + ajax: function( url, options ) { + + // If url is an object, simulate pre-1.5 signature + if ( typeof url === "object" ) { + options = url; + url = undefined; + } + + // Force options to be an object + options = options || {}; + + var transport, + + // URL without anti-cache param + cacheURL, + + // Response headers + responseHeadersString, + responseHeaders, + + // timeout handle + timeoutTimer, + + // Url cleanup var + urlAnchor, + + // Request state (becomes false upon send and true upon completion) + completed, + + // To know if global events are to be dispatched + fireGlobals, + + // Loop variable + i, + + // uncached part of the url + uncached, + + // Create the final options object + s = jQuery.ajaxSetup( {}, options ), + + // Callbacks context + callbackContext = s.context || s, + + // Context for global events is callbackContext if it is a DOM node or jQuery collection + globalEventContext = s.context && + ( callbackContext.nodeType || callbackContext.jquery ) ? + jQuery( callbackContext ) : + jQuery.event, + + // Deferreds + deferred = jQuery.Deferred(), + completeDeferred = jQuery.Callbacks( "once memory" ), + + // Status-dependent callbacks + statusCode = s.statusCode || {}, + + // Headers (they are sent all at once) + requestHeaders = {}, + requestHeadersNames = {}, + + // Default abort message + strAbort = "canceled", + + // Fake xhr + jqXHR = { + readyState: 0, + + // Builds headers hashtable if needed + getResponseHeader: function( key ) { + var match; + if ( completed ) { + if ( !responseHeaders ) { + responseHeaders = {}; + while ( ( match = rheaders.exec( responseHeadersString ) ) ) { + responseHeaders[ match[ 1 ].toLowerCase() ] = match[ 2 ]; + } + } + match = responseHeaders[ key.toLowerCase() ]; + } + return match == null ? null : match; + }, + + // Raw string + getAllResponseHeaders: function() { + return completed ? responseHeadersString : null; + }, + + // Caches the header + setRequestHeader: function( name, value ) { + if ( completed == null ) { + name = requestHeadersNames[ name.toLowerCase() ] = + requestHeadersNames[ name.toLowerCase() ] || name; + requestHeaders[ name ] = value; + } + return this; + }, + + // Overrides response content-type header + overrideMimeType: function( type ) { + if ( completed == null ) { + s.mimeType = type; + } + return this; + }, + + // Status-dependent callbacks + statusCode: function( map ) { + var code; + if ( map ) { + if ( completed ) { + + // Execute the appropriate callbacks + jqXHR.always( map[ jqXHR.status ] ); + } else { + + // Lazy-add the new callbacks in a way that preserves old ones + for ( code in map ) { + statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; + } + } + } + return this; + }, + + // Cancel the request + abort: function( statusText ) { + var finalText = statusText || strAbort; + if ( transport ) { + transport.abort( finalText ); + } + done( 0, finalText ); + return this; + } + }; + + // Attach deferreds + deferred.promise( jqXHR ); + + // Add protocol if not provided (prefilters might expect it) + // Handle falsy url in the settings object (#10093: consistency with old signature) + // We also use the url parameter if available + s.url = ( ( url || s.url || location.href ) + "" ) + .replace( rprotocol, location.protocol + "//" ); + + // Alias method option to type as per ticket #12004 + s.type = options.method || options.type || s.method || s.type; + + // Extract dataTypes list + s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; + + // A cross-domain request is in order when the origin doesn't match the current origin. + if ( s.crossDomain == null ) { + urlAnchor = document.createElement( "a" ); + + // Support: IE <=8 - 11, Edge 12 - 13 + // IE throws exception on accessing the href property if url is malformed, + // e.g. http://example.com:80x/ + try { + urlAnchor.href = s.url; + + // Support: IE <=8 - 11 only + // Anchor's host property isn't correctly set when s.url is relative + urlAnchor.href = urlAnchor.href; + s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== + urlAnchor.protocol + "//" + urlAnchor.host; + } catch ( e ) { + + // If there is an error parsing the URL, assume it is crossDomain, + // it can be rejected by the transport if it is invalid + s.crossDomain = true; + } + } + + // Convert data if not already a string + if ( s.data && s.processData && typeof s.data !== "string" ) { + s.data = jQuery.param( s.data, s.traditional ); + } + + // Apply prefilters + inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); + + // If request was aborted inside a prefilter, stop there + if ( completed ) { + return jqXHR; + } + + // We can fire global events as of now if asked to + // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) + fireGlobals = jQuery.event && s.global; + + // Watch for a new set of requests + if ( fireGlobals && jQuery.active++ === 0 ) { + jQuery.event.trigger( "ajaxStart" ); + } + + // Uppercase the type + s.type = s.type.toUpperCase(); + + // Determine if request has content + s.hasContent = !rnoContent.test( s.type ); + + // Save the URL in case we're toying with the If-Modified-Since + // and/or If-None-Match header later on + // Remove hash to simplify url manipulation + cacheURL = s.url.replace( rhash, "" ); + + // More options handling for requests with no content + if ( !s.hasContent ) { + + // Remember the hash so we can put it back + uncached = s.url.slice( cacheURL.length ); + + // If data is available, append data to url + if ( s.data ) { + cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; + + // #9682: remove data so that it's not used in an eventual retry + delete s.data; + } + + // Add or update anti-cache param if needed + if ( s.cache === false ) { + cacheURL = cacheURL.replace( rantiCache, "$1" ); + uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce++ ) + uncached; + } + + // Put hash and anti-cache on the URL that will be requested (gh-1732) + s.url = cacheURL + uncached; + + // Change '%20' to '+' if this is encoded form body content (gh-2658) + } else if ( s.data && s.processData && + ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { + s.data = s.data.replace( r20, "+" ); + } + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + if ( jQuery.lastModified[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); + } + if ( jQuery.etag[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); + } + } + + // Set the correct header, if data is being sent + if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { + jqXHR.setRequestHeader( "Content-Type", s.contentType ); + } + + // Set the Accepts header for the server, depending on the dataType + jqXHR.setRequestHeader( + "Accept", + s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? + s.accepts[ s.dataTypes[ 0 ] ] + + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : + s.accepts[ "*" ] + ); + + // Check for headers option + for ( i in s.headers ) { + jqXHR.setRequestHeader( i, s.headers[ i ] ); + } + + // Allow custom headers/mimetypes and early abort + if ( s.beforeSend && + ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { + + // Abort if not done already and return + return jqXHR.abort(); + } + + // Aborting is no longer a cancellation + strAbort = "abort"; + + // Install callbacks on deferreds + completeDeferred.add( s.complete ); + jqXHR.done( s.success ); + jqXHR.fail( s.error ); + + // Get transport + transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); + + // If no transport, we auto-abort + if ( !transport ) { + done( -1, "No Transport" ); + } else { + jqXHR.readyState = 1; + + // Send global event + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); + } + + // If request was aborted inside ajaxSend, stop there + if ( completed ) { + return jqXHR; + } + + // Timeout + if ( s.async && s.timeout > 0 ) { + timeoutTimer = window.setTimeout( function() { + jqXHR.abort( "timeout" ); + }, s.timeout ); + } + + try { + completed = false; + transport.send( requestHeaders, done ); + } catch ( e ) { + + // Rethrow post-completion exceptions + if ( completed ) { + throw e; + } + + // Propagate others as results + done( -1, e ); + } + } + + // Callback for when everything is done + function done( status, nativeStatusText, responses, headers ) { + var isSuccess, success, error, response, modified, + statusText = nativeStatusText; + + // Ignore repeat invocations + if ( completed ) { + return; + } + + completed = true; + + // Clear timeout if it exists + if ( timeoutTimer ) { + window.clearTimeout( timeoutTimer ); + } + + // Dereference transport for early garbage collection + // (no matter how long the jqXHR object will be used) + transport = undefined; + + // Cache response headers + responseHeadersString = headers || ""; + + // Set readyState + jqXHR.readyState = status > 0 ? 4 : 0; + + // Determine if successful + isSuccess = status >= 200 && status < 300 || status === 304; + + // Get response data + if ( responses ) { + response = ajaxHandleResponses( s, jqXHR, responses ); + } + + // Convert no matter what (that way responseXXX fields are always set) + response = ajaxConvert( s, response, jqXHR, isSuccess ); + + // If successful, handle type chaining + if ( isSuccess ) { + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + modified = jqXHR.getResponseHeader( "Last-Modified" ); + if ( modified ) { + jQuery.lastModified[ cacheURL ] = modified; + } + modified = jqXHR.getResponseHeader( "etag" ); + if ( modified ) { + jQuery.etag[ cacheURL ] = modified; + } + } + + // if no content + if ( status === 204 || s.type === "HEAD" ) { + statusText = "nocontent"; + + // if not modified + } else if ( status === 304 ) { + statusText = "notmodified"; + + // If we have data, let's convert it + } else { + statusText = response.state; + success = response.data; + error = response.error; + isSuccess = !error; + } + } else { + + // Extract error from statusText and normalize for non-aborts + error = statusText; + if ( status || !statusText ) { + statusText = "error"; + if ( status < 0 ) { + status = 0; + } + } + } + + // Set data for the fake xhr object + jqXHR.status = status; + jqXHR.statusText = ( nativeStatusText || statusText ) + ""; + + // Success/Error + if ( isSuccess ) { + deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); + } else { + deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); + } + + // Status-dependent callbacks + jqXHR.statusCode( statusCode ); + statusCode = undefined; + + if ( fireGlobals ) { + globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", + [ jqXHR, s, isSuccess ? success : error ] ); + } + + // Complete + completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); + + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); + + // Handle the global AJAX counter + if ( !( --jQuery.active ) ) { + jQuery.event.trigger( "ajaxStop" ); + } + } + } + + return jqXHR; + }, + + getJSON: function( url, data, callback ) { + return jQuery.get( url, data, callback, "json" ); + }, + + getScript: function( url, callback ) { + return jQuery.get( url, undefined, callback, "script" ); + } +} ); + +jQuery.each( [ "get", "post" ], function( i, method ) { + jQuery[ method ] = function( url, data, callback, type ) { + + // Shift arguments if data argument was omitted + if ( jQuery.isFunction( data ) ) { + type = type || callback; + callback = data; + data = undefined; + } + + // The url can be an options object (which then must have .url) + return jQuery.ajax( jQuery.extend( { + url: url, + type: method, + dataType: type, + data: data, + success: callback + }, jQuery.isPlainObject( url ) && url ) ); + }; +} ); + + +jQuery._evalUrl = function( url ) { + return jQuery.ajax( { + url: url, + + // Make this explicit, since user can override this through ajaxSetup (#11264) + type: "GET", + dataType: "script", + cache: true, + async: false, + global: false, + "throws": true + } ); +}; + + +jQuery.fn.extend( { + wrapAll: function( html ) { + var wrap; + + if ( this[ 0 ] ) { + if ( jQuery.isFunction( html ) ) { + html = html.call( this[ 0 ] ); + } + + // The elements to wrap the target around + wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); + + if ( this[ 0 ].parentNode ) { + wrap.insertBefore( this[ 0 ] ); + } + + wrap.map( function() { + var elem = this; + + while ( elem.firstElementChild ) { + elem = elem.firstElementChild; + } + + return elem; + } ).append( this ); + } + + return this; + }, + + wrapInner: function( html ) { + if ( jQuery.isFunction( html ) ) { + return this.each( function( i ) { + jQuery( this ).wrapInner( html.call( this, i ) ); + } ); + } + + return this.each( function() { + var self = jQuery( this ), + contents = self.contents(); + + if ( contents.length ) { + contents.wrapAll( html ); + + } else { + self.append( html ); + } + } ); + }, + + wrap: function( html ) { + var isFunction = jQuery.isFunction( html ); + + return this.each( function( i ) { + jQuery( this ).wrapAll( isFunction ? html.call( this, i ) : html ); + } ); + }, + + unwrap: function( selector ) { + this.parent( selector ).not( "body" ).each( function() { + jQuery( this ).replaceWith( this.childNodes ); + } ); + return this; + } +} ); + + +jQuery.expr.pseudos.hidden = function( elem ) { + return !jQuery.expr.pseudos.visible( elem ); +}; +jQuery.expr.pseudos.visible = function( elem ) { + return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); +}; + + + + +jQuery.ajaxSettings.xhr = function() { + try { + return new window.XMLHttpRequest(); + } catch ( e ) {} +}; + +var xhrSuccessStatus = { + + // File protocol always yields status code 0, assume 200 + 0: 200, + + // Support: IE <=9 only + // #1450: sometimes IE returns 1223 when it should be 204 + 1223: 204 + }, + xhrSupported = jQuery.ajaxSettings.xhr(); + +support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); +support.ajax = xhrSupported = !!xhrSupported; + +jQuery.ajaxTransport( function( options ) { + var callback, errorCallback; + + // Cross domain only allowed if supported through XMLHttpRequest + if ( support.cors || xhrSupported && !options.crossDomain ) { + return { + send: function( headers, complete ) { + var i, + xhr = options.xhr(); + + xhr.open( + options.type, + options.url, + options.async, + options.username, + options.password + ); + + // Apply custom fields if provided + if ( options.xhrFields ) { + for ( i in options.xhrFields ) { + xhr[ i ] = options.xhrFields[ i ]; + } + } + + // Override mime type if needed + if ( options.mimeType && xhr.overrideMimeType ) { + xhr.overrideMimeType( options.mimeType ); + } + + // X-Requested-With header + // For cross-domain requests, seeing as conditions for a preflight are + // akin to a jigsaw puzzle, we simply never set it to be sure. + // (it can always be set on a per-request basis or even using ajaxSetup) + // For same-domain requests, won't change header if already provided. + if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { + headers[ "X-Requested-With" ] = "XMLHttpRequest"; + } + + // Set headers + for ( i in headers ) { + xhr.setRequestHeader( i, headers[ i ] ); + } + + // Callback + callback = function( type ) { + return function() { + if ( callback ) { + callback = errorCallback = xhr.onload = + xhr.onerror = xhr.onabort = xhr.onreadystatechange = null; + + if ( type === "abort" ) { + xhr.abort(); + } else if ( type === "error" ) { + + // Support: IE <=9 only + // On a manual native abort, IE9 throws + // errors on any property access that is not readyState + if ( typeof xhr.status !== "number" ) { + complete( 0, "error" ); + } else { + complete( + + // File: protocol always yields status 0; see #8605, #14207 + xhr.status, + xhr.statusText + ); + } + } else { + complete( + xhrSuccessStatus[ xhr.status ] || xhr.status, + xhr.statusText, + + // Support: IE <=9 only + // IE9 has no XHR2 but throws on binary (trac-11426) + // For XHR2 non-text, let the caller handle it (gh-2498) + ( xhr.responseType || "text" ) !== "text" || + typeof xhr.responseText !== "string" ? + { binary: xhr.response } : + { text: xhr.responseText }, + xhr.getAllResponseHeaders() + ); + } + } + }; + }; + + // Listen to events + xhr.onload = callback(); + errorCallback = xhr.onerror = callback( "error" ); + + // Support: IE 9 only + // Use onreadystatechange to replace onabort + // to handle uncaught aborts + if ( xhr.onabort !== undefined ) { + xhr.onabort = errorCallback; + } else { + xhr.onreadystatechange = function() { + + // Check readyState before timeout as it changes + if ( xhr.readyState === 4 ) { + + // Allow onerror to be called first, + // but that will not handle a native abort + // Also, save errorCallback to a variable + // as xhr.onerror cannot be accessed + window.setTimeout( function() { + if ( callback ) { + errorCallback(); + } + } ); + } + }; + } + + // Create the abort callback + callback = callback( "abort" ); + + try { + + // Do send the request (this may raise an exception) + xhr.send( options.hasContent && options.data || null ); + } catch ( e ) { + + // #14683: Only rethrow if this hasn't been notified as an error yet + if ( callback ) { + throw e; + } + } + }, + + abort: function() { + if ( callback ) { + callback(); + } + } + }; + } +} ); + + + + +// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) +jQuery.ajaxPrefilter( function( s ) { + if ( s.crossDomain ) { + s.contents.script = false; + } +} ); + +// Install script dataType +jQuery.ajaxSetup( { + accepts: { + script: "text/javascript, application/javascript, " + + "application/ecmascript, application/x-ecmascript" + }, + contents: { + script: /\b(?:java|ecma)script\b/ + }, + converters: { + "text script": function( text ) { + jQuery.globalEval( text ); + return text; + } + } +} ); + +// Handle cache's special case and crossDomain +jQuery.ajaxPrefilter( "script", function( s ) { + if ( s.cache === undefined ) { + s.cache = false; + } + if ( s.crossDomain ) { + s.type = "GET"; + } +} ); + +// Bind script tag hack transport +jQuery.ajaxTransport( "script", function( s ) { + + // This transport only deals with cross domain requests + if ( s.crossDomain ) { + var script, callback; + return { + send: function( _, complete ) { + script = jQuery( "