Merge "Fix type to callable on FileRepo::getErrorCleanupFunction"
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>
Wed, 5 Jun 2019 08:56:34 +0000 (08:56 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Wed, 5 Jun 2019 08:56:34 +0000 (08:56 +0000)
99 files changed:
RELEASE-NOTES-1.34
autoload.php
includes/MediaWikiServices.php
includes/TemplateParser.php
includes/actions/InfoAction.php
includes/api/ApiFormatBase.php
includes/api/ApiHelp.php
includes/api/ApiQuery.php
includes/api/ApiQueryLanguageinfo.php [new file with mode: 0644]
includes/api/SearchApi.php
includes/api/i18n/en.json
includes/api/i18n/qqq.json
includes/debug/logger/ConsoleSpi.php
includes/export/XmlDumpWriter.php
includes/htmlform/HTMLForm.php
includes/interwiki/InterwikiLookup.php
includes/interwiki/InterwikiLookupAdapter.php
includes/libs/eventrelayer/EventRelayerKafka.php
includes/libs/services/CannotReplaceActiveServiceException.php
includes/libs/services/ContainerDisabledException.php
includes/libs/services/DestructibleService.php
includes/libs/services/NoSuchServiceException.php
includes/libs/services/SalvageableService.php
includes/libs/services/ServiceAlreadyDefinedException.php
includes/libs/services/ServiceContainer.php
includes/libs/services/ServiceDisabledException.php
includes/libs/stats/IBufferingStatsdDataFactory.php
includes/skins/SkinFactory.php
includes/skins/SkinFallbackTemplate.php
includes/specials/SpecialFileDuplicateSearch.php
languages/i18n/be-tarask.json
languages/i18n/bg.json
languages/i18n/diq.json
languages/i18n/es-formal.json
languages/i18n/gl.json
languages/i18n/hy.json
languages/i18n/hyw.json
languages/i18n/lrc.json
languages/i18n/mk.json
languages/i18n/nqo.json
languages/i18n/pt.json
languages/i18n/qqq.json
languages/i18n/sq.json
languages/i18n/su.json
languages/i18n/sv.json
languages/i18n/tr.json
languages/i18n/uk.json
languages/i18n/yo.json
languages/i18n/yue.json
maintenance/Maintenance.php
package.json
tests/phpunit/includes/OutputPageTest.php
tests/phpunit/includes/Revision/McrReadNewRevisionStoreDbTest.php
tests/phpunit/includes/Revision/McrReadNewSchemaOverride.php
tests/phpunit/includes/Revision/McrRevisionStoreDbTest.php
tests/phpunit/includes/Revision/McrSchemaDetection.php
tests/phpunit/includes/Revision/McrSchemaOverride.php
tests/phpunit/includes/Revision/McrWriteBothRevisionStoreDbTest.php
tests/phpunit/includes/Revision/McrWriteBothSchemaOverride.php
tests/phpunit/includes/Revision/NoContentModelRevisionStoreDbTest.php
tests/phpunit/includes/Revision/PreMcrRevisionStoreDbTest.php
tests/phpunit/includes/Revision/PreMcrSchemaOverride.php
tests/phpunit/includes/Revision/RevisionQueryInfoTest.php
tests/phpunit/includes/Revision/RevisionStoreCacheRecordTest.php
tests/phpunit/includes/RevisionDbTestBase.php
tests/phpunit/includes/RevisionMcrWriteBothDbTest.php
tests/phpunit/includes/WikiMapTest.php
tests/phpunit/includes/api/ApiQueryLanguageinfoTest.php [new file with mode: 0644]
tests/phpunit/includes/api/ApiSetNotificationTimestampIntegrationTest.php
tests/phpunit/includes/cache/GenderCacheTest.php
tests/phpunit/includes/changes/RecentChangeTest.php
tests/phpunit/includes/content/ContentHandlerTest.php
tests/phpunit/includes/diff/SlotDiffRendererTest.php
tests/phpunit/includes/import/ImportLinkCacheIntegrationTest.php
tests/phpunit/includes/import/ImportTest.php
tests/phpunit/includes/interwiki/InterwikiTest.php
tests/phpunit/includes/jobqueue/jobs/ClearUserWatchlistJobTest.php
tests/phpunit/includes/jobqueue/jobs/RefreshLinksJobTest.php
tests/phpunit/includes/libs/services/ServiceContainerTest.php
tests/phpunit/includes/page/ArticleViewTest.php
tests/phpunit/includes/page/PageArchiveMcrTest.php
tests/phpunit/includes/page/PageArchivePreMcrTest.php
tests/phpunit/includes/page/PageArchiveTestBase.php
tests/phpunit/includes/page/WikiPageMcrWriteBothDbTest.php
tests/phpunit/includes/page/WikiPageNoContentModelDbTest.php
tests/phpunit/includes/page/WikiPagePreMcrDbTest.php
tests/phpunit/includes/parser/ParserMethodsTest.php
tests/phpunit/includes/parser/ParserOutputTest.php
tests/phpunit/includes/poolcounter/PoolWorkArticleViewTest.php
tests/phpunit/includes/resourceloader/ResourceLoaderFileModuleTest.php
tests/phpunit/includes/resourceloader/ResourceLoaderOOUIImageModuleTest.php
tests/phpunit/includes/sparql/SparqlClientTest.php
tests/phpunit/includes/specials/SpecialSearchTest.php
tests/phpunit/includes/user/ExternalUserNamesTest.php
tests/phpunit/includes/watcheditem/WatchedItemStoreUnitTest.php
tests/phpunit/mocks/session/DummySessionProvider.php
tests/phpunit/suites/ParserIntegrationTest.php
tests/phpunit/tests/MediaWikiTestCaseSchema1Test.php
tests/phpunit/tests/MediaWikiTestCaseTest.php

index d372db8..8c230bf 100644 (file)
@@ -189,8 +189,10 @@ because of Phabricator reports.
   Use the mediawiki.String module instead.
 * mw.language.specialCharacters, deprecated in 1.33, has been removed.
   Use require( 'mediawiki.language.specialCharacters' ) instead.
-* EditPage::submit(), deprecated in 1.29, has been removed. Used $this->edit()
+* EditPage::submit(), deprecated in 1.29, has been removed. Use $this->edit()
   directly.
+* HTMLForm::getErrors(), deprecated in 1.28, has been removed. Use
+  getErrorsOrWarnings() instead.
 * …
 
 === Deprecations in 1.34 ===
index a9b65fa..77a2872 100644 (file)
@@ -113,6 +113,7 @@ $wgAutoloadLocalClasses = [
        'ApiQueryInfo' => __DIR__ . '/includes/api/ApiQueryInfo.php',
        'ApiQueryLangBacklinks' => __DIR__ . '/includes/api/ApiQueryLangBacklinks.php',
        'ApiQueryLangLinks' => __DIR__ . '/includes/api/ApiQueryLangLinks.php',
+       'ApiQueryLanguageinfo' => __DIR__ . '/includes/api/ApiQueryLanguageinfo.php',
        'ApiQueryLinks' => __DIR__ . '/includes/api/ApiQueryLinks.php',
        'ApiQueryLogEvents' => __DIR__ . '/includes/api/ApiQueryLogEvents.php',
        'ApiQueryMyStashedFiles' => __DIR__ . '/includes/api/ApiQueryMyStashedFiles.php',
index eca5b9d..689477b 100644 (file)
@@ -1,4 +1,5 @@
 <?php
+
 namespace MediaWiki;
 
 use ActorMigration;
index fd856be..4e60926 100644 (file)
@@ -1,4 +1,5 @@
 <?php
+
 use MediaWiki\MediaWikiServices;
 
 /**
index bfba59a..ab95b97 100644 (file)
@@ -103,6 +103,9 @@ class InfoAction extends FormlessAction {
                        }
                }
 
+               // "Help" button
+               $this->addHelpLink( 'Page information' );
+
                // Page header
                if ( !$this->msg( 'pageinfo-header' )->isDisabled() ) {
                        $content .= $this->msg( 'pageinfo-header' )->parse();
index bff9fd0..17a9d73 100644 (file)
@@ -20,6 +20,8 @@
  * @file
  */
 
+use MediaWiki\MediaWikiServices;
+
 /**
  * This is the abstract base class for API formatters.
  *
@@ -73,7 +75,7 @@ abstract class ApiFormatBase extends ApiBase {
                } elseif ( $this->getIsHtml() ) {
                        return 'api-result.html';
                } else {
-                       $exts = MediaWiki\MediaWikiServices::getInstance()->getMimeAnalyzer()
+                       $exts = MediaWikiServices::getInstance()->getMimeAnalyzer()
                                ->getExtensionsForType( $this->getMimeType() );
                        $ext = $exts ? strtok( $exts, ' ' ) : strtolower( $this->mFormat );
                        return "api-result.$ext";
@@ -245,7 +247,8 @@ abstract class ApiFormatBase extends ApiBase {
                        $result = $this->getBuffer();
 
                        $context = new DerivativeContext( $this->getMain() );
-                       $context->setSkin( SkinFactory::getDefaultInstance()->makeSkin( 'apioutput' ) );
+                       $skinFactory = MediaWikiServices::getInstance()->getSkinFactory();
+                       $context->setSkin( $skinFactory->makeSkin( 'apioutput' ) );
                        $context->setTitle( SpecialPage::getTitleFor( 'ApiHelp' ) );
                        $out = new OutputPage( $context );
                        $context->setOutput( $out );
index 78efe41..cc96f90 100644 (file)
@@ -40,7 +40,8 @@ class ApiHelp extends ApiBase {
 
                // Get the help
                $context = new DerivativeContext( $this->getMain()->getContext() );
-               $context->setSkin( SkinFactory::getDefaultInstance()->makeSkin( 'apioutput' ) );
+               $skinFactory = MediaWikiServices::getInstance()->getSkinFactory();
+               $context->setSkin( $skinFactory->makeSkin( 'apioutput' ) );
                $context->setLanguage( $this->getMain()->getLanguage() );
                $context->setTitle( SpecialPage::getTitleFor( 'ApiHelp' ) );
                $out = new OutputPage( $context );
index 7cbd3ef..eeb0cf7 100644 (file)
@@ -115,6 +115,7 @@ class ApiQuery extends ApiBase {
                'userinfo' => ApiQueryUserInfo::class,
                'filerepoinfo' => ApiQueryFileRepoInfo::class,
                'tokens' => ApiQueryTokens::class,
+               'languageinfo' => ApiQueryLanguageinfo::class,
        ];
 
        /**
diff --git a/includes/api/ApiQueryLanguageinfo.php b/includes/api/ApiQueryLanguageinfo.php
new file mode 100644 (file)
index 0000000..72b59b0
--- /dev/null
@@ -0,0 +1,245 @@
+<?php
+/**
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * http://www.gnu.org/copyleft/gpl.html
+ *
+ * @file
+ */
+
+/**
+ * API module to enumerate language information.
+ *
+ * @ingroup API
+ */
+class ApiQueryLanguageinfo extends ApiQueryBase {
+
+       /**
+        * The maximum time for {@link execute()};
+        * if execution takes longer than this, apply continuation.
+        *
+        * If the localization cache is used, this time is not expected to ever be
+        * exceeded; on the other hand, if it is not used, a typical request will
+        * not yield more than a handful of languages before the time is exceeded
+        * and continuation is applied, if one of the expensive props is requested.
+        *
+        * @var float
+        */
+       const MAX_EXECUTE_SECONDS = 2.0;
+
+       /** @var callable|null */
+       private $microtimeFunction;
+
+       /**
+        * @param ApiQuery $queryModule
+        * @param string $moduleName
+        * @param callable|null $microtimeFunction Function to use instead of microtime(), for testing.
+        * Should accept no arguments and return float seconds. (null means real microtime().)
+        */
+       public function __construct(
+               ApiQuery $queryModule,
+               $moduleName,
+               $microtimeFunction = null
+       ) {
+               parent::__construct( $queryModule, $moduleName, 'li' );
+               $this->microtimeFunction = $microtimeFunction;
+       }
+
+       /** @return float */
+       private function microtime() {
+               if ( $this->microtimeFunction ) {
+                       return ( $this->microtimeFunction )();
+               } else {
+                       return microtime( true );
+               }
+       }
+
+       public function execute() {
+               $endTime = $this->microtime() + self::MAX_EXECUTE_SECONDS;
+
+               $props = array_flip( $this->getParameter( 'prop' ) );
+               $includeCode = isset( $props['code'] );
+               $includeBcp47 = isset( $props['bcp47'] );
+               $includeDir = isset( $props['dir'] );
+               $includeAutonym = isset( $props['autonym'] );
+               $includeName = isset( $props['name'] );
+               $includeFallbacks = isset( $props['fallbacks'] );
+               $includeVariants = isset( $props['variants'] );
+
+               $targetLanguageCode = $this->getLanguage()->getCode();
+               $include = 'all';
+
+               $availableLanguageCodes = array_keys( Language::fetchLanguageNames(
+                       // MediaWiki and extensions may return different sets of language codes
+                       // when asked for language names in different languages;
+                       // asking for English language names is most likely to give us the full set,
+                       // even though we may not need those at all
+                       'en',
+                       $include
+               ) );
+               $selectedLanguageCodes = $this->getParameter( 'code' );
+               if ( $selectedLanguageCodes === [ '*' ] ) {
+                       $languageCodes = $availableLanguageCodes;
+               } else {
+                       $languageCodes = array_values( array_intersect(
+                               $availableLanguageCodes,
+                               $selectedLanguageCodes
+                       ) );
+                       $unrecognizedCodes = array_values( array_diff(
+                               $selectedLanguageCodes,
+                               $availableLanguageCodes
+                       ) );
+                       if ( $unrecognizedCodes !== [] ) {
+                               $this->addWarning( [
+                                       'apiwarn-unrecognizedvalues',
+                                       $this->encodeParamName( 'code' ),
+                                       Message::listParam( $unrecognizedCodes, 'comma' ),
+                                       count( $unrecognizedCodes ),
+                               ] );
+                       }
+               }
+               // order of $languageCodes is guaranteed by Language::fetchLanguageNames()
+               // and preserved by array_values() + array_intersect()
+
+               $continue = $this->getParameter( 'continue' );
+               if ( $continue === null ) {
+                       $continue = reset( $languageCodes );
+               }
+
+               $result = $this->getResult();
+               $rootPath = [
+                       $this->getQuery()->getModuleName(),
+                       $this->getModuleName(),
+               ];
+               $result->addArrayType( $rootPath, 'assoc' );
+
+               foreach ( $languageCodes as $languageCode ) {
+                       if ( $languageCode < $continue ) {
+                               continue;
+                       }
+
+                       $now = $this->microtime();
+                       if ( $now >= $endTime ) {
+                               $this->setContinueEnumParameter( 'continue', $languageCode );
+                               break;
+                       }
+
+                       $info = [];
+                       ApiResult::setArrayType( $info, 'assoc' );
+
+                       if ( $includeCode ) {
+                               $info['code'] = $languageCode;
+                       }
+
+                       if ( $includeBcp47 ) {
+                               $bcp47 = LanguageCode::bcp47( $languageCode );
+                               $info['bcp47'] = $bcp47;
+                       }
+
+                       if ( $includeDir ) {
+                               $dir = Language::factory( $languageCode )->getDir();
+                               $info['dir'] = $dir;
+                       }
+
+                       if ( $includeAutonym ) {
+                               $autonym = Language::fetchLanguageName(
+                                       $languageCode,
+                                       Language::AS_AUTONYMS,
+                                       $include
+                               );
+                               $info['autonym'] = $autonym;
+                       }
+
+                       if ( $includeName ) {
+                               $name = Language::fetchLanguageName(
+                                       $languageCode,
+                                       $targetLanguageCode,
+                                       $include
+                               );
+                               $info['name'] = $name;
+                       }
+
+                       if ( $includeFallbacks ) {
+                               $fallbacks = Language::getFallbacksFor(
+                                       $languageCode,
+                                       // allow users to distinguish between implicit and explicit 'en' fallbacks
+                                       Language::STRICT_FALLBACKS
+                               );
+                               ApiResult::setIndexedTagName( $fallbacks, 'fb' );
+                               $info['fallbacks'] = $fallbacks;
+                       }
+
+                       if ( $includeVariants ) {
+                               $variants = Language::factory( $languageCode )->getVariants();
+                               ApiResult::setIndexedTagName( $variants, 'var' );
+                               $info['variants'] = $variants;
+                       }
+
+                       $fit = $result->addValue( $rootPath, $languageCode, $info );
+                       if ( !$fit ) {
+                               $this->setContinueEnumParameter( 'continue', $languageCode );
+                               break;
+                       }
+               }
+       }
+
+       public function getCacheMode( $params ) {
+               return 'public';
+       }
+
+       public function getAllowedParams() {
+               return [
+                       'prop' => [
+                               self::PARAM_DFLT => 'code',
+                               self::PARAM_ISMULTI => true,
+                               self::PARAM_TYPE => [
+                                       'code',
+                                       'bcp47',
+                                       'dir',
+                                       'autonym',
+                                       'name',
+                                       'fallbacks',
+                                       'variants',
+                               ],
+                               self::PARAM_HELP_MSG_PER_VALUE => [],
+                       ],
+                       'code' => [
+                               self::PARAM_DFLT => '*',
+                               self::PARAM_ISMULTI => true,
+                       ],
+                       'continue' => [
+                               self::PARAM_HELP_MSG => 'api-help-param-continue',
+                       ],
+               ];
+       }
+
+       protected function getExamplesMessages() {
+               $pathUrl = 'action=' . $this->getQuery()->getModuleName() .
+                       '&meta=' . $this->getModuleName();
+               $pathMsg = $this->getModulePath();
+               $prefix = $this->getModulePrefix();
+
+               return [
+                       "$pathUrl"
+                               => "apihelp-$pathMsg-example-simple",
+                       "$pathUrl&{$prefix}prop=autonym|name&lang=de"
+                               => "apihelp-$pathMsg-example-autonym-name-de",
+                       "$pathUrl&{$prefix}prop=fallbacks|variants&{$prefix}code=oc"
+                               => "apihelp-$pathMsg-example-fallbacks-variants-oc",
+                       "$pathUrl&{$prefix}prop=bcp47|dir"
+                               => "apihelp-$pathMsg-example-bcp47-dir",
+               ];
+       }
+
+}
index 70942f8..02abb1e 100644 (file)
@@ -1,4 +1,5 @@
 <?php
+
 use MediaWiki\MediaWikiServices;
 
 /**
index 380627d..b0dd49a 100644 (file)
        "apihelp-query+langlinks-param-inlanguagecode": "Language code for localised language names.",
        "apihelp-query+langlinks-example-simple": "Get interlanguage links from the page <kbd>Main Page</kbd>.",
 
+       "apihelp-query+languageinfo-summary": "Return information about available languages.",
+       "apihelp-query+languageinfo-extended-description": "[[mw:API:Query#Continuing queries|Continuation]] may be applied if retrieving the information takes too long for one request.",
+       "apihelp-query+languageinfo-param-prop": "Which information to get for each language.",
+       "apihelp-query+languageinfo-paramvalue-prop-code": "The language code. (This code is MediaWiki-specific, though there are overlaps with other standards.)",
+       "apihelp-query+languageinfo-paramvalue-prop-bcp47": "The BCP-47 language code.",
+       "apihelp-query+languageinfo-paramvalue-prop-dir": "The writing direction of the language (either <code>ltr</code> or <code>rtl</code>).",
+       "apihelp-query+languageinfo-paramvalue-prop-autonym": "The autonym of the language, that is, the name in that language.",
+       "apihelp-query+languageinfo-paramvalue-prop-name": "The name of the language in the language specified by the <var>lilang</var> parameter, with language fallbacks applied if necessary.",
+       "apihelp-query+languageinfo-paramvalue-prop-fallbacks": "The language codes of the fallback languages configured for this language. The implicit final fallback to 'en' is not included (but some languages may fall back to 'en' explicitly).",
+       "apihelp-query+languageinfo-paramvalue-prop-variants": "The language codes of the variants supported by this language.",
+       "apihelp-query+languageinfo-param-code": "Language codes of the languages that should be returned, or <code>*</code> for all languages.",
+       "apihelp-query+languageinfo-example-simple": "Get the language codes of all supported languages.",
+       "apihelp-query+languageinfo-example-autonym-name-de": "Get the autonyms and German names of all supported languages.",
+       "apihelp-query+languageinfo-example-fallbacks-variants-oc": "Get the fallback languages and variants of Occitan.",
+       "apihelp-query+languageinfo-example-bcp47-dir": "Get the BCP-47 language code and direction of all supported languages.",
+
        "apihelp-query+links-summary": "Returns all links from the given pages.",
        "apihelp-query+links-param-namespace": "Show links in these namespaces only.",
        "apihelp-query+links-param-limit": "How many links to return.",
index d1dcfe9..279c0c1 100644 (file)
        "apihelp-query+langlinks-param-dir": "{{doc-apihelp-param|query+langlinks|dir}}",
        "apihelp-query+langlinks-param-inlanguagecode": "{{doc-apihelp-param|query+langlinks|inlanguagecode}}",
        "apihelp-query+langlinks-example-simple": "{{doc-apihelp-example|query+langlinks}}",
+       "apihelp-query+languageinfo-summary": "{{doc-apihelp-summary|query+languageinfo}}",
+       "apihelp-query+languageinfo-extended-description": "{{doc-apihelp-extended-description|query+languageinfo}}",
+       "apihelp-query+languageinfo-param-prop": "{{doc-apihelp-param|query+languageinfo|prop|paramvalues=1}}",
+       "apihelp-query+languageinfo-paramvalue-prop-code": "{{doc-apihelp-paramvalue|query+languageinfo|prop|code}}",
+       "apihelp-query+languageinfo-paramvalue-prop-bcp47": "{{doc-apihelp-paramvalue|query+languageinfo|prop|bcp47}}",
+       "apihelp-query+languageinfo-paramvalue-prop-dir": "{{doc-apihelp-paramvalue|query+languageinfo|prop|dir}}",
+       "apihelp-query+languageinfo-paramvalue-prop-autonym": "{{doc-apihelp-paramvalue|query+languageinfo|prop|autonym}}",
+       "apihelp-query+languageinfo-paramvalue-prop-name": "{{doc-apihelp-paramvalue|query+languageinfo|prop|name}}",
+       "apihelp-query+languageinfo-paramvalue-prop-fallbacks": "{{doc-apihelp-paramvalue|query+languageinfo|prop|fallbacks}}",
+       "apihelp-query+languageinfo-paramvalue-prop-variants": "{{doc-apihelp-paramvalue|query+languageinfo|prop|variants}}",
+       "apihelp-query+languageinfo-param-code": "{{doc-apihelp-param|query+languageinfo|code}}",
+       "apihelp-query+languageinfo-example-simple": "{{doc-apihelp-example|query+languageinfo}}",
+       "apihelp-query+languageinfo-example-autonym-name-de": "{{doc-apihelp-example|query+languageinfo}}",
+       "apihelp-query+languageinfo-example-fallbacks-variants-oc": "{{doc-apihelp-example|query+languageinfo}}",
+       "apihelp-query+languageinfo-example-bcp47-dir": "{{doc-apihelp-example|query+languageinfo}}",
        "apihelp-query+links-summary": "{{doc-apihelp-summary|query+links}}",
        "apihelp-query+links-param-namespace": "{{doc-apihelp-param|query+links|namespace}}",
        "apihelp-query+links-param-limit": "{{doc-apihelp-param|query+links|limit}}",
index e29b98d..8dcabde 100644 (file)
@@ -1,4 +1,5 @@
 <?php
+
 namespace MediaWiki\Logger;
 
 class ConsoleSpi implements Spi {
index 39153cf..d3fd374 100644 (file)
@@ -252,7 +252,8 @@ class XmlDumpWriter {
                if ( isset( $row->rev_deleted ) && ( $row->rev_deleted & Revision::DELETED_USER ) ) {
                        $out .= "      " . Xml::element( 'contributor', [ 'deleted' => 'deleted' ] ) . "\n";
                } else {
-                       $out .= $this->writeContributor( $row->rev_user, $row->rev_user_text );
+                       // empty values get written out as uid 0, see T224221
+                       $out .= $this->writeContributor( $row->rev_user ?: 0, $row->rev_user_text );
                }
 
                if ( isset( $row->rev_minor_edit ) && $row->rev_minor_edit ) {
index 5042028..acf64db 100644 (file)
@@ -1277,20 +1277,6 @@ class HTMLForm extends ContextSource {
                return $this->displaySection( $this->mFieldTree, $this->mTableId );
        }
 
-       /**
-        * Format and display an error message stack.
-        *
-        * @param string|array|Status $errors
-        *
-        * @deprecated since 1.28, use getErrorsOrWarnings() instead
-        *
-        * @return string
-        */
-       public function getErrors( $errors ) {
-               wfDeprecated( __METHOD__, '1.28' );
-               return $this->getErrorsOrWarnings( $errors, 'error' );
-       }
-
        /**
         * Returns a formatted list of errors or warnings from the given elements.
         *
index 25d1d6a..dd0d081 100644 (file)
@@ -1,4 +1,5 @@
 <?php
+
 namespace Wikimedia\Services;
 
 use InvalidArgumentException;
index 77b4c35..1dd70a4 100644 (file)
@@ -1,4 +1,5 @@
 <?php
+
 use Liuggio\StatsdClient\Entity\StatsdData;
 use Liuggio\StatsdClient\Factory\StatsdDataFactoryInterface;
 
index cc993aa..eb71fe6 100644 (file)
@@ -48,6 +48,7 @@ class SkinFactory {
         * @return SkinFactory
         */
        public static function getDefaultInstance() {
+               wfDeprecated( __METHOD__, '1.27' );
                return MediaWikiServices::getInstance()->getSkinFactory();
        }
 
index bd02fa3..2f70c8d 100644 (file)
@@ -9,6 +9,8 @@
  * @file
  */
 
+use MediaWiki\MediaWikiServices;
+
 /**
  * BaseTemplate class for the fallback skin
  */
@@ -41,7 +43,8 @@ class SkinFallbackTemplate extends BaseTemplate {
        private function buildHelpfulInformationMessage() {
                $defaultSkin = $this->config->get( 'DefaultSkin' );
                $installedSkins = $this->findInstalledSkins();
-               $enabledSkins = SkinFactory::getDefaultInstance()->getSkinNames();
+               $skinFactory = MediaWikiServices::getInstance()->getSkinFactory();
+               $enabledSkins = $skinFactory->getSkinNames();
                $enabledSkins = array_change_key_case( $enabledSkins, CASE_LOWER );
 
                if ( $installedSkins ) {
index e5d4ee1..c0597d7 100644 (file)
        "emailsent": "Ліст адасланы",
        "emailsenttext": "Ваш ліст быў адасланы.",
        "emailuserfooter": "Гэты ліст быў дасланы {{GENDER:$1|ўдзельнікам|ўдзельніцай}} $1 да {{GENDER:$2|ўдзельніка|ўдзельніцы}} $2 з дапамогай функцыі «{{int:emailuser}}» {{GRAMMAR:родны|{{SITENAME}}}}. Калі вы адкажаце на гэты ліст, {{GENDER:$2|ваш}} ліст у адказ будзе дасланы непасрэдна {{GENDER:$1|адпраўніку|адпраўніцы}}, і {{GENDER:$1|яму|ёй}} будзе бачны {{GENDER:$2|ваш}} адрас электроннай пошты.",
-       "usermessage-summary": "Ð\9fаведамленÑ\8cне Ð¿Ñ\80а Ð²Ñ\8bÑ\85ад Ð· Ñ\81Ñ\8bÑ\81Ñ\82Ñ\8dмÑ\8b.",
+       "usermessage-summary": "Ð\9fакÑ\96даем Ñ\81Ñ\8bÑ\81Ñ\82Ñ\8dмнае Ð¿Ð°Ð²ÐµÐ´Ð°Ð¼Ð»ÐµÐ½Ñ\8cне.",
        "usermessage-editor": "Дастаўка сыстэмных паведамленьняў",
        "watchlist": "Сьпіс назіраньня",
        "mywatchlist": "Сьпіс назіраньня",
index baf3c3a..919c6a6 100644 (file)
        "import-interwiki-submit": "Внасяне",
        "import-mapping-default": "Внасяне в стандартни местоположения",
        "import-mapping-namespace": "Импортиране в именно пространство:",
-       "import-mapping-subpage": "Ð\98мпоÑ\80Ñ\82иÑ\80ане като подстраници на следната страница:",
+       "import-mapping-subpage": "Ð\92наÑ\81Ñ\8fне като подстраници на следната страница:",
        "import-upload-filename": "Име на файл:",
        "import-upload-username-prefix": "Междууики представка:",
        "import-comment": "Коментар:",
index e285d6a..6ae5f80 100644 (file)
        "rcfilters-savedqueries-add-new-title": "Eyarê parzûnê newcudi qeyd kerê",
        "rcfilters-restore-default-filters": "Parzûnê ke estê peyser biya",
        "rcfilters-clear-all-filters": "Parzûnan pêro pak kerê",
-       "rcfilters-show-new-changes": "$1 ra nat vurnayışanê neweyan bımocne",
+       "rcfilters-show-new-changes": "$1 ra nata vurnayışanê neweyan bımocne",
        "rcfilters-search-placeholder": "Vurnayışanê peyênan parzûn kerê (menuyi bıgurenê ya zi nameyê parzûni cıgeyrê)",
        "rcfilters-invalid-filter": "Parzûno nêravêrde",
        "rcfilters-empty-filter": "Parzûnê aktifi çıniyê. İştırakê cı pêro mocniyenê.",
        "autosumm-blank": "Pele kerde veng",
        "autosumm-replace": "Maqale pê '$1' vuriya",
        "autoredircomment": "heteneya [[$1]]",
-       "autosumm-removed-redirect": "[[$1]] ra serşıkıtış dariya we",
+       "autosumm-removed-redirect": "[[$1]] ra serşıkıtış wedariya",
        "autosumm-changed-redirect-target": "Hedefê serşıkıtışi heruna [[$1]] ra vurniya era [[$2]]",
        "autosumm-new": "Pela vıraziyê, '$1' bıvinê",
        "autosumm-newblank": "Pera veng vıraziyê",
        "lag-warn-high": "Eka serverê databaseyî zaf hebitiyeno, ayra vurnayîşî ke {{PLURAL:$1|seniye|seniyeyî}} ra newiyerî belki inan nimucneno.",
        "watchlistedit-normal-title": "Lista seyrkerdışi bıvurne",
        "watchlistedit-normal-legend": "Lista seyrkerdışi ra sernameyan wedare",
-       "watchlistedit-normal-explain": "Listeyê seyr kerdîşî ti de serogî cor de mucnayiyo.\nEka ti wazeno seroğ biwedarne, kuti ke kistê de, ay işaret bike u \"{{int:Watchlistedit-normal-submit}}\" klik bike.\nTi hem zi eşkeno [[Special:EditWatchlist/raw|edit the raw list]].",
+       "watchlistedit-normal-explain": "Sernamey lista seyrkerdoğanê şıma cêr dê rêze biyê. Jew Sernamey tede ra vetış rê kutuya ke cı het deya işaret kerê u makeka \"{{int:Watchlistedit-normal-submit}}\" bıtıknê .\n[[Special:EditWatchlist/raw|lista satırer]] ra şenê bıvurnê .",
        "watchlistedit-normal-submit": "Sernuşteyan wedare",
        "watchlistedit-normal-done": "{{PLURAL:$1|1 sername|$1 sernamey}} lista seyrkerdışê şıma ra darde we:",
        "watchlistedit-raw-title": "Lista seyrkerdışia xame bıvurne",
        "tag-list-wrapper": "[[Special:Tags|{{PLURAL:$1|Etiket|Etiketi}}]]: $2",
        "tag-mw-contentmodelchange": "vurnayışê modelê zerreki",
        "tag-mw-new-redirect": "Serşıkıtışo newe",
-       "tag-mw-removed-redirect": "Serşıkıtış dariya we",
+       "tag-mw-removed-redirect": "Serşıkıtış wedariya",
        "tag-mw-changed-redirect-target": "Hedefê serşıkıtışi vurniya",
        "tag-mw-blank": "Pel veng kerdış",
        "tag-mw-blank-description": "Vengiya na pele bıvurne",
index c8178f0..75ecf03 100644 (file)
@@ -7,7 +7,8 @@
                        "Macofe",
                        "MarcoAurelio",
                        "XanaG",
-                       "La Mantis"
+                       "La Mantis",
+                       "Agusbou2015"
                ]
        },
        "tog-underline": "Subrayado de enlaces:",
        "tooltip-ca-talk": "Discusión acerca de la página de contenido",
        "tooltip-ca-edit": "Editar esta página",
        "tooltip-ca-history": "Versiones anteriores de esta página y sus autores",
-       "tooltip-ca-watch": "Añadir esta página a tu lista de seguimiento",
+       "tooltip-ca-watch": "Añadir esta página a su lista de seguimiento",
        "tooltip-ca-unwatch": "Quitar esta página de su lista de seguimiento",
        "tooltip-search": "Buscar en {{SITENAME}}",
        "tooltip-search-fulltext": "Busca este texto en las páginas",
        "tooltip-n-randompage": "Cargar una página al azar",
        "tooltip-n-help": "El lugar para aprender",
        "tooltip-t-whatlinkshere": "Lista de todas las páginas del wiki que enlazan aquí",
-       "tooltip-t-recentchangeslinked": "Cambios recientes en las páginas que enlazan con ésta",
+       "tooltip-t-recentchangeslinked": "Cambios recientes en las páginas que enlazan con esta",
        "tooltip-t-upload": "Subir imágenes o archivos multimedia",
        "tooltip-t-specialpages": "Lista de todas las páginas especiales",
        "tooltip-t-print": "Versión imprimible de esta página",
index 3218534..97dd12e 100644 (file)
        "virus-scanfailed": "fallou o escaneado (código $1)",
        "virus-unknownscanner": "antivirus descoñecido:",
        "logouttext": "'''Agora está fóra do sistema.'''\n\nTeña en conta que algunhas páxinas poden continuar aparecendo como se aínda estivese dentro do sistema, ata que limpe a caché do seu navegador.",
+       "logging-out-notify": "Está a pecharse a sesión, por favor, espere.",
+       "logout-failed": "Non é posible pechar a sesión agoraː $1",
        "cannotlogoutnow-title": "Non se pode saír da sesión agora mesmo",
        "cannotlogoutnow-text": "Non é posible saír da sesión cando se usa $1.",
        "welcomeuser": "Reciba a nosa benvida, $1!",
        "action-unblockself": "desbloquearse a si mesmo",
        "action-noratelimit": "non estar afectado polos límites de frecuencia",
        "action-reupload-own": "sobrescribir ficheiros existentes cargados por un mesmo",
+       "action-markbotedits": "marcar as reversións como edicións de bot",
+       "action-patrolmarks": "ver as marcas de vixilancia de cambios recentes",
+       "action-override-export-depth": "exportar páxinas, incluídas aquelas ligadas ata unha profundidade de 5",
+       "action-suppressredirect": "non crear redireccións das páxinas ó movelas",
        "nchanges": "$1 {{PLURAL:$1|modificación|modificacións}}",
        "enhancedrc-since-last-visit": "$1 {{PLURAL:$1|desde a última visita}}",
        "enhancedrc-history": "historial",
        "blocklist-editing-page": "páxinas",
        "blocklist-editing-ns": "espazos de nomes",
        "ipblocklist-empty": "A lista de bloqueos está baleira.",
-       "ipblocklist-no-results": "Nin o enderezo IP nin o nome de usuario solicitados están bloqueados.",
+       "ipblocklist-no-results": "Non se atopou ningún bloqueo para o enderezo IP ou nome de usuario indicado.",
        "blocklink": "bloquear",
        "unblocklink": "desbloquear",
        "change-blocklink": "cambiar o bloqueo",
+       "empty-username": "(nome de usuario non dispoñible)",
        "contribslink": "contribucións",
        "emaillink": "enviar un correo",
        "autoblocker": "Foi bloqueado automaticamente porque \"[[User:$1|$1]]\" usou recentemente o seu mesmo enderezo IP.\nO motivo do bloqueo de $1 é: \"$2\"",
        "mw-widgets-abandonedit-discard": "Desbotar edicións",
        "mw-widgets-abandonedit-keep": "Continuar editando",
        "mw-widgets-abandonedit-title": "Está seguro?",
+       "mw-widgets-copytextlayout-copy": "Copiar",
+       "mw-widgets-copytextlayout-copy-fail": "Non se puido copiar no portapapeis.",
+       "mw-widgets-copytextlayout-copy-success": "Copiado no portapapeis.",
        "mw-widgets-dateinput-no-date": "Non se seleccionou ningunha data",
        "mw-widgets-dateinput-placeholder-day": "AAAA-MM-DD",
        "mw-widgets-dateinput-placeholder-month": "AAAA-MM",
        "passwordpolicies-policyflag-forcechange": "debe modificarse ó iniciar sesión",
        "passwordpolicies-policyflag-suggestchangeonlogin": "suxerir cambio ó iniciar sesión",
        "easydeflate-invaliddeflate": "O contido fornecido non está debidamente comprimido",
-       "unprotected-js": "Por motivos de seguridade non se pode cargar JavaScript desde páxinas non protexidas. Por favor, cree só JavaScript no espazo de nomes MediaWiki ou como subpáxina de usuario"
+       "unprotected-js": "Por motivos de seguridade non se pode cargar JavaScript desde páxinas non protexidas. Por favor, cree só JavaScript no espazo de nomes MediaWiki ou como subpáxina de usuario",
+       "userlogout-continue": "Se quere pechar a sesión, por favor, [$1 continúe á páxina de peche de sesión].",
+       "userlogout-sessionerror": "No se puido pechar a sesión debido a un erro de sesión. Por favor, [$1 ténteo de novo]."
 }
index 0fabf7c..af01537 100644 (file)
        "movepage-moved-noredirect": "Վերահղման ստեղծում թույլ չի տրվել",
        "articleexists": "Այդ անվանմամբ էջ արդեն գոյություն ունի կամ ձեր ընտրած անվանումը անթույլատրելի է։\nԽնդրում ենք ընտրել այլ անվանում։",
        "movetalk": "Վերանվանել կից քննարկման էջը",
-       "move-subpages": "Վերանվանել նաև ենթաէջերը (առավելագունը $1)",
-       "move-talk-subpages": "Վերանվանել նաև քննարկման ենթաէջերը (առավելագունը $1)",
+       "move-subpages": "Õ\8eÕ¥Ö\80Õ¡Õ¶Õ¾Õ¡Õ¶Õ¥Õ¬ Õ¶Õ¡Ö\87 Õ¥Õ¶Õ©Õ¡Õ§Õ»Õ¥Ö\80Õ¨ (Õ¡Õ¼Õ¡Õ¾Õ¥Õ¬Õ¡Õ£Õ¸Ö\82ÕµÕ¶Õ¨ $1)",
+       "move-talk-subpages": "Õ\8eÕ¥Ö\80Õ¡Õ¶Õ¾Õ¡Õ¶Õ¥Õ¬ Õ¶Õ¡Ö\87 Ö\84Õ¶Õ¶Õ¡Ö\80Õ¯Õ´Õ¡Õ¶ Õ¥Õ¶Õ©Õ¡Õ§Õ»Õ¥Ö\80Õ¨ (Õ¡Õ¼Õ¡Õ¾Õ¥Õ¬Õ¡Õ£Õ¸Ö\82ÕµÕ¶Õ¨ $1)",
        "movepage-page-moved": "$1 էջը վերանվանվել է $2",
        "movepage-page-unmoved": "$1 էջը հնարավոր չէր վերանվանել $2",
        "movelogpage": "Տեղափոխման տեղեկամատյան",
        "confirm-unwatch-button": "Լավ",
        "confirm-unwatch-top": "Հեռացնե՞լ Ձեր հսկացանկից։",
        "confirm-rollback-button": "Լավ",
+       "quotation-marks": "«$1»",
        "imgmultipageprev": "← նախորդ էջ",
        "imgmultipagenext": "հաջորդ էջ →",
        "imgmultigo": "Անցնե՛լ",
index 7f537a5..85d9246 100644 (file)
        "whatlinkshere-hidelinks": "$1 յղումները",
        "whatlinkshere-hideimages": "$1 նիշքի յղումները",
        "whatlinkshere-filters": "Զտիչներ",
+       "unblock": "Մասնակիցի արգելակումը վերցնել",
        "ipboptions": "2 ժամ:2 hours,1 օր:1 day,3 օր:3 days,1 շաբաթ:1 week,2 շաբաթ:2 weeks,1 ամիս:1 month,3 ամիս:3 months,6 ամիս:6 months,1 տարի:1 year,անժամկէտ:infinite",
        "infiniteblock": "Միշտ",
        "blocklink": "‎Արգելակել",
index 247403e..57f0c4b 100644 (file)
        "editconflict": "ری ڤ ری کاری د ڤیرایش: $1",
        "explainconflict": "د گاتؽ کاْ شما شرۊ ڤ ڤیرایش کاری د بٱلگٱ کردؽتٱ، یاٛ کٱس ھنی اؽ بٱلگٱ ناْ آلشت کردٱ.\nراساگٱ ڤارۉ نیسسٱ بٱلگٱ، نیسسٱ ناْ چی یٱ کاْ ڤوجۊد داشتۊئٱ د ڤٱر گرتٱ.\nآلشتکاریا شما د نیسسٱ ھاری دؽاری مؽکٱ.\nشما بایٱد آلشت کاریاتو ناْ د نیسساٛیؽ کاْ ھؽ سٱریٱک بٱکؽت.\nفقٱت نیسساٛیؽ کاْ ھا ڤارۉ د گاتؽ کاْ شما\"$1\" ناْ گوزارش مؽ کؽت آمادٱ مۊئٱ.",
        "yourtext": "نیسسٱ شما",
-       "storedversion": "ڤانئیأری ئمایە بییە",
-       "editingold": "<strong>د ڤیرئتوٙ با:شوما داریت یئ گئل ڤانئیأری ڤئ ھئنگوم نأبییە نە سی ئی بألگە ڤیرایئشت کاری میکید.</strong>\nأر شوما ڤئنە ئمایە بأکیت، ھأر آلئشت کاری کئ د أڤأل سی ئی ڤانئیأری أنجوم بییە نادیار موٙە.",
-       "yourdiff": "فأرخیا",
-       "copyrightwarning": "Ù\84Ù\88Ø·Ù\81 Ø¨Ø£Ú©Û\8cت Ø¯ Ú¤Û\8cر Ø¯Ø§Ø´ØªÙ\88Ù\99ئÛ\8cت Ú©Ø¦ Ø¦Û\8cÚ\86ئ Ù\81أرض Û\8cØ£Ù\86Û\95 Ú©Ø¦ Ú¾Ø£Ù\85Û\95 Ú¾Ù\88Ù\85Û\8cارÛ\8cا Ø´Ù\88Ù\85ا Ú¤Ø§{{SITENAME}} Ø¯ Ø­Ø§Ù\84 Ù\88 Ø¨Ø§Ù\84 Â«$2» Ø¯Ø£Ø±ØªÛ\8cÚ\86 Ø¨Ù\88Ù\99Û\95(سÛ\8c Ú\86Û\8cا ØªØ¦Ø± Ø±Ù\88ئÛ\8cت Ø¯ $1).\nأر Ù\86ئÙ\85Û\8cھاÛ\8cت Ú©Ø¦ Ù\86Û\8cسئسÛ\95 Û\8cا ØªÙ\88Ù\99 Ú©Ø¦ Ù\81ئرÛ\95 Ú¤Û\8cراÛ\8cئشت Ú©Ø§Ø±Û\8c Ø¨Û\8cÛ\8cÙ\86Û\95 Ù\88 Ø¯Ø¦Ù\84حا Ø¯Ø£Ø±ØªÛ\8cÚ\86 Ø¨Ø§Ù\86Ø\8c Ø¯ Ø¦Û\8cÚ\86ئ Ú©Ø¦Ù\84ئشÙ\88Ù\99 Ù\86Ø£Ú©Û\8cت.<br />\nھأÙ\85Ú\86ئÙ\86Û\8c Ø´Ù\88Ù\85ا Ø¯Ø§Ø±Û\8cت Ú¤Ø¦ Ø¦Û\8cÙ\85ا Ù\82Ù\88Ù\84 Ù\85ئÛ\8cت Ú©Ø¦ Ø®Ù\88تÙ\88Ù\99 Ú¤Ø¦Ù\86Ù\88Ù\99Ù\86Û\95 Ù\86Û\8cسأÙ\86Û\8cتÛ\95Ø\8c Û\8cا Ú¤Ø¦Ù\86Û\95 Ø¯ Ú¤Ø¦Ù\86Ù\88Ù\99Ù\86Û\95 Ø¯ Û\8cئ Ú¯Ø¦Ù\84 Ø³Ø£Ø±Ú\86ئشÙ\85Û\95 Ø¢Ø²Ø§Ø¯ Ú¤Ø§ Ø¨Ø£Ø±Ú©Ø¦Ø±Ø¯ Ú¾Ø£Ù\85Ø£Ú¯Ù\88Ù\99Ù\86Û\8c Û\8cا Ú\86Û\8cاÛ\8cÛ\8c Ú\86Û\8c Ú¤Ø¦ Ú¯Ø¦Ø±ØªÛ\8cتÛ\95.\n'''آرئÙ\86Ú¯Û\8cاÛ\8cÛ\8c Ú©Ø¦ ØµØ¦Ù\84ا Ø¯Ø£Ø±ØªÛ\8cÚ\86ئسئÙ\86 (copyright) Ú¾Ø§ Ø¯Ø¦Ø´Ù\88Ù\99 Ø¨Û\8c ØµØ¦Ù\84ا Ú©Ø¦Ù\84 Ù\86Ø£Ú©Û\8cت!'''",
+       "storedversion": "ڤانیٱری آمادٱ بیٱ",
+       "editingold": "<strong>ڤ ڤیرتو با:شما ها یاٛ ڤانیٱری ڤ ھٱنگوم ناٛییٱ ناْ سی اؽ بٱلگٱ ڤیرایش کاری مؽکؽت.</strong>\nٱر شما ڤٱ. ناْ آمادٱ بٱکؽت، ھٱر آلشت کاری کاْ د ٱڤٱل سی اؽ ڤانیٱری ٱنجوم بیٱ نادؽار مۊئٱ.",
+       "yourdiff": "فٱرخؽا",
+       "copyrightwarning": "Ù\84Ù\88تÙ\81 Ø¨Ù±Ú©Ø½Øª Ø¯ Ú¤Û\8cر Ø¯Ø§Ø´ØªÛ\8aئؽت Ú©Ø§Ù\92 Ø§Û\8cÚ\86اÙ\92 Û\8cÙ\86Ù± Ú©Ø§Ù\92 Ú¾Ù±Ù\85Ù± Ú¾Ù\88Ù\85Û\8cارÛ\8cا Ø´Ù\85ا Ú¤Ø§{{SITENAME}} Ø¯ Ù\87اÙ\84 Û\89 Ø¨Ø§Ù\84 Â«$2» Ø¯Ø±ØªÛ\8cÚ\86 Ù\85Û\8aئٱ(سÛ\8c Ú\86Û\8cا ØªØ± Ø±Û\89ئؽت Ú¤$1).\nٱر Ù\86Ù\85ؽ Ù\87اÛ\8cت Ú©Ø§Ù\92 Ù\86Û\8cسسٱÛ\8cا ØªÙ\88 Ú©Ø§Ù\92 Ù\81رٱ Ú¤Û\8cراÛ\8cØ´ Ú©Ø§Ø±Û\8c Ø¨Û\8cÙ\86Ù± Û\89 Ø¯Ù\84Ù\87اÛ\8cÛ\8c Ø¯Ø±ØªÛ\8cÚ\86 Ø¨Ø§Ù\86Ø\8c Ø¯ Ø§Û\8cÚ\86اÙ\92 Ú©Ù\84Ù\9bØ´Ù\88 Ù\86ٱکؽت.<br />\nÚ¾Ù±Ù\85Ú\86Ù\86Û\8c Ø´Ù\85ا Ø¯Ø§Ø±Û\8cت Ú¤ Ø§Ø½Ù\85ا Ù\82Û\89Ù\84 Ù\85اÙ\9bÛ\8cؽت Ú©Ø§Ù\92 Ø®Ù\88تÙ\88 Ú¤Ù\86Ù\88Ù\86اÙ\92 Ù\86Û\8cسٱÙ\86ؽتٱØ\8c Û\8cا Ú¤Ù± Ù\86اÙ\92 Ø¯ Û\8cاÙ\9b Ø³Ø±Ú\86Ø´Ù\85Ù± Ø¢Ø²Ø§Ø¯ Ú¤Ø§ Ø¨Ù±Ø¦Ø±Ú©Ø±Ø¯ Ú¾Ù±Ù\85Ú¯Ù\88Ù\86Û\8c Û\8cا Ú\86Û\8cاÛ\8cؽ Ú\86Û\8c Ú¤Ù± Ú¯Ø±ØªØ½ØªÙ±.\n'''آرÙ\86ڳؽاÛ\8cÛ\8c Ú©Ø§Ù\92 Ø³Ù\84ا Ø¯Ø±ØªÛ\8cÚ\86سÙ\86 (copyright) Ú¾Ø§ Ø¯Ø´Ù\88 Ø¨Ø½ Ø³Ù\84ا Ú©Ù\84Ù\9b Ù\86ٱکؽت!'''",
        "copyrightwarning2": "لوطف بأکیت د ڤیر داشتوٙئیت کئ ئیچئ فأرض یأنە کئ ھأمە ھومیاریا شوما ڤا{{SITENAME}} د حال و بال «$2» دأرتیچ بوٙە(سی چیا تئر روئیت د $1).\nأر نئمیھایت کئ نیسئسە یا توٙ کئ فئرە ڤیرایئشت کاری بیینە و دئلحا دأرتیچ بان، د ئیچئ کئلئشوٙ نأکیت.<br />\nھأمچئنی شوما داریت ڤئ ئیما قول مئیت کئ خوتوٙ ڤئنوٙنە نیسأنیتە، یا ڤئنە د ڤئنوٙنە د یئ گئل سأرچئشمە آزاد ڤا بأرکئرد ھأمأگوٙنی یا چیایی چی ڤئ گئرتیتە.\n'''آرئنگیایی کئ صئلا دأرتیچئسئن (copyright) ھا دئشوٙ بی صئلا کئل نأکیت!'''",
-       "editpage-cannot-use-custom-model": "شیڤە مینوٙنە یا ئی بألگە نأتوٙنە آلئشتکاری بوٙە.",
-       "longpageerror": "<strong>خأطا:نیسئسە شوما {{PLURAL:$1|یە کئلوٙبایت|$1 کئلوبایت}} دئرازا نە دأە، کئ ڤئنوٙ د بیشتأروٙنە أنازە {{PLURAL:$2|یە کئلوبایت|$2 کئلوبایت}} گأپتأرئن.</strong>\nنأبوٙە ڤئ ئمایە با.",
+       "editpage-cannot-use-custom-model": "شؽڤٱ مؽنونٱیا اؽ بٱلگٱ نمؽ تونٱ آلشتکاری بۊئٱ.",
+       "longpageerror": "<strong>خٱتا:نیسسٱ شما {{PLURAL:$1|یاٛ کیلٛۊبایت|$1 کیلٛۊبایت}} درازا  دارٱ، کاْ ڤنو د بیشترونٱ ٱندازٱ {{PLURAL:$2|یاٛ کیلٛۊبایت|$2 کیلٛۊبایت}} گٱپترئٱن.</strong>\nنمۊئٱ ڤٱ آمادٱ با.",
        "readonlywarning": "<strong>د ڤیر داشتوٙئیت:رئسینە گا سی ڤاداشت کاری نئھاگئری بییە، سی یە نە کئ شوما ئیسە نئمی توٙنیت ڤیرایئشت کاریاتوٙنە ئمایە بأکیت.</strong>\nگاسی شوما بئھایت کئ نیسئسە خوتوٙنە د جانیا نیسئسە یی ڤوردار بئدیس بأکیت و ڤئنە سی نئھاتئر ئمایە بأکیت.\n\nدیڤوٙنداری کئ د ڤئ نئھاگئری کئردە چئنی گوتە:$1",
-       "protectedpagewarning": "<strong>د ڤیر داشتوٙئیت:ئی بألگە سی یە پأر و پیم بییە کئ فأقأط کاریاریایی کئ دأسرئسی دیڤوٙنداری دارئن بأتوٙنئن دئش ڤیرایئشت کاری بأکأن..</strong>\nآخئری سیاە سی سأرچئشمە یا د ھار ئمایە کاری بییە:",
+       "protectedpagewarning": "<strong>ڤ ڤیر داشتۊئؽت:اؽ بٱلگٱ سی یٱ پر ۉ پیم بیٱ کاْ فقٱت کاریارؽایؽ کاْ دٱسرسی دیڤونداری دارٱن بٱتونٱن دش ڤیرایش کاری بٱکٱن..</strong>\nآخری سیا سی سرچشمٱیا د ھار آمادٱ کاری بیٱ:",
        "semiprotectedpagewarning": "<strong>د ڤیر داشتوٙئیت:</strong> ئی بألگە سی یە کئ فأقأط کاریاریا ثأڤتئنام کئردە تونئسوٙئن دئش ڤیراشتکار بأکأن پأر و پیم بییە.\nآخئری پئھرئستنوٙمە دأئە بییە سی سأرچئشمە ھاری نئھا ئمایە بییە:",
        "cascadeprotectedwarning": "<strong>زئنار:</strong> ئی بألگە ڤئ دأس کاریاریایی کئ صئلا سأردیڤوٙنکاری دارن می توٙنە ڤیرایئشت کاری بوٙە سی یە کئ ئی بألگە ڤئ رأڤئشت تاف نئمایی پأر و پیم کاری بییە {{PLURAL:$1|بألگە|بألگە یا}}:",
        "titleprotectedwarning": "<strong>زئنار:ئی بألگە پأر و پیم بییە سی یە کئ [[Special:نومگە حوقوٙق کاریاری جأرغە|حوقوٙق ڤیجە]] بایأد ڤئنە رأڤأندیاری بأکأن.</strong>\nآخئری پئھرئستنوٙمە دأ بییە سی سأرچئشمە دأئن نئھا ئمایە بییە:",
        "templatesusedsection": "{{PLURAL:$1|چۊئٱ|چۊئٱ یا}} ڤ کار گرتٱ بیٱ د اؽ بٱلگٱ:",
        "template-protected": "(پر ۉ پیم بیٱ)",
        "template-semiprotected": "(نسم ۉ نیمٱ پر ۉ پیم بیٱ)",
-       "hiddencategories": "اؽ بٱلگٱ یٱکؽ د ٱندومؽا ٱ {{PLURAL:$1|1 hidden category|$1 hidden categories}} :",
+       "hiddencategories": "اؽ بٱلگٱ یٱکؽ د ٱندومؽا ئٱ {{PLURAL:$1|1 hidden category|$1 hidden categories}} :",
        "edittools-upload": "-",
        "nocreatetext": "{{SITENAME}} سی رأڤأندیاری بألگە یا تازە نئھاگئری بییە.\nشوما می توٙنیت روئیت ڤادئما و بألگە ئی کئ بییشە ڤیرایئشت کاری بأکیت،[[Special:ڤامین ئوٙمائن کاریار|بیائیت ڤامین یا یە کئ یئ گئل حئساڤ دوروس بأکیت]].",
-       "nocreate-loggedin": "Ø´Ù\88Ù\85ا ØµØ¦Ù\84ا Ø±Ø§Ø³ Ú©Ø¦Ø±Ø¯Ø¦Ù\86 Ø¨Ø£Ù\84Ú¯Û\95 ØªØ§Ø²Û\95 Ù\86Û\95 Ù\86ارÛ\8cت.",
-       "sectioneditnotsupported-title": "Ø´Ù\88Ù\85ا ØµØ¦Ù\84ا Ú¤Û\8cراÛ\8cئشت Ú©Ø§Ø±Û\8c Ø¨Ø£Ø±Ø¬Ø§Û\8cا Ù\86Û\95 Ù\86ارÛ\8cت.",
-       "sectioneditnotsupported-text": "Ú¤Û\8cراÛ\8cئشت Ø¨Ø£Ø±Ø¬Ø§Û\8cÛ\8c Ø¯ Ø¦Û\8c Ø¨Ø£Ù\84Ú¯Û\95 Ù\86Û\8cئش.",
+       "nocreate-loggedin": "Ø´Ù\85ا Ø³Ù\84ا Ø¯Û\8fرس Ú©Ø±Ø¯Ù\86 Ø¨Ù±Ù\84Ú¯Ù± ØªØ§Ø²Ù± Ù\86اÙ\92 Ù\86ارؽت.",
+       "sectioneditnotsupported-title": "Ø´Ù\85ا Ø³Ù\84ا Ú¤Û\8cراÛ\8cØ´ Ú©Ø§Ø±Û\8c Ø¨Ù±Ø¦Ø±Ø¬Ø§Û\8cا Ù\86اÙ\92 Ù\86ارؽت.",
+       "sectioneditnotsupported-text": "Ú¤Û\8cراÛ\8cØ´ Ø¨Ù±Ø¦Ø±Ø¬Ø§Û\8cÛ\8c Ø¯ Ø§Ø½ Ø¨Ù±Ù\84Ú¯Ù± Ù\86ؽسش.",
        "permissionserrors": "خٱتا سلا داٛئن",
-       "permissionserrorstext": "Ø´Ù\88Ù\85ا Ø­Ø£Ù\82 Ù\86ارÛ\8cت Ú¤Ø¦Ù\86Û\95 Ø£Ù\86جÙ\88Ù\85 Ø¨Ø¦Û\8cتØ\8c Ø³Û\8c{{PLURAL:$1|دأÙ\84Û\8cÙ\84|دأÙ\84Û\8cÙ\84Û\8cا}} Ù\86ئھایی:",
-       "permissionserrorstext-withaction": "شما سی $2 سلا \nنھاگیری نارؽت {{PLURAL:$1|دلٛیلٛ|دلٛیلٛؽا}}:",
+       "permissionserrorstext": "Ø´Ù\85ا Ù\87Ù±Ù\82 Ù\86ارؽت Ú¤Ù± Ù\86اÙ\92 Ù±Ù\86جÙ\88Ù\85 Ø¨Ø§Ù\9bÛ\8cؽتØ\8c Ø³Û\8c{{PLURAL:$1|دÙ\84Ù\9bÛ\8cÙ\84Ù\9b|دÙ\84Ù\9bÛ\8cÙ\84Ù\9bؽا}} Ù\86Ù\87ایی:",
+       "permissionserrorstext-withaction": "شما سی $2 سلا \nنهاگیری نارؽت {{PLURAL:$1|دلٛیلٛ|دلٛیلٛؽا}}:",
        "recreate-moveddeleted-warn": "'''ڤ ڤیرتو با:شما بٱلگاٛیی کاْ ھا ڤادما ۉ پاکسا بیٱ د نۊ دۏرس کردؽتٱ.'''\nبایٱد د ڤیرتو با کاْ آیا ھنی نوئاگیری ڤیرایش اؽ بٱلگٱ خۊئٱ.\nپاکسا کاری ۉ جا ڤ جا کاری اؽ بٱلگٱ سی هال ۉ بار پٱلٛٱمار شما آمادٱ بیٱ:",
        "moveddeleted-notice": "اؽ بٱلگٱ پاکسا بیٱ.\nپاکسا کاری ۉ جا ڤ جا کاری اؽ بٱلگٱ سی هال ۉ بار پٱلٛٱمار شما آمادٱ بیٱ.",
        "log-fulllog": "دیئن هأمە پئهئرستنوٙمە یا",
index 5fd2caf..d70d242 100644 (file)
        "pageinfo-header-restrictions": "Заштита на страницата",
        "pageinfo-header-properties": "Својства на страницата",
        "pageinfo-display-title": "Наслов за приказ",
-       "pageinfo-default-sort": "Ð\9eÑ\81новен Ð¿Ð¾Ð´Ñ\80едбен ÐºÐ»Ñ\83Ñ\87",
+       "pageinfo-default-sort": "Ð\9eÑ\81новен ÐºÐ»Ñ\83Ñ\87 Ð·Ð° Ð¿Ð¾Ð´Ñ\80едÑ\83ваÑ\9aе",
        "pageinfo-length": "Големина на страницата (во бајти)",
        "pageinfo-namespace": "Именски простор",
        "pageinfo-article-id": "Назнака на страницата",
index 5695448..31d39e0 100644 (file)
@@ -24,6 +24,7 @@
        "tog-watchmoves": "ߒ ߠߊ߫ ߞߐߜߍ ߣߌ߫ ߞߐߕߐ߯ ߟߊߕߐߣߍ߲ ߠߎ߬ ߓߌ߬ߟߊ߬ ߒ ߠߊ߫ ߜߋ߬ߟߎ߬ߠߌ߲߬ ߛߙߍߘߍ ߘߐ߫.",
        "tog-watchdeletion": "ߒ ߠߊ߫ ߞߐߜߍ ߣߌ߫ ߞߐߕߐ߯ ߖߏ߬ߛߌ߬ߣߍ߲ ߠߎ߬ ߓߌ߬ߟߊ߬ ߒ ߠߊ߫ ߜߋ߬ߟߎ߬ߠߌ߲߬ ߛߙߍߘߍ ߘߐ߫.",
        "tog-watchuploads": "ߒ ߠߊ߫ ߞߐߕߐ߯ ߟߊߦߟߍ߬ߣߍ߲ ߠߎ߬ ߓߌ߬ߟߊ߬ ߒ ߠߊ߫ ߜߋ߬ߟߎ߬ߠߌ߲߬ ߛߙߍߘߍ ߘߐ߫.",
+       "tog-minordefault": "ߡߊ߬ߦߟߍ߬ߡߊ߲߬ߠߌ߲߬ ߘߋ߬ߣߍ߲ ߠߎ߬ ߣߐ߬ߣߐ߬ ߓߐߛߎ߲ ߘߌ߫",
        "tog-previewontop": "ߢߍߦߋߟߌ ߦߌ߬ߘߊ߬ ߡߊ߰ߦߟߍ߬ߡߊ߲߬ߠߌ߲߬ ߞߏ߲ߘߏ ߢߍ߫.",
        "tog-previewonfirst": "ߢߍߦߋߟߌ ߦߌ߬ߘߊ߬ ߡߊ߬ߦߟߍ߬ߡߊ߲߬ߠߌ߲߬ ߝߟߐ ߘߐ߫.",
        "tog-enotifwatchlistpages": "ߢߎߡߍߙߋ߲ ߗߋ߫ ߒ ߡߊ߬߸ ߣߌ߫ ߒ ߠߊ߫ ߜߋ߬ߟߎ߬ߠߌ߲߬ ߛߙߍߘߍ ߞߐߜߍ ߥߟߊ߫ ߞߐߕߐ߮ ߘߏ߫ ߡߊߦߟߍ߬ߡߊ߲߬ ߘߊ߫",
        "tog-ccmeonemails": "ߒ ߠߊ߫ ߢߎߡߍߙߋ߲߫ ߗߋߣߍ߲ ߠߎ߬ ߓߊߞߎߘߊ ߟߊߣߊ߬ ߒ ߡߊ߬.",
        "tog-diffonly": "diffs ߦߋ߫ ߞߐߜߍ ߡߍ߲ ߠߎ߬ ߘߐ߫߸ ߏ߬ ߟߎ߬ ߞߊߣߊ߬ ߦߌ߬ߘߊ߬",
        "tog-showhiddencats": "ߦߌߟߡߊ߫ ߢߡߊߘߏ߲߰ߣߍ߲ ߦߌ߬ߘߊ߬",
+       "tog-norollbackdiff": "ߡߛߊ߬ߦߌ߲߬ߠߌ߲ ߠߎ߬ ߞߊߣߊ߬ ߦߌ߬ߘߊ߬߸ ߣߌ߫ ߒ ߓߊ߲߫ ߞߐߛߊߦߌ߲ߠߌ߲ ߛߐ߲߬ߞߌ߲߫ ߠߊ߫",
        "tog-useeditwarning": "ߒ ߠߊߛߏ߬ߓߌ߬߸ ߣߌ߫ ߒ ߓߐ߫ ߘߊ߫ ߞߐߜߍ߫ ߡߊߦߟߍ߬ߡߊ߲߬ߕߊ ߟߊߞߎ߲߬ߘߎ߬ߓߊߟߌ ߘߐ߫.",
        "tog-prefershttps": "ߜߊ߲߬ߞߎ߲߬ߠߌ߲߬ ߟߊߞߊ߲ߘߊߣߍ߲ ߠߊߓߊ߯ߙߊ߫ ߜߊ߲߬ߞߎ߲߬ߠߌ߲ ߕߎ߬ߡߊ ߟߊ߫.",
        "tog-showrollbackconfirmation": "ߟߊ߬ߛߙߋ߬ߦߊ߬ߟߌ ߦߌ߬ߘߊ߬ ߞߊߟߌߦߊ߫ ߘߐ߫߸ ߣߌ߫ ߒ ߞߊ߬ ߞߐߛߊߦߌ߲ߠߌ߲ ߛߘߌ߬ߜߋ߲ ߛߐ߲߬ߞߌ߲߬.",
        "underline-always": "ߕߎ߬ߡߊ߬ ߓߍ߯",
        "underline-never": "ߡߎ߰ߡߍ߫",
+       "underline-default": "ߝߊ߬ߘߌ ߥߟߊ߫ ߛߏ߲߯ߓߊߟߊ߲ ߠߊ߫ ߝߍ߭",
        "editfont-style": "ߕߌ߲߬ߞߎߘߎ߲ ߛߓߍߛߎ߲ ߛߎ߯ߦߊ ߢߊߓߐ߫:",
        "editfont-monospace": "ߞߣߍߙߋ߲ ߛߓߍߛߎ߲",
        "sunday": "ߞߊ߯ߙߌߟߏ߲",
        "hidden-categories": "{{PLURAL:$1|ߦߌߟߡߊ߫ ߢߡߘߏ߲߰ߣߍ߲|ߦߌߟߡߊ߫ ߢߡߊߘߏ߲߰ߣߍ߲ ߠߎ߬}}",
        "hidden-category-category": "ߦߌߟߡߊ߫ ߢߡߊߘߏ߲߰ߣߍ߲ ߠߎ߬",
        "category-subcat-count": "{{PLURAL:$2|ߦߟߊߡߊߙߋ߲ ߣߌ߲߬ ߠߎ߫ ߜߊ߲߰ߛߊ߲ ߠߋ߫ ߦߋ߫ ߦߌߟߡߊ ߣߌ߲߬ ߘߐ߫.|ߦߌߟߡߊ ߣߊ߬ߕߐ ߟߎ߬ ߘߐ߫߸ {{PLURAL:$1|ߦߌߟߡߊߙߋ߲|$1 ߦߌߟߡߊߙߋ߲ ߠߎ߬}} ߟߋ߬ ߦߴߊ߬ ߘߐ߫߸ ߞߙߎߞߙߍ ߟߎ߬ ߞߐߞߊ߲߬ $2}}",
+       "category-subcat-count-limited": "{{PLURAL:$1|ߦߌߟߡߊߙߋ߲|$1 ߦߌߟߡߊߙߋ߲ ߠߎ߬}} ߟߋ߬ ߦߋ߫ ߦߌߟߡߊ ߣߌ߲߬ ߘߐ߫.",
        "category-article-count": "{{PLURAL:$2|ߞߐߜߍ ߣߌ߲߬ ߘߐߙߐ߲߫ ߠߋ߬ ߦߋ߫ ߦߌߟߡߊ ߣߌ߲߬ ߘߐ߫.|ߖߡߊ߬ߦߊ߫ ߕߐ߮ ߣߊ߬ߕߊ {{PLURAL:$1|ߞߐߜߍ ߦߋ߫|$1 ߞߐߜߍ ߦߋ߫}} ߟߋ߬ ߦߋ߫ ߦߌߟߡߊ߫ ߘߌ߫߸ ߞߙߎߞߙߍ $2 ߞߐߞߊ߲߬}}",
+       "category-article-count-limited": "ߢߍߕߊ ߣߌ߲߬ {{PLURAL:$1|ߞߐߜߍ ߦߋ߫|$1 ߞߐߜߍ ߟߎ߬ ߦߋ߫}} ߛߋ߲߬ߠߊ߫ ߦߌߟߡߊ ߟߎ߬ ߘߐ߫",
        "category-file-count": "{{PLURAL:$2||ߞߐߕߐ߮ ߣߌ߲߬ ߜߊ߲߰ߛߊ߲ ߠߋ߫ ߦߋ߫ ߦߌߟߡߊ ߣߌ߲߬ ߘߐ߫.ߡߍ߲ ߠߎ߬ ߦߋ߫ ߣߌ߲߬ |{{PLURAL:$1||ߞߐߕߐ߮ ߦߋ߫|$1 ߞߐߕߐ߮ ߟߎ߬ ߦߋ߫}} ߦߌߟߡߊ ߣߌ߲߬ ߘߐ߫߸ ߞߙߎߞߙߍ ߣߌ߲߬ ߕߴߊ߬ ߘߐ߫2$.}}",
+       "category-file-count-limited": "ߢߍߕߊ ߣߌ߲߬ {{PLURAL:$1|ߞߐߕߐ߮ ߦߋ߫|$1 ߞߐߕߐ߮ ߟߎ߬ ߦߋ߫}} ߛߋ߲߬ߠߊ߫ ߦߌߟߡߊ ߣߌ߲߬ ߘߐ߫.",
        "listingcontinuesabbrev": "ߖߊ߬ߕߋ߬ߘߊ",
        "index-category": "ߞߐߜߍ߫ ߓߊߕߐ߲ߛߐ߲ ߠߎ߬",
        "noindex-category": "ߞߐߜߍ߫ ߘߐߕߐ߲ߛߐ߲ߦߊߓߊߟߌ ߟߎ߬",
        "view-pool-error": "ߤߊߞߍ߬ߕߏ߬߸ ߡߊ߬ߛߐ߬ߟߊ ߓߘߊ߫ ߟߊߢߎ߲߫ ߥߊ߯ߕߌ ߣߌ߲߬ ߠߊ߫.\nߡߐ߰ ߦߙߌߞߊ߫ ߟߎ߫ ߦߴߊ߬ߟߎ߬ ߞߊߘߊ߲ ߞߊ߲߬ ߞߐߜߍ ߣߌ߲߬ ߦߋ߫.\nߞߐߟߊ߫ ߡߊߞߐ߬ߣߐ߲߬ ߖߊ߰ߣߌ߲߫߸ ߞߣߊ߫ ߕߴߊ߬ ߡߊߝߍߣߍ߲߫ ߠߊ߫ ߕߎ߲߯.\n\n$1",
        "generic-pool-error": "ߤߊߞߍ߬ߕߏ߫߸ ߡߊ߬ߛߐ߬ߟߊ ߓߘߊ߫ ߟߊߢߎ߲߫ ߞߏߖߎ߯ߦߊ߫ ߥߊ߯ߕߌ ߣߌ߲߬ ߠߊ߫ ߕߊ߲߬.\nߡߐ߰ ߛߌߦߊߡߊ߲߫ ߠߎ߫ ߦߴߊ߬ߟߎ߬ ߞߊߘߊ߲ ߞߊ߲߬ ߞߊ߬ ߛߎ߲ ߣߌ߲߬ ߦߋ߫. \nߞߐߟߊ߫ ߡߊߞߐ߬ߣߐ߲߬ ߖߊ߰ߣߌ߲߬߸ ߦߊ߲߬ߣߴߌ ߞߍ߫ ߕߴߊ߬ ߡߊߝߍߣߍ߲߫ ߠߴߌ ߞߐ߫ ߕߎ߲߯.",
        "pool-timeout": "ߘߊߕߎ߲߯ߠߌ߲ ߡߊ߬ߞߐ߬ߣߐ߲߬ߠߌ߲߬ ߕߎߡߊ ߓߘߊ߫ ߕߊ߬ߡߌ߲߬",
+       "pool-queuefull": "ߡߊ߬ߞߐ߬ߣߐ߲߬ߠߌ߲ ߞߏ߬ߘߟߊ ߓߘߊ߫ ߝߊ߫",
        "pool-errorunknown": "ߝߌ߬ߟߌ߬ ߛߎ߲߫ ߟߐ߲ߓߊߟߌ",
+       "pool-servererror": "ߞߏ߬ߘߟߊ ߘߊ߲ߠߌ߲ ߗߋߘߊ ߕߍ߫ ߦߋ߲߬ ߕߊ߲߬ ($1).",
        "poolcounter-usage-error": "ߟߊߓߊ߯ߙߊߟߌ߫ ߝߟߌ $1",
        "aboutsite": "ߞߊ߬ ߓߍ߲߬ {{SITENAME}} ߞߏ ߡߊ߬",
        "aboutpage": "Project:ߟߊ߫ ߞߏ ߡߊ߬",
        "privacy": "ߘߎ߲߬ߘߎ߬ߡߊ߬ ߓߘߍߓߘߍߟߌ",
        "privacypage": "Project:ߘߎ߲߬ߘߎ߬ߡߊ߬ ߓߘߍ߬ߓߘߍ߬ߟߌ",
        "badaccess": "ߟߊ߬ߘߌ߬ߢߍ߬ߟߌ ߝߎ߬ߕߎ߲߬ߕߌ",
+       "badaccess-groups": "ߌ ߣߊ߬ ߞߍߢߊ ߡߍ߲ ߡߊߢߌ߬ߣߌ߲߬ߞߊ߬ ߟߊ߫ ߣߌ߲߬߸ ߏ߬ ߟߊߓߊ߯ߙߊ ߡߊߓߍ߲߬ߣߍ߲߫ ߠߋ߫ ߟߊ߬ߓߊ߰ߙߊ߬ߟߊ ߡߍ߲ ߠߎ߬ ߦߋ߫ {{PLURAL:$2|ߞߙߎ ߘߐ߫|ߞߙߎ ߘߏ߫ ߘߐ߫}}: $1.",
+       "versionrequired": "ߡߊߘߌߦߊ߫-ߥߞߌ߫ ߓߊߦߟߍߡߊ߲ߠߌ߲ $1 ߞߊ߬ߣߌ߲߬ ߣߍ߲߫",
+       "versionrequiredtext": "ߡߊߘߌߦߊ߫-ߥߞߌ߫ ߘߟߊߡߌߘߊߟߌ $1 ߞߊ߬ߣߌ߲߬ ߣߍ߲߫ ߞߊ߬ ߞߐߜߍ ߣߌ߲߬ ߠߊߓߊ߯ߙߊ߫.\n[[Special:Version|version page]] ߦߋ߫.",
        "ok": "ߏ߬ߞߍ߫",
        "retrievedfrom": "ߊ߬ ߟߊߛߐ߬ߘߐ߲߫ ߦߊ߲߬ \"$1\"",
        "youhavenewmessages": "{{PLURAL:$3|ߌ ߓߘߊ߫ ߗߋߛߓߍ߫ ߞߎߘߊ ߛߐ߬ߘߐ߲߬$1  $2 }}",
        "toc": "ߞߣߐߘߐ",
        "showtoc": "ߦߌ߬ߘߊ߬ߟߌ",
        "hidetoc": "ߢߡߊߘߏ߲߯ߠߌ",
+       "collapsible-collapse": "ߞߏߟߊߔߑߛߌ߫",
        "collapsible-expand": "ߘߐ߬ߥߙߊ߬ߟߌ",
        "confirmable-confirm": "ߌ ߛߍ߬ߓߍ߫ ߓߊ߬ {{GENDER:$1|}}؟",
        "confirmable-yes": "ߐ߲߬ߤߐ߲߫",
        "viewdeleted": "ߦߌ߬ߘߊ߬ߟߌ ߓߊ߬ $1؟",
        "restorelink": "{{PLURAL:$1|ߡߊ߬ߦߟߍ߬ߡߊ߲߬ߠߌ߲ ߖߏ߬ߛߌ߬ߣߍ߲߬ ߞߋߟߋ߲߫|$1 ߡߊ߬ߦߟߍ߬ߡߊ߲߬ߠߌ߲ ߖߏ߬ߛߌ߬ߣߍ߲ ߠߎ߬}}",
        "feedlinks": "ߓߊߟߏ:",
+       "feed-invalid": "ߕߐ߯ߛߓߍߟߌ ߓߊߟߏ ߛߎ߯ߦߊ ߓߍ߲߬ ߣߍ߲߬ ߕߍ߫.",
+       "feed-unavailable": "ߕߐ߰ߕߐ߰ߟߌ߬ߦߊ ߓߊߟߏ ߕߍ߫ ߦߋ߲߬",
+       "site-rss-feed": "RSS ߓߊߟߏ $1",
        "site-atom-feed": "$1 ߝߕߌ ߓߊߟߏ",
+       "page-rss-feed": "RSS ߓߊߟߏ \"$1\"",
        "page-atom-feed": "$1 ߝߕߌ ߓߊߟߏ",
        "red-link-title": "ߞߐߜߍ߫ ߕߴߦߋ߲߬ $1",
        "sort-descending": "ߛߙߊߛߌ߰ߟߌ ߖߌ߰ߟߌ߬ ߓߟߏߡߊ߬",
        "nosuchspecialpage": "ߘߐߜߍ߫ ߓߟߏߡߊߞߊ߬ߣߍ߲߬ ߛߎ߮ ߏ߬ ߝߋ߲߫ ߕߍ߫ ߦߊ߲߬",
        "nospecialpagetext": "<strong>ߊߟߎ߫ ߓߘߊ߫ ߞߐߜߍ߫ ߓߟߏߡߊߞߊ߬ߣߍ߲ ߘߏ߫ ߢߌߣߌ߲߫ ߡߍ߲ ߕߺߴߦߋ߲߬.</strong>\nߞߐߜߍ߫ ߓߟߏߡߊߞߊ߬ߣߍ߲߫ ߓߘߍ߬ߡߊ ߟߎ߬ ߛߙߍߘߍ ߦߋ߫ ߢߌ߲߬ ߠߋ߫ ߞߊ߲߬ [[Special:SpecialPages|{{int:specialpages}}]].",
        "error": "ߝߎ߬ߕߎ߲߬ߕߌ",
+       "databaseerror": "ߓߟߏߡߟߊ ߟߎ߬ ߝߊ߲ ߝߎ߬ߕߎ߲߬ߕߌ",
        "databaseerror-query": "ߢߌ߬ߣߌ߲߬ߞߊ߬ߟߌ $1",
        "databaseerror-function": "ߗߋߘߊ $1",
        "databaseerror-error": "ߝߎ߬ߕߎ߲߬ߕߌ: $1",
+       "readonly": "ߓߟߏߡߟߊ ߝߊ߲ ߛߐ߰ߣߍ߲߫",
        "missingarticle-rev": "(ߡߛߊ߬ߦߌ߲߬ߠߌ߲#:$1)",
+       "missingarticle-diff": "(Diff: $1, $2)",
+       "readonly_lag": "ߓߟߏߡߟߊ ߝߊ߲ ߓߘߊ߫ ߛߐ߰ ߞߍߒߖߘߍߦߋ߫ ߓߟߏߡߊ߬߸ ߞߊ߬ߦߌ߯ ߖߐ߲߬ ߓߟߏߡߟߊ ߝߊ߲ ߡߊߛߐߓߊ߮ ߡߌ߬ߣߊ߬ ߘߊ߫ ߞߙߊ߬ߡߐ߮ ߓߟߏ߫.",
        "internalerror": "ߞߣߐߟߊߘߐ߫ ߝߎߕߎ߲ߕߌ",
        "internalerror_info": "ߞߣߐߟߊߘߐ߫ ߝߎ߬ߕߎ߲߬ߕߌ: $1",
+       "internalerror-fatal-exception": "ߛߎ߯ߦߊ߫ ߢߌ߬ߣߊ߬ߓߐ߬ߟߌ ߡߊ߬ߕߊ߲߬ߞߊ߬ߓߊߟߌ \"$1\"",
        "filecopyerror": "ߊ߬ ߕߍ߫ ߣߊ߬ ߛߐ߲߬ ߠߊ߫ ߞߐߕߐ߮ $1 ߓߊߦߟߍ߬ߡߊ߲߬ ߠ ߦߊ߲߬ߊ߫ $2",
        "filerenameerror": "ߞߐߕߐ߮ \"$1\" ߕߍ߫ ߛߐ߲߬ ߓߊߦߟߍ߬ߡߊ߲߬ ߠߊ߫ ߦߊ߲߬  \"$2\".",
        "filedeleteerror": "ߞߐߕߐ߮ ߕߴߛߋ߫ ߖߏ߰ߛߌ߬ ߟߊ߫  \"$1\"",
        "directorycreateerror": "ߊ߬ ߕߍ߫ ߣߊ߬ ߛߋ߫ ߟߊ߫ ߦߌ߬ߘߊ߬ߥߟߊ ߟߊߘߊ߲߫ ߠߊ߫ \"$1\"",
        "directoryreadonlyerror": "ߦߌ߬ߘߊ߬ߥߟߊ \"$1\" ߦߋ߫ ߞߊ߬ߙߊ߲߬ ߞߊ߲ ߘߐߙߐ߲߫ ߠߋ߬ ߡߊ߬.",
+       "directorynotreadableerror": "ߛߐ߲߬ߞߐ߬ߞߝߊ  \"$1\" ߕߍ߫ ߘߐ߬ߞߊ߬ߙߊ߲߬ߠߌ߲߬ߕߊ߫ ߘߌ߫.",
        "filenotfound": "ߌ ߕߍ߫ ߣߊ߬ ߞߐߕߐ߮  \"$1\" ߛߐ߬ߘߐ߲߬ ߠߊ߫.",
+       "unexpected": "ߡߐ߬ߟߐ߲߬ ߡߊߞߐ߬ߣߐ߲߬ߓߊߟߌ \"$1\"=\"$2\"",
+       "formerror": "ߝߎ߬ߕߎ߲߬ߕߌ: ߊ߬ ߕߍ߫ ߣߊ߬ ߛߋ߫ ߟߊ߫ ߖߙߎߡߎ߲ ߞߙߊߓߊ߫ ߟߊ߫.",
+       "badarticleerror": "ߞߍߢߊ ߣߌ߲߬ ߕߍ߫ ߣߊ߬ ߛߋ߫ ߟߊ߫ ߢߌ߬ߡߦߊ߬ ߟߊ߫ ߞߐߜߍ ߣߌ߲߬ ߞߊ߲߬.",
+       "cannotdelete": "ߞߐߜߍ ߥߟߊ߫ ߞߐߕߐ߮  \"$1\" ߕߍߣߊ߬ ߛߋ߫ ߟߊ߫ ߖߏ߬ߛߌ߬ ߟߊ߫.\nߡߐ߱ ߘߏ߫ ߣߐ߬ ߘߌ߫ ߞߴߊ߬ ߖߏ߬ߛߌ߬ ߟߊ߫ ߞߘߐ߬ߡߊ߲߬.",
        "cannotdelete-title": "ߌ ߕߍ߫ ߣߊ߬ ߛߋ߫ ߟߊ߫ ߞߐߜߍ ߖߏ߬ߛߌ߬ ߟߊ߫  \"$1\"",
+       "delete-scheduled": "ߞߐߜߍ  \"$1\" ߖߏ߬ߛߌ߬ߟߌ ߓߘߊ߫ ߟߐ߯ߟߊ߫. \nߌ ߡߎ߬ߢߎ߲߫ ߖߊ߰ߣߌ߲߫.",
+       "delete-hook-aborted": "ߖߏ߬ߛߌ߬ߟߌ ߓߘߊ߫ ߘߐߛߊ߬ ߛߏ߲߭ߓߊ߬ߟߌ ߓߟߏ߫. \nߊ߬ ߘߏ߲߬ ߡߊ߫ ߘߊ߲߬ߕߍ߰ߟߍ߬ ߛߌ߫ ߞߍ߫.",
+       "no-null-revision": "ߊ߬ ߕߍ߫ ߣߊ߬ ߛߋ߫ ߟߊ߫ ߣߐ߬ߡߊ߬ߛߊ߬ߦߌ߲߬ ߘߐ߬ߞߏ߬ߟߏ߲߬ ߛߌ߫ ߞߍ߫ ߟߊ߫ ߞߐߜߍ \"$1\" ߣߌ߲߬ ߘߐ߫.",
        "badtitle": "ߞߎ߲߬ߕߐ߰ ߖߎ߮",
        "badtitletext": "ߞߐߜߍ߫ ߡߊߢߌ߬ߣߌ߲߬ߞߊ߬ߣߍ߲ ߞߎ߲߬ߕߐ߮ ߓߍ߲߬ߣߍ߲߬ ߕߍ߫߸ ߊ߬ ߘߐߞߏߟߏ߲ ߦߋ߫߸ ߥߟߊ߫ ߞߊ߲ ߠߎ߬ ߣߌ߫ ߢߐ߲߯ߕߍ߫ ߛߘߌ߬ߜߋ߲ ߓߍ߲߬ߓߊߟߌ ߤߊߡߊ߲߫ ߥߞߌ ߟߎ߬ ߕߍ߫ ߛߘߌ߬ߜߋ߲.\nߛߓߍߘߋ߲߫ ߞߋߟߋ߲߫ ߥߟߊ߫ ߛߌߦߊߡߊ߲ ߠߎ߬ ߟߋ߬ ߦߋ߫ ߞߍ߫ ߟߴߊ߬ ߘߐ߫߸ ߡߍ߲ ߠߎ߬ ߕߴߛߋ߫ ߞߍ߫ ߟߊ߫ ߞߎ߲߬ߕߐ߯ ߘߌ߫.",
+       "title-invalid-empty": "ߞߐߜߍ߫ ߡߊߢߌ߬ߣߌ߲߬ߞߊ߬ߣߍ߲ ߞߎ߲߬ߕߐ߮ ߘߐߞߏߟߏ߲ ߠߋ߬ ߥߟߊ߫ ߕߐ߯ ߛߓߍ߫ ߞߣߍ ߘߏ߫ ߕߐ߮ ߟߋ߬ ߦߴߊ߬ ߘߐ߫.",
+       "title-invalid-utf8": "UTF-8 ߖߟߐ߬ߞߐ ߓߍ߲߬ߓߊߟߌ ߟߋ߬ ߦߋ߫ ߞߐߜߍ߫ ߡߊߢߌ߬ߣߌ߲߬ߞߊ߬ߣߍ߲ ߞߎ߲߬ߕߐ߮ ߘߐ߫.",
+       "title-invalid-interwiki": "ߥߞߌ ߣߌ߫ ߢߐ߲ߕߍ ߛߘߌ߬ߜߋ߲ ߘߏ߫ ߟߋ߬ ߦߋ߫ ߞߐߜߍ߫ ߡߊߢߌ߬ߣߌ߲߬ߞߊ߬ߣߍ߲ ߘߐ߫߸ ߡߍ߲ ߕߍ߫ ߛߐ߲߬ ߠߊߓߊ߯ߙߊ߫ ߟߊ߫ ߞߎ߲߬ߕߐ߮ ߘߐ߫.",
+       "title-invalid-talk-namespace": "ߞߐߜߍ ߞߎ߲߬ߕߐ߰ ߡߊߢߌ߬ߣߌ߲߬ߞߊ߬ߣߍ߲ ߟߐ߬ߣߍ߲߬ ߦߋ߫ ߓߊ߬ߘߏ߬ߢߐ߲߰ߦߊ߬ ߞߐߜߍ ߘߏ߫ ߟߋ߬ ߡߊ߬߸ ߡߍ߲ ߕߍ߫ ߦߋ߲߬ ߏ߬ ߞߐ߫.",
+       "title-invalid-characters": "ߛߓߍߘߋ߲ ߓߍ߲߬ߓߊߟߌ ߟߋ߬ ߦߴߌ ߟߊ߫ ߞߐߜߍ߫ ߞߎ߲߬ߕߐ߰ ߡߊߢߌ߬ߣߌ߲߬ߞߊ߬ߣߍ߲ ߘߐ߫:  \"$1\"",
        "viewsource": "ߊ߬ ߛߎ߲ ߘߐߜߍ߫",
        "viewsource-title": "ߣߌ߲߬ $1 ߛߎ߲ ߘߐߜߍ߫",
        "viewsourcetext": "ߌ ߘߌ߫ ߛߋ߫ ߞߐߜߍ ߣߌ߲߬ ߛߎ߲ ߦߋ߫ ߟߊ߫߸ ߞߵߊ߬ ߓߊߓߌ߬ߟߊ߬",
        "resetpass_submit": "ߕߊ߬ߡߌ߲߬ߞߊ߲ ߠߊߘߏ߲߬ ߞߵߌ ߜߊ߲߬ߞߎ߲߬",
        "changepassword-success": "ߌ ߟߊ߫ ߕߊ߬ߡߌ߲߬ߞߊ߲ ߓߘߊ߫ ߓߊ߲߫ ߠߊߞߊ߬ ߟߊ߫߹",
        "botpasswords": "ߓߏߕ ߕߊ߬ߡߌ߲߬ߞߊ߲",
+       "botpasswords-disabled": "ߓߏߕ ߕߊ߬ߡߌ߲߬ߞߊ߲ ߓߘߊ߫ ߓߴߊ߬ ߡߊ߬.",
+       "botpasswords-no-central-id": "ߖߐ߲߬ߛߊ߫ ߌ ߘߌ߫ ߓߏߕ ߕߊ߬ߡߌ߲߬ߞߊ߲ ߠߊߓߊ߯ߙߊ߫߸ ߌ ߞߊ߫ ߞߊ߲߫ ߞߊ߬ ߜߊ߲߬ߞߎ߲߬ߠߌ߲߬ ߕߊ߲ߓߊ߲ߓߐߣߍ߲ ߞߍ߫.",
        "botpasswords-existing": "ߕߋ߲߭ߕߋ߲߭ ߓߏߕ ߕߊ߬ߡߌ߲߬ߞߊ߲",
        "botpasswords-createnew": "ߓߏߕ ߕߊ߬ߡߌ߲߬ߞߊ߲߬ ߞߎߘߊ߫ ߛߌ߲ߘߌ߫",
        "botpasswords-label-needsreset": "(ߕߊ߬ߡߌ߲߬ߞߊ߲ ߤߊ߬ߕߊ߬ߦߋ߬ߣߍ߲߫ ߡߝߊ߬ߟߋ߲߬ߠߌ߲ ߠߊ߫)",
        "passwordreset-emailsentusername": "ߢߎߡߍߙߋ߲߫ ߞߏ߲ߘߏ ߘߏ߫ ߛߘߌ߬ߣߍ߲߬ ߦߋ߫ ߕߐ߯ ߟߊߓߊ߯ߙߕߊ ߣߌ߲߬ ߠߊ߫߸ ߏ߬ ߘߐ߫ ߕߊ߬ߡߌ߲߬ߞߊ߲߬ ߡߊ߬ߦߟߍ߬ߡߊ߲߬ ߛߘߌߜߋ߲ ߘߌ߫ ߣߊ߬ ߟߊߥߴߊ߬ ߡߊ߬.",
        "passwordreset-nocaller": "ߞߟߌߟߌߟߊ ߦߋ߫ ߡߊߛߐ߫ ߟߋ߬",
        "passwordreset-nosuchcaller": "ߞߟߌߟߌߟߊ ߕߴߦߋ߲߬ $1",
+       "passwordreset-invalidemail": "ߢߎߡߍߙߋ߲߫ ߛߊ߲߬ߓߊ߬ߕߐ߮ ߓߍ߲߬ߓߊߟߌ",
+       "changeemail": "ߢߎߡߍߙߋ߲߫ ߞߏ߲ߘߏ ߡߊߝߊ߬ߟߋ߲߬ ߥߟߊ߫ ߞߵߊ߬ ߛߋ߲߬ߓߐ߫",
        "changeemail-no-info": "ߌ ߦߴߌ ߜߊ߲߬ߞߎ߲߫ ߡߎߣߎ߲߬߸ ߞߊ߬ ߛߋ߫ ߞߐߜߍ ߣߌ߲߬ ߡߊߛߐ߬ߘߐ߲߬ ߠߊ߫ ߞߋߟߋ߲ߘߌ߫.",
        "changeemail-oldemail": "ߕߋ߲߭ߕߋ߲߭ ߢߎߡߍߙߋ߲߫ ߞߏ߲ߘߏ",
        "changeemail-newemail": "ߢߎߡߍߙߋ߲߫ ߞߏ߲ߘߏ߫ ߞߎߘߊ",
+       "changeemail-none": "(ߝߏߦߌ߬)",
        "changeemail-password": "ߌ ߟߊ߫ {{SITENAME}} ߕߊ߬ߡߌ߲߬ߞߊ߲",
        "changeemail-submit": "ߢߎߡߍߙߋ߲߫ ߞߏ߲ߘߏ ߡߊߝߊ߬ߟߋ߲߬",
+       "changeemail-nochange": "ߖߊ߰ߣߌ߲߬ ߌ ߦߋ߫ ߢߎߡߍߙߋ߲߫ ߞߏ߲ߘߏ߫ ߜߘߍ߫ ߟߊߘߏ߲߬.",
+       "resettokens": "ߖߐߟߐ߲ߞߐ ߡߊߝߊ߬ߟߋ߲߬",
+       "resettokens-text": "ߌ ߦߋ߫ ߖߐߟߐ߲ߞߐ ߡߊߝߊ߬ߟߋ߲߬ ߡߍ߲ ߦߋ߫ ߘߎ߲߬ߘߎ߬ߡߊ߬ ߓߟߏߡߟߊ ߘߏ߫ ߟߎ߫ ߡߊߛߐ߬ߘߐ߲ ߠߊߘߤߊ߬ ߟߴߌ ߦߋ߫߸ ߡߍ߲ ߠߎ߬ ߛߘߌ߬ߣߍ߲߬ ߦߴߌ ߟߊ߫ ߖߊ߬ߕߋ߬ߘߊ ߟߊ߫ ߦߊ߲߬.\n\nߌ ߞߊ߫ ߞߊ߲߫ ߞߵߏ߬ ߞߍ߫ ߣߴߌ ߣߐ߬ ߞߍ߫ ߘߴߊ߬ߟߎ߬ ߟߊߖߍ߲ߛߍ߲߫ ߠߊ߫ ߡߐ߱ ߘߏ߫ ߡߊ߬ ߓߌ߬ߟߊ߬ߒߘߐ߬ ߓߟߏߡߊ߬߸ ߥߟߊ߫ ߣߴߌ ߟߊ߫ ߖߊ߬ߕߋ߬ߘߊ ߢߊߓߐߣߍ߲߫ ߞߍ߫ ߘߊ߫.",
        "bold_sample": "ߛߓߍߘߋ߲߫ ߞߎ߲ߓߊ",
        "bold_tip": "ߛߓߍߘߋ߲߫ ߞߎ߲ߓߊ",
        "italic_sample": "ߛߓߍߟߌ߫ ߡߊߖߍ߲߬ߞߍ߬ߣߍ߲",
index 2154ada..6cac6f1 100644 (file)
        "mw-widgets-abandonedit-keep": "Continuar a editar",
        "mw-widgets-abandonedit-title": "Tem a certeza?",
        "mw-widgets-copytextlayout-copy": "Copiar",
+       "mw-widgets-copytextlayout-copy-fail": "Não foi possível copiar para a área de transferência.",
+       "mw-widgets-copytextlayout-copy-success": "Copiado para a área de transferência.",
        "mw-widgets-dateinput-no-date": "Não foi selecionada nenhuma data",
        "mw-widgets-dateinput-placeholder-day": "AAAA-MM-DD",
        "mw-widgets-dateinput-placeholder-month": "AAAA-MM",
index d813b9b..364fff4 100644 (file)
        "parentheses-start": "{{optional}}",
        "parentheses-end": "{{optional}}",
        "brackets": "{{Optional}}\n{{Format|plain}}",
-       "quotation-marks": "Quotation marks, for quoting, sometimes titles etc., depending on the language.\n\nSee: [[w:Non-English usage of quotation marks|Non-English usage of quotation marks on Wikipedia]].\n\nParameters:\n* $1 - text to be wrapped in quotation marks",
+       "quotation-marks": "Quotation marks, for quoting, sometimes titles etc., depending on the language.\n\nSee: [[w:Quotation mark#Summary table|Non-English usage of quotation marks on Wikipedia]].\n\nParameters:\n* $1 - text to be wrapped in quotation marks",
        "imgmultipageprev": "{{Identical|Previous page}}",
        "imgmultipagenext": "{{Identical|Next page}}",
        "imgmultigo": "Used as label for submit button.\n\nSee also:\n* {{msg-mw|Imgmultigoto}}\n{{Identical|Go}}",
index 004bb17..add1976 100644 (file)
@@ -39,7 +39,8 @@
                        "Luanibraj",
                        "Matěj Suchánek",
                        "Bjakupi",
-                       "Vlad5250"
+                       "Vlad5250",
+                       "Klein Muçi"
                ]
        },
        "tog-underline": "Nënvizimi i lidhjes:",
        "nrevisions": "$1 {{PLURAL:$1|version|versione}}",
        "nimagelinks": "Përdorur në $1 {{PLURAL:$1|faqe|faqe}}",
        "ntransclusions": "përdorur në $1 {{PLURAL:$1|faqe|faqe}}",
-       "specialpage-empty": "Kjo faqe është boshe.",
+       "specialpage-empty": "Kjo faqe është bosh.",
        "lonelypages": "Artikuj të palidhur",
        "lonelypagestext": "Faqet në vijim nuk janë të lidhura ose nuk janë të përfshira në faqet tjera në {{SITENAME}}.",
        "uncategorizedpages": "Artikuj të pakategorizuar",
index c2a2729..54dd8bc 100644 (file)
        "delete-warning-toobig": "Jujutan ieu kaca panjang pisan, leuwih ti{{PLURAL:$1|révisi|révisi}}. Dihapusna ieu kaca bisa ngaruksak jalanna pangkalan data {{SITENAME}}; sing ati-ati.",
        "deleteprotected": "Anjeun teu bisa mupus ieu kaca lantaran geus ditangtayungan.",
        "rollback": "Balikkeun éditan",
+       "rollback-confirmation-no": "Bolay",
        "rollbacklink": "balikkeun",
        "rollbacklinkcount": "balikkeun $1 {{PLURAL:$1|éditan}}",
        "rollbacklinkcount-morethan": "balikkeun leuwih ti $1 {{PLURAL:$1|saéditan|éditan}}",
        "revertpage": "Malikkeun éditan $2, diganti deui ka vérsi ahir ku $1",
        "rollback-success": "Mulangkeun éditan $1; balik deui ka vérsi panungtung ku $2.",
        "sessionfailure-title": "Kagagalan sési",
-       "sessionfailure": "Sigana aya masalah jeung termin log anjeun; peta ieu geus dibolaykeun salaku pépéling pikeun ngalawan ayana pangbajak. Mangga pencét \"back\" jeung muat ulang ti kaca asal anjeun, lajeng cobaan deui.",
+       "sessionfailure": "Sigana aya masalah jeung termin log anjeun; peta ieu geus dibolaykeun minangka panyingkahan pikeun ngalawan ayana pangbajak. Mangga pencét \"back\" jeung muat ulang ti kaca asal anjeun, tuluy pecakan deui.",
        "changecontentmodel": "Robah modél kontén hiji kaca",
        "changecontentmodel-legend": "Robah modél kontén",
        "changecontentmodel-title-label": "Judul kaca",
index 52f2e9f..0331027 100644 (file)
        "mw-widgets-abandonedit-discard": "Släng redigeringar",
        "mw-widgets-abandonedit-keep": "Fortsätt redigera",
        "mw-widgets-abandonedit-title": "Är du säker?",
+       "mw-widgets-copytextlayout-copy": "Kopiera",
+       "mw-widgets-copytextlayout-copy-fail": "Misslyckades att kopiera till urklipp.",
+       "mw-widgets-copytextlayout-copy-success": "Kopierades till urklipp.",
        "mw-widgets-dateinput-no-date": "Inget valt datum",
        "mw-widgets-dateinput-placeholder-day": "ÅÅÅÅ-MM-DD",
        "mw-widgets-dateinput-placeholder-month": "ÅÅÅÅ-MM",
index 4333659..ffce23c 100644 (file)
        "virus-scanfailed": "tarama başarısız (kod $1)",
        "virus-unknownscanner": "bilinmeyen antivürüs:",
        "logouttext": "'''Artık oturumunuzu kapattınız.'''\n\nTarayıcınızın önbelleğini temizleyinceye kadar bazı sayfalarda, oturumunuz açıkmış gibi gözükmeye devam edebilir.",
+       "logging-out-notify": "Oturumunuz kapatılıyor; lütfen bekleyin.",
+       "logout-failed": "Oturum şu an kapatılamıyor: $1",
        "cannotlogoutnow-title": "Şu an oturum kapatılamıyor",
        "cannotlogoutnow-text": "$1 kullanılırken oturumu kapatmak mümkün değil.",
        "welcomeuser": "Hoş geldin $1!",
        "badretype": "Girdiğiniz parolalar eşleşmiyor.",
        "usernameinprogress": "Bu kullanıcı adı için bir hesap oluşturma zaten sürüyor. Lütfen bekleyin.",
        "userexists": "Girdiğiniz kullanıcı adı zaten kullanımda.\nLütfen farklı bir kullanıcı adı seçiniz.",
+       "createacct-normalization": "Kullanıcı adınızı teknik sınırlamalar nedeniyle \"$2\" olarak değiştirilecektir.",
        "loginerror": "Oturum açma hatası.",
        "createacct-error": "Hesap oluşturma hatası",
        "createaccounterror": "Hesap oluşturulamıyor: $1",
        "resetpass-abort-generic": "Parola değişikliği bir uzantı tarafından iptal edildi.",
        "resetpass-expired": "Parolanızın süresi bitti. Lütfen, giriş için yeni bir parola oluşturun.",
        "resetpass-expired-soft": "Parolanızın süresi bitti ve değiştirilmesi gerekiyor. Lütfen, yeni bir parola seçin veya daha sonra değiştirmek için \"{{int:authprovider-resetpass-skip-label}}\" düğmesine tıklayın.",
+       "resetpass-validity": "Parolanız geçerli değil: $1",
        "resetpass-validity-soft": "Parolanız geçerli değil: $1\n\nLütfen yeni bir şifre belirleyin ya da daha sonra değiştirmek için \"{{int:authprovider-resetpass-skip-label}}\" bağlantısını tıklayın.",
        "passwordreset": "Parola sıfırlama",
        "passwordreset-text-one": "Parolanızı sıfırlamak için bu formu doldurun.",
        "defaultmessagetext": "Varsayılan mesaj metni",
        "content-failed-to-parse": "$1 modeli için $2 içerik türü çözümlenemedi: $3",
        "invalid-content-data": "Geçersiz içerik verisi",
-       "content-not-allowed-here": "\"$1\" içeriğine, [[:$2]] sayfasında izin verilmemekte.",
+       "content-not-allowed-here": "\"$1\" içeriğine, [[:$2]] sayfasının \"$3\" bölümünde izin verilmemekte.",
        "editwarning-warning": "Bu sayfadan ayrılmak yaptığınız herhangi bir değişikliği kaybetmenize sebep olabilir.\nEğer giriş yaptıysanız, bu uyarıyı, tercihlerinizin \"{{int:prefs-editing}}\" bölümünde devre dışı bırakabilirsiniz.",
        "editpage-invalidcontentmodel-title": "İçerik modeli desteklenmiyor",
        "editpage-invalidcontentmodel-text": "\"$1\" içerik modeli desteklenmemektedir.",
        "action-changetags": "tekil sürümlere veya günlük kayıtlarına etiket ekleme veya çıkarma",
        "action-deletechangetags": "etiketleri veritabanından sil",
        "action-purge": "bu sayfayı temizle",
+       "action-editinterface": "Kullanıcı arayüzünü değiştir",
+       "action-editusercss": "Diğer kullanıcıların CSS sayfalarını değiştir",
+       "action-edituserjson": "Diğer kullanıcıların JSON sayfalarını değiştir",
+       "action-edituserjs": "Diğer kullanıcıların JavaScript sayfalarını değiştir",
+       "action-hideuser": "Herkesten gizleyerek bir kullanıcı adını engelle",
        "nchanges": "$1 {{PLURAL:$1|değişiklik|değişiklik}}",
        "enhancedrc-since-last-visit": "$1 {{PLURAL:$1|son ziyaretten bu yana}}",
        "enhancedrc-history": "geçmiş",
        "uploadstash-file-not-found-no-local-path": "Ölçeklenmiş öge için yerel yol yok.",
        "uploadstash-file-not-found-no-object": "Küçük resim için yerel dosya nesnesi oluşturulamadı.",
        "uploadstash-file-not-found-no-remote-thumb": "Küçük resim alma başarısız oldu: $1\nURL = $2",
+       "uploadstash-wrong-owner": "Bu dosya ($1) mevcut kullanıcıya ait değil.",
        "uploadstash-no-extension": "Geçersiz uzantı.",
        "uploadstash-zero-length": "Dosya boyutu sıfır.",
        "invalid-chunk-offset": "Geçersiz öbek ofset",
index 8c05555..f25095e 100644 (file)
        "rcfilters-restore-default-filters": "Відновити стандартні фільтри",
        "rcfilters-clear-all-filters": "Очистити фільтри",
        "rcfilters-show-new-changes": "Переглянути нові зміни з $1",
-       "rcfilters-search-placeholder": "ФÑ\96лÑ\8cÑ\82Ñ\80Ñ\83йÑ\82е Ñ\80едагÑ\83ваннÑ\8f (використовуйте меню, або скористайтесь пошуком фільтра за назвою)",
+       "rcfilters-search-placeholder": "ФÑ\96лÑ\8cÑ\82Ñ\80Ñ\83ваÑ\82и Ð·Ð¼Ñ\96ни (використовуйте меню, або скористайтесь пошуком фільтра за назвою)",
        "rcfilters-invalid-filter": "Недійсний фільтр",
        "rcfilters-empty-filter": "Без фільтрів. Показано всі зміни.",
        "rcfilters-filterlist-title": "Фільтри",
index d80af9b..7ddd206 100644 (file)
        "showhideselectedversions": "Ìfihàn/ìbòmọ́lẹ̀ àwọn àtúnyẹ̀wò ṣíṣàyàn",
        "editundo": "dápadà",
        "diff-empty": "(Kò ní yàtọ̀)",
+       "diff-multi-sameuser": "({{PLURAL:$1|Àtúnyẹ̀wò inú àrin kan|Àwọn àtúnyẹ̀wò inú àrin $1}} látọwọ́ oníṣe kan náà kò jẹ́ híhàn)",
        "diff-multi-manyusers": "({{PLURAL:$1|Àtúnyẹ̀wò inú àrin kan|Àwọn àtúnyẹ̀wò inú àrin $1}} látọwọ́ {{PLURAL:$2|oníṣe|àwọn oníṣe}} tó pọ̀ju $2 lọ kò jẹ́ fífihàn)",
        "difference-missing-revision": "{{PLURAL:$2|Àtúnyẹ̀wò kan|Àwọn àtúnyẹ̀wò $2}} ìyàtọ̀ yìí ($1) kò {{PLURAL:$2|sí|sí}}.\n\nÈyí ṣẹlẹ̀ nítorí pé ẹ tẹ̀lé àjápọ̀ ìyàtọ̀ tí kò ṣiṣẹ́ mọ́ wá sí ojúewé tó ti jẹ́ píparẹ́.\nẸ̀kúnrẹ́rẹ́ wà nínú [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} àkọọ́lẹ̀ ìparẹ́].",
        "searchresults": "Àwọn èsì àwárí",
        "filehist-filesize": "Ìtóbi fáìlì",
        "filehist-comment": "Àríwí",
        "imagelinks": "Ìlò fáìlì",
-       "linkstoimage": "{{PLURAL:$1|Ojúewé kan yìí|Àwọn ojúewé $1 wọ̀nyí}} jápọ̀ mọ́ fáìlì yí:",
+       "linkstoimage": "{{PLURAL:$1|Ojúewé kan yìí|Àwọn ojúewé $1 wọ̀nyí}} únlo fáìlì yí:",
        "linkstoimage-more": "{{PLURAL:$1|Ojúewé|Àwọn ojúewé}} tó pọ̀ju $1 lọ jápọ̀ mọ́ fáìlì yìí.\nÀkòjọ ìṣàlẹ̀ yìí ṣàfihàn {{PLURAL:$1|ojúewé àkọ́kọ́|ojúewé $1 àkọ́kọ́}} tó jápọ̀ mọ́ fáìlì yìí nìkan.\n[[Special:WhatLinksHere/$2|Àkójọ kíkúnrẹ́rẹ́]] wà nígbèéwọ́.",
-       "nolinkstoimage": "Kò sí ojúewé tó jápọ̀ mọ́ fáìlì yìí.",
+       "nolinkstoimage": "Kò sí ojúewé tó únlo fáìlì yìí.",
        "morelinkstoimage": "Ìwòrán [[Special:WhatLinksHere/$1|àwọn ìjápọ̀ míhìn]] sí fáìlì yìí.",
        "linkstoimage-redirect": "$1 (àtúnjúwe fáìlì) $2",
        "duplicatesoffile": "{{PLURAL:$1|Fáìlì ìsàlẹ̀|Àwọn fáìli ìsàlẹ̀ $1}} yìí jẹ́ àwòkọ fáìlì yìí ([[Special:FileDuplicateSearch/$2|ẹ̀kúnrẹ́rẹ́]]):",
index 8e0f4b3..0b3b932 100644 (file)
        "confirm-rollback-button": "好",
        "confirm-rollback-bottom": "呢個動作會立即反轉晒揀咗嘅修改。",
        "confirm-mcrundo-title": "還原一個改動",
+       "semicolon-separator": ";",
        "comma-separator": "、",
        "word-separator": "",
        "parentheses": "($1)",
index c88a1a0..44ce9a5 100644 (file)
@@ -358,7 +358,7 @@ abstract class Maintenance {
                        wfDeprecated( __METHOD__ . ' without an $argId', '1.33' );
                }
 
-               return $this->hasArg( $argId ) ? $this->mArgs[$argId] : $default;
+               return $this->mArgs[$argId] ?? $default;
        }
 
        /**
index 3fdd057..8fec026 100644 (file)
@@ -31,7 +31,7 @@
     "stylelint-config-wikimedia": "0.5.0",
     "wdio-junit-reporter": "0.2.0",
     "wdio-mediawiki": "file:tests/selenium/wdio-mediawiki",
-    "wdio-mocha-framework": "0.5.13",
+    "wdio-mocha-framework": "0.6.4",
     "wdio-sauce-service": "0.3.1",
     "wdio-spec-reporter": "0.0.5",
     "webdriverio": "4.12.0"
index ebd9f1d..1272b01 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 
+use MediaWiki\MediaWikiServices;
 use Wikimedia\TestingAccessWrapper;
 
 /**
@@ -2662,7 +2663,8 @@ class OutputPageTest extends MediaWikiTestCase {
                $method = $class->getMethod( 'makeResourceLoaderLink' );
                $method->setAccessible( true );
                $ctx = new RequestContext();
-               $ctx->setSkin( SkinFactory::getDefaultInstance()->makeSkin( 'fallback' ) );
+               $skinFactory = MediaWikiServices::getInstance()->getSkinFactory();
+               $ctx->setSkin( $skinFactory->makeSkin( 'fallback' ) );
                $ctx->setLanguage( 'en' );
                $out = new OutputPage( $ctx );
                $nonce = $class->getProperty( 'CSPNonce' );
@@ -2775,7 +2777,8 @@ class OutputPageTest extends MediaWikiTestCase {
 
                // Set up stubs
                $ctx = new RequestContext();
-               $ctx->setSkin( SkinFactory::getDefaultInstance()->makeSkin( 'fallback' ) );
+               $skinFactory = MediaWikiServices::getInstance()->getSkinFactory();
+               $ctx->setSkin( $skinFactory->makeSkin( 'fallback' ) );
                $ctx->setLanguage( 'en' );
                $op = $this->getMockBuilder( OutputPage::class )
                        ->setConstructorArgs( [ $ctx ] )
index 7501167..bbd034a 100644 (file)
@@ -1,4 +1,5 @@
 <?php
+
 use MediaWiki\MediaWikiServices;
 use MediaWiki\Revision\MutableRevisionRecord;
 use MediaWiki\Revision\RevisionStore;
diff --git a/tests/phpunit/includes/api/ApiQueryLanguageinfoTest.php b/tests/phpunit/includes/api/ApiQueryLanguageinfoTest.php
new file mode 100644 (file)
index 0000000..f20a061
--- /dev/null
@@ -0,0 +1,175 @@
+<?php
+
+/**
+ * @group API
+ * @group medium
+ *
+ * @covers ApiQueryLanguageinfo
+ */
+class ApiQueryLanguageinfoTest extends ApiTestCase {
+
+       protected function setUp() {
+               parent::setUp();
+               // register custom language names so this test is independent of CLDR
+               $this->setTemporaryHook(
+                       'LanguageGetTranslatedLanguageNames',
+                       function ( array &$names, $code ) {
+                               switch ( $code ) {
+                                       case 'en':
+                                               $names['sh'] = 'Serbo-Croatian';
+                                               $names['qtp'] = 'a custom language code MediaWiki knows nothing about';
+                                               break;
+                                       case 'pt':
+                                               $names['de'] = 'alemão';
+                                               break;
+                               }
+                       }
+               );
+       }
+
+       private function doQuery( array $params, $microtimeFunction = null ): array {
+               $params += [
+                       'action' => 'query',
+                       'meta' => 'languageinfo',
+                       'uselang' => 'en',
+               ];
+
+               if ( $microtimeFunction !== null ) {
+                       // hook into the module manager to override the factory function
+                       // so we can call the constructor with the custom $microtimeFunction
+                       $this->setTemporaryHook(
+                               'ApiQuery::moduleManager',
+                               function ( ApiModuleManager $moduleManager ) use ( $microtimeFunction ) {
+                                       $moduleManager->addModule(
+                                               'languageinfo',
+                                               'meta',
+                                               ApiQueryLanguageinfo::class,
+                                               function ( $parent, $name ) use ( $microtimeFunction ) {
+                                                       return new ApiQueryLanguageinfo(
+                                                               $parent,
+                                                               $name,
+                                                               $microtimeFunction
+                                                       );
+                                               }
+                                       );
+                               }
+                       );
+               }
+
+               $res = $this->doApiRequest( $params );
+
+               $this->assertArrayNotHasKey( 'warnings', $res[0] );
+
+               return [ $res[0]['query']['languageinfo'], $res[0]['continue'] ?? null ];
+       }
+
+       public function testAllPropsForSingleLanguage() {
+               list( $response, $continue ) = $this->doQuery( [
+                       'liprop' => 'code|bcp47|dir|autonym|name|fallbacks|variants',
+                       'licode' => 'sh',
+               ] );
+
+               $this->assertArrayEquals( [
+                       'sh' => [
+                               'code' => 'sh',
+                               'bcp47' => 'sh',
+                               'autonym' => 'srpskohrvatski / српскохрватски',
+                               'name' => 'Serbo-Croatian',
+                               'fallbacks' => [ 'bs', 'sr-el', 'hr' ],
+                               'dir' => 'ltr',
+                               'variants' => [ 'sh' ],
+                       ],
+               ], $response );
+       }
+
+       public function testAllPropsForSingleCustomLanguage() {
+               list( $response, $continue ) = $this->doQuery( [
+                       'liprop' => 'code|bcp47|dir|autonym|name|fallbacks|variants',
+                       'licode' => 'qtp', // reserved for local use by ISO 639; registered in setUp()
+               ] );
+
+               $this->assertArrayEquals( [
+                       'qtp' => [
+                               'code' => 'qtp',
+                               'bcp47' => 'qtp',
+                               'autonym' => '',
+                               'name' => 'a custom language code MediaWiki knows nothing about',
+                               'fallbacks' => [],
+                               'dir' => 'ltr',
+                               'variants' => [ 'qtp' ],
+                       ],
+               ], $response );
+       }
+
+       public function testNameInOtherLanguageForSingleLanguage() {
+               list( $response, $continue ) = $this->doQuery( [
+                       'liprop' => 'name',
+                       'licode' => 'de',
+                       'uselang' => 'pt',
+               ] );
+
+               $this->assertArrayEquals( [ 'de' => [ 'name' => 'alemão' ] ], $response );
+       }
+
+       public function testContinuationNecessary() {
+               $time = 0;
+               $microtimeFunction = function () use ( &$time ) {
+                       return $time += 0.75;
+               };
+
+               list( $response, $continue ) = $this->doQuery( [], $microtimeFunction );
+
+               $this->assertCount( 2, $response );
+               $this->assertArrayHasKey( 'licontinue', $continue );
+       }
+
+       public function testContinuationNotNecessary() {
+               $time = 0;
+               $microtimeFunction = function () use ( &$time ) {
+                       return $time += 1.5;
+               };
+
+               list( $response, $continue ) = $this->doQuery( [
+                       'licode' => 'de',
+               ], $microtimeFunction );
+
+               $this->assertNull( $continue );
+       }
+
+       public function testContinuationInAlphabeticalOrderNotParameterOrder() {
+               $time = 0;
+               $microtimeFunction = function () use ( &$time ) {
+                       return $time += 0.75;
+               };
+               $params = [ 'licode' => 'en|ru|zh|de|yue' ];
+
+               list( $response, $continue ) = $this->doQuery( $params, $microtimeFunction );
+
+               $this->assertCount( 2, $response );
+               $this->assertArrayHasKey( 'licontinue', $continue );
+               $this->assertSame( [ 'de', 'en' ], array_keys( $response ) );
+
+               $time = 0;
+               $params = $continue + $params;
+               list( $response, $continue ) = $this->doQuery( $params, $microtimeFunction );
+
+               $this->assertCount( 2, $response );
+               $this->assertArrayHasKey( 'licontinue', $continue );
+               $this->assertSame( [ 'ru', 'yue' ], array_keys( $response ) );
+
+               $time = 0;
+               $params = $continue + $params;
+               list( $response, $continue ) = $this->doQuery( $params, $microtimeFunction );
+
+               $this->assertCount( 1, $response );
+               $this->assertNull( $continue );
+               $this->assertSame( [ 'zh' ], array_keys( $response ) );
+       }
+
+       public function testResponseHasModulePathEvenIfEmpty() {
+               list( $response, $continue ) = $this->doQuery( [ 'licode' => '' ] );
+               $this->assertEmpty( $response );
+               // the real test is that $res[0]['query']['languageinfo'] in doQuery() didn’t fail
+       }
+
+}
index 58b433f..a03280d 100644 (file)
@@ -1,4 +1,5 @@
 <?php
+
 use Wikimedia\Assert\ParameterTypeException;
 use Wikimedia\TestingAccessWrapper;
 
index 524fbdc..b0178fd 100644 (file)
@@ -1,4 +1,5 @@
 <?php
+
 use MediaWiki\MediaWikiServices;
 use MediaWiki\Revision\MutableRevisionRecord;
 use MediaWiki\Revision\RevisionRecord;
index 3ff677e..d5d4ec0 100644 (file)
@@ -1,4 +1,5 @@
 <?php
+
 use MediaWiki\MediaWikiServices;
 use MediaWiki\Tests\Revision\McrSchemaOverride;
 
index fcb10e7..4c95579 100644 (file)
@@ -1,4 +1,5 @@
 <?php
+
 use MediaWiki\MediaWikiServices;
 use MediaWiki\Revision\SlotRecord;
 use MediaWiki\Storage\SqlBlobStore;
index cf0b650..651c871 100644 (file)
@@ -1,4 +1,5 @@
 <?php
+
 use MediaWiki\MediaWikiServices;
 use MediaWiki\Revision\MutableRevisionRecord;
 use MediaWiki\Revision\RevisionStore;
index 016a9a0..c0544f4 100644 (file)
@@ -1,4 +1,5 @@
 <?php
+
 use MediaWiki\MediaWikiServices;
 use MediaWiki\Revision\MutableRevisionRecord;
 use MediaWiki\Revision\RevisionRecord;
index 0a4cf1e..fbef12e 100644 (file)
@@ -9,14 +9,16 @@ class ResourceLoaderFileModuleTest extends ResourceLoaderTestCase {
        protected function setUp() {
                parent::setUp();
 
+               $skinFactory = new SkinFactory();
                // The return value of the closure shouldn't matter since this test should
                // never call it
-               SkinFactory::getDefaultInstance()->register(
+               $skinFactory->register(
                        'fakeskin',
                        'FakeSkin',
                        function () {
                        }
                );
+               $this->setService( 'SkinFactory', $skinFactory );
        }
 
        private static function getModules() {
index 30e9f30..5df52bc 100644 (file)
@@ -16,26 +16,18 @@ class ResourceLoaderOOUIImageModuleTest extends ResourceLoaderTestCase {
                ] );
 
                // Pretend that 'fakemonobook' is a real skin using the Apex theme
-               SkinFactory::getDefaultInstance()->register(
+               $skinFactory = new SkinFactory();
+               $skinFactory->register(
                        'fakemonobook',
                        'FakeMonoBook',
                        function () {
                        }
                );
-               $r = new ReflectionMethod( ExtensionRegistry::class, 'exportExtractedData' );
-               $r->setAccessible( true );
-               $r->invoke( ExtensionRegistry::getInstance(), [
-                       'globals' => [],
-                       'defines' => [],
-                       'callbacks' => [],
-                       'credits' => [],
-                       'autoloaderPaths' => [],
-                       'attributes' => [
-                               'SkinOOUIThemes' => [
-                                       'fakemonobook' => 'Apex',
-                               ],
-                       ],
-               ] );
+               $this->setService( 'SkinFactory', $skinFactory );
+
+               $reset = ExtensionRegistry::getInstance()->setAttributeForTest(
+                       'SkinOOUIThemes', [ 'fakemonobook' => 'Apex' ]
+               );
 
                $styles = $module->getStyles( $this->getResourceLoaderContext( [ 'skin' => 'fakemonobook' ] ) );
                $this->assertRegExp(
index 429bda4..53f47a0 100644 (file)
@@ -27,6 +27,8 @@ class ExternalUserNamesTest extends MediaWikiTestCase {
         * @dataProvider provideGetUserLinkTitle
         */
        public function testGetUserLinkTitle( $username, $expected ) {
+               $this->setContentLang( 'en' );
+
                $interwikiLookupMock = $this->getMockBuilder( InterwikiLookup::class )
                        ->getMock();
 
index 7ec2d37..72db766 100644 (file)
@@ -1,4 +1,5 @@
 <?php
+
 use MediaWiki\Linker\LinkTarget;
 use MediaWiki\Revision\RevisionLookup;
 use MediaWiki\Revision\RevisionRecord;
index dcbb101..69f9c38 100644 (file)
@@ -1,4 +1,5 @@
 <?php
+
 use MediaWiki\Session\SessionProvider;
 use MediaWiki\Session\SessionInfo;
 use MediaWiki\Session\SessionBackend;
index cfc01ea..9641802 100644 (file)
@@ -1,4 +1,5 @@
 <?php
+
 use MediaWiki\Logger\LoggerFactory;
 use MediaWiki\MediaWikiServices;
 use Psr\Log\LoggerInterface;