From: jenkins-bot Date: Mon, 21 Aug 2017 22:41:17 +0000 (+0000) Subject: Merge "Don't hard-code Preferences page name" X-Git-Tag: 1.31.0-rc.0~2348 X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=commitdiff_plain;h=d455aa29a685971c8191bc38383f1514e7cae806;hp=2a416c57d59997893b2e6345c85743c6f3b06552 Merge "Don't hard-code Preferences page name" --- diff --git a/.stylelintrc b/.stylelintrc deleted file mode 100644 index 27e289d430..0000000000 --- a/.stylelintrc +++ /dev/null @@ -1,8 +0,0 @@ -{ - "extends": "stylelint-config-wikimedia", - "rules": { - "no-descending-specificity": null, - - "selector-no-id": null - } -} diff --git a/.stylelintrc.json b/.stylelintrc.json new file mode 100644 index 0000000000..27e289d430 --- /dev/null +++ b/.stylelintrc.json @@ -0,0 +1,8 @@ +{ + "extends": "stylelint-config-wikimedia", + "rules": { + "no-descending-specificity": null, + + "selector-no-id": null + } +} diff --git a/RELEASE-NOTES-1.30 b/RELEASE-NOTES-1.30 index 9474f21fd2..dd39561d22 100644 --- a/RELEASE-NOTES-1.30 +++ b/RELEASE-NOTES-1.30 @@ -168,6 +168,9 @@ changes to languages because of Phabricator reports. * WikiImporter now requires the second parameter to be an instance of the Config, class. Prior to that, the Config parameter was optional (a behavior deprecated in 1.25). +* Removed 'jquery.mwExtension' module. (deprecated since 1.26) +* mediawiki.ui: Deprecate greys, which are not part of WikimediaUI color palette + any more. == Compatibility == MediaWiki 1.30 requires PHP 5.5.9 or later. There is experimental support for diff --git a/docs/uidesign/child-selector-emu.html b/docs/uidesign/child-selector-emu.html deleted file mode 100644 index 9db4c54d1a..0000000000 --- a/docs/uidesign/child-selector-emu.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - CSS Child selector emulation for IE 6 - - - -

-The following table show how nested tables inherit colors from the wikitable class (here it was renamed "global"). -

- - - - - - - - - - - -
Global table
TH: should have pink bg
TD: white bg
- - - - - - -
Nested table
Nested TH: transparentNested TD: transparent
-
- -

-With child selector we could limit the wikitable styling to the direct childs of the table. Unfortunately, Internet Explorer 6.0 does not support child selector. See our bug #33752. -

- - - - - - - - - - - -
Global table
TH: should have pink bg
TD: white bg
- - - - - - -
Nested table
Nested TH: transparentNested TD: transparent
-
-

NOTE:The nested caption keep the green background. The nested table keep the black border. This is because those declarations are global so we did not reset them.

diff --git a/includes/Block.php b/includes/Block.php index 843ea54484..5066038ba0 100644 --- a/includes/Block.php +++ b/includes/Block.php @@ -1513,7 +1513,7 @@ class Block { * * @param string $cookieValue The string in which to find the ID. * - * @return integer|null The block ID, or null if the HMAC is present and invalid. + * @return int|null The block ID, or null if the HMAC is present and invalid. */ public static function getIdFromCookieValue( $cookieValue ) { // Extract the ID prefix from the cookie value (may be the whole value, if no bang found). diff --git a/includes/Category.php b/includes/Category.php index c22ea64abf..629962d2a9 100644 --- a/includes/Category.php +++ b/includes/Category.php @@ -48,7 +48,7 @@ class Category { /** * Set up all member variables using a database query. - * @param integer $mode + * @param int $mode * @throws MWException * @return bool True on success, false on failure. */ diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 4e162f6ef5..26138892b5 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -4901,7 +4901,7 @@ $wgDefaultUserOptions = [ 'date' => 'default', 'diffonly' => 0, 'disablemail' => 0, - 'editfont' => 'default', + 'editfont' => 'monospace', 'editondblclick' => 0, 'editsectiononrightclick' => 0, 'enotifminoredits' => 0, @@ -6846,6 +6846,11 @@ $wgStructuredChangeFiltersEnableExperimentalViews = false; */ $wgStructuredChangeFiltersEnableLiveUpdate = false; +/** + * Whether to enable RCFilters app on Special:Watchlist + */ +$wgStructuredChangeFiltersOnWatchlist = false; + /** * Use new page patrolling to check new pages on Special:Newpages */ diff --git a/includes/EditPage.php b/includes/EditPage.php index 49341c5e7e..914e7aa6a9 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -336,7 +336,7 @@ class EditPage { /** @var string */ public $edittime = ''; - /** @var integer */ + /** @var int */ private $editRevId = null; /** @var string */ @@ -1726,7 +1726,7 @@ class EditPage { * - spam (string): Spam string from content if any spam is detected by * matchSpamRegex. * - sectionanchor (string): Section anchor for a section save. - * - nullEdit (boolean): Set if doEditContent is OK. True if null edit, + * - nullEdit (bool): Set if doEditContent is OK. True if null edit, * false otherwise. * - redirect (bool): Set if doEditContent is OK. True if resulting * revision is a redirect. diff --git a/includes/MediaWiki.php b/includes/MediaWiki.php index 4e471844d8..10b9e2b9ca 100644 --- a/includes/MediaWiki.php +++ b/includes/MediaWiki.php @@ -970,7 +970,7 @@ class MediaWiki { } /** - * @param integer $n Number of jobs to try to run + * @param int $n Number of jobs to try to run * @param LoggerInterface $runJobsLogger */ private function triggerSyncJobs( $n, LoggerInterface $runJobsLogger ) { @@ -979,7 +979,7 @@ class MediaWiki { } /** - * @param integer $n Number of jobs to try to run + * @param int $n Number of jobs to try to run * @param LoggerInterface $runJobsLogger * @return bool Success */ diff --git a/includes/MergeHistory.php b/includes/MergeHistory.php index 48ff97bdf1..9d63869641 100644 --- a/includes/MergeHistory.php +++ b/includes/MergeHistory.php @@ -56,7 +56,7 @@ class MergeHistory { /** @var MWTimestamp|bool Timestamp upto which history from the source will be merged */ protected $timestampLimit; - /** @var integer Number of revisions merged (for Special:MergeHistory success message) */ + /** @var int Number of revisions merged (for Special:MergeHistory success message) */ protected $revisionsMerged; /** diff --git a/includes/OutputPage.php b/includes/OutputPage.php index 2a3a7cd147..dd21194bdb 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -1998,10 +1998,10 @@ class OutputPage extends ContextSource { * the TTL is higher the older the $mtime timestamp is. Essentially, the * TTL is 90% of the age of the object, subject to the min and max. * - * @param string|integer|float|bool|null $mtime Last-Modified timestamp - * @param integer $minTTL Mimimum TTL in seconds [default: 1 minute] - * @param integer $maxTTL Maximum TTL in seconds [default: $wgSquidMaxage] - * @return integer TTL in seconds + * @param string|int|float|bool|null $mtime Last-Modified timestamp + * @param int $minTTL Mimimum TTL in seconds [default: 1 minute] + * @param int $maxTTL Maximum TTL in seconds [default: $wgSquidMaxage] + * @return int TTL in seconds * @since 1.28 */ public function adaptCdnTTL( $mtime, $minTTL = 0, $maxTTL = 0 ) { diff --git a/includes/Preferences.php b/includes/Preferences.php index 04a3637ce4..c64e8a8ae1 100644 --- a/includes/Preferences.php +++ b/includes/Preferences.php @@ -832,10 +832,10 @@ class Preferences { 'section' => 'editing/editor', 'label-message' => 'editfont-style', 'options' => [ - $context->msg( 'editfont-default' )->text() => 'default', $context->msg( 'editfont-monospace' )->text() => 'monospace', $context->msg( 'editfont-sansserif' )->text() => 'sans-serif', $context->msg( 'editfont-serif' )->text() => 'serif', + $context->msg( 'editfont-default' )->text() => 'default', ] ]; } @@ -920,6 +920,9 @@ class Preferences { $defaultPreferences['rcfilters-saved-queries'] = [ 'type' => 'api', ]; + $defaultPreferences['rcfilters-wl-saved-queries'] = [ + 'type' => 'api', + ]; $defaultPreferences['rcfilters-rclimit'] = [ 'type' => 'api', ]; diff --git a/includes/Revision.php b/includes/Revision.php index 3d4d161547..e457beb035 100644 --- a/includes/Revision.php +++ b/includes/Revision.php @@ -752,7 +752,7 @@ class Revision implements IDBAccessObject { * This should only be used for proposed revisions that turn out to be null edits * * @since 1.28 - * @param integer $id User ID + * @param int $id User ID * @param string $name User name */ public function setUserIdAndName( $id, $name ) { @@ -1584,7 +1584,7 @@ class Revision implements IDBAccessObject { * Get the text cache TTL * * @param WANObjectCache $cache - * @return integer + * @return int */ private static function getCacheTTL( WANObjectCache $cache ) { global $wgRevisionCacheExpiry; diff --git a/includes/SiteStats.php b/includes/SiteStats.php index 6a2d0e2ada..ce87596a5f 100644 --- a/includes/SiteStats.php +++ b/includes/SiteStats.php @@ -294,7 +294,7 @@ class SiteStatsInit { /** * @param bool|IDatabase $database - * - boolean: Whether to use the master DB + * - bool: Whether to use the master DB * - IDatabase: Database connection to use */ public function __construct( $database = false ) { @@ -379,10 +379,10 @@ class SiteStatsInit { * for the original initStats, but without output. * * @param IDatabase|bool $database - * - boolean: Whether to use the master DB + * - bool: Whether to use the master DB * - IDatabase: Database connection to use * @param array $options Array of options, may contain the following values - * - activeUsers boolean: Whether to update the number of active users (default: false) + * - activeUsers bool: Whether to update the number of active users (default: false) */ public static function doAllAndCommit( $database, array $options = [] ) { $options += [ 'update' => false, 'activeUsers' => false ]; diff --git a/includes/StreamFile.php b/includes/StreamFile.php index cce3fc464b..71113a8691 100644 --- a/includes/StreamFile.php +++ b/includes/StreamFile.php @@ -38,7 +38,7 @@ class StreamFile { * @param array $headers Any additional headers to send if the file exists * @param bool $sendErrors Send error messages if errors occur (like 404) * @param array $optHeaders HTTP request header map (e.g. "range") (use lowercase keys) - * @param integer $flags Bitfield of STREAM_* constants + * @param int $flags Bitfield of STREAM_* constants * @throws MWException * @return bool Success */ @@ -64,7 +64,7 @@ class StreamFile { * Send out a standard 404 message for a file * * @param string $fname Full name and path of the file to stream - * @param integer $flags Bitfield of STREAM_* constants + * @param int $flags Bitfield of STREAM_* constants * @since 1.24 */ public static function send404Message( $fname, $flags = 0 ) { @@ -75,7 +75,7 @@ class StreamFile { * Convert a Range header value to an absolute (start, end) range tuple * * @param string $range Range header value - * @param integer $size File size + * @param int $size File size * @return array|string Returns error string on failure (start, end, length) * @since 1.24 */ diff --git a/includes/api/ApiParamInfo.php b/includes/api/ApiParamInfo.php index 17b00933a1..480575ca26 100644 --- a/includes/api/ApiParamInfo.php +++ b/includes/api/ApiParamInfo.php @@ -163,7 +163,7 @@ class ApiParamInfo extends ApiBase { /** * List all submodules of a module * @param ApiBase $module - * @param boolean $recursive + * @param bool $recursive * @return string[] */ private function listAllSubmodules( ApiBase $module, $recursive ) { diff --git a/includes/api/i18n/nl.json b/includes/api/i18n/nl.json index 0273eca698..ff99dff7c6 100644 --- a/includes/api/i18n/nl.json +++ b/includes/api/i18n/nl.json @@ -197,7 +197,7 @@ "apihelp-opensearch-param-search": "Zoektekst.", "apihelp-opensearch-param-limit": "Het maximaal aantal weer te geven resultaten.", "apihelp-opensearch-param-namespace": "Te doorzoeken naamruimten.", - "apihelp-opensearch-param-suggest": "Niets doen als [[mw:Manual:$wgEnableOpenSearchSuggest|$wgEnableOpenSearchSuggest]] onwaar is.", + "apihelp-opensearch-param-suggest": "Niets doen als [[mw:Special:MyLanguage/Manual:$wgEnableOpenSearchSuggest|$wgEnableOpenSearchSuggest]] onwaar is.", "apihelp-opensearch-param-redirects": "Hoe om te gaan met doorverwijzingen:\n;return:Geef de doorverwijzing terug.\n;resolve:Geef de doelpagina terug. Kan minder dan de limiet $1 resultaten teruggeven.\nOm historische redenen is de standaardinstelling \"return\" voor $1format=json en \"resolve\" voor andere formaten.", "apihelp-opensearch-param-format": "Het uitvoerformaat.", "apihelp-opensearch-param-warningsaserror": "Als er waarschuwingen zijn met format=json, geef dan een API-fout terug in plaats van deze te negeren.", @@ -309,7 +309,7 @@ "apihelp-query+revisions-param-tag": "Alleen versies weergeven met dit label.", "apihelp-query+revisions+base-paramvalue-prop-content": "Versietekst.", "apihelp-query+revisions+base-paramvalue-prop-tags": "Labels voor de versie.", - "apihelp-query+revisions+base-param-difftotextpst": "\"pre-save\"-transformatie uitvoeren op de tekst alvorens de verschillen te bepalen. Alleen geldig als dit wordt gebruikt met $1difftotext.", + "apihelp-query+revisions+base-param-difftotextpst": "Gebruik in plaats hiervan [[Special:ApiHelp/compare|action=compare]]. \"pre-save\"-transformatie uitvoeren op de tekst alvorens de verschillen te bepalen. Alleen geldig als dit wordt gebruikt met $1difftotext.", "apihelp-query+search-summary": "Voer een volledige tekst zoekopdracht uit.", "apihelp-query+search-param-limit": "Hoeveel pagina's te tonen.", "apihelp-query+search-example-simple": "Zoeken naar betekenis.", diff --git a/includes/auth/AuthManager.php b/includes/auth/AuthManager.php index c3f798fd49..b2528fe693 100644 --- a/includes/auth/AuthManager.php +++ b/includes/auth/AuthManager.php @@ -2131,7 +2131,7 @@ class AuthManager implements LoggerAwareInterface { * @param AuthenticationRequest[] &$reqs * @param string $action * @param string|null $username - * @param boolean $forceAction + * @param bool $forceAction */ private function fillRequests( array &$reqs, $action, $username, $forceAction = false ) { foreach ( $reqs as $req ) { diff --git a/includes/auth/CreateFromLoginAuthenticationRequest.php b/includes/auth/CreateFromLoginAuthenticationRequest.php index ddeb13d9d6..db827972cb 100644 --- a/includes/auth/CreateFromLoginAuthenticationRequest.php +++ b/includes/auth/CreateFromLoginAuthenticationRequest.php @@ -66,7 +66,7 @@ class CreateFromLoginAuthenticationRequest extends AuthenticationRequest { * Indicate whether this request contains any state for the specified * action. * @param string $action One of the AuthManager::ACTION_* constants - * @return boolean + * @return bool */ public function hasStateForAction( $action ) { switch ( $action ) { @@ -83,7 +83,7 @@ class CreateFromLoginAuthenticationRequest extends AuthenticationRequest { * Indicate whether this request contains state for the specified * action sufficient to replace other primary-required requests. * @param string $action One of the AuthManager::ACTION_* constants - * @return boolean + * @return bool */ public function hasPrimaryStateForAction( $action ) { switch ( $action ) { diff --git a/includes/cache/HTMLFileCache.php b/includes/cache/HTMLFileCache.php index b0a3a1c262..7ae2ee0e21 100644 --- a/includes/cache/HTMLFileCache.php +++ b/includes/cache/HTMLFileCache.php @@ -87,7 +87,7 @@ class HTMLFileCache extends FileCacheBase { /** * Check if pages can be cached for this request/user * @param IContextSource $context - * @param integer $mode One of the HTMLFileCache::MODE_* constants (since 1.28) + * @param int $mode One of the HTMLFileCache::MODE_* constants (since 1.28) * @return bool */ public static function useFileCache( IContextSource $context, $mode = self::MODE_NORMAL ) { @@ -140,7 +140,7 @@ class HTMLFileCache extends FileCacheBase { /** * Read from cache to context output * @param IContextSource $context - * @param integer $mode One of the HTMLFileCache::MODE_* constants + * @param int $mode One of the HTMLFileCache::MODE_* constants * @return void */ public function loadFromFileCache( IContextSource $context, $mode = self::MODE_NORMAL ) { diff --git a/includes/cache/MessageCache.php b/includes/cache/MessageCache.php index 16c1ac55fc..768f980b26 100644 --- a/includes/cache/MessageCache.php +++ b/includes/cache/MessageCache.php @@ -253,7 +253,7 @@ class MessageCache { * is disabled. * * @param string $code Language to which load messages - * @param integer $mode Use MessageCache::FOR_UPDATE to skip process cache [optional] + * @param int $mode Use MessageCache::FOR_UPDATE to skip process cache [optional] * @throws MWException * @return bool */ @@ -396,7 +396,7 @@ class MessageCache { /** * @param string $code * @param array &$where List of wfDebug() comments - * @param integer $mode Use MessageCache::FOR_UPDATE to use DB_MASTER + * @param int $mode Use MessageCache::FOR_UPDATE to use DB_MASTER * @return bool|string True on success or one of ("cantacquire", "disabled") */ protected function loadFromDBWithLock( $code, array &$where, $mode = null ) { @@ -458,7 +458,7 @@ class MessageCache { * on-demand from the database later. * * @param string $code Language code - * @param integer $mode Use MessageCache::FOR_UPDATE to skip process cache + * @param int $mode Use MessageCache::FOR_UPDATE to skip process cache * @return array Loaded messages for storing in caches */ protected function loadFromDB( $code, $mode = null ) { @@ -755,7 +755,7 @@ class MessageCache { /** * @param string $key A language message cache key that stores blobs - * @param integer $timeout Wait timeout in seconds + * @param int $timeout Wait timeout in seconds * @return null|ScopedCallback */ protected function getReentrantScopedLock( $key, $timeout = self::WAIT_SEC ) { diff --git a/includes/collation/IcuCollation.php b/includes/collation/IcuCollation.php index d93362bcaa..54b04eead8 100644 --- a/includes/collation/IcuCollation.php +++ b/includes/collation/IcuCollation.php @@ -36,7 +36,7 @@ class IcuCollation extends Collation { /** @var Language */ protected $digitTransformLanguage; - /** @var boolean */ + /** @var bool */ private $useNumericCollation = false; /** @var array */ diff --git a/includes/config/EtcdConfig.php b/includes/config/EtcdConfig.php index 6605c38d5a..d7dc45a537 100644 --- a/includes/config/EtcdConfig.php +++ b/includes/config/EtcdConfig.php @@ -45,11 +45,11 @@ class EtcdConfig implements Config, LoggerAwareInterface { private $directory; /** @var string */ private $encoding; - /** @var integer */ + /** @var int */ private $baseCacheTTL; - /** @var integer */ + /** @var int */ private $skewCacheTTL; - /** @var integer */ + /** @var int */ private $timeout; /** diff --git a/includes/dao/DBAccessObjectUtils.php b/includes/dao/DBAccessObjectUtils.php index cc63446cb3..ee10368521 100644 --- a/includes/dao/DBAccessObjectUtils.php +++ b/includes/dao/DBAccessObjectUtils.php @@ -28,8 +28,8 @@ */ class DBAccessObjectUtils implements IDBAccessObject { /** - * @param integer $bitfield - * @param integer $flags IDBAccessObject::READ_* constant + * @param int $bitfield + * @param int $flags IDBAccessObject::READ_* constant * @return bool Bitfield has flag $flag set */ public static function hasFlags( $bitfield, $flags ) { @@ -42,7 +42,7 @@ class DBAccessObjectUtils implements IDBAccessObject { * The fallback DB index and options are to be used if the entity is not found * with the initial DB index, typically querying the master DB to avoid lag * - * @param integer $bitfield Bitfield of IDBAccessObject::READ_* constants + * @param int $bitfield Bitfield of IDBAccessObject::READ_* constants * @return array List of DB indexes and options in this order: * - DB_MASTER or DB_REPLICA constant for the initial query * - SELECT options array for the initial query diff --git a/includes/dao/IDBAccessObject.php b/includes/dao/IDBAccessObject.php index 5acf3ae371..e18a090bcb 100644 --- a/includes/dao/IDBAccessObject.php +++ b/includes/dao/IDBAccessObject.php @@ -54,16 +54,16 @@ */ interface IDBAccessObject { /** Constants for object loading bitfield flags (higher => higher QoS) */ - /** @var integer Read from a replica DB/non-quorum */ + /** @var int Read from a replica DB/non-quorum */ const READ_NORMAL = 0; - /** @var integer Read from the master/quorum */ + /** @var int Read from the master/quorum */ const READ_LATEST = 1; - /* @var integer Read from the master/quorum and lock out other writers */ + /* @var int Read from the master/quorum and lock out other writers */ const READ_LOCKING = 3; // READ_LATEST (1) and "LOCK IN SHARE MODE" (2) - /** @var integer Read from the master/quorum and lock out other writers and locking readers */ + /** @var int Read from the master/quorum and lock out other writers and locking readers */ const READ_EXCLUSIVE = 7; // READ_LOCKING (3) and "FOR UPDATE" (4) - /** @var integer Read from a replica DB or without a quorum, using the master/quorum on miss */ + /** @var int Read from a replica DB or without a quorum, using the master/quorum on miss */ const READ_LATEST_IMMUTABLE = 8; // Convenience constant for tracking how data was loaded (higher => higher QoS) diff --git a/includes/debug/logger/monolog/WikiProcessor.php b/includes/debug/logger/monolog/WikiProcessor.php index 5e32887a17..e39a2c300a 100644 --- a/includes/debug/logger/monolog/WikiProcessor.php +++ b/includes/debug/logger/monolog/WikiProcessor.php @@ -35,15 +35,13 @@ class WikiProcessor { */ public function __invoke( array $record ) { global $wgVersion; - $record['extra'] = array_merge( - $record['extra'], - [ - 'host' => wfHostname(), - 'wiki' => wfWikiID(), - 'mwversion' => $wgVersion, - 'reqId' => \WebRequest::getRequestId(), - ] - ); + $record['extra']['host'] = wfHostname(); + $record['extra']['wiki'] = wfWikiID(); + $record['extra']['mwversion'] = $wgVersion; + $record['extra']['reqId'] = \WebRequest::getRequestId(); + if ( PHP_SAPI === 'cli' && isset( $_SERVER['argv'] ) ) { + $record['extra']['cli_argv'] = implode( ' ', $_SERVER['argv'] ); + } return $record; } diff --git a/includes/deferred/DeferredUpdates.php b/includes/deferred/DeferredUpdates.php index e8f27ef233..40069f33c0 100644 --- a/includes/deferred/DeferredUpdates.php +++ b/includes/deferred/DeferredUpdates.php @@ -71,7 +71,7 @@ class DeferredUpdates { * In CLI mode, callback magic will also be used to run updates when safe * * @param DeferrableUpdate $update Some object that implements doUpdate() - * @param integer $stage DeferredUpdates constant (PRESEND or POSTSEND) (since 1.27) + * @param int $stage DeferredUpdates constant (PRESEND or POSTSEND) (since 1.27) */ public static function addUpdate( DeferrableUpdate $update, $stage = self::POSTSEND ) { global $wgCommandLineMode; @@ -105,7 +105,7 @@ class DeferredUpdates { * @see MWCallableUpdate::__construct() * * @param callable $callable - * @param integer $stage DeferredUpdates constant (PRESEND or POSTSEND) (since 1.27) + * @param int $stage DeferredUpdates constant (PRESEND or POSTSEND) (since 1.27) * @param IDatabase|null $dbw Abort if this DB is rolled back [optional] (since 1.28) */ public static function addCallableUpdate( @@ -118,7 +118,7 @@ class DeferredUpdates { * Do any deferred updates and clear the list * * @param string $mode Use "enqueue" to use the job queue when possible [Default: "run"] - * @param integer $stage DeferredUpdates constant (PRESEND, POSTSEND, or ALL) (since 1.27) + * @param int $stage DeferredUpdates constant (PRESEND, POSTSEND, or ALL) (since 1.27) */ public static function doUpdates( $mode = 'run', $stage = self::ALL ) { $stageEffective = ( $stage === self::ALL ) ? self::POSTSEND : $stage; @@ -165,7 +165,7 @@ class DeferredUpdates { * * @param DeferrableUpdate[] &$queue List of DeferrableUpdate objects * @param string $mode Use "enqueue" to use the job queue when possible - * @param integer $stage Class constant (PRESEND, POSTSEND) (since 1.28) + * @param int $stage Class constant (PRESEND, POSTSEND) (since 1.28) * @throws ErrorPageError Happens on top-level calls * @throws Exception Happens on second-level calls */ @@ -238,7 +238,7 @@ class DeferredUpdates { * @param DeferrableUpdate $update * @param LBFactory $lbFactory * @param string $mode - * @param integer $stage + * @param int $stage * @return ErrorPageError|null */ private static function runUpdate( @@ -322,7 +322,7 @@ class DeferredUpdates { } /** - * @return integer Number of enqueued updates + * @return int Number of enqueued updates * @since 1.28 */ public static function pendingUpdatesCount() { @@ -330,7 +330,7 @@ class DeferredUpdates { } /** - * @param integer $stage DeferredUpdates constant (PRESEND, POSTSEND, or ALL) + * @param int $stage DeferredUpdates constant (PRESEND, POSTSEND, or ALL) * @return DeferrableUpdate[] * @since 1.29 */ diff --git a/includes/deferred/LinksDeletionUpdate.php b/includes/deferred/LinksDeletionUpdate.php index 3dd9de6f91..f579a1f12f 100644 --- a/includes/deferred/LinksDeletionUpdate.php +++ b/includes/deferred/LinksDeletionUpdate.php @@ -29,7 +29,7 @@ use Wikimedia\Rdbms\IDatabase; class LinksDeletionUpdate extends DataUpdate implements EnqueueableDataUpdate { /** @var WikiPage */ protected $page; - /** @var integer */ + /** @var int */ protected $pageId; /** @var string */ protected $timestamp; @@ -39,7 +39,7 @@ class LinksDeletionUpdate extends DataUpdate implements EnqueueableDataUpdate { /** * @param WikiPage $page Page we are updating - * @param integer|null $pageId ID of the page we are updating [optional] + * @param int|null $pageId ID of the page we are updating [optional] * @param string|null $timestamp TS_MW timestamp of deletion * @throws MWException */ diff --git a/includes/deferred/LinksUpdate.php b/includes/deferred/LinksUpdate.php index c6facd9bf8..18a87e8bf2 100644 --- a/includes/deferred/LinksUpdate.php +++ b/includes/deferred/LinksUpdate.php @@ -192,7 +192,7 @@ class LinksUpdate extends DataUpdate implements EnqueueableDataUpdate { * Acquire a lock for performing link table updates for a page on a DB * * @param IDatabase $dbw - * @param integer $pageId + * @param int $pageId * @param string $why One of (job, atomicity) * @return ScopedCallback * @throws RuntimeException diff --git a/includes/exception/MWExceptionRenderer.php b/includes/exception/MWExceptionRenderer.php index 60d760f3aa..bb5e4f4eda 100644 --- a/includes/exception/MWExceptionRenderer.php +++ b/includes/exception/MWExceptionRenderer.php @@ -33,7 +33,7 @@ class MWExceptionRenderer { /** * @param Exception|Throwable $e Original exception - * @param integer $mode MWExceptionExposer::AS_* constant + * @param int $mode MWExceptionExposer::AS_* constant * @param Exception|Throwable|null $eNew New exception from attempting to show the first */ public static function output( $e, $mode, $eNew = null ) { @@ -262,7 +262,7 @@ class MWExceptionRenderer { } /** - * @param integer $code + * @param int $code */ private static function statusHeader( $code ) { if ( !headers_sent() ) { diff --git a/includes/filerepo/FileBackendDBRepoWrapper.php b/includes/filerepo/FileBackendDBRepoWrapper.php index c37a942128..0d5a15d2f0 100644 --- a/includes/filerepo/FileBackendDBRepoWrapper.php +++ b/includes/filerepo/FileBackendDBRepoWrapper.php @@ -282,7 +282,7 @@ class FileBackendDBRepoWrapper extends FileBackend { /** * Get a connection to the repo file registry DB * - * @param integer $index + * @param int $index * @return DBConnRef */ protected function getDB( $index ) { diff --git a/includes/filerepo/ForeignAPIRepo.php b/includes/filerepo/ForeignAPIRepo.php index 56ccc64499..55a19e8327 100644 --- a/includes/filerepo/ForeignAPIRepo.php +++ b/includes/filerepo/ForeignAPIRepo.php @@ -511,7 +511,7 @@ class ForeignAPIRepo extends FileRepo { * @param string $url * @param string $timeout * @param array $options - * @param integer|bool &$mtime Resulting Last-Modified UNIX timestamp if received + * @param int|bool &$mtime Resulting Last-Modified UNIX timestamp if received * @return bool|string */ public static function httpGet( diff --git a/includes/filerepo/file/File.php b/includes/filerepo/file/File.php index 71e1c63480..460fe51e3f 100644 --- a/includes/filerepo/file/File.php +++ b/includes/filerepo/file/File.php @@ -862,7 +862,7 @@ abstract class File implements IDBAccessObject { * * Overridden by LocalFile to actually query the DB * - * @param integer $flags Bitfield of File::READ_* constants + * @param int $flags Bitfield of File::READ_* constants */ public function load( $flags = 0 ) { } diff --git a/includes/htmlform/HTMLForm.php b/includes/htmlform/HTMLForm.php index 7293b99e38..465736bb06 100644 --- a/includes/htmlform/HTMLForm.php +++ b/includes/htmlform/HTMLForm.php @@ -1893,7 +1893,7 @@ class HTMLForm extends ContextSource { * 'novalidate' attribute will be added on the `
` element. It will be removed if the user * agent has JavaScript support, in htmlform.js. * - * @return boolean + * @return bool * @since 1.29 */ public function needsJSForHtml5FormValidation() { diff --git a/includes/htmlform/HTMLFormField.php b/includes/htmlform/HTMLFormField.php index 77ddc1a1b5..3f1c590908 100644 --- a/includes/htmlform/HTMLFormField.php +++ b/includes/htmlform/HTMLFormField.php @@ -357,7 +357,7 @@ abstract class HTMLFormField { * (wpFormIdentifier). * * @param WebRequest $request - * @return boolean + * @return bool */ protected function isSubmitAttempt( WebRequest $request ) { return $request->getCheck( 'wpEditToken' ) || $request->getCheck( 'wpFormIdentifier' ); @@ -1218,7 +1218,7 @@ abstract class HTMLFormField { * Whether this field requires the user agent to have JavaScript enabled for the client-side HTML5 * form validation to work correctly. * - * @return boolean + * @return bool * @since 1.29 */ public function needsJSForHtml5FormValidation() { diff --git a/includes/htmlform/fields/HTMLFormFieldWithButton.php b/includes/htmlform/fields/HTMLFormFieldWithButton.php index bcb07bd1c2..b2290ce3c1 100644 --- a/includes/htmlform/fields/HTMLFormFieldWithButton.php +++ b/includes/htmlform/fields/HTMLFormFieldWithButton.php @@ -6,7 +6,7 @@ class HTMLFormFieldWithButton extends HTMLFormField { /** @var string $mButtonClass CSS class for the button in this field */ protected $mButtonClass = ''; - /** @var string|integer $mButtonId Element ID for the button in this field */ + /** @var string|int $mButtonId Element ID for the button in this field */ protected $mButtonId = ''; /** @var string $mButtonName Name the button in this field */ diff --git a/includes/installer/i18n/be-tarask.json b/includes/installer/i18n/be-tarask.json index 096767f309..b427c19566 100644 --- a/includes/installer/i18n/be-tarask.json +++ b/includes/installer/i18n/be-tarask.json @@ -318,6 +318,7 @@ "config-nofile": "Файл «$1» ня знойдзены. Ці быў ён выдалены?", "config-extension-link": "Ці ведаеце вы, што вашая вікі падтрымлівае [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Extensions пашырэньні]?\n\nВы можаце праглядзець [https://www.mediawiki.org/wiki/Special:MyLanguage/Category:Extensions_by_category пашырэньні паводле катэгорыяў] або [https://www.mediawiki.org/wiki/Extension_Matrix матрыцу пашырэньняў], каб пабачыць поўны сьпіс.", "config-skins-screenshots": "$1 (здымкі экрану: $2)", + "config-screenshot": "здымак экрану", "mainpagetext": "MediaWiki была ўсталяваная.", "mainpagedocfooter": "Глядзіце [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents дапаможнік карыстальніка] для атрыманьня інфармацыі па карыстаньні вікі-праграмамі.\n\n== З чаго пачаць ==\n* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Сьпіс парамэтраў канфігурацыі]\n* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ Частыя пытаньні MediaWiki]\n* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce Рассылка паведамленьняў пра зьяўленьне новых вэрсіяў MediaWiki]\n* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Пераклад MediaWiki на вашую мову]\n* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Даведайцеся, як змагацца з спамам у вашай вікі]" } diff --git a/includes/installer/i18n/fa.json b/includes/installer/i18n/fa.json index 6282ca1bd2..97a09a3e9c 100644 --- a/includes/installer/i18n/fa.json +++ b/includes/installer/i18n/fa.json @@ -91,6 +91,7 @@ "config-no-cli-uploads-check": "'''هشدار:''' فهرست پیش‌فرض ارسال‌های شما ($1) برای آسیب‌پذیری اجرای متن دلخواه در طول نصب سی‌ال آی بررسی نشده‌است.", "config-brokenlibxml": "دستگاه شما دارای تلفیقی از نسخه‌های پی‌اچ‌پی و لیبکسمل۲ است که ناقص است و می‌تواند دلیل از بین رفتن اطلاعات مخفی در مدیاویکی و دیگر برنامه‌های کاربردی شبکه باشد.\nارتقاء به لیبکسمل۲ ۲.۷.۳ یا بالاتر ([https://bugs.php.net/bug.php?id=45996 bug filed with PHP]) ارتفاء دهید.\nنصب شکست خورد ماند.", "config-suhosin-max-value-length": "سوهُسین نصب شده‌است و پارامتر جت length را به $1 بایت محدود می‌کند.\n قسمت بارکنندهٔ منبع مدیاویکی پیرامون این محدوده کار خواهد‌کرد، اما عملکرد آن را پایین می‌آورد. اگر به هیچ وجه ممکن نیست، باید suhosin.get.max_value_length را به ۱۰۲۴ یا بالاتر در php.ini تنظیم کنید، و \n$wgResourceLoaderMaxQueryLength را به مقدار مشابه در LocalSettings.php تنظیم کنید.", + "config-using-32bit": "هشدار: سیستم شما به‌نظر می‌آید با اعداد صحیح ۳۲ بیت اجرا شده باشد. [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:32-bit توصیه نمی‌شود].", "config-db-type": "نوع پایگاه اطلاعات:", "config-db-host": "میزبان پایگاه اطلاعات:", "config-db-host-help": "اگر سرور پایگاه اطلاعاتی شما در سرور دیگری است، نام گروه و آدرس آی‌پی را اینجا وارد کنید.\nاگر از گروه شبکهٔ اشتراک گذاری استفاده می‌کنید، تهیه‌کنندهٔ گروه‌تان باید نام گروه صحیح در اسنادومدارک را به شما بدهد.\nاگر در حال نصب یک سرور ویندوز هستید و از مای‌اس‌کیو‌ال استفاده می‌کنید، ممکن است استفاده از \"گروه داخلی\" برای نام سرور کار نکند.اگر کار نکرد، \"۱۲۷.۰.۰.۱\" را برای آدرس آی‌پی داخلی امتحان کنید.\nاگر از پستگِرِاس‌کیوال استفاده می‌کنید،برای اتصال از طریق یک سوکت یونیکس این زمینه را خالی رها کنید.", @@ -103,7 +104,7 @@ "config-db-account-oracle-warn": "برای نصب برنامهٔ اوراکل به عنوان پایگاه اطلاعاتی در بخش گذشته،سه سناریو پشتیبانی شده است:\nاگر مایل به ایجاد حساب پایگاه اطلاعاتی به عنوان بخشی از روند نصب هستید، لطفاً یک حساب با نقش اس‌وای‌اس‌دی‌بی‌ای به عنوان حساب پایگاه اطلاعاتی برای نصب تهیه کنید و اعتبارنامه‌های مطلوبی را برای حساب دردسترس شبکه تعیین کنید، به عبارتی دیگر یا می‌توانید حساب دردسترس شبکه را به طور دستی ایجاد کنید و تنها آن حساب را تهیه کنید (اگر مستلزم مجوزهایی برای ایجاد موضوعات طرح کلی باشد) یا دو حساب دیگر تهیه کنید،یکی با ایجاد مزایا و یک حساب محدود برای دسترسی شبکه.\nمتنی برای ایجاد یک حساب با مزایای لازم بنویسید که می‌تواند در فهرست\"نگهداری/برنامهٔ اوراکل\" این نصب یافت شود. به یاد داشته باشید که استفاده از یک حساب محدود،همهٔ قابلیت‌های نگهداری با حساب پیش‌فرض را غیرفعال خواهد کرد.", "config-db-install-account": "حساب کاربری برای نصب", "config-db-username": "نام کاربری پایگاه اطلاعات:", - "config-db-password": "گذرواژه پایگاه داده‌ها:", + "config-db-password": "گذرواژه پایگاه‌های داده:", "config-db-install-username": "نام کاربری را وارد کنید که برای اتصال به پایگاه اطلاعاتی در طول روند نصب استفاده خواهد‌شد.\nاین نام کاربری حساب مدیاویکی نیست; نام کاربری برای پایگاه اطلاعاتی شما است.", "config-db-install-password": "رمز عبوری را وارد کنید که برای اتصال به پایگاه اطلاعاتی در طول روند نصب استفاده خواهد‌شد.\nاین رمز عبور برای حساب مدیاویکی نیست;رمز عبور برای پایگاه اطلاعاتی شما است.", "config-db-install-help": "نام کاربری و رمز عبوری را وارد کنید که برای اتصال به پایگاه اطلاعاتی در طول روند نصب استفاده خواهد‌ٰشد.", @@ -321,6 +322,8 @@ "config-help-tooltip": "برای گسترش کلیک کنید", "config-nofile": "پروندهٔ «$1» یافت نشد. آیا حذف شده‌است؟", "config-extension-link": "آیا می‌دانستید که ویکی شما [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Extensions extensions] را پشتیبانی می‌کند؟\nشما می‌توانید [https://www.mediawiki.org/wiki/Special:MyLanguage/Category:Extensions_by_category extensions by category]", + "config-skins-screenshots": "$1 (تصاویر: $2)", + "config-screenshot": "تصویر", "mainpagetext": "'''مدیاویکی با موفقیت نصب شد.'''", "mainpagedocfooter": "از [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents راهنمای کاربری]\nبرای اطلاعات بیشتر در مورد به‌کارگیری نرم‌افزار ویکی استفاده کنید.\n\n== آغاز به کار ==\n\n* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings فهرست تنظیمات پیکربندی]\n* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ پرسش‌های متداول مدیاویکی]\n* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce فهرست ایمیلی نسخه‌های مدیاویکی]\n* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources محلی‌سازی مدیاویکی به زبان شما]\n* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam یادگیری روش‌های مقابله با هرزنگاری در ویکی]" } diff --git a/includes/installer/i18n/fr.json b/includes/installer/i18n/fr.json index 9122967fcf..84e0a423f1 100644 --- a/includes/installer/i18n/fr.json +++ b/includes/installer/i18n/fr.json @@ -104,6 +104,7 @@ "config-no-cli-uploads-check": "'''Attention:''' Votre répertoire par défaut pour les imports($1) n'est pas contrôlé concernant la vulnérabilité d'exécution de scripts arbitraires lors de l'installation CLI.", "config-brokenlibxml": "Votre système utilise une combinaison de versions de PHP et libxml2 qui est boguée et peut engendrer des corruptions cachées de données dans MediaWiki et d’autres applications web.\nVeuillez mettre à jour votre système vers libxml2 2.7.3 ou plus récent ([https://bugs.php.net/bug.php?id=45996 bogue déposé auprès de PHP]).\nInstallation interrompue.", "config-suhosin-max-value-length": "Suhosin est installé et limite la longueur du paramètre GET à $1 octets.\nLe composant ResourceLoader de MediaWiki va répondre en respectant cette limite, mais ses performances seront dégradées. Si possible, vous devriez définir suhosin.get.max_value_length à 1024 ou plus dans le fichier php.ini, et fixer $wgResourceLoaderMaxQueryLength à la même valeur dans LocalSettings.php.", + "config-using-32bit": "Attention: votre système semble utiliser les entiers sur 32 bits. Ceci n'est [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:32-bit pas recommandé].", "config-db-type": "Type de base de données :", "config-db-host": "Nom d’hôte de la base de données :", "config-db-host-help": "Si votre serveur de base de données est sur un serveur différent, saisissez ici son nom d’hôte ou son adresse IP.\n\nSi vous utilisez un hébergement mutualisé, votre hébergeur doit vous avoir fourni le nom d’hôte correct dans sa documentation.\n\nSi vous installez sur un serveur Windows et utilisez MySQL, « localhost » peut ne pas fonctionner comme nom de serveur. S’il ne fonctionne pas, essayez « 127.0.0.1 » comme adresse IP locale.\n\nSi vous utilisez PostgreSQL, laissez ce champ vide pour vous connecter via un socket Unix.", @@ -337,6 +338,8 @@ "config-help-tooltip": "cliquer pour agrandir", "config-nofile": "Le fichier « $1 » est introuvable. A-t-il été supprimé ?", "config-extension-link": "Saviez-vous que votre wiki prend en charge [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Extensions des extensions] ?\n\nVous pouvez consulter les [https://www.mediawiki.org/wiki/Special:MyLanguage/Category:Extensions_by_category extensions par catégorie] ou la [https://www.mediawiki.org/wiki/Extension_Matrix matrice des extensions] pour voir la liste complète des extensions.", + "config-skins-screenshots": "$1 (captures d'écran: $2)", + "config-screenshot": "Captures d’écrans", "mainpagetext": "MediaWiki a été installé.", "mainpagedocfooter": "Consultez le [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents Guide de l’utilisateur du contenu] pour plus d’informations sur l’utilisation de ce logiciel de wiki.\n\n== Pour démarrer ==\n* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Liste des paramètres de configuration]\n* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ/fr Questions courantes sur MediaWiki]\n* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce Liste de discussion sur les distributions de MediaWiki]\n* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Adaptez MediaWiki dans votre langue]\n* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Apprendre comment lutter contre le pourriel dans votre wiki]" } diff --git a/includes/installer/i18n/ko.json b/includes/installer/i18n/ko.json index ee01751253..66f095a738 100644 --- a/includes/installer/i18n/ko.json +++ b/includes/installer/i18n/ko.json @@ -319,6 +319,7 @@ "config-help-tooltip": "확장하려면 클릭", "config-nofile": "\"$1\" 파일을 찾을 수 없습니다. 이미 삭제되었나요?", "config-extension-link": "당신의 위키가 [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Extensions 확장 기능]을 지원한다는 것을 알고 계십니까?\n\n[https://www.mediawiki.org/wiki/Special:MyLanguage/Category:Extensions_by_category 분류별 확장 기능]을 찾아보실 수 있습니다.", + "config-skins-screenshots": "$1 (스크린샷: $2)", "config-screenshot": "스크린샷", "mainpagetext": "미디어위키가 설치되었습니다.", "mainpagedocfooter": "[https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents 이곳]에서 위키 소프트웨어에 대한 정보를 얻을 수 있습니다.\n\n== 시작하기 ==\n\n* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings 설정하기 목록]\n* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ 미디어위키 FAQ]\n* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce 미디어위키 릴리스 메일링 리스트]\n* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources 내 언어로 미디어위키 지역화]\n* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam 당신의 위키에서 스팸에 대처하는 법을 배우세요]" diff --git a/includes/installer/i18n/nl.json b/includes/installer/i18n/nl.json index 4db6cfbd63..442054ad32 100644 --- a/includes/installer/i18n/nl.json +++ b/includes/installer/i18n/nl.json @@ -330,6 +330,8 @@ "config-help-tooltip": "klik om uit te vouwen", "config-nofile": "Het bestand \"$1\" is niet gevonden. Is het verwijderd?", "config-extension-link": "Weet u dat u [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Extensions uitbreidingen] kunt gebruiken voor uw wiki?\n\nU kunt [https://www.mediawiki.org/wiki/Special:MyLanguage/Category:Extensions_by_category uitbreidingen op categorie] bekijken of ga naar de [https://www.mediawiki.org/wiki/Extension_Matrix uitbreidingenmatrix] om de volledige lijst met uitbreidingen te bekijken.", + "config-skins-screenshots": "$1 (schermafbeeldingen: $2)", + "config-screenshot": "schermafbeelding", "mainpagetext": "De installatie van MediaWiki is geslaagd.", "mainpagedocfooter": "Raadpleeg de [https://meta.wikimedia.org/wiki/Special:MyLanguage/Help:Contents handleiding] voor informatie over het gebruik van de wikisoftware.\n\n== Meer hulp over MediaWiki ==\n\n* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Lijst met instellingen]\n* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ Veelgestelde vragen (FAQ)]\n* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce Mailinglijst voor aankondigingen van nieuwe versies]\n* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Maak MediaWiki beschikbaar in uw taal]\n* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Leer hoe u spam kunt voorkomen op uw wiki]" } diff --git a/includes/installer/i18n/pt.json b/includes/installer/i18n/pt.json index 884f956259..a6ebd92a56 100644 --- a/includes/installer/i18n/pt.json +++ b/includes/installer/i18n/pt.json @@ -94,6 +94,7 @@ "config-no-cli-uploads-check": "Aviso: O diretório por omissão para carregamentos, $1, não é verificado para determinar se é vulnerável à execução de listas arbitrárias de comandos durante a instalação por CLI (\"Command-line Interface\").", "config-brokenlibxml": "O seu sistema tem uma combinação de versões do PHP e do libxml2 conhecida por ser problemática, podendo causar corrupção de dados no MediaWiki e noutras aplicações da Internet.\nAtualize para a versão 2.7.3 ou posterior do libxml2 ([https://bugs.php.net/bug.php?id=45996 incidência reportada no PHP]).\nInstalação cancelada.", "config-suhosin-max-value-length": "O Suhosin está instalado e limita o parâmetro GET length a $1 bytes.\nO componente ResourceLoader do MediaWiki consegue exceder este limite, mas prejudicando o desempenho.\nSe lhe for possível, deve atribuir ao parâmetro suhosin.get.max_value_length o valor 1024 ou maior no ficheiro php.ini, e definir o mesmo valor para $wgResourceLoaderMaxQueryLength no ficheiro LocalSettings.php.", + "config-using-32bit": "Aviso: o seu sistema parece estar a funcionar com inteiros de 32 bits. Isto [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:32-bit não é recomendado].", "config-db-type": "Tipo da base de dados:", "config-db-host": "Servidor da base de dados:", "config-db-host-help": "Se a base de dados estiver num servidor separado, introduza aqui o nome ou o endereço IP desse servidor.\n\nSe estiver a usar um servidor partilhado, o fornecedor do alojamento deve fornecer o nome do servidor na documentação.\n\nSe está a fazer a instalação num servidor Windows com MySQL, usar como nome do servidor \"localhost\" poderá não funcionar. Se não funcionar, tente usar \"127.0.0.1\" como endereço IP local.\n\nSe estiver a usar PostgreSQL, deixe este campo em branco para fazer a ligação através de um socket Unix.", diff --git a/includes/jobqueue/jobs/CategoryMembershipChangeJob.php b/includes/jobqueue/jobs/CategoryMembershipChangeJob.php index 3a0063c3ed..3907fc65ec 100644 --- a/includes/jobqueue/jobs/CategoryMembershipChangeJob.php +++ b/includes/jobqueue/jobs/CategoryMembershipChangeJob.php @@ -34,7 +34,7 @@ use Wikimedia\Rdbms\LBFactory; * @since 1.27 */ class CategoryMembershipChangeJob extends Job { - /** @var integer|null */ + /** @var int|null */ private $ticket; const ENQUEUE_FUDGE_SEC = 60; diff --git a/includes/jobqueue/jobs/RefreshLinksJob.php b/includes/jobqueue/jobs/RefreshLinksJob.php index 0c84a139f4..b4ead5d568 100644 --- a/includes/jobqueue/jobs/RefreshLinksJob.php +++ b/includes/jobqueue/jobs/RefreshLinksJob.php @@ -39,9 +39,9 @@ use Wikimedia\Rdbms\DBReplicationWaitError; class RefreshLinksJob extends Job { /** @var float Cache parser output when it takes this long to render */ const PARSE_THRESHOLD_SEC = 1.0; - /** @var integer Lag safety margin when comparing root job times to last-refresh times */ + /** @var int Lag safety margin when comparing root job times to last-refresh times */ const CLOCK_FUDGE = 10; - /** @var integer How many seconds to wait for replica DBs to catch up */ + /** @var int How many seconds to wait for replica DBs to catch up */ const LAG_WAIT_TIMEOUT = 15; function __construct( Title $title, array $params ) { diff --git a/includes/libs/GenericArrayObject.php b/includes/libs/GenericArrayObject.php index f76d9a2e8d..79d13741e2 100644 --- a/includes/libs/GenericArrayObject.php +++ b/includes/libs/GenericArrayObject.php @@ -45,7 +45,7 @@ abstract class GenericArrayObject extends ArrayObject { /** * @see SiteList::getNewOffset() * @since 1.20 - * @var integer + * @var int */ protected $indexOffset = 0; @@ -56,7 +56,7 @@ abstract class GenericArrayObject extends ArrayObject { * * @since 1.20 * - * @return integer + * @return int */ protected function getNewOffset() { while ( $this->offsetExists( $this->indexOffset ) ) { @@ -167,7 +167,7 @@ abstract class GenericArrayObject extends ArrayObject { * * @since 1.20 * - * @param integer|string $index + * @param int|string $index * @param mixed $value * * @return bool diff --git a/includes/libs/HashRing.php b/includes/libs/HashRing.php index a4aabcd3fe..be40965e84 100644 --- a/includes/libs/HashRing.php +++ b/includes/libs/HashRing.php @@ -35,7 +35,7 @@ class HashRing { protected $liveRing; /** @var Array (location => UNIX timestamp) */ protected $ejectionExpiries = []; - /** @var integer UNIX timestamp */ + /** @var int UNIX timestamp */ protected $ejectionNextExpiry = INF; const RING_SIZE = 268435456; // 2^28 @@ -93,7 +93,7 @@ class HashRing { * Get the location of an item on the ring, as well as the next locations * * @param string $item - * @param integer $limit Maximum number of locations to return + * @param int $limit Maximum number of locations to return * @return array List of locations */ public function getLocations( $item, $limit ) { @@ -152,7 +152,7 @@ class HashRing { * Remove a location from the "live" hash ring * * @param string $location - * @param integer $ttl Seconds + * @param int $ttl Seconds * @return bool Whether some non-ejected locations are left */ public function ejectFromLiveRing( $location, $ttl ) { @@ -218,7 +218,7 @@ class HashRing { * Get the location of an item on the "live" ring, as well as the next locations * * @param string $item - * @param integer $limit Maximum number of locations to return + * @param int $limit Maximum number of locations to return * @return array List of locations * @throws UnexpectedValueException */ diff --git a/includes/libs/MultiHttpClient.php b/includes/libs/MultiHttpClient.php index 6c48cee1ae..16168e6b59 100644 --- a/includes/libs/MultiHttpClient.php +++ b/includes/libs/MultiHttpClient.php @@ -50,13 +50,13 @@ class MultiHttpClient implements LoggerAwareInterface { protected $multiHandle = null; // curl_multi handle /** @var string|null SSL certificates path */ protected $caBundlePath; - /** @var integer */ + /** @var int */ protected $connTimeout = 10; - /** @var integer */ + /** @var int */ protected $reqTimeout = 300; /** @var bool */ protected $usePipelining = false; - /** @var integer */ + /** @var int */ protected $maxConnsPerHost = 50; /** @var string|null proxy */ protected $proxy; diff --git a/includes/libs/filebackend/HTTPFileStreamer.php b/includes/libs/filebackend/HTTPFileStreamer.php index a7d064b6e3..9730acb8cd 100644 --- a/includes/libs/filebackend/HTTPFileStreamer.php +++ b/includes/libs/filebackend/HTTPFileStreamer.php @@ -63,7 +63,7 @@ class HTTPFileStreamer { * @param array $headers Any additional headers to send if the file exists * @param bool $sendErrors Send error messages if errors occur (like 404) * @param array $optHeaders HTTP request header map (e.g. "range") (use lowercase keys) - * @param integer $flags Bitfield of STREAM_* constants + * @param int $flags Bitfield of STREAM_* constants * @throws MWException * @return bool Success */ @@ -179,7 +179,7 @@ class HTTPFileStreamer { * Send out a standard 404 message for a file * * @param string $fname Full name and path of the file to stream - * @param integer $flags Bitfield of STREAM_* constants + * @param int $flags Bitfield of STREAM_* constants * @since 1.24 */ public static function send404Message( $fname, $flags = 0 ) { @@ -202,7 +202,7 @@ class HTTPFileStreamer { * Convert a Range header value to an absolute (start, end) range tuple * * @param string $range Range header value - * @param integer $size File size + * @param int $size File size * @return array|string Returns error string on failure (start, end, length) * @since 1.24 */ diff --git a/includes/libs/objectcache/BagOStuff.php b/includes/libs/objectcache/BagOStuff.php index a262e0e18e..f834ccf937 100644 --- a/includes/libs/objectcache/BagOStuff.php +++ b/includes/libs/objectcache/BagOStuff.php @@ -47,7 +47,7 @@ use Wikimedia\WaitConditionLoop; abstract class BagOStuff implements IExpiringStore, LoggerAwareInterface { /** @var array[] Lock tracking */ protected $locks = []; - /** @var integer ERR_* class constant */ + /** @var int ERR_* class constant */ protected $lastError = self::ERR_NONE; /** @var string */ protected $keyspace = 'local'; @@ -55,7 +55,7 @@ abstract class BagOStuff implements IExpiringStore, LoggerAwareInterface { protected $logger; /** @var callback|null */ protected $asyncHandler; - /** @var integer Seconds */ + /** @var int Seconds */ protected $syncTimeout; /** @var bool */ @@ -70,7 +70,7 @@ abstract class BagOStuff implements IExpiringStore, LoggerAwareInterface { /** @var callable[] */ protected $busyCallbacks = []; - /** @var integer[] Map of (ATTR_* class constant => QOS_* class constant) */ + /** @var int[] Map of (ATTR_* class constant => QOS_* class constant) */ protected $attrMap = []; /** Possible values for getLastError() */ @@ -142,7 +142,7 @@ abstract class BagOStuff implements IExpiringStore, LoggerAwareInterface { * @param string $key * @param int $ttl Time-to-live (seconds) * @param callable $callback Callback that derives the new value - * @param integer $flags Bitfield of BagOStuff::READ_* constants [optional] + * @param int $flags Bitfield of BagOStuff::READ_* constants [optional] * @return mixed The cached value if found or the result of $callback otherwise * @since 1.27 */ @@ -172,8 +172,8 @@ abstract class BagOStuff implements IExpiringStore, LoggerAwareInterface { * higher tiers using standard TTLs. * * @param string $key - * @param integer $flags Bitfield of BagOStuff::READ_* constants [optional] - * @param integer $oldFlags [unused] + * @param int $flags Bitfield of BagOStuff::READ_* constants [optional] + * @param int $oldFlags [unused] * @return mixed Returns false on failure and if the item does not exist */ public function get( $key, $flags = 0, $oldFlags = null ) { @@ -220,7 +220,7 @@ abstract class BagOStuff implements IExpiringStore, LoggerAwareInterface { /** * @param string $key - * @param integer $flags Bitfield of BagOStuff::READ_* constants [optional] + * @param int $flags Bitfield of BagOStuff::READ_* constants [optional] * @return mixed Returns false on failure and if the item does not exist */ abstract protected function doGet( $key, $flags = 0 ); @@ -230,7 +230,7 @@ abstract class BagOStuff implements IExpiringStore, LoggerAwareInterface { * * @param string $key * @param mixed &$casToken - * @param integer $flags Bitfield of BagOStuff::READ_* constants [optional] + * @param int $flags Bitfield of BagOStuff::READ_* constants [optional] * @return mixed Returns false on failure and if the item does not exist * @throws Exception */ @@ -503,7 +503,7 @@ abstract class BagOStuff implements IExpiringStore, LoggerAwareInterface { /** * Get an associative array containing the item for each of the keys that have items. * @param array $keys List of strings - * @param integer $flags Bitfield; supports READ_LATEST [optional] + * @param int $flags Bitfield; supports READ_LATEST [optional] * @return array */ public function getMulti( array $keys, $flags = 0 ) { @@ -766,8 +766,8 @@ abstract class BagOStuff implements IExpiringStore, LoggerAwareInterface { } /** - * @param integer $flag ATTR_* class constant - * @return integer QOS_* class constant + * @param int $flag ATTR_* class constant + * @return int QOS_* class constant * @since 1.28 */ public function getQoS( $flag ) { @@ -778,7 +778,7 @@ abstract class BagOStuff implements IExpiringStore, LoggerAwareInterface { * Merge the flag maps of one or more BagOStuff objects into a "lowest common denominator" map * * @param BagOStuff[] $bags - * @return integer[] Resulting flag map (class ATTR_* constant => class QOS_* constant) + * @return int[] Resulting flag map (class ATTR_* constant => class QOS_* constant) */ protected function mergeFlagMaps( array $bags ) { $map = []; diff --git a/includes/libs/objectcache/HashBagOStuff.php b/includes/libs/objectcache/HashBagOStuff.php index baa3c32c6a..6d583da07c 100644 --- a/includes/libs/objectcache/HashBagOStuff.php +++ b/includes/libs/objectcache/HashBagOStuff.php @@ -31,7 +31,7 @@ class HashBagOStuff extends BagOStuff { /** @var mixed[] */ protected $bag = []; - /** @var integer Max entries allowed */ + /** @var int Max entries allowed */ protected $maxCacheKeys; const KEY_VAL = 0; diff --git a/includes/libs/objectcache/MultiWriteBagOStuff.php b/includes/libs/objectcache/MultiWriteBagOStuff.php index 65f3a8afe5..200ab7969c 100644 --- a/includes/libs/objectcache/MultiWriteBagOStuff.php +++ b/includes/libs/objectcache/MultiWriteBagOStuff.php @@ -171,7 +171,7 @@ class MultiWriteBagOStuff extends BagOStuff { /** * Apply a write method to the first $count backing caches * - * @param integer $count + * @param int $count * @param bool $asyncWrites * @param string $method * @param mixed $args,... diff --git a/includes/libs/objectcache/RESTBagOStuff.php b/includes/libs/objectcache/RESTBagOStuff.php index 5d2577b16e..d3aa9f5cb1 100644 --- a/includes/libs/objectcache/RESTBagOStuff.php +++ b/includes/libs/objectcache/RESTBagOStuff.php @@ -57,7 +57,7 @@ class RESTBagOStuff extends BagOStuff { /** * @param string $key - * @param integer $flags Bitfield of BagOStuff::READ_* constants [optional] + * @param int $flags Bitfield of BagOStuff::READ_* constants [optional] * @return mixed Returns false on failure and if the item does not exist */ protected function doGet( $key, $flags = 0 ) { diff --git a/includes/libs/objectcache/WANObjectCache.php b/includes/libs/objectcache/WANObjectCache.php index a80ed8d663..c1c9cc1a8a 100644 --- a/includes/libs/objectcache/WANObjectCache.php +++ b/includes/libs/objectcache/WANObjectCache.php @@ -92,11 +92,11 @@ class WANObjectCache implements IExpiringStore, LoggerAwareInterface { /** @var int ERR_* constant for the "last error" registry */ protected $lastRelayError = self::ERR_NONE; - /** @var integer Callback stack depth for getWithSetCallback() */ + /** @var int Callback stack depth for getWithSetCallback() */ private $callbackDepth = 0; /** @var mixed[] Temporary warm-up cache */ private $warmupCache = []; - /** @var integer Key fetched */ + /** @var int Key fetched */ private $warmupKeyMisses = 0; /** Max time expected to pass between delete() and DB commit finishing */ @@ -148,7 +148,7 @@ class WANObjectCache implements IExpiringStore, LoggerAwareInterface { const FLD_FLAGS = 4; // key to the flags bitfield const FLD_HOLDOFF = 5; // key to any hold-off TTL - /** @var integer Treat this value as expired-on-arrival */ + /** @var int Treat this value as expired-on-arrival */ const FLG_STALE = 1; const ERR_NONE = 0; // no error @@ -404,7 +404,7 @@ class WANObjectCache implements IExpiringStore, LoggerAwareInterface { * * @param string $key Cache key * @param mixed $value - * @param integer $ttl Seconds to live. Special values are: + * @param int $ttl Seconds to live. Special values are: * - WANObjectCache::TTL_INDEFINITE: Cache forever * @param array $opts Options map: * - lag : Seconds of replica DB lag. Typically, this is either the replica DB lag @@ -537,7 +537,7 @@ class WANObjectCache implements IExpiringStore, LoggerAwareInterface { * idempotence, the $ttl should not vary for different delete() calls on the same key. * * @param string $key Cache key - * @param integer $ttl Tombstone TTL; Default: WANObjectCache::HOLDOFF_TTL + * @param int $ttl Tombstone TTL; Default: WANObjectCache::HOLDOFF_TTL * @return bool True if the item was purged or not found, false on failure */ final public function delete( $key, $ttl = self::HOLDOFF_TTL ) { @@ -797,7 +797,7 @@ class WANObjectCache implements IExpiringStore, LoggerAwareInterface { * @see WANObjectCache::set() * * @param string $key Cache key - * @param integer $ttl Seconds to live for key updates. Special values are: + * @param int $ttl Seconds to live for key updates. Special values are: * - WANObjectCache::TTL_INDEFINITE: Cache forever * - WANObjectCache::TTL_UNCACHEABLE: Do not cache at all * @param callable $callback Value generation function @@ -929,7 +929,7 @@ class WANObjectCache implements IExpiringStore, LoggerAwareInterface { * @see WANObjectCache::getWithSetCallback() * * @param string $key - * @param integer $ttl + * @param int $ttl * @param callback $callback * @param array $opts Options map for getWithSetCallback() * @param float &$asOf Cache generation timestamp of returned value [returned] @@ -1098,7 +1098,7 @@ class WANObjectCache implements IExpiringStore, LoggerAwareInterface { * @endcode * * @param ArrayIterator $keyedIds Result of WANObjectCache::makeMultiKeys() - * @param integer $ttl Seconds to live for key updates + * @param int $ttl Seconds to live for key updates * @param callable $callback Callback the yields entity regeneration callbacks * @param array $opts Options map * @return array Map of (cache key => value) in the same order as $keyedIds @@ -1184,7 +1184,7 @@ class WANObjectCache implements IExpiringStore, LoggerAwareInterface { * @endcode * * @param ArrayIterator $keyedIds Result of WANObjectCache::makeMultiKeys() - * @param integer $ttl Seconds to live for key updates + * @param int $ttl Seconds to live for key updates * @param callable $callback Callback the yields entity regeneration callbacks * @param array $opts Options map * @return array Map of (cache key => value) in the same order as $keyedIds @@ -1393,8 +1393,8 @@ class WANObjectCache implements IExpiringStore, LoggerAwareInterface { } /** - * @param integer $flag ATTR_* class constant - * @return integer QOS_* class constant + * @param int $flag ATTR_* class constant + * @return int QOS_* class constant * @since 1.28 */ public function getQoS( $flag ) { @@ -1417,11 +1417,11 @@ class WANObjectCache implements IExpiringStore, LoggerAwareInterface { * $ttl = $cache->adaptiveTTL( $mtime, $cache::TTL_DAY ); * @endcode * - * @param integer|float $mtime UNIX timestamp - * @param integer $maxTTL Maximum TTL (seconds) - * @param integer $minTTL Minimum TTL (seconds); Default: 30 + * @param int|float $mtime UNIX timestamp + * @param int $maxTTL Maximum TTL (seconds) + * @param int $minTTL Minimum TTL (seconds); Default: 30 * @param float $factor Value in the range (0,1); Default: .2 - * @return integer Adaptive TTL + * @return int Adaptive TTL * @since 1.28 */ public function adaptiveTTL( $mtime, $maxTTL, $minTTL = 30, $factor = .2 ) { @@ -1439,7 +1439,7 @@ class WANObjectCache implements IExpiringStore, LoggerAwareInterface { } /** - * @return integer Number of warmup key cache misses last round + * @return int Number of warmup key cache misses last round * @since 1.30 */ public function getWarmupKeyMisses() { @@ -1452,8 +1452,8 @@ class WANObjectCache implements IExpiringStore, LoggerAwareInterface { * This must set the key to "PURGED::" * * @param string $key Cache key - * @param integer $ttl How long to keep the tombstone [seconds] - * @param integer $holdoff HOLDOFF_* constant controlling how long to ignore sets for this key + * @param int $ttl How long to keep the tombstone [seconds] + * @param int $holdoff HOLDOFF_* constant controlling how long to ignore sets for this key * @return bool Success */ protected function relayPurge( $key, $ttl, $holdoff ) { @@ -1540,8 +1540,8 @@ class WANObjectCache implements IExpiringStore, LoggerAwareInterface { * and get hits too. Similar to worthRefreshExpiring(), randomization is used. * * @param float $asOf UNIX timestamp of the value - * @param integer $ageNew Age of key when this might recommend refreshing (seconds) - * @param integer $timeTillRefresh Age of key when it should be refreshed if popular (seconds) + * @param int $ageNew Age of key when this might recommend refreshing (seconds) + * @param int $timeTillRefresh Age of key when it should be refreshed if popular (seconds) * @param float $now The current UNIX timestamp * @return bool */ @@ -1590,7 +1590,7 @@ class WANObjectCache implements IExpiringStore, LoggerAwareInterface { * Do not use this method outside WANObjectCache * * @param mixed $value - * @param integer $ttl [0=forever] + * @param int $ttl [0=forever] * @param float $now Unix Current timestamp just before calling set() * @return array */ diff --git a/includes/libs/objectcache/WANObjectCacheReaper.php b/includes/libs/objectcache/WANObjectCacheReaper.php index 1696c59414..14737b145a 100644 --- a/includes/libs/objectcache/WANObjectCacheReaper.php +++ b/includes/libs/objectcache/WANObjectCacheReaper.php @@ -48,7 +48,7 @@ class WANObjectCacheReaper implements LoggerAwareInterface { /** @var string */ protected $channel; - /** @var integer */ + /** @var int */ protected $initialStartWindow; /** diff --git a/includes/libs/rdbms/ChronologyProtector.php b/includes/libs/rdbms/ChronologyProtector.php index 8b1aabe3cd..f002d3eacc 100644 --- a/includes/libs/rdbms/ChronologyProtector.php +++ b/includes/libs/rdbms/ChronologyProtector.php @@ -61,9 +61,9 @@ class ChronologyProtector implements LoggerAwareInterface { /** @var float[] Map of (DB master name => 1) */ protected $shutdownTouchDBs = []; - /** @var integer Seconds to store positions */ + /** @var int Seconds to store positions */ const POSITION_TTL = 60; - /** @var integer Max time to wait for positions to appear */ + /** @var int Max time to wait for positions to appear */ const POS_WAIT_TIMEOUT = 5; /** diff --git a/includes/libs/rdbms/TransactionProfiler.php b/includes/libs/rdbms/TransactionProfiler.php index 8ac41611a3..af431a6787 100644 --- a/includes/libs/rdbms/TransactionProfiler.php +++ b/includes/libs/rdbms/TransactionProfiler.php @@ -99,7 +99,7 @@ class TransactionProfiler implements LoggerAwareInterface { * With conflicting expectations, the most narrow ones will be used * * @param string $event (writes,queries,conns,mConns) - * @param integer $value Maximum count of the event + * @param int $value Maximum count of the event * @param string $fname Caller * @since 1.25 */ @@ -199,7 +199,7 @@ class TransactionProfiler implements LoggerAwareInterface { * @param string $query Function name or generalized SQL * @param float $sTime Starting UNIX wall time * @param bool $isWrite Whether this is a write query - * @param integer $n Number of affected rows + * @param int $n Number of affected rows */ public function recordQueryCompletion( $query, $sTime, $isWrite = false, $n = 0 ) { $eTime = microtime( true ); @@ -266,7 +266,7 @@ class TransactionProfiler implements LoggerAwareInterface { * @param string $db DB name * @param string $id ID string of transaction * @param float $writeTime Time spent in write queries - * @param integer $affected Number of rows affected by writes + * @param int $affected Number of rows affected by writes */ public function transactionWritingOut( $server, $db, $id, $writeTime = 0.0, $affected = 0 ) { $name = "{$server} ({$db}) (TRX#$id)"; diff --git a/includes/libs/rdbms/database/Database.php b/includes/libs/rdbms/database/Database.php index cec13b50ee..01020e9456 100644 --- a/includes/libs/rdbms/database/Database.php +++ b/includes/libs/rdbms/database/Database.php @@ -108,7 +108,7 @@ abstract class Database implements IDatabase, IMaintainableDatabase, LoggerAware protected $mTablePrefix = ''; /** @var string */ protected $mSchema = ''; - /** @var integer */ + /** @var int */ protected $mFlags; /** @var array */ protected $mLBInfo = []; @@ -197,11 +197,11 @@ abstract class Database implements IDatabase, IMaintainableDatabase, LoggerAware */ private $mTrxWriteDuration = 0.0; /** - * @var integer Number of write queries for the current transaction + * @var int Number of write queries for the current transaction */ private $mTrxWriteQueryCount = 0; /** - * @var integer Number of rows affected by write queries for the current transaction + * @var int Number of rows affected by write queries for the current transaction */ private $mTrxWriteAffectedRows = 0; /** @@ -209,7 +209,7 @@ abstract class Database implements IDatabase, IMaintainableDatabase, LoggerAware */ private $mTrxWriteAdjDuration = 0.0; /** - * @var integer Number of write queries counted in mTrxWriteAdjDuration + * @var int Number of write queries counted in mTrxWriteAdjDuration */ private $mTrxWriteAdjQueryCount = 0; /** @@ -1054,7 +1054,7 @@ abstract class Database implements IDatabase, IMaintainableDatabase, LoggerAware * * @param string $sql A SQL write query * @param float $runtime Total runtime, including RTT - * @param integer $affected Affected row count + * @param int $affected Affected row count */ private function updateTrxWriteQueryTime( $sql, $runtime, $affected ) { // Whether this is indicative of replica DB runtime (except for RBR or ws_repl) @@ -2591,7 +2591,7 @@ abstract class Database implements IDatabase, IMaintainableDatabase, LoggerAware /** * Do not use this method outside of Database/DBError classes * - * @param integer|string $errno + * @param int|string $errno * @return bool Whether the given query error was a connection drop */ public function wasConnectionError( $errno ) { @@ -2711,7 +2711,7 @@ abstract class Database implements IDatabase, IMaintainableDatabase, LoggerAware * * This method should not be used outside of Database/LoadBalancer * - * @param integer $trigger IDatabase::TRIGGER_* constant + * @param int $trigger IDatabase::TRIGGER_* constant * @since 1.20 * @throws Exception */ @@ -2791,7 +2791,7 @@ abstract class Database implements IDatabase, IMaintainableDatabase, LoggerAware * * This method should not be used outside of Database/LoadBalancer * - * @param integer $trigger IDatabase::TRIGGER_* constant + * @param int $trigger IDatabase::TRIGGER_* constant * @throws Exception * @since 1.20 */ diff --git a/includes/libs/rdbms/database/IDatabase.php b/includes/libs/rdbms/database/IDatabase.php index b82603e737..9375efc253 100644 --- a/includes/libs/rdbms/database/IDatabase.php +++ b/includes/libs/rdbms/database/IDatabase.php @@ -277,7 +277,7 @@ interface IDatabase { /** * Get the number of affected rows from pending write queries * - * @return integer + * @return int * @since 1.30 */ public function pendingWriteRowsAffected(); diff --git a/includes/libs/rdbms/database/position/MySQLMasterPos.php b/includes/libs/rdbms/database/position/MySQLMasterPos.php index 06776fe8fd..0657cf3dc0 100644 --- a/includes/libs/rdbms/database/position/MySQLMasterPos.php +++ b/includes/libs/rdbms/database/position/MySQLMasterPos.php @@ -24,7 +24,7 @@ class MySQLMasterPos implements DBMasterPos { /** * @param string $file Binlog file name - * @param integer $pos Binlog position + * @param int $pos Binlog position * @param string $gtid Comma separated GTID set [optional] */ function __construct( $file, $pos, $gtid = '' ) { diff --git a/includes/libs/rdbms/database/resultwrapper/MssqlResultWrapper.php b/includes/libs/rdbms/database/resultwrapper/MssqlResultWrapper.php index 4e28397455..298ec61934 100644 --- a/includes/libs/rdbms/database/resultwrapper/MssqlResultWrapper.php +++ b/includes/libs/rdbms/database/resultwrapper/MssqlResultWrapper.php @@ -5,7 +5,7 @@ namespace Wikimedia\Rdbms; use stdClass; class MssqlResultWrapper extends ResultWrapper { - /** @var integer|null */ + /** @var int|null */ private $mSeekTo = null; /** diff --git a/includes/libs/rdbms/exception/DBQueryError.php b/includes/libs/rdbms/exception/DBQueryError.php index bc2a865bb1..6a4076f870 100644 --- a/includes/libs/rdbms/exception/DBQueryError.php +++ b/includes/libs/rdbms/exception/DBQueryError.php @@ -27,7 +27,7 @@ namespace Wikimedia\Rdbms; class DBQueryError extends DBExpectedError { /** @var string */ public $error; - /** @var integer */ + /** @var int */ public $errno; /** @var string */ public $sql; diff --git a/includes/libs/rdbms/lbfactory/ILBFactory.php b/includes/libs/rdbms/lbfactory/ILBFactory.php index ff6635d5bf..4cfa542466 100644 --- a/includes/libs/rdbms/lbfactory/ILBFactory.php +++ b/includes/libs/rdbms/lbfactory/ILBFactory.php @@ -138,7 +138,7 @@ interface ILBFactory { /** * Prepare all tracked load balancers for shutdown - * @param integer $mode One of the class SHUTDOWN_* constants + * @param int $mode One of the class SHUTDOWN_* constants * @param callable|null $workCallback Work to mask ChronologyProtector writes */ public function shutdown( diff --git a/includes/libs/rdbms/loadbalancer/LoadBalancer.php b/includes/libs/rdbms/loadbalancer/LoadBalancer.php index 1665a5ef7d..36de39e0fb 100644 --- a/includes/libs/rdbms/loadbalancer/LoadBalancer.php +++ b/includes/libs/rdbms/loadbalancer/LoadBalancer.php @@ -49,7 +49,7 @@ class LoadBalancer implements ILoadBalancer { private $mGroupLoads; /** @var bool Whether to disregard replica DB lag as a factor in replica DB selection */ private $mAllowLagged; - /** @var integer Seconds to spend waiting on replica DB lag to resolve */ + /** @var int Seconds to spend waiting on replica DB lag to resolve */ private $mWaitTimeout; /** @var array The LoadMonitor configuration */ private $loadMonitorConfig; @@ -79,7 +79,7 @@ class LoadBalancer implements ILoadBalancer { /** @var Database DB connection object that caused a problem */ private $errorConnection; - /** @var integer The generic (not query grouped) replica DB index (of $mServers) */ + /** @var int The generic (not query grouped) replica DB index (of $mServers) */ private $mReadIndex; /** @var bool|DBMasterPos False if not set */ private $mWaitForPos; @@ -91,7 +91,7 @@ class LoadBalancer implements ILoadBalancer { private $mLastError = 'Unknown error'; /** @var string|bool Reason the LB is read-only or false if not */ private $readOnlyReason = false; - /** @var integer Total connections opened */ + /** @var int Total connections opened */ private $connsOpened = 0; /** @var string|bool String if a requested DBO_TRX transaction round is active */ private $trxRoundId = false; @@ -111,17 +111,17 @@ class LoadBalancer implements ILoadBalancer { /** @var callable Exception logger */ private $errorLogger; - /** @var boolean */ + /** @var bool */ private $disabled = false; - /** @var boolean */ + /** @var bool */ private $chronProtInitialized = false; - /** @var integer Warn when this many connection are held */ + /** @var int Warn when this many connection are held */ const CONN_HELD_WARN_THRESHOLD = 10; - /** @var integer Default 'max lag' when unspecified */ + /** @var int Default 'max lag' when unspecified */ const MAX_LAG_DEFAULT = 10; - /** @var integer Seconds to cache master server read-only status */ + /** @var int Seconds to cache master server read-only status */ const TTL_CACHE_READONLY = 5; const KEY_LOCAL = 'local'; @@ -845,7 +845,7 @@ class LoadBalancer implements ILoadBalancer { * * @param int $i Server index * @param string $domain Domain ID to open - * @param integer $flags Class CONN_* constant bitfield + * @param int $flags Class CONN_* constant bitfield * @return Database */ private function openForeignConnection( $i, $domain, $flags = 0 ) { diff --git a/includes/libs/rdbms/loadmonitor/ILoadMonitor.php b/includes/libs/rdbms/loadmonitor/ILoadMonitor.php index fba5e135da..a0877a4677 100644 --- a/includes/libs/rdbms/loadmonitor/ILoadMonitor.php +++ b/includes/libs/rdbms/loadmonitor/ILoadMonitor.php @@ -58,7 +58,7 @@ interface ILoadMonitor extends LoggerAwareInterface { * * Values may be "false" if replication is too broken to estimate * - * @param integer[] $serverIndexes + * @param int[] $serverIndexes * @param string $domain * @return array Map of (server index => float|int|bool) */ diff --git a/includes/libs/rdbms/loadmonitor/LoadMonitor.php b/includes/libs/rdbms/loadmonitor/LoadMonitor.php index d4e73c9547..4db9e10278 100644 --- a/includes/libs/rdbms/loadmonitor/LoadMonitor.php +++ b/includes/libs/rdbms/loadmonitor/LoadMonitor.php @@ -205,7 +205,7 @@ class LoadMonitor implements ILoadMonitor { } /** - * @param integer $index Server index + * @param int $index Server index * @param IDatabase|null $conn Connection handle or null on connection failure * @return float */ diff --git a/includes/libs/stats/BufferingStatsdDataFactory.php b/includes/libs/stats/BufferingStatsdDataFactory.php index 73c6a8f55c..d75d9c0b1e 100644 --- a/includes/libs/stats/BufferingStatsdDataFactory.php +++ b/includes/libs/stats/BufferingStatsdDataFactory.php @@ -101,7 +101,7 @@ class BufferingStatsdDataFactory extends StatsdDataFactory implements IBuffering /** * Check whether this data factory has any data. - * @return boolean + * @return bool */ public function hasData() { return !empty( $this->buffer ); diff --git a/includes/libs/stats/IBufferingStatsdDataFactory.php b/includes/libs/stats/IBufferingStatsdDataFactory.php index 64ee2676f6..f77b26cefb 100644 --- a/includes/libs/stats/IBufferingStatsdDataFactory.php +++ b/includes/libs/stats/IBufferingStatsdDataFactory.php @@ -10,7 +10,7 @@ use Liuggio\StatsdClient\Factory\StatsdDataFactoryInterface; interface IBufferingStatsdDataFactory extends StatsdDataFactoryInterface { /** * Check whether this data factory has any data. - * @return boolean + * @return bool */ public function hasData(); diff --git a/includes/libs/stats/NullStatsdDataFactory.php b/includes/libs/stats/NullStatsdDataFactory.php index 75d6b9e7eb..73697514e5 100644 --- a/includes/libs/stats/NullStatsdDataFactory.php +++ b/includes/libs/stats/NullStatsdDataFactory.php @@ -76,7 +76,7 @@ class NullStatsdDataFactory implements IBufferingStatsdDataFactory { * This function creates a 'updateCount' StatsdData object. * * @param string|array $key The metric(s) to decrement. - * @param integer $delta The delta to add to the each metric + * @param int $delta The delta to add to the each metric * * @return mixed */ @@ -108,7 +108,7 @@ class NullStatsdDataFactory implements IBufferingStatsdDataFactory { /** * Check whether this data factory has any data. - * @return boolean + * @return bool */ public function hasData() { return false; diff --git a/includes/libs/stats/SamplingStatsdClient.php b/includes/libs/stats/SamplingStatsdClient.php index 4db2b6072c..1da9468d80 100644 --- a/includes/libs/stats/SamplingStatsdClient.php +++ b/includes/libs/stats/SamplingStatsdClient.php @@ -77,7 +77,7 @@ class SamplingStatsdClient extends StatsdClient { * strings are not allowed here as sampleData requires a StatsdDataInterface * @param int $sampleRate * - * @return integer the data sent in bytes + * @return int the data sent in bytes */ public function send( $data, $sampleRate = 1 ) { if ( !is_array( $data ) ) { diff --git a/includes/page/Article.php b/includes/page/Article.php index 7311f71dec..f52cd8d6e9 100644 --- a/includes/page/Article.php +++ b/includes/page/Article.php @@ -1920,7 +1920,7 @@ class Article implements Page { /** * Check if the page can be cached - * @param integer $mode One of the HTMLFileCache::MODE_* constants (since 1.28) + * @param int $mode One of the HTMLFileCache::MODE_* constants (since 1.28) * @return bool */ public function isFileCacheable( $mode = HTMLFileCache::MODE_NORMAL ) { diff --git a/includes/page/WikiPage.php b/includes/page/WikiPage.php index e60f103f60..d5a2f3fba3 100644 --- a/includes/page/WikiPage.php +++ b/includes/page/WikiPage.php @@ -1638,7 +1638,7 @@ class WikiPage implements Page, IDBAccessObject { /** * @param Content $content Pre-save transform content - * @param integer $flags + * @param int $flags * @param User $user * @param string $summary * @param array $meta @@ -1812,7 +1812,7 @@ class WikiPage implements Page, IDBAccessObject { /** * @param Content $content Pre-save transform content - * @param integer $flags + * @param int $flags * @param User $user * @param string $summary * @param array $meta @@ -2111,13 +2111,13 @@ class WikiPage implements Page, IDBAccessObject { * @param Revision $revision * @param User $user User object that did the revision * @param array $options Array of options, following indexes are used: - * - changed: boolean, whether the revision changed the content (default true) - * - created: boolean, whether the revision created the page (default false) - * - moved: boolean, whether the page was moved (default false) - * - restored: boolean, whether the page was undeleted (default false) + * - changed: bool, whether the revision changed the content (default true) + * - created: bool, whether the revision created the page (default false) + * - moved: bool, whether the page was moved (default false) + * - restored: bool, whether the page was undeleted (default false) * - oldrevision: Revision object for the pre-update revision (default null) - * - oldcountable: boolean, null, or string 'no-change' (default null): - * - boolean: whether the page was counted as an article before that + * - oldcountable: bool, null, or string 'no-change' (default null): + * - bool: whether the page was counted as an article before that * revision, only used in changed is true and created is false * - null: if created is false, don't update the article count; if created * is true, do update the article count @@ -2919,7 +2919,7 @@ class WikiPage implements Page, IDBAccessObject { /** * Lock the page row for this title+id and return page_latest (or 0) * - * @return integer Returns 0 if no row was found with this title+id + * @return int Returns 0 if no row was found with this title+id * @since 1.27 */ public function lockAndGetLatest() { @@ -3414,7 +3414,7 @@ class WikiPage implements Page, IDBAccessObject { * * @param array $added The names of categories that were added * @param array $deleted The names of categories that were deleted - * @param integer $id Page ID (this should be the original deleted page ID) + * @param int $id Page ID (this should be the original deleted page ID) */ public function updateCategoryCounts( array $added, array $deleted, $id = 0 ) { $id = $id ?: $this->getId(); diff --git a/includes/parser/ParserOutput.php b/includes/parser/ParserOutput.php index cfb0c3ec59..2dd4085e94 100644 --- a/includes/parser/ParserOutput.php +++ b/includes/parser/ParserOutput.php @@ -211,10 +211,10 @@ class ParserOutput extends CacheTime { */ private $mFlags = []; - /** @var integer|null Assumed rev ID for {{REVISIONID}} if no revision is set */ + /** @var int|null Assumed rev ID for {{REVISIONID}} if no revision is set */ private $mSpeculativeRevId; - /** @var integer Upper bound of expiry based on parse duration */ + /** @var int Upper bound of expiry based on parse duration */ private $mMaxAdaptiveExpiry = INF; const EDITSECTION_REGEX = @@ -291,7 +291,7 @@ class ParserOutput extends CacheTime { } /** - * @param integer $id + * @param int $id * @since 1.28 */ public function setSpeculativeRevIdUsed( $id ) { @@ -1075,7 +1075,7 @@ class ParserOutput extends CacheTime { /** * Lower the runtime adaptive TTL to at most this value * - * @param integer $ttl + * @param int $ttl * @since 1.28 */ public function updateRuntimeAdaptiveExpiry( $ttl ) { diff --git a/includes/parser/Preprocessor_Hash.php b/includes/parser/Preprocessor_Hash.php index 9ea8fa3a50..8e84cb2c82 100644 --- a/includes/parser/Preprocessor_Hash.php +++ b/includes/parser/Preprocessor_Hash.php @@ -1715,7 +1715,7 @@ class PPNode_Hash_Tree implements PPNode { * store array can be accessed via getNextSibling(). * * @param array $store - * @param integer $index + * @param int $index */ public function __construct( array $store, $index ) { $this->store = $store; @@ -1728,7 +1728,7 @@ class PPNode_Hash_Tree implements PPNode { * on what is at the relevant store index. * * @param array $store - * @param integer $index + * @param int $index * @return PPNode_Hash_Tree|PPNode_Hash_Attr|PPNode_Hash_Text */ public static function factory( array $store, $index ) { @@ -1787,7 +1787,7 @@ class PPNode_Hash_Tree implements PPNode { * return a temporary proxy object: different instances will be returned * if this is called more than once on the same node. * - * @return PPNode_Hash_Tree|PPNode_Hash_Attr|PPNode_Hash_Text|boolean + * @return PPNode_Hash_Tree|PPNode_Hash_Attr|PPNode_Hash_Text|bool */ public function getFirstChild() { if ( !isset( $this->rawChildren[0] ) ) { @@ -1802,7 +1802,7 @@ class PPNode_Hash_Tree implements PPNode { * return a temporary proxy object: different instances will be returned * if this is called more than once on the same node. * - * @return PPNode_Hash_Tree|PPNode_Hash_Attr|PPNode_Hash_Text|boolean + * @return PPNode_Hash_Tree|PPNode_Hash_Attr|PPNode_Hash_Text|bool */ public function getNextSibling() { return self::factory( $this->store, $this->index + 1 ); @@ -2027,7 +2027,7 @@ class PPNode_Hash_Text implements PPNode { * store array can be accessed via getNextSibling(). * * @param array $store - * @param integer $index + * @param int $index */ public function __construct( array $store, $index ) { $this->value = $store[$index]; @@ -2156,7 +2156,7 @@ class PPNode_Hash_Attr implements PPNode { * store array can be accessed via getNextSibling(). * * @param array $store - * @param integer $index + * @param int $index */ public function __construct( array $store, $index ) { $descriptor = $store[$index]; diff --git a/includes/revisiondelete/RevDelItem.php b/includes/revisiondelete/RevDelItem.php index b114c7520c..bf97bd4100 100644 --- a/includes/revisiondelete/RevDelItem.php +++ b/includes/revisiondelete/RevDelItem.php @@ -37,7 +37,7 @@ abstract class RevDelItem extends RevisionItemBase { /** * Get the current deletion bitfield value * - * @return integer + * @return int */ abstract public function getBits(); diff --git a/includes/revisiondelete/RevisionDeleter.php b/includes/revisiondelete/RevisionDeleter.php index 4a807fbc7e..76fa590d03 100644 --- a/includes/revisiondelete/RevisionDeleter.php +++ b/includes/revisiondelete/RevisionDeleter.php @@ -234,7 +234,7 @@ class RevisionDeleter { * @since 1.22 * @param array $bitPars ExtractBitParams() params * @param int $oldfield Current bitfield - * @return integer + * @return int */ public static function extractBitfield( array $bitPars, $oldfield ) { // Build the actual new rev_deleted bitfield diff --git a/includes/services/ServiceContainer.php b/includes/services/ServiceContainer.php index 633cfc92db..9f09e22fc4 100644 --- a/includes/services/ServiceContainer.php +++ b/includes/services/ServiceContainer.php @@ -56,7 +56,7 @@ class ServiceContainer implements DestructibleService { private $serviceInstantiators = []; /** - * @var boolean[] disabled status, per service name + * @var bool[] disabled status, per service name */ private $disabled = []; @@ -66,7 +66,7 @@ class ServiceContainer implements DestructibleService { private $extraInstantiationParams; /** - * @var boolean + * @var bool */ private $destroyed = false; diff --git a/includes/session/CookieSessionProvider.php b/includes/session/CookieSessionProvider.php index 79fc720d1e..74925bd7b6 100644 --- a/includes/session/CookieSessionProvider.php +++ b/includes/session/CookieSessionProvider.php @@ -420,7 +420,7 @@ class CookieSessionProvider extends SessionProvider { * Cookies that are session-length do not call this function. * * @param string $cookieName - * @param boolean $shouldRememberUser Whether the user should be remembered + * @param bool $shouldRememberUser Whether the user should be remembered * long-term * @return int Cookie expiration time in seconds; 0 for session cookies */ diff --git a/includes/skins/SkinTemplate.php b/includes/skins/SkinTemplate.php index 5ad1b116f7..cbffe1e571 100644 --- a/includes/skins/SkinTemplate.php +++ b/includes/skins/SkinTemplate.php @@ -306,8 +306,8 @@ class SkinTemplate extends Skin { $tpl->set( 'pagetitle', $out->getHTMLTitle() ); $tpl->set( 'displaytitle', $out->mPageLinkTitle ); - $tpl->setRef( 'thispage', $this->thispage ); - $tpl->setRef( 'titleprefixeddbkey', $this->thispage ); + $tpl->set( 'thispage', $this->thispage ); + $tpl->set( 'titleprefixeddbkey', $this->thispage ); $tpl->set( 'titletext', $title->getText() ); $tpl->set( 'articleid', $title->getArticleID() ); @@ -336,32 +336,32 @@ class SkinTemplate extends Skin { 'href' => $link ]; } - $tpl->setRef( 'feeds', $feeds ); + $tpl->set( 'feeds', $feeds ); } else { $tpl->set( 'feeds', false ); } - $tpl->setRef( 'mimetype', $wgMimeType ); - $tpl->setRef( 'jsmimetype', $wgJsMimeType ); + $tpl->set( 'mimetype', $wgMimeType ); + $tpl->set( 'jsmimetype', $wgJsMimeType ); $tpl->set( 'charset', 'UTF-8' ); - $tpl->setRef( 'wgScript', $wgScript ); - $tpl->setRef( 'skinname', $this->skinname ); + $tpl->set( 'wgScript', $wgScript ); + $tpl->set( 'skinname', $this->skinname ); $tpl->set( 'skinclass', static::class ); - $tpl->setRef( 'skin', $this ); - $tpl->setRef( 'stylename', $this->stylename ); + $tpl->set( 'skin', $this ); + $tpl->set( 'stylename', $this->stylename ); $tpl->set( 'printable', $out->isPrintable() ); $tpl->set( 'handheld', $request->getBool( 'handheld' ) ); - $tpl->setRef( 'loggedin', $this->loggedin ); + $tpl->set( 'loggedin', $this->loggedin ); $tpl->set( 'notspecialpage', !$title->isSpecialPage() ); $tpl->set( 'searchaction', $this->escapeSearchLink() ); $tpl->set( 'searchtitle', SpecialPage::getTitleFor( 'Search' )->getPrefixedDBkey() ); $tpl->set( 'search', trim( $request->getVal( 'search' ) ) ); - $tpl->setRef( 'stylepath', $wgStylePath ); - $tpl->setRef( 'articlepath', $wgArticlePath ); - $tpl->setRef( 'scriptpath', $wgScriptPath ); - $tpl->setRef( 'serverurl', $wgServer ); - $tpl->setRef( 'logopath', $wgLogo ); - $tpl->setRef( 'sitename', $wgSitename ); + $tpl->set( 'stylepath', $wgStylePath ); + $tpl->set( 'articlepath', $wgArticlePath ); + $tpl->set( 'scriptpath', $wgScriptPath ); + $tpl->set( 'serverurl', $wgServer ); + $tpl->set( 'logopath', $wgLogo ); + $tpl->set( 'sitename', $wgSitename ); $userLang = $this->getLanguage(); $userLangCode = $userLang->getHtmlCode(); @@ -374,8 +374,8 @@ class SkinTemplate extends Skin { $tpl->set( 'capitalizeallnouns', $userLang->capitalizeAllNouns() ? ' capitalize-all-nouns' : '' ); $tpl->set( 'showjumplinks', true ); // showjumplinks preference has been removed $tpl->set( 'username', $this->loggedin ? $this->username : null ); - $tpl->setRef( 'userpage', $this->userpage ); - $tpl->setRef( 'userpageurl', $this->userpageUrlDetails['href'] ); + $tpl->set( 'userpage', $this->userpage ); + $tpl->set( 'userpageurl', $this->userpageUrlDetails['href'] ); $tpl->set( 'userlang', $userLangCode ); // Users can have their language set differently than the diff --git a/includes/specialpage/ChangesListSpecialPage.php b/includes/specialpage/ChangesListSpecialPage.php index 645fbb288f..52db51aa8e 100644 --- a/includes/specialpage/ChangesListSpecialPage.php +++ b/includes/specialpage/ChangesListSpecialPage.php @@ -553,6 +553,105 @@ abstract class ChangesListSpecialPage extends SpecialPage { LoggerFactory::getInstance( 'objectcache' ) ) ); } + + $this->includeRcFiltersApp(); + } + + /** + * Include the modules and configuration for the RCFilters app. + * Conditional on the user having the feature enabled. + */ + protected function includeRcFiltersApp() { + if ( $this->isStructuredFilterUiEnabled() ) { + $out = $this->getOutput(); + $jsData = $this->getStructuredFilterJsData(); + + $messages = []; + foreach ( $jsData['messageKeys'] as $key ) { + $messages[$key] = $this->msg( $key )->plain(); + } + + $out->addHTML( + ResourceLoader::makeInlineScript( + ResourceLoader::makeMessageSetScript( $messages ) + ) + ); + + $experimentalStructuredChangeFilters = + $this->getConfig()->get( 'StructuredChangeFiltersEnableExperimentalViews' ); + + $out->addJsConfigVars( 'wgStructuredChangeFilters', $jsData['groups'] ); + $out->addJsConfigVars( + 'wgStructuredChangeFiltersEnableExperimentalViews', + $experimentalStructuredChangeFilters + ); + $out->addJsConfigVars( + 'wgStructuredChangeFiltersEnableLiveUpdate', + $this->getConfig()->get( 'StructuredChangeFiltersEnableLiveUpdate' ) + ); + $out->addJsConfigVars( + 'wgRCFiltersChangeTags', + $this->buildChangeTagList() + ); + $out->addJsConfigVars( + 'StructuredChangeFiltersDisplayConfig', + [ + 'maxDays' => (int)$this->getConfig()->get( 'RCMaxAge' ) / ( 24 * 3600 ), // Translate to days + 'limitArray' => $this->getConfig()->get( 'RCLinkLimits' ), + 'daysArray' => $this->getConfig()->get( 'RCLinkDays' ), + ] + ); + } + } + + /** + * Fetch the change tags list for the front end + * + * @return Array Tag data + */ + protected function buildChangeTagList() { + $explicitlyDefinedTags = array_fill_keys( ChangeTags::listExplicitlyDefinedTags(), 0 ); + $softwareActivatedTags = array_fill_keys( ChangeTags::listSoftwareActivatedTags(), 0 ); + + // Hit counts disabled for perf reasons, see T169997 + /* + $tagStats = ChangeTags::tagUsageStatistics(); + $tagHitCounts = array_merge( $explicitlyDefinedTags, $softwareActivatedTags, $tagStats ); + + // Sort by hits + arsort( $tagHitCounts ); + */ + $tagHitCounts = array_merge( $explicitlyDefinedTags, $softwareActivatedTags ); + + // Build the list and data + $result = []; + foreach ( $tagHitCounts as $tagName => $hits ) { + if ( + // Only get active tags + isset( $explicitlyDefinedTags[ $tagName ] ) || + isset( $softwareActivatedTags[ $tagName ] ) + ) { + // Parse description + $desc = ChangeTags::tagLongDescriptionMessage( $tagName, $this->getContext() ); + + $result[] = [ + 'name' => $tagName, + 'label' => Sanitizer::stripAllTags( + ChangeTags::tagDescription( $tagName, $this->getContext() ) + ), + 'description' => $desc ? Sanitizer::stripAllTags( $desc->parse() ) : '', + 'cssClass' => Sanitizer::escapeClass( 'mw-tag-' . $tagName ), + 'hits' => $hits, + ]; + } + } + + // Instead of sorting by hit count (disabled, see above), sort by display name + usort( $result, function ( $a, $b ) { + return strcasecmp( $a['label'], $b['label'] ); + } ); + + return $result; } /** @@ -779,19 +878,20 @@ abstract class ChangesListSpecialPage extends SpecialPage { * @return FormOptions */ public function getDefaultOptions() { - $config = $this->getConfig(); $opts = new FormOptions(); - $structuredUI = $this->getUser()->getOption( 'rcenhancedfilters' ); + $structuredUI = $this->isStructuredFilterUiEnabled(); // If urlversion=2 is set, ignore the filter defaults and set them all to false/empty $useDefaults = $this->getRequest()->getInt( 'urlversion' ) !== 2; // Add all filters + /** @var ChangesListFilterGroup $filterGroup */ foreach ( $this->filterGroups as $filterGroup ) { // URL parameters can be per-group, like 'userExpLevel', // or per-filter, like 'hideminor'. if ( $filterGroup->isPerGroupRequestParameter() ) { $opts->add( $filterGroup->getName(), $useDefaults ? $filterGroup->getDefault() : '' ); } else { + /** @var ChangesListBooleanFilter $filter */ foreach ( $filterGroup->getFilters() as $filter ) { $opts->add( $filter->getName(), $useDefaults ? $filter->getDefault( $structuredUI ) : false ); } @@ -857,8 +957,6 @@ abstract class ChangesListSpecialPage extends SpecialPage { 'messageKeys' => [], ]; - $context = $this->getContext(); - usort( $this->filterGroups, function ( $a, $b ) { return $b->getPriority() - $a->getPriority(); } ); @@ -1055,9 +1153,7 @@ abstract class ChangesListSpecialPage extends SpecialPage { &$join_conds, FormOptions $opts ) { $dbr = $this->getDB(); - $user = $this->getUser(); - $context = $this->getContext(); foreach ( $this->filterGroups as $filterGroup ) { // URL parameters can be per-group, like 'userExpLevel', // or per-filter, like 'hideminor'. @@ -1279,12 +1375,11 @@ abstract class ChangesListSpecialPage extends SpecialPage { ) . "\n"; $legend .= Html::closeElement( 'dl' ) . "\n"; - # Collapsibility - $legendHeading = $this->getUser()->getOption( - 'rcenhancedfilters' - ) ? + $legendHeading = $this->isStructuredFilterUiEnabled() ? $context->msg( 'rcfilters-legend-heading' )->parse() : $context->msg( 'recentchanges-legend-heading' )->parse(); + + # Collapsible $legend = '
' . $legendHeading . @@ -1305,6 +1400,11 @@ abstract class ChangesListSpecialPage extends SpecialPage { 'mediawiki.special.changeslist', ] ); $out->addModules( 'mediawiki.special.changeslist.legend.js' ); + + if ( $this->isStructuredFilterUiEnabled() ) { + $out->addModules( 'mediawiki.rcfilters.filters.ui' ); + $out->addModuleStyles( 'mediawiki.rcfilters.filters.base.styles' ); + } } protected function getGroupName() { @@ -1426,4 +1526,13 @@ abstract class ChangesListSpecialPage extends SpecialPage { $conds[] = reset( $conditions ); } } + + /** + * Check whether the structured filter UI is enabled + * + * @return bool + */ + protected function isStructuredFilterUiEnabled() { + return $this->getUser()->getOption( 'rcenhancedfilters' ); + } } diff --git a/includes/specials/SpecialMediaStatistics.php b/includes/specials/SpecialMediaStatistics.php index 8d77091dd4..a6d4a3e91c 100644 --- a/includes/specials/SpecialMediaStatistics.php +++ b/includes/specials/SpecialMediaStatistics.php @@ -32,12 +32,12 @@ class MediaStatisticsPage extends QueryPage { protected $totalCount = 0, $totalBytes = 0; /** - * @var integer $totalPerType Combined file size of all files in a section + * @var int $totalPerType Combined file size of all files in a section */ protected $totalPerType = 0; /** - * @var integer $totalSize Combined file size of all files + * @var int $totalSize Combined file size of all files */ protected $totalSize = 0; diff --git a/includes/specials/SpecialNewpages.php b/includes/specials/SpecialNewpages.php index e3b73a98b0..ede4898321 100644 --- a/includes/specials/SpecialNewpages.php +++ b/includes/specials/SpecialNewpages.php @@ -391,10 +391,6 @@ class SpecialNewpages extends IncludableSpecialPage { $oldTitleText = ''; $oldTitle = Title::makeTitle( $result->rc_namespace, $result->rc_title ); - if ( count( $classes ) ) { - $attribs['class'] = implode( ' ', $classes ); - } - if ( !$title->equals( $oldTitle ) ) { $oldTitleText = $oldTitle->getPrefixedText(); $oldTitleText = Html::rawElement( @@ -411,6 +407,10 @@ class SpecialNewpages extends IncludableSpecialPage { Hooks::run( 'NewPagesLineEnding', [ $this, &$ret, $result, &$classes, &$attribs ] ); $attribs = wfArrayFilterByKey( $attribs, [ Sanitizer::class, 'isReservedDataAttribute' ] ); + if ( count( $classes ) ) { + $attribs['class'] = implode( ' ', $classes ); + } + return Html::rawElement( 'li', $attribs, $ret ) . "\n"; } diff --git a/includes/specials/SpecialRecentchanges.php b/includes/specials/SpecialRecentchanges.php index 0b48d4081c..4659b9d739 100644 --- a/includes/specials/SpecialRecentchanges.php +++ b/includes/specials/SpecialRecentchanges.php @@ -164,94 +164,12 @@ class SpecialRecentChanges extends ChangesListSpecialPage { parent::execute( $subpage ); if ( $this->isStructuredFilterUiEnabled() ) { - $jsData = $this->getStructuredFilterJsData(); - - $messages = []; - foreach ( $jsData['messageKeys'] as $key ) { - $messages[$key] = $this->msg( $key )->plain(); - } - - $out->addHTML( - ResourceLoader::makeInlineScript( - ResourceLoader::makeMessageSetScript( $messages ) - ) - ); - - $experimentalStructuredChangeFilters = - $this->getConfig()->get( 'StructuredChangeFiltersEnableExperimentalViews' ); - - $out->addJsConfigVars( 'wgStructuredChangeFilters', $jsData['groups'] ); + $out->addJsConfigVars( 'wgStructuredChangeFiltersLiveUpdateSupported', true ); $out->addJsConfigVars( - 'wgStructuredChangeFiltersEnableExperimentalViews', - $experimentalStructuredChangeFilters + 'wgStructuredChangeFiltersSavedQueriesPreferenceName', + 'rcfilters-saved-queries' ); - $out->addJsConfigVars( - 'wgStructuredChangeFiltersEnableLiveUpdate', - $this->getConfig()->get( 'StructuredChangeFiltersEnableLiveUpdate' ) - ); - $out->addJsConfigVars( - 'wgRCFiltersChangeTags', - $this->buildChangeTagList() - ); - $out->addJsConfigVars( - 'StructuredChangeFiltersDisplayConfig', - [ - 'maxDays' => (int)$this->getConfig()->get( 'RCMaxAge' ) / ( 24 * 3600 ), // Translate to days - 'limitArray' => $this->getConfig()->get( 'RCLinkLimits' ), - 'daysArray' => $this->getConfig()->get( 'RCLinkDays' ), - ] - ); - } - } - - /** - * Fetch the change tags list for the front end - * - * @return Array Tag data - */ - protected function buildChangeTagList() { - $explicitlyDefinedTags = array_fill_keys( ChangeTags::listExplicitlyDefinedTags(), 0 ); - $softwareActivatedTags = array_fill_keys( ChangeTags::listSoftwareActivatedTags(), 0 ); - - // Hit counts disabled for perf reasons, see T169997 - /* - $tagStats = ChangeTags::tagUsageStatistics(); - $tagHitCounts = array_merge( $explicitlyDefinedTags, $softwareActivatedTags, $tagStats ); - - // Sort by hits - arsort( $tagHitCounts ); - */ - $tagHitCounts = array_merge( $explicitlyDefinedTags, $softwareActivatedTags ); - - // Build the list and data - $result = []; - foreach ( $tagHitCounts as $tagName => $hits ) { - if ( - // Only get active tags - isset( $explicitlyDefinedTags[ $tagName ] ) || - isset( $softwareActivatedTags[ $tagName ] ) - ) { - // Parse description - $desc = ChangeTags::tagLongDescriptionMessage( $tagName, $this->getContext() ); - - $result[] = [ - 'name' => $tagName, - 'label' => Sanitizer::stripAllTags( - ChangeTags::tagDescription( $tagName, $this->getContext() ) - ), - 'description' => $desc ? Sanitizer::stripAllTags( $desc->parse() ) : '', - 'cssClass' => Sanitizer::escapeClass( 'mw-tag-' . $tagName ), - 'hits' => $hits, - ]; - } } - - // Instead of sorting by hit count (disabled, see above), sort by display name - usort( $result, function ( $a, $b ) { - return strcasecmp( $a['label'], $b['label'] ); - } ); - - return $result; } /** @@ -540,8 +458,6 @@ class SpecialRecentChanges extends ChangesListSpecialPage { && $this->getUser()->getOption( 'shownumberswatching' ); $watcherCache = []; - $dbr = $this->getDB(); - $counter = 1; $list = ChangesList::newFromContext( $this->getContext(), $this->filterGroups ); $list->initChangesListRows( $rows ); @@ -636,7 +552,7 @@ class SpecialRecentChanges extends ChangesListSpecialPage { ++$count; $addSubmit = ( $count === $extraOptsCount ) ? $submit : ''; - $out .= Xml::openElement( 'tr' ); + $out .= Xml::openElement( 'tr', [ 'class' => $name . 'Form' ] ); if ( is_array( $optionRow ) ) { $out .= Xml::tags( 'td', @@ -673,11 +589,11 @@ class SpecialRecentChanges extends ChangesListSpecialPage { $rcoptions = Xml::fieldset( $this->msg( 'recentchanges-legend' )->text(), $panelString, - [ 'class' => 'rcoptions' ] + [ 'class' => 'rcoptions cloptions' ] ); // Insert a placeholder for RCFilters - if ( $this->getUser()->getOption( 'rcenhancedfilters' ) ) { + if ( $this->isStructuredFilterUiEnabled() ) { $rcfilterContainer = Html::element( 'div', [ 'class' => 'rcfilters-container' ] @@ -729,7 +645,7 @@ class SpecialRecentChanges extends ChangesListSpecialPage { $topLinksAttributes = [ 'class' => 'mw-recentchanges-toplinks' ]; - if ( $this->getUser()->getOption( 'rcenhancedfilters' ) ) { + if ( $this->isStructuredFilterUiEnabled() ) { $contentTitle = Html::rawElement( 'div', [ 'class' => 'mw-recentchanges-toplinks-title' ], $this->msg( 'rcfilters-other-review-tools' )->parse() @@ -785,17 +701,6 @@ class SpecialRecentChanges extends ChangesListSpecialPage { return $extraOpts; } - /** - * Check whether the structured filter UI is enabled - * - * @return bool - */ - protected function isStructuredFilterUiEnabled() { - return $this->getUser()->getOption( - 'rcenhancedfilters' - ); - } - /** * Add page-specific modules. */ @@ -803,10 +708,6 @@ class SpecialRecentChanges extends ChangesListSpecialPage { parent::addModules(); $out = $this->getOutput(); $out->addModules( 'mediawiki.special.recentchanges' ); - if ( $this->isStructuredFilterUiEnabled() ) { - $out->addModules( 'mediawiki.rcfilters.filters.ui' ); - $out->addModuleStyles( 'mediawiki.rcfilters.filters.base.styles' ); - } } /** @@ -1030,7 +931,6 @@ class SpecialRecentChanges extends ChangesListSpecialPage { $filterGroups = $this->getFilterGroups(); - $context = $this->getContext(); foreach ( $filterGroups as $groupName => $group ) { if ( !$group->isPerGroupRequestParameter() ) { foreach ( $group->getFilters() as $key => $filter ) { @@ -1047,7 +947,7 @@ class SpecialRecentChanges extends ChangesListSpecialPage { [ $key => 1 - $options[$key] ], $nondefaults ); $attribs = [ - 'class' => "$msg rcshowhideoption", + 'class' => "$msg rcshowhideoption clshowhideoption", 'data-filter-name' => $filter->getName(), ]; diff --git a/includes/specials/SpecialWatchlist.php b/includes/specials/SpecialWatchlist.php index 1d76e36106..b20b33117b 100644 --- a/includes/specials/SpecialWatchlist.php +++ b/includes/specials/SpecialWatchlist.php @@ -32,6 +32,8 @@ use Wikimedia\Rdbms\IDatabase; * @ingroup SpecialPage */ class SpecialWatchlist extends ChangesListSpecialPage { + private $maxDays; + public function __construct( $page = 'Watchlist', $restriction = 'viewmywatchlist' ) { parent::__construct( $page, $restriction ); @@ -93,6 +95,20 @@ class SpecialWatchlist extends ChangesListSpecialPage { } parent::execute( $subpage ); + + if ( $this->isStructuredFilterUiEnabled() ) { + $output->addJsConfigVars( 'wgStructuredChangeFiltersLiveUpdateSupported', false ); + $output->addJsConfigVars( + 'wgStructuredChangeFiltersSavedQueriesPreferenceName', + 'rcfilters-wl-saved-queries' + ); + } + } + + protected function isStructuredFilterUiEnabled() { + return parent::isStructuredFilterUiEnabled() + && ( $this->getConfig()->get( 'StructuredChangeFiltersOnWatchlist' ) + || $this->getRequest()->getBool( 'rcfilters' ) ); } /** @@ -126,6 +142,47 @@ class SpecialWatchlist extends ChangesListSpecialPage { protected function registerFilters() { parent::registerFilters(); + $this->registerFilterGroup( new ChangesListStringOptionsFilterGroup( [ + 'name' => 'watchlistactivity', + 'title' => 'rcfilters-filtergroup-watchlistactivity', + 'class' => ChangesListStringOptionsFilterGroup::class, + 'priority' => 3, + 'isFullCoverage' => true, + 'filters' => [ + [ + 'name' => 'unseen', + 'label' => 'rcfilters-filter-watchlistactivity-unseen-label', + 'description' => 'rcfilters-filter-watchlistactivity-unseen-description', + 'cssClassSuffix' => 'watchedunseen', + 'isRowApplicableCallable' => function ( $ctx, $rc ) { + $changeTs = $rc->getAttribute( 'rc_timestamp' ); + $lastVisitTs = $rc->getAttribute( 'wl_notificationtimestamp' ); + return $changeTs >= $lastVisitTs; + }, + ], + [ + 'name' => 'seen', + 'label' => 'rcfilters-filter-watchlistactivity-seen-label', + 'description' => 'rcfilters-filter-watchlistactivity-seen-description', + 'cssClassSuffix' => 'watchedseen', + 'isRowApplicableCallable' => function ( $ctx, $rc ) { + $changeTs = $rc->getAttribute( 'rc_timestamp' ); + $lastVisitTs = $rc->getAttribute( 'wl_notificationtimestamp' ); + return $changeTs < $lastVisitTs; + } + ], + ], + 'default' => ChangesListStringOptionsFilterGroup::NONE, + 'queryCallable' => function ( $specialPageClassName, $context, $dbr, + &$tables, &$fields, &$conds, &$query_options, &$join_conds, $selectedValues ) { + if ( $selectedValues === [ 'seen' ] ) { + $conds[] = 'rc_timestamp < wl_notificationtimestamp'; + } elseif ( $selectedValues === [ 'unseen' ] ) { + $conds[] = 'rc_timestamp >= wl_notificationtimestamp'; + } + } + ] ) ); + $user = $this->getUser(); $significance = $this->getFilterGroup( 'significance' ); @@ -172,12 +229,14 @@ class SpecialWatchlist extends ChangesListSpecialPage { $opts->add( 'days', $user->getOption( 'watchlistdays' ), FormOptions::FLOAT ); $opts->add( 'extended', $user->getBoolOption( 'extendwatchlist' ) ); + $opts->add( 'limit', $user->getIntOption( 'wllimit' ), FormOptions::INT ); return $opts; } public function validateOptions( FormOptions $opts ) { $opts->validateBounds( 'days', 0, $this->maxDays ); + $opts->validateIntBounds( 'limit', 0, 5000 ); parent::validateOptions( $opts ); } @@ -300,7 +359,7 @@ class SpecialWatchlist extends ChangesListSpecialPage { $query_options = array_merge( [ 'ORDER BY' => 'rc_timestamp DESC', - 'LIMIT' => $user->getIntOption( 'wllimit' ) + 'LIMIT' => $opts['limit'] ], $query_options ); $join_conds = array_merge( [ @@ -458,6 +517,11 @@ class SpecialWatchlist extends ChangesListSpecialPage { } $s = $list->beginRecentChangesList(); + + if ( $this->isStructuredFilterUiEnabled() ) { + $s .= $this->makeLegend(); + } + $userShowHiddenCats = $this->getUser()->getBoolOption( 'showhiddencats' ); $counter = 1; foreach ( $rows as $obj ) { @@ -518,6 +582,24 @@ class SpecialWatchlist extends ChangesListSpecialPage { $this->setTopText( $opts ); + $form = ''; + + $form .= Xml::openElement( 'form', [ + 'method' => 'get', + 'action' => wfScript(), + 'id' => 'mw-watchlist-form' + ] ); + $form .= Html::hidden( 'title', $this->getPageTitle()->getPrefixedText() ); + $form .= Xml::fieldset( + $this->msg( 'watchlist-options' )->text(), + false, + [ 'id' => 'mw-watchlist-options', 'class' => 'cloptions' ] + ); + + if ( !$this->isStructuredFilterUiEnabled() ) { + $form .= $this->makeLegend(); + } + $lang = $this->getLanguage(); if ( $opts['days'] > 0 ) { $days = $opts['days']; @@ -525,16 +607,23 @@ class SpecialWatchlist extends ChangesListSpecialPage { $days = $this->maxDays; } $timestamp = wfTimestampNow(); - $wlInfo = $this->msg( 'wlnote' )->numParams( $numRows, round( $days * 24 ) )->params( - $lang->userDate( $timestamp, $user ), $lang->userTime( $timestamp, $user ) - )->parse() . "
\n"; + $wlInfo = Html::rawElement( + 'span', + [ 'class' => 'wlinfo' ], + $this->msg( 'wlnote' )->numParams( $numRows, round( $days * 24 ) )->params( + $lang->userDate( $timestamp, $user ), $lang->userTime( $timestamp, $user ) + )->parse() + ) . "
\n"; $nondefaults = $opts->getChangedValues(); - $cutofflinks = $this->msg( 'wlshowtime' ) . ' ' . $this->cutoffselector( $opts ); + $cutofflinks = Html::rawElement( + 'span', + [ 'class' => 'cldays cloption' ], + $this->msg( 'wlshowtime' ) . ' ' . $this->cutoffselector( $opts ) + ); # Spit out some control panel links $links = []; - $context = $this->getContext(); $namesOfDisplayedFilters = []; foreach ( $this->getFilterGroups() as $groupName => $group ) { if ( !$group->isPerGroupRequestParameter() ) { @@ -545,7 +634,8 @@ class SpecialWatchlist extends ChangesListSpecialPage { $nondefaults, $filter->getShowHide(), $filterName, - $opts[$filterName] + $opts[$filterName], + $filter->isFeatureAvailableOnStructuredUi( $this ) ); } } @@ -562,17 +652,19 @@ class SpecialWatchlist extends ChangesListSpecialPage { unset( $hiddenFields[$filterName] ); } - # Create output - $form = ''; - # Namespace filter and put the whole form together. $form .= $wlInfo; $form .= $cutofflinks; - $form .= $this->msg( 'watchlist-hide' ) . + $form .= Html::rawElement( + 'span', + [ 'class' => 'clshowhide' ], + $this->msg( 'watchlist-hide' ) . $this->msg( 'colon-separator' )->escaped() . - implode( ' ', $links ); + implode( ' ', $links ) + ); $form .= "\n
\n"; - $form .= Html::namespaceSelector( + + $namespaceForm = Html::namespaceSelector( [ 'selected' => $opts['namespace'], 'all' => '', @@ -583,27 +675,66 @@ class SpecialWatchlist extends ChangesListSpecialPage { 'class' => 'namespaceselector', ] ) . "\n"; - $form .= '' . Xml::checkLabel( + $namespaceForm .= '' . Xml::checkLabel( $this->msg( 'invert' )->text(), 'invert', 'nsinvert', $opts['invert'], [ 'title' => $this->msg( 'tooltip-invert' )->text() ] ) . "\n"; - $form .= '' . Xml::checkLabel( + $namespaceForm .= '' . Xml::checkLabel( $this->msg( 'namespace_association' )->text(), 'associated', 'nsassociated', $opts['associated'], [ 'title' => $this->msg( 'tooltip-namespace_association' )->text() ] ) . "\n"; - $form .= Xml::submitButton( $this->msg( 'watchlist-submit' )->text() ) . "\n"; + $form .= Html::rawElement( + 'span', + [ 'class' => 'namespaceForm cloption' ], + $namespaceForm + ); + + $form .= Xml::submitButton( + $this->msg( 'watchlist-submit' )->text(), + [ 'class' => 'cloption-submit' ] + ) . "\n"; foreach ( $hiddenFields as $key => $value ) { $form .= Html::hidden( $key, $value ) . "\n"; } $form .= Xml::closeElement( 'fieldset' ) . "\n"; $form .= Xml::closeElement( 'form' ) . "\n"; - $this->getOutput()->addHTML( $form ); + + // Insert a placeholder for RCFilters + if ( $this->isStructuredFilterUiEnabled() ) { + $rcfilterContainer = Html::element( + 'div', + [ 'class' => 'rcfilters-container' ] + ); + + $loadingContainer = Html::rawElement( + 'div', + [ 'class' => 'rcfilters-spinner' ], + Html::element( + 'div', + [ 'class' => 'rcfilters-spinner-bounce' ] + ) + ); + + // Wrap both with rcfilters-head + $this->getOutput()->addHTML( + Html::rawElement( + 'div', + [ 'class' => 'rcfilters-head' ], + $rcfilterContainer . $form + ) + ); + + // Add spinner + $this->getOutput()->addHTML( $loadingContainer ); + } else { + $this->getOutput()->addHTML( $form ); + } $this->setBottomText( $opts ); } @@ -655,7 +786,7 @@ class SpecialWatchlist extends ChangesListSpecialPage { function setTopText( FormOptions $opts ) { $nondefaults = $opts->getChangedValues(); - $form = ""; + $form = ''; $user = $this->getUser(); $numItems = $this->countItems(); @@ -692,32 +823,27 @@ class SpecialWatchlist extends ChangesListSpecialPage { $form .= Xml::closeElement( 'form' ) . "\n"; } - $form .= Xml::openElement( 'form', [ - 'method' => 'get', - 'action' => wfScript(), - 'id' => 'mw-watchlist-form' - ] ); - $form .= Html::hidden( 'title', $this->getPageTitle()->getPrefixedText() ); - $form .= Xml::fieldset( - $this->msg( 'watchlist-options' )->text(), - false, - [ 'id' => 'mw-watchlist-options' ] - ); - - $form .= $this->makeLegend(); - $this->getOutput()->addHTML( $form ); } - protected function showHideCheck( $options, $message, $name, $value ) { + protected function showHideCheck( $options, $message, $name, $value, $inStructuredUi ) { $options[$name] = 1 - (int)$value; - return '' . Xml::checkLabel( - $this->msg( $message, '' )->text(), - $name, - $name, - (int)$value - ) . ''; + $attribs = [ 'class' => 'mw-input-with-label clshowhideoption cloption' ]; + if ( $inStructuredUi ) { + $attribs[ 'data-feature-in-structured-ui' ] = true; + } + + return Html::rawElement( + 'span', + $attribs, + Xml::checkLabel( + $this->msg( $message, '' )->text(), + $name, + $name, + (int)$value + ) + ); } /** diff --git a/includes/tidy/Balancer.php b/includes/tidy/Balancer.php index b29a3afbd4..947a572480 100644 --- a/includes/tidy/Balancer.php +++ b/includes/tidy/Balancer.php @@ -1528,7 +1528,7 @@ class BalanceActiveFormattingElements { /** * Determine whether an element is in the list of formatting elements. * @param BalanceElement $elt - * @return boolean + * @return bool */ public function isInList( BalanceElement $elt ) { return $this->head === $elt || $elt->prevAFE; diff --git a/includes/tidy/RemexCompatMunger.php b/includes/tidy/RemexCompatMunger.php index a797398d2e..73bc5f8493 100644 --- a/includes/tidy/RemexCompatMunger.php +++ b/includes/tidy/RemexCompatMunger.php @@ -129,7 +129,7 @@ class RemexCompatMunger implements TreeHandler { * Insert a p-wrapper * * @param SerializerNode $parent - * @param integer $sourceStart + * @param int $sourceStart * @return SerializerNode */ private function insertPWrapper( SerializerNode $parent, $sourceStart ) { @@ -220,12 +220,12 @@ class RemexCompatMunger implements TreeHandler { * FIXME: fostering ($preposition == BEFORE) is mostly done by inserting as * normal, the full algorithm is not followed. * - * @param integer $preposition + * @param int $preposition * @param Element|SerializerNode|null $refElement * @param Element $element * @param bool $void - * @param integer $sourceStart - * @param integer $sourceLength + * @param int $sourceStart + * @param int $sourceLength */ public function insertElement( $preposition, $refElement, Element $element, $void, $sourceStart, $sourceLength @@ -313,7 +313,7 @@ class RemexCompatMunger implements TreeHandler { * * @param SerializerNode $parentNode * @param bool $inline - * @param integer $pos The source position + * @param int $pos The source position * @return SerializerNode */ private function splitTagStack( SerializerNode $parentNode, $inline, $pos ) { diff --git a/includes/upload/UploadBase.php b/includes/upload/UploadBase.php index 2ee40a886c..da3f9f82ac 100644 --- a/includes/upload/UploadBase.php +++ b/includes/upload/UploadBase.php @@ -247,7 +247,7 @@ abstract class UploadBase { /** * @param string $tempPath File system path to temporary file containing the upload - * @param integer $fileSize + * @param int $fileSize */ protected function setTempFile( $tempPath, $fileSize = null ) { $this->mTempPath = $tempPath; diff --git a/includes/user/User.php b/includes/user/User.php index 71a427298e..08f054d286 100644 --- a/includes/user/User.php +++ b/includes/user/User.php @@ -302,7 +302,7 @@ class User implements IDBAccessObject { /** @var Block */ private $mBlockedFromCreateAccount = false; - /** @var integer User::READ_* constant bitfield used to load data */ + /** @var int User::READ_* constant bitfield used to load data */ protected $queryFlagsUsed = self::READ_NORMAL; public static $idCacheByName = []; @@ -357,7 +357,7 @@ class User implements IDBAccessObject { /** * Load the user table data for this object from the source given by mFrom. * - * @param integer $flags User::READ_* constant bitfield + * @param int $flags User::READ_* constant bitfield */ public function load( $flags = self::READ_NORMAL ) { global $wgFullyInitialised; @@ -419,7 +419,7 @@ class User implements IDBAccessObject { /** * Load user table data, given mId has already been set. - * @param integer $flags User::READ_* constant bitfield + * @param int $flags User::READ_* constant bitfield * @return bool False if the ID does not exist, true otherwise */ public function loadFromId( $flags = self::READ_NORMAL ) { @@ -450,7 +450,7 @@ class User implements IDBAccessObject { /** * @since 1.27 * @param string $wikiId - * @param integer $userId + * @param int $userId */ public static function purge( $wikiId, $userId ) { $cache = ObjectCache::getMainWANInstance(); @@ -759,7 +759,7 @@ class User implements IDBAccessObject { /** * Get database id given a user name * @param string $name Username - * @param integer $flags User::READ_* constant bitfield + * @param int $flags User::READ_* constant bitfield * @return int|null The corresponding user's ID, or null if user is nonexistent */ public static function idFromName( $name, $flags = self::READ_NORMAL ) { @@ -1252,7 +1252,7 @@ class User implements IDBAccessObject { * Load user and user_group data from the database. * $this->mId must be set, this is how the user is identified. * - * @param integer $flags User::READ_* constant bitfield + * @param int $flags User::READ_* constant bitfield * @return bool True if the user exists, false if the user is anonymous */ public function loadFromDatabase( $flags = self::READ_LATEST ) { diff --git a/includes/utils/BatchRowIterator.php b/includes/utils/BatchRowIterator.php index cab6a3d6f8..60720c87e3 100644 --- a/includes/utils/BatchRowIterator.php +++ b/includes/utils/BatchRowIterator.php @@ -44,7 +44,7 @@ class BatchRowIterator implements RecursiveIterator { protected $primaryKey; /** - * @var integer $batchSize The number of rows to fetch per iteration + * @var int $batchSize The number of rows to fetch per iteration */ protected $batchSize; @@ -76,7 +76,7 @@ class BatchRowIterator implements RecursiveIterator { private $current = []; /** - * @var integer key 0-indexed number of pages fetched since self::reset() + * @var int key 0-indexed number of pages fetched since self::reset() */ private $key; @@ -89,7 +89,7 @@ class BatchRowIterator implements RecursiveIterator { * @param IDatabase $db The database to read from * @param string|array $table The name or names of the table to read from * @param string|array $primaryKey The name or names of the primary key columns - * @param integer $batchSize The number of rows to fetch per iteration + * @param int $batchSize The number of rows to fetch per iteration * @throws InvalidArgumentException */ public function __construct( IDatabase $db, $table, $primaryKey, $batchSize ) { @@ -167,7 +167,7 @@ class BatchRowIterator implements RecursiveIterator { } /** - * @return integer 0-indexed count of the page number fetched + * @return int 0-indexed count of the page number fetched */ public function key() { return $this->key; diff --git a/includes/utils/UIDGenerator.php b/includes/utils/UIDGenerator.php index dd9f2d9f61..736109b49a 100644 --- a/includes/utils/UIDGenerator.php +++ b/includes/utils/UIDGenerator.php @@ -542,7 +542,7 @@ class UIDGenerator { /** * @param array $time Result of UIDGenerator::millitime() - * @param integer $delta Number of intervals to add on to the timestamp + * @param int $delta Number of intervals to add on to the timestamp * @return string 60 bits of "100ns intervals since 15 October 1582" (rolls over in 3400) * @throws RuntimeException */ diff --git a/includes/widget/SearchInputWidget.php b/includes/widget/SearchInputWidget.php index 90792fc195..773c291dfc 100644 --- a/includes/widget/SearchInputWidget.php +++ b/includes/widget/SearchInputWidget.php @@ -22,7 +22,7 @@ class SearchInputWidget extends TitleInputWidget { * @param array $config Configuration options * @param int|null $config['pushPending'] Whether the input should be visually marked as * "pending", while requesting suggestions (default: false) - * @param boolean|null $config['performSearchOnClick'] If true, the script will start a search + * @param bool|null $config['performSearchOnClick'] If true, the script will start a search * whenever a user hits a suggestion. If false, the text of the suggestion is inserted into the * text field only (default: true) * @param string $config['dataLocation'] Where the search input field will be diff --git a/includes/widget/SelectWithInputWidget.php b/includes/widget/SelectWithInputWidget.php index 8faae82251..d2dda75e54 100644 --- a/includes/widget/SelectWithInputWidget.php +++ b/includes/widget/SelectWithInputWidget.php @@ -24,7 +24,7 @@ class SelectWithInputWidget extends \OOUI\Widget { * @param array $config Configuration options * @param array $config['textinput'] Configuration for the TextInputWidget * @param array $config['dropdowninput'] Configuration for the DropdownInputWidget - * @param boolean $config['or'] Configuration for whether the widget is dropdown AND input + * @param bool $config['or'] Configuration for whether the widget is dropdown AND input * or dropdown OR input */ public function __construct( array $config = [] ) { diff --git a/languages/Language.php b/languages/Language.php index 9db7dec4cd..c514cdc595 100644 --- a/languages/Language.php +++ b/languages/Language.php @@ -4279,7 +4279,7 @@ class Language { * * @since 1.28 * @param Language $lang - * @return boolean + * @return bool */ public function equals( Language $lang ) { return $lang->getCode() === $this->mCode; @@ -4343,7 +4343,7 @@ class Language { /** * @param string $code - * @param boolean $fallback Whether we're going through language fallback chain + * @param bool $fallback Whether we're going through language fallback chain * @return string Name of the language class */ public static function classFromCode( $code, $fallback = true ) { diff --git a/languages/i18n/af.json b/languages/i18n/af.json index 0affa8c52e..ab9746ff76 100644 --- a/languages/i18n/af.json +++ b/languages/i18n/af.json @@ -23,7 +23,8 @@ "Macofe", "Fwolff", "Oesjaar", - "Matma Rex" + "Matma Rex", + "Biggs ZA" ] }, "tog-underline": "Onderstreep skakels.", @@ -341,7 +342,7 @@ "actionthrottled": "Outo-rem op aksie uitgevoer", "actionthrottledtext": "As 'n teen-strooi aksie, word u beperk om hierdie aksie te veel keer in 'n kort tyd uit te voer, en u het hierdie limiet oorskry.\nProbeer asseblief weer oor 'n paar minute.", "protectedpagetext": "Hierdie bladsy is beskerm om wysigings en ander aksies te verhoed.", - "viewsourcetext": "U mag die bronteks van hierdie bladsy lees en kopieer.", + "viewsourcetext": "U het toestemming om die bronteks te bekyk en te kopieer.", "viewyourtext": "U kan '''u wysigings''' aan die bronteks van hierdie bladsy bekyk en kopieer:", "protectedinterface": "Hierdie bladsy verskaf teks vir die koppelvlak van die sagteware, en is beskerm om misbruik te voorkom.\nGebruik asseblief [https://translatewiki.net/ translatewiki.net] om vertalings by te voeg of te wysig.", "editinginterface": "'''Waarskuwing:''' U is besig om 'n bladsy te redigeer wat koppelvlakinligting aan die programmatuur voorsien. Wysigings aan hierdie bladsy sal die voorkoms van die gebruikerskoppelvlak vir ander gebruikers beïnvloed. Vir vertalings, oorweeg om eerder [https://translatewiki.net/wiki/Main_Page?setlang=af translatewiki.net] (die vertalingsprojek vir MediaWiki) te gebruik.", @@ -679,7 +680,7 @@ "page_first": "eerste", "page_last": "laaste", "histlegend": "Byskrif: (huidige) = verskil van huidige weergawe,\n(vorige) = verskil van vorige weergawe, M = klein wysiging", - "history-fieldset-title": "Soek vir wysigings", + "history-fieldset-title": "Soek na wysigings", "history-show-deleted": "Slegs geskrapte", "histfirst": "oudste", "histlast": "nuutste", @@ -2904,6 +2905,7 @@ "compare-invalid-title": "Die titel wat u verskaf het is ongeldig.", "compare-title-not-exists": "Die titel wat u verskaf het bestaan ​​nie.", "compare-revision-not-exists": "Die hersiening wat u verskaf het bestaan ​​nie.", + "diff-form": "'n '''vorm'''", "dberr-problems": "Jammer! Die webwerf ondervind op die oomblik tegniese probleme.", "dberr-again": "Wag 'n paar minute en probeer dan weer.", "dberr-info": "(Kan nie die databasisbediener kontak nie: $1)", diff --git a/languages/i18n/ar.json b/languages/i18n/ar.json index b1604f8ab8..a00d2a7208 100644 --- a/languages/i18n/ar.json +++ b/languages/i18n/ar.json @@ -1371,7 +1371,6 @@ "rcfilters-restore-default-filters": "استرجاع المرشحات الافتراضية", "rcfilters-clear-all-filters": "مسح كل المرشحات", "rcfilters-show-new-changes": "عرض أحدث التغييرات", - "rcfilters-previous-changes-label": "تغييرات تم عرضها سابقًا", "rcfilters-search-placeholder": "رشح أحدث التغييرات (تصفح أو ابدأ الكتابة)", "rcfilters-invalid-filter": "مرشح غير صحيح", "rcfilters-empty-filter": "لا مرشحات فعالة. كل المساهمات معروضة.", @@ -2155,8 +2154,6 @@ "watching": "يراقب...", "unwatching": "إزالة المراقبة...", "watcherrortext": "حدث خطأ أثناء تغيير إعدادات الرصد الخاصة بك \"$1\".", - "watchlist-unwatch": "×", - "watchlist-unwatch-undo": "+", "enotif_reset": "علم على كل الصفحات كمرئية", "enotif_impersonal_salutation": "مستخدم {{SITENAME}}", "enotif_subject_deleted": "الصفحة {{SITENAME}} $1 حذفها {{الجنس: $2 | $2 }}", diff --git a/languages/i18n/ast.json b/languages/i18n/ast.json index cd7a962279..4e7ca5a60f 100644 --- a/languages/i18n/ast.json +++ b/languages/i18n/ast.json @@ -1315,7 +1315,6 @@ "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-previous-changes-label": "Cambeos vistos anteriormente", "rcfilters-search-placeholder": "Filtriar los cambeos recién (restola o empieza a escribir)", "rcfilters-invalid-filter": "Filtru inválidu", "rcfilters-empty-filter": "Nun hai filtros activos. Amuésense toles contribuciones.", diff --git a/languages/i18n/ba.json b/languages/i18n/ba.json index f74f3253ad..68f80d1516 100644 --- a/languages/i18n/ba.json +++ b/languages/i18n/ba.json @@ -65,6 +65,7 @@ "tog-watchlisthideminor": "Әҙ үҙгәрештәрҙе күҙәтеү исемлегенән йәшерергә", "tog-watchlisthideliu": "Танылған ҡулланыусыларҙың үҙгәртеүҙәрен күҙәтеү исемлегенән йәшерергә", "tog-watchlistreloadautomatically": "Һөҙгөс үҙгәргән һайын күҙәтеү исемлеген автоматик рәүештә яңыртырға (JavaScript кәрәк)", + "tog-watchlistunwatchlinks": "Күҙәтеү исемлегендәге яҙмаларға туранан-тура индереү/алыу (JavaScript кәрәк)", "tog-watchlisthideanons": "Аноним ҡулланыусыларҙың үҙгәртеүҙерен күҙәтеү исемлегенән йәшерергә", "tog-watchlisthidepatrolled": "Тикшерелгән үҙгәртеүҙәрҙе күҙәтеү исемлегенән йәшерергә", "tog-watchlisthidecategorization": "Биттәр категоризацияһын йәшереү", @@ -1324,7 +1325,6 @@ "rcfilters-restore-default-filters": "Фильтрҙарҙың һүҙһеҙ үтәлгәнен кире ҡуйырға", "rcfilters-clear-all-filters": "Бөтә фильтрҙарҙы ла таҙартырға", "rcfilters-show-new-changes": "Һуңғы үҙгәртеүҙәрҙе ҡарап сығырға", - "rcfilters-previous-changes-label": "Элек ҡаралған үҙгәртеүҙәр", "rcfilters-search-placeholder": "Фильтрҙарҙың һуңғы үҙгәрештәре (ҡарап сығығыҙ йәки индерә башлағыҙ)", "rcfilters-invalid-filter": "Ярамаған фильтр", "rcfilters-empty-filter": "Әүҙем фильтрҙар юҡ. Бөтә үҙгәртеүҙәр ҙә күрһәтелә.", @@ -1929,6 +1929,8 @@ "apisandbox-alert-field": "Был ҡыр дәүмәле ярамай.", "apisandbox-continue": "Дауам итергә", "apisandbox-continue-clear": "Таҙартыу", + "apisandbox-continue-help": "{{int:apisandbox-continue}} [https://www.mediawiki.org/wiki/API:Query#Continuing_queries дауам итәсәк] һуңғы һорау; {{int:apisandbox-continue-clear}} дауам итеү менән бәйләнгән параметрҙарҙы юйырға.", + "apisandbox-param-limit": "максималь сикте ҡулланыуҙы максимальное ҡуйығыҙ.", "apisandbox-multivalue-all-namespaces": "$1 (Барлыҡ исемдәр яланы)", "apisandbox-multivalue-all-values": "$1 (барлыҡ мәғәнәләр)", "booksources": "Китап сығанаҡтары", @@ -1941,6 +1943,7 @@ "magiclink-tracking-pmid": "PMID серле һылтанмаһын ҡулланған биттәр", "magiclink-tracking-pmid-desc": "Был бит PMID серле һылтанмаһын ҡуллана. Ҡара [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Magic_links mediawiki.org] нисек күсереү тураһында.", "magiclink-tracking-isbn": "ISBN серле һылтанмаһын ҡулланған биттәр", + "magiclink-tracking-isbn-desc": "Был биттең ISBN серле һылтанмаһы бар. Ҡара [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Magic_links mediawiki.org] уға нисек күсеү тураһында.", "specialloguserlabel": "Башҡарыусы:", "speciallogtitlelabel": "Маҡсат (исем йәки ҡулланыусы {{ns:user}}):", "log": "Журналдар", @@ -1992,6 +1995,8 @@ "activeusers-intro": "Был — һуңғы $1 {{PLURAL:$1|көн}} эсендә ниҙер башҡарған ҡатнашыусылар исемлеге.", "activeusers-count": "Һуңғы {{PLURAL:$3|$3 көндә}} $1 {{PLURAL:$1|үҙгәртеү}}", "activeusers-from": "Ошондай хәрефтәрҙән башланған ҡатнашыусыларҙы күрһәтергә:", + "activeusers-groups": "Был төркөмдәргә ҡараған ҡатнашыусыларҙы күрһәтеү:", + "activeusers-excludegroups": "Был төркөмдәрҙең ҡатнашыусыларын һыҙырға:", "activeusers-noresult": "Ҡатнашыусылар табылманы", "activeusers-submit": "Әүҙем ҡулланыусыларҙы күрһәтергә", "listgrouprights": "Ҡатнашыусылар төркөмө хоҡуҡтары", @@ -2021,6 +2026,8 @@ "trackingcategories-msg": "Күҙәтеүсе категория", "trackingcategories-name": "Хәбәр исеме", "trackingcategories-desc": "Категорияға индереү критерийҙары", + "restricted-displaytitle-ignored": "Күренгән атамалары кире ҡағылған биттәр", + "restricted-displaytitle-ignored-desc": "Был биттә кире ҡағылған {{DISPLAYTITLE}} бар, сөнки уның атамаһы биттең исеменә тап килмәй.", "noindex-category-desc": "Бит эҙләүсе роботтар тарафынан индексацияланмай, сөнки унда \"тылсымлы һүҙ\" __NOINDEX__ бар һәм ул был флаг рөхсәт ителгән исемдәр киңлегендә урынлашҡан.", "index-category-desc": "Биттә «тылсымлы һүҙ» бар__INDEX__ (бит рөхсәт ителгән исемдәр арауығында ята), шуға күрә эҙләү системаһында индекслана.", "post-expand-template-inclusion-category-desc": "Барлыҡ ҡалыптарҙы ла күрһәткәндән һуң биттең күләме арта$wgMaxArticleSize, шуға күрә ҡайһы берҙәре тулыһынса күрһәтелмәне.", @@ -2067,9 +2074,11 @@ "watchnologin": "Үҙегеҙҙе танытырға кәрәк", "addwatch": "Күҙәтеү исемлегенә өҫтәргә", "addedwatchtext": "\"[[:$1]]\" бите [[Special:Watchlist|күҙәтеү исемлегегеҙгә]] өҫтәлде.\nБыл биттә һәм уның фекер алышыу битендә буласаҡ бар үҙгәртеүҙәр ундағы исемлектә күрһәтеләсәк.", + "addedwatchtext-talk": "«[[:$1]]» үҙенә бәйләнгән бит менән бергә һеҙҙең [[Special:Watchlist|күҙәтеү исемлеге]]нә өҫтәлде.", "addedwatchtext-short": "\"$1\" бите Һеҙҙең күҙәтеү исемлегенә өҫтәлгән", "removewatch": "Күҙәтеү исемлегенән сығарырға", "removedwatchtext": "«[[:$1]]» мәҡәләһе һәм уның фекер алышыу бите һеҙҙең [[Special:Watchlist|күҙәтеү исемлегенән]] сығарылды.", + "removedwatchtext-talk": "«[[:$1]]» үҙенә бәйләнгән бит менән бергә һеҙҙең [[Special:Watchlist|күҙәтеү исемлеге]]нән алып ташланды.", "removedwatchtext-short": "\"$1\" бите һеҙҙең күҙәтеү исемлегенән алып ташланды.", "watch": "Күҙәтергә", "watchthispage": "Был битте күҙәтергә", @@ -2112,6 +2121,7 @@ "enotif_lastdiff": "Был үҙгәртеүҙе күреү өсөн, $1 ҡарағыҙ", "enotif_anon_editor": "танылмаған ҡатнашыусы $1", "enotif_body": "Хөрмәтле $WATCHINGUSERNAME,\n\n$PAGEINTRO $NEWPAGE\n\nМөхәррирләү аңлатмаһы: $PAGESUMMARY $PAGEMINOREDIT\n\nҮҙгәртеүсе менән бәйләнеш өсөн:\nЭл. почта адресы: $PAGEEDITOR_EMAIL\nВики бите: $PAGEEDITOR_WIKI\n\nӘгәр һеҙ был биткә иҫәп яҙмағыҙ буйынса инмәһәгеҙ, бынан һуң буласаҡ үҙгәртеүҙәр тураһында белдереү алмаясаҡһығыҙ. \nҺеҙ шулай уҡ күҙәтеү исемлегедәге бар биттәр өсөн белдереү көйләүен һүндерә алаһығыҙ.\n\n {{grammar:genitive|{{SITENAME}}}} белдереү системаһы\n\n--\nБелдереүҙәрен көйләүен үҙгәртергә:\n{{canonicalurl:{{#special:Preferences}}}}\n\nКүҙәтеү исемлеге көйләүҙәрен үҙгәртергә:\n{{canonicalurl:{{#special:EditWatchlist}}}}\n\nКүҙәтеү исемлегенән биттәрҙе юйырға:\n$UNWATCHURL\n\nКире бәйләнеш һәм ярҙам:\n$HELPPAGE", + "enotif_minoredit": "Был әҙ үҙгәреш", "created": "булдырылды", "changed": "үҙгәртелгән", "deletepage": "Битте юйырға", @@ -2140,17 +2150,21 @@ "delete-warning-toobig": "Был биттең үҙгәртеүҙәр тарихы бик оҙон, $1 {{PLURAL:$1|өлгөнән}} күберәк.\nБитте юйыу {{SITENAME}} проектының эшмәкәрлеге боҙолоуына килтереүе мөмкин, һаҡлыҡ менән эш итегеҙ.", "deleteprotected": "Был бит һаҡланған, уны юйҙыра алмайһығыҙ.", "deleting-backlinks-warning": "Иҫкәртеү: [[Special:WhatLinksHere/{{FULLPAGENAME}}|Башҡа ҡатнашыусылар]] һеҙ юйырға теләгән биткә һылтана.", + "deleting-subpages-warning": "Иҫкәрмә: Һеҙ юйырға йыйынған биттә [[Special:PrefixIndex/{{FULLPAGENAME}}/|{{PLURAL:$1|$1 бәләкәй бит|$1 бәләкәй биттәре|51=50 бәләкәй биттән ашыу}}]] бар.", "rollback": "Үҙгәртеүҙәрҙе кире ҡайтарырға", "rollbacklink": "кире", "rollbacklinkcount": "$1 {{PLURAL:$1|1=төҙәтеүҙе|төҙәтеүҙе}} кире алырға", "rollbacklinkcount-morethan": "$1 {{PLURAL:$1|1=төҙәтеүҙән|төҙәтеүҙән}} күберәк кире алырға", "rollbackfailed": "Кире ҡайтарырғанда барлыҡҡа килгән хата", + "rollback-missingparam": "Һеҙ һораған параметрҙар юҡ.", + "rollback-missingrevision": "Версияның билдәләмәләрен тейәп булманы", "cantrollback": "Үҙгәртеүҙәрҙе кире алыу мөмкин түгел. Битте һуңғы үҙгәртеүсе ҡатнашыусы уның берҙән-бер авторы булып тора.", "alreadyrolled": "[[User:$2|$2]] ([[User talk:$2|фекер алышыу]]{{int:pipe-separator}}[[Special:Contributions/$2|{{int:contribslink}}]]) кереткән [[:$1]] һуңғы үҙгәртеүҙәрҙе кире алыу мөмкин түгел; башҡа ҡатнашыусы был битте мөхәррирләгән йәки үҙгәртеүҙәрҙе кире алған инде.\n\nҺуңғы үҙгәртеүҙәрҙе [[User:$3|$3]] ([[User talk:$3| фекер алышыу]]{{int:pipe-separator}}[[Special:Contributions/$3|{{int:contribslink}}]]) кереткән.", "editcomment": "Үҙгәртеүҙең тасуирламаһы $1 ине.", "revertpage": "[[Special:Contributions/$2|$2]] ([[User talk:$2|фекер алышыу]]) уҙгәртеүҙәре [[User:$1|$1]] өлгөһөнә ҡайтарылды", "revertpage-nouser": "(Ҡатнашыусының исеме йәшерелгән) үҙгәртеүҙәре {{GENDER:$1|[[User:$1|$1]]}}өлгөһөнә ҡайтарылды", "rollback-success": "{{GENDER:$3|$1}} үҙгәртеүҙәре кире алынды; {{GENDER:$4|$2}} версияһына ҡайтарылды.", + "rollback-success-notify": "Төҙәтеүҙәр кире тейәлгән $1; һуңғы $2 версияға кире ҡайтыу. [$3 Үҙгәрештәрҙе күрһәтеү]", "sessionfailure-title": "Сеанс хатаһы", "sessionfailure": "Хәҙерге сеанста хаталар килеп сыҡҡан, булырға тейеш;\n\"сеансты баҫып алыу\"ға юл ҡуймау өсөн был ғәмәл үтәлмәне.\nАлдағы биткә кире ҡайтығыҙ, битте яңыртығыҙ һәм яңынан ҡабатлап ҡарағыҙ.", "changecontentmodel": "Биттең контент моделен мөхәррирләү", @@ -2163,6 +2177,8 @@ "changecontentmodel-success-text": "[[:$1]] эстәлек моделе үҙгәртелде", "changecontentmodel-cannot-convert": "[[:$1]] эстәлеге $2 тибына үҙгәртелә алмай", "changecontentmodel-nodirectediting": "$1 эстәлеге моделен тураға мөхәррирләп булмай", + "changecontentmodel-emptymodels-title": "Йөкмәткенең рөхсәтле төрҙәре юҡ", + "changecontentmodel-emptymodels-text": "[[:$1]]тағы йөкмәтке башҡа бер төргә лә үҙгәрә алмай.", "log-name-contentmodel": "Эстәлек моделен үҙгәртеүҙәр журналы", "log-description-contentmodel": "Бында биттең эстәлек моделенең үҙгәртеүҙәре һәм стандарт эстәлек моделенән айырмалы модель буйынса төҙөлгән биттәр күрһәтелгән.", "logentry-contentmodel-new": "$1 $3 {{GENDER:$2|}} битен булдырҙы, стандарт булмаған «$5» моделе ҡулланылды.", @@ -2175,6 +2191,9 @@ "modifiedarticleprotection": "\"[[$1]]\" битенең һаҡлау дәрәжәһен үҙгәрткән", "unprotectedarticle": "«[[$1]]» битенән һаҡлау алынды", "movedarticleprotection": "һаҡлау көйләүҙәрен «[[$2]]» битенән «[[$1]]» битенә күсергән", + "protectedarticle-comment": "[[$1]]тигән битте {{GENDER:$2||а}} һаҡланы", + "modifiedarticleprotection-comment": "[[$1]] өсөн {{GENDER:$2||а}}һаҡланыу кимәлен үҙгәртте", + "unprotectedarticle-comment": "«[[$1]]»нан {{GENDER:$2||а}} һаҡланыуы алынды", "protect-title": "\"$1\" битенең һаҡлау дәрәжәһен үҙгәртеү", "protect-title-notallowed": "\"$1\" битенең һаҡлау дәрәжәһен байҡау", "prot_1movedto2": "[[$1]] битенең исемен [[$2]] тип үҙгәрткән", @@ -2237,6 +2256,7 @@ "undeletehistorynoadmin": "Мәҡәлә юйылған.\nТүбәндә юйыу сәбәптәре һәм мәҡәләне юйғанға тиклем мөхәррирләүсе ҡатнашыусылар исемлеге килтерелгән. \nЮйылған мәҡәләне хакимдәр генә ҡарай ала.", "undelete-revision": "$1 битенең $3 ҡатнашыусыһының ($4 $5 мөхәррирләгән) юйылған өлгөһө:", "undeleterevision-missing": "Был өлгө дөрөҫ түгел йәки бөтөнләй юҡ.\nҺеҙ дөрөҫ булмаған һылтанма аша кергәнһегеҙ йәки был өлгө архивтан юйылған, булырға тейеш.", + "undeleterevision-duplicate-revid": "$1 {{PLURAL:$1|версия|версиялар}} терелтелмәйәсәк, сөнки {{PLURAL:$1|ул|улар}} rev_id инде ҡулланыла.", "undelete-nodiff": "Алдағы өлгө табылманы.", "undeletebtn": "Тергеҙергә", "undeletelink": "ҡарарға/тергеҙергә", @@ -2249,6 +2269,7 @@ "undelete-search-title": "Юйылған биттәрҙе эҙләү", "undelete-search-box": "Юйылған биттәрҙе эҙләү", "undelete-search-prefix": "Ошолай башланған биттәрҙе күрһәтергә:", + "undelete-search-full": "Шундай атамалары булған биттәрҙе күрһәтергә:", "undelete-search-submit": "Эҙләү", "undelete-no-results": "Юйыу яҙмалары архивында кәрәкле биттәр юҡ.", "undelete-filename-mismatch": "$1 ваҡыт билдәһе менән файл өлгөһөн тергеҙеү мөмкин түгел: файл исеме тап килмәй", @@ -2293,6 +2314,7 @@ "sp-contributions-username": "Ҡулланыусының IP-адресы йәки исеме:", "sp-contributions-toponly": "Һуңғы өлгөләрҙе генә күрһәтергә", "sp-contributions-newonly": "Яңы бит яһаған төҙәтеүҙәрҙе генә күрһәтергә", + "sp-contributions-hideminor": "Әҙ төҙәтеүҙәрҙе йәшерергә", "sp-contributions-submit": "Эҙлә", "whatlinkshere": "Бында һылтанмалар", "whatlinkshere-title": "«$1» битенә һылтанған биттәр", @@ -2354,6 +2376,13 @@ "unblocked-id": "$1 биге алынған", "unblocked-ip": "[[Special:Contributions/$1|$1]] блоктан азат ителде", "blocklist": "Тыйылған ҡатнашыусылар", + "autoblocklist": "Автоблоклауҙар", + "autoblocklist-submit": "Табыу", + "autoblocklist-legend": "Автоблокировкалар исемлеге", + "autoblocklist-localblocks": "{{PLURAL:$1|Локаль автоблокировка|Локаль автоблокировкалар}}", + "autoblocklist-total-autoblocks": "Автоблоктар барлығы: $1", + "autoblocklist-empty": "Автоблокировкалар исемлеге буш.", + "autoblocklist-otherblocks": "{{PLURAL:$1|Башҡа автоблокировка|Башҡа автоблокировкалар}}", "ipblocklist": "Тыйылған ҡатнашыусылар", "ipblocklist-legend": "Бикләнгән ҡатнашыусыны эҙләү", "blocklist-userblocks": "Иҫәп яҙыуҙарын бикләүҙе йәшер", @@ -2415,6 +2444,7 @@ "proxyblockreason": "Һеҙҙең IP адресығыҙ бикләнгән, сөнки ул — асыҡ прокси.\nЗинһар, Интернет менән тәъмин итеүсегеҙгә йәки ярҙам хеҙмәтенә мөрәжәғәт итегеҙ һәм уларға был едти хәүефһеҙлек хатаһы тураһында хәбәр итегеҙ.", "sorbsreason": "Һеҙҙең IP адресығыҙ {{SITENAME}} проекты ҡулланған DNSBL исемлегендә асыҡ прокси тип иҫәпләнә.", "sorbs_create_account_reason": "Һеҙҙең IP адресығыҙ {{SITENAME}} проекты ҡулланған DNSBL исемлегендә асыҡ прокси тип иҫәпләнә.\nҺеҙ иҫәп яҙмаһы булдыра алмайһығыҙ.", + "softblockrangesreason": "Һеҙҙең IP-адрестан аноним төҙәтеүҙәр тыйылған ($1). Зинһар, системаға инегеҙ.", "xffblockreason": "X-Forwarded-For атамаһы эсенә ингән һәм һеҙҙекеме, һеҙ ҡулланған прокси-серверҙыҡымы булған IP-адрес бикләнде. Бикләүҙең тәүсәбәбе ошо ине: $1", "cant-see-hidden-user": "Һеҙ бикләргә тырышҡан ҡатнашыусы әлеге ваҡытта бикләнгән һәм йәшерелгән.\nҠатнашыусыларҙы йәшереү хоҡуғығыҙ булмағанға күрә, һеҙ был бикләүҙе ҡарай йәки үҙгәртә алмайһығыҙ.", "ipbblocked": "Үҙегеҙ бикләнгән ваҡытта һеҙ башҡа ҡатнашыусыларҙы бикләй йәки бикте ала алмайһығыҙ.", @@ -2450,6 +2480,8 @@ "cant-move-to-user-page": "Һеҙҙең битте ҡатнашыусы бите итеп үҙгәртергә хоҡуғығыҙ юҡ (ҡатнашыусы биттәренән тыш).", "cant-move-category-page": "Һеҙҙең категория исемен үҙгәртергә хоҡуғығыҙ юҡ", "cant-move-to-category-page": "Һеҙҙең битте категория бите тип төҙәтергә хоҡуғығыҙ юҡ.", + "cant-move-subpages": "Һеҙгә бәләкәй биттәрҙең исемен алыштырырға рөхсәт юҡ.", + "namespace-nosubpages": "«$1» исемдәр яланы яңы бит булдырырға рәхсәт итмәй.", "newtitle": "Яңы атама", "move-watch": "Был битте күҙәтеү исемлегенә өҫтәргә", "movepagebtn": "Биттең исемен үҙгәртергә", @@ -2470,6 +2502,7 @@ "movelogpagetext": "Түбәндә — исемдәре үҙгәртелгән биттәр.", "movesubpage": "{{PLURAL:$1|ярҙамсы бит}}", "movesubpagetext": "Был биттә $1 {{PLURAL:$1|ярҙамсы бит}}.", + "movesubpagetalktext": "Фекер алышыу битендә $1 {{PLURAL: $ 1 | бәләкәй бит| бәләкәй биттәр}} бар. Улар аҫта күрһәтелгән.", "movenosubpage": "Был биткә бер бит тә кермәгән.", "movereason": "Сәбәп:", "revertmove": "кирегә", @@ -2599,6 +2632,7 @@ "tooltip-pt-mycontris": "{{GENDER:|Һеҙҙең}} төҙәтеүҙәр исемлеге", "tooltip-pt-anoncontribs": "Был IP-адрестан яһалған төҙәтеүҙәр", "tooltip-pt-login": "Бында теркәлеү үтергә була, әммә был эш мәжбүри түгел", + "tooltip-pt-login-private": "Был викиҙы ҡулланыу өсөн һеҙгә инергә кәрәк.", "tooltip-pt-logout": "Сығырға", "tooltip-pt-createaccount": "Мотлаҡ булмаһа ла, Һеҙгә иҫәп яҙмаһы төҙөргә һәм системала танылырға тәҡдим итәбеҙ", "tooltip-ca-talk": "Биттең эстәлеге тураһында фекерләшеү", @@ -2689,7 +2723,9 @@ "pageinfo-length": "Бит оҙонлоғо (байттарҙа)", "pageinfo-article-id": "Бит идентификаторы", "pageinfo-language": "Бит эстәлегенең теле", + "pageinfo-language-change": "Үҙгәртергә", "pageinfo-content-model": "Бит эстәлегенең моделе", + "pageinfo-content-model-change": "Үҙгәрт", "pageinfo-robot-policy": "Эҙләү роботтары тарафынан индексацияланыу", "pageinfo-robot-index": "Рөхсәт ителгән", "pageinfo-robot-noindex": "Рөхсәт ителмәй", @@ -2725,6 +2761,7 @@ "pageinfo-category-pages": "Биттәр һаны", "pageinfo-category-subcats": "Категория бүлемдәре һаны", "pageinfo-category-files": "Файлдар һаны", + "pageinfo-user-id": "Ҡатнашыусыны раҫлау", "markaspatrolleddiff": "Тикшерелгән, тип билдәләргә", "markaspatrolledtext": "Бил битте тикшерелгән, тип билдәләргә", "markaspatrolledtext-file": "Был өлөгөнө патрулләнгән тип ҡуйырға", @@ -2741,6 +2778,8 @@ "patrol-log-header": "Был — тикшерелгән өлгөләр яҙмалары журналы.", "log-show-hide-patrol": "тикшереү яҙмалары журналын $1", "log-show-hide-tag": "$1 билдәләр журналы", + "confirm-markpatrolled-button": "Яҡшы", + "confirm-markpatrolled-top": "$2 битенең $3 версияһын тикшерелгән тип һанарғамы?", "deletedrevision": "Иҫке $1 өлгөһө юйылды", "filedeleteerror-short": "Файлды юйыу хатаһы: $1", "filedeleteerror-long": "Файлды юйыу ваҡытында хаталар килеп сыҡты:\n\n$1", @@ -2778,9 +2817,13 @@ "newimages-summary": "Был махсус бит һуңғы тейәлгән файлдарҙы күрһәтә.", "newimages-legend": "Һайлау", "newimages-label": "Файл исеме (йәки өлөшө):", + "newimages-user": "Ҡатнашыусының исеме һәм IP-адресы", + "newimages-newbies": "Яңы иҫәп яҙмалары индергән өлөштө генә күрһәтергә", "newimages-showbots": "Роботтан тейегәнде күрһәтергә", "newimages-hidepatrolled": "Патрулләнгән күсереүҙәрҙе йәшерергә", + "newimages-mediatype": "Медиа төрө:", "noimages": "Рәсемдәр юҡ.", + "gallery-slideshow-toggle": "Миниатюраларҙы алыштырырға", "ilsubmit": "Эҙләү", "bydate": "булдырыу көнө буйынса", "sp-newimages-showfrom": "$1 $2 ваҡытынан башлап яңы файлдарҙы күрһәтергә", @@ -3169,6 +3212,10 @@ "confirmemail_body_set": "Кемдер (бәлки, һеҙҙер) $1 IP-адресынан \n{{SITENAME}} проектында \"$2\" иҫәп яҙмаһының электрон почта адресы итеп ошо адресты күрһәткән.\n\nБыл иҫәп яҙмаһы ысынлап та һеҙҙеке икәнен раҫлау һәм {{SITENAME}} сайтынан хат ебәреү мөмкинлектәрен яңынан тоҡандырыу өсөн, браузерығыҙҙа түбәндәге һылтанманы асығыҙ:\n\n$3\n\nӘгәр иҫәп яҙмаһы һеҙҙеке *түгел* икән,\nэлектрон почта адресын раҫлауҙы үткәрмәү өсөн түбәндәге һылтанманы асығыҙ:\n\n$5\n\nБыл раҫлау коды $4 ғәмәлдән сыға.", "confirmemail_invalidated": "Электрон почта адресын раҫлау туҡтатылды", "invalidateemail": "Электрон почта адресын раҫлауҙы туҡтатыу", + "notificationemail_subject_changed": "{{SITENAME}} өсөн электрон почтаһы адресы үҙгәртелгән", + "notificationemail_subject_removed": "{{SITENAME}} теркәлгән электрон почта адресы юйылған", + "notificationemail_body_changed": "Кемдер, бәлки һеҙҙер, $1 IP-адресынан, {{SITENAME}} \"$3\" да \"$2\" иҫәп яҙмаһының электрон почтаһы адресын үҙгәрткән.\n\nӘгәр быны һеҙ эшләмәһәгеҙ, тиҙ генә сайттың администраторына белгертегеҙ.", + "notificationemail_body_removed": "Кемдер, бәлки һеҙҙер, $1 IP-адресынан, {{SITENAME}} та \"$2\" иҫәп яҙмаһының электрон почтаһы адресын юйған.\n\nӘгәр быны һеҙ эшләмәһәгеҙ, тиҙ генә сайттың администраторына белгертегеҙ.", "scarytranscludedisabled": "[Интервики индереү мөмкинлеге һүндерелгән]", "scarytranscludefailed": "[$1 ҡалыбына мөрәжәғәт итеү хатаһы]", "scarytranscludefailed-httpstatus": "[$1 өсөн ҡалып алып булманы: HTTP $2]", @@ -3177,6 +3224,7 @@ "confirmrecreate": "[[User:$1|$1]] ([[User talk:$1|фекер алышыу]]) был битте һеҙ мөхәррирләй башлағандан һуң юйған, сәбәбе:\n: ''$2''\nЗинһар, был битте ысынлап та яңынан булдырырға теләүегеҙҙе раҫлағыҙ.", "confirmrecreate-noreason": "[[User:$1|$1]] ([[User talk:$1|фекер алышыу]]) һеҙ был битте мөхәррирләй башлағандан һуң юйған. Зинһар, был битте ысынлап та яңынан яһарға теләүегеҙҙе раҫлағыҙ.", "recreate": "Яңынан булдырырға", + "confirm-purge-title": "Был биттең кешын таҙартыу", "confirm_purge_button": "Тамам", "confirm-purge-top": "Был биттең кэшын таҙартырғамы?", "confirm-purge-bottom": "Биттең кэшы таҙартылғандан һун, уның һуңғы өлгөһө күрһәтеләсәк.", diff --git a/languages/i18n/be-tarask.json b/languages/i18n/be-tarask.json index 7927eb922e..eed1f17b6a 100644 --- a/languages/i18n/be-tarask.json +++ b/languages/i18n/be-tarask.json @@ -1315,7 +1315,6 @@ "rcfilters-restore-default-filters": "Аднавіць фільтры па змоўчаньні", "rcfilters-clear-all-filters": "Ачысьціць усе фільтры", "rcfilters-show-new-changes": "Праглядзець найноўшыя зьмены", - "rcfilters-previous-changes-label": "Раней прагледжаныя зьмены", "rcfilters-search-placeholder": "Фільтар апошніх зьменаў (праглядзець або пачніце друкаваць)", "rcfilters-invalid-filter": "Няслушны фільтар", "rcfilters-empty-filter": "Няма актыўных фільтраў. Паказаны ўвесь унёсак.", @@ -1328,7 +1327,7 @@ "rcfilters-filterlist-noresults": "Фільтры ня знойдзеныя", "rcfilters-noresults-conflict": "Няма вынікаў, бо крытэры пошуку супярэчаць адзін аднаму", "rcfilters-state-message-subset": "Гэты фільтар ня мае эфэкту, бо яго вынікі ўключаныя ў вынікі больш {{PLURAL:$2|шырокага фільтру|шырокіх фільтраў}} (паспрабуйце вылучэньне, каб вызначыць яго): $1", - "rcfilters-state-message-fullcoverage": "Выбар усіх фільтраў у групе — тое ж самае, што і выбар ніводнага, адпаведна, гэты фільтар ня мае эфэкту. Група ўключае: $1", + "rcfilters-state-message-fullcoverage": "Выбар усіх фільтраў у гэтай групе — тое ж самае, што і выбар ніводнага, адпаведна, гэты фільтар ня мае эфэкту. Група ўключае: $1", "rcfilters-filtergroup-authorship": "Аўтарства ўнёску", "rcfilters-filter-editsbyself-label": "Зьмены, зробленыя вамі", "rcfilters-filter-editsbyself-description": "Ваш уласны ўнёсак.", @@ -1775,6 +1774,8 @@ "pageswithprop-legend": "Старонкі з уласьцівасьцямі старонак", "pageswithprop-text": "На гэтай старонцы адлюстроўваюцца старонкі, якія ўжываюць пэўную ўласьцівасьць старонкі.", "pageswithprop-prop": "Імя ўласьцівасьці:", + "pageswithprop-reverse": "Сартаваць у адваротным парадку", + "pageswithprop-sortbyvalue": "Сартаваць паводле значэньня ўласьцівасьці", "pageswithprop-submit": "Паказаць", "pageswithprop-prophidden-long": "доўгае тэкставае значэньне ўласьцівасьці схавана ($1)", "pageswithprop-prophidden-binary": "двайковае значэньне ўласьцівасьці схавана ($1)", diff --git a/languages/i18n/bg.json b/languages/i18n/bg.json index f7ccc4d82d..7d3f435037 100644 --- a/languages/i18n/bg.json +++ b/languages/i18n/bg.json @@ -40,7 +40,8 @@ "Spas.Z.Spasov", "АдмиралАнимЕ", "Irus", - "Kareyac" + "Kareyac", + "ShockD" ] }, "tog-underline": "Подчертаване на препратките:", @@ -400,6 +401,7 @@ "virus-unknownscanner": "непознат антивирус:", "logouttext": "Излязохте от системата.\n\nОбърнете внимание, че някои страници все още ще се показват така, сякаш сте влезли, докато не изтриете кеша на браузъра.", "cannotlogoutnow-title": "Не може да излезете сега", + "cannotlogoutnow-text": "Излизането не е възможно, когато се използва $1.", "welcomeuser": "Здравейте, $1!", "welcomecreation-msg": "Вашата сметка беше създадена.\nМожете да промените [[Special:Preferences|настройките на {{SITENAME}}]] според предпочитанията си.", "yourname": "Потребителско име:", @@ -418,7 +420,9 @@ "cannotlogin-title": "Не може да влезете в", "cannotlogin-text": "Влизането в системата не е възможно.", "cannotloginnow-title": "Не може да влезете сега", + "cannotloginnow-text": "Влизането не е възможно, когато се използва $1.", "cannotcreateaccount-title": "Невъзможно е да бъде създадена потребителска сметка", + "cannotcreateaccount-text": "Директното създаване на сметки не е позволено на това Уики.", "yourdomainname": "Вашият домейн:", "password-change-forbidden": "Не можете да променяте пароли в това уики.", "externaldberror": "Възникна грешка в базата от данни при външното удостоверяване, или не ви е позволено да обновявате външната си сметка.", @@ -691,7 +695,7 @@ "permissionserrorstext": "Нямате правата да извършите това действие по {{PLURAL:$1|следната причина|следните причини}}:", "permissionserrorstext-withaction": "Нямате разрешение за $2 поради {{PLURAL:$1|следната причина|следните причини}}:", "recreate-moveddeleted-warn": "Внимание: Създавате страница, която по-рано вече е била изтрита.\n\nОбмислете добре дали е уместно повторното създаване на страницата.\nЗа ваша информация по-долу е посочена причината за предишното изтриване на страницата:", - "moveddeleted-notice": "Тази страница е била изтрита.\nЗа справка, по-долу са включени извадки от дневниците на изтриванията и преместванията.", + "moveddeleted-notice": "Тази страница е изтрита.\nДневниците на изтриванията, защитите и преместванията е показан по-долу.", "log-fulllog": "Преглеждане на пълния дневник", "edit-hook-aborted": "Редакцията беше прекъсната от кука.\nНе беше посочена причина за това.", "edit-gone-missing": "Страницата не можа да се обнови.\nВероятно междувременно е била изтрита.", @@ -1397,7 +1401,7 @@ "filetype-unwanted-type": "„.$1“ е нежелан файлов формат.\n{{PLURAL:$3|Препоръчителният файлов формат е|Препоръчителните файлови формати са}} $2.", "filetype-banned-type": "'''„.$1“''' не {{PLURAL:$4|е позволен файлов формат|са позволени файлови формати}}. {{PLURAL:$3|Позволеният файлов формат е|Позволените файлови формати са}} $2.", "filetype-missing": "Файлът няма разширение (напр. „.jpg“).", - "empty-file": "Подаденият от вас файл беше празен.", + "empty-file": "Подаденият от вас файл е празен.", "file-too-large": "Подаденият от вас файл беше твърде голям.", "filename-tooshort": "Името на файла е твърде кратко.", "filetype-banned": "Този тип файл е забранен.", @@ -1896,7 +1900,7 @@ "watchlist-details": "{{PLURAL:$1|Една наблюдавана страница|$1 наблюдавани страници}} от списъка Ви за наблюдение (без беседи).", "wlheader-enotif": "Известяването по е-поща е включено.", "wlheader-showupdated": "Страниците, които са били променени след последния път, когато сте ги посетили, са показани в '''получер'''.", - "wlnote": "{{PLURAL:$1|Показана е последната промяна|Показани са последните $1 промени}} през {{PLURAL:$2|последния час|последните $2 часа}}, започвайки от от $3, $4.", + "wlnote": "{{PLURAL:$1|Показана е последната промяна|Показани са последните $1 промени}} през {{PLURAL:$2|последния час|последните $2 часа}}, започвайки от $3, $4.", "wlshowlast": "Показване на последните $1 часа $2 дни", "watchlist-hide": "Скриване", "watchlist-submit": "Показване", @@ -3181,6 +3185,7 @@ "compare-invalid-title": "Посоченото заглавие е невалидно.", "compare-title-not-exists": "Посоченото заглавие не съществува.", "compare-revision-not-exists": "Посочената версия не съществува.", + "diff-form": "'''формуляр'''", "dberr-problems": "Съжаляваме! Сайтът изпитва технически затруднения.", "dberr-again": "Изчакайте няколко минути и опитайте да презаредите.", "dberr-info": "(Няма достъп до базата от данни: $1)", @@ -3216,6 +3221,7 @@ "logentry-delete-delete": "$1 {{GENDER:$2|изтри}} страницата $3", "logentry-delete-delete_redir": "$1 {{GENDER:$2|изтри}} пренасочване $3 чрез препокриване", "logentry-delete-restore": "$1 {{GENDER:$2|възстанови}} страницата $3 ($4)", + "logentry-delete-event": "$1 {{GENDER:$2|промени}} видимостта на {{PLURAL:$5|едно събитие|$5 събития}} от дневника в $3: $4", "logentry-delete-revision": "$1 {{GENDER:$2|промени}} видимостта на {{PLURAL:$5|една редакция|$5 редакции}} в страница $3: $4", "logentry-delete-event-legacy": "$1 {{GENDER:$2|промени}} видимостта на събитията от дневниците за страница $3", "logentry-delete-revision-legacy": "$1 {{GENDER:$2|промени}} видимостта на версиите на страница $3", @@ -3224,6 +3230,9 @@ "revdelete-content-hid": "скрито съдържание", "revdelete-summary-hid": "скрито резюме на редакцията", "revdelete-uname-hid": "скрито потребителско име", + "revdelete-content-unhid": "показано съдържание", + "revdelete-summary-unhid": "показано резюме на редакцията", + "revdelete-uname-unhid": "показано потребителско име", "revdelete-restricted": "добавени ограничения за администраторите", "revdelete-unrestricted": "премахнати ограничения за администраторите", "logentry-block-block": "$1 {{GENDER:$2|блокира }} {{GENDER:$4|$3}} със срок на изтичане $5 $6", @@ -3241,6 +3250,8 @@ "logentry-newusers-create2": "$1 {{GENDER:$2|създаде}} потребителска сметка $3", "logentry-newusers-byemail": "$1 {{GENDER:$2|създаде}} потребителската сметка $3, като паролата за нея беше изпратена по е-поща", "logentry-newusers-autocreate": "Сметката $1 беше {{GENDER:$2|създадена}} автоматично", + "logentry-protect-protect": "\n$1 {{GENDER:$2|защити}} $3 $4", + "logentry-protect-protect-cascade": "$1 {{GENDER:$2|защити}} $3 $4 [каскадно]", "logentry-rights-rights": "$1 {{GENDER:$2|промени}} потребителската група на {{GENDER:$6|$3}} от $4 на $5", "logentry-rights-rights-legacy": "$1 {{GENDER:$2|промени}} потребителската група на $3", "logentry-rights-autopromote": "$1 е автоматично {{GENDER:$2|повишен|повишена}} от $4 до $5", diff --git a/languages/i18n/bho.json b/languages/i18n/bho.json index 3bd3da1dba..3ca3fd5caa 100644 --- a/languages/i18n/bho.json +++ b/languages/i18n/bho.json @@ -690,7 +690,7 @@ "permissionserrorstext-withaction": "नीचे दिहल {{PLURAL:$1|कारण|कारणन}} के चलते रउआँ के $2 के परमीशन नइखे:", "contentmodelediterror": "रउआँ एह अवतरण के संपादन नइखीं कर सकत काहें से कि एकर सामग्री मॉडल $1 बा जवन पन्ना के के वर्तमान मॉडल $2 से अलग बाटे।", "recreate-moveddeleted-warn": "चेतावनी: रउआँ एगो अइसन पन्ना दुबारा बनावे जा रहल बानी जेवन पहिले हटावल जा चुकल बा\n\nआपके ई बिचार क लेवे के चाहीं की आगे संपादन कइल ठीक बा की ना।\n\nसुविधा खातिर, ए पन्ना के हटवले आ स्थानांतरण के लॉग नीचे दिहल जात बा:", - "moveddeleted-notice": "ई पन्ना हटा दिहल गइल बा।\nसंदर्भ खातिर हटावे आ स्थानांतरण के लॉग नीचे दिहल जात बाटे।", + "moveddeleted-notice": "ई पन्ना हटा दिहल गइल बा।\nसंदर्भ खातिर हटवले, सुरक्षा आ स्थानांतरण के लॉग नीचे दिहल जात बाटे।", "moveddeleted-notice-recent": "माफ करीं, ई पन्ना हाले में हटा दिहल गइल बा (पछिला 24 घंटा के भीतर)।\nहटवले आ स्थानांतरण के लॉग हवाला खातिर नीचे दिहल जा रहल बा।", "log-fulllog": "पूरा लॉग देखीं", "edit-hook-aborted": "संपादन के हुक निरस्त क दिहलस।\nई कौनों कारन ना बतवलस।", @@ -915,6 +915,7 @@ "searchrelated": "संबंधित", "searchall": "सगरी", "showingresults": "नीचे देखावल जा रहल बा {{PLURAL:$1|'''1''' परिणाम|'''$1''' परिणाम}} #'''$2''' से शुरु होवे वाला।", + "search-showingresults": "{{PLURAL:$4|$1 के रिजल्ट $3|$3 में से $1 - $2 के रिजल्ट}}", "search-nonefound": "राउर खोज से मेल खात कौनों परिणाम नइखे मिलत", "powersearch-legend": "उन्नत खोज", "powersearch-ns": "सन्दर्भ में खोजीं", @@ -1632,6 +1633,7 @@ "metadata-help": "ए फाइल में एक्स्ट्रा जानकारी उपलब्ध बा, हो सकत बा कि ई डिजिटल कैमरा या स्कैनर से लेवल गइल होखे। अगर ई वर्तमान फाइल एकरी ओरिजनल फाइल से सुधार के बनल बा त हो सकेला कुछ जानकारी ना लउके।", "metadata-expand": "विस्तृत विवरण देखाईं", "metadata-collapse": "विस्तृत विवरण छुपाँईं", + "metadata-fields": "एह सनेसा में बतावल गइल इमेज मेटाडेटा फील्ड सभ इमेज के पन्ना पर के डिस्प्ले में शामिल कइल जइहें जब मेटाडेटा सारणी के सिकुड़ा दिहल गइल होखी।\nबाकी सगरी डिफाल्ट रूप से छिपल रहिहें।\n* make\n* model\n* datetimeoriginal\n* exposuretime\n* fnumber\n* isospeedratings\n* focallength\n* artist\n* copyright\n* imagedescription\n* gpslatitude\n* gpslongitude\n* gpsaltitude", "exif-imagewidth": "चौड़ाई", "exif-imagelength": "ऊँचाई", "exif-bitspersample": "अवयव प्रति बीट", diff --git a/languages/i18n/bn.json b/languages/i18n/bn.json index d45d38eb9a..28755d8053 100644 --- a/languages/i18n/bn.json +++ b/languages/i18n/bn.json @@ -722,7 +722,7 @@ "contentmodelediterror": "আপনি এই পুনর্বিবেচনা সম্পাদনা করতে পারবেন না কারণ এর বিষয়বস্তু মডেল $1, যা বর্তমান বিষয়বস্তু মডেল $2-এর থেকে ভিন্ন।", "recreate-moveddeleted-warn": "'''সতর্কীকরণ: আপনি এমন একটি পাতা পুনরায় তৈরি করছেন যা পূর্বে অপসারণ করা হয়েছিল।'''\n\nআপনি পাতাটি সম্পাদনা চালিয়ে যাওয়া ঠিক হবে কিনা, তা বিবেচনা করুন।\nআপনার সুবিধার্থে পাতাটির অপলুপ্তি লগ এখানে দেয়া হলো:", "moveddeleted-notice": "এই পাতাটি অপসারণ করা হয়েছে।\nসূত্র হিসেবে নিচে এ পাতার অবলুপ্তি লগ দেওয়া হলো।", - "moveddeleted-notice-recent": "দুঃখিত, এই পাতাটি সাম্প্রতি অপসারিত হয়েছে (সর্বশেষ ২৪ ঘণ্টায়)।\nসূত্র হিসেবে নিচে এই পাতা অপসারণ ও স্থানান্তর লগ দেয়া হয়েছে।", + "moveddeleted-notice-recent": "দুঃখিত, এই পাতাটি সাম্প্রতি অপসারিত হয়েছে (সর্বশেষ ২৪ ঘণ্টায়)।\nসূত্র হিসেবে নিচে এই পাতা অপসারণ, সুরক্ষা ও স্থানান্তর লগ দেয়া হয়েছে।", "log-fulllog": "সম্পূর্ণ লগ দেখুন", "edit-hook-aborted": "হূক দ্বারা সম্পাদনা পরিত্যক্ত হয়েছে।\nএর কোন ব্যাখ্যা নাই।", "edit-gone-missing": "পাতাটি হালনাগাদ হয়নি।\nসম্ভবতঃ পাতাটি মুছে ফেলা হয়েছে।", @@ -3571,7 +3571,7 @@ "compare-invalid-title": "আপনার প্রদেয় শিরোনামটি সঠিক নয়।", "compare-title-not-exists": "আপনার কাঙ্ক্ষিত শিরোনামটি নেই।", "compare-revision-not-exists": "আপনার কাঙ্ক্ষিত সংস্করণটি নেই।", - "diff-form": "একটি '''ফরম'''", + "diff-form": "পার্থক্য", "permanentlink-submit": "এই সংশোধনে যান", "dberr-problems": " দুঃখিত! এই সাইটটি বর্তমানে কারীগরী অসুবিধার মুখোমুখি হয়েছে।", "dberr-again": "কয়েক মিনিট পর পুনরায় পরিদর্শনের চেষ্টা করুন।", diff --git a/languages/i18n/bs.json b/languages/i18n/bs.json index 1bce36fe01..b8933351cb 100644 --- a/languages/i18n/bs.json +++ b/languages/i18n/bs.json @@ -1713,7 +1713,7 @@ "filedelete-intro-old": "Brišete verziju datoteke '''[[Media:$1|$1]]''' od [$4 $3, $2].", "filedelete-comment": "Razlog:", "filedelete-submit": "Obriši", - "filedelete-success": "'''$1''' je obrisano.", + "filedelete-success": "Datoteka $1 je obrisana.", "filedelete-success-old": "Verzija datoteke '''[[Media:$1|$1]]''' od $3, $2 je obrisana.", "filedelete-nofile": "'''$1''' ne postoji.", "filedelete-nofile-old": "Ne postoji arhivirana verzija '''$1''' sa navedenim atributima.", diff --git a/languages/i18n/ca.json b/languages/i18n/ca.json index c6c91c58a8..d1acb7bfe0 100644 --- a/languages/i18n/ca.json +++ b/languages/i18n/ca.json @@ -86,7 +86,7 @@ "tog-shownumberswatching": "Mostra el nombre d'usuaris que hi vigilen", "tog-oldsig": "La vostra signatura actual:", "tog-fancysig": "Tractar la signatura com a text wiki (sense enllaç automàtic)", - "tog-uselivepreview": "Utilitza la previsualització automàtica", + "tog-uselivepreview": "Mostra previsualitzacions sense recarregar la pàgina", "tog-forceeditsummary": "Avisa'm en deixar el resum de la modificació en blanc", "tog-watchlisthideown": "Amaga les meues edicions de la llista de seguiment", "tog-watchlisthidebots": "Amaga de la llista de seguiment les edicions fetes per usuaris bots", @@ -750,8 +750,8 @@ "permissionserrorstext-withaction": "No teniu permís per a $2, {{PLURAL:$1|pel motiu següent|pels motius següents}}:", "contentmodelediterror": "No podeu modificar aquesta revisió perquè el seu model de contingut és $1, que difereix del model de contingut actual de la pàgina $2.", "recreate-moveddeleted-warn": "'''Avís: esteu creant una pàgina que s'ha suprimit prèviament.'''\n\nHauríeu de considerar si és realment necessari continuar editant aquesta pàgina.\nA continuació s'ofereix el registre de supressions i de reanomenaments de la pàgina:", - "moveddeleted-notice": "S'ha suprimit aquesta pàgina.\nA continuació us mostrem com a referència el registre d'esborraments i reanomenaments de la pàgina.", - "moveddeleted-notice-recent": "S’ha suprimit aquesta pàgina recentment (en les últimes 24 hores).\nA continuació us mostrem com a referència el registre de supressions i reanomenaments de la pàgina.", + "moveddeleted-notice": "S'ha suprimit aquesta pàgina.\nA continuació us mostrem com a referència el registre d'esborraments, proteccions i reanomenaments de la pàgina.", + "moveddeleted-notice-recent": "S’ha suprimit aquesta pàgina recentment (en les últimes 24 hores).\nA continuació us mostrem com a referència el registre de supressions, proteccions i reanomenaments de la pàgina.", "log-fulllog": "Veure tot el registre", "edit-hook-aborted": "Modificació avortada pel hook.\nNo s'ha donat cap explicació.", "edit-gone-missing": "No s'ha pogut actualitzar la pàgina.\nSembla haver estat esborrada.", @@ -1020,7 +1020,7 @@ "prefs-editwatchlist-clear": "Neteja la llista de seguiment", "prefs-watchlist-days": "Nombre de dies per mostrar en la llista de seguiment:", "prefs-watchlist-days-max": "Màxim $1 {{PLURAL:$1|dia|dies}}", - "prefs-watchlist-edits": "Nombre de modificacions a mostrar en una llista estesa de seguiment:", + "prefs-watchlist-edits": "Nombre màxim de modificacions a mostrar en la llista de seguiment:", "prefs-watchlist-edits-max": "Nombre màxim: 1000", "prefs-watchlist-token": "Testimoni de llista de seguiment:", "prefs-misc": "Altres preferències", @@ -1337,9 +1337,16 @@ "recentchanges-legend-newpage": "{{int:recentchanges-label-newpage}} (vegeu també la [[Special:NewPages|llista de pàgines noves]])", "recentchanges-legend-plusminus": "(''±123'')", "recentchanges-submit": "Mostra", + "rcfilters-legend-heading": "Llista d'abreviatures:", + "rcfilters-other-review-tools": "Altres eines de supervisió", "rcfilters-group-results-by-page": "Agrupa els resultats per pàgina", + "rcfilters-grouping-title": "Agrupació", "rcfilters-activefilters": "Filtres actius", + "rcfilters-advancedfilters": "Filtres avançats", + "rcfilters-days-title": "Darrers dies", "rcfilters-hours-title": "Hores recents", + "rcfilters-days-show-days": "$1 {{PLURAL:$1|dia|dies}}", + "rcfilters-days-show-hours": "$1 {{PLURAL:$1|hora|hores}}", "rcfilters-quickfilters": "Filtres desats", "rcfilters-quickfilters-placeholder-title": "Encara no s’ha desat cap enllaç", "rcfilters-savedqueries-defaultlabel": "Filtres desats", @@ -1347,6 +1354,7 @@ "rcfilters-savedqueries-setdefault": "Defineix per defecte", "rcfilters-savedqueries-remove": "Suprimeix", "rcfilters-savedqueries-new-name-label": "Nom", + "rcfilters-savedqueries-new-name-placeholder": "Descriviu el propòsit del filtre", "rcfilters-savedqueries-apply-label": "Crea un filtre", "rcfilters-savedqueries-cancel-label": "Cancel·la", "rcfilters-savedqueries-add-new-title": "Desa els paràmetres de filtres actuals", @@ -1356,7 +1364,7 @@ "rcfilters-invalid-filter": "Filtre no vàlid", "rcfilters-empty-filter": "No hi ha cap filtre actiu. Es mostren totes les contribucions.", "rcfilters-filterlist-title": "Filtres", - "rcfilters-filterlist-whatsthis": "Què és això?", + "rcfilters-filterlist-whatsthis": "Com funciona això?", "rcfilters-highlightbutton-title": "Ressalta els resultats", "rcfilters-highlightmenu-title": "Selecciona un color", "rcfilters-highlightmenu-help": "Seleccioneu un color per ressaltar la propietat", @@ -1409,7 +1417,7 @@ "rcfilters-filter-categorization-description": "Registres de pàgines afegides o suprimides de les categories.", "rcfilters-filter-logactions-label": "Accions registrades", "rcfilters-filter-logactions-description": "Accions administratives, creacions de comptes, eliminacions de pàgines, càrregues…", - "rcfilters-filtergroup-lastRevision": "Darrera revisió", + "rcfilters-filtergroup-lastRevision": "Darreres revisions", "rcfilters-filter-lastrevision-label": "Darrera revisió", "rcfilters-filter-lastrevision-description": "El canvi més recent a una pàgina.", "rcfilters-filter-previousrevision-label": "Revisions anteriors", diff --git a/languages/i18n/ckb.json b/languages/i18n/ckb.json index e6c038a70a..b22898c8e1 100644 --- a/languages/i18n/ckb.json +++ b/languages/i18n/ckb.json @@ -2805,6 +2805,7 @@ "compare-rev2": "پێداچوونەوەی ٢", "compare-submit": "ھەڵسەنگاندن", "compare-invalid-title": "ئەم سەردێڕە دەستنیشانت کردووە نادروستە.", + "diff-form": "یەک '''فۆرم'''", "dberr-problems": "ببورە! ئەم ماڵپەڕە ئێستا خەریک ئەزموونێکی کێشەی تەکنیکیە.", "dberr-again": "چەن خولک ڕاوەستە و نوێی بکەوە.", "dberr-info": "(ناتوانیت بگەیت بە بنکەدراو: $1)", @@ -2856,6 +2857,7 @@ "logentry-rights-rights": "$1 ئەندامێتیی {{GENDER:$6|$3}}ی لە $4 بۆ $5 {{GENDER:$2|گۆڕی}}", "logentry-upload-upload": "$1 $3ی {{GENDER:$2|بار کرد}}", "logentry-upload-overwrite": "$1 وەشانێکی نوێی $3ی {{GENDER:$2|بار کرد}}", + "logentry-managetags-create": "$1 تاگی \"$4\"ی دروست کرد", "rightsnone": "(ھیچ)", "feedback-back": "گەڕانەوە", "feedback-cancel": "ھەڵوەشاندنەوە", diff --git a/languages/i18n/cs.json b/languages/i18n/cs.json index ac75826d72..a4b923fee0 100644 --- a/languages/i18n/cs.json +++ b/languages/i18n/cs.json @@ -1337,7 +1337,6 @@ "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-previous-changes-label": "Dříve prohlédnuté změny", "rcfilters-search-placeholder": "Filtrovat nedávné změny (prohlížejte nebo začněte psát)", "rcfilters-invalid-filter": "Neplatný filtr", "rcfilters-empty-filter": "Žádné aktivní filtry. Zobrazeny jsou všechny příspěvky.", diff --git a/languages/i18n/csb.json b/languages/i18n/csb.json index 6a78683280..425e17fc97 100644 --- a/languages/i18n/csb.json +++ b/languages/i18n/csb.json @@ -146,7 +146,7 @@ "index-category": "Indeksowóné starnë", "noindex-category": "Nieindeksowóné starnë", "broken-file-category": "Starnë lënkùjącé do nieegzystëjących lopków", - "about": "Ò serwise", + "about": "Ò serwisu", "article": "Artikel", "newwindow": "(òtmëkô sã w nowim òknie)", "cancel": "Anulëje", diff --git a/languages/i18n/cy.json b/languages/i18n/cy.json index d4ad69ffee..85449b7d2e 100644 --- a/languages/i18n/cy.json +++ b/languages/i18n/cy.json @@ -49,13 +49,14 @@ "tog-shownumberswatching": "Dangos y nifer o ddefnyddwyr sy'n gwylio", "tog-oldsig": "Eich llofnod cyfredol:", "tog-fancysig": "Trin y llofnod fel testun wici (heb gyswllt wici awtomatig)", - "tog-uselivepreview": "Defnyddio rhagolwg byw", + "tog-uselivepreview": "Defnyddio rhagolwg heb ail-lwytho'r ddalen", "tog-forceeditsummary": "Tynnu fy sylw pan adawaf flwch crynodeb golygu yn wag", "tog-watchlisthideown": "Cuddio fy ngolygiadau fy hunan yn fy rhestr wylio", "tog-watchlisthidebots": "Cuddio golygiadau bot yn fy rhestr wylio", "tog-watchlisthideminor": "Cuddio golygiadau bychain rhag y rhestr wylio", "tog-watchlisthideliu": "Cuddio golygiadau gan ddefnyddwyr mewngofnodedig rhag y rhestr wylio", "tog-watchlistreloadautomatically": "Ail-lwyther y Rhestr wylio yn otomatigpan newider ffiltr (angen JavaScript)", + "tog-watchlistunwatchlinks": "Ychwanegwch ddolenau 'gwylio/heb eu gwylio' i'r cofnodion rydych yn eu gwylio (angen JavaScript)", "tog-watchlisthideanons": "Cuddio golygiadau gan ddefnyddwyr anhysbys rhag y rhestr wylio", "tog-watchlisthidepatrolled": "Cuddio golygiadau sydd wedi derbyn ymweliad patrôl rhag y rhestr wylio", "tog-watchlisthidecategorization": "Cuddiwch y categoriau", @@ -345,7 +346,7 @@ "title-invalid-characters": "Mae'r ddalen a geisiwch yn cynnwys symbloau na ellir eu derbyn: \"$1\".", "title-invalid-relative": "Mae gan y teitl lwybr perthnasol. Mae cynnwys (./, ../) yn annilys, gan eu bod yn bygro'r porwr.", "title-invalid-magic-tilde": "Mae'r ddalen a geisiwch yn cynnwys symbolau annilys: (~~~).", - "title-invalid-too-long": "Mae teitl y ddalen a geisiwch yn rhy hir o lawer. Rhaid iddi fod yn llai na $1 {{PLURAL:$1|beit|beit}} mewn cod UTF-8.", + "title-invalid-too-long": "Mae teitl y ddalen a geisiwch yn rhy hir. Rhaid iddi fod yn llai na $1 {{PLURAL:$1|beit}} mewn cod UTF-8.", "title-invalid-leading-colon": "Mae teitl y ddalen a geisiwch yn cynnwys colon annilys, ar y dechrau.", "perfcached": "Mae'r wybodaeth ganlynol yn gopi cadw; mae'n bosib nad y fersiwn diweddaraf ydyw. Cedwir hyd at {{PLURAL:$1||un canlyniad yn unig|ddau ganlyniad|dri canlyniad|$1 chanlyniad|$1 canlyniad}} yn y copi cadw.", "perfcachedts": "Rhoddwyd y data canlynol ar gadw mewn celc a ddiweddarwyd ddiwethaf am $1. Cedwir hyd at {{PLURAL:$4||un canlyniad yn unig|ddau ganlyniad|dri canlyniad|$4 chanlyniad|$4 canlyniad}} yn y celc.", @@ -360,7 +361,7 @@ "protectedinterface": "Testun ar gyfer rhyngwyneb y wici yw cynnwys y dudalen hon. Clowyd y dudalen er mwyn ei diogeli. Os am gyfieithu'r neges neu ei newid ym mhob wici yn hytrach nag yn hwn yn unig, defnyddiwch [https://translatewiki.net/ translatewiki.net], y prosiect MediaWiki sy'n hyrwyddo'r gwaith cyfieithu.", "editinginterface": "Dalier sylw: Rydych yn golygu tudalen sy'n rhan o destun rhyngwyneb y meddalwedd. Bydd newidiadau i'r dudalen hon yn effeithio ar y rhyngwyneb a ddefnyddir ar y wici hwn yn unig.", "translateinterface": "I ychwanegu neu newid y cyfieithiad ar gyfer pob wici, defnyddiwch [https://translatewiki.net/ translatewiki.net], sef prosiect lleol MediaWiki.", - "cascadeprotected": "Diogelwyd y ddalen hon rhag ei newid, oherwydd ei bod wedi ei chynnwys yn y {{PLURAL:$1|ddalen ganlynol|ddalen ganlynol|dalennau canlynol|dalennau canlynol|dalennau canlynol|dalennau canlynol}}, a ddiogelwyd, a'r dewisiad hwn yn weithredol: $2", + "cascadeprotected": "Diogelwyd y ddalen hon rhag ei newid, oherwydd ei bod wedi ei chynnwys yn y {{PLURAL:$1|ddalen ganlynol|dalennau canlynol}}, a ddiogelwyd, gyda'r dewisiad hwn yn weithredol: $2", "namespaceprotected": "Nid oes caniatâd gennych i olygu tudalennau yn y parth '''$1'''.", "customcssprotected": "Nid oes caniatâd ganddoch i olygu'r dudalen CSS hon oherwydd bod gosodiadau personol defnyddiwr arall arno.", "customjsprotected": "Nid oes caniatâd ganddoch i olygu'r dudalen JavaScript hon oherwydd bod gosodiadau personol defnyddiwr arall arno.", @@ -370,7 +371,7 @@ "mypreferencesprotected": "Nid oes caniatad gennych i olygu eich dewisiadau eich hunan.", "ns-specialprotected": "Ni ellir golygu tudalennau arbennig.", "titleprotected": "Diogelwyd y teitl hwn rhag ei greu gan [[User:$1|$1]].\nRhoddwyd y rheswm hwn - $2.", - "filereadonlyerror": "Nid oes modd newid y ffeil \"$1\" oherwydd nad oes modd gwneud dim heblaw darllen storfa'r ffeil yn \"$2\" yn unig.\n\nY rheswm a roddwyd gan y gweinyddwr a roddodd y ffeil dan glo yw \"''$3''\".", + "filereadonlyerror": "Nid oes modd newid y ffeil \"$1\" gan fod ffeil \"$2\" yn y modd 'darllen-yn-unig'.\n\nY rheswm a roddwyd gan y gweinyddwr a roddodd y ffeil dan glo yw \"''$3''\".", "invalidtitle-knownnamespace": "Teitl annilys o'r enw \"$3\" yn y parth \"$2\"", "invalidtitle-unknownnamespace": "Teitl annilys ag iddi'r rhif parth anhysbys $1 a'r enw \"$2\"", "exception-nologin": "Nid ydych wedi mewngofnodi", @@ -425,6 +426,7 @@ "createacct-email-ph": "Rhowch eich cyfeiriad ebost", "createacct-another-email-ph": "Rhowch y cyfeiriad e-bost", "createaccountmail": "Defnyddio cyfrinair ar hap dros dro a'i anfon i'r cyfeiriad e-bost a roddwyd", + "createaccountmail-help": "Gellir creu cyfri ar gyfer person arall heb ddysgu'r cyfrinair.", "createacct-realname": "Enw cywir (dewisiol)", "createacct-reason": "Rheswm", "createacct-reason-ph": "Pam ydych yn creu cyfrif arall?", @@ -450,7 +452,7 @@ "noname": "Dydych chi ddim wedi cynnig enw defnyddiwr dilys.", "loginsuccesstitle": "Llwyddodd y mewngofnodi", "loginsuccess": "'''Yr ydych wedi mewngofnodi i {{SITENAME}} fel \"$1\".'''", - "nosuchuser": "Does dim defnyddiwr o'r enw \"$1\".\nMae'r rhaglen yn gwahaniaethu rhwng llythrennau bach a mawr.\nSicrhewch eich bod chi wedi sillafu'r enw'n gywir, neu [[Special:CreateAccount|crëwch gyfrif newydd]].", + "nosuchuser": "Does dim defnyddiwr o'r enw \"$1\".\nMae'r rhaglen yn gwahaniaethu rhwng llythrennau bach a mawr.\nGwirwch eich sillafu, neu [[Special:CreateAccount|crëwch gyfrif newydd]].", "nosuchusershort": "Does dim defnyddiwr o'r enw \"$1\". Gwiriwch eich sillafu.", "nouserspecified": "Mae'n rhaid nodi enw defnyddiwr.", "login-userblocked": "Mae'r defnyddiwr hwn wedi ei flocio. Ni ellir mewngofnodi.", @@ -471,7 +473,7 @@ "eauthentsent": "Anfonwyd e-bost o gadarnhâd at y cyfeiriad a benwyd.\nCyn y gellir anfon unrhywbeth arall at y cyfeiriad hwnnw rhaid i chi ddilyn y cyfarwyddiadau yn yr e-bost er mwyn cadarnhau mai chi sydd berchen y cyfeiriad hwnnw.", "throttled-mailpassword": "Anfonwyd e-bost atoch eisoes i'ch atgoffa o'ch cyfrinair, a hynny yn ystod y $1 {{PLURAL:$1|awr}} diwethaf.\nEr mwyn rhwystro camddefnydd, dim ond un e-bost i'ch atgoffa o'ch cyfrinair gaiff ei anfon bob yn $1 {{PLURAL:$1|awr}}.", "mailerror": "Gwall wrth ddanfon yr e-bost: $1", - "acct_creation_throttle_hit": "Mae ymwelwyr sy'n defnyddio'ch cyfeiriad IP wedi creu $1 {{PLURAL:$1|cyfrif|cyfrif|gyfrif|chyfrif|chyfrif|cyfrif}} yn ystod y diwrnod diwethaf, sef y mwyafswm a ganiateir mewn diwrnod.\nFelly ni chaiff defnyddwyr sy'n defnyddio'r cyfeiriad IP hwn greu rhagor o gyfrifon ar hyn o bryd.", + "acct_creation_throttle_hit": "Mae ymwelwyr sy'n defnyddio'ch cyfeiriad IP wedi creu $1 {{PLURAL:$1|cyfrif|cyfrif|gyfrif|chyfrif|chyfrif|cyfrif}} yn ystod y $2 diwethaf, sef yr uchafswm a ganiateir yn y cyfnod hwn.\nO ganlyniad, ni chaiff defnyddwyr sy'n defnyddio'r cyfeiriad IP hwn greu rhagor o gyfrifon ar hyn o bryd.", "emailauthenticated": "Cadarnhawyd eich cyfeiriad e-bost am $3 ar $2.", "emailnotauthenticated": "Nid yw eich cyfeiriad e-bost wedi'i gadarnhau eto. Ni fydd unrhyw negeseuon e-bost yn cael eu hanfon atoch ar gyfer y nodweddion canlynol.", "noemailprefs": "Mae'n rhaid i chi gynnig cyfeiriad e-bost er mwyn i'r nodweddion hyn weithio.", @@ -484,7 +486,7 @@ "createaccount-title": "Creu cyfrif ar {{SITENAME}}", "createaccount-text": "Creodd rhywun gyfrif o'r enw $2 ar {{SITENAME}} ($4) ar gyfer y cyfeiriad e-bost hwn. \"$3\" yw'r cyfrinair ar gyfer \"$2\". Dylech fewngofnodi a newid eich cyfrinair yn syth.\n\nRhydd ichi anwybyddu'r neges hon os mai camgymeriad oedd creu'r cyfrif.", "login-throttled": "Rydych wedi ceisio mewngofnodi gormod o weithiau ar ben ei gilydd.\nOedwch $1 cyn mentro eto.", - "login-abort-generic": "Ni lwyddodd y mewngofnodi - Rhoddwyd y gorau iddo", + "login-abort-generic": "Ni lwyddodd y mewngofnodi", "login-migrated-generic": "Trosglwyddwyd eich cyfrif ac nid yw eich enw defnyddiwr bellach yn bodoli ar y wici hwn.", "loginlanguagelabel": "Iaith: $1", "suspicious-userlogout": "Gwrthodwyd eich cais i allgofnodi oherwydd ei fod yn ymddangos mai gweinydd wedi torri neu ddirprwy gelc a anfonodd y cais.", @@ -678,7 +680,7 @@ "permissionserrorstext": "Nid yw'r gallu ganddoch i weithredu yn yr achos yma, am y {{PLURAL:$1|rheswm|rheswm|rhesymau|rhesymau|rhesymau|rhesymau}} canlynol:", "permissionserrorstext-withaction": "Nid yw'r gallu hwn ($2) ganddoch, am y {{PLURAL:$1|rheswm|rheswm|rhesymau|rhesymau|rhesymau|rhesymau}} canlynol:", "recreate-moveddeleted-warn": "'''Dalier sylw: Rydych yn ail-greu tudalen a ddilewyd rhywdro.'''\n\nYstyriwch a fyddai'n dda o beth i barhau i olygu'r dudalen hon.\nDyma'r logiau dileu a symud ar gyfer y dudalen, er gwybodaeth:", - "moveddeleted-notice": "Dilëwyd y dudalen hon.\nDangosir y logiau dileu a symud ar gyfer y dudalen isod.", + "moveddeleted-notice": "Dilëwyd y ddalen hon.\nDangosir y logiau dileu, cloi a symud ar gyfer y ddalen isod.", "moveddeleted-notice-recent": "Ymddiheurwn! Dilewyd y ddalen hon yn ddiweddar (yn y 24 awr diwethaf).\nEr gwybodaeth, darperir isod yr holl wybodaeth berthnasol.", "log-fulllog": "Gweld y lòg cyflawn", "edit-hook-aborted": "Terfynwyd y golygiad cyn pryd gan fachyn.\nNi roddodd eglurhad.", @@ -749,7 +751,7 @@ "page_last": "olaf", "histlegend": "Cymharu dau fersiwn: marciwch y cylchoedd ar y ddau fersiwn i'w cymharu, yna pwyswch ar 'return' neu'r botwm 'Cymharer y fersiynau dewisedig'.
\nEglurhad: '''({{int:cur}})''' = gwahaniaethau rhyngddo a'r fersiwn cyfredol,\n'''({{int:last}})''' = gwahaniaethau rhyngddo a'r fersiwn cynt, '''({{int:minoreditletter}})''' = golygiad bychan", "history-fieldset-title": "Chwilio drwy'r hanes", - "history-show-deleted": "Y rhai a ddilëwyd yn unig", + "history-show-deleted": "Yr ddalen a adolygwyd yn unig a ddilëwyd", "histfirst": "cynharaf", "histlast": "diweddaraf", "historysize": "({{PLURAL:$1|$1 beit|$1 beit|$1 feit|$1 beit|$1 beit|$1 beit}})", @@ -900,7 +902,7 @@ "search-file-match": "(yn cyfateb i gynnwys y ffeil)", "search-suggest": "Ai am hyn y chwiliwch: $1", "search-rewritten": "Dangosir canlyniadauar gyfer $1. Chwiliwch am $2.", - "search-interwiki-caption": "Chwaer-brosiectau", + "search-interwiki-caption": "Canlyniadau o chhwaer-brosiectau", "search-interwiki-default": "Y canlyniadau o $1:", "search-interwiki-more": "(rhagor)", "search-interwiki-more-results": "rhagor o ganlyniadau", @@ -941,7 +943,7 @@ "prefs-editwatchlist-clear": "Clirio eich rhestr wylio", "prefs-watchlist-days": "Nifer y diwrnodau i'w dangos yn y rhestr wylio:", "prefs-watchlist-days-max": "Hyd at $1 {{PLURAL:$1||diwrnod|ddiwrnod|diwrnod|diwrnod|diwrnod}}", - "prefs-watchlist-edits": "Nifer y golygiadau i'w dangos wrth ehangu'r rhestr wylio:", + "prefs-watchlist-edits": "Uchafswm nifer y golygiadau i'w dangos yn eich rhestr wylio:", "prefs-watchlist-edits-max": "Hyd at uchafswm o 1000", "prefs-watchlist-token": "Tocyn y rhestr wylio:", "prefs-misc": "Amrywiol", @@ -1032,7 +1034,7 @@ "prefs-help-prefershttps": "Bydd y dewis yma'n cael ei roi ar waith y tro nesaf i chi fewngofnodi.", "prefswarning-warning": "Rydych wedi newid eich Dewisiadau, ac nid ydynt eto wedi'u cadw.\nOs gadewch y dudalen hon heb glicio \"$1\" yna fe gollwch y newidiadau hyn.", "prefs-tabs-navigation-hint": "Awgrym: Gallwch ddefnyddio'r allweddellau sy'n saethau i'r chwith neu i'r dde i lywio rhwng y tabiau ar restr y tabiau.", - "userrights": "Rheoli galluoedd defnyddwyr", + "userrights": "Galluoedd defnyddwyr", "userrights-lookup-user": "Dewisiwch ddefnyddiwr", "userrights-user-editname": "Rhowch enw defnyddiwr:", "editusergroup": "Golygu grwpiau defnyddwyr", @@ -1043,7 +1045,7 @@ "saveusergroups": "Cadw'r Grwpiau {{GENDER:$1|Defnyddwyr}}", "userrights-groupsmember": "Yn aelod o:", "userrights-groupsmember-auto": "Ac ynghlwm wrth aelodaeth y grwpiau uchod, yn aelod o:", - "userrights-groups-help": "Gallwch newid y grwpiau y perthyn y defnyddiwr hwn iddynt:\n* Mae defnyddiwr yn perthyn i grŵp pan mae tic yn y bocs.\n* Nid yw defnyddiwr yn perthyn i grŵp pan nad oes tic yn y bocs.\n* Mae * yn golygu na fyddwch yn gallu dad-wneud unrhyw newid yn y grŵp hwnnw.", + "userrights-groups-help": "Gallwch newid y grwpiau y perthyn y defnyddiwr hwn iddynt:\n* Mae defnyddiwr yn perthyn i grŵp pan mae tic yn y bocs.\n* Nid yw defnyddiwr yn perthyn i grŵp pan nad oes tic yn y bocs.\n* Mae * yn golygu na fyddwch yn gallu dad-wneud unrhyw newid yn y grŵp hwnnw.\n* Mae # yn golygu mai yn ôl yn unig y medrwch chi droi'r cyfnod y daw'r grwp i ben, nid ymlaen.", "userrights-reason": "Rheswm:", "userrights-no-interwiki": "Nid yw'r gallu ganddoch i newid galluoedd defnyddwyr ar wicïau eraill.", "userrights-nodatabase": "Nid yw'r bas data $1 yn bod neu nid yw'n un lleol.", @@ -1055,6 +1057,7 @@ "userrights-expiry-existing": "Amser dod i ben: $3, $2", "userrights-expiry-othertime": "Cyfnod arall:", "userrights-expiry-options": "1 dydd:1 day,1 wythnos:1 week,1 mis:1 month,3 mis:3 months,6 mis:6 months,1 blynedd:1 year", + "userrights-invalid-expiry": "Mae terfyn amser y grwp \"$1\" yn annilys.", "userrights-conflict": "Gwrthdaro oherwydd newid i hawliau defnyddiwr! Adolygwch eich newidiadau a'u cadarnhau.", "group": "Grŵp:", "group-user": "Defnyddwyr", @@ -1152,6 +1155,8 @@ "grant-group-email": "Danfon ebost", "grant-group-customization": "Eich dewisiadau chi", "grant-group-administration": "Rhoi materion gweinyddol ar waith", + "grant-group-private-information": "Edrychwch ar ddata preifat amdanoch", + "grant-group-other": "Gweithgaredd amrywiol", "grant-blockusers": "Blociwch a dadflociwch defnyddwyr", "grant-createaccount": "Crewch gyfri", "grant-createeditmovepage": "Creu, golygu a symud dalennau", @@ -1165,6 +1170,7 @@ "grant-highvolume": "Golygu nifer ar yr un pryd", "grant-oversight": "Cuddiwch y defnyddwyr a'u golygiadau", "grant-patrol": "Newidiadau patrol y dalennau", + "grant-privateinfo": "Edrychwch ar wybodaeth preifat", "grant-protect": "Cloi a datgloi dalennau", "grant-rollback": "Dadwneud newidiadau dalennau", "grant-sendemail": "Danfonwch ebost i ddefnyddwyr", @@ -1245,7 +1251,28 @@ "recentchanges-legend-newpage": "{{int:recentchanges-label-newpage}} (gweler hefyd [[Special:NewPages|restr y tudalennau newydd]])", "recentchanges-legend-plusminus": "(''±123'')", "recentchanges-submit": "Dangos", + "rcfilters-legend-heading": "Rhestr o fyrfoddau:", + "rcfilters-other-review-tools": "Teclynau adolygu eraill", + "rcfilters-group-results-by-page": "Canlyniadau'r grwp bob yn ddalen", + "rcfilters-grouping-title": "Grwpio", "rcfilters-activefilters": "Hidlau sydd ar waith", + "rcfilters-advancedfilters": "Ffiltrau ychwanegol", + "rcfilters-limit-title": "Newidiadau a ddangosir", + "rcfilters-limit-shownum": "Dangos y {{PLURAL:$1|newid}}", + "rcfilters-days-title": "Dyddiau diweddar", + "rcfilters-hours-title": "Oriau diweddar", + "rcfilters-days-show-days": "$1 {{PLURAL:$1|diwrnod}}", + "rcfilters-days-show-hours": "$1 {{PLURAL:$1|awr}}", + "rcfilters-quickfilters": "Ffiltrau a arbedwyd", + "rcfilters-quickfilters-placeholder-title": "Dim dolenni wedi'u cadw hyd yma", + "rcfilters-savedqueries-defaultlabel": "Ffiltrau a arbedwyd", + "rcfilters-savedqueries-rename": "Ailenwi", + "rcfilters-savedqueries-setdefault": "Gosod yn ddiofyn (''Set as default'')", + "rcfilters-savedqueries-unsetdefault": "Diddymu fel gweithred ddiofyn (''Remove as default'')", + "rcfilters-savedqueries-remove": "Cael gwared", + "rcfilters-savedqueries-new-name-label": "Enw", + "rcfilters-savedqueries-new-name-placeholder": "Disgrifiwch bwrpas y ffiltr", + "rcfilters-savedqueries-apply-label": "Crewch ffiltr", "rcfilters-restore-default-filters": "Ailosodwch y ffiltrau di-ofyn", "rcfilters-clear-all-filters": "Cliriwch yr holl hidlau (ffiltrau)", "rcfilters-search-placeholder": "Ffiltrwch y newidiadau diweddaraf", @@ -1257,19 +1284,62 @@ "rcfilters-highlightmenu-title": "Dewisiwch liw", "rcfilters-highlightmenu-help": "Dewisiwch liw sy'n cyd-fynd gyda'r nodwedd hon", "rcfilters-filterlist-noresults": "Dim hidl ar gael", - "rcfilters-filter-editsbyself-label": "Eich golygiadau chi", - "rcfilters-filter-editsbyself-description": "Golygiadau gennych chi.", - "rcfilters-filter-editsbyother-label": "Golygiadau gan eraill", - "rcfilters-filter-editsbyother-description": "Golygiadau a grewyd gan eraill (nid gennych chi).", - "rcfilters-filtergroup-userExpLevel": "Lefel profiad (defnyddwyr cofrestredig yn unig)", - "rcfilters-filter-user-experience-level-registered-label": "Cofrestr", + "rcfilters-filter-editsbyself-label": "Eich newidiadau chi", + "rcfilters-filter-editsbyself-description": "Eich cyfraniadau chi.", + "rcfilters-filter-editsbyother-label": "Newidiadau gan eraill", + "rcfilters-filter-editsbyother-description": "Pob golygiad ond nid gennych chi.", + "rcfilters-filtergroup-userExpLevel": "Cofrestriad y Defnyddiwr a'i brofiad", + "rcfilters-filter-user-experience-level-registered-label": "Cofrestrwyd", "rcfilters-filter-user-experience-level-registered-description": "Golygyddion sydd wedi mewngofnodi.", "rcfilters-filter-user-experience-level-unregistered-label": "Heb gofrestru", "rcfilters-filter-user-experience-level-unregistered-description": "Golygyddion nad ydynt wedi cofrestru.", + "rcfilters-filter-user-experience-level-newcomer-label": "Newydd-ddyfodiaid", + "rcfilters-filter-user-experience-level-newcomer-description": "Defnyddwyr cofrestredig gyda llai na 10 golygiad a 4 diwrnod o weithgaredd.", + "rcfilters-filter-user-experience-level-learner-label": "Dysgwyr", + "rcfilters-filter-user-experience-level-learner-description": "Defnyddwyr cofrestredig ble mae eu profiad yn syrthio rhwng \"Newydd-ddyfodiaid\" a \"Defnyddwyr profiadol.\"", + "rcfilters-filter-user-experience-level-experienced-label": "Defnyddwyr profiadol", + "rcfilters-filter-user-experience-level-experienced-description": "Defnyddwyr profiadol gyda mwy na 500 golygiad a 30 diwrnod o weithgaredd.", + "rcfilters-filtergroup-automated": "Cyfraniadau otomatig", + "rcfilters-filter-bots-label": "Bot", + "rcfilters-filter-bots-description": "Golygiaidau a wnaed gyda theclynnau otomatig.", + "rcfilters-filter-humans-label": "Dynol (nid bot)", + "rcfilters-filter-humans-description": "Golygiadau a wnaed gan olygyddion go-iawn.", + "rcfilters-filtergroup-reviewstatus": "Statws adolygu", "rcfilters-filter-patrolled-label": "Wedi derbyn patrol", "rcfilters-filter-patrolled-description": "Marciwyd y golygiadau fel rhai sydd wedi derbyn patrol.", + "rcfilters-filter-unpatrolled-label": "Heb ei gadarnhau (''Unpatrolled'')", "rcfilters-filter-unpatrolled-description": "Ni farciwyd y golygiadau fel rhai sydd wedi derbyn patrol.", + "rcfilters-filtergroup-significance": "Arwyddocaol", + "rcfilters-filter-minor-label": "Golygiadau bach", + "rcfilters-filter-minor-description": "Golygiadau a nodwyd gan y golygydd fel rhai bach.", + "rcfilters-filter-major-label": "Golygiadau nad ydynt yn rhai bach", + "rcfilters-filter-major-description": "Golygiadau nad ydynt yn rhai bach.", + "rcfilters-filtergroup-watchlist": "Dalennau sy'n cael eu gwylio", + "rcfilters-filter-watchlist-watched-label": "Ar y Rhestr Wylio", + "rcfilters-filter-watchlist-watched-description": "Newidiadau i'r dalennau yn eich Rhestr Wylio.", + "rcfilters-filter-watchlist-watchednew-label": "Newidiadau newydd i'ch Rhestr Wylio", + "rcfilters-filter-watchlist-notwatched-label": "Heb fod yn eich Rhestr Wylio", + "rcfilters-filter-watchlist-notwatched-description": "Popeth ar wahan i'r newidiadau i'ch Rhestr Wylio.", + "rcfilters-filtergroup-changetype": "Math o newid", + "rcfilters-filter-pageedits-label": "Golygiadau i'r ddalen", + "rcfilters-filter-pageedits-description": "Golygiadau i gynnwys wici, y sgyrsiau, categoriau...", + "rcfilters-filter-newpages-label": "Dalennau a grewyd", + "rcfilters-filter-newpages-description": "Golygiadau creu dalennau", + "rcfilters-filter-categorization-label": "Newidiadau i'r Categoriau", + "rcfilters-filter-categorization-description": "Cofnodion y dalennau a ychwanegwyd neu a symudwyd o'r categoriau.", + "rcfilters-filter-logactions-label": "Gweithredoedd a logiwyd", + "rcfilters-filtergroup-lastRevision": "Yr adolygiadau diweddaraf", + "rcfilters-filter-lastrevision-label": "Yr adolygiad diweddaraf", + "rcfilters-filter-lastrevision-description": "Dim ond yn newidiadau diweddaraf i'r ddalen.", + "rcfilters-filter-previousrevision-label": "Nid yr adolygiad diweddaraf", + "rcfilters-filter-previousrevision-description": "Pob newid nad ydynt yn yr \"adolygiad diweddaraf\".", + "rcfilters-filter-excluded": "Eithriadau", + "rcfilters-tag-prefix-namespace-inverted": ":nid $1", + "rcfilters-liveupdates-button": "Diweddariadau, byw (''Live updates'')", + "rcfilters-liveupdates-button-title-on": "Diffod y 'Diweddariadau, byw'", + "rcfilters-liveupdates-button-title-off": "Arddangos newidiadau wrth iddynt ddigwydd", "rcnotefrom": "Isod rhestrir pob newid er $3, $4 (ymddengys $1 ohonynt).", + "rclistfromreset": "Ailosod dyddiad yr hyn rydych wedi'i ddewis", "rclistfrom": "Dangos newidiadau newydd, gan ddechrau ers $3 $2", "rcshowhideminor": "$1 golygiadau bychain", "rcshowhideminor-show": "Dangoser", @@ -1292,7 +1362,7 @@ "rcshowhidecategorization": "Categoreiddio tudalen $1", "rcshowhidecategorization-show": "Dangos", "rcshowhidecategorization-hide": "Cuddio", - "rclinks": "Dangos y $1 newid diweddaraf yn ystod y(r) $2 diwrnod diwethaf", + "rclinks": "Dangos y $1 newid diweddaraf yn y $2 diwrnod diwethaf", "diff": "gwahan", "hist": "hanes", "hide": "Cuddier", @@ -1316,7 +1386,7 @@ "recentchangeslinked-page": "Tudalen:", "recentchangeslinked-to": "Dangos newidiadau i'r tudalennau â chyswllt arnynt sy'n arwain at y dudalen a enwir", "recentchanges-page-added-to-category": "Ychwanegwyd [[:$1]] at y categori", - "recentchanges-page-added-to-category-bundled": "[[:$1]] ac [[Special:WhatLinksHere/$1|{{PLURAL:$2|un ddalen|$2 dalen}}]] wedi'u hychwanegu at y categori", + "recentchanges-page-added-to-category-bundled": "ychwanegwyd [[:$1]] i'r categori, ac mae'r [[Special:WhatLinksHere/$1|ddalen hon o fewn dalennau eraill}}]]", "recentchanges-page-removed-from-category": "Symudwyd [[:$1]] o'r categori", "upload": "Uwchlwytho ffeil", "uploadbtn": "Uwchlwytho ffeil", @@ -1721,12 +1791,17 @@ "apihelp-no-such-module": "Ni chafwyd hyd i fodiwl \"$1\".", "apisandbox": "Pwll tywod API", "apisandbox-fullscreen": "Ehangu'r panel", + "apisandbox-fullscreen-tooltip": "Engangu'r blwch tywod i lenwi ffenest y porwr", "apisandbox-unfullscreen": "Dangos y ddalen", + "apisandbox-unfullscreen-tooltip": "Lleihau'r blwch tywod, er mwyn gweld y dolennau fforio (''navigation links'')", "apisandbox-submit": "Gwnewch gais", "apisandbox-reset": "Clirio", "apisandbox-retry": "Ailgeisio", "apisandbox-helpurls": "Dolennau cymorth", "apisandbox-examples": "Engreifftiau", + "apisandbox-dynamic-parameters": "Paramedrau ychwanegol", + "apisandbox-dynamic-parameters-add-label": "Ychwanegu paramedrau", + "apisandbox-dynamic-parameters-add-placeholder": "Enw'r paramedr", "apisandbox-results": "Canlyniadau", "apisandbox-continue": "Parhau", "apisandbox-continue-clear": "Clirio", @@ -1843,7 +1918,7 @@ "emailccsubject": "Copi o'ch neges at $1: $2", "emailsent": "Neges e-bost wedi'i hanfon", "emailsenttext": "Mae eich neges e-bost wedi cael ei hanfon.", - "emailuserfooter": "Danfonwyd yr ebost {{GENDER:$1|hwn}} gan $1 i {{GENDER:$2|$2}} drwy \"{{int:emailuser}}\" ar {{SITENAME}}.", + "emailuserfooter": "Danfonwyd yr ebost {{GENDER:$1|hwn}} gan $1 i {{GENDER:$2|$2}} drwy \"{{int:emailuser}}\" ar {{SITENAME}}. Os ydych {{GENDER:$2|chi'n}} ateb yr ebost hwn, yna bydd {{GENDER:$2|eich}} ebost yn cael ei danfon yn uniongyrchol i'r {{GENDER:$1|danfonwr gwreiddiol}}, ac felly'n datgelu {{GENDER:$2|eich}} cyfeiriad ebost {{GENDER:$1|iddyn nhw}}.", "usermessage-summary": "Yn gadael neges am ddigwyddiad yn y sustem.", "usermessage-editor": "Golygydd neges y system", "watchlist": "Rhestr wylio", @@ -1854,9 +1929,11 @@ "watchnologin": "Nid ydych wedi mewngofnodi", "addwatch": "Ychwanegu at y rhestr wylio", "addedwatchtext": "Mae \"[[:$1]]\" a'i dudalen Sgwrs wedi cael eu hychwanegu at eich [[Special:Watchlist|rhestr wylio]].", + "addedwatchtext-talk": "Mae \"[[:$1]]\" wedi'i ychwanegu i'ch [[Special:Watchlist|Rhestr Wylio]].", "addedwatchtext-short": "Mae'r dudalen \"$1\" wedi'i hychwanegu i'ch rhestr wylio.", "removewatch": "Tynnu oddi ar eich rhestr wylio", "removedwatchtext": "Mae'r dudalen \"[[:$1]]\" a'i thudalen Sgwrs wedi'u tynnu oddi ar [[Special:Watchlist|eich rhestr wylio]].", + "removedwatchtext-talk": "Mae \"[[:$1]]\" wedi'i ddileu o'ch [[Special:Watchlist|Rhestr Wylio]].", "removedwatchtext-short": "Mae'r dudalen \"$1\" wedi'i thynnu o'ch tudalen wylio.", "watch": "Gwylio", "watchthispage": "Gwylier y dudalen hon", @@ -1871,13 +1948,14 @@ "wlshowlast": "Dangoser newidiadau'r $1 awr ddiwethaf neu'r $2 {{PLURAL:$2|diwrnod|diwrnod|ddiwrnod|diwrnod|diwrnod|diwrnod}} diwethaf neu'r newidiadau.", "watchlist-hide": "Cuddio", "watchlist-submit": "Dangos", - "wlshowtime": "Dangos y diwethaf:", + "wlshowtime": "Dangos y cyfnod:", "wlshowhideminor": "golygiadau bychan", "wlshowhidebots": "botiau", "wlshowhideliu": "defnyddwyr cofrestredig", "wlshowhideanons": "defnyddwyr heb gofnodi", "wlshowhidepatr": "golygiadau sydd wedi derbyn patrol", "wlshowhidemine": "fy ngolygiadau", + "wlshowhidecategorization": "categori'r ddalen", "watchlist-options": "Dewisiadau ar gyfer y rhestr wylio", "watching": "Wrthi'n ychwanegu...", "unwatching": "Wrthi'n tynnu...", @@ -1895,9 +1973,10 @@ "enotif_body_intro_restored": "Adferwyd y dudalen $1 ar {{SITENAME}} ar $PAGEEDITDATE gan {{gender:$2|$2}}. Gweler y diwygiad cyfredol ohoni ar $3.", "enotif_body_intro_changed": "Newidiwyd y dudalen $1 ar {{SITENAME}} ar $PAGEEDITDATE gan {{gender:$2|$2}}. Gweler y diwygiad cyfredol ohoni ar $3.", "enotif_lastvisited": "Gwelwch $1 am bob newid ers eich ymweliad blaenorol.", - "enotif_lastdiff": "Gallwch weld y newid ar $1.", + "enotif_lastdiff": "Gallwch weld y newid ar $1", "enotif_anon_editor": "defnyddiwr anhysbys $1", "enotif_body": "Annwyl $WATCHINGUSERNAME,\n\n$PAGEINTRO $NEWPAGE\n\nCrynodeb y golygydd: $PAGESUMMARY $PAGEMINOREDIT\n\nCysylltu â'r golygydd:\ne-bost: $PAGEEDITOR_EMAIL\nwici: $PAGEEDITOR_WIKI\n\nOs bydd mwy o drin a thrafod ar y dudalen cyn i chi ymweld â hi tra eich bod wedi mewngofnodi, ni chewch ragor o negeseuon hysbysu. Nodwn bod modd i chi ailosod y fflagiau hysbysu ar eich rhestr wylio, ar gyfer y tudalennau rydych yn eu gwylio.\n\n Sustem hysbysu {{SITENAME}}\n\n--\nI newid eich gosodiadau negeseuon hysbysu, ewch i \n{{canonicalurl:{{#special:Preferences}}}}\n\nI newid eich gosodiadau gwylio, ewch i\n{{canonicalurl:{{#special:EditWatchlist}}}}\n\nI dynnu'r dudalen oddi ar eich rhestr wylio, ewch i\n$UNWATCHURL\n\nAm fwy o gymorth ac adborth:\n$HELPPAGE", + "enotif_minoredit": "Golygiad bach yw hwn", "created": "crëwyd", "changed": "Newidiwyd", "deletepage": "Dilëir y dudalen", @@ -1925,18 +2004,22 @@ "delete-toobig": "Cafwyd dros $1 {{PLURAL:$1|o olygiadau}} i'r dudalen hon.\nCyfyngwyd ar y gallu i ddileu tudalennau sydd wedi eu golygu cymaint â hyn, er mwyn osgoi amharu ar weithrediad databas {{SITENAME}} yn ddamweiniol.", "delete-warning-toobig": "Cafwyd dros $1 {{PLURAL:$1|o olygiadau}} i'r dudalen hon.\nGallai dileu tudalen, gyda hanes golygu cymaint â hyn iddi, beri dryswch i weithrediadau'r databas ar {{SITENAME}}; ewch ati'n ofalus.", "deleteprotected": "Ni allwch ddileu'r dudalen hon gan ei bod wedi'i chloi.", - "deleting-backlinks-warning": "'''Rhybudd:''' Mae [[Special:WhatLinksHere/{{FULLPAGENAME}}|tudalennau eraill]] yn cysylltu i'r dudalen yr ydych ar fin ei dileu, neu'n trawsgynnwys y dudalen hon.", + "deleting-backlinks-warning": "'''Rhybudd:''' Mae [[Special:WhatLinksHere/{{FULLPAGENAME}}|tudalennau eraill]] yn cysylltu i'r ddalen rydych ar fin ei dileu.", + "deleting-subpages-warning": "Rhybudd: Mae gan y ddalen rydych ar fin ei dileu [[Special:PrefixIndex/{{FULLPAGENAME}}/|{{PLURAL:$1|is-ddalen|$1 is-ddalennau|51=dros 50 o is-ddalennau}}]].", "rollback": "Gwrthdroi golygiadau", "rollbacklink": "gwrthdröer", "rollbacklinkcount": "gwrthdröer $1 {{PLURAL:$1||golygiad|olygiad|golygiad}}", "rollbacklinkcount-morethan": "gwrthdröer mwy na $1 {{PLURAL:$1||golygiad|olygiad|golygiad}}", "rollbackfailed": "Methodd y gwrthdroi", + "rollback-missingparam": "Parametrau coll", + "rollback-missingrevision": "Methwyd a llwytho'r data adolygu", "cantrollback": "Wedi methu gwrthdroi'r golygiad; y cyfrannwr diwethaf oedd unig awdur y dudalen hon.", "alreadyrolled": "Nid yw'n bosib dadwneud y golygiad diwethaf i'r dudalen [[:$1|$1]] gan [[User:$2|$2]] ([[User talk:$2|Sgwrs]]{{int:pipe-separator}}[[Special:Contributions/$2|{{int:contribslink}}]]);\nmae rhywun arall eisoes wedi dadwneud y golygiad neu wedi golygu'r dudalen.\n\n[[User:$3|$3]] ([[User talk:$3|Sgwrs]]{{int:pipe-separator}}[[Special:Contributions/$3|{{int:contribslink}}]]) a wnaeth y golygiad diwethaf.", "editcomment": "Crynodeb y golygiad oedd: $1.", "revertpage": "Wedi gwrthdroi golygiadau gan [[Special:Contributions/$2|$2]] ([[User talk:$2|Sgwrs]]); wedi adfer y golygiad diweddaraf gan [[User:$1|$1]]", "revertpage-nouser": "Wedi gwrthdroi golygiadau gan ddefnyddiwr cudd; wedi adfer y golygiad diweddaraf gan {{GENDER:$1|[[User:$1|$1]]}}", - "rollback-success": "Gwrthdrowyd y golygiadau gan $1;\nwedi gwrthdroi i'r golygiad olaf gan $2.", + "rollback-success": "Gwrthdrowyd y golygiadau gan {{GENDER:$3|$1}};\nailosodwyd y golygiad olaf gan {{GENDER:$4|$2}}.", + "rollback-success-notify": "Gwrthdrowyd y golygiadau gan $1;\nailosodwyd y golygiad olaf gan $2. [$3 Dangoser y gwahaniaeth]", "sessionfailure-title": "Sesiwn wedi methu", "sessionfailure": "Mae'n debyg fod yna broblem gyda'ch sesiwn mewngofnodi; diddymwyd y weithred er mwyn diogelu'r sustem rhag ddefnyddwyr maleisus. Gwasgwch botwm 'nôl' eich porwr ac ail-lwythwch y dudalen honno, yna ceisiwch eto.", "changecontentmodel-title-label": "Teitl y ddalen", @@ -2016,7 +2099,7 @@ "undeleteviewlink": "gweld", "undeleteinvert": "Gwrthdroi'r dewis", "undeletecomment": "Rheswm:", - "cannotundelete": "Mae'r cais i ddad-ddileu wedi methu:\n$1", + "cannotundelete": "Methwyd a dad-ddileu rhan neu'r cyfan:\n$1", "undeletedpage": "'''Adferwyd $1'''\n\nCeir cofnod o'r tudalennau a ddilëwyd neu a adferwyd yn ddiweddar ar y [[Special:Log/delete|lòg ddileuon]].", "undelete-header": "Ewch i'r [[Special:Log/delete|lòg ddileuon]] i weld tudalennau a ddilëwyd yn ddiweddar.", "undelete-search-title": "Chwilio drwy'r tudalennau dilëedig", @@ -2207,9 +2290,9 @@ "lockedbyandtime": "(gan {{GENDER:$1|$1}} at $2 am $3)", "move-page": "Symud $1", "move-page-legend": "Symud tudalen", - "movepagetext": "Drwy ddefnyddio'r ffurflen isod, byddwch yn ailenwi tudalen, ac felly yn symud ei holl hanes i'r dudalen a'r enw newydd.\nCaiff y dudalen a'r hen deitl ei throi'n dudalen sy'n ailgyfeirio i'r teitl newydd.\nGallwch ddiweddaru tudalennau ailgyfeirio sy'n cyfeirio at y teitl gwreiddiol yn awtomatig.\nOs ydych yn dewis peidio â gwneud hyn, gwiriwch [[Special:DoubleRedirects|dudalennau ailgyfeirio dwbl]] neu \n[[Special:BrokenRedirects|dudalennau ailgyfeirio nad ydynt yn ailgyfeirio]].\nChi sy'n gyfrifol am sicrhau bod cysylltiadau yn cyfeirio at y tudalennau cywir.\n\nSylwer '''na''' chaiff y dudalen ei symud os oes tudalen a'r enw newydd ar gael yn barod, oni bai bod y dudalen a'r enw newydd yn dudalen ailgyfeirio ac nad oes hanes golygu ganddi.\nMae hyn yn golygu y gallwch ailenwi tudalen yn ôl i'w henw gwreiddiol os ydych yn gwneud camgymeriad, ond na allwch drosysgrifo tudalen sy'n bodoli'n barod.\n\n'''Rhybudd!'''\nGall hwn fod yn newid mawr ac annisgwyl i dudalen boblogaidd;\ngwnewch yn siŵr eich bod yn deall canlyniadau'r broses hon cyn i chi barhau.", + "movepagetext": "Drwy ddefnyddio'r ffurflen isod, byddwch yn ailenwi dalen, ac felly yn symud ei holl hanes i'r ddalen a'r enw newydd.\nCaiff y ddalen a'r hen deitl ei throi'n ddalen sy'n ailgyfeirio i'r teitl newydd.\nGallwch ddiweddaru dalennau ailgyfeirio sy'n cyfeirio at y teitl gwreiddiol yn awtomatig.\nOs ydych yn dewis peidio â gwneud hyn, gwiriwch [[Special:DoubleRedirects|dudalennau ailgyfeirio dwbl]] neu \n[[Special:BrokenRedirects|ddalennau ailgyfeirio nad ydynt yn ailgyfeirio]].\nChi sy'n gyfrifol am sicrhau bod cysylltiadau yn cyfeirio at y dalennau cywir.\n\nSylwer na chaiff y ddalen ei symud os oes tudalen a'r enw newydd ar gael yn barod, oni bai bod y dudalen a'r enw newydd yn dudalen ailgyfeirio ac nad yw wedi'i golygu.\n\nGallwch, felly, ailenwi tudalen yn ôl i'w henw gwreiddiol os ydych yn gwneud camgymeriad, ond na allwch drosysgrifo dalen sy'n bodoli'n barod.\n\n'''Rhybudd!'''\nGall hwn fod yn newid mawr ac annisgwyl i dudalen boblogaidd;\ngwnewch yn siŵr eich bod yn deall canlyniadau'r broses hon cyn i chi barhau.", "movepagetext-noredirectfixer": "Wrth ddefnyddio'r ffurflen isod byddwch yn ail-enwi tudalen, gan symud ei hanes gyfan i'r enw newydd.\nBydd yr hen deitl yn troi'n dudalen ailgyfeirio i'r teitl newydd.\nByddwch gystal â thrwsio [[Special:DoubleRedirects|ailgyfeiriadau dwbl]] ac [[Special:BrokenRedirects|ailgyfeiriadau tor]].\nEich cyfrifoldeb chi yw sicrhau bod cysylltiadau wici'n dal i arwain at y man iawn.\n\nSylwch '''na fydd''' y dudalen yn symud os oes yna dudalen o'r enw newydd ar gael yn barod (heblaw ei bod hi'n wag neu'n ailgyfeiriad heb unrhyw hanes golygu).\nFelly, os y gwnewch gamgymeriad wrth ail-enwi tudalen dylai fod yn bosibl ei hail-enwi eto ar unwaith wrth yr enw gwreiddiol. \nHefyd, mae'n amhosibl ysgrifennu dros ben tudalen sydd yn bodoli'n barod.\n\n'''Dalier Sylw!'''\nGall hwn fod yn newid sydyn a llym i dudalen boblogaidd;\ngwnewch yn siwr eich bod chi'n deall y canlyniadau cyn mynd ati.", - "movepagetalktext": "Bydd y dudalen sgwrs yn symud gyda'r dudalen hon '''onibai:'''\n*bod tudalen sgwrs wrth yr enw newydd yn bodoli'n barod\n*bod y blwch isod heb ei farcio.\n\nOs felly, gallwch symud y dudalen sgwrs neu ei gyfuno ar ôl symud y dudalen ei hun.", + "movepagetalktext": "Bydd y ddalen sgwrs yn symud gyda'r ddalen hon '''onibai:'''\n*bod dalen sgwrs wrth yr enw newydd yn bodoli'n barod\n*bod y blwch isod heb ei farcio.\n\nOs felly, gallwch symud y ddalen sgwrs neu ei gyfuno ar ôl symud y ddalen ei hun.", "moveuserpage-warning": "'''Sylwer:''' Yr ydych ar fin symud tudalen defnyddiwr. Sylwch mai'r dudalen yn unig a gaiff ei symud ac ''na fydd'' y defnyddiwr yn cael ei ail-enwi.", "movecategorypage-warning": "Rhybudd: Rydych ar fin dileu categori. Sylwch mai dim ond y dudalen a gaiff ei symud, a bydd y tudalennau o fewn yr hen gategori yn aros fel ag yr oeddent.", "movenologintext": "Mae'n rhaid bod yn ddefnyddiwr cofrestredig a'ch bod wedi [[Special:UserLogin|mewngofnodi]] cyn medru symud tudalen.", @@ -2219,6 +2302,7 @@ "cant-move-to-user-page": "Nid yw'r gallu ganddoch i symud tudalen i dudalen defnyddiwr (heblaw am i isdudalen defnyddiwr).", "cant-move-category-page": "Nid oes gennych yr hawl i symud categoriau.", "cant-move-to-category-page": "Nid oes gennych yr hawl i droi tudalen yn gategori.", + "cant-move-subpages": "Nid oes gennych yr hawl i symud isddalennau.", "newtitle": "Teitl newydd:", "move-watch": "Gwylier y dudalen hon", "movepagebtn": "Symud y dudalen", @@ -2242,7 +2326,7 @@ "movenosubpage": "Nid oes isdudalennau i gael i'r dudalen hon.", "movereason": "Rheswm:", "revertmove": "symud nôl", - "delete_and_move_text": "==Angen dileu==\n\nMae'r erthygl \"[[:$1]]\" yn bodoli'n barod. Ydych chi am ddileu'r erthygl er mwyn cwblhau'r symudiad?", + "delete_and_move_text": "==Angen dileu==\n\nMae'r erthygl \"[[:$1]]\" yn bodoli'n barod. Ydych chi am ddileu'r erthygl er mwyn paratoi lle?", "delete_and_move_confirm": "Ie, dileu'r dudalen", "delete_and_move_reason": "Wedi'i dileu er mwyn gallu symud y dudalen \"[[$1]]\" i gymryd ei lle", "selfmove": "Mae'r teitlau hen a newydd yn union yr un peth;\nnid yw'n bosib cyflawnu'r symud.", @@ -2260,7 +2344,7 @@ "move-leave-redirect": "Creu tudalen ail-gyfeirio â'r teitl gwreiddiol", "protectedpagemovewarning": "'''Sylwer:''' Clowyd y dudalen ac felly dim ond defnyddwyr a galluoedd gweinyddu ganddynt sy'n gallu ei symud.\nDyma'r cofnod lòg diweddaraf, er gwybodaeth:", "semiprotectedpagemovewarning": "'''Sylwer:''' Clowyd y dudalen ac felly dim ond defnyddwyr mewngofnodedig sy'n gallu ei symud.\nDyma'r cofnod lòg diweddaraf, er gwybodaeth:", - "move-over-sharedrepo": "== Y ffeil ar gael ==\nMae'r ffeil [[:$1]] ar gael mewn storfa gyfrannol. Pe byddech yn symud y ffeil i'r teitl hwn, yna byddai'r ffeil o'r storfa gyfrannol yn cael ei disodli.", + "move-over-sharedrepo": "Mae'r ffeil [[:$1]] ar gael mewn storfa gyfrannol. Pe byddech yn symud y ffeil i'r teitl hwn, yna byddai'r ffeil o'r storfa gyfrannol yn cael ei disodli.", "file-exists-sharedrepo": "Mae'r enw y dewisoch ar y ffeil yn cael ei ddefnyddio'n barod ar storfa gyfrannol.\nDewiswch enw arall os gwelwch yn dda.", "export": "Allforio tudalennau", "exporttext": "Gallwch allforio testun a hanes golygu tudalen penodol neu set o dudalennau wedi'u lapio mewn côd XML. Gall hwn wedyn gael ei fewnforio i wici arall sy'n defnyddio meddalwedd MediaWiki, trwy ddefnyddio'r [[Special:Import|dudalen mewnforio]].\n\nI allforio tudalennau, teipiwch y teitlau yn y bocs testun isod, bobi linell i'r teitlau; a dewis p'un ai ydych chi eisiau'r diwygiad presennol a'r holl fersiynnau blaenorol, gyda hanes y dudalen; ynteu a ydych am y diwygiad presennol a'r wybodaeth am y golygiad diweddaraf yn unig.\n\nYn achos yr ail ddewis, mae modd defnyddio cyswllt, e.e. [[{{#Special:Export}}/{{MediaWiki:Mainpage}}]] ar gyfer y dudalen \"[[{{MediaWiki:Mainpage}}]]\".", @@ -2339,7 +2423,7 @@ "import-nonewrevisions": "Ni fewnforwyd unrhyw ddiwygiadau (y cwbl eisoes yn bresennol, neu wedi eu hepgor oherwydd eu bod yn wallus).", "xml-error-string": "$1 ar linell $2, col $3 (beit $4): $5", "import-upload": "Uwchlwytho data XML", - "import-token-mismatch": "Collwyd y data.\n\nEfallai i chi allgofnodi (logio allan).Cadarnhewch eich bod yn dal wedi mewngofnodi a cheisiwch eto\nOs yw'n parhau i fethu, ceisiwch [[Special:UserLogout|allgofnodi]] a mewngofnodwch drachefn, a gwirwch fod eich porwr yn caniatau cwcis o'r wefan hon.", + "import-token-mismatch": "Collwyd y data.\n\nEfallai i chi allgofnodi. '''Cadarnhewch eich bod yn dal wedi mewngofnodi a cheisiwch eto'''.\nOs yw'n parhau i fethu, ceisiwch [[Special:UserLogout|allgofnodi]] a mewngofnodwch drachefn, a gwirwch fod eich porwr yn caniatau cwcis o'r wefan hon.", "import-invalid-interwiki": "Ni ellir uwchlwytho o'r wici dewisedig.", "import-error-edit": "Ni fewnforiwyd y dudalen \"$1\" oherwydd nad yw'r gallu i'w golygu gennych.", "import-error-create": "Ni fewnforiwyd y dudalen \"$1\" oherwydd nad yw'r hawl i'w chreu gennych.", @@ -2365,7 +2449,9 @@ "tooltip-pt-preferences": "Eich dewisiadau", "tooltip-pt-watchlist": "Rydych yn dilyn hynt y tudalennau sydd ar y rhestr hon", "tooltip-pt-mycontris": "Rhestr o'ch cyfraniadau", + "tooltip-pt-anoncontribs": "Rhestr golygiadau o'r cyfeiriad IP hwn", "tooltip-pt-login": "Fe'ch anogir i fewngofnodi, er nad oes rhaid gwneud.", + "tooltip-pt-login-private": "Mae'n rhaid i chi fewngofnodi i ddefnyddio'r wici hwn", "tooltip-pt-logout": "Allgofnodi", "tooltip-pt-createaccount": "Rydym yn argymell eich bod yn creu cyfri ac yn menwgofnodi. Fodd bynnag, dydy hyn ddim yn orfodol", "tooltip-ca-talk": "Sgwrsio am y dudalen", @@ -2396,7 +2482,7 @@ "tooltip-feed-rss": "Porthiant RSS ar gyfer y dudalen hon", "tooltip-feed-atom": "Porthiant atom ar gyfer y dudalen hon", "tooltip-t-contributions": "Rhestr o gyfraniadau'r {{GENDER:$1|defnyddiwr hwn}}", - "tooltip-t-emailuser": "Anfonwch e-bost at y defnyddiwr hwn", + "tooltip-t-emailuser": "Anfonwch e-bost at {{GENDER:$1|y defnyddiwr hwn}}", "tooltip-t-info": "Mwy o wybodaeth am y dudalen hon", "tooltip-t-upload": "Uwchlwythwch ffeil delwedd, sain, fideo, ayb", "tooltip-t-specialpages": "Rhestr o'r holl dudalennau arbennig", @@ -2434,7 +2520,7 @@ "lastmodifiedatby": "Newidiwyd y dudalen hon ddiwethaf am $2, $1 gan $3.", "othercontribs": "Yn seiliedig ar waith gan $1.", "others": "eraill", - "siteusers": "y {{PLURAL:$2|defnyddiwr|defnyddiwr|defnyddwyr|defnyddwyr|defnyddwyr|defnyddwyr}} {{SITENAME}} $1", + "siteusers": "{{SITENAME}} {{PLURAL:$2|{{GENDER:$1|defnyddiwr}}|defnyddwyr}} $1", "anonusers": "{{PLURAL:$2|defnyddiwr|defnyddiwr|defnyddwyr|defnyddwyr|defnyddwyr|defnyddwyr}} {{SITENAME}} anhysbys $1", "creditspage": "Cydnabyddiaethau'r dudalen", "nocredits": "Does dim cydnabyddiaethau i'r dudalen hon.", @@ -2457,11 +2543,14 @@ "pageinfo-length": "Hyd y dudalen (beitiau)", "pageinfo-article-id": "ID y dudalen", "pageinfo-language": "Iaith cynnwys y dudalen", + "pageinfo-language-change": "newid", "pageinfo-content-model": "Ffurf cynnwys y dudalen", + "pageinfo-content-model-change": "newid", "pageinfo-robot-policy": "Rhestrwyd gan robot", "pageinfo-robot-index": "Caniateir", "pageinfo-robot-noindex": "Gwrthodedig", "pageinfo-watchers": "Nifer gwylwyr y dudalen", + "pageinfo-visiting-watchers": "Nifer y golygyddion sy'n gwylio'r ddalen, sydd hefyd wedi ymweld a'r golygiadau diweddaraf", "pageinfo-few-watchers": "Llai na $1 {{PLURAL:$1|gwyliwr|gwyliwr|wyliwr|gwyliwr|o wylwyr}}", "pageinfo-redirects-name": "Nifer yr ailgyfeiriadau i'r dudalen hon", "pageinfo-subpages-name": "Nifer yr is-dudalennau i'r dudalen hon", @@ -2487,9 +2576,11 @@ "pageinfo-protect-cascading-yes": "Oes", "pageinfo-protect-cascading-from": "Mae'r diogelu sgydol yn dechrau ar", "pageinfo-category-info": "Gwybodaeth am y categori", + "pageinfo-category-total": "Cyfanswm yr aelodau", "pageinfo-category-pages": "Nifer y tudalennau", "pageinfo-category-subcats": "Nifer yr is-gategorïau", "pageinfo-category-files": "Nifer y ffeiliau", + "pageinfo-user-id": "ID'r defnyddiwr", "markaspatrolleddiff": "Marcio ei bod wedi derbyn ymweliad patrôl", "markaspatrolledtext": "Marcio bod y dudalen wedi derbyn ymweliad patrôl", "markaspatrolledtext-file": "Marcio fod fersiwn y ffeil wedi cael ymweliad", @@ -2505,6 +2596,8 @@ "patrol-log-page": "Lòg patrolio", "patrol-log-header": "Mae'r lòg hwn yn dangos y golygiadau sydd wedi derbyn ymweliad patrôl.", "log-show-hide-patrol": "$1 lòg patrolio", + "confirm-markpatrolled-button": "Iawn", + "confirm-markpatrolled-top": "Nodi fod diwygiad $3 o $2 wedi cael sêl-bendith golygydd?", "deletedrevision": "Wedi dileu hen ddiwygiad $1.", "filedeleteerror-short": "Gwall wrth ddileu'r ffeil: $1", "filedeleteerror-long": "Cafwyd gwallau wrth ddileu'r ffeil:\n\n$1", @@ -2527,6 +2620,7 @@ "svg-long-error": "Ffeil SVG annilys: $1", "show-big-image": "Y ffeil gwreiddiol", "show-big-image-preview": "Maint y rhagolwg: $1.", + "show-big-image-preview-differ": "Maint rhagolwg $3 o ffeil $2 yw: $1.", "show-big-image-other": "{{PLURAL:$2|Datrysiad arall|Datrysiad arall|Datrysiadau eraill|Datrysiadau eraill|Datrysiadau eraill|Datrysiadau eraill}}: $1.", "show-big-image-size": "$1 × $2 picsel", "file-info-gif-looped": "dolennog", @@ -2541,8 +2635,13 @@ "newimages-summary": "Mae'r dudalen arbennig hon yn dangos y ffeiliau a uwchlwythwyd yn ddiweddar.", "newimages-legend": "Hidlo", "newimages-label": "Enw'r ffeil (neu ran ohono):", + "newimages-user": "Cyfeiriad IP neu enw defnyddiwr", + "newimages-newbies": "Dangos cyfraniadau cyfrifon newydd yn unig", "newimages-showbots": "Dangoswch uwchlwythiadau'r botiaid", + "newimages-hidepatrolled": "Cuddio uwchlwythiadau gwaith a ddilyswyd gan olygydd profiadol", + "newimages-mediatype": "Math o gyfrwng:", "noimages": "Does dim byd i'w weld.", + "gallery-slideshow-toggle": "Toglwch y cipluniau", "ilsubmit": "Chwilio", "bydate": "yn ôl dyddiad", "sp-newimages-showfrom": "Dangos ffeiliau sy'n newydd ers: $2, $1", @@ -2757,6 +2856,7 @@ "exif-compression-4": "Amgodio ffacs Grŵp 4 CCITT", "exif-copyrighted-true": "Hawlfraint", "exif-copyrighted-false": "Statws yr hawlfraint heb ei osod", + "exif-photometricinterpretation-1": "Du a gwyn (du yw 0)", "exif-unknowndate": "Dyddiad anhysbys", "exif-orientation-1": "Normal", "exif-orientation-2": "Wedi troi tu chwith ar lorwedd", @@ -2933,13 +3033,17 @@ "confirmemail_body_set": "Mae rhywun (chi, yn fwy na thebyg, o'r cyfeiriad IP $1) wedi gosod cyfeiriad e-bost y cyfrif \"$2\" ar {{SITENAME}} i'r cyfeiriad e-bost hwn.\n\nI gadarnhau mai chi yn wir yw perchennog y cyfrif hwn, ac i alluogi nodweddion e-bost ar {{SITENAME}}, agorwch y cyswllt hwn yn eich porwr:\n\n$3\n\nOs *nad* chi sydd berchen y cyfrif hwn, dilynwch y cyswllt hwn er mwyn diddymu cadarnhad y cyfeiriad e-bost:\n\n$5\n\nBydd y côd cadarnhau yn dod i ben am $4.", "confirmemail_invalidated": "Diddymwyd y weithred o gadarnhau'r cyfeiriad e-bost", "invalidateemail": "Diddymu cadarnhad y cyfeiriad e-bost.", + "notificationemail_subject_changed": "Mae cyfeiriad ebost {{SITENAME}} wedi'i newid", + "notificationemail_subject_removed": "Mae cyfeiriad ebost {{SITENAME}} wedi'i ddileu", + "notificationemail_body_changed": "Mae rhywun, efallai chi, o gyfeiriad IP $1,\nwedi newid cyfeiriad ebost cyfrif \"$2\" i \"$3\" ar {{SITENAME}}.\n\nOs nad y chi sy'n gyfrifol am hyn, yna cysylltwch ag un o'r Gweinyddwyr ar unwaith.", + "notificationemail_body_removed": "Mae rhywun, efallai chi, o gyfeiriad IP $1,\nwedi dileu cyfeiriad ebost cyfrif \"$2\" ar {{SITENAME}}.\n\nOs nad y chi sy'n gyfrifol am hyn, yna cysylltwch ag un o'r Gweinyddwyr ar unwaith.", "scarytranscludedisabled": "[Analluogwyd cynhwysiad rhyng-wici]", "scarytranscludefailed": "[Methwyd nôl y nodyn ar gyfer $1]", "scarytranscludefailed-httpstatus": "[Methwyd nôl y nodyn ar gyfer $1: HTTP $2]", "scarytranscludetoolong": "[Mae'r URL yn rhy hir]", "deletedwhileediting": "'''Rhybudd''': Dilëwyd y dudalen wedi i chi ddechrau ei golygu!", - "confirmrecreate": "Mae'r defnyddiwr [[User:$1|$1]] ([[User talk:$1|Sgwrs]]) wedi dileu'r dudalen hon ers i chi ddechrau ei golygu. Y rheswm a roddwyd yw:\n: ''$2''\nCadarnhewch eich bod chi wir am ail-greu'r dudalen.", - "confirmrecreate-noreason": "Dileodd y defnyddiwr [[User:$1|$1]] ([[User talk:$1|sgwrs]]) y dudalen hon wedi i chi ddechrau ei golygu. Cadarnhewch eich bod chi wir am ail-greu'r dudalen hon.", + "confirmrecreate": "Mae defnyddiwr [[User:$1|$1]] ([[User talk:$1|Sgwrs]]) wedi dileu'r ddalen hon ers i chi ddechrau ei golygu. Y rheswm a roddwyd yw:\n: $2\nCadarnhewch eich bod chi am ail-greu'r dudalen.", + "confirmrecreate-noreason": "Dileodd y defnyddiwr [[User:$1|$1]] ([[User talk:$1|sgwrs]]) y ddalen hon wedi i chi ddechrau ei golygu. Cadarnhewch eich bod chi am ail-greu'r ddalen hon.", "recreate": "Ail-greu", "confirm-purge-title": "Ailgyrchu'r ddalen", "confirm_purge_button": "Iawn", @@ -3005,6 +3109,7 @@ "timezone-local": "Lleol", "duplicate-defaultsort": "Rhybudd: Mae'r allwedd trefnu diofyn \"$2\" yn gwrthwneud yr allwedd trefnu diofyn blaenorol \"$1\".", "duplicate-displaytitle": "Gofal: Mae arddangos \"$2\" yn clirio'r arddangosiadau cynharach \"$1\".", + "restricted-displaytitle": "Rhybudd: Mae'n rhaid i'r teitl a anrddangosir \"$1\" fod yn hafal i union deitl y ddalen; anwybyddwyd y cais i'w newid.", "invalid-indicator-name": "Gan bwyll: Ni ddylid gadael y man nodi statws name yn wag.", "version": "Fersiwn", "version-extensions": "Estyniadau gosodedig", @@ -3051,8 +3156,8 @@ "version-libraries-license": "Trwydded", "version-libraries-description": "Disgrifiad", "version-libraries-authors": "Awduron", - "redirect": "Ailgyfeirio yn ôl enw ffeil, defnyddiwr, tudalen neu ID y diwygiad", - "redirect-summary": "Mae'r dudalen arbennig hon yn ailgyfeirio at ffeil (o roi enw'r ffeil), at dudalen (o roi ID rhyw ddiwygiad o'r dudalen neu ID y dudalen), neu at dudalen defnyddiwr (o roi rhif ID y defnyddiwr).\nDefnydd: \n[[{{#Special:Redirect}}/file/Example.jpg]], [[{{#Special:Redirect}}/page/64308]], [[{{#Special:Redirect}}/revision/328429]], neu [[{{#Special:Redirect}}/user/101]].", + "redirect": "Ailgyfeirio yn ôl enw ffeil, defnyddiwr, dalen neu log yr ID", + "redirect-summary": "Mae'r ddalen arbennig hon yn ailgyfeirio at ffeil (o roi enw'r ffeil), at ddalen (o roi ID rhyw ddiwygiad o'r ddalen neu ID y dudalen), neu at ddalen defnyddiwr (o roi rhif ID y defnyddiwr).\nDefnydd: \n[[{{#Special:Redirect}}/file/Example.jpg]], [[{{#Special:Redirect}}/page/64308]], [[{{#Special:Redirect}}/revision/328429]], neu [[{{#Special:Redirect}}/user/101]].", "redirect-submit": "Ati", "redirect-lookup": "Chwilio drwy:", "redirect-value": "Chwilio am:", @@ -3060,6 +3165,7 @@ "redirect-page": "ID tudalennau", "redirect-revision": "Rhifau diwygiadau tudalennau", "redirect-file": "Enwau ffeiliau", + "redirect-logid": "Log yr ID", "redirect-not-exists": "Heb lwyddo i'w ganfod", "fileduplicatesearch": "Chwilio am ffeiliau dyblyg", "fileduplicatesearch-summary": "Chwilier am ffeiliau dyblyg ar sail ei werth stwnsh.", @@ -3071,6 +3177,7 @@ "fileduplicatesearch-noresults": "Ni ddaethpwyd o hyd i ffeil o'r enw \"$1\".", "specialpages": "Tudalennau arbennig", "specialpages-note-top": "Allwedd", + "specialpages-note-restricted": "* Tudalennau arbennig agored.\n* Tudalennau arbennig a gyfyngir.", "specialpages-group-maintenance": "Adroddiadau cynnal a chadw", "specialpages-group-other": "Eraill", "specialpages-group-login": "Mewngofnodi / creu cyfrif", @@ -3116,6 +3223,8 @@ "tags-create-reason": "Rheswm:", "tags-create-submit": "Dechrau", "tags-create-no-name": "Mae'n rhaid nodi tag enw.", + "tags-create-already-exists": "Mae tag \"$1\" yn bodoli'n barod.", + "tags-delete-title": "Dileu tag", "comparepages": "Cymharu tudalennau", "compare-page1": "Tudalen 1", "compare-page2": "Tudalen 2", @@ -3125,6 +3234,7 @@ "compare-invalid-title": "Ysgrifennwyd teitl annilys.", "compare-title-not-exists": "Nid yw'r teitl a enwyd ar gael.", "compare-revision-not-exists": "Nid yw'r diwygiad a enwyd ar gael.", + "diff-form": "'''ffurflen'''", "dberr-problems": "Mae'n ddrwg gennym! Mae'r wefan hon yn dioddef anawsterau technegol.", "dberr-again": "Oedwch am ychydig funudau cyn ceisio ail-lwytho.", "dberr-info": "(Ni ellir cysylltu â chronfa ddata: $1)", @@ -3150,7 +3260,7 @@ "htmlform-cloner-required": "Mae angen o leiaf un peth!", "htmlform-title-not-exists": "Nid yw $1 yn bodoli.", "logentry-delete-delete": "Dileodd $1 dudalen $3", - "logentry-delete-restore": "Adferodd $1 y dudalen $3", + "logentry-delete-restore": "Adferodd $1 ddalen $3 ($4)", "logentry-delete-event": "Newidiodd $1 ymddangosiad {{PLURAL:$5||cofnod lòg|$5 gofnod lòg|$5 chofnod lòg|$5 chofnod lòg|$5 cofnod lòg}} ar $3: $4", "logentry-delete-revision": "{{GENDER:$2|Newidiodd}} $1 ymddangosiad {{PLURAL:$5||diwygiad|$5 ddiwygiad|$5 diwygiad}} o'r dudalen $3: $4", "logentry-delete-event-legacy": "{{GENDER:$2|Newidiodd}} $1 welededd cofnodion lòg ar $3", @@ -3193,6 +3303,7 @@ "feedback-bugornote": "Os ydych yn barod i ddisgrifio problem technegol yn fanwl gallwch [$1 gyflwyno adroddiad am y bỳg]. Fel arall, gallwch ddefnyddio'r ffurflen syml isod. Fe roddir eich sylwadau ar y dudalen \"[$3 $2]\", ynghyd â'ch enw defnyddiwr ac enw'r gweinydd sydd ar waith gennych.", "feedback-cancel": "Diddymer", "feedback-close": "Yn barod", + "feedback-dialog-title": "Rhowch adborth", "feedback-error1": "Gwall: Canlyniad anhysbys o'r API", "feedback-error2": "Gwall: Methodd y golygu", "feedback-error3": "Gwall: Dim ymateb gan yr API", @@ -3201,7 +3312,7 @@ "feedback-submit": "Cyflwyner", "feedback-thanks": "Diolch! Gosodwyd eich adborth ar y dudalen \"[$2 $1]\".", "feedback-thanks-title": "Diolch o galon!", - "searchsuggest-search": "Chwilio", + "searchsuggest-search": "Chwilio {{SITENAME}}", "searchsuggest-containing": "yn cynnwys...", "api-error-badtoken": "Gwall mewnol: tocyn gwael.", "api-error-emptypage": "Ni chaniateir dechrau tudalen newydd, a honno'n wag.", @@ -3303,20 +3414,28 @@ "special-characters-title-endash": "heiffen en", "special-characters-title-emdash": "heiffen em", "special-characters-title-minus": "arwydd minws", + "mw-widgets-dateinput-no-date": "Ni ddewisiwyd dyddiad", "mw-widgets-dateinput-placeholder-day": "BBBB-MM-DD", "mw-widgets-dateinput-placeholder-month": "BBBB-MM", + "mw-widgets-mediasearch-input-placeholder": "Chwiliwch am gyfryngau", + "mw-widgets-mediasearch-noresults": "Dim canlyniad.", + "mw-widgets-titleinput-description-new-page": "nid yw'r ddalen wedi'i chreu eto", + "mw-widgets-titleinput-description-redirect": "ailgyfeiriwyd i $1", "mw-widgets-categoryselector-add-category-placeholder": "Ychwanega gategori...", "mw-widgets-usersmultiselect-placeholder": "Ychwanega ragor...", "date-range-from": "O'r dyddiad:", "date-range-to": "Hyd at y dydiad:", + "randomrootpage": "Dalen graidd ar hap", "log-action-filter-block": "Math o floc:", "log-action-filter-block-block": "Bloc", "log-action-filter-block-reblock": "Newid y bloc", "log-action-filter-block-unblock": "Dadflocio", "log-action-filter-delete-delete": "Dileu dalennau", + "authmanager-retype-help": "Rhowch eich cyfrinair eto, i gadarnhau.", "authmanager-email-label": "Ebost", "authmanager-email-help": "Cyfeiriadau ebyst", "authmanager-realname-label": "Enw cywir", "authmanager-realname-help": "Enw cywir y defnyddiwr", + "authmanager-provider-temporarypassword": "Cyfrinair dros-dro", "credentialsform-account": "Enw'r cyfri:" } diff --git a/languages/i18n/de.json b/languages/i18n/de.json index 7e85931f5b..9d17b4374f 100644 --- a/languages/i18n/de.json +++ b/languages/i18n/de.json @@ -1394,7 +1394,6 @@ "rcfilters-restore-default-filters": "Standardfilter wiederherstellen", "rcfilters-clear-all-filters": "Alle Filter löschen", "rcfilters-show-new-changes": "Neueste Änderungen ansehen", - "rcfilters-previous-changes-label": "Zuletzt angesehene Änderungen", "rcfilters-search-placeholder": "Letzte Änderungen filtern (durchsuchen oder beginne mit der Eingabe)", "rcfilters-invalid-filter": "Ungültiger Filter", "rcfilters-empty-filter": "Keine aktiven Filter. Es werden alle Beiträge angezeigt.", @@ -1407,7 +1406,7 @@ "rcfilters-filterlist-noresults": "Keine Filter gefunden", "rcfilters-noresults-conflict": "Keine Ergebnisse gefunden, da sich die Suchkriterien in Konflikt befinden.", "rcfilters-state-message-subset": "Dieser Filter hat keinen Effekt, da seine Ergebnisse mit denen {{PLURAL:$2|des folgenden breiteren Filters|der folgenden breiteren Filter}} einbezogen sind (versuche die Hervorhebung, um sie zu unterscheiden): $1", - "rcfilters-state-message-fullcoverage": "Das Auswählen aller Filter in einer Gruppe ist das Gleiche wie das Auswählen keines Filters. Deshalb hat dieser Filter keinen Effekt. Die Gruppe enthält: $1", + "rcfilters-state-message-fullcoverage": "Das Auswählen aller Filter in dieser Gruppe ist das Gleiche wie das Auswählen keines Filters. Deshalb hat dieser Filter keinen Effekt. Die Gruppe enthält: $1", "rcfilters-filtergroup-authorship": "Beitrags-Autorenschaft", "rcfilters-filter-editsbyself-label": "Änderungen von dir", "rcfilters-filter-editsbyself-description": "Deine eigenen Beiträge.", @@ -2179,8 +2178,6 @@ "watching": "Beobachten …", "unwatching": "Nicht mehr beobachten …", "watcherrortext": "Beim Ändern der Beobachtungslisteneinstellungen für „$1“ ist ein Fehler aufgetreten.", - "watchlist-unwatch": "×", - "watchlist-unwatch-undo": "+", "enotif_reset": "Alle Seiten als besucht markieren", "enotif_impersonal_salutation": "{{SITENAME}}-Benutzer", "enotif_subject_deleted": "{{SITENAME}}-Seite $1 wurde von {{GENDER:$2|$2}} gelöscht", diff --git a/languages/i18n/en.json b/languages/i18n/en.json index 3497d80f97..a44b3cfd6a 100644 --- a/languages/i18n/en.json +++ b/languages/i18n/en.json @@ -1350,6 +1350,7 @@ "recentchanges-legend-unpatrolled": "{{int:recentchanges-label-unpatrolled}}", "recentchanges-legend-plusminus": "(±123)", "recentchanges-submit": "Show", + "rcfilters-tag-remove": "Remove '$1'", "rcfilters-legend-heading": "List of abbreviations:", "rcfilters-other-review-tools": "Other review tools", "rcfilters-group-results-by-page": "Group results by page", @@ -1362,6 +1363,7 @@ "rcfilters-hours-title": "Recent hours", "rcfilters-days-show-days": "$1 {{PLURAL:$1|day|days}}", "rcfilters-days-show-hours": "$1 {{PLURAL:$1|hour|hours}}", + "rcfilters-highlighted-filters-list": "Highlighted: $1", "rcfilters-quickfilters": "Saved filters", "rcfilters-quickfilters-placeholder-title": "No links saved yet", "rcfilters-quickfilters-placeholder-description": "To save your filter settings and reuse them later, click the bookmark icon in the Active Filter area, below.", @@ -1430,6 +1432,11 @@ "rcfilters-filter-watchlist-watchednew-description": "Changes to Watchlisted pages you haven't visited since the changes occurred.", "rcfilters-filter-watchlist-notwatched-label": "Not on Watchlist", "rcfilters-filter-watchlist-notwatched-description": "Everything except changes to your Watchlisted pages.", + "rcfilters-filtergroup-watchlistactivity": "Watchlist activity", + "rcfilters-filter-watchlistactivity-unseen-label": "Unseen changes", + "rcfilters-filter-watchlistactivity-unseen-description": "Changes to pages you haven't visited since the changes occurred.", + "rcfilters-filter-watchlistactivity-seen-label": "Seen changes", + "rcfilters-filter-watchlistactivity-seen-description": "Changes to pages you have visited since the changes occurred.", "rcfilters-filtergroup-changetype": "Type of change", "rcfilters-filter-pageedits-label": "Page edits", "rcfilters-filter-pageedits-description": "Edits to wiki content, discussions, category descriptions…", @@ -1461,6 +1468,7 @@ "rcfilters-liveupdates-button": "Live updates", "rcfilters-liveupdates-button-title-on": "Turn off live updates", "rcfilters-liveupdates-button-title-off": "Display new changes as they happen", + "rcfilters-watchlist-markSeen-button": "Mark all changes as seen", "rcnotefrom": "Below {{PLURAL:$5|is the change|are the changes}} since $3, $4 (up to $1 shown).", "rclistfromreset": "Reset date selection", "rclistfrom": "Show new changes starting from $2, $3", diff --git a/languages/i18n/et.json b/languages/i18n/et.json index acc6512bfe..07e100c5ac 100644 --- a/languages/i18n/et.json +++ b/languages/i18n/et.json @@ -59,13 +59,14 @@ "tog-shownumberswatching": "Näita jälgivate kasutajate hulka", "tog-oldsig": "Praegune allkiri:", "tog-fancysig": "Kasuta vikiteksti vormingus allkirja (ilma automaatse lingita kasutajalehele)", - "tog-uselivepreview": "Kasuta elavat eelvaadet", + "tog-uselivepreview": "Näita eelvaadet ilma lehekülge uuesti laadimata", "tog-forceeditsummary": "Nõua redigeerimisel resümee välja täitmist", "tog-watchlisthideown": "Peida minu redaktsioonid jälgimisloendist", "tog-watchlisthidebots": "Peida robotid jälgimisloendist", "tog-watchlisthideminor": "Peida pisiparandused jälgimisloendist", "tog-watchlisthideliu": "Peida sisselogitud kasutajate muudatused jälgimisloendist", "tog-watchlistreloadautomatically": "Laadi jälgimisloend mõne filtri muutmise järel koheselt uuesti (nõutav JavaScript)", + "tog-watchlistunwatchlinks": "Lisa jälgimisloendi sissekannete juurde jälgimisest loobumise või jälgimise otselingid (tumblerfunktsiooni jaoks nõutav JavaScript)", "tog-watchlisthideanons": "Peida anonüümsete kasutajate muudatused jälgimisloendist", "tog-watchlisthidepatrolled": "Peida kontrollitud muudatused jälgimisloendist", "tog-watchlisthidecategorization": "Peida lehekülgede kategoriseerimine", @@ -689,8 +690,8 @@ "permissionserrorstext-withaction": "Sul pole lubatud {{lcfirst:$2}} {{PLURAL:$1|järgmisel põhjusel|järgmistel põhjustel}}:", "contentmodelediterror": "Sa ei saa seda redaktsiooni redigeerida, sest selle sisumudel $1 erineb lehekülje praegusest sisumudelist $2.", "recreate-moveddeleted-warn": "'''Hoiatus: Lood uuesti lehekülge, mis on varem kustutatud.'''\n\nKaalu, kas lehekülje uuesti loomine on kohane.\nLehekülje eelnevad kustutamised ja teisaldamised:", - "moveddeleted-notice": "See lehekülg on kustutatud.\nAllpool on esitatud lehekülje kustutamis- ja teisaldamislogi.", - "moveddeleted-notice-recent": "Kahjuks on see lehekülg hiljuti kustutatud (viimase 24 tunni jooksul).\nAllpool on ära toodud selle lehekülje sissekanded teisaldamis- ja kustutamislogis.", + "moveddeleted-notice": "See lehekülg on kustutatud.\nAllpool on esitatud lehekülje kustutamis-, kaitsmis- ja teisaldamislogi.", + "moveddeleted-notice-recent": "Kahjuks on see lehekülg hiljuti kustutatud (viimase 24 tunni jooksul).\nAllpool on ära toodud selle lehekülje sissekanded teisaldamis-, kaitsmis- ja kustutamislogis.", "log-fulllog": "Vaata kogu logi", "edit-hook-aborted": "Laiendusliides katkestas muutmise täpsemat selgitust andmata.", "edit-gone-missing": "Polnud võimalik lehekülge uuendada.\nTundub, et see on kustutatud.", @@ -958,7 +959,7 @@ "prefs-editwatchlist-clear": "Tühjenda jälgimisloend", "prefs-watchlist-days": "Mitme päeva muudatusi näidata loendis:", "prefs-watchlist-days-max": "Ülemmäär $1 {{PLURAL:$1|päev|päeva}}", - "prefs-watchlist-edits": "Mitu muudatust näidatakse laiendatud jälgimisloendis:", + "prefs-watchlist-edits": "Mitut muudatust jälgimisloendis enim näidata:", "prefs-watchlist-edits-max": "Ülemmäär: 1000", "prefs-watchlist-token": "Jälgimisloendi luba:", "prefs-misc": "Muu", @@ -1273,7 +1274,9 @@ "recentchanges-legend-newpage": "{{int:recentchanges-label-newpage}} (vaata ka [[Special:NewPages|uute lehekülgede loendit]])", "recentchanges-submit": "Näita", "rcfilters-legend-heading": "Lühendite loetelu:", - "rcfilters-other-review-tools": "Muud ülevaatusriistad:", + "rcfilters-other-review-tools": "Muud ülevaatusriistad", + "rcfilters-group-results-by-page": "Rühmita tulemused lehekülje kaupa", + "rcfilters-grouping-title": "Rühmitamine", "rcfilters-activefilters": "Aktiivsed filtrid", "rcfilters-advancedfilters": "Täpsemad filtrid", "rcfilters-limit-title": "Näita nii mitut muudatust", @@ -1298,6 +1301,7 @@ "rcfilters-savedqueries-add-new-title": "Salvesta filtri praegused sätted", "rcfilters-restore-default-filters": "Taasta vaikefiltrid", "rcfilters-clear-all-filters": "Eemalda kõik filtrid", + "rcfilters-show-new-changes": "Vaata uusimaid muudatusi", "rcfilters-search-placeholder": "Filtri viimaseid muudatusi (sirvi või alusta tippimist)", "rcfilters-invalid-filter": "Vigane filter", "rcfilters-empty-filter": "Aktiivsed filtrid puuduvad. Näidatakse kogu kaastööd.", @@ -1370,11 +1374,14 @@ "rcfilters-tag-prefix-namespace-inverted": ":mitte $1", "rcfilters-exclude-button-off": "Jäta valitud välja", "rcfilters-exclude-button-on": "Valitud välja jäetud", + "rcfilters-view-advanced-filters-label": "Täpsemad filtrid", "rcfilters-view-tags": "Märgistatud muudatused", "rcfilters-view-namespaces-tooltip": "Filtri tulemusi nimeruumide lõikes", "rcfilters-view-tags-tooltip": "Filtri tulemusi muudatusmärgiste lõikes", "rcfilters-view-return-to-default-tooltip": "Naase filtri peamenüüsse", "rcfilters-liveupdates-button": "Uuendused reaalajas", + "rcfilters-liveupdates-button-title-on": "Lülita reaalajas uuendamine välja", + "rcfilters-liveupdates-button-title-off": "Näita uusi muudatusi kohe nende tegemise järel", "rcnotefrom": "Allpool on toodud {{PLURAL:$5|muudatus|muudatused}} alates: $3, kell $4 (näidatakse kuni $1 muudatust)", "rclistfromreset": "Lähtesta kuupäeva valik", "rclistfrom": "Näita muudatusi alates: $3, kell $2", @@ -2058,6 +2065,7 @@ "enotif_lastdiff": "Et seda muudatust näha, vaata: $1.", "enotif_anon_editor": "anonüümne kasutaja $1", "enotif_body": "Lugupeetud $WATCHINGUSERNAME\n\n$PAGEINTRO $NEWPAGE\n\nRedigeerija resümee: $PAGESUMMARY $PAGEMINOREDIT\n\nRedigeerijaga ühenduse võtmine:\ne-post: $PAGEEDITOR_EMAIL\nviki: $PAGEEDITOR_WIKI\n\nSeni kuni sa sisselogituna seda lehekülge ei külasta, selle leheküljega seotud toimingute kohta sulle uusi teavituse e-kirju ei saadeta. Jälgimisloendis saaksid kõigi jälgitavate lehekülgedega seotud teavitussätted ka lähtestada.\n\nAbivalmilt\n{{GRAMMAR:genitive|{{SITENAME}}}} teavitussüsteem\n\n--\nE-kirjatsi saabuvate teavituste sätteid saad muuta leheküljel\n{{canonicalurl:{{#special:Preferences}}}}.\n\nOma jälgimisloendi sätete muutmiseks mine leheküljele\n{{canonicalurl:Special:Watchlist/edit}}.\n\nLehekülje kustutamiseks jälgimisloendist mine leheküljele $UNWATCHURL.\n\nTagasiside ja abi:\n$HELPPAGE", + "enotif_minoredit": "See on pisimuudatus", "created": "loonud lehekülje", "changed": "muutnud lehekülge", "deletepage": "Kustuta lehekülg", @@ -2568,6 +2576,7 @@ "tooltip-pt-mycontris": "Sinu kaastööde loend", "tooltip-pt-anoncontribs": "Sellelt IP-aadressilt tehtud muudatuste loend", "tooltip-pt-login": "See pole küll kohustuslik, aga sul tasub sisse logida.", + "tooltip-pt-login-private": "Pead sisse logima, et seda vikit kasutada.", "tooltip-pt-logout": "Logi välja", "tooltip-pt-createaccount": "See pole küll kohustuslik, aga sul tasub konto luua ja sisse logida.", "tooltip-ca-talk": "Arutelu selle lehekülje sisu kohta", @@ -3446,6 +3455,13 @@ "compare-invalid-title": "Valitud pealkiri on vigane.", "compare-title-not-exists": "Valitud pealkirja ei ole.", "compare-revision-not-exists": "Valitud redaktsiooni ei ole.", + "diff-form": "Erinevused", + "diff-form-oldid": "Vana redaktsiooni identifikaator (valikuline)", + "diff-form-revid": "Erineva redaktsiooni identifikaator", + "diff-form-submit": "Näita erinevusi", + "permanentlink": "Püsilink", + "permanentlink-revid": "Redaktsiooni identifikaator", + "permanentlink-submit": "Mine redaktsiooni juurde", "dberr-problems": "Kahjuks on sellel saidil tehnilisi probleeme", "dberr-again": "Oota mõni hetk ja laadi lehekülg uuesti.", "dberr-info": "(Juurdepääs andmebaasile puudub: $1)", @@ -3820,11 +3836,15 @@ "authpage-cannot-create-continue": "Konto loomisega ei õnnestu jätkata. Suure tõenäosusega on sinu seansi ajalõpp möödunud.", "authpage-cannot-link": "Konto linkimisega ei õnnestu alustada.", "authpage-cannot-link-continue": "Konto linkimisega ei õnnestu jätkata. Suure tõenäosusega on sinu seansi ajalõpp möödunud.", + "cannotauth-not-allowed-title": "Juurdepääs puudub", + "cannotauth-not-allowed": "Sul pole lubatud seda lehekülge kasutada.", "changecredentials": "Autentimisandmete muutmine", "changecredentials-submit": "Muuda autentimisandmed", + "changecredentials-invalidsubpage": "$1 pole sobiv autentimisandmete tüüp.", "changecredentials-success": "Sinu autentimisandmed on muudetud.", "removecredentials": "Autentimisandmete eemaldamine", "removecredentials-submit": "Eemalda autentimisandmed", + "removecredentials-invalidsubpage": "$1 pole sobiv autentimisandmete tüüp.", "removecredentials-success": "Sinu autentimisandmed on eemaldatud.", "credentialsform-provider": "Andmete tüüp:", "credentialsform-account": "Konto nimi:", diff --git a/languages/i18n/fa.json b/languages/i18n/fa.json index 1afd0c0149..b4806545f0 100644 --- a/languages/i18n/fa.json +++ b/languages/i18n/fa.json @@ -349,7 +349,7 @@ "nospecialpagetext": "شما یک صفحهٔ ویژهٔ نامجاز را درخواست کرده‌اید.\n\nفهرستی از صفحه‌های ویژهٔ مجاز در [[Special:SpecialPages|{{int:specialpages}}]] وجود دارد.", "error": "خطا", "databaseerror": "خطای پایگاه داده", - "databaseerror-text": "مشکلی در پایگاه‌داده‌ها رخ داد. \nاین ممکن است نشان‌دهندهٔ ایرادی در نرم‌افزار باشد.", + "databaseerror-text": "مشکلی در پرسمان از پایگاه داده رخ داد. \nاین ممکن است نشان‌دهندهٔ ایرادی در نرم‌افزار باشد.", "databaseerror-textcl": "یک خطا در پرسمان پایگاه داده رخ داد.", "databaseerror-query": "پرسمان: $1", "databaseerror-function": "تابع: $1", @@ -1222,7 +1222,7 @@ "right-mergehistory": "ادغام تاریخچهٔ صفحات", "right-userrights": "ویرایش تمام اختیارات کاربرها", "right-userrights-interwiki": "ویرایش اختیارات کاربرهای ویکی‌های دیگر", - "right-siteadmin": "قفل‌کردن و بازکردن پایگاه داده‌ها", + "right-siteadmin": "قفل‌کردن و بازکردن پایگاه‌های داده", "right-override-export-depth": "برون‌بری صفحه‌ها شامل صفحه‌های پیوند شده تا عمق ۵", "right-sendemail": "ارسال ایمیل به دیگر کاربران", "right-managechangetags": "ایجاد و غیرفعال کردن [[Special:Tags|برچسب‌ها]]", @@ -1304,7 +1304,7 @@ "action-mergehistory": "ادغام تاریخچهٔ این صفحه", "action-userrights": "ویرایش همهٔ اختیارات کاربری", "action-userrights-interwiki": "ویرایش اختیارات کاربری کاربران یک ویکی دیگر", - "action-siteadmin": "قفل‌کردن و بازکردن پایگاه داده‌ها", + "action-siteadmin": "قفل‌کردن و بازکردن پایگاه‌های داده", "action-sendemail": "ارسال ایمیل", "action-editmyoptions": "ویرایش ترجیحاتتان", "action-editmywatchlist": "فهرست پیگیری‌های خود را ویرایش کنید", @@ -1363,7 +1363,6 @@ "rcfilters-restore-default-filters": "بازگردانی پالایه‌های پیش‌فرض", "rcfilters-clear-all-filters": "پاک‌کردن تمام پالایه‌ها", "rcfilters-show-new-changes": "دیدن جدیدترین تغییرات", - "rcfilters-previous-changes-label": "تغییرات قبلاً دیده شده", "rcfilters-search-placeholder": "پالایش تغییرات اخیر (جستجو یا شروع به تایپ)", "rcfilters-invalid-filter": "پالایهٔ نامعتبر", "rcfilters-empty-filter": "پالایه‌ای فعال نیست. همهٔ مشارکت‌های دیده می‌شوند.", @@ -2173,7 +2172,7 @@ "delete-legend": "حذف", "historywarning": "هشدار: صفحه‌ای که در حال پاک کردن آن هستید دارای یک تاریخچه همراه با $1 {{PLURAL:$1|بازبینی|بازبینی}} است:", "historyaction-submit": "نمایش", - "confirmdeletetext": "شما در حال حذف کردن یک صفحه یا تصویر از پایگاه داده‌ها همراه با تمام تاریخچهٔ آن هستید.\nلطفاً این عمل را تأیید کنید و اطمینان حاصل کنید که عواقب این کار را می‌دانید و این عمل را مطابق با [[{{MediaWiki:Policy-url}}|سیاست‌ها]] انجام می‌دهید.", + "confirmdeletetext": "شما در حال حذف کردن یک صفحه یا تصویر از پایگاه‌های داده همراه با تمام تاریخچهٔ آن هستید.\nلطفاً این عمل را تأیید کنید و اطمینان حاصل کنید که عواقب این کار را می‌دانید و این عمل را مطابق با [[{{MediaWiki:Policy-url}}|سیاست‌ها]] انجام می‌دهید.", "actioncomplete": "عمل انجام شد", "actionfailed": "عمل ناموفق بود", "deletedtext": "«$1» حذف شد.\nبرای سابقهٔ حذف‌های اخیر به $2 مراجعه کنید.", diff --git a/languages/i18n/fr.json b/languages/i18n/fr.json index 0f95c8c546..41c6c5c92f 100644 --- a/languages/i18n/fr.json +++ b/languages/i18n/fr.json @@ -1469,7 +1469,6 @@ "rcfilters-restore-default-filters": "Rétablir les filtres par défaut", "rcfilters-clear-all-filters": "Effacer tous les filtres", "rcfilters-show-new-changes": "Afficher les modifications les plus récentes", - "rcfilters-previous-changes-label": "Modifications précédemment affichées", "rcfilters-search-placeholder": "Filtrer les modifications récentes (naviguer ou commencer à saisir)", "rcfilters-invalid-filter": "Filtre non valide", "rcfilters-empty-filter": "Aucun filtre actif. Toutes les contributions sont affichées.", @@ -1482,7 +1481,7 @@ "rcfilters-filterlist-noresults": "Aucun filtre trouvé", "rcfilters-noresults-conflict": "Aucun résultat trouvé car les critères de recherche sont en conflit", "rcfilters-state-message-subset": "Ce filtre n'a aucun effet, parce que ses résultats sont inclus dans ceux de la recherche suivante, {{PLURAL:$2|filtre plus étendu|filtres plus étendus}} (essayez la mise en forme pour le différencier): $1", - "rcfilters-state-message-fullcoverage": "Sélectionner tous les filtres dans un groupe est la même chose que d'en sélectionner aucun, aussi ce filtre n'a aucun effet. Le groupe comprend: $1", + "rcfilters-state-message-fullcoverage": "Sélectionner tous les filtres dans ce groupe est la même chose que de n’en sélectionner aucun, aussi ce filtre n’a aucun effet. Le groupe comprend : $1", "rcfilters-filtergroup-authorship": "Paternité des contributions", "rcfilters-filter-editsbyself-label": "Modifications faites par vous", "rcfilters-filter-editsbyself-description": "Vos propres contributions.", @@ -2256,8 +2255,6 @@ "watching": "Suivi…", "unwatching": "Fin du suivi…", "watcherrortext": "Une erreur s'est produite lors de la modification des paramètres de votre liste de suivi pour « $1 ».", - "watchlist-unwatch": "×", - "watchlist-unwatch-undo": "+", "enotif_reset": "Marquer toutes les pages comme visitées", "enotif_impersonal_salutation": "Utilisateur de {{SITENAME}}", "enotif_subject_deleted": "La page $1 sur {{SITENAME}} a été {{GENDER:$2|supprimée}} par $2", diff --git a/languages/i18n/frr.json b/languages/i18n/frr.json index f2fe8568ce..8802a8efdc 100644 --- a/languages/i18n/frr.json +++ b/languages/i18n/frr.json @@ -1814,7 +1814,7 @@ "excontentauthor": "Diar sted: „$1“, an di iansagst bewerker wiar: [[Special:Contributions/$2|$2]] ([[User talk:$2|Diskuschuun]])", "exbeforeblank": "diar sted föör't leesag maagin: „$1“", "delete-confirm": "Strik \"$1\"", - "delete-legend": "Strike", + "delete-legend": "Strik", "historywarning": "Paase üüb: Det sidj, wat dü strik wel, hää $1 {{PLURAL:$1|werjuun|werjuunen}}:", "confirmdeletetext": "Dü wel en sidj mä aal sin werjuunen strik. Dü skel gudkään, dat dü witjst, wat dü dääst an dat din dun mä a [[{{MediaWiki:Policy-url}}|brükerreegeln]] auerian stemet.", "actioncomplete": "Klaar", diff --git a/languages/i18n/gl.json b/languages/i18n/gl.json index de2a3c2cca..0278da51cf 100644 --- a/languages/i18n/gl.json +++ b/languages/i18n/gl.json @@ -61,6 +61,7 @@ "tog-watchlisthideminor": "Agochar as edicións pequenas na lista de vixilancia", "tog-watchlisthideliu": "Agochar as edicións dos usuarios rexistrados na lista de vixilancia", "tog-watchlistreloadautomatically": "Recargar a lista de vixilancia automaticamente cando se produza un cambio nun filtro (necesítase JavaScript)", + "tog-watchlistunwatchlinks": "Engadir ligazóns directos para vixiar ou deixar de vixiar as entradas da lista de páxinas vixiadas (é necesario JavaScript para activar a funcionalidade)", "tog-watchlisthideanons": "Agochar as edicións dos usuarios anónimos na lista de vixilancia", "tog-watchlisthidepatrolled": "Agochar as edicións patrulladas na lista de vixilancia", "tog-watchlisthidecategorization": "Agochar a categorización das páxinas", @@ -719,7 +720,7 @@ "permissionserrorstext-withaction": "Non ten os permisos necesarios para $2, {{PLURAL:$1|pola seguinte razón|polas seguintes razóns}}:", "contentmodelediterror": "Non pode editar esta revisión porque o seu modelo de contido é \"$1\", o cal difire do modelo de contido \"$2\", que é o actual da páxina.", "recreate-moveddeleted-warn": "'''Atención: Vai volver crear unha páxina que xa foi eliminada anteriormente.'''\n\nDebería considerar se é apropiado continuar a editar esta páxina.\nVelaquí están o rexistro de borrados e mais o de traslados desta páxina, por se quere consultalos:", - "moveddeleted-notice": "Esta páxina foi borrada.\nA continuación pódese ver o rexistro de borrados e traslados desta páxina, por se quere consultalos.", + "moveddeleted-notice": "Esta páxina foi borrada.\nO rexistro de borrados, protección e traslados desta páxina amósase abaixo, por se quere consultalos.", "moveddeleted-notice-recent": "Sentímolo, borrouse esta páxina recentemente (nas últimas 24 horas).\nVelaquí están o rexistro de borrados, proteccións e traslados da páxina, por se os quere consultar.", "log-fulllog": "Ver o rexistro completo", "edit-hook-aborted": "A edición foi abortada polo asociador.\nEste non deu ningunha explicación.", @@ -1340,7 +1341,6 @@ "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-previous-changes-label": "Modificacións vistas anteriormente", "rcfilters-search-placeholder": "Filtrar os cambios recentes (ollar ou comezar a escribir)", "rcfilters-invalid-filter": "Filtro no válido", "rcfilters-empty-filter": "Non hai filtros activos. Móstranse tódalas contribucións.", @@ -2131,8 +2131,6 @@ "watching": "Vixiando...", "unwatching": "Deixando de vixiar...", "watcherrortext": "Houbo un erro ao cambiar as súas opcións de vixilancia para a páxina \"$1\".", - "watchlist-unwatch": "×", - "watchlist-unwatch-undo": "+", "enotif_reset": "Marcar todas as páxinas como visitadas", "enotif_impersonal_salutation": "Usuario de {{SITENAME}}", "enotif_subject_deleted": "{{GENDER:$2|$2}} borrou a páxina chamada \"$1\" en {{SITENAME}}", diff --git a/languages/i18n/got.json b/languages/i18n/got.json index fd90bda66e..c317226d97 100644 --- a/languages/i18n/got.json +++ b/languages/i18n/got.json @@ -92,10 +92,6 @@ "mytalk": "𐌲𐌰𐍅𐌰𐌿𐍂𐌳𐌾𐌰", "navigation": "𐌻𐌰𐌿𐌱𐌰𐌲𐌰𐍅𐌹𐍃𐍃𐌴𐌹𐍃", "and": "𐌾𐌰𐌷", - "qbfind": "𐌱𐌹𐌲𐌹𐍄", - "qbedit": "𐌹𐌽𐌼𐌰𐌹𐌳𐌴𐌹", - "qbpageoptions": "𐍃𐌰 𐌻𐌰𐌿𐍆𐍃", - "qbmyoptions": "𐌼𐌴𐌹𐌽𐌰𐌹 𐌻𐌰𐌿𐌱𐍉𐍃", "actions": "𐍄𐍉𐌾𐌰", "namespaces": "𐌽𐌰𐌼𐌰𐍂𐌿𐌼𐌰", "variants": "𐌼𐌹𐍃𐍃𐌰𐌻𐌴𐌹𐌺", @@ -116,25 +112,17 @@ "view-foreign": "𐍃𐌰𐌹𐍈 𐌰𐌽𐌰 $1", "edit": "𐌹𐌽𐌼𐌰𐌹𐌳𐌴𐌹", "create": "𐍃𐌺𐌰𐍀𐌴𐌹", - "editthispage": "𐌹𐌽𐌼𐌰𐌹𐌳𐌴𐌹 𐌸𐌰𐌽𐌰 𐌻𐌰𐌿𐍆", - "create-this-page": "𐍃𐌺𐌰𐍀𐌴𐌹 𐌸𐌰𐌽𐌰 𐌻𐌰𐌿𐍆", "delete": "𐍆𐍂𐌰𐌵𐌹𐍃𐍄𐌴𐌹", - "deletethispage": "𐍆𐍂𐌰𐌵𐌹𐍃𐍄𐌴𐌹 𐌸𐌰𐌼𐌼𐌰 𐌻𐌰𐌿𐌱𐌰", - "undeletethispage": "𐌽𐌰𐍃𐌴𐌹 𐌸𐌰𐌽𐌰 𐌻𐌰𐌿𐍆", "protect": "𐍆𐍂𐌹𐌸", "protect_change": "𐌹𐌽𐌼𐌰𐌹𐌳𐌴𐌹", - "protectthispage": "𐍆𐍂𐌹𐌸 𐌸𐌰𐌽𐌰 𐌻𐌰𐌿𐍆", "unprotect": "𐌹𐌽𐌼𐌰𐌹𐌳𐌴𐌹 𐌼𐌿𐌽𐌳", - "unprotectthispage": "𐌹𐌽𐌼𐌰𐌹𐌳𐌴𐌹 𐌼𐌿𐌽𐌳 𐌸𐌹𐍃 𐌻𐌰𐌿𐌱𐌹𐍃", "newpage": "𐌽𐌹𐌿𐌾𐌹𐍃 𐌻𐌰𐌿𐍆𐍃", - "talkpage": "𐍂𐍉𐌳𐌴𐌹 𐌱𐌹 𐌸𐌰𐌽𐌰 𐌻𐌰𐌿𐍆", "talkpagelinktext": "𐌲𐌰𐍅𐌰𐌿𐍂𐌳𐌾𐌰", "specialpage": "𐌿𐍃𐍃𐌹𐌽𐌳𐍃 𐌻𐌰𐌿𐍆𐍃", "personaltools": "𐍃𐍅𐌴𐍃𐌰𐌹 𐍃𐌰𐍂𐍅𐌰𐌽𐍃", "talk": "𐌲𐌰𐍅𐌰𐌿𐍂𐌳𐌾𐌰", "views": "𐍃𐌹𐌿𐌽𐌴𐌹𐍃", "toolbox": "𐍃𐌰𐍂𐍅𐌰𐌽𐍃", - "projectpage": "𐌰𐌽𐌳𐌷𐌿𐌻𐌴𐌹 𐍆𐌰𐌿𐍂𐌰𐍅𐌰𐌿𐍂𐍀𐌰𐌻𐌰𐌿𐍆", "mediawikipage": "𐌰𐌽𐌳𐌷𐌿𐌻𐌴𐌹 𐍅𐌰𐌿𐍂𐌳𐌰𐌻𐌰𐌿𐍆", "viewhelppage": "𐌰𐌽𐌳𐌷𐌿𐌻𐌴𐌹 𐌷𐌹𐌻𐍀𐌰𐌻𐌰𐌿𐍆", "otherlanguages": "𐌰𐌽𐌸𐌰𐍂𐌰𐌹𐌼 𐍂𐌰𐌶𐌳𐍉𐌼", diff --git a/languages/i18n/gu.json b/languages/i18n/gu.json index 1d9f503f83..6bfcda3a22 100644 --- a/languages/i18n/gu.json +++ b/languages/i18n/gu.json @@ -1077,8 +1077,15 @@ "recentchanges-legend-heading": "કળ:", "recentchanges-legend-newpage": "{{int:recentchanges-label-newpage}} ([[Special:NewPages|નવા પાનાઓની યાદી]] પણ જુઓ)", "recentchanges-submit": "બતાવો", + "rcfilters-legend-heading": "સંક્ષેપોની યાદી:", "rcfilters-other-review-tools": "અન્ય ચકાસણી સાધનો", + "rcfilters-activefilters": "સક્રિય ગાળકો", + "rcfilters-limit-title": "દર્શાવવાના ફેરફારો", + "rcfilters-limit-shownum": "છેલ્લા {{PLURAL:$1|ફેરફાર|$1 ફેરફારો}} દર્શાવો", + "rcfilters-days-title": "તાજેતરના દિવસો", + "rcfilters-hours-title": "તાજેતરના કલાકો", "rcfilters-savedqueries-cancel-label": "રદ કરો", + "rcfilters-show-new-changes": "તાજેતરના ફેરફારો દર્શાવો", "rcnotefrom": "નીચે $3, $4 થી {{PLURAL:$5|ફેરફાર|ફેરફારો}} દર્શાવેલ છે ($1 સુધી દર્શાવેલ છે).", "rclistfrom": "$3 $2 બાદ થયેલા નવા ફેરફારો બતાવો", "rcshowhideminor": "નાના ફેરફારો $1", diff --git a/languages/i18n/he.json b/languages/i18n/he.json index 543fa69bce..36160b50c0 100644 --- a/languages/i18n/he.json +++ b/languages/i18n/he.json @@ -1339,7 +1339,6 @@ "rcfilters-restore-default-filters": "שחזור למסנני ברירת המחדל", "rcfilters-clear-all-filters": "מחיקת כל המסננים", "rcfilters-show-new-changes": "הצגת השינויים החדשים ביותר", - "rcfilters-previous-changes-label": "שינויים שהוצגו בעבר", "rcfilters-search-placeholder": "סינון שינויים אחרונים (עיינו או התחילו להקליד)", "rcfilters-invalid-filter": "מסנן בלתי־תקין", "rcfilters-empty-filter": "אין מסננים פעילים. כל התרומות מוצגות.", @@ -1352,7 +1351,7 @@ "rcfilters-filterlist-noresults": "לא נמצאו מסננים", "rcfilters-noresults-conflict": "לא נמצאו תוצאות משום שקריטריוני החיפוש מתנגשים", "rcfilters-state-message-subset": "המסנן הזה אינו משפיע כי התוצאות שלו כלולות {{PLURAL:$2|במסנן הרחב יותר הבא|במסננים הרחבים יותר הבאים}} (נסו להדגיש כדי להבדיל ביניהם): $1", - "rcfilters-state-message-fullcoverage": "בחירת כל המסננים בקבוצה זהה לביטול כל הבחירות, אז למסנן הזה אין השפעה. הקבוצה כוללת: $1", + "rcfilters-state-message-fullcoverage": "בחירת כל המסננים בקבוצה זו זהה לביטול כל הבחירות, אז למסנן הזה אין השפעה. הקבוצה כוללת: $1", "rcfilters-filtergroup-authorship": "מבצעי התרומה", "rcfilters-filter-editsbyself-label": "שינויים שלך", "rcfilters-filter-editsbyself-description": "תרומות שביצעת בעצמך.", @@ -1391,6 +1390,11 @@ "rcfilters-filter-watchlist-watchednew-description": "שינויים לדפים ברשימת המעקב שלא ביקרת בהם מאז שבוצעו השינויים.", "rcfilters-filter-watchlist-notwatched-label": "לא ברשימת המעקב", "rcfilters-filter-watchlist-notwatched-description": "הכל מלבד שינויים לדפים ברשימת המעקב שלך.", + "rcfilters-filtergroup-watchlistactivity": "פעילות ברשימת המעקב", + "rcfilters-filter-watchlistactivity-unseen-label": "שינויים שלא נצפו", + "rcfilters-filter-watchlistactivity-unseen-description": "שינויים בדפים שלא ביקרת בהם מאז שבוצעו השינויים.", + "rcfilters-filter-watchlistactivity-seen-label": "שינויים שנצפו", + "rcfilters-filter-watchlistactivity-seen-description": "שינויים בדפים שביקרת בהם מאז שבוצעו השינויים.", "rcfilters-filtergroup-changetype": "סוג השינויים", "rcfilters-filter-pageedits-label": "עריכות דפים", "rcfilters-filter-pageedits-description": "עריכות של תוכן ויקי, של דיונים, של תיאורי קטגוריות…", @@ -1420,6 +1424,7 @@ "rcfilters-liveupdates-button": "עדכונים חיים", "rcfilters-liveupdates-button-title-on": "כיבוי העדכונים החיים", "rcfilters-liveupdates-button-title-off": "הצגת שינויים חדשים כשהם מתרחשים", + "rcfilters-watchlist-markSeen-button": "סימון כל השינויים כאילו נצפו", "rcnotefrom": "להלן {{PLURAL:$5|השינוי שבוצע|השינויים שבוצעו}} מאז $3, $4 (מוצגים עד $1).", "rclistfromreset": "איפוס בחירת התאריך", "rclistfrom": "הצגת שינויים חדשים החל מ־$2, $3", @@ -2125,8 +2130,6 @@ "watching": "בהוספה לרשימת המעקב...", "unwatching": "בהסרה מרשימת המעקב...", "watcherrortext": "אירעה שגיאה בעת שינוי הגדרות רשימת המעקב של \"$1\".", - "watchlist-unwatch": "×", - "watchlist-unwatch-undo": "+", "enotif_reset": "סימון כל הדפים כאילו נצפו", "enotif_impersonal_salutation": "משתמש ב{{GRAMMAR:תחילית|{{SITENAME}}}}", "enotif_subject_deleted": "הדף \"$1\" ב{{grammar:תחילית|{{SITENAME}}}} נמחק על־ידי $2", diff --git a/languages/i18n/hi.json b/languages/i18n/hi.json index 001cee929b..264f7dcdc5 100644 --- a/languages/i18n/hi.json +++ b/languages/i18n/hi.json @@ -775,8 +775,8 @@ "permissionserrorstext-withaction": "आपको $2 की अनुमति नहीं हैं, निम्नलिखित {{PLURAL:$1|कारण|कारणों}} की वजह से:", "contentmodelediterror": "आप इस पृष्ठ का इतिहास में सम्पादन नहीं कर सकते हैं क्योंकि इसका सामग्री $1, जो की वर्तमान सामग्री से $2 अलग है।", "recreate-moveddeleted-warn": "'''चेतावनी: आप एक पहले हटाए गए पृष्ठ को पुनर्निर्मित कर रहे हैं।'''\n\nआप को विचार करना चाहिये कि क्या इस पृष्ठ का संपादन जारी रखना उचित होगा।\nइस पृष्ट के हटाने व स्थानांतरण का लॉग सुविधा के लिये उपलब्ध है:", - "moveddeleted-notice": "यह पृष्ठ हटाया जा चुका है।\nपृष्ठ के हटाने और स्थानांतरण का लॉग संदर्भ के लिए नीचे दिया गया है।", - "moveddeleted-notice-recent": "क्षमा करें, यह पृष्ठ कुछ ही समय पहले हटाया गया है। (24 घण्टों के भीतर)\nइसके हटाये और स्थानांतरित करने का लोग नीचे दिया हुआ है।", + "moveddeleted-notice": "इस पेज को हटाया जा चुका है। पृष्ठ के लिए हटाने, सुरक्षा, और कदम लॉग संदर्भ के लिए नीचे दिए गए हैं।", + "moveddeleted-notice-recent": "क्षमा करें, यह पृष्ठ हाल ही में हटा दिया गया था (पिछले 24 घंटों के भीतर)। पृष्ठ के लिए हटाने, सुरक्षा, और कदम लॉग संदर्भ के लिए नीचे दिए गए हैं।", "log-fulllog": "पूरा लॉग देखें", "edit-hook-aborted": "फंदे द्वारा संपादन बीच में ही छोड़ा गया।\nउसने कोई कारण नहीं बताया।", "edit-gone-missing": "पृष्ठ अद्यतित न किया जा सका।\nलगता है यह हटा दिया गया है।", @@ -1362,9 +1362,12 @@ "recentchanges-submit": "दिखाएँ", "rcfilters-legend-heading": "संकेतों की सूची:", "rcfilters-other-review-tools": "दूसरे समीक्षा उपकरण", + "rcfilters-group-results-by-page": "पेज द्वारा समूह परिणाम", + "rcfilters-grouping-title": "समूहीकरण", "rcfilters-activefilters": "सक्रिय फिल्टर", + "rcfilters-advancedfilters": "उन्नत फ़िल्टर", "rcfilters-limit-title": "दिखाने के लिए बदलाव", - "rcfilters-limit-shownum": "पिछले $1 बदलाव दिखायें", + "rcfilters-limit-shownum": "पिछला दिखाएं {{PLURAL:$1|change|$1 changes}}", "rcfilters-days-title": "कुछ दिनों के", "rcfilters-hours-title": "कुछ घंटों के", "rcfilters-days-show-days": "$1 {{PLURAL:$1|दिन}}", @@ -1380,12 +1383,12 @@ "rcfilters-savedqueries-new-name-label": "नाम", "rcfilters-savedqueries-new-name-placeholder": "फ़िल्टर का उद्देश्य समझाएँ", "rcfilters-savedqueries-apply-label": "फ़िल्टर बनायें", + "rcfilters-savedqueries-apply-and-setdefault-label": "डिफ़ॉल्ट फ़िल्टर बनाएं", "rcfilters-savedqueries-cancel-label": "रद्द करें", "rcfilters-savedqueries-add-new-title": "वर्तमान फ़िल्टर सेटिंग को सहेजें", "rcfilters-restore-default-filters": "मूलभूत फिल्टर पुनर्स्थापित करे", "rcfilters-clear-all-filters": "सभी फिल्टर हटाएँ", "rcfilters-show-new-changes": "नवीनतम बदलाव दिखाएँ", - "rcfilters-previous-changes-label": "पिछले देखे बदलाव", "rcfilters-search-placeholder": "हाल में हुए बदलाव फ़िल्टर (ब्राउज़ या टाइप करना आरंभ करें)", "rcfilters-invalid-filter": "अमान्य फ़िल्टर", "rcfilters-empty-filter": "कोई सक्रिय फिल्टर नहीं। सभी योगदान दिखाए गए है।", @@ -1398,23 +1401,23 @@ "rcfilters-filterlist-noresults": "कोई फिल्टर नहीं पाया", "rcfilters-noresults-conflict": "कोई भी परिणाम नहीं मिला क्योंकि खोज मापदंड संघर्ष में है", "rcfilters-state-message-subset": "इस फिल्टर का कोई प्रभाव नहीं है क्योंकि इसका परिणाम निम्न, व्यापक {{PLURAL: $2 |फ़िल्टर|फिल्टर}} के साथ शामिल है (इसे भेद करने के लिए हाइलाइट करने की कोशिश करें): $1", - "rcfilters-state-message-fullcoverage": "किसी समूह में सभी फ़िल्टर चुनना कोई भी नहीं चुनने के समान है इसलिए इस फ़िल्टर का कोई प्रभाव नहीं है समूह में शामिल हैं: $1", + "rcfilters-state-message-fullcoverage": "किसी समूह में सभी फ़िल्टर चुनना कोई भी नहीं चुनने के समान है, इसलिए इस फ़िल्टर का कोई प्रभाव नहीं है, समूह में शामिल हैं: $1", "rcfilters-filtergroup-authorship": "लेखक योगदान", "rcfilters-filter-editsbyself-label": "आपके द्वारा बदलाव", "rcfilters-filter-editsbyself-description": "आपके अपने योगदान।", "rcfilters-filter-editsbyother-label": "दूसरों के द्वारा बदलाव", "rcfilters-filter-editsbyother-description": "आपके बदलावों को छोड़ कर सभी के बदलाव।", - "rcfilters-filtergroup-userExpLevel": "अनुभव स्तर (केवल पंजीकृत सदस्यों के लिए)", + "rcfilters-filtergroup-userExpLevel": "उपयोगकर्ता पंजीकरण और अनुभव", "rcfilters-filter-user-experience-level-registered-label": "पंजीकृत", "rcfilters-filter-user-experience-level-registered-description": "लॉग-इन संपादक।", "rcfilters-filter-user-experience-level-unregistered-label": "अपंजीकृत", - "rcfilters-filter-user-experience-level-unregistered-description": "संपादक जो लॉग इन नहीं हैं।", + "rcfilters-filter-user-experience-level-unregistered-description": "संपादक जो लॉग-इन नहीं हैं।", "rcfilters-filter-user-experience-level-newcomer-label": "अपरिचित", - "rcfilters-filter-user-experience-level-newcomer-description": "4 दिनों की गतिविधि और 10 सम्पादन से कम।", + "rcfilters-filter-user-experience-level-newcomer-description": "4 दिनों की गतिविधि और 10 सम्पादन से कम वाले पंजीकृत संपादक।", "rcfilters-filter-user-experience-level-learner-label": "शिक्षार्थियों", - "rcfilters-filter-user-experience-level-learner-description": "\"नए सदस्यों\" की तुलना में अधिक लेकिन \"अनुभवी सदस्यों\" से कम अनुभवी", + "rcfilters-filter-user-experience-level-learner-description": "पंजीकृत संपादक जिनका अनुभव \"नये संपादक\" और \"अनुभवी संपादक\" के बीच का है।", "rcfilters-filter-user-experience-level-experienced-label": "अनुभवी सदस्य", - "rcfilters-filter-user-experience-level-experienced-description": "30 दिन से अधिक गतिविधि और 500 सम्पादन।", + "rcfilters-filter-user-experience-level-experienced-description": "500 संपादन और 30 दिन की गतिविधि से अधिक वाले पंजीकृत संपादक।", "rcfilters-filtergroup-automated": "स्वचालित योगदान", "rcfilters-filter-bots-label": "बॉट", "rcfilters-filter-bots-description": "स्वचालित औजारों से किए सम्पादन।", @@ -1453,10 +1456,19 @@ "rcfilters-filter-lastrevision-label": "नया अवतरण", "rcfilters-filter-lastrevision-description": "पृष्ठ का सबसे हाल में हुआ बदलाव", "rcfilters-filter-previousrevision-label": "पहले के अवतरण", - "rcfilters-filter-previousrevision-description": "सभी परिवर्तन जो एक पृष्ठ में सबसे हाल के परिवर्तन नहीं हैं।", + "rcfilters-filter-previousrevision-description": "सभी परिवर्तन जो \"नवीनतम संशोधन\" नहीं हैं", "rcfilters-filter-excluded": "अपवर्जित", "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": "संपादन टैग का उपयोग करके फ़िल्टर परिणाम", + "rcfilters-view-return-to-default-tooltip": "मुख्य फ़िल्टर मेनू पर लौटें", + "rcfilters-liveupdates-button": "जीवंत अद्यतन", + "rcfilters-liveupdates-button-title-on": "जीवंत अद्यतन बंद करें", + "rcfilters-liveupdates-button-title-off": "नये परिवर्तन प्रदर्शित करें जैसे ही वे घटित होते हैं", "rcnotefrom": "नीचे $2 के बाद से ($1 तक) {{PLURAL:$5|हुआ बदलाव दर्शाया गया है|हुए बदलाव दर्शाए गये हैं}}।", "rclistfromreset": "चुने दिनांक पहले जैसा करें", "rclistfrom": "$3 $2 से नये बदलाव दिखाएँ", @@ -1837,6 +1849,8 @@ "pageswithprop-legend": "पृष्ठ जिनमें पृष्ठ गुण हैं", "pageswithprop-text": "यह पृष्ठ पृष्ठ गुण का उपयोग कर रहे पन्नों को सूचीबद्ध करता है।", "pageswithprop-prop": "गुण का नाम:", + "pageswithprop-reverse": "उल्टे क्रम में क्रमबद्ध करें", + "pageswithprop-sortbyvalue": "संपत्ति मूल्य के आधार पर क्रमबद्ध करें", "pageswithprop-submit": "खोजें", "pageswithprop-prophidden-long": "लम्बे पाठ का मूल्य छुपा ($1) है", "pageswithprop-prophidden-binary": "बाइनरी मूल्य ($1) छुपा है।", @@ -1969,6 +1983,7 @@ "apisandbox-sending-request": "एपीआई अनुरोध भेज रहा...", "apisandbox-loading-results": "एपीआई परिणाम ले रहा...", "apisandbox-results-error": "एपीआई के समय कोई त्रुटि हुई: $1", + "apisandbox-results-login-suppressed": "यह अनुरोध लॉग-आउट उपयोगकर्ता के रूप में संसाधित किया गया है क्योंकि यह ब्राउज़र समान-मूल सुरक्षा बायपास करने के लिए इस्तेमाल किया जा सकता है। ध्यान दें कि एपीआई सैंडबॉक्स का स्वचालित टोकन हैंडलिंग ऐसे अनुरोधों के साथ ठीक से काम नहीं करता है, कृपया उन्हें मैन्युअल रूप से भरें।", "apisandbox-request-selectformat-label": "अनुरोध डेटा को इस रूप में दिखाएं:", "apisandbox-request-format-url-label": "यूआरएल क्वेरी स्ट्रिंग", "apisandbox-request-url-label": "अनुरोध URL:", @@ -2157,8 +2172,6 @@ "watching": "ध्यान दे रहे हैं...", "unwatching": "ध्यान हटा रहे हैं...", "watcherrortext": "\"$1\" के लिये आपकी ध्यानसूची सेटिंग बदलते समय त्रुटि हुई।", - "watchlist-unwatch": "×", - "watchlist-unwatch-undo": "+", "enotif_reset": "सभी पृष्ठ देखे हुए दर्शाएँ", "enotif_impersonal_salutation": "{{SITENAME}} सदस्य", "enotif_subject_deleted": "{{SITENAME}} पृष्ठ $1 को {{gender:$2|$2}} ने हटा दिया है", @@ -2204,6 +2217,7 @@ "delete-warning-toobig": "इस पृष्ठ का संपादन इतिहास $1 से अधिक {{PLURAL:$1|अवतरण}} होने की वजह से बहुत बड़ा है।\nइसे हटाने से {{SITENAME}} के डाटाबेस की गतिविधियों में व्यवधान आ सकता है;\nकृपया सोच समझ कर आगे बढ़ें।", "deleteprotected": "आप इस पृष्ठ को हटा नहीं सकते क्योंकि इसे सुरक्षित किया गया है।", "deleting-backlinks-warning": "चेतावनी: जो पृष्ठ आप हटाने जा रहे हैं उससे [[Special:WhatLinksHere/{{FULLPAGENAME}}|अन्य पृष्ठ]] जुड़ते हैं अथवा उसे ट्रांसक्लूड करते हैं।", + "deleting-subpages-warning": "चेतावनी:आप जिस प्रष्ठ को हटाना चाहते हैं,\nरखता है [[Special:PrefixIndex/{{FULLPAGENAME}}/|{{PLURAL:$1|a subpage|$1 subpages|51=over 50 subpages}}]].", "rollback": "संपादन वापिस लें", "rollbacklink": "वापिस लें", "rollbacklinkcount": "$1 {{PLURAL:$1|सम्पादन}} वापिस लें", @@ -2322,6 +2336,7 @@ "undelete-search-title": "हटाये गये पृष्ठ खोजें", "undelete-search-box": "हटाये गये पृष्ठ खोजें", "undelete-search-prefix": "शुरूआती शब्द अनुसार पृष्ठ खोजें:", + "undelete-search-full": "शीर्षक युक्त प्रष्ठ दिखाएं", "undelete-search-submit": "खोजें", "undelete-no-results": "हटाए गए पृष्ठों के लेखागार में मेल खाते कोई पृष्ठ नहीं मिले।", "undelete-filename-mismatch": "$1 के फ़ाइल के हटाये गये अवतरण को पुनर्स्थापित नहीं किया जा सकता: फ़ाइल का नाम मेल नहीं खाता", @@ -3472,6 +3487,7 @@ "fileduplicatesearch-noresults": "कोई फ़ाइल नाम \"$1\" मिला नहीं ।", "specialpages": "विशेष पृष्ठ", "specialpages-note-top": "कुंजी", + "specialpages-note-restricted": "* सामान्य विशेष पृष्ठ।\n* प्रतिबंधित विशेष पृष्ठ।", "specialpages-group-maintenance": "अनुरक्षण रिपोर्ट", "specialpages-group-other": "अन्य विशेष पृष्ठ", "specialpages-group-login": "सत्र आरम्भ / खाता खोलें", @@ -3590,12 +3606,13 @@ "compare-invalid-title": "आपके द्वारा निर्दिष्ट शीर्षक अमान्य है।", "compare-title-not-exists": "आपके द्वारा निर्दिष्ट शीर्षक मौजूद नहीं है।", "compare-revision-not-exists": "आपके द्वारा निर्दिष्ट संशोधन मौजूद नहीं है।", - "diff-form": "एक '''पर्चा'''", - "diff-form-oldid": "पुराना अवतरण (वैकल्पिक)", + "diff-form": "अंतर", + "diff-form-oldid": "पुराना संशोधन (वैकल्पिक)", + "diff-form-revid": "अंतर का संशोधन आईडी", "diff-form-submit": "अंतर दिखाएँ", "permanentlink": "स्थायी कड़ी", - "permanentlink-revid": "अवतरण आईडी", - "permanentlink-submit": "अवतरण में जाएँ", + "permanentlink-revid": "संशोधन आईडी", + "permanentlink-submit": "संशोधन में जाएँ", "dberr-problems": "क्षमा करें! इस जालस्थल को कुछ तकनीकी परेशानियों का सामना करना पड़ रहा है।", "dberr-again": "कुछ मिनट रुकने के बाद फिर से चढ़ाएँ।", "dberr-info": "(डाटाबेस से संपर्क नहीं हो पा रहा: $1)", @@ -4003,6 +4020,7 @@ "undelete-cantedit": "आप इस पन्ने को वापस नहीं ला सकते, क्योंकि आपको इस पन्ने पर सम्पादन की अनुमति नहीं है।", "undelete-cantcreate": "आप इस पन्ने को वापस नहीं ला सकते, क्योंकि यह पन्ना इस नाम से है ही नहीं और आपको इस पन्ने के निर्माण की अनुमति भी नहीं है।", "pagedata-title": "पृष्ठ आँकड़े", + "pagedata-text": "यह पृष्ठ पृष्ठों के लिए एक डेटा इंटरफ़ेस प्रदान करता है। कृपया उपपृष्ठ सिंटैक्स का उपयोग करके यूआरएल में पेज शीर्षक प्रदान करें।\n* कन्टैंट वार्ता आपके क्लाइंट के एसेडर हेडर के आधार पर लागू होती है। इसका मतलब यह है कि पेज डेटा को आपके क्लाइंट द्वारा पसंदीदा प्रारूप में प्रदान किया जाएगा।", "pagedata-not-acceptable": "कोई अनुकूल प्रारूप नहीं मिला। सुमेलित ऍमआइऍमई प्रकार: $1", "pagedata-bad-title": "अमान्य शीर्षक: $1" } diff --git a/languages/i18n/hu.json b/languages/i18n/hu.json index b84d1743db..37fa0a0569 100644 --- a/languages/i18n/hu.json +++ b/languages/i18n/hu.json @@ -1342,6 +1342,7 @@ "rcfilters-savedqueries-add-new-title": "Szűrők mentése gyors hivatkozásként", "rcfilters-restore-default-filters": "Alapértelmezett szűrők visszaállítása", "rcfilters-clear-all-filters": "Összes szűrő kikapcsolása", + "rcfilters-show-new-changes": "Legfrissebb változtatások megtekintése", "rcfilters-search-placeholder": "Friss változtatások szűrése (böngészd vagy kezdj el gépelni)", "rcfilters-invalid-filter": "Érvénytelen szűrő", "rcfilters-empty-filter": "Nincs aktív szűrő. Minden közreműködés látható.", @@ -3497,7 +3498,8 @@ "compare-invalid-title": "A megadott cím érvénytelen.", "compare-title-not-exists": "A megadott cím nem létezik.", "compare-revision-not-exists": "A megadott lapváltozat nem létezik.", - "diff-form": "egy '''űrlap'''", + "diff-form": "Eltérések", + "diff-form-submit": "Változtatások megjelenítése", "dberr-problems": "Sajnáljuk, de az oldallal technikai problémák vannak.", "dberr-again": "Várj néhány percet, majd frissítsd az oldalt.", "dberr-info": "(Nem sikerült kapcsolódni az adatbázishoz: $1)", diff --git a/languages/i18n/ia.json b/languages/i18n/ia.json index f7c0690107..5480a2eb57 100644 --- a/languages/i18n/ia.json +++ b/languages/i18n/ia.json @@ -46,13 +46,14 @@ "tog-shownumberswatching": "Monstrar le numero de usatores que observa le pagina", "tog-oldsig": "Tu signatura existente:", "tog-fancysig": "Tractar signatura como wikitexto (sin ligamine automatic)", - "tog-uselivepreview": "Usar previsualisation dynamic", + "tog-uselivepreview": "Previsualisar sin recargar le pagina", "tog-forceeditsummary": "Avisar me si io non entra un summario de modification", "tog-watchlisthideown": "Celar mi proprie modificationes in le observatorio", "tog-watchlisthidebots": "Celar le modificationes de robots in le observatorio", "tog-watchlisthideminor": "Celar modificationes minor in le observatorio", "tog-watchlisthideliu": "Celar modificationes de usatores registrate in le observatorio", "tog-watchlistreloadautomatically": "Recargar automaticamente le observatorio quando un filtro es cambiate (JavaScript requirite)", + "tog-watchlistunwatchlinks": "Adjunger ligamines directe pro disobservar/observar al entratas del observatorio (JavaScript es necessari pro le functionalitate de alternar)", "tog-watchlisthideanons": "Celar modificationes de usatores anonyme in le observatorio", "tog-watchlisthidepatrolled": "Celar le modificationes patruliate in le observatorio", "tog-watchlisthidecategorization": "Celar le categorisation de paginas", @@ -702,8 +703,8 @@ "permissionserrorstext-withaction": "Tu non ha le permission de $2, pro le sequente {{PLURAL:$1|motivo|motivos}}:", "contentmodelediterror": "Non es possibile modificar iste version perque su modello de contento es $1, un altere que le modello de contento actual del pagina, $2.", "recreate-moveddeleted-warn": "'''Attention: Tu es sur le puncto de recrear un pagina que ha essite delite anteriormente.'''\n\nTu deberea considerar si il es appropriate continuar a modificar iste pagina.\nEcce le registro de deletiones e de renominationes pro iste pagina:", - "moveddeleted-notice": "Iste pagina ha essite delite.\nIn basso se revela le registro de deletiones e de modificationes del pagina pro ulterior informationes.", - "moveddeleted-notice-recent": "Regrettabilemente iste pagina ha essite delite (in le ultime 24 horas).\nLe registro de deletion e renomination pro le pagina es fornite hic infra pro vostre information.", + "moveddeleted-notice": "Iste pagina ha essite delite.\nLe registro de deletion, protection e renomination del pagina es monstrate in basso pro referentia.", + "moveddeleted-notice-recent": "Regrettabilemente iste pagina ha essite delite (in le ultime 24 horas).\nLe registro de deletion, protection e renomination del pagina es monstrate in basso pro referentia.", "log-fulllog": "Vider le registro complete", "edit-hook-aborted": "Modification abortate per un extension.\nNulle explication disponibile.", "edit-gone-missing": "Impossibile actualisar le pagina.\nPare que illo ha essite delite.", @@ -971,7 +972,7 @@ "prefs-editwatchlist-clear": "Rader tu observatorio", "prefs-watchlist-days": "Numero de dies a monstrar in le observatorio:", "prefs-watchlist-days-max": "Maximo $1 {{PLURAL:$1|die|dies}}", - "prefs-watchlist-edits": "Numero maxime de modificationes a monstrar in le observatorio expandite:", + "prefs-watchlist-edits": "Numero maxime de modificationes a monstrar in le observatorio:", "prefs-watchlist-edits-max": "Numero maxime: 1000", "prefs-watchlist-token": "Indicio pro le observatorio:", "prefs-misc": "Misc", @@ -1288,10 +1289,13 @@ "recentchanges-legend-plusminus": "(''±123'')", "recentchanges-submit": "Monstrar", "rcfilters-legend-heading": "Lista de abbreviationes:", + "rcfilters-other-review-tools": "Altere instrumentos de revision", + "rcfilters-group-results-by-page": "Gruppar resultatos per pagina", + "rcfilters-grouping-title": "Gruppamento", "rcfilters-activefilters": "Filtros active", "rcfilters-advancedfilters": "Filtros avantiate", "rcfilters-limit-title": "Cambiamentos a monstrar", - "rcfilters-limit-shownum": "Monstrar le ultime $1 cambiamentos", + "rcfilters-limit-shownum": "Monstrar le ultime {{PLURAL:$1|modification|$1 modificationes}}", "rcfilters-days-title": "Dies recente", "rcfilters-hours-title": "Horas recente", "rcfilters-days-show-days": "$1 {{PLURAL:$1|die|dies}}", @@ -1307,10 +1311,12 @@ "rcfilters-savedqueries-new-name-label": "Nomine", "rcfilters-savedqueries-new-name-placeholder": "Describe le proposito del filtro", "rcfilters-savedqueries-apply-label": "Crear filtro", + "rcfilters-savedqueries-apply-and-setdefault-label": "Crear filtro predefinite", "rcfilters-savedqueries-cancel-label": "Cancellar", "rcfilters-savedqueries-add-new-title": "Salveguardar le configuration actual del filtro", "rcfilters-restore-default-filters": "Restaurar filtros predefinite", "rcfilters-clear-all-filters": "Rader tote le filtros", + "rcfilters-show-new-changes": "Vider le modificationes le plus recente", "rcfilters-search-placeholder": "Filtrar le modificationes recente (naviga o comencia a scriber)", "rcfilters-invalid-filter": "Filtro non valide", "rcfilters-empty-filter": "Nulle filtro active. Tote le contributiones es monstrate.", @@ -1381,11 +1387,16 @@ "rcfilters-filter-previousrevision-description": "Tote le cambiamentos que non es le \"ultime version\".", "rcfilters-filter-excluded": "Excludite", "rcfilters-tag-prefix-namespace-inverted": ":non $1", + "rcfilters-exclude-button-off": "Excluder le selection", + "rcfilters-exclude-button-on": "Selection excludite", + "rcfilters-view-advanced-filters-label": "Filtros avantiate", "rcfilters-view-tags": "Modificationes con etiquettas", "rcfilters-view-namespaces-tooltip": "Filtrar le resultatos per spatio de nomines", "rcfilters-view-tags-tooltip": "Filtrar le resultatos usante etiquettas de version", "rcfilters-view-return-to-default-tooltip": "Retornar al menu principal de filtros", "rcfilters-liveupdates-button": "Fluxo continue", + "rcfilters-liveupdates-button-title-on": "Disactivar actualisation in directo", + "rcfilters-liveupdates-button-title-off": "Monstrar cambiamentos in tempore real", "rcnotefrom": "Ecce le {{PLURAL:$5|modification|modificationes}} a partir del $3 a $4 (usque a $1 entratas monstrate).", "rclistfromreset": "Reinitialisar selection de data", "rclistfrom": "Monstrar nove modificationes a partir del $3 a $2", @@ -1765,6 +1776,8 @@ "pageswithprop-legend": "Paginas con un proprietate de pagina", "pageswithprop-text": "Iste pagina lista le paginas que usa un certe proprietate de pagina.", "pageswithprop-prop": "Nomine del proprietate:", + "pageswithprop-reverse": "Ordinar inversemente", + "pageswithprop-sortbyvalue": "Ordinar per valor de proprietate", "pageswithprop-submit": "Va", "pageswithprop-prophidden-long": "valor de proprietate de texto longe celate ($1)", "pageswithprop-prophidden-binary": "valor de proprietate binari celate ($1)", @@ -2101,6 +2114,7 @@ "enotif_lastdiff": "Pro revider iste modification, vide $1", "enotif_anon_editor": "usator anonyme $1", "enotif_body": "Car $WATCHINGUSERNAME,\n\n$PAGEINTRO $NEWPAGE\n\nSummario del redactor: $PAGESUMMARY $PAGEMINOREDIT\n\nPro contactar le redactor:\nmail: $PAGEEDITOR_EMAIL\nwiki: $PAGEEDITOR_WIKI\n\nTu non recipera altere notificationes de activitate si tu non visita iste pagina con session aperte. Tu pote anque reinitialisar le optiones de notification pro tote le paginas in tu observatorio.\n\nLe systema de notification de {{SITENAME}}, a tu servicio\n\n-- \nPro configurar le notification per e-mail, visita\n{{canonicalurl:{{#special:Preferences}}}}\n\nPro configurar le observatorio, visita\n{{canonicalurl:{{#special:EditWatchlist}}}}\n\nPro retirar le pagina de tu observatorio, visita\n$UNWATCHURL\n\nFeedback e ulterior assistentia:\n$HELPPAGE", + "enotif_minoredit": "Isto es un modification minor", "created": "create", "changed": "modificate", "deletepage": "Deler pagina", @@ -2129,6 +2143,7 @@ "delete-warning-toobig": "Iste pagina ha un grande historia de modificationes con plus de $1 {{PLURAL:$1|version|versiones}}.\nLe deletion de illo pote disrumper le operationes del base de datos de {{SITENAME}};\nprocede con caution.", "deleteprotected": "Tu non pote deler iste pagina perque illo ha essite protegite.", "deleting-backlinks-warning": "Attention: Il ha [[Special:WhatLinksHere/{{FULLPAGENAME}}|altere paginas]] que liga a o transclude le pagina que tu es sur le puncto de deler.", + "deleting-subpages-warning": "Attention: Le pagina que tu es sur le puncto de deler ha [[Special:PrefixIndex/{{FULLPAGENAME}}/|{{PLURAL:$1|un subpagina|$1 subpaginas|51=plus de 50 subpaginas}}]].", "rollback": "Revocar modificationes", "rollbacklink": "revocar", "rollbacklinkcount": "revocar $1 {{PLURAL:$1|modification|modificationes}}", @@ -2582,7 +2597,7 @@ "import-nonewrevisions": "Nulle version ha essite importate (totes esseva jam presente o ha essite saltate a causa de errores).", "xml-error-string": "$1 al linea $2, col $3 (byte $4): $5", "import-upload": "Incargar datos XML", - "import-token-mismatch": "Perdita del datos del session.\n\nEs possibile que tu session ha essite claudite. Per favor, verifica que tu session es ancora aperte e tenta lo de novo.\nSi le problema persiste, proba a [[Special:UserLogout|clauder session]] e aperir un nove session, verificante que tu navigator accepta le cookies ab iste sito.", + "import-token-mismatch": "Perdita del datos del session.\n\nEs possibile que tu session ha essite claudite. '''Per favor, verifica que tu session es ancora aperte e tenta lo de novo.'''\nSi le problema persiste, proba a [[Special:UserLogout|clauder session]] e aperir un nove session, verificante que tu navigator accepta le cookies ab iste sito.", "import-invalid-interwiki": "Non pote importar ab le wiki specificate.", "import-error-edit": "Le pagina \"$1\" non ha essite importate perque tu non ha le permission de modificar lo.", "import-error-create": "Le pagina \"$1\" non ha essite importate perque tu non ha le permission de crear lo.", @@ -3340,6 +3355,7 @@ "fileduplicatesearch-noresults": "Nulle file con nomine \"$1\" trovate.", "specialpages": "Paginas special", "specialpages-note-top": "Legenda", + "specialpages-note-restricted": "* Paginas special normal.\n* Paginas special restringite.", "specialpages-group-maintenance": "Reportos de mantenentia", "specialpages-group-other": "Altere paginas special", "specialpages-group-login": "Aperir session / crear conto", @@ -3458,6 +3474,13 @@ "compare-invalid-title": "Le titulo que tu specificava es invalide.", "compare-title-not-exists": "Le titulo que tu specificava non existe.", "compare-revision-not-exists": "Le version que tu specificava non existe.", + "diff-form": "Differentias", + "diff-form-oldid": "ID del ancian version (optional)", + "diff-form-revid": "ID del version a comparar", + "diff-form-submit": "Monstrar differentias", + "permanentlink": "Ligamine permanente", + "permanentlink-revid": "ID del version", + "permanentlink-submit": "Vader al version", "dberr-problems": "Pardono! Iste sito ha incontrate difficultates technic.", "dberr-again": "Proba attender alcun minutas e recargar.", "dberr-info": "(Non pote acceder al base de datos: $1)", diff --git a/languages/i18n/it.json b/languages/i18n/it.json index 8f47121e4a..58bcb4b444 100644 --- a/languages/i18n/it.json +++ b/languages/i18n/it.json @@ -1408,7 +1408,6 @@ "rcfilters-restore-default-filters": "Ripristina i filtri predefiniti", "rcfilters-clear-all-filters": "Pulisci tutti i filtri", "rcfilters-show-new-changes": "Visualizza le modifiche più recenti", - "rcfilters-previous-changes-label": "Modifiche visualizzate precedentemente", "rcfilters-search-placeholder": "Filtra le ultime modifiche (naviga o inizia a digitare)", "rcfilters-invalid-filter": "Filtro non valido", "rcfilters-empty-filter": "Nessun filtro attivo. Sono mostrati tutti i contributi.", diff --git a/languages/i18n/jv.json b/languages/i18n/jv.json index 6efbd9a070..57a7a61419 100644 --- a/languages/i18n/jv.json +++ b/languages/i18n/jv.json @@ -851,7 +851,7 @@ "searchprofile-advanced": "Lungidan", "searchprofile-articles-tooltip": "Golèkan ing $1", "searchprofile-images-tooltip": "Golèk barkas", - "searchprofile-everything-tooltip": "Golèk kabèh isi (kalebu kaca guneman)", + "searchprofile-everything-tooltip": "Golèk kabèh kontèn (kalebu ing kaca parembugan)", "searchprofile-advanced-tooltip": "Golèk ing mandala aran tinamtu", "search-result-size": "$1 ({{PLURAL:$2|1 tembung|$2 tembung}})", "search-result-category-size": "{{PLURAL:$1|1 anggota|$1 anggota}} ({{PLURAL:$2|1 subkatégori|$2 subkatégori}}, {{PLURAL:$3|1 berkas|$3 berkas}})", @@ -1860,12 +1860,12 @@ "trackingcategories-name": "Jeneng layang", "mailnologin": "Ora ana alamat kirim", "mailnologintext": "Panjenengan kudu [[Special:UserLogin|mlebu log]] lan duwé alamat layang-èl sing trep ing [[Special:Preferences|pilalané]] panjenengan kanggo nglayangi panganggo liyané.", - "emailuser": "Kirim e-mail panganggo iki", + "emailuser": "Kirimi panganggo iki layang-èl", "emailuser-title-target": "Kirim surel ke {{GENDER:$1|pengguna}} ini", "emailuser-title-notarget": "Kirimi panganggo layang-èl", "emailpagetext": "Panjenengan bisa migunakaké formulir ing ngisor kanggo ngirim layang-e marang {{GENDER:$1|panganggo}} iki.\nAlamat layang-e sing panjenengan lebokaké ing [[Special:Preferences|préferèsi panjenengan]] bakal dadi alamat \"Saka\" jroning layang-e kasebut, mula panampa layang-e bakal bisa mbalesi langsung menyang panjenengan.", "defemailsubject": "{{SITENAME}} layang èlèktronik saka panganggo \"$1\"", - "usermaildisabled": "E-mail panganggo dinonaktifaké", + "usermaildisabled": "Layang-èlé panganggo dipatèni", "usermaildisabledtext": "Sampéyan ora bisa ngirim layang èlèktronik nèng panganggo liya nèng wiki iki", "noemailtitle": "Ora ana alamat layang-èl", "noemailtext": "Panganggo iki ora mènèhi alamat layang-e sing absah.", @@ -2196,7 +2196,7 @@ "noautoblockblock": "blokir otomatis dipatèni", "createaccountblock": "ndamelipun akun dipunblokir", "emailblock": "layang-èl dipatèni", - "blocklist-nousertalk": "ora kena mbesut kaca guneman dhéwé", + "blocklist-nousertalk": "ora kena mbesut kaca parembugané dhéwé", "ipblocklist-empty": "Pratélan blokir kosong.", "ipblocklist-no-results": "alamat IP utawa panganggo sing disuwun ora diblokir.", "blocklink": "palang", @@ -2215,8 +2215,8 @@ "block-log-flags-anononly": "namung panganggo anonim", "block-log-flags-nocreate": "panggawéné akun dipatèni", "block-log-flags-noautoblock": "blokir otomatis dipatèni", - "block-log-flags-noemail": "e-mail diblokir", - "block-log-flags-nousertalk": "ora kena mbesut kaca guneman dhéwé", + "block-log-flags-noemail": "layang-èl dipatèni", + "block-log-flags-nousertalk": "ora kena mbesut kaca parembugané dhéwé", "block-log-flags-angry-autoblock": "paningkatan sistem pamblokiran otomatis wis diaktifaké", "block-log-flags-hiddenname": "jeneng panganggo didhelikaké", "range_block_disabled": "Fungsi pamblokir blok IP kanggo para opsis dipatèni.", @@ -2963,7 +2963,7 @@ "exif-urgency-other": "Prioritas sing ditetepaké panganggo ($1)", "namespacesall": "kabèh", "monthsall": "kabèh", - "confirmemail": "Konfirmasi alamat e-mail", + "confirmemail": "Konfirmasi alamat layang-èl", "confirmemail_noemail": "Panjenengan ora maringi alamat é-mail sing absah ing [[Special:Preferences|prèferènsi]] panjenengan.", "confirmemail_text": "{{SITENAME}} ngwajibaké panjenengan ndhedhes utawa konfirmasi alamat e-mail panjenengan sadurungé bisa nganggo fitur-fitur e-mail.\nPencèten tombol ing ngisor iki kanggo ngirim sawijining kode konfirmasi arupa sawijining pranala;\nTuladen pranala iki ing panjlajah wèb panjenengan kanggo ndhedhes yèn alamat e-mail panjenengan pancèn bener.", "confirmemail_pending": "Sawijining kode konfirmasi wis dikirim menyang alamat e-mail panjenengan;\nyèn panjenengan lagi waé nggawé akun utawa rékening panjenengan, mangga nunggu sawetara menit nganti layang iku tekan sadurungé nyuwun kode anyar manèh.", @@ -2975,7 +2975,7 @@ "confirmemail_needlogin": "Panjenengan kudu ndhedhes (konfirmasi) $1 alamat layang e-mail panjenengan.", "confirmemail_success": "Alamat e-mail panjenengan wis dikonfirmasi.\nSaiki panjenengan bisa log mlebu lan wiwit nganggo wiki.", "confirmemail_loggedin": "Alamat e-mail panjenengan wis dikonfirmasi.", - "confirmemail_subject": "Konfirmasi alamat e-mail {{SITENAME}}", + "confirmemail_subject": "Konfirmasi alamat layang-èl ing {{SITENAME}}", "confirmemail_body": "Ana wong, bokmanawa panjenengan, saka alamat IP $1, wis ndhaftar kanthi akun \"$2\" mawa alamat layang-èl iki ing {{SITENAME}}.\n\nSaperlu ngonfirmasi yèn akun iki temenan duwèké panjenengan lan ngaktivasi fitur layang-èl ing {{SITENAME}}, bukaken pranala iki ing pangluruné panjenengan:\n\n$3\n\nYèn panjenengan *ora tau* ndhaftar mawa akun iki, turuten pranala ngisor iki saperlu murungaké konfirmasi lumantar alamat layang-èl iki:\n\n$5\n\nKodhe konfirmasi iki bakal kadaluwarsa nalika $4.", "confirmemail_body_changed": "Ana wong, bokmanawa panjenengan, saka alamat IP $1, wis ngganti alamat layang-èl ing akun \"$2\" dadi nganggo alamat iki ing {{SITENAME}}. \n\nSaperlu ngonfirmasi yèn akun iki temenan duwèké panjenengan, bukaken pranala iki ing pangluruné panjenengan:\n\n$3\n\nYèn akun iku *dudu* duwèké panjenengan, turuten pranala iki saperlu murungaké konfirmasi lumantar alamat layang-èl iki:\n\n$5\n\nKodhe konfirmasi iki bakal kadaluwarsa nalika $4.", "confirmemail_body_set": "Sawijining wong, mbokmenawa panjenengan dhéwé, saka alamat IP $1, wis ndaftaraké akun \"$2\" mawa alamat e-mail iki ing {{SITENAME}}. Bukaka pranala iki ing panjlajah wèb panjenengan.\n\n$3\n\nYèn panjenengan *ora tau* ndaftar akun iki, tutna pranala ing ngisor iki kanggo mbatalaké konfirmasi alamat e-mail:\n\n$5\n\nKonfirmasi iki bakal kadaluwarsa ing $4.", diff --git a/languages/i18n/kab.json b/languages/i18n/kab.json index 5be46fc9d5..0f948748b1 100644 --- a/languages/i18n/kab.json +++ b/languages/i18n/kab.json @@ -423,9 +423,9 @@ "nocookieslogin": "{{SITENAME}} yesseqdac ikukiyen (cookies) iwakken ad tkecmeḍ. Tekseḍ ikukiyen-nni. Eǧǧ-aten iwakken ad tkecmeḍ.", "nocookiesfornew": "Amiḍan n useqdac ur d-isnulfu ara, acku ur nezmer ara an sulu azar-is.\nSelken ma sermedeḍ \"cookies\", sismeḍ asebter dɣa εreḍ tikkelt nniḍen.", "noname": "Ur tefkiḍ ara isem n wemseqdac ṣaḥiḥ.", - "loginsuccesstitle": "Tkecmeḍ !", + "loginsuccesstitle": "Taqqneḍ", "loginsuccess": "'''Tkecmeḍ ar {{SITENAME}} s yisem n wemseqdac \"$1\".'''", - "nosuchuser": "Aseqdac « $1 » ulac-it d-agi.\nSsenqed tira n yisem-nni, naɣ [[Special:CreateAccount|snulfu-d amiḍan amaynut]].", + "nosuchuser": "Aseqdac $1 ulac-it d-agi.\nIsmawen n iseqdacen ṭṭafaṛen taruẓi n usekkil.\nSenqed tira, neɣ [[Special:CreateAccount|rnu amiḍan amaynut]].", "nosuchusershort": "Ulac isem n wemseqdac s yisem \"$1\". Ssenqed tira n yisem-nni.", "nouserspecified": "Yessefk ad tefkeḍ isem n wemseqdac.", "login-userblocked": "Aseqdac agi i sewḥel. Tuqqna t-ugwi.", @@ -440,7 +440,7 @@ "noemail": "\"$1\" ur yesɛi ara email.", "noemailcreate": "Ilaq ad efkeḍ tansa e-mail i sɛan aseɣbel.", "passwordsent": "Awal n tbaḍnit amaynut yettwazen i emal inek, aylaw n \"$1\".\nG leɛnaya-k, kcem tikelt nniḍen yis-s.", - "blocked-mailpassword": "Tansa n IP inek tɛekkel, ur tezmireḍ ara ad txedmeḍ abeddel,\nur tezmireḍ ara ad tesɛuḍ awal n tbaḍnit i tettuḍ.", + "blocked-mailpassword": "Tansa-ik IP tewḥel i unifel. Akken ad nsewḥel yir aseqdec, ur tezmireḍ ara ad tesqedceḍ tiririt n wawal uffir si tansa-agi IP.", "eauthentsent": "Yiwen email yetweceggeε ar tansa id efkeḍ.\nUqbel ad n-ceggeε email nniḍen, ilaq ad ḍfereḍ ayen yellan deg email dɣa ad sergegeḍ amiḍan agi d win inek(m).", "throttled-mailpassword": "Neceggɛed yakan tirawt n uwennez i awal-ik/im n uɛaddi deg {{PLURAL:$1|asrag agi aneggaru|$1 isragen agi ineggura}}. Awennez n uwal n uɛaddi yettwaceggaɛ tikelt kan deg {{PLURAL:$1|asrag|$1 isragen}}.", "mailerror": "Agul asmi yettwazen e-mail: $1", @@ -478,6 +478,15 @@ "resetpass_submit": "Eg awal n tbaḍnit u kcem", "changepassword-success": "Awal n uɛaddi yettubeddel s lerbaḥ !", "changepassword-throttled": "Tɛerdeḍ ad qqeneḍ aṭas tiqwal deg dqiqat agi iɛddan.\nIlaq ad rǧuḍ $1 uqbel ad ɛerdeḍ tikkelt nniḍen.", + "botpasswords-label-appid": "Isem n uṛubut:", + "botpasswords-label-create": "Rnu", + "botpasswords-label-update": "Leqqem", + "botpasswords-label-cancel": "Sefsex", + "botpasswords-label-delete": "Kkes", + "botpasswords-label-resetpassword": "Wennez awal uffir", + "botpasswords-label-grants": "Izerfan yettwasnasen:", + "botpasswords-label-grants-column": "Ttunefken izerfan", + "botpasswords-bad-appid": "Isem n uṛubut \"$1\" mačči d ameɣtu.", "resetpass_forbidden": "Ur zemreḍ ara ad beddeleḍ awalen n uɛaddi", "resetpass-no-info": "Ilaq ad qqeneḍ iwakken ad ẓṛeḍ asebter agi.", "resetpass-submit-loggedin": "Beddel awal n uɛaddi", @@ -534,10 +543,13 @@ "sig_tip": "Azmul inek s uzemz", "hr_tip": "Ajerriḍ aglawan (ur teččerɛiḍ ara)", "summary": "Agzul:", - "subject": "Asentel/Azwel azellum:", + "subject": "Asentel:", "minoredit": "Wagi d abeddel afessas", "watchthis": "Ɛass asebter-agi", "savearticle": "Beddel asebter", + "savechanges": "Sekles asnifel", + "publishpage": "Suffeɣ-d asebter", + "publishchanges": "Suffeɣ-d asnifel", "preview": "Pre-Ẓer", "showpreview": "Ssken pre-timeẓriwt", "showdiff": "Ssken ibeddlen", @@ -621,8 +633,8 @@ "permissionserrorstext": "Ur tesɛiḍ ara turagt iwakken ad xedmeḍ wayagi i {{PLURAL:$1|taɣẓint|tiɣẓinin}} agi :", "permissionserrorstext-withaction": "Ur sɛiḍ ara ttesriḥ af $2, i {{PLURAL:$1|taɣẓint|tiɣẓinin}} agi :", "recreate-moveddeleted-warn": "'''Ɣur-wet : asebter agi i tebɣam ad snulfum, yetwekkes uqbel.'''\n\nIlaq ad snulfum asebter agi haca ma i xater. Aɣmis n isebtaren i twekkesen yella ddaw-agi :", - "moveddeleted-notice": "Asebter-a yettwekkes. Isallen n usfaḍ, n uḥuddu d uḥerrrek i usebter atnan ɣer wadda i uwelleh.", - "moveddeleted-notice-recent": "Nesḥassef, melmi kan yettwasfeḍ usebter-a (deg 24 n yisragen ineggura). Isallen n usfaḍ, n uḥuddu d uḥerrrek i usebter atnan ɣer wadda i uwelleh.", + "moveddeleted-notice": "Asebter-a yettwakkes. \nAɣmis n tukksa, ammesten neɣ asenkez n usebter yettwammel-d ddaw-a i uwelleh.", + "moveddeleted-notice-recent": "Nesḥissef, imi melmi kan i yettwakkes usebter-a (deg 24 n yisragen ineggura). Iɣmisen n tukksa, n ummesten, akked usnifel n yisem i usebter ttunefken-d ddaw-a i uwelleh.", "log-fulllog": "Ẓeṛ aɣmis ummid", "edit-hook-aborted": "Abrir n ubeddel s usiɣzef.\nTamentilt warisem", "edit-gone-missing": "Ur yezmer ara ad yemucceḍ asebter agi.\nAhat yetwemḥa.", @@ -641,6 +653,8 @@ "content-model-text": "aḍris afraray", "content-model-javascript": "JavaScript", "content-model-css": "CSS", + "content-json-empty-object": "Asentel d ilem", + "content-json-empty-array": "Talfelwit d tilemt", "expensive-parserfunction-warning": "'''Ɣur-wet :''' Asebter agi yesɛa aṭas n tiɣriwin ar tiseɣnin ɣlayen n umsisleḍ taseddast.\nIlaq ad i sɛu ddaw n $2 {{PLURAL:$2|tiɣri|tiɣriwin }}, wannag tura {{PLURAL:$1|tella $1 tiɣri|llant $1 tiɣriwin}}.", "expensive-parserfunction-category": "Isebtar yesɛan aṭas tiɣriwin ɣlayen n tiseeɣnin n umsisleḍ taseddast", "post-expand-template-inclusion-warning": "Ɣur-wet : Asebter agi yesɛa aṭas tilɣatin. Kra n tilɣatin ur zemrent ara ad seqdacent.", @@ -1091,7 +1105,10 @@ "recentchanges-legend-newpage": "{{int:recentchanges-label-newpage}} (zeṛ daɣen [[Special:NewPages|umuɣ n isebtar imaynuten]]).", "recentchanges-legend-plusminus": "(''± 123'')", "recentchanges-submit": "Sken", - "rcfilters-other-review-tools": "Ifecka-nniḍen n ucegger:", + "rcfilters-other-review-tools": "Ifecka-nniḍen n ucegger", + "rcfilters-days-show-days": "$1 {{PLURAL:$1|n wass|n wussan}}", + "rcfilters-days-show-hours": "$1 {{PLURAL:$1|n usrag|n yisragen}}", + "rcfilters-quickfilters": "Imzizdigen yettwaskelsen", "rcfilters-savedqueries-rename": "Snifel isem", "rcfilters-savedqueries-setdefault": "Sbadu d amezwer", "rcfilters-savedqueries-unsetdefault": "Kkes-it d amezwer", @@ -1104,7 +1121,6 @@ "rcfilters-restore-default-filters": "Err-f imzizdigen imezwar", "rcfilters-clear-all-filters": "Sfeḍ akk imzizdigen", "rcfilters-show-new-changes": "Skev asnifel aneggaru", - "rcfilters-previous-changes-label": "Asnifel yettwaseknen yakan", "rcfilters-filterlist-title": "Imzizdigen", "rcfilters-filterlist-whatsthis": "Amek iteddu?", "rcfilters-highlightbutton-title": "Sebṛureq igmaḍ", @@ -1641,19 +1657,21 @@ "emailccsubject": "Alsaru n izen inek i $1: $2", "emailsent": "E-mail yettwazen", "emailsenttext": "Izen n e-mail inek yettwazen.", - "emailuserfooter": "Tirawt agi tetweceggaɛ sɣur « $1 » i « $2 » s tasɣent \"Ceggaɛ tirawt i useqdac\" n {{SITENAME}}.", + "emailuserfooter": "Imayl-agi {{GENDER:$1|yettwazen}} sɣur $1 ar {{GENDER:$2|$2}} s twuri \"{{int:emailuser}}\" di {{SITENAME}}. Ma yella {{GENDER:$2|kečč|kemm}} terriḍ i yimayl-agi, Imayl-{{GENDER:$2|ik|im}} ad yettwazen srid i {{GENDER:$1|umazan aneṣli}}, ayen ara yemmlen tansa-{{GENDER:$2|ik|im}} i {{GENDER:$1|nitni|nitenti}}.", "usermessage-summary": "Yeǧǧa-d izen anagraw", "usermessage-editor": "Ameskar n unagraw", "watchlist": "Tabdart n uḍfaṛ", "mywatchlist": "Tabdart n uḍfaṛ", "watchlistfor2": "I $1 $2", "nowatchlist": "Ulac iferdisen di tebdart-ik n uḍfaṛ.", - "watchlistanontext": "G leɛnaya-k $1 iwakken ad twalaḍ neɣ tbeddleḍ iferdas deg wumuɣ n uɛessi inek.", + "watchlistanontext": "Qqen ma ulac aɣilif akken ad twaliḍ neɣ ad tbeddleḍ tabdart-ik n uḍfaṛ.", "watchnologin": "Ur tekcimeḍ ara", "addwatch": "Rnu i umuɣ n uɛassi", "addedwatchtext": "Asebter \"[[:$1]]\" yettwarnu deg [[Special:Watchlist|wumuɣ n uḍfar]] inek/inem.\nIbeddlen id-yetteddun deg usebter-agi neɣ deg usbtar umyennan ines, ad banen dagi.", + "addedwatchtext-short": "Asebter \"$1\" yettwarna ar tebdart-ik n uḍfaṛ.", "removewatch": "Ekkes seg umuɣ n uɛassi", - "removedwatchtext": "!!Asebter \"[[:$1]]\" yettwakkes seg [[Special:Watchlist|umuɣ n uɛessi]] inek.", + "removedwatchtext": "Asebter \"[[:$1]]\" akked usqerdec-is ttwakksen si [[Special:Watchlist|tebdart-ik n uḍfaṛ]].", + "removedwatchtext-short": "Asebter \"$1\" yettwakkes seg tebdart-ik n uḍfaṛ.", "watch": "Ɛass", "watchthispage": "Ɛass asebter-agi", "unwatch": "Fakk aɛassi", @@ -1671,8 +1689,6 @@ "watching": "Ad iɛass...", "unwatching": "Ad ifukk aɛessi...", "watcherrortext": "Yella anezri imi tebeddeleḍ iɣewwaren n umuɣ inek/inem n uɛassi i « $1 ».", - "watchlist-unwatch": "×", - "watchlist-unwatch-undo": "+", "enotif_reset": "Rcem akk isebtar mmeẓren", "enotif_impersonal_salutation": "Amseqdac n {{SITENAME}}", "enotif_subject_deleted": "Asebtar $1 ɣef {{SITENAME}} yetwakkes sɣur {{GENDER:$2|$2}}", @@ -1729,6 +1745,8 @@ "rollback-success": "Asemmet n ibeddilen yetwaxeddemen sɣur $1 ;\ntuqqla ar lqem aneggaru sɣur $2.", "sessionfailure-title": "Anezri n tɣimit", "sessionfailure": "Yella ugul akk d takmect inek;\nAxdam-agi yebṭel axaṭer waqila yella wemdan nniḍen i yeddem isem n wemseqdac inek.\nG leɛnayek wekki ɣef taqeffalt \"Back/Précédent\" n browser/explorateur inek, umbeɛd wekki ɣef \"Actualiser/reload\" akk ad tɛerḍeḍ tikelt nniḍen.", + "changecontentmodel-title-label": "Azwel n usebter", + "changecontentmodel-reason-label": "Taɣẓint :", "protectlogpage": "Aɣmis n wemḥay", "protectlogtext": "Atan umuɣ n ibeddilen n immestan n isebtar.\nZeṛ [[Special:ProtectedPages|umuɣ n isebtar yettwaḥerzen]] i umuɣ n immestan timiranin.", "protectedarticle": "\"[[$1]]\" yettwaḥrez", @@ -2134,7 +2152,7 @@ "tooltip-pt-anontalk": "Asqerdec ɣef uttekki seg tansa-agi IP", "tooltip-pt-preferences": "Ismenyifen {{GENDER:|ik|im}}", "tooltip-pt-watchlist": "Umuɣ n uɛessi n isebtar i ttɛessaɣ", - "tooltip-pt-mycontris": "Umuɣ n tikkin inu", + "tooltip-pt-mycontris": "Tabdart n ittekkiyen-{{GENDER:|ik|im}}", "tooltip-pt-login": "Lukan tkecmeḍ xir, meɛna am tebɣiḍ.", "tooltip-pt-logout": "Ffeɣ", "tooltip-pt-createaccount": "Yelha limer ad ternuḍ amiḍan sakin ad teqqneḍ; maca, ur issefk ara", @@ -2166,7 +2184,7 @@ "tooltip-feed-rss": "RSS feed n usebter-agi", "tooltip-feed-atom": "Atom feed n usebter-agi", "tooltip-t-contributions": "Ẓer tabdart n ittekkiyen n tikkin n {{GENDER:$1|useqdac-agi|taseqdact-agi}}", - "tooltip-t-emailuser": "Azen e-mail i wemseqdac-agi", + "tooltip-t-emailuser": "Azen imayl i {{GENDER:$1|useqdac-agi|useqdac-agi}}", "tooltip-t-upload": "Azen ifuyla", "tooltip-t-specialpages": "Umuɣ n akk isebtar usligen", "tooltip-t-print": "Lqem tasiggezt n usebter agi", @@ -2199,10 +2217,10 @@ "anonymous": "{{PLURAL:$1|Aseqdac udrig|Iseqdacen udrigen}} ɣef {{SITENAME}}", "siteuser": "{{SITENAME}} amseqdac $1", "anonuser": "amseqdac abnabak $1 n {{SITENAME}}", - "lastmodifiedatby": "Tikkelt taneggarut asmi yettubeddel asebter-agi $2, $1 sɣur $3.", + "lastmodifiedatby": "Asebter-agi ibeddel i tikelt taneggarut di $2, $1 sɣur $3.", "othercontribs": "Tikkin ɣef umahil n $1.", "others": "wiyaḍ", - "siteusers": "{{PLURAL:$2|aseqdac|iseqdacen}} $1 n {{SITENAME}}", + "siteusers": "{{PLURAL:$2|{{GENDER:$1|aseqdac|taseqdact}}|{{Gender:$1|iseqdacen|tiseqdacin}}}} $1 n {{SITENAME}}", "anonusers": "{{PLURAL:$2|amseqdac abnabak|imseqdacen amseqdac abnabak}} $1 n {{SITENAME}}", "creditspage": "Win ixedmen asebter", "nocredits": "Ulac talɣut ɣef wayen ixedmen asebter-agi.", @@ -2758,7 +2776,7 @@ "duplicate-defaultsort": "Ɣur-wet : tasarut n ufran m-ulac « $2 » atsefεej tasarut n uqbel « $1 ».", "version": "Lqem", "version-extensions": "Isiɣzaf i serkeben", - "version-skins": "Igelman", + "version-skins": "Acebbeḥ ibedden.", "version-specialpages": "isebtar usligen", "version-parserhooks": "Imguden n umsisleḍ n taseddast", "version-variables": "Imuttiyen", @@ -2902,7 +2920,7 @@ "logentry-newusers-create2": "Amiḍan n umseqdac $3 {{GENDER:$2|yetwaxleq}} sɣur $1", "logentry-newusers-byemail": "Amiḍan n umseqdac $3 {{GENDER:$2|yetwaxleq}} sɣur $1 dɣa awal n uɛaddi yetwaceggaɛ deg email", "logentry-newusers-autocreate": "Amiḍan n umseqdac $1 {{GENDER:$2|yetwaxleq}} s uwurman", - "logentry-rights-rights": "$1 {{GENDER:$2|yebeddel|tebeddel}} amyili ar ugraw i $3 n $4 ar $5", + "logentry-rights-rights": "$1 yesnifel attekki ar ugraw i {{GENDER:$6|$3}} si $4 ar $5", "logentry-rights-rights-legacy": "$1 {{GENDER:$2|yebeddel|tebeddel}} amyili ar ugraw i $3", "logentry-rights-autopromote": "$1 {{GENDER:$2|yettwasmel|tettwasmel}} s uwurman seg $4 ar $5", "logentry-upload-overwrite": "$1 {{GENDER:$2|yessuli-d|tessuli-d}} lqem amaynut n $3", @@ -2918,7 +2936,7 @@ "feedback-error3": "Tuccḍa : Ulac tamrarut n API", "feedback-message": "Izen :", "feedback-subject": "Asentel :", - "feedback-submit": "Ceggaɛ iwenniten", + "feedback-submit": "Azen", "feedback-thanks": "Tanemmirt ! Awennit inek/inem yeffeɣ-d ɣef usebtar \"[$2 $1]\".", "searchsuggest-search": "Nadi {{SITENAME}}", "searchsuggest-containing": "yesɛan...", diff --git a/languages/i18n/ko.json b/languages/i18n/ko.json index 799be66fdc..3da04a1caf 100644 --- a/languages/i18n/ko.json +++ b/languages/i18n/ko.json @@ -1367,7 +1367,6 @@ "rcfilters-restore-default-filters": "기본 필터 복구", "rcfilters-clear-all-filters": "필터 모두 지우기", "rcfilters-show-new-changes": "최신 변경사항 보기", - "rcfilters-previous-changes-label": "이전에 표시된 변경사항", "rcfilters-search-placeholder": "필터 최근 바뀜 (찾아보거나 입력을 시작하십시오)", "rcfilters-invalid-filter": "유효하지 않은 필터", "rcfilters-empty-filter": "활성화된 필터가 없습니다. 모든 기여가 표시됩니다.", @@ -2153,8 +2152,6 @@ "watching": "주시 추가 중…", "unwatching": "주시 해제 중…", "watcherrortext": "\"$1\" 문서에 대한 주시 여부를 바꾸는 중 오류가 발생했습니다.", - "watchlist-unwatch": "×", - "watchlist-unwatch-undo": "+", "enotif_reset": "모든 문서를 방문한 것으로 표시하기", "enotif_impersonal_salutation": "{{SITENAME}} 사용자", "enotif_subject_deleted": "{{SITENAME}} $1 문서를 $2님이 {{GENDER:$2|삭제했습니다}}", diff --git a/languages/i18n/lb.json b/languages/i18n/lb.json index 2efad891f5..98a44cf15d 100644 --- a/languages/i18n/lb.json +++ b/languages/i18n/lb.json @@ -1992,8 +1992,6 @@ "watching": "Iwwerwaachen …", "unwatching": "Net méi iwwerwaachen …", "watcherrortext": "Beim Ännere vun den Astellunge vun der Iwwerwaachungslëscht fir \"$1\" ass e Feeler geschitt.", - "watchlist-unwatch": "×", - "watchlist-unwatch-undo": "+", "enotif_reset": "All Säiten als besicht markéieren", "enotif_impersonal_salutation": "{{SITENAME}}-Benotzer", "enotif_subject_deleted": "D'{{SITENAME}}-Säit $1 gouf vum {{gender:$2|$2}} geläscht", diff --git a/languages/i18n/li.json b/languages/i18n/li.json index 26757f2b7e..356154dc91 100644 --- a/languages/i18n/li.json +++ b/languages/i18n/li.json @@ -55,6 +55,7 @@ "tog-watchlisthideminor": "Klein bewirkinge op mien volglies verberge", "tog-watchlisthideliu": "Bewirkinge van aangemelde gebroekers op mien volglies versjtaeke", "tog-watchlistreloadautomatically": "Herlaaj de volglies autematis es 'n filter is verangerd (JavaScript vereis)", + "tog-watchlistunwatchlinks": "Veug direkte (neet) betrachte-links tou aan pagina's die op de wachlies staon (JavaScript vereis)", "tog-watchlisthideanons": "Bewirkinge van anonieme gebroekers op mien volglies versjtaeke", "tog-watchlisthidepatrolled": "Gemarkeerde wieziginge op mien volglies verberge", "tog-watchlisthidecategorization": "Verberg categorisatie van pagina's", @@ -700,8 +701,8 @@ "permissionserrorstext-withaction": "Geer höb gein rech óm $2 óm de volgende {{PLURAL:$1|raej|raej}}:", "contentmodelediterror": "Doe kans dees versie neet bewirke, went 't inhawdsmodel daovan is $1 en 't hujig inhawdsmodel van de pagina is $2.", "recreate-moveddeleted-warn": "'''Waarsjoewing: de bis bezig mit 't aanmake van 'n pagina die in 't verleje eweggesjaf is.'''\n\nBedink of 't terech is dets te wiejer wirks aan dees pagina. Veur dien gemaak sjteit hiejónger 't wislogbook en 't logbook verplaatste pagina's veur dees pagina:", - "moveddeleted-notice": "Dees pagina is eweggesjaf.\nTer infermasie weurt 't wislogbook en 't logbook verplaatsjde pagina's van dees pagina hiejónger weergegaeve.", - "moveddeleted-notice-recent": "Dees pagina is recèntelik eweggesjaf gewaore (in de aafgeloupe 24 oer).\n't Ewegsjaffings- en verplaatsinglogbook weurt te rifferensie hie-ónger getoeandj.", + "moveddeleted-notice": "Dees pagina is eweggesjaf.\nTer infermasie weurt 't wislogbook, 't beveiligingslogbook en 't logbook verplaatsjde pagina's van dees pagina hiejónger weergegaeve.", + "moveddeleted-notice-recent": "Dees pagina is recèntelik eweggesjaf gewaore (in de aafgeloupe 24 oer).\n't Ewegsjaffings-, beveiligings- en verplaatsinglogbook weurt te rifferensie hie-ónger getoeandj.", "log-fulllog": "Bekiek 't gans logbook", "edit-hook-aborted": "De bewèrking is aafgebroke door 'ne 'hook'.\nD'r is gein toelichting besjikbaar.", "edit-gone-missing": "De pagina is neet biegewirk.\nZe lik eweggesjaf te zien.", @@ -816,7 +817,7 @@ "logdelete-text": "Eweggesjafde logbookregele zeen nag zichbaar in de logbeuk, meh deile van d'n inhawd zeen neet aopenbaar.", "revdelete-text-others": "Anger behieërders kónne de verstaoken inhawd nag ummer inzeen en weer zichbaar make, behauve es aanvöllende bepirkinge zeen ingestèld.", "revdelete-confirm": "Bevestig des se dit wils doon, des se de consequenties begrieps en des se dit deis in euvereinstömming mit 't geljendj [[{{MediaWiki:Policy-url}}|beleid]].", - "revdelete-suppress-text": "Versies verbèrge deentj '''allein''' gebroek te waere in de volgende gevalle:\n* Ongepaste perseunlike informatie\n*: ''woonadres, telefoonnummers, Burger Service Nummers, enzovoors.''", + "revdelete-suppress-text": "Versies verbèrge deentj '''allein''' gebroek te waere in de volgende gevalle:\n* Meugelik smadelike infermasie\n* Ongepaste perseunlike informatie\n*: woonadres, telefoonnummers, Burger Service Nummers, en zo wiejer.", "revdelete-legend": "Stel zichbaarheidsbeperkinge in", "revdelete-hide-text": "Versieteks", "revdelete-hide-image": "Verberg bestandjsinhoud", @@ -1239,6 +1240,7 @@ "recentchanges-legend-newpage": "{{int:recentchanges-label-newpage}} (zuuch ouch [[Special:NewPages|de nuuj pagina's]])", "recentchanges-submit": "Toean", "rcfilters-legend-heading": "Lies mit aafkórtinge:", + "rcfilters-grouping-title": "Groepeer", "rcfilters-activefilters": "Aktief filtjers", "rcfilters-advancedfilters": "Geavenceerdje filtjers", "rcfilters-limit-title": "Te toeane verangeringe", diff --git a/languages/i18n/lki.json b/languages/i18n/lki.json index 82e71fde18..581e409aee 100644 --- a/languages/i18n/lki.json +++ b/languages/i18n/lki.json @@ -9,7 +9,8 @@ "Huji", "Miladrahimi", "Ebraminio", - "Process cq" + "Process cq", + "Alirezaaa" ] }, "tog-underline": "خط کیشائن ژێر پیوندەل:", @@ -155,13 +156,7 @@ "anontalk": "گەپ(قسە)", "navigation": "ناوبری", "and": " و", - "qbfind": "آدئین(پێاکرن)", - "qbbrowse": "مِنِی -گۀشتن", - "qbedit": "دسکاری", - "qbpageoptions": "ئێ وەڵگە", - "qbmyoptions": "وەڵگەل ووِژم", "faq": "پرسش‌های متداول", - "faqpage": "Project:پرسش‌های متداول", "actions": "کارۀل", "namespaces": "فضای نامۀل", "variants": "قصۀ کِرۀل", @@ -188,32 +183,22 @@ "edit-local": "ویرایش توضیحات محلی", "create": "دؤِرس کردن/سازین", "create-local": "افزودن توضیحات محلی", - "editthispage": "اێ وەڵگە دەسکاری کەن", - "create-this-page": " اێ وەڵگە دؤرِس کە", "delete": "حۀذف کردن/پاک کردن", - "deletethispage": "حذف این صفحه", - "undeletethispage": "واگردانی(گلآدائن)ئێ وەڵگە", "undelete_short": "زِنێ آکرن(احیا) {{PLURAL:$1|یگلە دەسکاری|$1 دەسکاری}}", "viewdeleted_short": "نمایش {{PLURAL:$1|یک ویرایش حذف‌شده|$1 ویرایش حذف‌شده}}", "protect": "پروژۀ", "protect_change": "گؤەڕانن/تغییر", - "protectthispage": "پڵۆم کردن اێ وەڵگە", "unprotect": "پڵۆم کردن بگؤەڕِن(تغییر ده)", - "unprotectthispage": "گؤەڕانن(تغییر)پڵۆم کردن اێ وەڵگە", "newpage": "وةڵگة تازۀ", - "talkpage": "دەربارە ئێ وەڵگە گەپ بووشن", "talkpagelinktext": "گەپ(قسە)", "specialpage": "وةڵگة/پةرة ویژة", "personaltools": "ابزارەل ووژی(شخصی)", - "articlepage": "نمایش مةقاڵة", "talk": "گەپ قسە", "views": "دیین/سئرکردن", "toolbox": "ابزارەل", "tool-link-userrights": "گروهه‌ل {{GENDER:$1|کاربر}} تغییر بکه", "tool-link-userrights-readonly": "گروه {{GENDER:$1|کاربر}} نشون بده", "tool-link-emailuser": "ای-میل {{GENDER:$1|کاربر}}ئه", - "userpage": "وةڵگة کاربۀر بؤین", - "projectpage": "وةڵگة پروژۀ بوین", "imagepage": "وةڵگة پرونده بؤین", "mediawikipage": "نمایش وةڵگة پیغام", "templatepage": "نمایش وةڵگة الگو", @@ -311,7 +296,7 @@ "nospecialpagetext": "شما یک صفحهٔ ویژهٔ نامجاز را درخواست کرده‌اید.\n\nفهرستی از صفحه‌های ویژهٔ مجاز در [[Special:SpecialPages|{{int:specialpages}}]] وجود دارد.", "error": "خطا", "databaseerror": "خطای پایگاه داده", - "databaseerror-text": "مشکلی در پایگاه‌داده‌ها رخ داده است. \nاین ممکن است نشان‌دهندهٔ ایرادی در نرم‌افزار باشد.", + "databaseerror-text": "مشکلی در پایگاه‌های داده رخ داده است. \nاین ممکن است نشان‌دهندهٔ ایرادی در نرم‌افزار باشد.", "databaseerror-textcl": "یک خطای پرس‌وجوی پایگاه داده‌های رخ داده است.", "databaseerror-query": "پرس‌ و جو: $1", "databaseerror-function": "تابع: $1", @@ -1151,7 +1136,7 @@ "right-mergehistory": "ادغام تاریخچهٔ صفحات", "right-userrights": "ویرایش تمام اختیارات کاربرها", "right-userrights-interwiki": "ویرایش اختیارات کاربرهای ویکی‌های دیگر", - "right-siteadmin": "قفل‌کردن و بازکردن پایگاه داده‌ها", + "right-siteadmin": "قفل‌کردن و بازکردن پایگاه‌های داده", "right-override-export-depth": "برون‌بری صفحه‌ها شامل صفحه‌های پیوند شده تا عمق ۵", "right-sendemail": "ارسال ایمیل به دیگر کاربران", "right-managechangetags": "ایجاد و حذف [[Special:Tags|برچسب‌ها]] از پایگاه داده", @@ -1217,7 +1202,7 @@ "action-mergehistory": "ادغام تاریخچهٔ این صفحه", "action-userrights": "ادغام تاریخچهٔ این صفحه", "action-userrights-interwiki": "ویرایش اختیارات کاربری کاربران یک ویکی دیگر", - "action-siteadmin": "قفل‌کردن و بازکردن پایگاه داده‌ها", + "action-siteadmin": "قفل‌کردن و بازکردن پایگاه‌های داده", "action-sendemail": "ایمیل کِل کۀ", "action-editmywatchlist": "فهرست پیگیری‌های خود را ویرایش کنید", "action-viewmywatchlist": "فهرست پیگیری‌های خود را ببینید", @@ -1888,7 +1873,7 @@ "delete-legend": "حۀذف کردن/پاک کردن", "historywarning": "هشدار: صفحه‌ای که در حال پاک‌کردن آن هستید دارای یک تاریخچه همراه $1 {{PLURAL:$1|بازبینی|بازبینی}} است:", "historyaction-submit": "نیشان دائن", - "confirmdeletetext": "شما در حال حذف کردن یک صفحه یا تصویر از پایگاه داده‌ها همراه با تمام تاریخچهٔ آن هستید.\nلطفاً این عمل را تأیید کنید و اطمینان حاصل کنید که عواقب این کار را می‌دانید و این عمل را مطابق با [[{{MediaWiki:Policy-url}}|سیاست‌ها]] انجام می‌دهید.", + "confirmdeletetext": "شما در حال حذف کردن یک صفحه یا تصویر از پایگاه‌های داده همراه با تمام تاریخچهٔ آن هستید.\nلطفاً این عمل را تأیید کنید و اطمینان حاصل کنید که عواقب این کار را می‌دانید و این عمل را مطابق با [[{{MediaWiki:Policy-url}}|سیاست‌ها]] انجام می‌دهید.", "actioncomplete": "عملكرد كامل بيه", "actionfailed": "عمل ناموفق بود", "deletedtext": "«$1» حذف شد.\nبرای سابقهٔ حذف‌های اخیر به $2 مراجعه کنید.", @@ -3059,7 +3044,6 @@ "fileduplicatesearch-noresults": "پرونده‌ای با نام «$1» أ دی نؤی /پئا نؤی.", "specialpages": "وەڵگەل(پەڕەل)ویژە", "specialpages-note-top": "شرح علائم", - "specialpages-note": "* صفحه‌های ویژهٔ عادی.\n* صفحه‌های ویژهٔ محدودشده.", "specialpages-group-maintenance": "گزارش‌های نگهداری", "specialpages-group-other": "سایر وةڵگةل ویژه", "specialpages-group-login": " إ نؤم هةتن سیستم/ حساوو کاربةری سازین", diff --git a/languages/i18n/lv.json b/languages/i18n/lv.json index 6e04c57ec0..44273185d4 100644 --- a/languages/i18n/lv.json +++ b/languages/i18n/lv.json @@ -798,6 +798,7 @@ "search-interwiki-caption": "Rezultāti no citiem projektiem", "search-interwiki-default": "Rezultāti no $1:", "search-interwiki-more": "(vairāk)", + "search-interwiki-more-results": "vairāk rezultātu", "search-relatedarticle": "Saistītais", "searchrelated": "saistītais", "searchall": "viss", @@ -840,7 +841,7 @@ "prefs-email": "E-pasta iestatījumi", "prefs-rendering": "Izskats", "saveprefs": "Saglabāt", - "restoreprefs": "Atjaunot noklusētos uzstādījumus (visās sadaļās)", + "restoreprefs": "Atiestatīt noklusētos iestatījumus (visās sadaļās)", "prefs-editing": "Labošana", "searchresultshead": "Meklēšana", "stub-threshold": "Slieksnis aizmetņa saites formatēšanai (baiti):", @@ -907,10 +908,10 @@ "prefs-advancedediting": "Vispārīgi uzstādījumi", "prefs-editor": "Redaktors", "prefs-preview": "Priekšskatījums", - "prefs-advancedrc": "Papildu uzstādījumi", - "prefs-advancedrendering": "Papildu uzstādījumi", - "prefs-advancedsearchoptions": "Papildu uzstādījumi", - "prefs-advancedwatchlist": "Papildu uzstādījumi", + "prefs-advancedrc": "Papildu iespējas", + "prefs-advancedrendering": "Papildu iespējas", + "prefs-advancedsearchoptions": "Papildu iespējas", + "prefs-advancedwatchlist": "Papildu iespējas", "prefs-displayrc": "Pamatuzstādījumi", "prefs-displaywatchlist": "Pamatuzstādījumi", "prefs-tokenwatchlist": "Marķieris", @@ -1018,6 +1019,7 @@ "grant-group-email": "Sūtīt e-pastu", "grant-group-high-volume": "Veikt liela apjoma aktivitātes", "grant-group-administration": "Veikt administratīvās darbības", + "grant-group-private-information": "Piekļūt privātiem datiem par tevi", "grant-blockusers": "Bloķēt un atbloķēt dalībniekus", "grant-createaccount": "Izveidot kontu", "grant-createeditmovepage": "Izveidot, labot un pārvietot lapas", @@ -1030,6 +1032,7 @@ "grant-editprotected": "Labot aizsargātās lapas", "grant-highvolume": "Liela apjoma labošana", "grant-patrol": "Patrulēt lapu izmaiņas", + "grant-privateinfo": "Piekļūt privātai informācijai", "grant-uploadfile": "Augšupielādēt jaunus failus", "grant-basic": "Pamattiesības", "grant-viewdeleted": "Skatīt dzēstos failus un lapas", @@ -1089,6 +1092,7 @@ "recentchanges-legend-heading": "Apzīmējumi:", "recentchanges-legend-newpage": "{{int:recentchanges-label-newpage}} (skatīt arī [[Special:NewPages|jaunās lapas]])", "recentchanges-submit": "Rādīt", + "rcfilters-other-review-tools": "Citi pārskatīšanas rīki", "rcfilters-group-results-by-page": "Grupēt rezultātus pēc lapas", "rcfilters-grouping-title": "Grupēšana", "rcfilters-activefilters": "Aktīvie filtri", @@ -1115,7 +1119,6 @@ "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-previous-changes-label": "Iepriekš skatītā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.", @@ -1138,7 +1141,7 @@ "rcfilters-filter-user-experience-level-unregistered-label": "Nereģistrēti", "rcfilters-filter-user-experience-level-unregistered-description": "Nepieslēgušies redaktori.", "rcfilters-filter-user-experience-level-newcomer-label": "Jaunpienācēji", - "rcfilters-filter-user-experience-level-newcomer-description": "Mazāk nekā 10 labojumi un 4 aktīvas dienas.", + "rcfilters-filter-user-experience-level-newcomer-description": "Reģistrēti lietotāji ar mazāk nekā 10 labojumiem un 4 dienu aktivitāti.", "rcfilters-filter-user-experience-level-learner-label": "Mācekļi", "rcfilters-filter-user-experience-level-learner-description": "Vairāk pieredzes nekā \"Jaunpienācējiem\", bet mazāk nekā \"Pieredzējušiem dalībniekiem\".", "rcfilters-filter-user-experience-level-experienced-label": "Pieredzējuši dalībnieki", @@ -1174,6 +1177,7 @@ "rcfilters-filter-previousrevision-description": "Visas izmaiņas, kuras nav pēdējā lapas izmaiņa.", "rcfilters-view-advanced-filters-label": "Paplašinātie filtri", "rcfilters-view-tags": "Iezīmētie labojumi", + "rcfilters-view-namespaces-tooltip": "Filtrēt rezultātus pēc vārdtelpas", "rcnotefrom": "Šobrīd redzamas izmaiņas kopš '''$2''' (parādītas ne vairāk par '''$1''').", "rclistfromreset": "Atiestatīt datuma izvēli", "rclistfrom": "Parādīt jaunas izmaiņas kopš $3 $2", @@ -1845,6 +1849,7 @@ "sp-contributions-search": "Meklēt lietotāju veiktās izmaiņas", "sp-contributions-username": "IP adrese vai dalībnieka vārds:", "sp-contributions-toponly": "Rādīt tikai labojumus, kas ir jaunākās versijas", + "sp-contributions-newonly": "Rādīt tikai labojumus, kas ir lapu veidošana", "sp-contributions-hideminor": "Paslēpt maznozīmīgos labojumus", "sp-contributions-submit": "Meklēt", "whatlinkshere": "Norādes uz šo rakstu", @@ -2597,6 +2602,7 @@ "watchlistedit-raw-added": "{{PLURAL:$1|$1 lapas tika pievienotas|$1 lapa tika pievienota|$1 lapas tika pievienotas}}:", "watchlistedit-raw-removed": "{{PLURAL:$1|$1 lapas tika noņemtas|1 lapa tika noņemta|$1 lapas tika noņemtas}}:", "watchlistedit-clear-titles": "Nosaukumi:", + "watchlisttools-clear": "Notīrīt uzraugāmo rakstu sarakstu", "watchlisttools-view": "Skatīt atbilstošās izmaiņas", "watchlisttools-edit": "Apskatīt un izmainīt uzraugāmo rakstu sarakstu", "watchlisttools-raw": "Izmainīt uzraugāmo rakstu saraksta kodu", @@ -2805,6 +2811,7 @@ "limitreport-postexpandincludesize-value": "$1/$2 {{PLURAL:$2|baiti|baits|baiti}}", "limitreport-templateargumentsize": "Veidnes argumenta izmērs", "limitreport-templateargumentsize-value": "$1/$2 {{PLURAL:$2|baiti|baits|baiti}}", + "limitreport-expensivefunctioncount": "Dārgo parsētāja funkciju skaits", "expand_templates_output": "Rezultāts", "expand_templates_ok": "Labi", "expand_templates_remove_nowiki": "Cenzēt iezīmes rezultātā", diff --git a/languages/i18n/mk.json b/languages/i18n/mk.json index 3dedf8d46c..35da0cb99c 100644 --- a/languages/i18n/mk.json +++ b/languages/i18n/mk.json @@ -1329,7 +1329,6 @@ "rcfilters-restore-default-filters": "Поврати основни филтри", "rcfilters-clear-all-filters": "Тргни ги сите филтри", "rcfilters-show-new-changes": "Погл. најнови промени", - "rcfilters-previous-changes-label": "Претходно прегледани промени", "rcfilters-search-placeholder": "Филтрирај скорешни промени (прелстајте или почнете да пишувате)", "rcfilters-invalid-filter": "Неважечки филтер", "rcfilters-empty-filter": "Нема активни филтри. Прикажани се сите придонеси.", @@ -2116,8 +2115,6 @@ "watching": "Набљудување...", "unwatching": "Отстранувам од набљудувани...", "watcherrortext": "Се појави грешка при менувањето на вашите нагодувања набљудуваните за „$1“.", - "watchlist-unwatch": "×", - "watchlist-unwatch-undo": "+", "enotif_reset": "Означи ги сите страници како посетени", "enotif_impersonal_salutation": "Википедија корисник", "enotif_subject_deleted": "Страницата $1 на {{SITENAME}} е избришана од {{gender:$2|$2}}", diff --git a/languages/i18n/nb.json b/languages/i18n/nb.json index 562a8191c5..adcbb80a34 100644 --- a/languages/i18n/nb.json +++ b/languages/i18n/nb.json @@ -87,6 +87,7 @@ "tog-watchlisthideminor": "Skjul mindre endringer fra overvåkningslisten", "tog-watchlisthideliu": "Skjul endringer av innloggede brukere fra overvåkningslisten", "tog-watchlistreloadautomatically": "Oppdater oversiktslisten automatisk når et filter er endret (JavaScript kreves)", + "tog-watchlistunwatchlinks": "Legg til lenker for å overvåke/fjerne overvåking direkte i overvåkningslisten (JavaScript kreves)", "tog-watchlisthideanons": "Skjul endringer av anonyme brukere fra overvåkningslisten", "tog-watchlisthidepatrolled": "Skjul patruljerte endringer fra overvåkningslisten", "tog-watchlisthidecategorization": "Skjul kategorisering av sider", @@ -1352,7 +1353,6 @@ "rcfilters-restore-default-filters": "Gjenopprett standardfiltre", "rcfilters-clear-all-filters": "Nullstill alle filtre", "rcfilters-show-new-changes": "Vis de nyeste endringene", - "rcfilters-previous-changes-label": "Endringer som har blitt vist tidligere", "rcfilters-search-placeholder": "Filtrer siste endringer (søk eller begyn å skrive)", "rcfilters-invalid-filter": "Ugyldig filter", "rcfilters-empty-filter": "Ingen aktive filtre. Alle bidrag vises.", diff --git a/languages/i18n/ne.json b/languages/i18n/ne.json index 1b1d4bc496..db3fc464dd 100644 --- a/languages/i18n/ne.json +++ b/languages/i18n/ne.json @@ -3189,7 +3189,7 @@ "compare-invalid-title": "तपाईंले खुलाउनु भएको शिर्षक अमान्य छ।", "compare-title-not-exists": "तपाईंले खुलाउनु भएको शिर्षक उपलब्ध छैन ।", "compare-revision-not-exists": "तपाईंले खुलाउनु भएको संस्करण उपलब्ध छैन ।", - "diff-form": "एक '''फारम'''", + "diff-form": "भिन्नताहरू", "dberr-problems": "क्षमा पाउँ! यो साइटमा तकनीकी गड़बड़ी आइपरेकोछ।", "dberr-again": "केही समय पर्खिएर पुन: लोड हुन दिनुहोस् ।", "dberr-info": "(डेटाबेस सर्भर: $1 सँग सम्पर्क स्थापित गर्न सकिएन)", diff --git a/languages/i18n/nl.json b/languages/i18n/nl.json index 1c863bda94..1c254e5635 100644 --- a/languages/i18n/nl.json +++ b/languages/i18n/nl.json @@ -1386,7 +1386,6 @@ "rcfilters-restore-default-filters": "Standaard filters terugzetten", "rcfilters-clear-all-filters": "Alle filters verwijderen", "rcfilters-show-new-changes": "Toon nieuwste wijzigingen", - "rcfilters-previous-changes-label": "Eerder bekeken wijzigingen", "rcfilters-search-placeholder": "Filter recente wijzigingen (blader of begin met intypen)", "rcfilters-invalid-filter": "Ongeldig filter", "rcfilters-empty-filter": "Geen actieve filters. Alle bijdragen worden weergeven.", @@ -1399,7 +1398,7 @@ "rcfilters-filterlist-noresults": "Geen filters gevonden", "rcfilters-noresults-conflict": "Geen resultaten gevonden omdat de zoekcriteria met elkaar conflicteren", "rcfilters-state-message-subset": "Dit filter heeft geen effect omdat de resultaten ook worden gefilterd door {{PLURAL:$2|het|de}} bredere {{PLURAL:$2|filter|filters}} (probeer ze te markeren om ze te onderscheiden): $1", - "rcfilters-state-message-fullcoverage": "Het selecteren van alle filters in deze groep is hetzelfde als geen filter selecteren, waardoor dit filter geen effect heeft. De groep bevat: $1", + "rcfilters-state-message-fullcoverage": "Het selecteren van alle filters in deze groep doet hetzelfde als geen filter selecteren, waardoor dit filter geen effect heeft. De groep bevat: $1", "rcfilters-filtergroup-authorship": "Auteur van de bijdragen", "rcfilters-filter-editsbyself-label": "Uw eigen wijzigingen", "rcfilters-filter-editsbyself-description": "Uw eigen bijdragen.", @@ -2170,8 +2169,6 @@ "watching": "Bezig met plaatsen op volglijst…", "unwatching": "Bezig met verwijderen van volglijst…", "watcherrortext": "Er is een fout opgetreden tijdens het wijzigen van uw volglijstinstellingen voor \"$1\".", - "watchlist-unwatch": "×", - "watchlist-unwatch-undo": "+", "enotif_reset": "Alle pagina's markeren als bezocht", "enotif_impersonal_salutation": "gebruiker van {{SITENAME}}", "enotif_subject_deleted": "{{SITENAME}}: pagina $1 is verwijderd door {{GENDER:$2|$2}}", @@ -3577,6 +3574,7 @@ "compare-title-not-exists": "De titel die u hebt opgegeven bestaat niet.", "compare-revision-not-exists": "De versie die u hebt opgegeven bestaat niet.", "diff-form": "Wijzigingen", + "diff-form-oldid": "Oude versienummer (optioneel)", "diff-form-revid": "Versienummer van de wijziging", "diff-form-submit": "Verschillen weergeven", "permanentlink": "Permanente koppeling", @@ -3990,6 +3988,7 @@ "undelete-cantedit": "U kunt deze pagina niet terug plaatsen omdat u niet het recht hebt om deze pagina te bewerken.", "undelete-cantcreate": "U kunt deze pagina niet terugplaatsen omdat er geen bestaande pagina met deze naam is en u geen toestemming hebt om deze pagina aan te maken.", "pagedata-title": "Pagina data", + "pagedata-text": "Deze pagina biedt een data interface voor pagina's. Geef een pagina titel op door deze in de URL te plaatsen, met behulp van de deelpagina syntax.\n* De toegepaste inhoudsindeling wordt gebaseerd op de door de client meegestuurde Accept Header. Dit betekent dat de pagina'data wordt aangeleverd in het formaat waaraan de client de voorkeur geeft.", "pagedata-not-acceptable": "Er is geen overeenkomende indeling gevonden. Ondersteunde MIME-typen: $1", "pagedata-bad-title": "Ongeldige titel: $1." } diff --git a/languages/i18n/nn.json b/languages/i18n/nn.json index 416b5878c5..9fa742582b 100644 --- a/languages/i18n/nn.json +++ b/languages/i18n/nn.json @@ -1129,7 +1129,7 @@ "rcfilters-days-title": "Dei siste dagane", "rcfilters-hours-title": "Dei siste timane", "rcfilters-days-show-days": "{{PLURAL:$1|Éin dag|$1 dagar}}", - "rcfilters-quickfilters": "Lagra filterinnstillingar", + "rcfilters-quickfilters": "Lagra filter", "rcfilters-quickfilters-placeholder-title": "Ingen lenkjer er lagra enno", "rcfilters-quickfilters-placeholder-description": "For å lagra filterinnstillingane dine og bruka dei på nytt seinare, klikk på bokmerkeikonet i området for aktive filter under.", "rcfilters-savedqueries-defaultlabel": "Lagra filter", @@ -1656,6 +1656,7 @@ "logempty": "Ingen element i loggen passar.", "log-title-wildcard": "Søk i titlar som byrjar med denne teksten", "showhideselectedlogentries": "Vis/gøym valde loggoppføringar", + "log-edit-tags": "Endra merka til valde loggoppføringar", "checkbox-all": "Alle", "checkbox-none": "Ingen", "checkbox-invert": "Vreng", @@ -2996,6 +2997,7 @@ "tags-create-reason": "Årsak:", "tags-create-submit": "Opprett", "tags-create-no-name": "Du må oppgje eit merkenamn.", + "tags-edit-title": "Endra merke", "tags-edit-existing-tags-none": "«Ingen»", "tags-edit-chosen-placeholder": "Vel nokre merke", "comparepages": "Samanlikna sider", diff --git a/languages/i18n/oc.json b/languages/i18n/oc.json index 1ebb171ecf..431ab09dd1 100644 --- a/languages/i18n/oc.json +++ b/languages/i18n/oc.json @@ -48,7 +48,7 @@ "tog-shownumberswatching": "Afichar lo nombre d'utilizaires que seguisson aquesta pagina", "tog-oldsig": "Vòstra signatura existenta :", "tog-fancysig": "Tractar la signatura coma de wikitèxte (sens ligam automatic)", - "tog-uselivepreview": "Utilizar l’apercebut rapid", + "tog-uselivepreview": "Afichar los apercebuts sens recargar la pagina", "tog-forceeditsummary": "M'avertir quand ai pas completat lo contengut de la bóstia de comentaris", "tog-watchlisthideown": "Amagar mas pròprias modificacions dins la lista de seguiment", "tog-watchlisthidebots": "Amagar los cambiaments faits pels bòts dins la lista de seguiment", @@ -164,13 +164,7 @@ "anontalk": "Discussion", "navigation": "Navigacion", "and": " e", - "qbfind": "Recercar", - "qbbrowse": "Far desfilar", - "qbedit": "Modificar", - "qbpageoptions": "Opcions de la pagina", - "qbmyoptions": "Mas opcions", "faq": "FAQ", - "faqpage": "Project:FAQ", "actions": "Accions", "namespaces": "Espacis de noms", "variants": "Variantas", @@ -196,32 +190,22 @@ "edit-local": "Modificar la descripcion locala", "create": "Crear", "create-local": "Apondre una descripcion locala", - "editthispage": "Modificar aquesta pagina", - "create-this-page": "Crear aquesta pagina", "delete": "Suprimir", - "deletethispage": "Suprimir aquesta pagina", - "undeletethispage": "Anullar la supression d'aquesta pagina", "undelete_short": "Restablir {{PLURAL:$1|1 modificacion| $1 modificacions}}", "viewdeleted_short": "Veire {{PLURAL:$1|una edicion escafada|$1 edicions escafadas}}", "protect": "Protegir", "protect_change": "modificar", - "protectthispage": "Protegir aquesta pagina", "unprotect": "Desprotegir", - "unprotectthispage": "Desprotegir aquesta pagina", "newpage": "Pagina novèla", - "talkpage": "Pagina de discussion", "talkpagelinktext": "Discussion", "specialpage": "Pagina especiala", "personaltools": "Aisinas personalas", - "articlepage": "Vejatz l'article", "talk": "Discussion", "views": "Afichatges", "toolbox": "Aisinas", "tool-link-userrights": "Modificar los gropes de {{GENDER:$1|l’utilizaire|l’utilizaira}}", "tool-link-userrights-readonly": "Veire los {{GENDER:$1|gropes utilizaire}}", "tool-link-emailuser": "Mandar un corrièr electronic a {{GENDER:$1|l’utilizaire|l’utilizaira}}", - "userpage": "Pagina d'utilizaire", - "projectpage": "Pagina meta", "imagepage": "Veire la pagina del fichièr", "mediawikipage": "Vejatz la pagina dels messatges", "templatepage": "Vejatz la pagina del modèl", @@ -232,7 +216,7 @@ "redirectedfrom": "(Redirigit dempuèi $1)", "redirectpagesub": "Pagina de redireccion", "redirectto": "Redirigir cap a :", - "lastmodifiedat": "Darrièr cambiament d'aquesta pagina lo $1, a $2.", + "lastmodifiedat": "Aquesta pagina es estada modificada pel darrièr còp lo $1 a $2.", "viewcount": "Aquesta pagina es estada consultada {{PLURAL:$1|un còp|$1 còps}}.", "protectedpage": "Pagina protegida", "jumpto": "Anar a :", @@ -687,7 +671,7 @@ "permissionserrorstext": "Avètz pas la permission d’efectuar l’operacion demandada per {{PLURAL:$1|la rason seguenta|las rasons seguentas}} :", "permissionserrorstext-withaction": "Sètz pas autorizat(ada) a $2, per {{PLURAL:$1|la rason seguenta|las rasons seguentas}} :", "recreate-moveddeleted-warn": "'''Atencion : sètz a tornar crear una pagina qu'es estada suprimida precedentament.'''\n\nDemandatz-vos s'es vertadièrament apropriat de contunhar de l’editar.\nL’istoric de las supressions e dels cambiaments de nom es afichat çaijós :", - "moveddeleted-notice": "Aquesta pagina es estada suprimida.\nL'istoric de las supressions e dels cambiaments de nom es afichat çaijós coma referéncia.", + "moveddeleted-notice": "Aquesta pagina es estada suprimida.\nLo jornal de las supressions, de las proteccions e dels desplaçaments de la pagina es afichat çaijós per referéncia.", "log-fulllog": "Veire lo jornal complet", "edit-hook-aborted": "Modificacion fracassada per croquet.\nCap d'explicacion pas balhada.", "edit-gone-missing": "A pas pogut metre a jorn la pagina.\nSembla que siá estada suprimida.", @@ -901,7 +885,7 @@ "search-category": "(categoria $1)", "search-file-match": "(correspond al contengut del fichièr)", "search-suggest": "Avètz volgut dire : $1", - "search-interwiki-caption": "Projèctes fraires", + "search-interwiki-caption": "Resultats dels projèctes fraires", "search-interwiki-default": "Resultats de $1 :", "search-interwiki-more": "(mai)", "search-interwiki-more-results": "mai de resultats", @@ -1231,18 +1215,32 @@ "recentchanges-legend-newpage": "{{int:recentchanges-label-newpage}} (veire tanben la [[Special:NewPages|lista de las paginas novèlas]]).", "recentchanges-submit": "Afichar", "rcfilters-activefilters": "Filtres actius", + "rcfilters-hours-title": "Darrièras oras", + "rcfilters-days-show-days": "($1 {{PLURAL:$1|jorn|jorns}})", + "rcfilters-days-show-hours": "$1 {{PLURAL:$1|ora|oras}}", + "rcfilters-quickfilters": "Filtres salvats", + "rcfilters-savedqueries-defaultlabel": "Filtres salvats", + "rcfilters-savedqueries-rename": "Renomenar", + "rcfilters-savedqueries-setdefault": "Activar per defaut", + "rcfilters-savedqueries-unsetdefault": "Suprimir per defaut", + "rcfilters-savedqueries-remove": "Suprimir", + "rcfilters-savedqueries-new-name-label": "Nom", + "rcfilters-savedqueries-new-name-placeholder": "Descriure l'objècte del filtre", + "rcfilters-savedqueries-apply-label": "Crear un filtre", + "rcfilters-savedqueries-apply-and-setdefault-label": "Crear lo filtre per defaut", + "rcfilters-savedqueries-cancel-label": "Anullar", "rcfilters-invalid-filter": "Filtre pas valid", "rcfilters-filterlist-title": "Filtres", + "rcfilters-highlightmenu-title": "Causir una color", "rcfilters-filterlist-noresults": "Cap de filtre pas trobat", - "rcfilters-filtergroup-registration": "Inscripcion de l'utilizaire", - "rcfilters-filter-registered-label": "Enregistrat", - "rcfilters-filter-registered-description": "Editors connectats.", - "rcfilters-filter-unregistered-label": "Desinscrit", - "rcfilters-filter-unregistered-description": "Editors que son pas connectats.", - "rcfilters-filtergroup-authorship": "Modificar la paternitat", - "rcfilters-filter-editsbyself-label": "Vòstras pròprias modificacions", - "rcfilters-filter-editsbyself-description": "Vòstras modificacions.", - "rcfilters-filter-editsbyother-label": "Modificacions per d’autres.", + "rcfilters-filtergroup-authorship": "Paternitat de las contribucions", + "rcfilters-filter-editsbyself-label": "Modificacions faitas per vos", + "rcfilters-filter-editsbyself-description": "Vòstras pròprias contribucions.", + "rcfilters-filter-editsbyother-label": "Modificacions faitas pels autres.", + "rcfilters-filter-user-experience-level-registered-label": "Connectat", + "rcfilters-filter-user-experience-level-registered-description": "Editors connectats.", + "rcfilters-filter-user-experience-level-unregistered-label": "Pas connectat", + "rcfilters-filter-user-experience-level-unregistered-description": "Editors que son pas connectats.", "rcfilters-filter-user-experience-level-newcomer-label": "Novèls arribants", "rcfilters-filter-user-experience-level-learner-label": "Aprenents", "rcfilters-filter-user-experience-level-experienced-label": "Utilizaires experimentats", @@ -1250,6 +1248,8 @@ "rcfilters-filter-bots-label": "Robòt", "rcfilters-filter-humans-label": "Èsser uman (pas robòt)", "rcfilters-filter-humans-description": "Modificacions faitas per d'editors umans.", + "rcfilters-filter-patrolled-label": "Patrolhat", + "rcfilters-filter-unpatrolled-label": "Pas patrolhat", "rcfilters-filtergroup-significance": "Significacion", "rcfilters-filter-minor-label": "Cambiaments menors", "rcfilters-filter-minor-description": "Modificacions que l'autor a marcadas coma menoras.", @@ -3082,6 +3082,7 @@ "version-libraries-description": "Descripcion", "version-libraries-authors": "Autors", "redirect": "Redirigir per ID de fichièr, utilizaire, pagina, revision o jornal.", + "redirect-summary": "Aquesta pagina especiala redirigís cap a un fichièr (nom de fichièr provesit), una pagina (ID de revision o de pagina provesit), una pagina d’utilizaire (identificant numeric de l’utilizaire provesit), o una entrada de jornal (ID del jornal provesit). Utilizacion : [[{{#Special:Redirect}}/file/Example.jpg]], [[{{#Special:Redirect}}/page/64308]], [[{{#Special:Redirect}}/revision/328429]], [[{{#Special:Redirect}}/user/101]], o [[{{#Special:Redirect}}/logid/186]].", "redirect-submit": "Validar", "redirect-lookup": "Recèrca :", "redirect-value": "Valor :", @@ -3101,7 +3102,6 @@ "fileduplicatesearch-noresults": "Cap de fichièr nomenat « $1 » es pas estat trobat.", "specialpages": "Paginas especialas", "specialpages-note-top": "Legenda", - "specialpages-note": "* Paginas especialas normalas.\n* Paginas especialas restrentas.", "specialpages-group-maintenance": "Rapòrts de mantenença", "specialpages-group-other": "Autras paginas especialas", "specialpages-group-login": "S'identificar / s'inscriure", @@ -3173,6 +3173,7 @@ "compare-invalid-title": "Lo títol qu'avètz especificat es incorrècte.", "compare-title-not-exists": "Lo títol qu'avètz especificat existís pas", "compare-revision-not-exists": "La revision qu'avètz especificada existís pas.", + "diff-form": "Diferéncias", "dberr-problems": "O planhèm ! Aqueste site rencontra de dificultats tecnicas.", "dberr-again": "Ensajatz d'esperar qualques minutas e tornatz cargar.", "dberr-info": "(Accès a la basa de donadas impossible : $1)", @@ -3204,7 +3205,7 @@ "htmlform-user-not-valid": "$1 es pas un nom d'utilizaire valid.", "logentry-delete-delete": "$1 {{GENDER:$2|a suprimit}} la pagina $3", "logentry-delete-delete_redir": "$1 {{GENDER:$2|suprimit}} redirigit cap a $3 per espotiment.", - "logentry-delete-restore": "$1 {{GENDER:$2|a restablit}} la pagina $3", + "logentry-delete-restore": "$1 {{GENDER:$2|a restablit}} la pagina $3 ($4)", "logentry-delete-event": "$1 {{GENDER:$2|a modificat}} la visibilitat {{PLURAL:$5|d'un eveniment del jornal|de $5 eveniments del jornal}} sus $3 : $4", "logentry-delete-revision": "$1 {{GENDER:$2|a modificat}} la visibilitat {{PLURAL:$5|d'una revision|de $5 revisions}} sus la pagina $3 : $4", "logentry-delete-event-legacy": "$1 {{GENDER:$2|a modificat}} la visibilitat dels eveniments del jornal sus $3", diff --git a/languages/i18n/pl.json b/languages/i18n/pl.json index 01eb029d29..d2eca86de8 100644 --- a/languages/i18n/pl.json +++ b/languages/i18n/pl.json @@ -126,6 +126,7 @@ "tog-watchlisthideminor": "Ukryj drobne zmiany na liście obserwowanych", "tog-watchlisthideliu": "Ukryj edycje zalogowanych użytkowników na liście obserwowanych", "tog-watchlistreloadautomatically": "Automatycznie odświeżaj listę obserwowanych po każdej zmianie filtra (wymagany JavaScript)", + "tog-watchlistunwatchlinks": "Pokazuj linki obserwuj/nie obserwuj bezpośrednio przy wpisach na liście obserwowanych (wymagany JavaScript do funkcji przełączania)", "tog-watchlisthideanons": "Ukryj edycje anonimowych użytkowników na liście obserwowanych", "tog-watchlisthidepatrolled": "Ukryj sprawdzone edycje na liście obserwowanych", "tog-watchlisthidecategorization": "Ukryj kategoryzację stron", @@ -1391,7 +1392,6 @@ "rcfilters-restore-default-filters": "Przywróć domyślne filtry", "rcfilters-clear-all-filters": "Wyczyść filtry", "rcfilters-show-new-changes": "Zobacz nowsze zmiany", - "rcfilters-previous-changes-label": "Poprzednio wyświetlane zmiany", "rcfilters-search-placeholder": "Filtruj ostatnie zmiany (przeglądaj lub zacznij wpisywać)", "rcfilters-invalid-filter": "Nieprawidłowy filtr", "rcfilters-empty-filter": "Brak aktywnych filtrów. Wyświetlane są wszystkie zmiany.", diff --git a/languages/i18n/pnb.json b/languages/i18n/pnb.json index eda97caa0c..fd7fb645b5 100644 --- a/languages/i18n/pnb.json +++ b/languages/i18n/pnb.json @@ -146,7 +146,7 @@ "category-file-count-limited": "اس گٹھ چ اے {{PLURAL:$1|فائل اے|$1 فائلاں نیں}}۔", "listingcontinuesabbrev": "جاری", "index-category": "انڈیکسڈ صفے", - "noindex-category": "نان انڈیکسڈ ورقے", + "noindex-category": "نان انڈیکسڈ صفے", "broken-file-category": "ٹٹے ہوۓ جوڑاں آلے صفحے", "about": "بارے چ", "article": "آرٹیکل والا صفہ", diff --git a/languages/i18n/pt-br.json b/languages/i18n/pt-br.json index 4e06940af4..4d7606d231 100644 --- a/languages/i18n/pt-br.json +++ b/languages/i18n/pt-br.json @@ -1416,7 +1416,6 @@ "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-previous-changes-label": "Mudanças vistas anteriormente", "rcfilters-search-placeholder": "Filtrar mudanças recentes (procurar ou começar a digitar)", "rcfilters-invalid-filter": "Filtro inválido", "rcfilters-empty-filter": "Nenhum filtro ativo. Todas as contribuições são mostradas.", @@ -2199,8 +2198,6 @@ "watching": "Vigiando...", "unwatching": "Deixando de vigiar...", "watcherrortext": "Ocorreu um erro ao alterar a configuração da sua lista de páginas vigiadas para \"$1\".", - "watchlist-unwatch": "×", - "watchlist-unwatch-undo": "+", "enotif_reset": "Marcar todas as páginas como visitadas", "enotif_impersonal_salutation": "Usuário do projeto \"{{SITENAME}}\"", "enotif_subject_deleted": "A página $1 da {{SITENAME}} foi eliminada por {{gender:$2|$2}}", diff --git a/languages/i18n/pt.json b/languages/i18n/pt.json index cafc3981dc..3b76197f8d 100644 --- a/languages/i18n/pt.json +++ b/languages/i18n/pt.json @@ -110,6 +110,7 @@ "tog-watchlisthideminor": "Esconder edições menores ao listar mudanças às páginas vigiadas", "tog-watchlisthideliu": "Esconder edições de utilizadores autenticados ao listar mudanças às páginas vigiadas", "tog-watchlistreloadautomatically": "Recarregar a lista de páginas vigiadas automaticamente sempre que um filtro é alterado (requer JavaScript)", + "tog-watchlistunwatchlinks": "Adicionar links diretos para vigiar ou deixar de vigiar, às entradas da lista de páginas vigiadas (é necessário o JavaScript para alternar entre ambas)", "tog-watchlisthideanons": "Esconder edições de utilizadores anónimos ao listar mudanças às páginas vigiadas", "tog-watchlisthidepatrolled": "Esconder edições patrulhadas ao listar mudanças às páginas vigiadas", "tog-watchlisthidecategorization": "Ocultar categorização de páginas", @@ -1373,7 +1374,6 @@ "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-previous-changes-label": "Mudanças vistas anteriormente", "rcfilters-search-placeholder": "Filtrar mudanças recentes (navegue ou começe a escrever)", "rcfilters-invalid-filter": "Filtro inválido", "rcfilters-empty-filter": "Não há filtros ativos. São mostradas todas as contribuições.", diff --git a/languages/i18n/qqq.json b/languages/i18n/qqq.json index eeb0e7a65f..92c3a89b38 100644 --- a/languages/i18n/qqq.json +++ b/languages/i18n/qqq.json @@ -1540,6 +1540,7 @@ "recentchanges-legend-unpatrolled": "Used as legend on [[Special:RecentChanges]] and [[Special:Watchlist]].\n\nRefers to {{msg-mw|Recentchanges-label-unpatrolled}}.", "recentchanges-legend-plusminus": "{{optional}}\nA plus/minus sign with a number for the legend.", "recentchanges-submit": "Label for submit button in [[Special:RecentChanges]]\n{{Identical|Show}}", + "rcfilters-tag-remove": "A tooltip for the button that removes a filter from the active filters area in [[Special:RecentChanges]] and [[Special:Watchlist]] when RCFilters are enabled. \n\nParameters: $1 - Tag label", "rcfilters-legend-heading": "Used as a heading for legend box on [[Special:RecentChanges]] and [[Special:Watchlist]] when RCFilters are enabled.", "rcfilters-other-review-tools": "Used as a heading for the community collection of other links on [[Special:RecentChanges]] when RCFilters are enabled.", "rcfilters-group-results-by-page": "A label for the checkbox describing whether the results in [[Special:RecentChanges]] are grouped by page when RCFilters are enabled.", @@ -1552,6 +1553,7 @@ "rcfilters-hours-title": "Title for the options to change the number of hours for the results shown.", "rcfilters-days-show-days": "Title for the button that opens the operation to control the day range for the results. \n\nParameters: $1 - Number of days shown", "rcfilters-days-show-hours": "Title for the button that opens the operation to control the hour range for the results. \n\nParameters: $1 - Number of hours shown", + "rcfilters-highlighted-filters-list": "Text for the tooltip that is displayed over highlighted results, specifying which filters the result matches in [[Special:RecentChanges]] when RCFilters are enabled. \n\nParameters: $1 - A comma separated list of matching filter names.", "rcfilters-quickfilters": "Label for the button that opens the saved filter settings menu in [[Special:RecentChanges]]", "rcfilters-quickfilters-placeholder-title": "Title for the text shown in the quick filters menu on [[Special:RecentChanges]] if the user has not saved any quick filters.", "rcfilters-quickfilters-placeholder-description": "Description for the text shown in the quick filters menu on [[Special:RecentChanges]] if the user has not saved any quick filters.", @@ -1613,13 +1615,18 @@ "rcfilters-filter-minor-description": "Description for the filter for showing edits marked as minor.", "rcfilters-filter-major-label": "Label for the filter for showing edits not marked as minor.", "rcfilters-filter-major-description": " Description for the filter for showing edits not marked as minor.", - "rcfilters-filtergroup-watchlist": "Title for the watchlist filter group", + "rcfilters-filtergroup-watchlist": "Title for the watchlist filter group (only available on [[Special:Recentchanges]])", "rcfilters-filter-watchlist-watched-label": "Label for the filter for showing changes to pages on your watchlist.", "rcfilters-filter-watchlist-watched-description": "Description for the filter for showing changes to pages on your watchlist.", "rcfilters-filter-watchlist-watchednew-label": "Label for the filter for showing new changes to pages on your watchlist.", "rcfilters-filter-watchlist-watchednew-description": "Description for the filter for showing new changes to pages on your watchlist.", "rcfilters-filter-watchlist-notwatched-label": "Label for the filter for showing changes to pages not on your watchlist.", "rcfilters-filter-watchlist-notwatched-description": "Description for the filter for showing changes to pages not on your watchlist.", + "rcfilters-filtergroup-watchlistactivity": "Title for the watchlist activity filter group (only available on [[Special:Watchlist]])", + "rcfilters-filter-watchlistactivity-unseen-label": "Label for unseen changes in the watchlist activity filter group.", + "rcfilters-filter-watchlistactivity-unseen-description": "Description for unseen changes in the watchlist activity filter group.", + "rcfilters-filter-watchlistactivity-seen-label": "Label for seen changes in the watchlist activity filter group.", + "rcfilters-filter-watchlistactivity-seen-description": "Description for seen changes in the watchlist activity filter group.", "rcfilters-filtergroup-changetype": "Title for the filter group for edit type.", "rcfilters-filter-pageedits-label": "Label for the filter for showing edits to existing pages.", "rcfilters-filter-pageedits-description": "Description for the filter for showing edits to existing pages.", @@ -1651,6 +1658,7 @@ "rcfilters-liveupdates-button": "Label for the button to enable or disable live updates on [[Special:RecentChanges]]", "rcfilters-liveupdates-button-title-on": "Title for the button to enable or disable live updates on [[Special:RecentChanges]] when the feature is ON.", "rcfilters-liveupdates-button-title-off": "Title for the button to enable or disable live updates on [[Special:RecentChanges]] when the feature is OFF.", + "rcfilters-watchlist-markSeen-button": "Label for the button to mark all changes as seen on [[Special:Watchlist]] when using the structured filters interface.", "rcnotefrom": "This message is displayed at [[Special:RecentChanges]] when viewing recentchanges from some specific time.\n\nThe corresponding message is {{msg-mw|Rclistfrom}}.\n\nParameters:\n* $1 - the maximum number of changes that are displayed\n* $2 - (Optional) a date and time\n* $3 - a date\n* $4 - a time\n* $5 - Number of changes are displayed, for use with PLURAL", "rclistfromreset": "Used on [[Special:RecentChanges]] to reset a selection of a certain date range.", "rclistfrom": "Used on [[Special:RecentChanges]]. Parameters:\n* $1 - (Currently not use) date and time. The date and the time adds to the rclistfrom description.\n* $2 - time. The time adds to the rclistfrom link description (with split of date and time).\n* $3 - date. The date adds to the rclistfrom link description (with split of date and time).\n\nThe corresponding message is {{msg-mw|Rcnotefrom}}.", diff --git a/languages/i18n/roa-tara.json b/languages/i18n/roa-tara.json index e6937d0f6c..c752011cfd 100644 --- a/languages/i18n/roa-tara.json +++ b/languages/i18n/roa-tara.json @@ -3437,7 +3437,7 @@ "compare-invalid-title": "'U titele ca è specificate jè invalide.", "compare-title-not-exists": "'U titele ca è specificate non g'esiste.", "compare-revision-not-exists": "'A revisione ca è specificate non g'esiste.", - "diff-form": "'nu '''form'''", + "diff-form": "Differenze", "dberr-problems": "Sime spiacende! Stu site stè 'ngondre de le difficoltà tecniche.", "dberr-again": "Aspitte quacche minute e pò recareche.", "dberr-info": "(Non ge riuscime a trasè sus a'u server d'u database: $1)", diff --git a/languages/i18n/ru.json b/languages/i18n/ru.json index 2bded0c2a3..4ba7dd6542 100644 --- a/languages/i18n/ru.json +++ b/languages/i18n/ru.json @@ -150,6 +150,7 @@ "tog-watchlisthideminor": "Скрывать малые правки из списка наблюдения", "tog-watchlisthideliu": "Скрывать правки представившихся участников из списка наблюдения", "tog-watchlistreloadautomatically": "Обновлять список наблюдения автоматически всякий раз, когда изменяется фильтр (требуется JavaScript)", + "tog-watchlistunwatchlinks": "Добавить прямые для включения/исключения записей в Список наблюдения (требуется JavaScript)", "tog-watchlisthideanons": "Скрывать правки анонимных участников из списка наблюдения", "tog-watchlisthidepatrolled": "Скрывать отпатрулированные правки из списка наблюдения", "tog-watchlisthidecategorization": "Скрывать категоризацию страниц", @@ -1420,7 +1421,6 @@ "rcfilters-restore-default-filters": "Восстановить фильтры по умолчанию", "rcfilters-clear-all-filters": "Очистить все фильтры", "rcfilters-show-new-changes": "Последние изменения", - "rcfilters-previous-changes-label": "Ранее просмотренные изменения", "rcfilters-search-placeholder": "Последние изменения фильтров (просмотрите или начните вводить)", "rcfilters-invalid-filter": "Недопустимый фильтр", "rcfilters-empty-filter": "Нет активных фильтров. Показываются все правки.", @@ -2208,8 +2208,6 @@ "watching": "Добавление в список наблюдения…", "unwatching": "Удаление из списка наблюдения…", "watcherrortext": "Произошла ошибка при изменении настройки наблюдения для «$1».", - "watchlist-unwatch": "×", - "watchlist-unwatch-undo": "+", "enotif_reset": "Отметить все страницы как просмотренные", "enotif_impersonal_salutation": "Участник {{grammar:genitive|{{SITENAME}}}}", "enotif_subject_deleted": "Страница проекта «{{SITENAME}}» с именем «$1» была удалена {{gender:$2|участником|участницей}} $2", @@ -3694,6 +3692,7 @@ "compare-revision-not-exists": "Указанной вами версии не существует.", "diff-form": "Различия", "diff-form-oldid": "Старый идентификатор версии (необязательно)", + "diff-form-revid": "Идентификатор версии с различиями", "diff-form-submit": "Показать отличия", "permanentlink": "Постоянная ссылка", "permanentlink-revid": "Идентификатор правки", diff --git a/languages/i18n/shi.json b/languages/i18n/shi.json index 575a1bdc4c..9d1f190de7 100644 --- a/languages/i18n/shi.json +++ b/languages/i18n/shi.json @@ -67,9 +67,9 @@ "fri": "Asimwas", "sat": "Asidyas", "january": "ⵉⵏⵏⴰⵢⵔ", - "february": "brayr", + "february": "ⴼⴱⵔⴰⵢⵔ", "march": "ⵎⴰⵔⵚ", - "april": "Ibrir", + "april": "ⴰⴱⵔⵉⵍ", "may_long": "ⵎⴰⵢⵢⵓ", "june": "ⵢⵓⵏⵢⵓ", "july": "ⵢⵓⵍⵢⵓⵣ", @@ -79,7 +79,7 @@ "november": "ⵏⵓⵡⴰⵏⴱⵉⵔ", "december": "ⴷⵓⵊⴰⵏⴱⵉⵔ", "january-gen": "ⵉⵏⵏⴰⵢⵔ", - "february-gen": "Brayr", + "february-gen": "ⴼⴱⵔⴰⵢⵔ", "march-gen": "ⵎⴰⵔⵚ", "april-gen": "Ibrir", "may-gen": "ⵎⴰⵢⵢⵓ", @@ -93,7 +93,7 @@ "jan": "ⵉⵏⵏ", "feb": "brayr", "mar": "ⵎⴰⵔ", - "apr": "Ibrir", + "apr": "ⴰⴱⵔ", "may": "ⵎⴰⵢ", "jun": "ⵢⵓⵏ", "jul": "ⵢⵓⵍ", @@ -111,12 +111,12 @@ "october-date": "$1 ⴽⵜⵓⴱⵔ", "november-date": "$1 ⵏⵓⵡⴰⵏⴱⵉⵔ", "december-date": "$1 ⴷⵓⵊⴰⵏⴱⵉⵔ", - "pagecategories": "{{PLURAL:$1|ⴰⵙⵎⵉⵍ|ⵉⵙⵎⵉⵍⵏ}}", - "category_header": "ⵜⴰⵙⵏⵉⵡⵉⵏ ⴳ ⵓⵙⵎⵉⵍ \"$1\"", + "pagecategories": "{{PLURAL:$1|ⵜⴰⴳⴳⴰⵢⵜ|ⵜⴰⴳⴳⴰⵢⵉⵏ}}", + "category_header": "ⵜⴰⵙⵏⵉⵡⵉⵏ ⵖ ⵜⴰⴳⴳⴰⵢⵜ \"$1\"", "subcategories": "ⵉⴷⵓⵙⵎⵉⵍⵏ", "category-media-header": "Asdaw multimedya ɣ taggayt \"$1\"", "category-empty": "Taggayt ad ur gis kra n tasna, du-taggayt niɣd asddaw multimidya", - "hidden-categories": "{{PLURAL:$1|ⴰⵙⵎⵉⵍ ⵉⵏⵜⵍⵏ|ⵉⵙⵎⵉⵍⵏ ⵏⵜⵍⵏⵉⵏ}}", + "hidden-categories": "{{PLURAL:$1|ⵜⴰⴳⴳⴰⵢⵜ ⵉⵏⵜⵍⵏ|ⵜⴰⴳⴳⴰⵢⵉⵏ ⵏⵜⵍⵏⵉⵏ}}", "hidden-category-category": "ⵉⵙⵎⵉⵍⵏ ⵏⵜⵍⵏⵉⵏ", "category-subcat-count": "Taggayt ad gis {{PLURAL:$2|ddu taggayt|$2 ddu taggayin, lli ɣ tlla {{PLURAL:$1|ɣta|ɣti $1}}}} γu flla nna.", "category-subcat-count-limited": "Taggayt ad illa gis {{PLURAL:$1|ddu taggayt| $1 ddu taggayyin}} ɣid ɣ uzddar.", @@ -127,7 +127,7 @@ "listingcontinuesabbrev": "Attfr", "index-category": "Tisniwin su umatar", "noindex-category": "Tisniwin bla amatar", - "broken-file-category": "Tisniwin ɣ llan izdayn rzanin", + "broken-file-category": "ⵜⴰⵙⵏⵉⵡⵉⵏ ⵖ ⵍⵍⴰⵏ ⵉⵍⵉⵏⴽⵏ ⵔⵥⴰⵏⵉⵏ", "about": "ⵅⴼ", "article": "ⵜⴰⵙⵏⴰ ⵏ ⵜⵓⵎⴰⵢⵜ", "newwindow": "(ⵉⵜⵜⵏⵓⵔⵥⵓⵎ ⴷⴳ ⵓⵙⴽⵙⵍ ⴰⵎⴰⵢⵏⵓ)", @@ -169,7 +169,7 @@ "specialpage": "ⵜⴰⵙⵏⴰ ⵉⵥⵍⵉⵏ", "personaltools": "ⵉⵎⴰⵙⵙⵏ ⵉⵏⵉⵎⴰⵏⴻⵏ", "talk": "ⴰⵎⵙⴰⵡⴰⵍ", - "views": "Ẓr.. (Mel)", + "views": "ⵜⴰⵏⵏⴰⵢⵉⵏ", "toolbox": "ⵉⵎⴰⵙⵙⵏ", "imagepage": "Ẓr tasna n-usddaw", "mediawikipage": "Ẓr tasna n tabrat", @@ -180,7 +180,7 @@ "otherlanguages": "ⵙ ⵜⵓⵜⵍⴰⵢⵉⵏ ⵢⴰⴹⵏ", "redirectedfrom": "(Tmmuttid z $1)", "redirectpagesub": "Tasna n-usmmattay", - "lastmodifiedat": "ⴰⵙⵏⴼⵍ ⵉⴳⴳⵯⵔⴰⵏ ⴳ ⵜⴰⵙⵏⴰ ⴰⴷ ⵉⵜⵜⵢⵓⵙⴽⵔ ⴰⵙⵙ ⵏ $1 ⴳ $2.", + "lastmodifiedat": "ⴰⵙⵏⴼⵍ ⵉⴳⴳⵯⵔⴰⵏ ⵖ ⵜⴰⵙⵏⴰ ⴰⴷ ⵉⵜⵜⵢⵓⵙⴽⵔ ⴰⵙⵙ ⵏ $1 ⴳ $2.", "viewcount": "Tmmurzm tasna yad {{PLURAL:$1|yat twalt|$1 mnnawt twal}}.", "protectedpage": "Tasnayat iqn ugdal nes.", "jumpto": "ⴷⴷⵓ ⵙ:", @@ -190,10 +190,10 @@ "pool-timeout": "Tzrit tizi n uql lli yak ittuykfan. Ggutn midn lli iran ad iẓr tasna yad. Urrid yan imik..", "pool-queuefull": "Umuɣ n twuri iẓun (iεmr)", "pool-errorunknown": "Anzri (error) ur ittuyssan.", - "aboutsite": "ⵅⴼ {{SITENAME}}", - "aboutpage": "Project:ⵅⴼ", + "aboutsite": "ⴼ {{SITENAME}}", + "aboutpage": "Project:ⵖⴼ", "copyright": "Mayllan gis illa ɣ ddu $1.", - "copyrightpage": "{{ns:project}}:Izrfan n umgay", + "copyrightpage": "{{ns:project}}:ⵉⵣⵔⴼⴰⵏ ⵏ ⵓⵎⴳⴰⵢ", "currentevents": "Immussutn n ɣila", "currentevents-url": "Project:Immussutn n ɣilad", "disclaimers": "ⵉⵙⵎⵉⴳⵍⵏ", @@ -224,7 +224,7 @@ "editold": "ⵙⵏⴼⵍ", "viewsourceold": "Mel aɣbalu", "editlink": "ⵙⵏⴼⵍ", - "viewsourcelink": "Mel aɣbalu", + "viewsourcelink": "ⵥⵔ ⴰⵙⴰⴳⵎ", "editsectionhint": "ⵙⵏⴼⵍ ⵜⵉⴳⵣⵎⵉ: $1", "toc": "ⵜⵓⵎⴰⵢⵉⵏ", "showtoc": "Mel", @@ -243,7 +243,7 @@ "site-atom-feed": "$1 lqm n' atom", "page-rss-feed": "\"$1\" tlqim RSS", "page-atom-feed": "$1 azday atom", - "red-link-title": "$1 (tasna yad ur tlli)", + "red-link-title": "$1 (ⵜⴰⵙⵏⴰ ⵓⵔ ⵉⵍⵍⵉⵏ)", "nstab-main": "ⵜⴰⵙⵏⴰ", "nstab-user": "ⵜⴰⵙⵏⴰ ⵏ {{GENDER:{{ROOTPAGENAME}}|ⵓⵙⵎⵔⴰⵙ|ⵜⵙⵎⵔⴰⵙⵜ}}", "nstab-media": "Tasnat Ntuzumt", @@ -253,7 +253,7 @@ "nstab-mediawiki": "ⵜⵓⵣⵉⵏⵜ", "nstab-template": "Talɣa", "nstab-help": "ⵜⴰⵙⵏⴰ ⵏ ⵜⵡⵉⵙⵉ", - "nstab-category": "ⴰⵙⵎⵉⵍ", + "nstab-category": "ⵜⴰⴳⴳⴰⵢⵜ", "mainpage-nstab": "ⵜⴰⵙⵏⴰ ⵏ ⵓⵙⵏⵓⴱⴳ", "nosuchaction": "ⵓⵔ ⵜⵍⵍⵉ ⵜⵉⴳⴰⵡⵜ ⴰⴷ", "nosuchactiontext": "Mytuskarn ɣu tansa yad ur tti tgi.\n\nIrwas is turit tansa skra mani yaḍnin, ulla azday ur igi amya.\n\nTzdar attili tamukrist ɣ {{SITENAME}}.", @@ -336,9 +336,9 @@ "italic_sample": "Aḍṛiṣ iknan", "italic_tip": "Aḍṛiṣ iknan", "link_sample": "Azwl n uzday", - "link_tip": "Azday uwgns", - "extlink_sample": "http://www.example.com azwl n uzday", - "extlink_tip": "Azday n brra (af ur ttut amzwir http://prefix)", + "link_tip": "ⴰⵍⵉⵏⴽ ⴰⴳⵯⵏⵙⴰⵏ", + "extlink_sample": "http://www.example.com ⴰⵣⵡⵍ ⵏ ⵓⵍⵉⵏⴽ", + "extlink_tip": "ⴰⵍⵉⵏⴽ ⴰⴱⵔⵔⴰⵏ (ⴰⴷ ⵓⵔ ⵜⴻⵜⵜⵓⵜ ⴰⵣⵡⵉⵔ http://)", "headline_sample": "Aḍṛiṣ n ddu uzwl", "headline_tip": "Ddu-uzwl taskfalt 2", "nowiki_sample": "Kcm aḍṛiṣ li ur imzln ɣid", @@ -372,7 +372,7 @@ "accmailtitle": "awal ihdan hatin yuznak nnit", "newarticle": "(ⴰⵎⴰⵢⵏⵓ)", "newarticletext": "Tfrt yan uzday s yat tasna lli ur ta jju illan [{{fullurl:Special:Log|type=delete&page={{FULLPAGENAMEE}}}} ttuykkas].\nIɣ rast daɣ tskrt skcm atṛiṣ nk ɣ tanaka yad (Tẓḍaṛt an taggt γi [$1 tasna u usaws] iɣ trit inɣmisn yaḍn).\nIvd tlkmt {{GENDER:||e|(e)}} ɣis bla trit, klikki f tajrrayt n '''urrir''' n iminig nk (navigateur).", - "noarticletext": "ɣilad ur illa walu may ityuran f tasnatad ad, tzdart at [[Special:Search/{{PAGENAME}}|search for this page title]] in other pages,\n[{{fullurl:{{#Special:Log}}|page={{FULLPAGENAMEE}}}} search the related logs],\nulla cabba [{{fullurl:{{FULLPAGENAME}}|action=edit}} edit this page].", + "noarticletext": "ⵓⵔ ⵖⵉⵍⴰⴷ ⵉⵍⵍⵉ ⴽⵔⴰ ⵏ ⵓⴹⵔⵉⵙ ⵖ ⵜⴰⵙⵏⴰ ⴰⴷ.\nⵜⵥⴹⴰⵔⵜ [[Special:Search/{{PAGENAME}}|ⴰⴷ ⵜⵙⵉⴳⴳⵍⵜ ⴰⵣⵡⵍ ⴰⴷ]] ⵖ ⵜⴰⵙⵏⵉⵡⵉⵏ ⵢⴰⴹⵏ,\n[{{fullurl:{{#Special:Log}}|page={{FULLPAGENAMEE}}}} search the related logs],\nⵏⵖ [{{fullurl:{{FULLPAGENAME}}|action=edit}} ⴰⴷ ⵜⵙⵏⵓⵍⴼⵓⵜ ⵜⴰⵙⵏⴰ ⴰⴷ].", "noarticletext-nopermission": "Ur illa may itt yuran ɣ tasna tad.\nẒr [[Special:Search/{{PAGENAME}}|search for this page title]] ɣ tisnatin yaḍnin,\nulla [{{fullurl:{{#Special:Log}}|page={{FULLPAGENAMEE}}}}search the related logs].", "updated": "(mohdata)", "note": "'''molahada:'''", @@ -386,7 +386,7 @@ "copyrightwarning": "ikhssak atst izd kolchi tikkin noun ɣ {{SITENAME}} llan ɣdo $2 (zr $1 iɣ trit ztsnt uggar).\niɣ ortrit ayg ɣayli torit ḥor artisbadal wnna ka-iran, attid ortgt ɣid.
\nikhssak ola kiyi ador tnqilt ɣtamani yadni.\n'''ador tgat ɣid ɣayli origan ḥor iɣzark orilli lidn nbab-ns!'''", "templatesused": "{{PLURAL:$1|Tamuḍimt lli nsxdm|Timuḍimin}} ɣ tasna yad:", "templatesusedpreview": "{{PLURAL:$1|Tamuḍimt llis nskar |Timuḍam lli sa nskar }} ɣ iẓriyad amzwaru :", - "template-protected": "Agdal", + "template-protected": "(ⵉⵜⵜⵢⵓⴼⵔⴰⴳ)", "template-semiprotected": "Azin-ugdal", "hiddencategories": "{{PLURAL:$1|Taggayt iḥban|Taggayin ḥbanin}} lli ɣtlla tasba yad :", "permissionserrors": "ⵜⴰⵣⴳⵍⵜ ⵖ ⵜⵓⵔⴰⴳⵜ", @@ -464,8 +464,8 @@ "showhideselectedversions": "Ml/Ḥbu ilqmn lli ittuystayn", "editundo": "Urri", "diff-multi-manyusers": "({{PLURAL:$1|yan ulqm n gratsn|$1 ilqmn ngratsn}} zdar mnnaw {{PLURAL:$2|amcgr |n $2 imcgrn}} {{PLURAL:$1|iḥba|lli iḥban}})", - "searchresults": "Mad akkan icnubcn", - "searchresults-title": "ⵜⵉⵢⴰⴼⵓⵜⵉⵏ ⵏ ⵓⵔⵣⵣⵓ ⵅⴼ \"$1\"", + "searchresults": "ⵜⵉⵢⴰⴼⵓⵜⵉⵏ ⵏ ⵓⵔⵣⵣⵓ", + "searchresults-title": "ⵜⵉⵢⴰⴼⵓⵜⵉⵏ ⵏ ⵓⵔⵣⵣⵓ ⴼ \"$1\"", "titlematches": "Assaɣ n tasna iga zund", "textmatches": "Aṭṛiṣ n tasna iga zund", "notextmatches": "Ur ittyufa kra nu uṭṛiṣ igan zund ɣwad", @@ -478,13 +478,13 @@ "searchmenu-exists": "\"'Tlla yat tasna lli ilan assaɣ « [[:$1]] » ɣ wiki yad", "searchmenu-new": "ⵙⵏⵓⵍⴼⵓ ⵜⴰⵙⵏⴰ \"[[:$1]]\" ⴳ ⵓⵡⵉⴽⵉ ⴰⴷ! {{PLURAL:$2|0=|See also the page found with your search.|See also the search results found.}}", "searchprofile-articles": "ⵜⴰⵙⵏⵉⵡⵉⵏ ⵏ ⵜⵓⵎⴰⵢⵜ", - "searchprofile-images": "Multimedia", + "searchprofile-images": "ⴰⴳⵜⵎⵉⴷⵢⴰ", "searchprofile-everything": "ⴰⴽⴽⵯ", - "searchprofile-advanced": "motaqqadim", + "searchprofile-advanced": "Advanced", "searchprofile-articles-tooltip": "ⵙⵉⴳⴳⵍ ⵖ $1", "searchprofile-images-tooltip": "ⵙⵉⴳⴳⵍ ⵉⴼⴰⵢⵍⵓⵜⵏ", "searchprofile-everything-tooltip": "ⵙⵉⴳⴳⵍ ⵖ ⵜⵓⵎⴰⵢⵜ ⴽⵓⵍⵍⵓ ⵜⵜ (ⵓⵍⴰ ⵖ ⵜⴰⵙⵏⵉⵡⵉⵏ ⵏ ⵓⵎⵙⴰⵡⴰⵍ)", - "searchprofile-advanced-tooltip": "Cabba ɣ igmmaḍn li tuyzlaynin", + "searchprofile-advanced-tooltip": "ⵙⵉⴳⴳⵍ ⵖ custom namespaces", "search-result-size": "$1 ({{PLURAL:$2|1 ⵜⴳⵓⵔⵉ|$2 ⵜⴳⵓⵔⵉⵡⵉⵏ}})", "search-result-category-size": "$1 {{PLURAL:$1|ⵓⴳⵎⴰⵎ|ⵉⴳⵎⴰⵎⵏ}} ($2 {{PLURAL:$2|ⵡⴰⴷⵓⵎⵙⵉⵍ|ⵉⴷⵓⵎⵙⵉⵍⵏ}}, $3 {{PLURAL:$3|ⵓⴼⴰⵢⵍⵓ|ⵉⴼⴰⵢⵍⵓⵜⵏ}})", "search-redirect": "(Asmmati $1)", @@ -638,7 +638,7 @@ "number_of_watching_users_pageview": "[$1 iżŗi {{PLURAL:$1|amsqdac|imsqdacn}}]", "rc_categories_any": "wanna", "rc-change-size": "$1", - "rc-change-size-new": "$1 {{PLURAL:$1|ⴱⴰⵢⵜ|ⵉⴷ ⴱⴰⵢⵜ}} ⴷⴼⴼⵉⵔ ⵓⵙⵏⴼⵍ", + "rc-change-size-new": "$1 {{PLURAL:$1|ⴱⴰⵢⵜ|ⵉⴷ ⴱⴰⵢⵜ}} ⴷⴼⴼⵉⵔ ⵏ ⵓⵙⵏⴼⵍ", "newsectionsummary": "/* $1 */ ⵜⵉⴳⵣⵎⵉ ⵜⴰⵎⴰⵢⵏⵓⵜ", "rc-enhanced-expand": "Ml ifruriyn (ira JavaScript)", "rc-enhanced-hide": "Ĥbu ifruriyn", @@ -646,7 +646,7 @@ "recentchangeslinked-feed": "Imbddeln zund ɣwid", "recentchangeslinked-toolbox": "Imbddeln zund ɣwid", "recentchangeslinked-title": "ⵉⵙⵏⴼⵉⵍⵏ ⵇⵇⵏⵏⵉⵏ ⵙ \"$1\"", - "recentchangeslinked-summary": "Ɣid umuɣ iymbddeln li ittyskarnin tigira yad ɣ tisniwin li ittuyzdayn d kra n tasna (ulla i igmamn n kra taggayt ittuyzlayn). Tisniwin ɣ [[Special:Watchlist|Umuɣ n tisniwin li ttsaggat]].", + "recentchangeslinked-summary": "ⵉⵙⵏⴼⵉⵍⵏ ⵜⵜⵢⵓⵙⴽⴰⵔⵏⵉⵏ ⵜⵉⴳⵉⵔⴰ ⴰⴷ ⵉ ⵜⴰⵙⵏⵉⵡⵉⵏ ⵏⵏⴰ ⵙⵔⵙⵏⵜ ⵜⴻⵜⵜⴰⵡⵉ ⴽⵔⴰ ⵏ ⵜⴰⵙⵏⴰ ⵉⵥⵍⵉⵏ (ⵏⵖ ⵉ ⵉⴳⵎⴰⵎⵏ ⵏ ⴽⵔⴰ ⵏ ⵜⴰⴳⴳⴰⵢⵜ ⵉⵥⵍⵉⵏ).\nⵜⴰⵙⵏⵉⵡⵉⵏ ⵍⵍⴰⵏⵉⵏ ⵖ [[Special:Watchlist|ⵜⵍⴳⴰⵎⵜ ⵏⵏⴽ/ⵎ ⵏ ⵓⴹⴼⴼⵓⵔ]] ⵍⵍⴰⵏⵜ ⵙ ⵜⵉⵔⵔⴰ ⵣⵓⵔⵏⵉⵏ.", "recentchangeslinked-page": "ⵉⵙⵎ ⵏ ⵜⴰⵙⵏⴰ:", "recentchangeslinked-to": "ⵎⵍ ⵉⵙⵏⴼⵉⵍⵏ ⵏ ⵜⴰⵙⵏⵉⵡⵉⵏ ⵇⵇⵏⵏⵉⵏ ⵙ ⵜⴰⵙⵏⴰ instead", "upload": "ⵙⴽⵜⵔ ⴽⵔⴰ ⵏ ⵓⴼⴰⵢⵍⵓ", @@ -691,9 +691,9 @@ "filehist-user": "ⴰⵙⵎⵔⴰⵙ", "filehist-dimensions": "ⵉⵎⵏⴰⴷⵏ", "filehist-comment": "ⴰⵅⴼⴰⵡⴰⵍ", - "imagelinks": "Izdayn n usdaw", + "imagelinks": "ⴰⵙⵇⴷⵛ ⵏ ⵓⴼⴰⵢⵍⵓ", "linkstoimage": "Tasna yad {{PLURAL:$1|izdayn n tasna|$1 azday n tasniwin}} s usdaw:", - "nolinkstoimage": "Ḥtta kra n tasna ur tra asdaw ad", + "nolinkstoimage": "ⵓⵔ ⵜⵍⵍⵉ ⴽⵔⴰ ⵏ ⵜⴰⵙⵏⴰ ⵉⵏⴰⵡⵍⵏ ⴰⴼⴰⵢⵍⵓ ⴰⴷ.", "sharedupload": "Asdawad z $1 tẓḍart at tsxdmt gr iswirn yaḍnin", "sharedupload-desc-here": "ⴰⴼⴰⵢⵍⵓ ⴰⴷ ⵉⴽⴽⴰ ⴷ $1 ⴷ ⵉⵥⴹⴰⵔ ⴰⴷ ⵢⵉⵍⵉ ⵉⵜⵜⵢⴰⵡⵙⵅⴷⴰⵎ ⵖ ⵉⵙⵏⴼⴰⵔⵏ ⵢⴰⴹⵏ.\nⴰⴳⵍⴰⵎ ⵉⵍⵍⴰⵏ ⵖ [$2 ⵜⴰⵙⵏⴰ ⵏⵏⵙ ⵏ ⵓⴳⵍⴰⵎ] ⵀⴰ ⵜ ⴷⴷⴰⵡ ⴰⵙ.", "uploadnewversion-linktext": "ⵙⴽⵜⵔ ⴽⵔⴰ ⵏ ⵜⵓⵏⵖⵉⵍⵜ ⵜⴰⵎⴰⵢⵏⵓⵜ ⵏ ⵓⴼⴰⵢⵍⵓ ⴰⴷ", @@ -735,7 +735,7 @@ "booksources-search-legend": "Acnubc s iɣbula n idlisn", "booksources-isbn": "ISBN:", "booksources-search": "ⵙⵉⴳⴳⵍ", - "specialloguserlabel": "Amsqdac", + "specialloguserlabel": "ⴰⵎⴳⴰⵢ:", "speciallogtitlelabel": "Azwl", "log": "Immussutn ittyuran", "all-logs-page": "Immussutn ittyuran immurzmn i kullu..", @@ -842,20 +842,20 @@ "sp-contributions-submit": "ⵙⵉⴳⴳⵍ", "sp-contributions-explain": "↓", "whatlinkshere": "ⵎⴰⴷ ⵉⵇⵇⵏⴻⵏ ⵙ ⵖⵉⴷ", - "whatlinkshere-title": "Tisniwin li izdayn d \"$1\"", + "whatlinkshere-title": "ⵜⴰⵙⵏⵉⵡⵉⵏ ⵜⵜⴰⵡⵉⵏⵉⵏ ⵙ \"$1\"", "whatlinkshere-page": "ⵜⴰⵙⵏⴰ:", "linkshere": "Tasnawinad ar slkamnt i '''[[:$1]]''':", - "nolinkshere": "Ur llant tasniwin li izdin d '''[[:$1]]'''.", + "nolinkshere": "ⵓⵍⴰ ⴽⵔⴰ ⵏ ⵜⴰⵙⵏⴰ ⵓⵔ ⴰⵔ ⵜⴻⵜⵜⴰⵡⵉ ⵙ [[:$1]].", "nolinkshere-ns": "Ur tlla kra n tasna izdin d '''[[:$1]]''' ɣ tɣult l-ittuystayn.", "isredirect": "Tasna immutin", "istemplate": "Illa gis", - "isimage": "Azday s usdaw", + "isimage": "ⴰⵍⵉⵏⴽ ⵏ ⵓⴼⴰⵢⵍⵓ", "whatlinkshere-prev": "{{PLURAL:$1|amzwaru|amzwaru $1}}", "whatlinkshere-next": "{{PLURAL:$1|wali d yuckan|wali d yuckan $1}}", - "whatlinkshere-links": "← izdayn", + "whatlinkshere-links": "← ⵉⵍⵉⵏⴽⵏ", "whatlinkshere-hideredirs": "$1 Ismmattayn", "whatlinkshere-hidetrans": "$1 mayllan gis", - "whatlinkshere-hidelinks": "$1 izdayn", + "whatlinkshere-hidelinks": "$1 ⵉⵍⵉⵏⴽⵏ", "whatlinkshere-hideimages": "$1 izdayn awlaf", "whatlinkshere-filters": "Istayn", "blockip": "ⴳⴷⵍ {{GENDER:$1|ⴰⵙⵎⵔⴰⵙ|ⵜⴰⵙⵎⵔⴰⵙⵜ}}", @@ -925,35 +925,35 @@ "tooltip-ca-unwatch": "ⵙⵉⵜⵜⵉ ⵜⴰⵙⵏⴰ ⴰⴷ ⵣⵖ ⵜⵍⴳⴰⵎⵜ {{GENDER:|ⵏⵏⴽ|ⵏⵏⵎ}} ⵏ ⵓⴹⴼⴼⵓⵔ", "tooltip-search": "ⵙⵉⴳⴳⵍ ⵖ {{SITENAME}}", "tooltip-search-go": "Ftu s tasna s w-assaɣ znd ɣ-wad iɣ tlla", - "tooltip-search-fulltext": "Cnubc aṭṛiṣad ɣ tisnatin", + "tooltip-search-fulltext": "ⵙⵉⴳⴳⵍ ⴰⴹⵔⵉⵙ ⴰⴷ ⵖ ⵜⴰⵙⵏⵉⵡⵉⵏ", "tooltip-p-logo": "ⴽⴽ ⴷ ⵜⴰⵙⵏⴰ ⵏ ⵓⵙⵏⵓⴱⴳ", "tooltip-n-mainpage": "ⴽⴽ ⴷ ⵜⴰⵙⵏⴰ ⵏ ⵓⵙⵏⵓⴱⴳ", "tooltip-n-mainpage-description": "ⴽⴽ ⴷ ⵜⴰⵙⵏⴰ ⵏ ⵓⵙⵏⵓⴱⴳ", - "tooltip-n-portal": "f' usenfar, matzdart atitskrt, maniɣrattaft ɣayli trit", + "tooltip-n-portal": "ⴼ ⵓⴱⵔⵓⵊⵉ, ⵎⴰⴷ ⵜⵥⴹⴰⵔⵜ ⴰⴷ ⵜ ⵜⵙⴽⵔⵜ, ⵎⴰⵏⵉ ⵔⴰⴷ ⵜⴰⴼⵜ ⵓⵎⵍⴰⵏ", "tooltip-n-currentevents": "Tiɣri izrbn i kullu maɣid immusn", "tooltip-n-recentchanges": "ⵜⴰⵍⴳⴰⵎⵜ ⵏ ⵉⵙⵏⴼⵉⵍⵏ ⴳⴳⵯⵔⴰⵏⵉⵏ ⵖ ⵓⵡⵉⴽⵉ", - "tooltip-n-randompage": "Srbu yat tasna ɣik nna ka tga", + "tooltip-n-randompage": "ⵣⴷⵎ ⴷ ⴽⵔⴰ ⵏ ⵜⴰⵙⵏⴰ ⵙ ⵓⴷⵀⵎⴰⵙ", "tooltip-n-help": "Adɣar n w-aws", "tooltip-t-whatlinkshere": "Umuɣ n kullu tisnatin n Wiki lid ilkkmn ɣid", - "tooltip-t-recentchangeslinked": "Imbddln imaynutn n tisnatin li ittylkamn s tasna yad", + "tooltip-t-recentchangeslinked": "ⵉⵙⵏⴼⵉⵍⵏ ⴳⴳⵯⵔⴰⵏⵉⵏ ⵖ ⵜⴰⵙⵏⵉⵡⵉⵏ ⵏⵏⴰ ⵙⵔⵙⵏ ⵜⴻⵜⵜⴰⵡⵉ ⵜⴰⵙⵏⴰ ⴰⴷ", "tooltip-feed-rss": "Usuddm (Flux) n tasna yad", "tooltip-feed-atom": "Usuddm Atum n tasna yad", "tooltip-t-contributions": "ⵜⴰⵍⴳⴰⵎⵜ ⵏ ⵜⵓⵎⵓⵜⵉⵏ ⵏ {{GENDER:$1|ⵓⵙⵎⵔⴰⵙ|ⵜⵙⵎⵔⴰⵙⵜ}} ⴰⴷ", "tooltip-t-emailuser": "Ṣafd tabrat umsqdac ad", "tooltip-t-upload": "ⵙⴽⵜⵔ ⵉⴼⴰⵢⵍⵓⵜⵏ", - "tooltip-t-specialpages": "ⵜⴰⵍⴳⴰⵎⵜ ⵏ ⵜⴰⵙⵏⵉⵡⵉⵏ ⵥⵍⵉⵏⵉⵏ ⴰⴽⴽⵯ", + "tooltip-t-specialpages": "ⵜⴰⵍⴳⴰⵎⵜ ⵏ ⴽⵓⵍⵍⵓ ⵜⴰⵙⵏⵉⵡⵉⵏ ⵥⵍⵉⵏⵉⵏ", "tooltip-t-print": "Lqim uziggz n tasna yad", "tooltip-t-permalink": "Azday bdda i lqim n tasna yad", - "tooltip-ca-nstab-main": "Ẓr mayllan ɣ tasna", + "tooltip-ca-nstab-main": "ⵥⵔ ⵜⴰⵙⵏⴰ ⵏ ⵜⵓⵎⴰⵢⵜ", "tooltip-ca-nstab-user": "Ẓr tasna n useqdac", "tooltip-ca-nstab-media": "Iẓri n tasna n midya", "tooltip-ca-nstab-special": "ⵜⴰⴷ ⵜⴳⴰ ⵢⴰⵜ ⵜⴰⵙⵏⴰ ⵉⵥⵍⵉⵏ, ⴷ ⵓⵔ ⵉⵎⴽⵉⵏ ⴰⴷ ⵜⵜ ⵜⵙⵏⴼⵍⵜ", "tooltip-ca-nstab-project": "Żr tasna n twwuri", - "tooltip-ca-nstab-image": "Źr tasna n usdaw", + "tooltip-ca-nstab-image": "ⵥⵔ ⵜⴰⵙⵏⴰ ⵏ ⵓⴼⴰⵢⵍⵓ", "tooltip-ca-nstab-mediawiki": "Żr tabrat nu-nagraw.", "tooltip-ca-nstab-template": "Żr tamudemt", "tooltip-ca-nstab-help": "Źr tasna nu-saws", - "tooltip-ca-nstab-category": "Źr tasna nu-stay", + "tooltip-ca-nstab-category": "ⵥⵔ ⵜⴰⵙⵏⴰ ⵏ ⵜⴰⴳⴳⴰⵢⵜ", "tooltip-minoredit": "ⵔⵛⵎ ⴰⵢⴰ ⵎⴰⵙ ⵉⴳⴰ ⴰⵙⵏⴼⵍ ⵓⵎⵥⵉⵢ", "tooltip-save": "Ḥbu imbddel nek", "tooltip-preview": "Mel(fsr) imbddeln nek, urat tḥibit matskert", @@ -980,7 +980,7 @@ "previousdiff": "Imbddln imzwura", "nextdiff": "Ambdl d ittfrn →", "widthheightpage": "$1 × $2, $3 {{PLURAL:$3|ⵜⴰⵙⵏⴰ|ⵜⴰⵙⵏⵉⵡⵉⵏ}}", - "file-info-size": "$1 × $2 piksil, asdaw tugut: $3, MIME anaw: $4", + "file-info-size": "$1 × $2 ⴱⵉⴽⵙⵉⵍ, ⵜⵉⴷⴷⵉ ⵏ ⵓⴼⴰⵢⵍⵓ: $3, ⴰⵏⴰⵡ MIME: $4", "file-nohires": "↓Ur tlli tabudut tamqrant.", "svg-long-desc": "Asdaw SVG, Tabadut n $1 × $2 ifrdan, Tiddi : $3", "show-big-image": "ⴰⴼⴰⵢⵍⵓ ⴰⵏⵚⵍⵉ", @@ -1099,7 +1099,7 @@ "specialpages-group-spam": "ladawat n spam", "blankpage": "tawriqt orgiss walo", "external_image_whitelist": "# Ajji aṣṭtar nna ɣiklli iga.
\n# Ml igzman n tannayin (ɣir imi lli illan gr//) ɣ uzddar ɣid.\n# Rad tmiqqirn d tansiwin URL n tiwlaf n brra.\n# Tilli dis tmiqqirnin rad baynt zund tiwlaf, niɣd yan uzday s tawlaft arad ibayn.\n# Isṭṭarn lli ittizwirn s # rad gin zund iwnnan.\n# Tasna yad tfta d ugmmaḍ ad\n\n# Gatn igzman n iwnnan ɣ uflla n usṭṭar ad. Ajji yataṣṭṭar amggaru ɣiklli iga. 
", - "tag-filter": "Astay n [[Special:Tags|balises]] :", + "tag-filter": "ⵜⴰⵙⵜⵜⴰⵢⵜ ⵏ [[Special:Tags|ⵜⵔⵛⴰⵎⵉⵏ]]:", "tag-filter-submit": "Istayn", "tags-title": "imarkiwn", "tags-source-header": "ⴰⵙⴰⴳⵎ", diff --git a/languages/i18n/skr-arab.json b/languages/i18n/skr-arab.json index db48f9a6c1..a2c15f7f5f 100644 --- a/languages/i18n/skr-arab.json +++ b/languages/i18n/skr-arab.json @@ -6,6 +6,7 @@ }, "tog-underline": "لنک ہیٹھ لکیر", "tog-hideminor": "چھوٹیاں تبدیلیاں لُکاؤ", + "tog-hidepatrolled": "تازہ تبدیلیاں وچوں زیرنگرانی تبدیلیاں لکاؤ", "tog-hidecategorization": "ورقیاں دیاں قسم بندی لُکاؤ", "tog-numberheadings": "سرخیاں کوں خود کار نمبر ݙیوو", "tog-showtoolbar": "آلات ترمیم ݙکھاؤ", @@ -94,6 +95,7 @@ "hidden-categories": "{{PLURAL:$1|پوشیدہ زمرہ|پوشیدہ زمرہ جات}}", "hidden-category-category": "لکیاں قسماں", "listingcontinuesabbrev": "جاری۔", + "index-category": "فہرست شدہ ورقے", "noindex-category": "غیر فہرست شدہ صفحات", "broken-file-category": "ٹٹے ہوۓ جوڑاں آلے صفحے", "about": "تعارف", @@ -101,6 +103,7 @@ "newwindow": "(نویں ونڈو وچ کھولو)", "cancel": "مکاؤ", "moredotdotdot": "ٻئے", + "morenotlisted": "ایہ فہرست پوری کائنی", "mypage": "ورقہ", "mytalk": "ڳالھ مہاڑ", "anontalk": "ڳالھ مہاڑ", @@ -108,7 +111,7 @@ "and": " تے", "faq": "عام طور تے پچھے ونڄݨ آلے سوال", "actions": "کم", - "namespaces": "ناں دیاں جہاواں", + "namespaces": "ناں جاہیں", "variants": "قسماں", "navigation-heading": "فہرست رہنمائی", "errorpagetitle": "نقص", @@ -227,6 +230,7 @@ "internalerror": "اندر دی غلطی", "internalerror_info": "اندر دی غلطی:$1", "filedeleteerror": "مِسَل \"$1\" کوں مٹایا نی ونڄ سڳیا۔", + "formerror": "رپھڑ: فارم نی بھیج سڳے", "cannotdelete-title": "ورقہ\"$1\" نی مٹا سڳدے", "badtitle": "بھیڑا عنوان", "viewsource": "ماخذ ݙیکھو", @@ -483,13 +487,14 @@ "timezoneregion-indian": "بحر ہند", "timezoneregion-pacific": "بحر الکاہل", "prefs-searchoptions": "ڳولو", - "prefs-namespaces": "ناں دیاں جہاواں", + "prefs-namespaces": "ناں جاہیں", "default": "پہلے کنوں طے تھیا ہویا", "prefs-files": "فائلاں", "prefs-custom-css": "کسٹم سی ایس ایس", "prefs-custom-js": "کسٹم جاوا سکرپٹ", "prefs-emailconfirm-label": "ای میل دی تصدیق", "youremail": "ای میل", + "username": "{{GENDER:$1|ورتݨ آلا ناں}}:", "prefs-registration": "رجسٹریشن ویلہ:", "yourrealname": "اصلی ناں:", "yourlanguage": "زبان", @@ -510,6 +515,7 @@ "prefs-advancedwatchlist": "اعلیٰ اختیارات", "prefs-tokenwatchlist": "ٹوکن", "prefs-diffs": "فرق", + "userrights-user-editname": "ورتݨ آلا ناں درج کرو:", "userrights-reason": "سبب:", "userrights-expiry": "مُکسی:", "userrights-expiry-othertime": "ٻیا ویلا:", diff --git a/languages/i18n/sl.json b/languages/i18n/sl.json index 0f5b47c3a4..e3e226f5d5 100644 --- a/languages/i18n/sl.json +++ b/languages/i18n/sl.json @@ -1316,7 +1316,6 @@ "rcfilters-restore-default-filters": "Obnovi privzete filtre", "rcfilters-clear-all-filters": "Počisti vse filtre", "rcfilters-show-new-changes": "Ogled najnovejših sprememb", - "rcfilters-previous-changes-label": "Predhodno videne spremembe", "rcfilters-search-placeholder": "Zadnje spremembe filtrov (prebrskajte ali začnite vnašati)", "rcfilters-invalid-filter": "Neveljaven filter", "rcfilters-empty-filter": "Ni dejavnih filtrov. Prikazani so vsi prispevki.", @@ -1329,7 +1328,7 @@ "rcfilters-filterlist-noresults": "Nismo našli nobenega filtra", "rcfilters-noresults-conflict": "Našli nismo nobenih rezultatov, ker si merila za iskanje nasprotujejo", "rcfilters-state-message-subset": "Ta filter nima učinka, saj njegove rezultate {{PLURAL:$2|vključuje naslednji, širši filter|vključujeta naslednja, širša filtra|vključujejo naslednji, širši filtri}} (označite jih, da razlikujete med njimi): $1", - "rcfilters-state-message-fullcoverage": "Izbira vseh filtrov v skupini je enako kot izbira nobenega, zato ta filter nima učinka. Skupina vključuje: $1", + "rcfilters-state-message-fullcoverage": "Izbira vseh filtrov v tej skupini je enako kot izbira nobenega, zato ta filter nima učinka. Skupina vključuje: $1", "rcfilters-filtergroup-authorship": "Avtorstvo prispevka", "rcfilters-filter-editsbyself-label": "Vaše spremembe", "rcfilters-filter-editsbyself-description": "Vaša lastna urejanja.", diff --git a/languages/i18n/sq.json b/languages/i18n/sq.json index 1cbcf69ae5..0755c0922c 100644 --- a/languages/i18n/sq.json +++ b/languages/i18n/sq.json @@ -51,7 +51,7 @@ "tog-watchdefault": "Shto faqet dhe skedat e redaktuara prej meje tek lista e faqeve nën mbikqyrje", "tog-watchmoves": "Shto faqet dhe skedat e zhvendosura prej meje tek lista e faqeve nën mbikqyrje", "tog-watchdeletion": "Shto faqet dhe skedat e grisura prej meje tek lista e faqeve nën mbikqyrje", - "tog-watchuploads": "Shtoni fotografitë e rreja që ngarkoj në listën mbikëqyrëse", + "tog-watchuploads": "Shtoni fotografitë e reja që ngarkova në listën mbikëqyrëse", "tog-watchrollback": "Shto faqet ku unë kam kryer një rikthim tek lista ime mbikqyrëse", "tog-minordefault": "Shëno të gjitha redaktimet si të vogla automatikisht", "tog-previewontop": "Trego parapamjen para kutisë së redaktimit", @@ -400,7 +400,7 @@ "userlogin-yourname": "Emri i përdoruesit", "userlogin-yourname-ph": "Fut emrin tënd të përdoruesit", "createacct-another-username-ph": "Shtypni emrin e përdoruesit", - "yourpassword": "Fusni fjalëkalimin tuaj", + "yourpassword": "Fjalëkalimi:", "userlogin-yourpassword": "Fjalëkalimi", "userlogin-yourpassword-ph": "Shtypni fjalëkalimin tuaj", "createacct-yourpassword-ph": "Shtypni një fjalëkalim", @@ -429,7 +429,7 @@ "createaccount": "Hap një llogari", "userlogin-resetpassword-link": "Keni harruar fjalëkalimin?", "userlogin-helplink2": "Ndihmë rreth identifikimit", - "userlogin-loggedin": "Ju tashmë jeni i regjistruar si {{GENDER:$1|$1}}.\nPërdore formularin më poshtë për të hyrë si një përdorues tjetër.", + "userlogin-loggedin": "Ju tashmë jeni i regjistruar si {{GENDER:$1|$1}}.\nPërdor formularin më poshtë për të hyrë si një përdorues tjetër.", "userlogin-reauth": "Duhet të identifikoheni përsëri për të verifikuar që jeni {{GENDER:$1|$1}}", "userlogin-createanother": "Krijo një llogari tjeter", "createacct-emailrequired": "Posta elektronike", @@ -451,7 +451,7 @@ "createacct-benefit-body2": "{{PLURAL:$1|faqe|faqe}}", "createacct-benefit-body3": "{{PLURAL:$1|kontribuesi i|kontribuesit e}} fundit", "badretype": "Fjalëkalimet nuk janë njësoj.", - "usernameinprogress": "Një krijim i llogarisë me këtë emër përdoruesi tashmë është në progres.\nTë lutem prit.", + "usernameinprogress": "Një krijim i llogarisë me këtë emër përdoruesi tashmë është në progres.\nJu lutemi prisni.", "userexists": "Emri i përdoruesit që kërkuat është në përdorim. \nZgjidhni një emër tjetër.", "loginerror": "Gabim gjatë identifikimit", "createacct-error": "krijim gabim llogarie", @@ -491,7 +491,7 @@ "emailconfirmlink": "Vërtetoni adresën tuaj", "invalidemailaddress": "Posta elektronike nuk mund të pranohet kështu si është pasi ka format jo valid. Ju lutemi, vendoni një postë mirë të formatuar, ose zbrazeni fushën.", "cannotchangeemail": "Adresat e-mail të llogarive nuk mund të ndryshohen në këtë wiki.", - "emaildisabled": "Kjo faqe nuk mund të dërgojë e-maila.", + "emaildisabled": "Kjo faqe nuk mund të dërgojë e-maile.", "accountcreated": "Llogarija e Përdoruesit u krijua", "accountcreatedtext": "Llogarija e Përdoruesit për $1 u krijua", "createaccount-title": "Hapja e llogarive për {{SITENAME}}", @@ -504,7 +504,7 @@ "createacct-another-realname-tip": "* Emri i vërtetë nuk është i domosdoshëm: Nëse e jepni do të përmendeni si kontribues për punën që ke bërë.", "pt-login": "Hyni", "pt-login-button": "Hyni", - "pt-login-continue-button": "Vazhdoidntifikohu", + "pt-login-continue-button": "Vazhdoni identifikohuni", "pt-createaccount": "Krijo llogari", "pt-userlogout": "Dil", "php-mail-error-unknown": "Gabim i panjohur në funksionin e postës PHP ()", @@ -513,10 +513,10 @@ "changepassword": "Ndërroni fjalëkalimin", "resetpass_announce": "Për të përfunduar regjistrimin, ju duhet të vendosni një fjalëkalim të ri.", "resetpass_header": "Ndrysho fjalëkalimin e llogarisë", - "oldpassword": "I vjetri", - "newpassword": "I riu", - "retypenew": "I riu përsëri", - "resetpass_submit": "Ndrysho fjalëkalimin dhe hyni brenda", + "oldpassword": "Fjalëkalimi i vjetër:", + "newpassword": "Fjalëkalimi i ri", + "retypenew": "Rivendosni fjalëkalimin e ri përsëri,", + "resetpass_submit": "Ndryshoni fjalëkalimin dhe hyni brenda", "changepassword-success": "Fjalëkalimi yt është ndryshuar.", "changepassword-throttled": "Keni bërë shumë tentime të njëpasnjëshme në fjalëkalimin e kësaj llogarie. Ju lutemi prisni para se te tentoni përsëri.", "botpasswords": "Bot fjalëkalimet", @@ -1263,7 +1263,7 @@ "rcfilters-invalid-filter": "Filtër jo i vlefshëm", "rcfilters-empty-filter": "S'ka filtra aktiv. Tregohen të gjitha kontributet.", "rcfilters-filterlist-title": "Filtrat", - "rcfilters-filterlist-whatsthis": "Çka është kjo?", + "rcfilters-filterlist-whatsthis": "Si punon?", "rcfilters-highlightbutton-title": "Thekso rezultatet", "rcfilters-highlightmenu-title": "Zgjedh një ngjërë", "rcfilters-highlightmenu-help": "Zgjedh një ngjyrë për të theksuar këtë tipar", @@ -1274,7 +1274,7 @@ "rcfilters-filter-editsbyself-description": "Kontributet tuaja.", "rcfilters-filter-editsbyother-label": "Kontributet nga të tjerët", "rcfilters-filter-editsbyother-description": "Të gjitha ndryshimet përveç nga ti.", - "rcfilters-filtergroup-userExpLevel": "Niveli i përvojës (vetëm për përdoruesit e regjistruar)", + "rcfilters-filtergroup-userExpLevel": "Përdoruesit e regjistruar dhe me eksperience", "rcfilters-filter-user-experience-level-registered-label": "Regjistruar", "rcfilters-filter-user-experience-level-registered-description": "Redaktorët e kyçur", "rcfilters-filter-user-experience-level-unregistered-label": "Ç'regjistruar", @@ -1315,10 +1315,10 @@ "rcfilters-filter-categorization-description": "Regjistri i faqeve të shtuara ose hequra nga kategoritë.", "rcfilters-filter-logactions-label": "Veprimet e regjistruara", "rcfilters-filter-logactions-description": "Veprimet administrative, krijimet e llogarive, fshirjet e faqeve, ngarkimet...", - "rcfilters-filtergroup-lastRevision": "Versioni i fundit", - "rcfilters-filter-lastrevision-label": "Versioni i fundit", - "rcfilters-filter-lastrevision-description": "Ndryshimet më të fundit në një faqe.", - "rcfilters-filter-previousrevision-label": "Versionet më të hershme", + "rcfilters-filtergroup-lastRevision": "Rishikimet e fundit", + "rcfilters-filter-lastrevision-label": "Versioni më i fundit", + "rcfilters-filter-lastrevision-description": "Vetëm dryshimet më të fundit në një faqe.", + "rcfilters-filter-previousrevision-label": "Jo rishimet e fundit", "rcfilters-filter-previousrevision-description": "Të gjitha ndryshimet që nuk janë ndryshimet më të fundit në një faqe.", "rcfilters-filter-excluded": "Përjashtuar", "rcfilters-tag-prefix-namespace-inverted": ":jo $1", @@ -3245,7 +3245,7 @@ "compare-invalid-title": "Titulli që keni specifikuar është i pavlefshëm", "compare-title-not-exists": "Titulli që keni specifikuar nuk ekziston.", "compare-revision-not-exists": "Rishikimi që ju specifikuat nuk ekziston", - "diff-form": "'''formë'''", + "diff-form": "Ndryshimet", "dberr-problems": "Na vjen keq! Kjo faqe po has vështirësi teknike.", "dberr-again": "Pritni disa minuta dhe provoni të ringarkoni faqen.", "dberr-info": "(Nuk mund të qaset në bazën e të dhënave: $1)", diff --git a/languages/i18n/su.json b/languages/i18n/su.json index c53b13af9f..c0076c4461 100644 --- a/languages/i18n/su.json +++ b/languages/i18n/su.json @@ -1490,7 +1490,7 @@ "mimesearch": "Pamaluruhan MIME", "mimesearch-summary": "Ieu kaca bisa dipaké nyaring koropak dumasar tipeu MIME-na. Asupan: contenttype/subtype, contona image/jpeg.", "mimetype": "Tipeu MIME:", - "download": "pulut", + "download": "undeur", "unwatchedpages": "Kaca nu teu diawaskeun", "listredirects": "Daptar alihan", "listduplicatedfiles": "Daptar berkas duplikat.", @@ -2762,7 +2762,6 @@ "fileduplicatesearch-result-n": "Koropak \"$1\" mibanda {{PLURAL:$2|1 duplikat idéntik|$2 duplikat idéntik}}.", "specialpages": "Kaca husus", "specialpages-note-top": "Kamandang", - "specialpages-note": "* Kaca husus normal.\n* Kaca husus diwates.", "specialpages-group-maintenance": "Laporan pigawéeun", "specialpages-group-other": "Kaca husus lainna", "specialpages-group-login": "Asup log / jieun akun", diff --git a/languages/i18n/sv.json b/languages/i18n/sv.json index 28ea0aea8b..e19426a0c1 100644 --- a/languages/i18n/sv.json +++ b/languages/i18n/sv.json @@ -114,6 +114,7 @@ "tog-watchlisthideminor": "Dölj mindre ändringar i bevakningslistan", "tog-watchlisthideliu": "Visa inte redigeringar av inloggade användare i bevakningslistan", "tog-watchlistreloadautomatically": "Uppdatera bevakningslistan automatiskt när ett filter ändras (JavaScript krävs)", + "tog-watchlistunwatchlinks": "Lägg till länkar för att bevaka och sluta bevaka artiklar i bevakningslistan (JavaScript krävs)", "tog-watchlisthideanons": "Dölj redigeringar av anonyma användare i bevakningslistan", "tog-watchlisthidepatrolled": "Dölj patrullerade redigeringar i bevakningslistan", "tog-watchlisthidecategorization": "Dölj kategorisering av sidor", @@ -1378,7 +1379,6 @@ "rcfilters-restore-default-filters": "Återställ standardfilter", "rcfilters-clear-all-filters": "Rensa alla filter", "rcfilters-show-new-changes": "Visa nyaste ändringarna", - "rcfilters-previous-changes-label": "Ändringar som visades tidigare", "rcfilters-search-placeholder": "Filtrera senaste ändringar (bläddra eller börja skriva)", "rcfilters-invalid-filter": "Ogiltigt filter", "rcfilters-empty-filter": "Inga aktiva filter. Alla bidrag visas.", @@ -1391,7 +1391,7 @@ "rcfilters-filterlist-noresults": "Inga filter hittades", "rcfilters-noresults-conflict": "Inga resultat hittades eftersom sökkriterierna är i konflikt", "rcfilters-state-message-subset": "Detta filter har ingen effekt, eftersom resultaten inkluderar följande, bredare {{PLURAL:$2|filter}} (försök att markera för att särskilja det): $1", - "rcfilters-state-message-fullcoverage": "Att markera alla filter i en grupp är detsamma som att markera inget alls, så detta filter har igen effekt. Grupper som inkluderas: $1", + "rcfilters-state-message-fullcoverage": "Att markera alla filter i denna grupp är detsamma som att markera inget alls, så detta filter har ingen effekt. Grupper som inkluderas: $1", "rcfilters-filtergroup-authorship": "Författarskap av bidrag", "rcfilters-filter-editsbyself-label": "Redigeringar av dig", "rcfilters-filter-editsbyself-description": "Dina egna bidrag.", @@ -2162,8 +2162,6 @@ "watching": "Bevakar...", "unwatching": "Avbevakar...", "watcherrortext": "Ett fel inträffade när du ändrade dina bevakningsinställningarna för \"$1\".", - "watchlist-unwatch": "×", - "watchlist-unwatch-undo": "+", "enotif_reset": "Markera alla sidor som besökta", "enotif_impersonal_salutation": "{{SITENAME}}användare", "enotif_subject_deleted": "{{SITENAME}}sidan $1 har raderats av {{gender:$2|$2}}", diff --git a/languages/i18n/tay.json b/languages/i18n/tay.json index baf6ce6803..f40b9d766a 100644 --- a/languages/i18n/tay.json +++ b/languages/i18n/tay.json @@ -123,11 +123,13 @@ "toolbox": "Qayqaya’", "otherlanguages": "Kay’ bzinah", "redirectedfrom": "(wal niya’ t’ringun paykura’ squ $1)", + "redirectpagesub": "t’ringun pawsa’ sa zngayan", "redirectto": "T’ringun pawsa’ sa", "lastmodifiedat": "Zzngayan qaniy gasinr’zyut niya’ squ pucing balay tay$1 $2.", + "protectedpage": "Zngyan na Cwan’an", "jumpto": "Musa’", "jumptonavigation": "Pglaing pzyangay", - "jumptosearch": "Hkangi’", + "jumptosearch": "Hhkangi’", "aboutsite": "Nanu’ quw {{SITENAME}}", "aboutpage": "Project: Nanu’ quw", "copyrightpage": "{{ns:project}}:pancyuen", @@ -168,6 +170,7 @@ "nstab-template": "Mopan", "nstab-category": "pintbcyan na mlmlamu’", "mainpage-nstab": "T’ringan na zzngayan", + "missingarticle-diff": "(Kin’ini’ ptnaq:$1, $2)", "badtitle": "Ungat zyuwaw na lalu’ na spzyang kkayal", "badtitletext": "Sni’ su’ lalu’ na spzyang kkayal su’ qasa ga ungat zyuwaw niya’, ungat ana nanu’ qsahuy niya’, ini’ ga ini’ su’ ’nblayqiy p’ubuy quw pin’ubuy su’ squw bzinah na kay’, ini’ ga ’mubuy sa sni’ naha’ lalu’ sa Wiki’. \nKuna kya wal su’ syun ka biru’ qasa ga kya’a cyux ’magan sa biru’ na ini’ baqiy mita’ hazi’.", "viewsource": "Kta quw llpgan aring sa cin’ringan", @@ -251,6 +254,7 @@ "currentrevisionlink": "Pzyang giqas na sinhzi’", "cur": "misuw qaniy ga", "last": "tay glaing", + "histlast": "giqas balay", "historysize": "({{PLURAL:$1|$1 bzyaqan kkayal na llpgan}})", "rev-delundel": "Smbah sa musa’ slwan mita’", "rev-showdeleted": "Pkaykita’", @@ -284,19 +288,27 @@ "searchall": "kwara’", "search-showingresults": "{{PLURAL:$4|tay $1pucing niya’, psqunun lga $3 |tay $1 - $2 pucing nya’, psqunun lga $3 pucing nya’}}", "search-nonefound": "Ktan qu bniru’ niya’ ga ungat quw musa’ mtnaq sa tthuzyay sa awsa’ hmkangi’.", + "powersearch-toggleall": "Kwara’", "mypreferences": "Sni’ maku’", + "prefs-skin": "Ktan na rawziq", + "prefs-misc": "Mzinah", "prefs-email": "bbzagan sa e-meyo’", + "prefs-rendering": "Ktan na rawziq", "saveprefs": "Cucun", "prefs-editing": "smr’zyut miru’", - "searchresultshead": "hhkangi’", - "prefs-searchoptions": "hhkangi’", + "searchresultshead": "Hhkangi’", + "prefs-searchoptions": "Hhkangi’", "prefs-files": "biru’ na zayzyuwaw", "youremail": "e-meyo’:", "username": "{{GENDER:$1|Lalu’ na pptzyuwaw}}:", + "yourlanguage": "Kay’:", "email": "e-meyo’", + "prefs-timeoffset": "Kinini’ ptnaq na zikang", + "prefs-diffs": "Kin’ini’ ptnaq", "group-user": "kwara’ ka cyux mbing ka qutux qutux ngasal", "group-bot": "squliq na kikay", "group-sysop": "pklahang", + "group-all": "(kwara’)", "group-user-member": "{{GENDER:$1|kwara’ ka cyux mbing ka qutux qutux ngasal}}", "grouppage-user": "{{ns:project}}: kwara’ ka cyux mbing ka qutux qutux ngasal", "grouppage-bot": "{{ns:project}}:squliq na kikay", @@ -314,6 +326,7 @@ "recentchanges-legend-heading": " pinkita’ niya’ sa pinzga’ :", "recentchanges-legend-newpage": "{{int:recentchanges-label-newpage}} (aniy mita’ sa[[Special:NewPages|giqas na zzngayan]])", "recentchanges-submit": "Pkaykita’", + "rcfilters-filterlist-title": "Hhkangi’", "rcfilters-filter-bots-label": "squliq na kikay", "rclistfrom": "Inkahul misan sinbahan sa $2, $3", "rcshowhideminor": "$1 mszik sa ssr’tun", @@ -333,7 +346,7 @@ "rcshowhidemine-show": "Pkaykita’", "rcshowhidemine-hide": "smbbaq", "rclinks": "Pinkaykita’ sinbah sa $1 smbah squw $2 misuw qaniy", - "diff": "Kin’ini’ ptnaq", + "diff": "kin’ini’ ptnaq", "hist": "Pinhknyan sraral", "hide": "Lqing", "show": "pkaykita’", @@ -351,9 +364,14 @@ "upload": "Pawsa’ sa kktan zayzyuwaw na biru’", "filename": "Lalu’ na tang’an", "filedesc": "Lalu’ na spzyang bbiru’ su’", + "upload-dialog-button-back": "’bzinah", + "upload-dialog-button-save": "Cucun", "license-header": "Biru’ na gaga’ nqu snwayal hmriq sa kinri’", + "listfiles-delete": "’muyut", "imgfile": "biru’ na zayzyuwaw", "listfiles_user": "kwara’ ka cyux mbing ka qutux qutux ngasal", + "listfiles-latestversion-yes": "Aw’", + "listfiles-latestversion-no": "iyat", "file-anchor-link": "biru’ na zayzyuwaw", "filehist": "Bniru’ naha’ sa sinr’zyutan na biru’", "filehist-help": "Pphtan ryax/zikang sa kkita’ squw kinblayan biru’ na zayzyuwaw.", @@ -369,11 +387,14 @@ "nolinkstoimage": "Ungat ana qutux wal ’mubuy sa biru’ na ana nanu’ zyuwaw qaniy.", "sharedupload-desc-here": "Tang’an qaniy hya’ ga kahul squw$1 ruw hazi’ ana wal sptzyuwaw na cwan’an bbzinah. \nTay kyahu’ cyux spkita’ sa Tang’an qaniy hya’ ga cyux squw [$2 Tang’an pinqzyu’ zngayan ] na qsahuy pinqzyuwan.", "upload-disallowed-here": "Iyat su’ bauqn ’mumuk quw biru’ na zayzyuwaw qaniy.", + "filedelete-submit": "’muyut", "randompage": "Random page", "statistics": "Sinqunan plpuw", "brokenredirects-edit": "Smr’zyut miru’", + "brokenredirects-delete": "’muyut", "nbytes": "$1 {{PLURAL:$1|qutux llpgan na bzyaqan kkayal}}", "nmembers": "$1 {{PLURAL:$1|pinglgan}}", + "protectedpages-unknown-timestamp": "Ini’ bqbaqiy ginlaylwan", "usereditcount": "$1 {{PLURAL:$1|smr’zyut miru’}}", "newpages": "Giqas na zzngzyan", "newpages-username": "Lalu’ na pptzyuwaw:", @@ -383,27 +404,30 @@ "booksources-search-legend": "Hkangi’ tkhulan pila’ na brbiru’", "booksources-search": "Hkangi’", "log": "Bniru", + "checkbox-all": "Kwara’", + "allpages": "Kwara’ biru’ na zngyan", "allarticles": "Kwara’ biru’ na zngyan", "allpagessubmit": "mtzyuwaw", "categories": "Pintbcyan", - "linksearch-ok": "hhkangi’", + "linksearch-ok": "Hhkangi’", "emailusername": "Lalu’ na pptzyuwaw:", "watchlist": "Cyes’ cingtan", "mywatchlist": "Kta quw binkgan biru’", "watch": "Kita’", "wlshowhidebots": "squliq na kikay", "wlshowhideanons": "inqing lalu’ nqu squliq cyux mbing", - "watchlist-unwatch": "×", - "watchlist-unwatch-undo": "+", "enotif_impersonal_salutation": "{{SITENAME}} kwara’ ka cyux mbing ka qutux qutux ngasal", "enotif_anon_editor": "inqing lalu’ nqu squliq cyux mbing $1", + "delete-confirm": "’muyut \"$1\"", "dellogpage": "Wayal pzyutan ka bniru’ qasa", "rollbacklink": "psbnahun", - "rollbacklinkcount": "psbzih $1{{PLURAL:$1|sinr’zyut miru’}}", + "rollbacklinkcount": "psbzinah squw {{PLURAL:sinr’zyut miru’ sa|$1}}", + "protectlogpage": "Kklahang sa bniru’", "pagesize": "(bzyaqan kkayal na llpgan)", "restriction-edit": "Smr’zyut miru’", "restriction-move": "smhzi’", - "undelete-search-submit": "hhkangi’", + "undelete-search-submit": "Hhkangi’", + "undelete-show-file-submit": "Aw’", "namespace": "Kung cyen na sslalu’:", "invert": "Mssyuk mwazyaw", "tooltip-invert": "Prawngan mwazyaw squw “bbzyagan” qaniy ga lqingun niya’ quw sinbahan zngazyan na wnwazyaw sa “kungcyen na sslalu’ ” (maha iy prawngan su’ mwazyaw quw gluw na “kungcyen na sslalu’ ” lga, mutuw niya’ siy ptnaqiy lmqing uziy kwara’ quw gluw na “kungcyen na sslalu’.”)", @@ -417,13 +441,13 @@ "year": "Pcingan na sniyan naha’ ryax na kawas", "sp-contributions-logs": "bniru", "sp-contributions-talk": "mpkal", - "sp-contributions-submit": "hhkangi’", + "sp-contributions-submit": "Hhkangi’", "whatlinkshere": "Aniy p’ubuy tay lpgan sqaniy", "whatlinkshere-title": "Aniy ’mubuy sa zngayan tay \"$1\"", "whatlinkshere-page": "Zngayan", "linkshere": "Zngayan tay suruw qaniy ga aniy p’ubuy sa [[:$1]]:", "isredirect": "t’ringun pawsa’ sa zngayan", - "istemplate": " ’nagal sa", + "istemplate": "’nagal sa", "isimage": "’ubuy sa biru’ na ana nanu’ zayzyuwaw", "whatlinkshere-prev": "{{PLURAL:$1|glaing tay|glaing tay $1 }}", "whatlinkshere-next": "{{PLURAL:$1|tay suruw|’mubuy sa $1 }}", @@ -432,14 +456,19 @@ "whatlinkshere-hidetrans": "’ nagal sa $1", "whatlinkshere-hidelinks": "$1 p’ubuy", "whatlinkshere-filters": "Hmkangi’", - "autoblocklist-submit": "hhkangi’", - "ipblocklist-submit": "hhkangi’", + "autoblocklist-submit": "Hhkangi’", + "ipblocklist-submit": "Hhkangi’", "blocklink": "qmhut", "contribslink": "wal miq sa pincyuwagan", "movelogpage": "Sinhzyan sa bniru’", "export": "Pawsa’ sa bzinah quwzngayan", + "allmessages-filter-legend": "Hhkangi’", + "allmessages-filter-all": "Kwara’ biru’ na zngyan", + "allmessages-language": "Kay’:", + "allmessages-filter-translate": "Gmbang miru’", "thumbnail-more": "Pkrahu’", "import-upload-filename": "Lalu’ na tang’an:", + "import-comment": "Kmayal:", "tooltip-pt-userpage": "{{GENDER:|Lalu’ su’ sa pptzyuwaw}}sinr’zyut miru’", "tooltip-pt-mytalk": "{{GENDER:|Rwa su’}} zngayan sa spkayal", "tooltip-pt-preferences": "{{GENDER:|Rwa su’}}sni’ maku’ ktan krayryax", @@ -485,10 +514,12 @@ "tooltip-rollback": "ssbu’ sa ’ubuy squ “Psbznahan” lga musa’ baq mbzinah squw sinr’ztan binrwan na misan mniru’ sa wayal qasa", "tooltip-undo": "\"Psbzinah\"hya’ ga mutuw niya’ baqun psbzinah quw sinr’zyut miru’, ruw kahul sa yuran mosu’ gmyah sa pcyuawag na smr’zyut miru’, ana su’ twangan miru’ sa nanu’ quw stwang squw sslalu’ na kkayal qaniy.", "tooltip-summary": "Brwaniy quw lalu’ na spzyang bbiru’ su’", + "others": "bzinah", "simpleantispam-label": "Kmyagal sa kana ptayqihiy na niwan saysyup na kay’ na nnanu.\nLaxiy brwaniy sa bbrwan qaniy!", "pageinfo-watchers": "Number of page watchers", "pageinfo-toolboxlink": "Zzngayan na ggalan qqbaqan", "pageinfo-contentpage-yes": "Aw’", + "pageinfo-protect-cascading-yes": "Aw’", "nextdiff": "Giqas hazi’ sinr’zyut→", "file-info-size": "$1 × $2 qqblayqan zzyangay, zayzyuwaw biru’ na sspngan kinkrahu’: $3, gluw na mmntnaq MIME: $4", "file-nohires": "Ungat qbaqan miq qutux sa musa’ tthuzyay iyal pkaykita’ sa kinslwan iyal na qayqaya’.", @@ -497,10 +528,12 @@ "show-big-image-preview": "Squw tay $1 tay glaing", "show-big-image-other": "Kinbaqun iyal mita’ na kwara’ tay bbzinah na {{PLURAL:$2||}}:$1", "show-big-image-size": "$1 × $2 qqblayqan zzyangay", - "ilsubmit": "hhkangi’", + "newimages-legend": "Hhkangi’", + "ilsubmit": "Hhkangi’", "metadata": "Cyuens’cryaw", "metadata-help": "Taki’ sa biru’ na kwara’ zayzyuwaw qaniy ga kwara’ kin na zayzyuwaw bbzinah, kwara’ quw zyuwaw sqaniy ga hazi’ na kahul sa pins’rux na Suwe syangciy ini’ ga tmrang squw cyux ps’rux squw Sken ini’ ga cyux tmrang smr’zyut sa Suwe . \nMaha iy wal sbahun squw puqing balay na biru’ cyux syan squw ana nanu’ zyuwaw lga, iyat hazi’ baqun minblaq ppwah kruma’ quw wal minblayqun miru’ na wayal sbahun na zyuwaw hya’ la.", "metadata-fields": "maki’ squw bnaykgan na pintkaykay’ ka qsahuy na Cyens’cryaw EXIF ga, syun niya’ sa zzngazyan kwara’ kin na Syasing, nanu’ iy mhiriq quw binrwan niya’ Cyens’cryaw lga nanak yaquw nyux sbiru’ hugal ka pintkaykay’ qaniy msthay.\ncyuens’ cryaw bzinah hya’ lga skun niya’ sa llqingun qasa hya’. \n* make\n* model\n* datetimeoriginal\n* exposuretime\n* fnumber\n* isospeedratings\n* focallength\n* artist\n* copyright\n* imagedescription\n* gpslatitude\n* gpslongitude\n* gpsaltitude", + "exif-imagewidth": "Kinglabang", "exif-orientation": "Ppiray sa iyat ptkkiy ktan quw syasing", "exif-xresolution": "Sweping Cyesitu’", "exif-yresolution": "Cwec’ Cyesitu’", @@ -512,27 +545,54 @@ "exif-colorspace": "Hhalan mwazyaw sa qqlah sa ini’ ptnaq kktan na bbiru’", "exif-datetimeoriginal": "Ryax na sni’ sa Craw squw zikang na sni’ sa Craw", "exif-datetimedigitized": "Ryax na minsuwexwa’ squw zikang na minsuwexwa’", + "exif-headline": "Lalu’", + "exif-languagecode": "Kay’:", "exif-orientation-1": "Mutuw galan sa puqing pspngan kwara’ na squliq", + "exif-meteringmode-0": "Ini’ bqbaqiy ginlaylwan", + "exif-meteringmode-255": "Bzinah", + "exif-lightsource-0": "Ini’ bqbaqiy ginlaylwan", + "exif-scenecapturetype-0": "Galan pspngan", + "exif-contrast-0": "Galan pspngan", + "exif-saturation-0": "Galan pspngan", + "exif-sharpness-0": "Galan pspngan", + "exif-subjectdistancerange-0": "Ini’ bqbaqiy ginlaylwan", + "exif-gpsdestdistance-k": "Kirometa’", + "exif-iimcategory-hth": "Blaq hi’", + "exif-urgency-normal": "Galan pspngan ($1)", "namespacesall": "kwara’", "monthsall": "kwara’", "signature": "[[{{ns:user}}:$1|$2]] ([[{{ns:user_talk}}:$1|mpkal]])", + "version-other": "Bzinah", + "version-skin-colheader-name": "Ktan na rawziq", + "version-poweredby-others": "bzinah", "redirect-submit": "Ptzyuwaw", + "redirect-lookup": "Hmkangi’:", "redirect-file": "Lalu’ na tang’an", "fileduplicatesearch-filename": "Lalu’ na tang’an:", - "fileduplicatesearch-submit": "hhkangi’", + "fileduplicatesearch-submit": "Hhkangi’", "specialpages": "Mnanak na zzngayan", "tag-filter": "[[Special:Tags|qinlah lalu’]]hhkangi’:", "tag-list-wrapper": "([[Special:Tags|{{PLURAL:$1|qinlah lalu’}}]]: $2)", "tags-active-yes": "Aw’", "tags-active-no": "Iyat", "tags-edit": "Smr’zyut miru’", + "tags-delete": "’muyut", + "diff-form": "Kin’ini’ ptnaq", + "permanentlink": "Mrayrhuw na pin’ubuy", + "htmlform-selectorother-other": "Bzinah", + "htmlform-no": "iyat", + "htmlform-yes": "Aw’", "logentry-delete-delete": "$1 {{GENDER:$2|wal laxan}}zngayan $3", "logentry-move-move": "$1 {{GENDER:$2|wal shzyun}}zngyan $3 squw $4", "logentry-newusers-create": "Wayal tmasuq {{GENDER:$2|ps’rux sq }} quw cin canghaw $1", "logentry-upload-upload": "$1 {{GENDER:$2|wal pawsun }} $3", + "feedback-back": "’bzinah", "searchsuggest-search": "Hhkangi’ {{SITENAME}}", "limitreport-postexpandincludesize-value": "$1/$2 {{PLURAL:$2|bzyaqan kkayal na llpgan}}", "limitreport-templateargumentsize-value": "$1/$2 {{PLURAL:$2|bzyaqan kkayal na llpgan}}", + "pagelang-language": "Kay’:", "mediastatistics-nbytes": "{{PLURAL:$1|$1 bzyaqan kkayal na llpgan}} ($2; $3%)", + "mediastatistics-header-unknown": "Ini’ bqbaqiy ginlaylwan", + "log-action-filter-all": "Kwara’ biru’ na zngyan", "authmanager-email-label": "e-meyo’" } diff --git a/languages/i18n/th.json b/languages/i18n/th.json index ad083e9023..88d48c7a51 100644 --- a/languages/i18n/th.json +++ b/languages/i18n/th.json @@ -2508,12 +2508,12 @@ "pageinfo-header-edits": "ประวัติการแก้ไข", "pageinfo-header-restrictions": "การล็อกหน้า", "pageinfo-header-properties": "คุณสมบัติหน้า", - "pageinfo-display-title": "แสดงชื่อ", - "pageinfo-default-sort": "หลักการเรียงลำดับโดยปริยาย", + "pageinfo-display-title": "ชื่อหน้าที่แสดงผล", + "pageinfo-default-sort": "ค่าปริยายของคำหลักในการเรียงลำดับ", "pageinfo-length": "ความยาวหน้า (ไบต์)", "pageinfo-article-id": "หมายเลขประจำหน้า", "pageinfo-language": "ภาษาเนื้อหาของหน้า", - "pageinfo-content-model": "ตัวแบบเนื้อหาของหน้า", + "pageinfo-content-model": "รูปแบบเนื้อหาของหน้า", "pageinfo-robot-policy": "การทำดัชนีโดยบอต", "pageinfo-robot-index": "อนุญาต", "pageinfo-robot-noindex": "ไม่อนุญาต", @@ -2530,8 +2530,9 @@ "pageinfo-lasttime": "วันที่แก้ไขล่าสุด", "pageinfo-edits": "จำนวนการแก้ไขรวม", "pageinfo-authors": "จำนวนผู้เขียนทั้งหมด", - "pageinfo-recent-edits": "การแก้ไขล่าสุด (ภายใน $1ที่ผ่านมา)", + "pageinfo-recent-edits": "การแก้ไขล่าสุด (ในช่วง $1ที่ผ่านมา)", "pageinfo-recent-authors": "จำนวนผู้เขียนล่าสุด", + "pageinfo-magic-words": "{{PLURAL:$1|คำสั่งพิเศษ}} ($1)", "pageinfo-hidden-categories": "หมวดหมู่ที่ซ่อนอยู่ ($1)", "pageinfo-templates": "แม่แบบที่ใช้ ($1)", "pageinfo-toolboxlink": "สารสนเทศหน้า", diff --git a/languages/i18n/tl.json b/languages/i18n/tl.json index a75aaf0866..43c0c7745d 100644 --- a/languages/i18n/tl.json +++ b/languages/i18n/tl.json @@ -541,6 +541,7 @@ "watchthis": "Bantayan ang pahinang ito", "savearticle": "Itala ang pahina", "publishpage": "Ilimbag ang pahina", + "publishchanges": "Ilathala ang binago", "preview": "Paunang tingin", "showpreview": "Paunang tingin", "showdiff": "Ipakita ang mga pagbabago", diff --git a/languages/i18n/uk.json b/languages/i18n/uk.json index 03bbe0bd0a..cb1e5c819d 100644 --- a/languages/i18n/uk.json +++ b/languages/i18n/uk.json @@ -1381,7 +1381,6 @@ "rcfilters-restore-default-filters": "Відновити стандартні фільтри", "rcfilters-clear-all-filters": "Очистити фільтри", "rcfilters-show-new-changes": "Переглянути найновіші зміни", - "rcfilters-previous-changes-label": "Раніше переглянуті зміни", "rcfilters-search-placeholder": "Фільтруйте нові редагування (переглядайте або почніть вводити)", "rcfilters-invalid-filter": "Недійсний фільтр", "rcfilters-empty-filter": "Без фільтрів. Показано всі зміни.", diff --git a/languages/i18n/zh-hans.json b/languages/i18n/zh-hans.json index 39f8d8e9ac..f6e5a66f67 100644 --- a/languages/i18n/zh-hans.json +++ b/languages/i18n/zh-hans.json @@ -1374,7 +1374,7 @@ "rcfilters-legend-heading": "缩写列表:", "rcfilters-other-review-tools": "其他复核工具", "rcfilters-group-results-by-page": "按页面分组结果", - "rcfilters-grouping-title": "正在分组", + "rcfilters-grouping-title": "分组", "rcfilters-activefilters": "激活的过滤器", "rcfilters-advancedfilters": "高级过滤器", "rcfilters-limit-title": "要显示的更改", @@ -1400,7 +1400,6 @@ "rcfilters-restore-default-filters": "恢复默认过滤器", "rcfilters-clear-all-filters": "清空所有过滤器", "rcfilters-show-new-changes": "显示最新更改", - "rcfilters-previous-changes-label": "之前查看过的更改", "rcfilters-search-placeholder": "过滤器最近更改(浏览或开始输入)", "rcfilters-invalid-filter": "无效过滤器", "rcfilters-empty-filter": "没有激活的过滤器。已显示所有贡献。", @@ -1413,7 +1412,7 @@ "rcfilters-filterlist-noresults": "找不到过滤器", "rcfilters-noresults-conflict": "找不到结果,因为搜索条件不一致", "rcfilters-state-message-subset": "该过滤器没有影响,因为其结果已包含在以下影响更广的{{PLURAL:$2|过滤器}}中(尝试高亮来区别它):$1", - "rcfilters-state-message-fullcoverage": "组中选择的所有过滤器与选定过滤器相同,因此该过滤器没有影响。组包含:$1", + "rcfilters-state-message-fullcoverage": "此组中选择的所有过滤器与选定过滤器相同,因此该过滤器没有影响。组包含:$1", "rcfilters-filtergroup-authorship": "贡献的作者", "rcfilters-filter-editsbyself-label": "您的更改", "rcfilters-filter-editsbyself-description": "您自己的贡献。", @@ -2185,8 +2184,6 @@ "watching": "正在监视...", "unwatching": "正在取消监视...", "watcherrortext": "更改“$1”的监视列表设置时出错。", - "watchlist-unwatch": "×", - "watchlist-unwatch-undo": "+", "enotif_reset": "标记所有页面为已访问", "enotif_impersonal_salutation": "{{SITENAME}}用户", "enotif_subject_deleted": "{{SITENAME}}页面$1已被$2删除", diff --git a/languages/i18n/zh-hant.json b/languages/i18n/zh-hant.json index a7b7004b68..342ccef518 100644 --- a/languages/i18n/zh-hant.json +++ b/languages/i18n/zh-hant.json @@ -303,7 +303,7 @@ "poolcounter-usage-error": "用法錯誤:$1", "aboutsite": "關於 {{SITENAME}}", "aboutpage": "Project:關於", - "copyright": "除非另有註明,否則頁面內容均以 $1 條款授權。", + "copyright": "除非另有註明,否則所有內容皆以 $1 條款授權。", "copyrightpage": "{{ns:project}}:版權", "currentevents": "新聞動態", "currentevents-url": "Project:Current events", @@ -1360,6 +1360,7 @@ "recentchanges-legend-newpage": "{{int:recentchanges-label-newpage}} (請參考[[Special:NewPages|新頁面]])", "recentchanges-legend-plusminus": "(±123)", "recentchanges-submit": "顯示", + "rcfilters-grouping-title": "分組", "rcfilters-activefilters": "使用中的過濾條件", "rcfilters-advancedfilters": "進階查詢條件", "rcfilters-quickfilters": "儲存的查詢條件", @@ -1377,6 +1378,7 @@ "rcfilters-savedqueries-add-new-title": "儲存目前的過濾器設定", "rcfilters-restore-default-filters": "還原預設過濾條件", "rcfilters-clear-all-filters": "清除所有過濾條件", + "rcfilters-show-new-changes": "顯示最新更改", "rcfilters-search-placeholder": "過濾條件近期變更 (瀏覽或開始輸入)", "rcfilters-invalid-filter": "無效的過濾條件", "rcfilters-empty-filter": "沒有使用中的過濾條件。已顯示所有的貢獻。", diff --git a/maintenance/Maintenance.php b/maintenance/Maintenance.php index 04565f2450..89e8089fbf 100644 --- a/maintenance/Maintenance.php +++ b/maintenance/Maintenance.php @@ -1243,7 +1243,7 @@ abstract class Maintenance { * If not set, wfGetDB() will be used. * This function has the same parameters as wfGetDB() * - * @param integer $db DB index (DB_REPLICA/DB_MASTER) + * @param int $db DB index (DB_REPLICA/DB_MASTER) * @param array $groups; default: empty array * @param string|bool $wiki; default: current wiki * @return IMaintainableDatabase diff --git a/maintenance/namespaceDupes.php b/maintenance/namespaceDupes.php index 4a2b49ae93..84d45335ec 100644 --- a/maintenance/namespaceDupes.php +++ b/maintenance/namespaceDupes.php @@ -459,10 +459,10 @@ class NamespaceConflictChecker extends Maintenance { /** * Get the preferred destination title for a given target page. - * @param integer $ns The destination namespace ID + * @param int $ns The destination namespace ID * @param string $name The conflicting prefix - * @param integer $sourceNs The source namespace - * @param integer $sourceDbk The source DB key (i.e. page_title) + * @param int $sourceNs The source namespace + * @param int $sourceDbk The source DB key (i.e. page_title) * @param array $options Associative array of validated command-line options * @return Title|false */ diff --git a/maintenance/rebuildrecentchanges.php b/maintenance/rebuildrecentchanges.php index 5df432eb7a..b93d1127d6 100644 --- a/maintenance/rebuildrecentchanges.php +++ b/maintenance/rebuildrecentchanges.php @@ -32,9 +32,9 @@ use MediaWiki\MediaWikiServices; * @ingroup Maintenance */ class RebuildRecentchanges extends Maintenance { - /** @var integer UNIX timestamp */ + /** @var int UNIX timestamp */ private $cutoffFrom; - /** @var integer UNIX timestamp */ + /** @var int UNIX timestamp */ private $cutoffTo; public function __construct() { diff --git a/phpcs.xml b/phpcs.xml index cabea093b2..4c5266e419 100644 --- a/phpcs.xml +++ b/phpcs.xml @@ -9,10 +9,6 @@ - - - - diff --git a/resources/Resources.php b/resources/Resources.php index 09bd4dc762..89eab943ee 100644 --- a/resources/Resources.php +++ b/resources/Resources.php @@ -301,10 +301,6 @@ return [ 'scripts' => 'resources/src/jquery/jquery.mw-jump.js', 'targets' => [ 'desktop', 'mobile' ], ], - 'jquery.mwExtension' => [ - 'scripts' => 'resources/src/jquery/jquery.mwExtension.js', - 'targets' => [ 'desktop', 'mobile' ], - ], 'jquery.placeholder' => [ 'deprecated' => 'Use of "jquery.placeholder" is deprecated since MediaWiki 1.29.0', @@ -1799,6 +1795,7 @@ return [ 'resources/src/mediawiki.rcfilters/ui/mw.rcfilters.ui.FilterItemHighlightButton.js', 'resources/src/mediawiki.rcfilters/ui/mw.rcfilters.ui.HighlightColorPickerWidget.js', 'resources/src/mediawiki.rcfilters/ui/mw.rcfilters.ui.LiveUpdateButtonWidget.js', + 'resources/src/mediawiki.rcfilters/ui/mw.rcfilters.ui.MarkSeenButtonWidget.js', 'resources/src/mediawiki.rcfilters/mw.rcfilters.HighlightColors.js', 'resources/src/mediawiki.rcfilters/mw.rcfilters.init.js', ], @@ -1835,6 +1832,7 @@ return [ ], ], 'messages' => [ + 'rcfilters-tag-remove', 'rcfilters-activefilters', 'rcfilters-advancedfilters', 'rcfilters-group-results-by-page', @@ -1845,6 +1843,7 @@ return [ 'rcfilters-hours-title', 'rcfilters-days-show-days', 'rcfilters-days-show-hours', + 'rcfilters-highlighted-filters-list', 'rcfilters-quickfilters', 'rcfilters-quickfilters-placeholder-title', 'rcfilters-quickfilters-placeholder-description', @@ -1889,6 +1888,7 @@ return [ 'rcfilters-liveupdates-button', 'rcfilters-liveupdates-button-title-on', 'rcfilters-liveupdates-button-title-off', + 'rcfilters-watchlist-markSeen-button', 'rcfilters-other-review-tools', 'blanknamespace', 'namespaces', diff --git a/resources/lib/jquery/jquery.migrate.js b/resources/lib/jquery/jquery.migrate.js index 879509f996..f094aaa2cc 100644 --- a/resources/lib/jquery/jquery.migrate.js +++ b/resources/lib/jquery/jquery.migrate.js @@ -1,13 +1,34 @@ /*! - * jQuery Migrate - v3.0.0 - 2016-06-09 + * jQuery Migrate - v3.0.1-pre - 2017-08-17 * Copyright jQuery Foundation and other contributors + * + * Patched for MediaWiki: + * - Preserve handler of uncaught exceptions in promise chains + * https://gerrit.wikimedia.org/r/#/c/360999/ + * https://github.com/jquery/jquery-migrate/pull/262 */ -(function( jQuery, window ) { +;( function( factory ) { + if ( typeof define === "function" && define.amd ) { + + // AMD. Register as an anonymous module. + define( [ "jquery" ], window, factory ); + } else if ( typeof module === "object" && module.exports ) { + + // Node/CommonJS + // eslint-disable-next-line no-undef + module.exports = factory( require( "jquery" ), window ); + } else { + + // Browser globals + factory( jQuery, window ); + } +} )( function( jQuery, window ) { "use strict"; -jQuery.migrateVersion = "3.0.0"; +jQuery.migrateVersion = "3.0.1-pre"; +/* exported migrateWarn, migrateWarnFunc, migrateWarnProp */ ( function() { @@ -15,7 +36,9 @@ jQuery.migrateVersion = "3.0.0"; // IE9 only creates console object when dev tools are first opened // Also, avoid Function#bind here to simplify PhantomJS usage var log = window.console && window.console.log && - function() { window.console.log.apply( window.console, arguments ); }, + function() { + window.console.log.apply( window.console, arguments ); + }, rbadVersions = /^[12]\./; if ( !log ) { @@ -74,11 +97,22 @@ function migrateWarnProp( obj, prop, value, msg ) { get: function() { migrateWarn( msg ); return value; + }, + set: function( newValue ) { + migrateWarn( msg ); + value = newValue; } } ); } -if ( document.compatMode === "BackCompat" ) { +function migrateWarnFunc( obj, prop, newFunc, msg ) { + obj[ prop ] = function() { + migrateWarn( msg ); + return newFunc.apply( this, arguments ); + }; +} + +if ( window.document.compatMode === "BackCompat" ) { // JQuery has never supported or tested Quirks Mode migrateWarn( "jQuery is not compatible with Quirks Mode" ); @@ -115,7 +149,7 @@ jQuery.find = function( selector ) { // The nonstandard and undocumented unquoted-hash was removed in jQuery 1.12.0 // First see if qS thinks it's a valid selector, if so avoid a false positive try { - document.querySelector( selector ); + window.document.querySelector( selector ); } catch ( err1 ) { // Didn't *look* valid to qSA, warn and try quoting what we think is the value @@ -126,7 +160,7 @@ jQuery.find = function( selector ) { // If the regexp *may* have created an invalid selector, don't update it // Note that there may be false alarms if selector uses jQuery extensions try { - document.querySelector( selector ); + window.document.querySelector( selector ); migrateWarn( "Attribute selector with '#' must be quoted: " + args[ 0 ] ); args[ 0 ] = selector; } catch ( err2 ) { @@ -148,7 +182,7 @@ for ( findProp in oldFind ) { // The number of elements contained in the matched element set jQuery.fn.size = function() { - migrateWarn( "jQuery.fn.size() is deprecated; use the .length property" ); + migrateWarn( "jQuery.fn.size() is deprecated and removed; use the .length property" ); return this.length; }; @@ -175,14 +209,14 @@ jQuery.isNumeric = function( val ) { return oldValue; }; -migrateWarnProp( jQuery, "unique", jQuery.uniqueSort, - "jQuery.unique is deprecated, use jQuery.uniqueSort" ); +migrateWarnFunc( jQuery, "unique", jQuery.uniqueSort, + "jQuery.unique is deprecated; use jQuery.uniqueSort" ); // Now jQuery.expr.pseudos is the standard incantation migrateWarnProp( jQuery.expr, "filters", jQuery.expr.pseudos, - "jQuery.expr.filters is now jQuery.expr.pseudos" ); + "jQuery.expr.filters is deprecated; use jQuery.expr.pseudos" ); migrateWarnProp( jQuery.expr, ":", jQuery.expr.pseudos, - "jQuery.expr[\":\"] is now jQuery.expr.pseudos" ); + "jQuery.expr[':'] is deprecated; use jQuery.expr.pseudos" ); var oldAjax = jQuery.ajax; @@ -192,11 +226,11 @@ jQuery.ajax = function( ) { // Be sure we got a jQXHR (e.g., not sync) if ( jQXHR.promise ) { - migrateWarnProp( jQXHR, "success", jQXHR.done, + migrateWarnFunc( jQXHR, "success", jQXHR.done, "jQXHR.success is deprecated and removed" ); - migrateWarnProp( jQXHR, "error", jQXHR.fail, + migrateWarnFunc( jQXHR, "error", jQXHR.fail, "jQXHR.error is deprecated and removed" ); - migrateWarnProp( jQXHR, "complete", jQXHR.always, + migrateWarnFunc( jQXHR, "complete", jQXHR.always, "jQXHR.complete is deprecated and removed" ); } @@ -302,8 +336,26 @@ var oldData = jQuery.data; jQuery.data = function( elem, name, value ) { var curData; + // Name can be an object, and each entry in the object is meant to be set as data + if ( name && typeof name === "object" && arguments.length === 2 ) { + curData = jQuery.hasData( elem ) && oldData.call( this, elem ); + var sameKeys = {}; + for ( var key in name ) { + if ( key !== jQuery.camelCase( key ) ) { + migrateWarn( "jQuery.data() always sets/gets camelCased names: " + key ); + curData[ key ] = name[ key ]; + } else { + sameKeys[ key ] = name[ key ]; + } + } + + oldData.call( this, elem, sameKeys ); + + return name; + } + // If the name is transformed, look for the un-transformed name in the data object - if ( name && name !== jQuery.camelCase( name ) ) { + if ( name && typeof name === "string" && name !== jQuery.camelCase( name ) ) { curData = jQuery.hasData( elem ) && oldData.call( this, elem ); if ( curData && name in curData ) { migrateWarn( "jQuery.data() always sets/gets camelCased names: " + name ); @@ -319,7 +371,7 @@ jQuery.data = function( elem, name, value ) { var oldTweenRun = jQuery.Tween.prototype.run; -jQuery.Tween.prototype.run = function( percent ) { +jQuery.Tween.prototype.run = function( ) { if ( jQuery.easing[ this.easing ].length > 1 ) { migrateWarn( "easing function " + @@ -327,21 +379,34 @@ jQuery.Tween.prototype.run = function( percent ) { "\" should use only first argument" ); - jQuery.easing[ this.easing ] = jQuery.easing[ this.easing ].bind( - jQuery.easing, - percent, this.options.duration * percent, 0, 1, this.options.duration - ); + var oldEasing = jQuery.easing[ this.easing ]; + jQuery.easing[ this.easing ] = function( percent ) { + return oldEasing.call( jQuery.easing, percent, percent, 0, 1, 1 ); + }.bind( this ); } oldTweenRun.apply( this, arguments ); }; +jQuery.fx.interval = jQuery.fx.interval || 13; + +// Support: IE9, Android <=4.4 +// Avoid false positives on browsers that lack rAF +if ( window.requestAnimationFrame ) { + migrateWarnProp( jQuery.fx, "interval", jQuery.fx.interval, + "jQuery.fx.interval is deprecated" ); +} + var oldLoad = jQuery.fn.load, + oldEventAdd = jQuery.event.add, originalFix = jQuery.event.fix; jQuery.event.props = []; jQuery.event.fixHooks = {}; +migrateWarnProp( jQuery.event.props, "concat", jQuery.event.props.concat, + "jQuery.event.props.concat() is deprecated and removed" ); + jQuery.event.fix = function( originalEvent ) { var event, type = originalEvent.type, @@ -360,7 +425,7 @@ jQuery.event.fix = function( originalEvent ) { migrateWarn( "jQuery.event.fixHooks are deprecated and removed: " + type ); if ( ( props = fixHook.props ) && props.length ) { while ( props.length ) { - jQuery.event.addProp( props.pop() ); + jQuery.event.addProp( props.pop() ); } } } @@ -370,6 +435,15 @@ jQuery.event.fix = function( originalEvent ) { return fixHook && fixHook.filter ? fixHook.filter( event, originalEvent ) : event; }; +jQuery.event.add = function( elem, types ) { + + // This misses the multiple-types case but that seems awfully rare + if ( elem === window && types === "load" && window.document.readyState === "complete" ) { + migrateWarn( "jQuery(window).on('load'...) called after load event occurred" ); + } + return oldEventAdd.apply( this, arguments ); +}; + jQuery.each( [ "load", "unload", "error" ], function( _, name ) { jQuery.fn[ name ] = function() { @@ -402,12 +476,12 @@ jQuery.each( [ "load", "unload", "error" ], function( _, name ) { // Trigger "ready" event only once, on document ready jQuery( function() { - jQuery( document ).triggerHandler( "ready" ); + jQuery( window.document ).triggerHandler( "ready" ); } ); jQuery.event.special.ready = { setup: function() { - if ( this === document ) { + if ( this === window.document ) { migrateWarn( "'ready' event is deprecated" ); } } @@ -448,7 +522,7 @@ jQuery.fn.offset = function() { return origin; } - docElem = ( elem.ownerDocument || document ).documentElement; + docElem = ( elem.ownerDocument || window.document ).documentElement; if ( !jQuery.contains( docElem, elem ) ) { migrateWarn( "jQuery.fn.offset() requires an element connected to a document" ); return origin; @@ -475,7 +549,7 @@ jQuery.param = function( data, traditional ) { var oldSelf = jQuery.fn.andSelf || jQuery.fn.addBack; jQuery.fn.andSelf = function() { - migrateWarn( "jQuery.fn.andSelf() replaced by jQuery.fn.addBack()" ); + migrateWarn( "jQuery.fn.andSelf() is deprecated and removed, use jQuery.fn.addBack()" ); return oldSelf.apply( this, arguments ); }; @@ -538,5 +612,5 @@ jQuery.Deferred = function( func ) { // Preserve handler of uncaught exceptions in promise chains jQuery.Deferred.exceptionHook = oldDeferred.exceptionHook; - -})( jQuery, window ); +return jQuery; +} ); diff --git a/resources/src/jquery/jquery.mwExtension.js b/resources/src/jquery/jquery.mwExtension.js deleted file mode 100644 index 9d970ed274..0000000000 --- a/resources/src/jquery/jquery.mwExtension.js +++ /dev/null @@ -1,128 +0,0 @@ -/* - * JavaScript backwards-compatibility alternatives and other convenience functions - * - * @deprecated since 1.26 Dated collection of miscellaneous utilities. Methods are - * either trivially inline, obsolete, or have a better place elsewhere. - */ -( function ( $, mw ) { - $.each( { - trimLeft: function ( str ) { - return str === null ? '' : str.toString().replace( /^\s+/, '' ); - }, - trimRight: function ( str ) { - return str === null ? - '' : str.toString().replace( /\s+$/, '' ); - }, - ucFirst: function ( str ) { - return str.charAt( 0 ).toUpperCase() + str.slice( 1 ); - }, - isDomElement: function ( el ) { - return !!el && !!el.nodeType; - }, - isEmpty: function ( v ) { - var key; - if ( - v === '' || v === 0 || v === '0' || v === null || v === false || v === undefined - ) { - return true; - } - // the for-loop could potentially contain prototypes - // to avoid that we check its length first - if ( v.length === 0 ) { - return true; - } - if ( typeof v === 'object' ) { - for ( key in v ) { - return false; - } - return true; - } - return false; - }, - compareArray: function ( arrThis, arrAgainst ) { - var i; - if ( arrThis.length !== arrAgainst.length ) { - return false; - } - for ( i = 0; i < arrThis.length; i++ ) { - if ( Array.isArray( arrThis[ i ] ) ) { - if ( !$.compareArray( arrThis[ i ], arrAgainst[ i ] ) ) { - return false; - } - } else if ( arrThis[ i ] !== arrAgainst[ i ] ) { - return false; - } - } - return true; - }, - compareObject: function ( objectA, objectB ) { - var prop, type; - - // Do a simple check if the types match - if ( typeof objectA === typeof objectB ) { - - // Only loop over the contents if it really is an object - if ( typeof objectA === 'object' ) { - // If they are aliases of the same object (ie. mw and mediaWiki) return now - if ( objectA === objectB ) { - return true; - } else { - // Iterate over each property - for ( prop in objectA ) { - // Check if this property is also present in the other object - if ( prop in objectB ) { - // Compare the types of the properties - type = typeof objectA[ prop ]; - if ( type === typeof objectB[ prop ] ) { - // Recursively check objects inside this one - switch ( type ) { - case 'object' : - if ( !$.compareObject( objectA[ prop ], objectB[ prop ] ) ) { - return false; - } - break; - case 'function' : - // Functions need to be strings to compare them properly - if ( objectA[ prop ].toString() !== objectB[ prop ].toString() ) { - return false; - } - break; - default: - // Strings, numbers - if ( objectA[ prop ] !== objectB[ prop ] ) { - return false; - } - break; - } - } else { - return false; - } - } else { - return false; - } - } - // Check for properties in B but not in A - // This is about 15% faster (tested in Safari 5 and Firefox 3.6) - // ...than incrementing a count variable in the above and below loops - // See also: https://www.mediawiki.org/wiki/ResourceLoader/Default_modules/compareObject_test#Results - for ( prop in objectB ) { - if ( !( prop in objectA ) ) { - return false; - } - } - } - } - } else { - return false; - } - return true; - } - }, function ( key, value ) { - mw.log.deprecate( $, key, value, null, '$.' + key ); - } ); - - mw.log.deprecate( $, 'escapeRE', function ( str ) { - return str.replace( /([\\{}()|.?*+\-^$\[\]])/g, '\\$1' ); // eslint-disable-line no-useless-escape - }, 'Use mediawiki.RegExp instead.', '$.escapeRE' ); - -}( jQuery, mediaWiki ) ); diff --git a/resources/src/mediawiki.less/mediawiki.ui/variables.less b/resources/src/mediawiki.less/mediawiki.ui/variables.less index 56824f2147..0ad791b7d8 100644 --- a/resources/src/mediawiki.less/mediawiki.ui/variables.less +++ b/resources/src/mediawiki.less/mediawiki.ui/variables.less @@ -1,20 +1,14 @@ // Colors for use in mediawiki.ui and elsewhere -// Although this defines many shades, be parsimonious in your own use of grays. Prefer -// colors already in use in MediaWiki. Prefer semantic color names such as "@colorText". +// Although this defines many shades, be parsimonious in your own use of grays. +// Prefer semantic color names such as `@colorText` below. @colorGray1: #000; // darkest @colorGray2: #222; -@colorGray3: #333; @colorGray4: #444; @colorGray5: #54595d; -@colorGray6: #666; @colorGray7: #72777d; -@colorGray8: #888; -@colorGray9: #999; @colorGray10: #a2a9b1; -@colorGray11: #bbb; @colorGray12: #c8ccd1; -@colorGray13: #ddd; @colorGray14: #eaecf0; @colorGray15: #f8f9fa; // lightest @colorBaseInverted: #fff; @@ -80,3 +74,12 @@ // Form input sizes, equal to OOUI at 14px base font-size @sizeInputBinary: 1.5625em; + +// Deprecated color variables from when WikimediaUI color palette wasn't around +// See https://wikimedia.github.io/WikimediaUI-Style-Guide/visual-style_colors.html +@colorGray3: #333; +@colorGray6: #666; +@colorGray8: #888; +@colorGray9: #999; +@colorGray11: #bbb; +@colorGray13: #ddd; diff --git a/resources/src/mediawiki.rcfilters/dm/mw.rcfilters.dm.ChangesListViewModel.js b/resources/src/mediawiki.rcfilters/dm/mw.rcfilters.dm.ChangesListViewModel.js index f221b2b81f..d7042ff3c6 100644 --- a/resources/src/mediawiki.rcfilters/dm/mw.rcfilters.dm.ChangesListViewModel.js +++ b/resources/src/mediawiki.rcfilters/dm/mw.rcfilters.dm.ChangesListViewModel.js @@ -14,6 +14,7 @@ this.newChangesExist = false; this.nextFrom = null; this.liveUpdate = false; + this.unseenWatchedChanges = false; }; /* Initialization */ @@ -78,7 +79,10 @@ mw.rcfilters.dm.ChangesListViewModel.prototype.update = function ( changesListContent, $fieldset, isInitialDOM, separateOldAndNew ) { var from = this.nextFrom; this.valid = true; - this.extractNextFrom( $fieldset ); + if ( mw.rcfilters.featureFlags.liveUpdate ) { + this.extractNextFrom( $fieldset ); + } + this.checkForUnseenWatchedChanges( changesListContent ); this.emit( 'update', changesListContent, $fieldset, isInitialDOM, separateOldAndNew ? from : null ); }; @@ -138,4 +142,20 @@ return this.liveUpdate; }; + /** + * Check if some of the given changes watched and unseen + * + * @param {jQuery|string} changeslistContent + */ + mw.rcfilters.dm.ChangesListViewModel.prototype.checkForUnseenWatchedChanges = function ( changeslistContent ) { + this.unseenWatchedChanges = changeslistContent !== 'NO_RESULTS' && + changeslistContent.find( '.mw-changeslist-line-watched' ).length > 0; + }; + + /** + * @return {boolean} Whether some of the current changes are watched and unseen + */ + mw.rcfilters.dm.ChangesListViewModel.prototype.hasUnseenWatchedChanges = function () { + return this.unseenWatchedChanges; + }; }( mediaWiki ) ); diff --git a/resources/src/mediawiki.rcfilters/mw.rcfilters.Controller.js b/resources/src/mediawiki.rcfilters/mw.rcfilters.Controller.js index 0085bd6afc..c24e6c67d3 100644 --- a/resources/src/mediawiki.rcfilters/mw.rcfilters.Controller.js +++ b/resources/src/mediawiki.rcfilters/mw.rcfilters.Controller.js @@ -8,11 +8,15 @@ * @param {mw.rcfilters.dm.FiltersViewModel} filtersModel Filters view model * @param {mw.rcfilters.dm.ChangesListViewModel} changesListModel Changes list view model * @param {mw.rcfilters.dm.SavedQueriesModel} savedQueriesModel Saved queries model + * @param {Object} config Additional configuration + * @cfg {string} savedQueriesPreferenceName Where to save the saved queries */ - mw.rcfilters.Controller = function MwRcfiltersController( filtersModel, changesListModel, savedQueriesModel ) { + mw.rcfilters.Controller = function MwRcfiltersController( filtersModel, changesListModel, savedQueriesModel, config ) { this.filtersModel = filtersModel; this.changesListModel = changesListModel; this.savedQueriesModel = savedQueriesModel; + this.savedQueriesPreferenceName = config.savedQueriesPreferenceName; + this.requestCounter = {}; this.baseFilterState = {}; this.uriProcessor = null; @@ -209,7 +213,7 @@ ); try { - parsedSavedQueries = JSON.parse( mw.user.options.get( 'rcfilters-saved-queries' ) || '{}' ); + parsedSavedQueries = JSON.parse( mw.user.options.get( this.savedQueriesPreferenceName ) || '{}' ); } catch ( err ) { parsedSavedQueries = {}; } @@ -254,7 +258,7 @@ // so it gets processed this.changesListModel.update( $changesList.length ? $changesList : 'NO_RESULTS', - $( 'fieldset.rcoptions' ).first(), + $( 'fieldset.cloptions' ).first(), true // We're using existing DOM elements ); } @@ -868,9 +872,9 @@ } // Save the preference - new mw.Api().saveOption( 'rcfilters-saved-queries', stringified ); + new mw.Api().saveOption( this.savedQueriesPreferenceName, stringified ); // Update the preference for this session - mw.user.options.set( 'rcfilters-saved-queries', stringified ); + mw.user.options.set( this.savedQueriesPreferenceName, stringified ); }; /** @@ -992,7 +996,7 @@ * Update the list of changes and notify the model * * @param {Object} [params] Extra parameters to add to the API call - * @param {string} [updateMode='filterChange'] One of 'filterChange', 'liveUpdate', 'showNewChanges' + * @param {string} [updateMode='filterChange'] One of 'filterChange', 'liveUpdate', 'showNewChanges', 'markSeen' * @return {jQuery.Promise} Promise that is resolved when the update is complete */ mw.rcfilters.Controller.prototype.updateChangesList = function ( params, updateMode ) { @@ -1150,23 +1154,31 @@ return $.ajax( uri.toString(), { contentType: 'html' } ) .then( - // Success function ( html ) { - var $parsed; + var $parsed, + pieces; + if ( !latestRequest() ) { return $.Deferred().reject(); } $parsed = $( $.parseHTML( html ) ); - return { + pieces = { // Changes list changes: $parsed.find( '.mw-changeslist' ).first().contents(), // Fieldset - fieldset: $parsed.find( 'fieldset.rcoptions' ).first() + fieldset: $parsed.find( 'fieldset.cloptions' ).first() }; + + // Watchlist returns 200 when there is no results + if ( pieces.changes.length === 0 ) { + pieces.changes = 'NO_RESULTS'; + } + + return pieces; }, - // Failure + // RC returns 404 when there is no results function ( responseObj ) { var $parsed; @@ -1179,7 +1191,7 @@ // Force a resolve state to this promise return $.Deferred().resolve( { changes: 'NO_RESULTS', - fieldset: $parsed.find( 'fieldset.rcoptions' ).first() + fieldset: $parsed.find( 'fieldset.cloptions' ).first() } ).promise(); } ); @@ -1251,4 +1263,18 @@ this.prevLoggedItems = filters; } }; + + /** + * Mark all changes as seen on Watchlist + */ + mw.rcfilters.Controller.prototype.markAllChangesAsSeen = function () { + var api = new mw.Api(); + api.postWithToken( 'csrf', { + formatversion: 2, + action: 'setnotificationtimestamp', + entirewatchlist: true + } ).then( function () { + this.updateChangesList( null, 'markSeen' ); + }.bind( this ) ); + }; }( mediaWiki, jQuery ) ); diff --git a/resources/src/mediawiki.rcfilters/mw.rcfilters.init.js b/resources/src/mediawiki.rcfilters/mw.rcfilters.init.js index 701e61d1b2..a6bce1434e 100644 --- a/resources/src/mediawiki.rcfilters/mw.rcfilters.init.js +++ b/resources/src/mediawiki.rcfilters/mw.rcfilters.init.js @@ -12,14 +12,24 @@ topLinksCookieName = 'rcfilters-toplinks-collapsed-state', topLinksCookie = mw.cookie.get( topLinksCookieName ), topLinksCookieValue = topLinksCookie || 'collapsed', + savedQueriesPreferenceName = mw.config.get( 'wgStructuredChangeFiltersSavedQueriesPreferenceName' ), filtersModel = new mw.rcfilters.dm.FiltersViewModel(), changesListModel = new mw.rcfilters.dm.ChangesListViewModel(), savedQueriesModel = new mw.rcfilters.dm.SavedQueriesModel(), - controller = new mw.rcfilters.Controller( filtersModel, changesListModel, savedQueriesModel ), + controller = new mw.rcfilters.Controller( + filtersModel, changesListModel, savedQueriesModel, + { + savedQueriesPreferenceName: savedQueriesPreferenceName + } + ), $overlay = $( '
' ) .addClass( 'mw-rcfilters-ui-overlay' ), filtersWidget = new mw.rcfilters.ui.FilterWrapperWidget( - controller, filtersModel, savedQueriesModel, changesListModel, { $overlay: $overlay } ); + controller, filtersModel, savedQueriesModel, changesListModel, { $overlay: $overlay } ), + markSeenButton, + currentPage = mw.config.get( 'wgCanonicalNamespace' ) + + ':' + + mw.config.get( 'wgCanonicalSpecialPageName' ); // TODO: The changesListWrapperWidget should be able to initialize // after the model is ready. @@ -35,7 +45,7 @@ // eslint-disable-next-line no-new new mw.rcfilters.ui.FormWrapperWidget( - filtersModel, changesListModel, controller, $( 'fieldset.rcoptions' ) ); + filtersModel, changesListModel, controller, $( 'fieldset.cloptions' ) ); $( '.rcfilters-container' ).append( filtersWidget.$element ); $( 'body' ).append( $overlay ); @@ -48,30 +58,38 @@ controller.replaceUrl(); - toplinksTitle = new OO.ui.ButtonWidget( { - framed: false, - indicator: topLinksCookieValue === 'collapsed' ? 'down' : 'up', - flags: [ 'progressive' ], - label: $( '' ).append( mw.message( 'rcfilters-other-review-tools' ).parse() ).contents() - } ); - $( '.mw-recentchanges-toplinks-title' ).replaceWith( toplinksTitle.$element ); - // Move the top links to a designated area so it's near the - // 'saved filters' button and make it collapsible - $( '.mw-recentchanges-toplinks' ) - .addClass( 'mw-rcfilters-ui-ready' ) - .makeCollapsible( { - collapsed: topLinksCookieValue === 'collapsed', - $customTogglers: toplinksTitle.$element - } ) - .on( 'beforeExpand.mw-collapsible', function () { - mw.cookie.set( topLinksCookieName, 'expanded' ); - toplinksTitle.setIndicator( 'up' ); - } ) - .on( 'beforeCollapse.mw-collapsible', function () { - mw.cookie.set( topLinksCookieName, 'collapsed' ); - toplinksTitle.setIndicator( 'down' ); - } ) - .appendTo( '.mw-rcfilters-ui-filterWrapperWidget-top-placeholder' ); + if ( currentPage === 'Special:Recentchanges' ) { + toplinksTitle = new OO.ui.ButtonWidget( { + framed: false, + indicator: topLinksCookieValue === 'collapsed' ? 'down' : 'up', + flags: [ 'progressive' ], + label: $( '' ).append( mw.message( 'rcfilters-other-review-tools' ).parse() ).contents() + } ); + $( '.mw-recentchanges-toplinks-title' ).replaceWith( toplinksTitle.$element ); + // Move the top links to a designated area so it's near the + // 'saved filters' button and make it collapsible + $( '.mw-recentchanges-toplinks' ) + .addClass( 'mw-rcfilters-ui-ready' ) + .makeCollapsible( { + collapsed: topLinksCookieValue === 'collapsed', + $customTogglers: toplinksTitle.$element + } ) + .on( 'beforeExpand.mw-collapsible', function () { + mw.cookie.set( topLinksCookieName, 'expanded' ); + toplinksTitle.setIndicator( 'up' ); + } ) + .on( 'beforeCollapse.mw-collapsible', function () { + mw.cookie.set( topLinksCookieName, 'collapsed' ); + toplinksTitle.setIndicator( 'down' ); + } ) + .appendTo( '.mw-rcfilters-ui-filterWrapperWidget-top-placeholder' ); + } // end Special:RC + + if ( currentPage === 'Special:Watchlist' ) { + markSeenButton = new mw.rcfilters.ui.MarkSeenButtonWidget( controller, changesListModel ); + $( 'form#mw-watchlist-resetbutton' ).detach(); + filtersWidget.prependToTopRow( markSeenButton ); + } // end Special:WL } }; diff --git a/resources/src/mediawiki.rcfilters/mw.rcfilters.js b/resources/src/mediawiki.rcfilters/mw.rcfilters.js index 7bdc2a2f25..e39be6c4db 100644 --- a/resources/src/mediawiki.rcfilters/mw.rcfilters.js +++ b/resources/src/mediawiki.rcfilters/mw.rcfilters.js @@ -46,7 +46,8 @@ } }, featureFlags: { - liveUpdate: mw.config.get( 'wgStructuredChangeFiltersEnableLiveUpdate' ) || new mw.Uri().query.liveupdate + liveUpdate: mw.config.get( 'wgStructuredChangeFiltersLiveUpdateSupported' ) && + ( mw.config.get( 'wgStructuredChangeFiltersEnableLiveUpdate' ) || new mw.Uri().query.liveupdate ) } }; }( mediaWiki ) ); diff --git a/resources/src/mediawiki.rcfilters/styles/mw.rcfilters.less b/resources/src/mediawiki.rcfilters/styles/mw.rcfilters.less index ef296555d8..d5528e1f51 100644 --- a/resources/src/mediawiki.rcfilters/styles/mw.rcfilters.less +++ b/resources/src/mediawiki.rcfilters/styles/mw.rcfilters.less @@ -3,7 +3,7 @@ // Corrections for the standard special page .client-js { - .rcoptions { + .cloptions { border: 0; } @@ -38,7 +38,7 @@ opacity: 0.5; pointer-events: none; - .rcoptions { + .cloptions { display: none; } } diff --git a/resources/src/mediawiki.rcfilters/styles/mw.rcfilters.ui.HighlightColorPickerWidget.less b/resources/src/mediawiki.rcfilters/styles/mw.rcfilters.ui.HighlightColorPickerWidget.less index 4a7c3f8895..667f528a30 100644 --- a/resources/src/mediawiki.rcfilters/styles/mw.rcfilters.ui.HighlightColorPickerWidget.less +++ b/resources/src/mediawiki.rcfilters/styles/mw.rcfilters.ui.HighlightColorPickerWidget.less @@ -9,6 +9,15 @@ &-buttonSelect { &-color { + // Override OOUI definition from padded popup; the definition + // forces the first-child to be margin-top:0; which overrides + // our definitions below where margin is 0.5em. + // We set up the margin-top as 0.5em for all circles so we get + // a consistent result + &.oo-ui-widget-enabled.oo-ui-optionWidget.oo-ui-buttonElement.oo-ui-buttonElement-frameless.oo-ui-buttonOptionWidget { + margin-top: 0.5em; + } + // Make the rule much more specific to override OOUI .oo-ui-iconElement-icon.oo-ui-icon-check { // Override OOUI icon dimensions diff --git a/resources/src/mediawiki.rcfilters/ui/mw.rcfilters.ui.ChangesListWrapperWidget.js b/resources/src/mediawiki.rcfilters/ui/mw.rcfilters.ui.ChangesListWrapperWidget.js index ba3ca97af2..955e01dd70 100644 --- a/resources/src/mediawiki.rcfilters/ui/mw.rcfilters.ui.ChangesListWrapperWidget.js +++ b/resources/src/mediawiki.rcfilters/ui/mw.rcfilters.ui.ChangesListWrapperWidget.js @@ -48,7 +48,9 @@ // Set up highlight containers this.setupHighlightContainers( this.$element ); - this.setupNewChangesButtonContainer( this.$element ); + if ( mw.rcfilters.featureFlags.liveUpdate ) { + this.setupNewChangesButtonContainer( this.$element ); + } }; /* Initialization */ @@ -301,10 +303,33 @@ } this.filtersViewModel.getHighlightedItems().forEach( function ( filterItem ) { + var $elements = this.$element.find( '.' + filterItem.getCssClass() ); + // Add highlight class to all highlighted list items - this.$element.find( '.' + filterItem.getCssClass() ) + $elements .addClass( 'mw-rcfilters-highlight-color-' + filterItem.getHighlightColor() ); + + $elements.each( function () { + var filterString = $( this ).attr( 'data-highlightedFilters' ) || '', + filters = filterString ? filterString.split( '|' ) : []; + + if ( filters.indexOf( filterItem.getLabel() ) === -1 ) { + filters.push( filterItem.getLabel() ); + } + + $( this ) + .attr( 'data-highlightedFilters', filters.join( '|' ) ); + } ); }.bind( this ) ); + // Apply a title for relevant filters + this.$element.find( '[data-highlightedFilters]' ).each( function () { + var filterString = $( this ).attr( 'data-highlightedFilters' ) || '', + filters = filterString ? filterString.split( '|' ) : []; + + if ( filterString ) { + $( this ).attr( 'title', mw.msg( 'rcfilters-highlighted-filters-list', filters.join( ', ' ) ) ); + } + } ); // Turn on highlights this.$element.addClass( 'mw-rcfilters-ui-changesListWrapperWidget-highlighted' ); @@ -319,6 +344,9 @@ this.$element.find( '.mw-rcfilters-highlight-color-' + color ).removeClass( 'mw-rcfilters-highlight-color-' + color ); }.bind( this ) ); + this.$element.find( '[data-highlightedFilters]' ) + .removeAttr( 'title' ) + .removeAttr( 'data-highlightedFilters' ); // Turn off highlights this.$element.removeClass( 'mw-rcfilters-ui-changesListWrapperWidget-highlighted' ); }; diff --git a/resources/src/mediawiki.rcfilters/ui/mw.rcfilters.ui.FilterWrapperWidget.js b/resources/src/mediawiki.rcfilters/ui/mw.rcfilters.ui.FilterWrapperWidget.js index 8f8ca38a42..c3af7c5bd8 100644 --- a/resources/src/mediawiki.rcfilters/ui/mw.rcfilters.ui.FilterWrapperWidget.js +++ b/resources/src/mediawiki.rcfilters/ui/mw.rcfilters.ui.FilterWrapperWidget.js @@ -17,7 +17,7 @@ mw.rcfilters.ui.FilterWrapperWidget = function MwRcfiltersUiFilterWrapperWidget( controller, model, savedQueriesModel, changesListModel, config ) { - var $top, $topRow, $bottom; + var $top, $bottom; config = config || {}; // Parent @@ -59,7 +59,7 @@ ); // Initialize - $topRow = $( '
' ) + this.$topRow = $( '
' ) .addClass( 'mw-rcfilters-ui-row' ) .append( $( '
' ) @@ -69,7 +69,7 @@ $top = $( '
' ) .addClass( 'mw-rcfilters-ui-filterWrapperWidget-top' ) .addClass( 'mw-rcfilters-ui-table' ) - .append( $topRow ); + .append( this.$topRow ); $bottom = $( '
' ) .addClass( 'mw-rcfilters-ui-filterWrapperWidget-bottom' ) @@ -84,7 +84,7 @@ { $overlay: this.$overlay } ); - $topRow.append( + this.$topRow.append( $( '
' ) .addClass( 'mw-rcfilters-ui-cell' ) .addClass( 'mw-rcfilters-ui-filterWrapperWidget-top-savedLinks' ) @@ -108,4 +108,19 @@ OO.inheritClass( mw.rcfilters.ui.FilterWrapperWidget, OO.ui.Widget ); OO.mixinClass( mw.rcfilters.ui.FilterWrapperWidget, OO.ui.mixin.PendingElement ); + + /* Methods */ + + /** + * Add a widget at the beginning of the top row + * + * @param {OO.ui.Widget} widget Any widget + */ + mw.rcfilters.ui.FilterWrapperWidget.prototype.prependToTopRow = function ( widget ) { + this.$topRow.prepend( + widget.$element + .addClass( 'mw-rcfilters-ui-cell' ) + ); + }; + }( mediaWiki ) ); diff --git a/resources/src/mediawiki.rcfilters/ui/mw.rcfilters.ui.FormWrapperWidget.js b/resources/src/mediawiki.rcfilters/ui/mw.rcfilters.ui.FormWrapperWidget.js index 82992fb847..5a64edd636 100644 --- a/resources/src/mediawiki.rcfilters/ui/mw.rcfilters.ui.FormWrapperWidget.js +++ b/resources/src/mediawiki.rcfilters/ui/mw.rcfilters.ui.FormWrapperWidget.js @@ -117,9 +117,7 @@ * Clean up the old-style show/hide that we have implemented in the filter list */ mw.rcfilters.ui.FormWrapperWidget.prototype.cleanUpFieldset = function () { - var $namespaceSelect = this.$element.find( '#namespace' ); - - this.$element.find( '.rcshowhideoption[data-feature-in-structured-ui=1]' ).each( function () { + this.$element.find( '.clshowhideoption[data-feature-in-structured-ui=1]' ).each( function () { // HACK: Remove the text node after the span. // If there isn't one, we're at the end, so remove the text node before the span. // This would be unnecessary if we added separators with CSS. @@ -133,11 +131,11 @@ } ); // Hide namespaces and tags - $namespaceSelect.closest( 'tr' ).detach(); + this.$element.find( '.namespaceForm' ).detach(); this.$element.find( '.mw-tagfilter-label' ).closest( 'tr' ).detach(); - // Hide limit and days - this.$element.find( '.rclinks' ).detach(); + // misc: limit, days, watchlist info msg + this.$element.find( '.rclinks, .cldays, .wlinfo' ).detach(); if ( !this.$element.find( '.mw-recentchanges-table tr' ).length ) { this.$element.find( '.mw-recentchanges-table' ).detach(); @@ -151,13 +149,17 @@ this.$element.find( 'br' ).detach(); } + if ( this.$element.find( '.cloption' ).text().trim() === '' ) { + this.$element.find( '.cloption-submit' ).detach(); + } + if ( mw.rcfilters.featureFlags.liveUpdate ) { this.$element.find( - 'legend, .rclistfrom, .rcnotefrom, .rcoptions-listfromreset' + '.rclistfrom, .rcnotefrom, .rcoptions-listfromreset' ).detach(); } - if ( this.$element.text().trim() === '' ) { + if ( this.$element.text().trim() === this.$element.find( 'legend' ).text() ) { this.$element.detach(); } }; diff --git a/resources/src/mediawiki.rcfilters/ui/mw.rcfilters.ui.MarkSeenButtonWidget.js b/resources/src/mediawiki.rcfilters/ui/mw.rcfilters.ui.MarkSeenButtonWidget.js new file mode 100644 index 0000000000..073cd1ea7a --- /dev/null +++ b/resources/src/mediawiki.rcfilters/ui/mw.rcfilters.ui.MarkSeenButtonWidget.js @@ -0,0 +1,55 @@ +( function ( mw ) { + /** + * Button for marking all changes as seen on the Watchlist + * + * @extends OO.ui.ButtonWidget + * + * @constructor + * @param {mw.rcfilters.Controller} controller + * @param {mw.rcfilters.dm.ChangesListViewModel} model Changes list view model + * @param {Object} [config] Configuration object + */ + mw.rcfilters.ui.MarkSeenButtonWidget = function MwRcfiltersUiMarkSeenButtonWidget( controller, model, config ) { + config = config || {}; + + // Parent + mw.rcfilters.ui.MarkSeenButtonWidget.parent.call( this, $.extend( { + label: mw.message( 'rcfilters-watchlist-markSeen-button' ).text(), + icon: 'doubleCheck' + }, config ) ); + + this.controller = controller; + this.model = model; + + // Events + this.connect( this, { click: 'onClick' } ); + this.model.connect( this, { update: 'onModelUpdate' } ); + + this.$element.addClass( 'mw-rcfilters-ui-markSeenButtonWidget' ); + + this.onModelUpdate(); + }; + + /* Initialization */ + + OO.inheritClass( mw.rcfilters.ui.MarkSeenButtonWidget, OO.ui.ButtonWidget ); + + /* Methods */ + + /** + * Respond to the button being clicked + */ + mw.rcfilters.ui.MarkSeenButtonWidget.prototype.onClick = function () { + this.controller.markAllChangesAsSeen(); + // assume there's no more unseen changes until the next model update + this.setDisabled( true ); + }; + + /** + * Respond to the model being updated with new changes + */ + mw.rcfilters.ui.MarkSeenButtonWidget.prototype.onModelUpdate = function () { + this.setDisabled( !this.model.hasUnseenWatchedChanges() ); + }; + +}( mediaWiki ) ); diff --git a/resources/src/mediawiki.rcfilters/ui/mw.rcfilters.ui.TagItemWidget.js b/resources/src/mediawiki.rcfilters/ui/mw.rcfilters.ui.TagItemWidget.js index bf75149706..81889b26ca 100644 --- a/resources/src/mediawiki.rcfilters/ui/mw.rcfilters.ui.TagItemWidget.js +++ b/resources/src/mediawiki.rcfilters/ui/mw.rcfilters.ui.TagItemWidget.js @@ -48,6 +48,9 @@ this.$highlight = $( '
' ) .addClass( 'mw-rcfilters-ui-tagItemWidget-highlight' ); + // Add title attribute with the item label to 'x' button + this.closeButton.setTitle( mw.msg( 'rcfilters-tag-remove', this.model.getLabel() ) ); + // Events this.model.connect( this, { update: 'onModelUpdate' } ); diff --git a/tests/parser/ParserTestRunner.php b/tests/parser/ParserTestRunner.php index 1d53344203..97c3c05b43 100644 --- a/tests/parser/ParserTestRunner.php +++ b/tests/parser/ParserTestRunner.php @@ -527,7 +527,7 @@ class ParserTestRunner { * Determine whether a particular setup function has been run * * @param string $funcName - * @return boolean + * @return bool */ public function isSetupDone( $funcName ) { return isset( $this->setupDone[$funcName] ) ? $this->setupDone[$funcName] : false; diff --git a/tests/phpunit/includes/libs/objectcache/WANObjectCacheTest.php b/tests/phpunit/includes/libs/objectcache/WANObjectCacheTest.php index 58a6d38167..881ace272f 100644 --- a/tests/phpunit/includes/libs/objectcache/WANObjectCacheTest.php +++ b/tests/phpunit/includes/libs/objectcache/WANObjectCacheTest.php @@ -28,7 +28,7 @@ class WANObjectCacheTest extends PHPUnit_Framework_TestCase { * @covers WANObjectCache::get() * @covers WANObjectCache::makeKey() * @param mixed $value - * @param integer $ttl + * @param int $ttl */ public function testSetAndGet( $value, $ttl ) { $curTTL = null; diff --git a/tests/qunit/QUnitTestResources.php b/tests/qunit/QUnitTestResources.php index ee3cd5bbfb..7367560e90 100644 --- a/tests/qunit/QUnitTestResources.php +++ b/tests/qunit/QUnitTestResources.php @@ -56,7 +56,6 @@ return [ 'tests/qunit/suites/resources/jquery/jquery.highlightText.test.js', 'tests/qunit/suites/resources/jquery/jquery.localize.test.js', 'tests/qunit/suites/resources/jquery/jquery.makeCollapsible.test.js', - 'tests/qunit/suites/resources/jquery/jquery.mwExtension.test.js', 'tests/qunit/suites/resources/jquery/jquery.tabIndex.test.js', 'tests/qunit/suites/resources/jquery/jquery.tablesorter.test.js', 'tests/qunit/suites/resources/jquery/jquery.tablesorter.parsers.test.js', @@ -112,7 +111,6 @@ return [ 'jquery.highlightText', 'jquery.localize', 'jquery.makeCollapsible', - 'jquery.mwExtension', 'jquery.tabIndex', 'jquery.tablesorter', 'jquery.textSelection', diff --git a/tests/qunit/suites/resources/jquery/jquery.mwExtension.test.js b/tests/qunit/suites/resources/jquery/jquery.mwExtension.test.js deleted file mode 100644 index aeda51651f..0000000000 --- a/tests/qunit/suites/resources/jquery/jquery.mwExtension.test.js +++ /dev/null @@ -1,64 +0,0 @@ -( function ( $ ) { - QUnit.module( 'jquery.mwExtension', QUnit.newMwEnvironment( { - // This entire module is deprecated. - // Surpress deprecation warnings in test output. - setup: function () { - this.suppressWarnings(); - }, - teardown: function () { - this.restoreWarnings(); - } - } ) ); - - QUnit.test( 'String functions', function ( assert ) { - assert.equal( $.trimLeft( ' foo bar ' ), 'foo bar ', 'trimLeft' ); - assert.equal( $.trimRight( ' foo bar ' ), ' foo bar', 'trimRight' ); - assert.equal( $.ucFirst( 'foo' ), 'Foo', 'ucFirst' ); - - assert.equal( $.escapeRE( '