Index: trunk/extensions/Contest/Contest.i18n.php |
— | — | @@ -43,7 +43,7 @@ |
44 | 44 | |
45 | 45 | // Preferences |
46 | 46 | 'prefs-contest' => 'Contests', |
47 | | - 'contest-prefs-showtoplink' => 'Show a link to [[Special:MyContests|My Contests]] in the top menue.', |
| 47 | + 'contest-prefs-showtoplink' => 'Show a link to [[Special:MyContests|My Contests]] in the top menu.', |
48 | 48 | |
49 | 49 | // Contest statuses |
50 | 50 | 'contest-status-draft' => 'Draft (disabled)', |
— | — | @@ -51,12 +51,12 @@ |
52 | 52 | 'contest-status-finished' => 'Finished (disabled)', |
53 | 53 | |
54 | 54 | // Special page names |
55 | | - 'special-contest' => 'Contest', |
56 | | - 'special-contests' => 'Contests', |
57 | | - 'special-contestsignup' => 'Contest signup', |
58 | | - 'special-contestwelcome' => 'Contest', |
59 | | - 'special-editcontest' => 'Edit contest', |
60 | | - 'special-mycontests' => 'Contests', |
| 55 | + 'special-contest' => 'View a contest', |
| 56 | + 'special-contests' => 'Manage contests', |
| 57 | + 'special-contestsignup' => 'Sign up for a contest', |
| 58 | + 'special-contestwelcome' => 'View a contest', |
| 59 | + 'special-editcontest' => 'Edit a contest', |
| 60 | + 'special-mycontests' => 'My contests', |
61 | 61 | |
62 | 62 | // Navigation links |
63 | 63 | 'contest-nav-contests' => 'Contests list', |
— | — | @@ -136,7 +136,7 @@ |
137 | 137 | 'contest-signup-require-challenge' => 'You must select a challenge.', |
138 | 138 | 'contest-signup-invalid-cv' => 'You entered an invalid URL.', |
139 | 139 | |
140 | | - 'contest-submission-submission' => 'Url to your submission', |
| 140 | + 'contest-submission-submission' => 'Link to your submission', |
141 | 141 | 'contest-submission-invalid-url' => 'This URL does not match one of the allowed formats.', |
142 | 142 | |
143 | 143 | // Special:Contest |
— | — | @@ -196,7 +196,7 @@ |
197 | 197 | |
198 | 198 | 'contest-submission-submit' => 'Submit', |
199 | 199 | 'contest-submission-unknown' => 'There is no contest with the provided name.', |
200 | | - 'contest-submission-header' => 'On this page you can modify your submission until the deadline.', |
| 200 | + 'contest-submission-header' => 'Thanks for participating in this contest! Once you have completed the challenge, you can add a link to you submission below.', |
201 | 201 | 'contest-submission-finished' => 'This contest has ended.', |
202 | 202 | ); |
203 | 203 | |
Index: trunk/extensions/Contest/specials/SpecialContestSignup.php |
— | — | @@ -43,8 +43,20 @@ |
44 | 44 | $this->showPage( $subPage ); |
45 | 45 | } |
46 | 46 | } |
47 | | - |
| 47 | + |
48 | 48 | /** |
| 49 | + * This page is unlisted because the only way to access it is though a contest |
| 50 | + * landing page. |
| 51 | + * |
| 52 | + * @return false|boolean |
| 53 | + */ |
| 54 | + public function isListed() { |
| 55 | + |
| 56 | + return false; |
| 57 | + |
| 58 | + } |
| 59 | + |
| 60 | + /** |
49 | 61 | * Handle form submission. |
50 | 62 | * |
51 | 63 | * @since 0.1 |
— | — | @@ -369,5 +381,5 @@ |
370 | 382 | |
371 | 383 | return true; |
372 | 384 | } |
373 | | - |
| 385 | + |
374 | 386 | } |