Системные сообщения

Перейти к: навигация, поиск

Это список системных сообщений, доступных в пространстве имён «MediaWiki». Если вы хотите внести вклад в общую локализацию MediaWiki, пожалуйста, посетите страницу описания локализации и проект translatewiki.net.

Фильтр
Фильтр по статусу изменения:    
Первая страница
Последняя страница
Сообщение Текст по умолчанию
Текущий текст
api-help-authmanager-general-usage (обсуждение) (Перевести) The general procedure to use this module is: # Fetch the fields available from <kbd>[[Special:ApiHelp/query+authmanagerinfo|action=query&meta=authmanagerinfo]]</kbd> with <kbd>amirequestsfor=$4</kbd>, and a <kbd>$5</kbd> token from <kbd>[[Special:ApiHelp/query+tokens|action=query&meta=tokens]]</kbd>. # Present the fields to the user, and obtain their submission. # Post to this module, supplying <var>$1returnurl</var> and any relevant fields. # Check the <samp>status</samp> in the response. #* If you received <samp>PASS</samp> or <samp>FAIL</samp>, you're done. The operation either succeeded or it didn't. #* If you received <samp>UI</samp>, present the new fields to the user and obtain their submission. Then post to this module with <var>$1continue</var> and the relevant fields set, and repeat step 4. #* If you received <samp>REDIRECT</samp>, direct the user to the <samp>redirecttarget</samp> and wait for the return to <var>$1returnurl</var>. Then post to this module with <var>$1continue</var> and any fields passed to the return URL, and repeat step 4. #* If you received <samp>RESTART</samp>, that means the authentication worked but we don't have a linked user account. You might treat this as <samp>UI</samp> or as <samp>FAIL</samp>.
api-help-authmanagerhelper-additional-params (обсуждение) (Перевести) This module accepts additional parameters depending on the available authentication requests. Use <kbd>[[Special:ApiHelp/query+authmanagerinfo|action=query&meta=authmanagerinfo]]</kbd> with <kbd>amirequestsfor=$1</kbd> (or a previous response from this module, if applicable) to determine the requests available and the fields that they use.
api-help-authmanagerhelper-continue (обсуждение) (Перевести) This request is a continuation after an earlier <samp>UI</samp> or <samp>REDIRECT</samp> response. Either this or <var>$1returnurl</var> is required.
api-help-authmanagerhelper-mergerequestfields (обсуждение) (Перевести) Merge field information for all authentication requests into one array.
api-help-authmanagerhelper-messageformat (обсуждение) (Перевести) Format to use for returning messages.
api-help-authmanagerhelper-preservestate (обсуждение) (Перевести) Preserve state from a previous failed login attempt, if possible.
api-help-authmanagerhelper-request (обсуждение) (Перевести) Use this authentication request, by the <samp>id</samp> returned from <kbd>[[Special:ApiHelp/query+authmanagerinfo|action=query&meta=authmanagerinfo]]</kbd> with <kbd>amirequestsfor=$1</kbd>.
api-help-authmanagerhelper-requests (обсуждение) (Перевести) Only use these authentication requests, by the <samp>id</samp> returned from <kbd>[[Special:ApiHelp/query+authmanagerinfo|action=query&meta=authmanagerinfo]]</kbd> with <kbd>amirequestsfor=$1</kbd> or from a previous response from this module.
api-help-authmanagerhelper-returnurl (обсуждение) (Перевести) Return URL for third-party authentication flows, must be absolute. Either this or <var>$1continue</var> is required. Upon receiving a <samp>REDIRECT</samp> response, you will typically open a browser or web view to the specified <samp>redirecttarget</samp> URL for a third-party authentication flow. When that completes, the third party will send the browser or web view to this URL. You should extract any query or POST parameters from the URL and pass them as a <var>$1continue</var> request to this API module.
api-help-datatypes (обсуждение) (Перевести) Input to MediaWiki should be NFC-normalized UTF-8. MediaWiki may attempt to convert other input, but this may cause some operations (such as [[Special:ApiHelp/edit|edits]] with MD5 checks) to fail. Some parameter types in API requests need further explanation: ;boolean :Boolean parameters work like HTML checkboxes: if the parameter is specified, regardless of value, it is considered true. For a false value, omit the parameter entirely. ;timestamp :Timestamps may be specified in several formats. ISO 8601 date and time is recommended. All times are in UTC, any included timezone is ignored. :* ISO 8601 date and time, <kbd><var>2001</var>-<var>01</var>-<var>15</var>T<var>14</var>:<var>56</var>:<var>00</var>Z</kbd> (punctuation and <kbd>Z</kbd> are optional) :* ISO 8601 date and time with (ignored) fractional seconds, <kbd><var>2001</var>-<var>01</var>-<var>15</var>T<var>14</var>:<var>56</var>:<var>00</var>.<var>00001</var>Z</kbd> (dashes, colons, and <kbd>Z</kbd> are optional) :* MediaWiki format, <kbd><var>2001</var><var>01</var><var>15</var><var>14</var><var>56</var><var>00</var></kbd> :* Generic numeric format, <kbd><var>2001</var>-<var>01</var>-<var>15</var> <var>14</var>:<var>56</var>:<var>00</var></kbd> (optional timezone of <kbd>GMT</kbd>, <kbd>+<var>##</var></kbd>, or <kbd>-<var>##</var></kbd> is ignored) :* EXIF format, <kbd><var>2001</var>:<var>01</var>:<var>15</var> <var>14</var>:<var>56</var>:<var>00</var></kbd> :*RFC 2822 format (timezone may be omitted), <kbd><var>Mon</var>, <var>15</var> <var>Jan</var> <var>2001</var> <var>14</var>:<var>56</var>:<var>00</var></kbd> :* RFC 850 format (timezone may be omitted), <kbd><var>Monday</var>, <var>15</var>-<var>Jan</var>-<var>2001</var> <var>14</var>:<var>56</var>:<var>00</var></kbd> :* C ctime format, <kbd><var>Mon</var> <var>Jan</var> <var>15</var> <var>14</var>:<var>56</var>:<var>00</var> <var>2001</var></kbd> :* Seconds since 1970-01-01T00:00:00Z as a 1 to 13 digit integer (excluding <kbd>0</kbd>) :* The string <kbd>now</kbd> ;alternative multiple-value separator :Parameters that take multiple values are normally submitted with the values separated using the pipe character, e.g. <kbd>param=value1|value2</kbd> or <kbd>param=value1%7Cvalue2</kbd>. If a value must contain the pipe character, use U+001F (Unit Separator) as the separator ''and'' prefix the value with U+001F, e.g. <kbd>param=%1Fvalue1%1Fvalue2</kbd>.
api-help-datatypes-header (обсуждение) (Перевести) Типы данных
api-help-examples (обсуждение) (Перевести) Пример{{PLURAL:$1||ы}}:
api-help-fallback-description (обсуждение) (Перевести) $1
api-help-fallback-example (обсуждение) (Перевести) $1
api-help-fallback-parameter (обсуждение) (Перевести) $1
api-help-flag-deprecated (обсуждение) (Перевести) Этот модуль устарел.
api-help-flag-generator (обсуждение) (Перевести) Этот модуль может быть использован в качестве генератора.
api-help-flag-internal (обсуждение) (Перевести) <strong>This module is internal or unstable.</strong> Its operation may change without notice.
api-help-flag-mustbeposted (обсуждение) (Перевести) Этот модуль принимает только Post-запросы.
api-help-flag-readrights (обсуждение) (Перевести) Этот модуль требует прав на чтение.
api-help-flag-writerights (обсуждение) (Перевести) Этот модуль требует права на запись.
api-help-flags (обсуждение) (Перевести)  
api-help-help-urls (обсуждение) (Перевести)  
api-help-lead (обсуждение) (Перевести) This is an auto-generated MediaWiki API documentation page. Documentation and examples: https://www.mediawiki.org/wiki/API
api-help-license (обсуждение) (Перевести) Лицензия: [[$1|$2]]
api-help-license-noname (обсуждение) (Перевести) Лицензия: [[$1|See link]]
api-help-license-unknown (обсуждение) (Перевести) Лицензия: <span class="apihelp-unknown">unknown</span>
api-help-main-header (обсуждение) (Перевести) Главный модуль
api-help-open-in-apisandbox (обсуждение) (Перевести) <small>[open in sandbox]</small>
api-help-param-continue (обсуждение) (Перевести) Когда доступно больше результатов, использовать этот чтобы продолжить.
api-help-param-default (обсуждение) (Перевести) По умолчанию: $1
api-help-param-default-empty (обсуждение) (Перевести) По умолчанию: <span class="apihelp-empty">(пусто)</span>
api-help-param-deprecated (обсуждение) (Перевести) Устаревший.
api-help-param-direction (обсуждение) (Перевести) In which direction to enumerate: ;newer:List oldest first. Note: $1start has to be before $1end. ;older:List newest first (default). Note: $1start has to be later than $1end.
api-help-param-disabled-in-miser-mode (обсуждение) (Перевести) Disabled due to [[mw:Manual:$wgMiserMode|miser mode]].
api-help-param-integer-max (обсуждение) (Перевести) {{PLURAL:$1|1=value|2=values}} должен быть не больше чем $3.
api-help-param-integer-min (обсуждение) (Перевести) {{PLURAL:$1|1=value|2=values}} должен быть не меньше чем $2.
api-help-param-integer-minmax (обсуждение) (Перевести) {{PLURAL:$1|1=value|2=values}} должен быть между $2 и $3.
api-help-param-limit (обсуждение) (Перевести) Не более чем $1 разрешено.
api-help-param-limit2 (обсуждение) (Перевести) Разрешено не более чем $1 ($2 для ботов).
api-help-param-limited-in-miser-mode (обсуждение) (Перевести) <strong>Note:</strong> Due to [[mw:Manual:$wgMiserMode|miser mode]], using this may result in fewer than <var>$1limit</var> results returned before continuing; in extreme cases, zero results may be returned.
api-help-param-list (обсуждение) (Перевести) {{PLURAL:$1|1=Одно из следующих значений|2=Значения (разделённые с помощью <kbd>{{!}}</kbd> или [[Special:ApiHelp/main#main/datatypes|альтернативного варианта]])}}: $2
api-help-param-list-can-be-empty (обсуждение) (Перевести) {{PLURAL:$1|0=Должен быть пустым|может быть пустым, или $2}}
api-help-param-multi-max (обсуждение) (Перевести) Максимальное количество значений должно быть {{PLURAL:$1|$1}} ({{PLURAL:$2|$2}} для ботов).
api-help-param-multi-separate (обсуждение) (Перевести) Разделяйте значения с помощью <kbd>|</kbd> или [[Special:ApiHelp/main#main/datatypes|альтернативного варианта]].
api-help-param-no-description (обсуждение) (Перевести) <span class="apihelp-empty">(описание отсутствует)</span>
api-help-param-required (обсуждение) (Перевести) Это обязательный параметр.
api-help-param-token (обсуждение) (Перевести) A "$1" token retrieved from [[Special:ApiHelp/query+tokens|action=query&meta=tokens]]
api-help-param-token-webui (обсуждение) (Перевести) For compatibility, the token used in the web UI is also accepted.
api-help-param-type-boolean (обсуждение) (Перевести) Тип: двоичный ([[Special:ApiHelp/main#main/datatypes|details]])
Первая страница
Последняя страница