Index: trunk/extensions/ContributionReporting/ContributionReporting.php |
— | — | @@ -15,6 +15,15 @@ |
16 | 16 | $wgContributionReportingDBpassword = $wgDBpassword; |
17 | 17 | $wgContributionReportingDBname = $wgDBname; |
18 | 18 | |
| 19 | +$wgExtensionCredits['specialpage'][] = array( |
| 20 | + 'name' => 'Contribution Reporting', |
| 21 | + 'url' => 'http://www.mediawiki.org/wiki/Extension:ContributionReporting', |
| 22 | + 'svn-date' => '$LastChangedDate$', |
| 23 | + 'svn-revision' => '$LastChangedRevision$', |
| 24 | + 'author' => array( 'David Strauss', 'Brion Vibber', 'Siebrand Mazeland' ); |
| 25 | + 'descriptionmsg' => 'contributionreporting-desc', |
| 26 | +); |
| 27 | + |
19 | 28 | $dir = dirname( __FILE__ ) . '/'; |
20 | 29 | |
21 | 30 | $wgExtensionMessagesFiles['ContributionReporting'] = $dir . 'ContributionReporting.i18n.php'; |
Property changes on: trunk/extensions/ContributionReporting/ContributionReporting.php |
___________________________________________________________________ |
Added: svn:keywords |
22 | 31 | + LastChangedDate LastChangedRevision |
Index: trunk/extensions/ContributionReporting/ContributionReporting.i18n.php |
— | — | @@ -12,6 +12,7 @@ |
13 | 13 | * @author Trevor Parscal |
14 | 14 | */ |
15 | 15 | $messages['en'] = array( |
| 16 | + 'contributionreporting-desc' => 'Live reporting on the Wikimedia fundraiser', |
16 | 17 | 'contributiontotal' => 'Contribution total', |
17 | 18 | 'contributionhistory' => 'Contribution history', |
18 | 19 | |