Manual:$wgExtensionMessagesFiles
拡張機能: $wgExtensionMessagesFiles | |
---|---|
拡張機能メッセージ ファイル。 |
|
導入されたバージョン: | 1.11.0 |
除去されたバージョン: | 使用中 |
許容される値: | (配列) |
既定値: | [] |
その他の設定: アルファベット順 | 機能順 |
This global variable must only be used to specify the paths to internationalization files that define magic words , special page aliases and/or namespace names .
For message files , use $wgMessagesDirs
instead and avoid overlap in variable names.
$wgExtensionMessagesFiles
内のキーと同一のキーが $wgMessagesDirs
内にある場合は、$wgMessagesDirs
が優先されます。
Example
The ConfirmEdit extension contains a PHP file, ConfirmEdit.alias.php
, which defines language-specific aliases for a special page (Special:Captcha).
If the extension were to define the variable directly in PHP, it would have something like this:
$wgExtensionMessagesFiles['ConfirmEditAlias'] = __DIR__ . '/ConfirmEdit.alias.php';
extension.json
Instead of using our global variable directly, modern extensions like ConfirmEdit set the equivalent field ExtensionMessagesFiles
in the extension.json
file.
This field corresponds directly with $wgExtensionMessagesFiles
:
"ExtensionMessagesFiles": {
"ConfirmEditAlias": "ConfirmEdit.alias.php"
},
関連項目
- $wgMessagesDirs - global variable for messages
- コメント依頼/地域化の形式 - 背景について
- 地域化(多言語への対応)
- タスク T220757 - "Deprecate use of wgExtensionMessagesFiles in favour of wgMessagesDirs and others" (submitted in 2019)