Kghbln has uploaded a new change for review. https://gerrit.wikimedia.org/r/231763
Change subject: Make this the 2.0 release ...................................................................... Make this the 2.0 release * This extension is widely used and rc for over three years now. I guess this is safe. * Make extension's name translatable * Add licence name * Update links in file documentation Change-Id: I110b57b2c7939ec6c33016199579539dc6a5d3ab --- M Arrays.php M i18n/en.json M i18n/qqq.json 3 files changed, 25 insertions(+), 15 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Arrays refs/changes/63/231763/1 diff --git a/Arrays.php b/Arrays.php index c4a2565..d8d1ab0 100644 --- a/Arrays.php +++ b/Arrays.php @@ -3,15 +3,15 @@ /** * Initialization file for the 'Arrays' (former 'ArrayExtension') extension. * - * Documentation: http://www.mediawiki.org/wiki/Extension:Arrays - * Support: http://www.mediawiki.org/wiki/Extension_talk:Arrays - * Source code: http://svn.wikimedia.org/viewvc/mediawiki/trunk/extensions/Arrays + * Documentation: https://www.mediawiki.org/wiki/Extension:Arrays + * Support: https://www.mediawiki.org/wiki/Extension_talk:Arrays + * Source code: https://phabricator.wikimedia.org/diffusion/EARR/repository/master/ * * @file * @ingroup Arrays * * @licence MIT License - * @version: 2.0rc3 alpha + * @version: 2.0 * * @author Li Ding < [email protected] > * @author Jie Bao @@ -23,10 +23,16 @@ $wgExtensionCredits['parserhook'][] = array( 'path' => __FILE__, 'name' => 'Arrays', + 'namemsg' => 'arrays-name', 'url' => 'https://www.mediawiki.org/wiki/Extension:Arrays', - 'author' => array ( 'Li Ding', 'Jie Bao', '[http://www.mediawiki.org/wiki/User:Danwe Daniel Werner]' ), + 'author' => array( + 'Li Ding', + 'Jie Bao', + '[https://www.mediawiki.org/wiki/User:Danwe Daniel Werner]' + ), 'descriptionmsg' => 'arrays-desc', - 'version' => ExtArrays::VERSION + 'version' => ExtArrays::VERSION, + 'license-name' => 'MIT' ); $wgMessagesDirs['Arrays'] = __DIR__ . '/i18n'; @@ -58,7 +64,7 @@ * * @since 2.0 (before in 'Arrays' class since 1.3.2) */ - const VERSION = '2.0rc3 alpha'; + const VERSION = '2.0'; /** * Store for arrays. diff --git a/i18n/en.json b/i18n/en.json index d542125..0798137 100644 --- a/i18n/en.json +++ b/i18n/en.json @@ -1,8 +1,10 @@ { - "@metadata": { - "authors": [ - "Jeroen De Dauw" - ] - }, - "arrays-desc": "Store and compute named arrays" -} \ No newline at end of file + "@metadata": { + "authors": [ + "Jeroen De Dauw", + "Kghbln" + ] + }, + "arrays-desc": "Allows to store and compute named arrays", + "arrays-name": "Arrays" +} diff --git a/i18n/qqq.json b/i18n/qqq.json index eccd60b..fb6f92c 100644 --- a/i18n/qqq.json +++ b/i18n/qqq.json @@ -1,11 +1,13 @@ { "@metadata": { "authors": [ + "Kghbln", "Purodha", "Raymond", "Shirayuki", "Umherirrender" ] }, - "arrays-desc": "{{desc|name=Arrays|url=https://www.mediawiki.org/wiki/Extension:Arrays}}" + "arrays-desc": "{{desc|name=Arrays|url=https://www.mediawiki.org/wiki/Extension:Arrays}}", + "arrays-name": "{{optional}} Name of the extension shown on Special:Version". } -- To view, visit https://gerrit.wikimedia.org/r/231763 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I110b57b2c7939ec6c33016199579539dc6a5d3ab Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/extensions/Arrays Gerrit-Branch: master Gerrit-Owner: Kghbln <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
