summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Translate/translationaids/GettextDocumentationAid.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/Translate/translationaids/GettextDocumentationAid.php')
-rw-r--r--www/wiki/extensions/Translate/translationaids/GettextDocumentationAid.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/www/wiki/extensions/Translate/translationaids/GettextDocumentationAid.php b/www/wiki/extensions/Translate/translationaids/GettextDocumentationAid.php
index 3716dc0e..b7cd68cf 100644
--- a/www/wiki/extensions/Translate/translationaids/GettextDocumentationAid.php
+++ b/www/wiki/extensions/Translate/translationaids/GettextDocumentationAid.php
@@ -5,7 +5,7 @@
* @file
* @author Niklas Laxström
* @copyright Copyright © 2013, Niklas Laxström
- * @license GPL-2.0+
+ * @license GPL-2.0-or-later
*/
/**
@@ -16,7 +16,6 @@
*/
class GettextDocumentationAid extends TranslationAid {
public function getData() {
-
// We need to get the primary group to get the correct file
// So $group can be different from $this->group
$group = $this->handle->getGroup();
@@ -60,11 +59,11 @@ class GettextDocumentationAid extends TranslationAid {
}
}
- return array(
+ return [
'language' => $wgContLang->getCode(),
// @todo Provide raw data when possible
// 'value' => $help,
'html' => $this->context->getOutput()->parse( $out ),
- );
+ ];
}
}