Add i18n for API module help

MediaWiki core change I04b1a384 added support for i18n of API module
help. This takes advantage of that while still maintaining backwards
compatibility with earlier versions of MediaWiki.

Once support for MediaWiki before 1.25 is dropped, the methods marked
deprecated in this patch may be removed.

Change-Id: I67395aff48185f3e09da31b51a08aa2541fe6a17
This commit is contained in:
Brad Jorsch
2014-10-29 16:13:29 -04:00
parent 2aaa5b19d1
commit c689fbb420
4 changed files with 123 additions and 67 deletions

View File

@@ -54,16 +54,25 @@ class ApiULSLocalization extends ApiBase {
);
}
/**
* @deprecated since MediaWiki core 1.25
*/
public function getParamDescription() {
return array(
'language' => 'Language string',
);
}
/**
* @deprecated since MediaWiki core 1.25
*/
public function getDescription() {
return 'Get the localization of ULS in given language';
}
/**
* @deprecated since MediaWiki core 1.25
*/
public function getExamples() {
return array(
'api.php?action=ulslocalization&language=ta',
@@ -71,7 +80,15 @@ class ApiULSLocalization extends ApiBase {
);
}
public function getVersion() {
return __CLASS__ . ': ' . ULS_VERSION;
/**
* @see ApiBase::getExamplesMessages()
*/
protected function getExamplesMessages() {
return array(
'action=ulslocalization&language=ta'
=> 'apihelp-ulslocalization-example-1',
'action=ulslocalization&language=hi'
=> 'apihelp-ulslocalization-example-2',
);
}
}