MediaWiki REL1_33
tests/parser/preprocess/All_system_messages.txt File Reference

Functions

See &</td >< td > &Fill in a specific reason below (for example, citing particular pages that were vandalized).</td >< td >
 
page as if applicable</td >< td > ve followed a link to a page that doesn &To create the start typing in the box below (see the &#91;&#91;Wiktionary:Help &#124;help page]] for more info). If you are here by mistake
 
could not be made into a sysop (Did you enter the name correctly?) &lt
 
which are not or by specifying more than one search term (only pages containing all of the search terms will appear in the result).</td >< td >
 

Variables

User $1
 
$3 __pad0__
 
$3 __pad1__
 
Attention __pad2__
 
WARNING __pad3__
 
 __pad4__
 
optional __pad5__
 
optional __pad6__
 
If this is not the you may have found a bug in the software Please report this to an administrator
 
accesskey contributions & amp
 
If this is not the case
 
to move a page</td >< td > &*You are moving the page across *A non empty talk page already exists under the new or *You uncheck the box below In those cases
 
in the sidebar</td >< td > font color =red&gt
 
matched $2 page titles and the text of $3 pages</td >< td > t write to or create math output directory</td >< td > t write to or create math temp directory</td >< td > check for correct installation of dvips
 
matched $2 page titles and the text of $3 pages</td >< td > t write to or create math output directory</td >< td > t write to or create math temp directory</td >< td > check for correct installation of gs
 
 gt
 
shown</td >< td > a href =&quot
 
which are not indexed
 
Your real if you choose to provide it
 
If you want to remove the page from your watchlist later
 
matched $2 page titles and the text of $3 pages</td >< td > t write to or create math output directory</td >< td > t write to or create math temp directory</td >< td > check for correct installation of latex
 
 lt
 
address of the mail
 
to move a page</td >< td > &*You are moving the page across *A non empty talk page already exists under the new or *You uncheck the box below In those you will have to move or merge the page manually if desired</td >< td > be sure to &You are responsible for making sure that links continue to point where they are supposed to go Note that the page will &a page at the new unless it is empty or a redirect and has no past edit history This means that you can rename a page back to where it was just renamed from if you make a mistake
 
Your real name
 
to move a page</td >< td > &*You are moving the page across namespaces
 
 nbsp
 
target page
 
</td >< td > $1 &</td >< td > $1 & quot
 
This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second redirect
 
</td >< td > this can then be imported into another wiki running MediaWiki software
 
wiki Special
 
This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second as well as the first line of the second redirect text
 
has been added to your &Future changes to this page and its associated Talk page will be listed there
 
to move a page</td >< td > &*You are moving the page across *A non empty talk page already exists under the new or *You uncheck the box below In those you will have to move or merge the page manually if desired</td >< td > be sure to &You are responsible for making sure that links continue to point where they are supposed to go Note that the page will &a page at the new title
 
</td >< td > this can then be imported into another wiki running MediaWiki transformed
 
page as well
 
</td >< td > &</td >< td > t want your writing to be edited mercilessly and redistributed at will
 
</td >< td > &</td >< td > t want your writing to be edited mercilessly and redistributed at then don &You are also promising us that you wrote this yourself
 

Function Documentation

◆ below() [1/2]

See &</td >< td > &Fill in a specific reason below ( for  example,
citing particular pages that were  vandalized 
)

Definition at line 649 of file All_system_messages.txt.

References below(), and in.

Referenced by below(), below(), EditPage::getPreviewText(), and Linker::normalizeSubpageLink().

◆ below() [2/2]

page as if applicable</td >< td > ve followed a link to a page that doesn &To create the start typing in the box below ( see the &#91;&#91;Wiktionary:Help &#124;help page]] for more  info)
private

References below(), and in.

◆ sysop()

could not be made into a sysop ( Did you enter the name correctly?  ) &
private

◆ term()

Variable Documentation

◆ $1

Please log in again after you receive it</td >< td > s a saved copy from $1
Initial value:
{{int:feea022e}}
</td></tr><tr><td>
</td><td>
The following data is cached and may not be completely up to date:
</td><td>
{{int:d89b33a4}}
</td></tr><tr><td>
</td><td>
Sorry! This feature has been temporarily disabled
because it slows the database down to the point that no one can use
the wiki.
</td><td>
{{int:7c3d6ba1}}
</td></tr><tr><td>
</td><td>
Here&#39
Apache License January http
and(b) You must cause any modified files to carry prominent notices stating that You changed the files
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
=Architecture==Two class hierarchies are used to provide the functionality associated with the different content models:*Content interface(and AbstractContent base class) define functionality that acts on the concrete content of a page, and *ContentHandler base class provides functionality specific to a content model, but not acting on concrete content. The most important function of ContentHandler is to act as a factory for the appropriate implementation of Content. These Content objects are to be used by MediaWiki everywhere, instead of passing page content around as text. All manipulation and analysis of page content must be done via the appropriate methods of the Content object. For each content model, a subclass of ContentHandler has to be registered with $wgContentHandlers. The ContentHandler object for a given content model can be obtained using ContentHandler::getForModelID($id). Also Title, WikiPage and Revision now have getContentHandler() methods for convenience. ContentHandler objects are singletons that provide functionality specific to the content type, but not directly acting on the content of some page. ContentHandler::makeEmptyContent() and ContentHandler::unserializeContent() can be used to create a Content object of the appropriate type. However, it is recommended to instead use WikiPage::getContent() resp. Revision::getContent() to get a page 's content as a Content object. These two methods should be the ONLY way in which page content is accessed. Another important function of ContentHandler objects is to define custom action handlers for a content model, see ContentHandler::getActionOverrides(). This is similar to what WikiPage::getActionOverrides() was already doing.==Serialization==With the ContentHandler facility, page content no longer has to be text based. Objects implementing the Content interface are used to represent and handle the content internally. For storage and data exchange, each content model supports at least one serialization format via ContentHandler::serializeContent($content). The list of supported formats for a given content model can be accessed using ContentHandler::getSupportedFormats(). Content serialization formats are identified using MIME type like strings. The following formats are built in:*text/x-wiki - wikitext *text/javascript - for js pages *text/css - for css pages *text/plain - for future use, e.g. with plain text messages. *text/html - for future use, e.g. with plain html messages. *application/vnd.php.serialized - for future use with the api and for extensions *application/json - for future use with the api, and for use by extensions *application/xml - for future use with the api, and for use by extensions In PHP, use the corresponding CONTENT_FORMAT_XXX constant. Note that when using the API to access page content, especially action=edit, action=parse and action=query &prop=revisions, the model and format of the content should always be handled explicitly. Without that information, interpretation of the provided content is not reliable. The same applies to XML dumps generated via maintenance/dumpBackup.php or Special:Export. Also note that the API will provide encapsulated, serialized content - so if the API was called with format=json, and contentformat is also json(or rather, application/json), the page content is represented as a string containing an escaped json structure. Extensions that use JSON to serialize some types of page content may provide specialized API modules that allow access to that content in a more natural form.==Compatibility==The ContentHandler facility is introduced in a way that should allow all existing code to keep functioning at least for pages that contain wikitext or other text based content. However, a number of functions and hooks have been deprecated in favor of new versions that are aware of the page 's content model, and will now generate warnings when used. Most importantly, the following functions have been deprecated:*Revisions::getText() is deprecated in favor Revisions::getContent() *WikiPage::getText() is deprecated in favor WikiPage::getContent() Also, the old Article::getContent()(which returns text) is superceded by Article::getContentObject(). However, both methods should be avoided since they do not provide clean access to the page 's actual content. For instance, they may return a system message for non-existing pages. Use WikiPage::getContent() instead. Code that relies on a textual representation of the page content should eventually be rewritten. However, ContentHandler::getContentText() provides a stop-gap that can be used to get text for a page. Its behavior is controlled by $wgContentHandlerTextFallback it
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global then executing the whole list after the page is displayed We don t do anything smart like collating updates to the same table or such because the list is almost always going to have just one item on if that
Definition deferred.txt:13
Prior to maintenance scripts were a hodgepodge of code that had no cohesion or formal method of action Beginning maintenance scripts have been cleaned up to use a unified class Directory structure How to run a script How to write your own DIRECTORY STRUCTURE The maintenance directory of a MediaWiki installation contains several all of which have unique purposes HOW TO RUN A SCRIPT Ridiculously just call php someScript php that s in the top level maintenance directory if not default wiki
Prior to maintenance scripts were a hodgepodge of code that had no cohesion or formal method of action Beginning maintenance scripts have been cleaned up to use a unified class Directory structure How to run a script How to write your own DIRECTORY STRUCTURE The maintenance directory of a MediaWiki installation contains several all of which have unique purposes HOW TO RUN A SCRIPT Ridiculously just call php someScript php that s in the top level maintenance directory if not default do this many per batch HOW TO WRITE YOUR OWN Make a file in the maintenance directory called myScript php or something In write the following
This document provides an overview of the usage of PageUpdater and that is
This document describes the state of Postgres support in and is fairly well maintained The main code is very well while extensions are very hit and miss it is probably the most supported database after MySQL Much of the work in making MediaWiki database agnostic came about through the work of creating Postgres but without copying over all the usage comments General notes on the but these can almost always be programmed around *Although Postgres has a true BOOLEAN boolean columns are always mapped to as the code does not always treat the column as a and VARBINARY columns should simply be TEXT The only exception is when VARBINARY is used to store true binary data
Definition postgres.txt:37

Definition at line 425 of file All_system_messages.txt.

Referenced by CheckLanguageCLI::help(), PathRouterTest::provideParse(), and LogEventsList::showLogExtract().

◆ __pad0__

$3 __pad0__

Definition at line 1079 of file All_system_messages.txt.

◆ __pad1__

$3 __pad1__

Definition at line 1090 of file All_system_messages.txt.

◆ __pad2__

Attention __pad2__

Definition at line 1266 of file All_system_messages.txt.

◆ __pad3__

WARNING __pad3__

Definition at line 1323 of file All_system_messages.txt.

◆ __pad4__

__pad4__
private

Definition at line 3003 of file All_system_messages.txt.

◆ __pad5__

optional __pad5__
private

Definition at line 3370 of file All_system_messages.txt.

◆ __pad6__

optional __pad6__
private

Definition at line 3371 of file All_system_messages.txt.

◆ administrator

If this is not the you may have found a bug in the software Please report this to an administrator
private

Definition at line 2596 of file All_system_messages.txt.

◆ amp

$2 List redirects & amp

Definition at line 83 of file All_system_messages.txt.

◆ case

If this is not the case
private

Definition at line 2595 of file All_system_messages.txt.

◆ cases

to move a page</td><td> & * You are moving the page across * A non empty talk page already exists under the new or* You uncheck the box below In those cases
private

Definition at line 2694 of file All_system_messages.txt.

◆ color

in the sidebar</td><td> font color =red&gt

◆ dvips

matched $2 page titles and the text of $3 pages</td><td> t write to or create math output directory</td><td> t write to or create math temp directory</td><td> check for correct installation of dvips
private

Definition at line 2477 of file All_system_messages.txt.

◆ gs

matched $2 page titles and the text of $3 pages</td><td> t write to or create math output directory</td><td> t write to or create math temp directory</td><td> check for correct installation of gs
private

Definition at line 2477 of file All_system_messages.txt.

◆ gt

a & gt

Definition at line 83 of file All_system_messages.txt.

◆ href

◆ indexed

which are not indexed
private

Definition at line 3005 of file All_system_messages.txt.

◆ it

Your real if you choose to provide it

Definition at line 1355 of file All_system_messages.txt.

◆ later

If you want to remove the page from your watchlist later

Definition at line 361 of file All_system_messages.txt.

Referenced by Parser::replaceInternalLinks2().

◆ latex

matched $2 page titles and the text of $3 pages</td><td> t write to or create math output directory</td><td> t write to or create math temp directory</td><td> check for correct installation of latex
private
Initial value:
{{int:f83fe947}}
</td></tr><tr><td>
</td><td>
Failed to parse
</td><td>
{{int:f8cf40ba}}
</td></tr><tr><td>
</td><td>
PNG conversion failed
This document describes the state of Postgres support in and is fairly well maintained The main code is very well while extensions are very hit and miss it is probably the most supported database after MySQL Much of the work in making MediaWiki database agnostic came about through the work of creating Postgres but without copying over all the usage comments General notes on the conversion
Definition postgres.txt:27

Definition at line 2477 of file All_system_messages.txt.

◆ lt

logged in & lt

Definition at line 83 of file All_system_messages.txt.

◆ mail

address of the mail

◆ mistake

to move a page</td><td> & * You are moving the page across * A non empty talk page already exists under the new or* You uncheck the box below In those you will have to move or merge the page manually if desired</td><td> be sure to& You are responsible for making sure that links continue to point where they are supposed to go Note that the page will& a page at the new unless it is empty or a redirect and has no past edit history This means that you can rename a page back to where it was just renamed from if you make a mistake
private

Definition at line 2712 of file All_system_messages.txt.

◆ name

to move a page</td><td> & * You are moving the page across * A non empty talk page already exists under the new name

Definition at line 1355 of file All_system_messages.txt.

◆ namespaces

to move a page</td><td> & * You are moving the page across namespaces
private

◆ nbsp

& nbsp
private

Definition at line 3356 of file All_system_messages.txt.

◆ page

page as if applicable</td >< td > ve followed a link to a page that doesn &To create the page

Definition at line 1267 of file All_system_messages.txt.

Referenced by DumpBackup::__construct(), TextPassDumper::__construct(), ThumbnailImage::__construct(), CleanupEmptyCategories::__construct(), CleanupInvalidDbKeys::__construct(), UpdateCollation::__construct(), EditPage::__construct(), Action::__construct(), LinksDeletionUpdate::__construct(), PoolWorkArticleView::__construct(), PHPVersionCheck::checkRequiredPHPVersion(), CleanupEmptyCategories::doDBUpdates(), PoolWorkArticleView::doWork(), UpdateLogging::execute(), PoolWorkArticleView::fallback(), HistoryAction::fetchRevisions(), PoolWorkArticleView::getCachedWork(), CachedAction::getCacheKey(), EditPage::getContentObject(), Action::getContext(), CreditsAction::getContributors(), InfoAction::getContributors(), CreditsAction::getCredits(), EditPage::getCurrentContent(), MediaTransformOutput::getDescLinkAttribs(), UploadBase::getExistsWarning(), FormAction::getForm(), RevertAction::getFormFields(), SearchUpdate::getLatestPage(), User::getNewtalk(), RawAction::getOldId(), EditPage::getPreviewParserOptions(), ImportTest::getRedirectXML(), Action::getTitle(), ImportTest::getUnknownTagsXML(), SpecialContributions::getUserLinks(), RollbackAction::handleRollbackRequest(), CheckLanguageCLI::help(), McrRestoreAction::initFromParameters(), McrUndoAction::initFromParameters(), EditPage::initialiseForm(), EditPage::internalAttemptSave(), Linker::normalizeSubpageLink(), McrUndoAction::onSubmit(), PurgeAction::onSubmit(), RevertAction::onSubmit(), RevertAction::onSuccess(), CreditsAction::onView(), HistoryAction::onView(), InfoAction::onView(), RawAction::onView(), InfoAction::pageInfo(), ApiEditPageTest::provideEditAppend(), ParserOutputTest::provideGetText(), Parser::replaceInternalLinks2(), DjVuImage::retrieveMetaData(), EditPage::setPostEditCookie(), SpecialMIMESearchTest::setUp(), DeleteAction::show(), ProtectAction::show(), RenderAction::show(), UnprotectAction::show(), ViewAction::show(), EditPage::showDiff(), EditPage::showEditForm(), MovePageForm::showForm(), EditPage::showHeader(), McrUndoAction::showPreview(), SpecialMIMESearchTest::testMimeFiltering(), SideBarTest::testTrickyPipe(), ImportTest::testUnknownUserHandling(), DumpLatestFilter::writeClosePage(), and DumpLatestFilter::writeOpenPage().

◆ quot

optional and it can be used to send you a new password if you forget it</td >< td > $1 & quot
Initial value:
{{int:d4dce921}}
</td></tr><tr><td>
</td><td>
Password sent.
</td><td>
{{int:9e6cd678}}
</td></tr><tr><td>
</td><td>
</td><td>
{{int:37186ec6}}
</td></tr><tr><td>
</td><td>
Added to watchlist
</td><td>
{{int:2bacba53}}
</td></tr><tr><td>
</td><td>
The page &quot
</td >< td > $1 &</td >< td > $1 & quot
Actions are things which can be done to pages (edit, delete, rollback, etc).
Definition Action.php:39
Represents a password hash for use in authentication.
Definition Password.php:61
Returning false makes less sense for events where the action is complete
Definition hooks.txt:197

Definition at line 356 of file All_system_messages.txt.

◆ redirect

This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second redirect

◆ software

</td><td> this can then be imported into another wiki running MediaWiki software
Initial value:
{{int:b7845dfb}}
</td></tr><tr><td>
</td><td>
Export pages
</td><td>
{{int:f3e4fadb}}
</td></tr><tr><td>
</td><td>
Include only the current revision, not the full history
</td><td>
{{int:b68aeee1}}
</td></tr><tr><td>
</td><td>
You can export the text and editing history of a particular
page or set of pages wrapped in some XML
This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second as well as the first line of the second redirect text
The ContentHandler facility adds support for arbitrary content types on wiki pages
globals txt Globals are evil The original MediaWiki code relied on globals for processing context far too often MediaWiki development since then has been a story of slowly moving context out of global variables and into objects Storing processing context in object member variables allows those objects to be reused in a much more flexible way Consider the elegance of
database rows
Definition globals.txt:10
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc next in line in page history
Definition hooks.txt:1779
null for the local wiki Added in
Definition hooks.txt:1588
In both all secondary updates will be triggered handle like object that caches derived data representing a revision
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by editing
Definition skin.txt:54

Definition at line 1509 of file All_system_messages.txt.

◆ Special

◆ text

This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second as well as the first line of the second redirect text

Definition at line 1267 of file All_system_messages.txt.

Referenced by TextPassDumper::__construct(), WikiExporter::__construct(), CommentStoreComment::__construct(), SearchSuggestion::__construct(), License::__construct(), InstallDocFormatter::__construct(), BlockLevelPass::__construct(), MediaWiki\Widget\SizeFilterWidget::__construct(), UploadForm::__construct(), UploadChunkVerificationException::__construct(), and(), JsonContent::arrayTable(), CommentStoreTest::assertComment(), ImageHistoryList::beginImageHistoryList(), Parser::braceSubstitution(), SpecialRevisionDelete::buildCheckBoxes(), SkinTemplate::buildContentNavigationUrls(), Xml::buildForm(), ProtectionForm::buildForm(), SkinTemplate::buildNavUrls(), SpecialEditWatchlist::buildRemoveLine(), SpecialEditWatchlist::buildTools(), RemexStripTagHandler::characters(), CleanupSpam::cleanupArticle(), EmailNotification::composeCommonMailtext(), MediaWiki\Auth\ConfirmLinkSecondaryAuthenticationProvider::continueLinkAttempt(), Installer::createMainpage(), Xml::dateMenu(), CoreParserFunctions::displaytitle(), SpecialRecentChanges::doHeader(), SpecialWatchlist::doHeader(), ImagePage::doRenderLangOpt(), SpecialTags::doTagRow(), SvgHandler::doTransform(), MockDjVuHandler::doTransform(), WikiExporter::dumpPages(), WebInstallerPage::endForm(), RemexStripTagHandler::endTag(), SpecialListGrants::execute(), SpecialListGroupRights::execute(), SpecialPasswordPolicies::execute(), SpecialPreferences::execute(), WebInstallerComplete::execute(), WebInstallerDBConnect::execute(), WebInstallerName::execute(), UpdateLogging::execute(), HistoryAction::feedEmpty(), ChangesList::flag(), Skin::footerLinkTitle(), SpecialNewpages::form(), FeedUtils::formatDiffRow(), BrokenRedirectsPage::formatResult(), DoubleRedirectsPage::formatResult(), ShortPagesPage::formatResult(), UnwatchedpagesPage::formatResult(), SpecialUndelete::formatRevisionRow(), SpecialNewpages::formatRow(), AllMessagesTablePager::formatValue(), ProtectedPagesPager::formatValue(), SpecialLog::getActionButtons(), ContentModelLogFormatter::getActionLinks(), DeleteLogFormatter::getActionLinks(), MergeLogFormatter::getActionLinks(), MoveLogFormatter::getActionLinks(), ProtectLogFormatter::getActionLinks(), SpecialChangeCredentials::getAuthForm(), ContentHandler::getAutosummary(), User::getBlockedStatus(), HTMLForm::getButtons(), OOUIHTMLForm::getButtons(), VFormHTMLForm::getButtons(), PreferencesFormOOUI::getButtons(), WebInstallerOptions::getCCDoneBox(), MssqlInstaller::getConnectForm(), MysqlInstaller::getConnectForm(), OracleInstaller::getConnectForm(), PostgresInstaller::getConnectForm(), WikiRevision::getContent(), HTMLFormFieldCloner::getCreateButtonHtml(), HTMLFormFieldCloner::getDeleteButtonHtml(), HistoryAction::getDescription(), FeedUtils::getDiffLink(), SpecialVersion::getEntryPointInfo(), SpecialVersion::getExtensionCredits(), SpecialVersion::getExternalLibraries(), SpecialRecentChangesLinked::getExtraOptions(), ApiFeedRecentChanges::getFeedObject(), LoginSignupSpecialPage::getFieldDefinitions(), MediaWiki\Auth\ConfirmLinkAuthenticationRequest::getFieldInfo(), SpecialWhatLinksHere::getFilterPanel(), LogEventsList::getFiltersDesc(), SpecialContributions::getForm(), SpecialBlock::getFormFields(), SpecialStatistics::getGroupStats(), OutputPage::getHeadLinksArray(), PHPVersionCheck::getIndexErrorOutput(), HTMLSizeFilterField::getInputHTML(), DatabaseInstaller::getInstallUserBox(), LogFormatter::getIRCActionText(), IRCColourfulRCFeedFormatter::getLine(), SpecialImport::getMappingFormPart(), SpecialVersion::getMediaWikiCredits(), TablePager::getNavigationBar(), Block::getRedactedName(), ImportTest::getRedirectXML(), HistoryPager::getRevisionButton(), MssqlInstaller::getSettingsForm(), MysqlInstaller::getSettingsForm(), SpecialVersion::getSkinCredits(), HistoryPager::getStartBody(), ImportTest::getUnknownTagsXML(), SpecialStatistics::getUserStats(), FormatMetadata::getVisibleFields(), DatabaseInstaller::getWebUserBox(), SpecialVersion::getWgHooks(), UserrightsPage::groupCheckboxes(), HistoryPager::historyLine(), Block::initFromRow(), WikiPage::insertProtectNullRevision(), SpecialVersion::listAuthors(), LoginSignupSpecialPage::load(), Skin::makeI18nUrl(), IndexPager::makeLink(), WebInstallerOptions::makeScreenshotsLink(), Linker::makeThumbLink2(), Parser::maybeMakeExternalImage(), SpecialRecentChanges::namespaceFilterForm(), Title::newMainPage(), WikiImporter::notice(), JsonContent::objectTable(), SpecialBotPasswords::onSuccess(), HistoryAction::onView(), InfoAction::onView(), SpecialVersion::openExtType(), ImagePage::openShowImage(), CreditsAction::othersLink(), MediaStatisticsPage::outputMediaType(), SpecialListGroupRights::outputNamespaceProtectionInfo(), MediaStatisticsPage::outputResults(), MediaStatisticsPage::outputTableEnd(), InfoAction::pageInfo(), SpecialBlock::postText(), MediaWiki\Preferences\DefaultPreferencesFactory::profilePreferences(), EditPageTest::provideAutoMerge(), Parser::replaceInternalLinks2(), MWExceptionRenderer::reportHTML(), ImportReporter::reportNotice(), SpecialNewpages::revisionFromRcResult(), EmailNotification::sendImpersonal(), User::sendMail(), User::setEmailWithConfirmation(), WikiExporter::setSchemaVersion(), WikiRevision::setText(), SearchSuggestion::setText(), SpecialWatchlist::setTopText(), MigrateFileRepoLayoutTest::setUp(), SpecialSearch::setupPage(), SpecialEditTags::showConvenienceLinks(), SpecialRevisionDelete::showConvenienceLinks(), UserrightsPage::showEditUserGroupsForm(), MovePageForm::showForm(), FileDeleteForm::showForm(), SpecialEditTags::showForm(), SpecialImport::showForm(), SpecialRevisionDelete::showForm(), SpecialSearch::showGoogleSearch(), SpecialMergeHistory::showHistory(), SpecialUndelete::showHistory(), SpecialBlockList::showList(), SpecialMergeHistory::showMergeForm(), SpecialProtectedtitles::showOptions(), SpecialProtectedpages::showOptions(), LogEventsList::showOptions(), OutputPage::showPermissionsErrorPage(), SpecialUndelete::showRevision(), SpecialUndelete::showSearchForm(), SpecialUploadStash::showUploads(), SpecialUpload::showUploadWarning(), showUsage(), SpecialVersion::softwareInformation(), WebInstaller::startPageWrapper(), RemexStripTagHandler::startTag(), WebInstallerOptions::submit(), EmailConfirmation::submitSend(), UserrightsPage::switchForm(), ApiLoginTest::testBotPasswordLocked(), ApiLoginTest::testBotPasswordThrottled(), ApiQuerySiteinfoTest::testContinuation(), WikitextStructureTest::testDefaultSort(), ApiLoginTest::testDeprecatedUserLogin(), BlockListPagerTest::testFormatValueRestrictions(), ContentHandlerTest::testGetAutosummary(), ApiLoginTest::testGoodPass(), SpecialBlankPageTest::testHasWikiMsg(), WikitextStructureTest::testHeadings(), WikitextStructureTest::testHeadingsFirst(), MessageTest::testInLanguage(), MigrateFileRepoLayoutTest::testMigration(), TextContentTest::testSerialize(), WikitextStructureTest::testTexts(), MessageTest::testToStringKey(), SideBarTest::testTrickyPipe(), ImportTest::testUnknownUserHandling(), MessageTest::testWfMessageParams(), text(), Linker::titleAttrib(), ImagePage::uploadLinksBox(), SpecialEmailUser::userForm(), ImagePage::view(), wfForbidden(), and SpecialWhatLinksHere::whatlinkshereForm().

◆ there

has been added to your& Future changes to this page and its associated Talk page will be listed there

Definition at line 357 of file All_system_messages.txt.

Referenced by BackupReader::__construct(), and UploadBase::detectVirus().

◆ title

to move a page</td><td> & * You are moving the page across * A non empty talk page already exists under the new or* You uncheck the box below In those you will have to move or merge the page manually if desired</td><td> be sure to& You are responsible for making sure that links continue to point where they are supposed to go Note that the page will& a page at the new title
private
Initial value:
{{int:993d5ce8}}
</td></tr><tr><td>
</td><td>
Using the form below will rename a page, moving all
of its history to the new name.
The old title will become a redirect page to the new title.
Links to the old page title will not be changed
See &</td >< td > &Fill in a specific reason below(for example, citing particular pages that were vandalized).</td >< td >
This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second redirect
Your real name
to move a page</td >< td > &*You are moving the page across *A non empty talk page already exists under the new or *You uncheck the box below In those you will have to move or merge the page manually if desired</td >< td > be sure to &You are responsible for making sure that links continue to point where they are supposed to go Note that the page will &a page at the new title
null means default in associative array form
Definition hooks.txt:1994

Definition at line 2710 of file All_system_messages.txt.

◆ transformed

</td><td> this can then be imported into another wiki running MediaWiki transformed

Definition at line 1509 of file All_system_messages.txt.

◆ well

◆ will

◆ yourself

</td><td> &</td><td> t want your writing to be edited mercilessly and redistributed at then don& You are also promising us that you wrote this yourself

Definition at line 1008 of file All_system_messages.txt.