Manual:$wgForceUIMsgAsContentMsg/pl
Language, regional and character encoding settings: $wgForceUIMsgAsContentMsg | |
---|---|
Array of UI messages that should be treated as content messages. |
|
Wprowadzono w wersji: | 1.4.0 |
Usunięto w wersji: | nadal w użyciu |
Dozwolone wartości: | (array of strings) |
Domyślna wartość: | [] |
Inne ustawienia: Alfabetycznie | Według funkcji |
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.
Szczegóły
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'];
Uwagi
- ↑ 1.0 1.1 Functions 'wfMsg()' and 'wfMsgForContent()' are currently deprecated. See replacement rules.