Index: trunk/extensions/ExtensionDistributor/ExtensionDistributor.i18n.php |
— | — | @@ -3,6 +3,7 @@ |
4 | 4 | $messages = array( |
5 | 5 | 'en' => array( |
6 | 6 | 'extensiondistributor' => 'Download MediaWiki extension', |
| 7 | + 'extdist-desc' => 'Extension for distributing snapshot archives of extensions', |
7 | 8 | 'extdist-not-configured' => 'Please configure $wgExtDistTarDir and $wgExtDistWorkingCopy', |
8 | 9 | 'extdist-wc-missing' => 'The configured working copy directory does not exist!', |
9 | 10 | 'extdist-no-such-extension' => 'No such extension "$1"', |
Index: trunk/extensions/ExtensionDistributor/ExtensionDistributor.php |
— | — | @@ -10,6 +10,15 @@ |
11 | 11 | * Configuration |
12 | 12 | */ |
13 | 13 | |
| 14 | +$wgExtensionCredits['specialpage'][] = array( |
| 15 | + 'name' => 'Extension Distributor', |
| 16 | + 'author' => 'Tim Starling', |
| 17 | + 'svn-revision' => '$LastChangedRevision: 35631 $', |
| 18 | + 'url' => 'http://www.mediawiki.org/wiki/Extension:ExtensionDistributor', |
| 19 | + 'description' => 'This is an extension for distributing snapshot archives of extensions', |
| 20 | + 'descriptionmsg' => 'extdist-desc', |
| 21 | +); |
| 22 | + |
14 | 23 | /** Directory to put tar files in */ |
15 | 24 | $wgExtDistTarDir = false; |
16 | 25 | |