Manual:$wgForceUIMsgAsContentMsg/de-formal

This page is a translated version of the page Manual:$wgForceUIMsgAsContentMsg and the translation is 7% complete.
Language, regional and character encoding settings: $wgForceUIMsgAsContentMsg
Array of UI messages that should be treated as content messages.
Eingeführt in Version:1.4.0
Entfernt in Version:weiterhin vorhanden
Erlaubte Werte:(array of strings)
Standardwert:[]

List of system messages that should be displayed in user's interface language, even if they would ordinarily be displayed in site's content language.

Details

When translating messages with wfMsg()[1], it is not always clear what should be considered UI messages and what should be content messages.

For example, for regular Wikipedia sites like en.wikipedia.org, there should be only one 'mainpage'; therefore when getting the link of 'mainpage', treat it as content of the site and call wfMsgForContent()[1] while, for rendering the text of the link, call wfMsg(). The code in default behaves this way. However, multilingual sites like Commons do offer different versions of 'mainpage' and the like for different languages. This array provides a way to override the default behavior. For example, to allow language specific mainpage and community portal, set

$wgForceUIMsgAsContentMsg = ['mainpage', 'portal-url'];

Notes

  1. 1.0 1.1 Functions 'wfMsg()' and 'wfMsgForContent()' are currently deprecated. See replacement rules.