Index: trunk/extensions/Contest/Contest.i18n.php |
— | — | @@ -108,17 +108,17 @@ |
109 | 109 | |
110 | 110 | // Special:ContestWelcome |
111 | 111 | 'contest-welcome-unknown' => 'There is no contest with the provided name.', |
112 | | - 'contest-welcome-rules' => 'In order to participate, you must agree to', // js i18n |
| 112 | + 'contest-welcome-rules' => 'In order to participate, you are required to agree to', // js i18n |
113 | 113 | 'contest-welcome-rules-link' => 'the contest rules', // js i18n |
114 | 114 | 'contest-welcome-signup' => 'Signup now', |
115 | | - 'contest-welcome-js-off' => 'Contest uses JavaScript for an improved interface. Your browser either does not support JavaScript or has JavaScript turned off.', |
| 115 | + 'contest-welcome-js-off' => 'The contest user interface uses JavaScript for an improved interface. Your browser either does not support JavaScript or has JavaScript turned off.', |
116 | 116 | 'contest-welcome-accept-challenge' => 'Challenge Accepted', |
117 | 117 | |
118 | 118 | 'contest-welcome-select-header' => 'Select your challenge:', |
119 | 119 | |
120 | 120 | // Special:ContestSignup & Special:ContestSubmission |
121 | 121 | 'contest-signup-unknown' => 'There is no contest with the provided name.', |
122 | | - 'contest-signup-submit' => 'Signup', |
| 122 | + 'contest-signup-submit' => 'Sign up', |
123 | 123 | 'contest-signup-header' => 'Please fill out the form to complete your registration for $1.', |
124 | 124 | 'contest-signup-email' => 'Your email address', |
125 | 125 | 'contest-signup-realname' => 'Your real name', |
— | — | @@ -134,13 +134,13 @@ |
135 | 135 | 'contest-signup-require-rules' => 'You need to agree to the contest rules.', |
136 | 136 | 'contest-signup-require-country' => 'You need to provide your country of residence.', |
137 | 137 | 'contest-signup-invalid-email' => 'The email address you provided is not valid.', |
138 | | - 'contest-signup-invalid-name' => 'The name you provided is to short.', |
| 138 | + 'contest-signup-invalid-name' => 'The name you provided is too short.', |
139 | 139 | 'contest-signup-require-challenge' => 'You must select a challenge.', |
140 | 140 | 'contest-signup-invalid-cv' => 'You entered an invalid URL.', |
141 | 141 | |
142 | 142 | // Special:Contest |
143 | 143 | 'contest-contest-title' => 'Contest: $1', |
144 | | - 'contest-contest-no-results' => 'There are no contestants to list.', |
| 144 | + 'contest-contest-no-results' => 'There are no contestants to display.', |
145 | 145 | 'contest-contest-name' => 'Name', |
146 | 146 | 'contest-contest-status' => 'Status', |
147 | 147 | 'contest-contest-submissioncount' => 'Amount of participants', |
— | — | @@ -288,7 +288,7 @@ |
289 | 289 | 'contest-email-reminder-title' => 'Title for reminder emails', |
290 | 290 | |
291 | 291 | // Special:MyContests |
292 | | - 'contest-mycontests-toplink' => 'Text for link in the top menue (ie where watchlist and preferences are linked)', |
| 292 | + 'contest-mycontests-toplink' => 'Text for link in the top menu (ie where watchlist and preferences are linked)', |
293 | 293 | 'contest-mycontests-no-contests' => 'Message indicating there are no contests for the user, displayed instead of a list.', |
294 | 294 | 'contest-mycontests-active-header' => 'Page header (h2)', |
295 | 295 | 'contest-mycontests-finished-header' => 'Page header (h2)', |
Index: trunk/extensions/Contest/includes/Contest.class.php |
— | — | @@ -141,12 +141,12 @@ |
142 | 142 | 'status' => self::STATUS_DRAFT, |
143 | 143 | 'end' => '', |
144 | 144 | |
145 | | - 'rules_page' => 'MediaWiki:', |
146 | | - 'opportunities' => 'MediaWiki:', |
147 | | - 'intro' => 'MediaWiki:', |
| 145 | + 'rules_page' => 'MediaWiki:Contests/', |
| 146 | + 'opportunities' => 'MediaWiki:Contests/', |
| 147 | + 'intro' => 'MediaWiki:Contests/', |
148 | 148 | 'help' => '', |
149 | | - 'signup_email' => 'MediaWiki:', |
150 | | - 'reminder_email' => 'MediaWiki:', |
| 149 | + 'signup_email' => 'MediaWiki:Contests/', |
| 150 | + 'reminder_email' => 'MediaWiki:Contests/', |
151 | 151 | |
152 | 152 | 'submission_count' => 0, |
153 | 153 | ); |
Index: trunk/extensions/Contest/resources/contest.special.welcome.js |
— | — | @@ -28,14 +28,13 @@ |
29 | 29 | $rules.html( $p ).append( $div ); |
30 | 30 | |
31 | 31 | $a.fancybox( { |
32 | | - 'width' : '75%', |
33 | | -// 'height' : '75%', |
34 | | -// 'autoScale' : true, |
| 32 | + 'width' : '85%', |
| 33 | + 'height' : '85%', |
35 | 34 | 'transitionIn' : 'none', |
36 | 35 | 'transitionOut' : 'none', |
37 | 36 | 'type' : 'inline', |
38 | | -// 'autoDimensions': false |
| 37 | + 'autoDimensions': false |
39 | 38 | } ); |
40 | 39 | } ); |
41 | 40 | |
42 | | -})( window.jQuery, window.mediaWiki ); |
\ No newline at end of file |
| 41 | +})( window.jQuery, window.mediaWiki ); |
Index: trunk/extensions/Contest/resources/contest.special.signup.js |
— | — | @@ -26,15 +26,14 @@ |
27 | 27 | $rules.closest( 'td' ).append( $div ); |
28 | 28 | |
29 | 29 | $a.fancybox( { |
30 | | - 'width' : '75%', |
31 | | -// 'height' : '75%', |
32 | | -// 'autoScale' : true, |
| 30 | + 'width' : '85%', |
| 31 | + 'height' : '85%', |
33 | 32 | 'transitionIn' : 'none', |
34 | 33 | 'transitionOut' : 'none', |
35 | 34 | 'type' : 'inline', |
36 | | -// 'autoDimensions': false |
| 35 | + 'autoDimensions': false |
37 | 36 | } ); |
38 | 37 | |
39 | 38 | } ); |
40 | 39 | |
41 | | -})( window.jQuery, window.mediaWiki ); |
\ No newline at end of file |
| 40 | +})( window.jQuery, window.mediaWiki ); |