Help:System message

From The Scuba Wiki

Revision as of 20:34, 28 December 2009 by WikiSysop (Talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
MediaWiki Handbook: Contents, Readers, Editors, Moderators, System admins +/-
To meet Wikimedia's quality standards and make it more accessible, this article or section needs a better explanation of technical details or more context regarding applications or importance to make it more accessible to a general audience, or at least to technical readers outside this specialty. Please help expand it without removing the technical details. Additional rationale may be on this talk page.


In principle for every language a set of ca. 1800 system messages in that language is provided in the message file languages/messages/Messageslanguagecode.php. In the preferences a logged-in user can select an interface language. For incidental use it can also be specified in the URL with the parameter uselang=language_code. As of October 2007 there are ca. 150 interface languages to choose from. For completeness of the language files see localization statistics.

Each MediaWiki site has a site language. This is the default interface language for that site. As of October 2007 there are ca. 100 languages for which there is a separate Wikipedia but not yet a language file. These Wikipedias usually have English as default interface language. However, nowadays creating the language file is a condition for opening a new language edition of Wikipedia, see Meta:Language proposal policy#Requisiteshttp://thescubawiki.com/Meta:Language_proposal_policy#Requisites.

Typically the code uses the site language in link targets (function wfMsgForContent), and the user-specified language in other texts, including link labels (function wfMsg).

HTML elements which are not normally passed on to the browser, are when occurring in certain messages.

Contents

MediaWiki namespace

The MediaWiki namespace is one of the 16 standard MediaWiki software namespaces.

Purpose: Namespace allows administrators to change the default system messages.

The MediaWiki: namespace is enabled by default in recent mediawiki versions. In older MediaWiki versions $wgUseDatabaseMessages=true; enables the MediaWiki: namespace. This is now the default.

Everytime $wgLanguageCode is changed there is a page MediaWiki:message_ID created. With every other computer language change a page with this format MediaWiki:message_ID/language_code is created. For example, see MediaWiki:Aboutpage, MediaWiki:Aboutpage/fr, and MediaWiki:Aboutpage/de.

However, MediaWiki:Sidebar/language_code does not work (for a sidebar for users with that interface language); instead, the page MediaWiki:Sidebar can refer to message IDs which provides link labels dependent on the user-specified interface language. If the message is neither defined in the message file concerned, nor on the MediaWiki page, the message in the message file for English is used.

When viewing a "non-existing" page of which the name is an existing message name, the page shows the default. A "non-existing" page can be recognized by the lack of a history link. When editing such a page, the default is automatically inserted. Transclusion of a "non-existing" page in the MediaWiki namespace trancludes the default.

For the names of all "existing" pages see @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

For the interface language set in the preferences, all default messages and current versions can be viewed at Special:Allmessages, with red links to create new deviations from the defaults. When creating a page to override the default it is useful to first save the default version, to allow diffs with it.

Deviating from the default is a bit slower.

An administrator with access to the language files can choose between adapting these and creating pages in the MediaWiki namespace. The latter makes it easier to update to a new version of MediaWiki while keeping the own versions of messages. On the other hand, is easier to transfer a language file to another MediaWiki site than to export and import pages, for the benefit of users who have selected the language concerned as interface language.

An extension can set e.g. message key aaa to bbb by:

  global $wgMessageCache;
  $wgMessageCache->addMessages( array ('aaa' => 'bbb') );

The key has to start with a lowercase letter, even though message files define messages using an ID written with a capital, and even though the corresponding MediaWiki page has a capital after the colon, in this case MediaWiki:Aaa, even on wikis which allow a lowercase first letter in page names. (The default content of MediaWiki:aaa becomes bbb, but changing it has no effect.)

After getting the array $ma of extension messages:

  $ma = $wgMessageCache->getExtensionMessagesFor( 'en' );

the value can be retrieved with $ma['aaa'], e.g. by:

  $wgOut->addWikiText( $ma['aaa'] );

The result after possible overriding by the contents of the MediaWiki page can be retrieved by wfMsg('aaa').

This applies not only for a message in the strict sense; for example, an extension can allow the user community, through a sysop, to supply parameters in this way; this can even be the name of an extension tag, see e.g. mw:Extension:PropertyTable, where the tag <properties> is the default, but e.g. the tag <pr> can be used after creating the page "MediaWiki:propertyTable tag" with the content "pr" (but note that for portability of wikitext across wikis with the same extension this flexibility has also disadvantages).

All characters of namespace prefixes are case-insensitive, so one can write "mediawiki:".

Can LocalSettings.php set messages too?
Yes, see thread.

MediaWiki before version 1.9.x

The concept of messages has changed in release 1.9.x (January 10, 2007). Before, there existed a page for each message, even if it was the default. On upgrade, all pages with default messages are deleted.

Protection

By default, the whole MediaWiki namespace is protected. This is necessary for a number of reasons:

  • Many messages are in plain HTML, hence users could insert malicious scripts
  • Vandalism of some messages would be extremely disruptive, for example changes to the text of the links in the sidebar would immediately be visible to all users

On the other hand, especially for pages MediaWiki:message_ID/language_code the protection is somewhat impractical because administrators do not know all the languages that can be set for the user interface.

If an administrator wishes to allow general editing of a MediaWiki page, a method is to place the message on a template, and transclude the template onto the MediaWiki page.

A few messages can in theory cause the software to stop working if they are changed, for example "linktrail". Therefore and for processing efficiency the effect of page MediaWiki:Linktrail has been disabled: the software ignores its contents, taking the regular expression straight out of the message files.

Technical details

The namespace number of MediaWiki messages is 8, with a corresponding MediaWiki talk namespace 9 to discuss individual messages. Some MediaWiki wikis offer templates like w:template:editprotected ( talk edit history links ) to propose modifications, others have a page like Meta:Requests for help from a sysop or bureaucrat for this purpose.

For links to MediaWiki messages, existence detection applies to existence of the message, not existence of the page:

Each message in the $wgAllMessagesEn array in Messages.php corresponds to a page in the MediaWiki namespace. For example, there is a line in the php file:

'protect-text' => 'Protect-text',

To this corresponds the page MediaWiki:Protect-text, and Template:Xpdoc. When this page is edited the new message is automatically used for say http://thescubawiki.com/wiki/index.php?title=M:Main_page&action=protect. Similarly w:fr:MediaWiki:Protect-text has the content Confirmer la protection, note that the page name itself is not translated.

Transclusion

Transclusion of a system message, see e.g. template:Ed ( talk edit history links ), can be done with the regular tranclusion syntax for the MediaWiki page, even if the page does not exist and the default is used:

Template:Xpdoc, the system message with id "edit" that the site uses in the default interface interlanguage of the site.

Also, parser function int can be used:

Template:Xpdoc, the system message with id "edit" that the site uses in the user-specified interface interlanguage.

If there is neither a page nor a default the result of "int" is different from "MediaWiki:" even if the user uses the default interface language of the site:

Template:Xpdoc
Template:Xpdoc

Messages defined in extensions, even if they are in Special:Allmessages, may or may not be transcluded:

Template:Xpdoc
Template:Xpdoc

However many messages are not suited for inclusion, because they contain $1 and similar parameters not evaluated by the template parser, or raw CSS and XHTML markup not permitted on normal pages.

Interlanguage links

Interlanguage links in MediaWiki messages typically do not work: noinclude tags and the link syntax may not be interpreted.

Instead, one can use in-page interlanguage links on the talk pages, template:ilm ( talk edit history links ) does this for some major MediaWiki wikis.

Strings exclusive to language file

Some text strings cannot be customised using this feature, and so can only be changed by editing the language file:

  • The namespace titles "User", "Wikipedia", "Image", etc. ($namespaceNames)
  • The names of the special pages ($specialPageAliases)
  • $skinNames (shown in Special:Preferences)
  • $bookstoreList
  • $separatorTransformTable
  • $linkTrail
  • $dateFormats

See also


Links to other help pages

Help contents
Meta | Wikinews | Wikipedia | Wikiquote | Wiktionary | commons: | mw: | b: | s: | mw:Manual | google
Versions of this help page (for other languages see below)
Meta | Wikinews | Wikipediahttp://en.wikipedia.org/Help:System_message | Wikiquote | Wiktionary
What links here on Meta or from Meta | Wikipedia | MediaWiki
Reading
Go | Search | Stop words | URL | Namespace | Page name | Section
Backlinks | Link | Piped link | Interwiki link | Redirect | Category | Image page
Logging in and preferences
Logging in | Preferences | User style
Editing
Advanced editing | Editing FAQ | Edit toolbar | Export | Import | Shortcuts
Tracking changes
Recent changes (enhanced) | Related changes | Watching pages | Diff
Page history | Edit summary | User contributions | Minor edit | Patrolled edit
Style & formatting
Wikitext examples | Reference card | HTML in wikitext | List | Table | Sorting | Colors
Special input and output
Inputbox | Special characters | Displaying a formula | Images (uploads) | EasyTimeline
Advanced functioning
Template | Advanced templates | Parser function | ParserFunctions | Parameter default
Variable | Magic word | System message | Substitution | Array | Calculation
Page management
Starting a new page | Renaming (moving) a page | Protecting pages | Deleting a page
Special pages
Talk page | Testing | Sandbox | CentralNotice

Template:-

Personal tools
support the site