Index: trunk/extensions/FlaggedRevs/FlaggedRevs.php |
— | — | @@ -212,7 +212,7 @@ |
213 | 213 | ######### |
214 | 214 | |
215 | 215 | # Bump this number every time you change flaggedrevs.css/flaggedrevs.js |
216 | | -$wgFlaggedRevStyleVersion = 26; |
| 216 | +$wgFlaggedRevStyleVersion = 27; |
217 | 217 | |
218 | 218 | $wgExtensionFunctions[] = 'efLoadFlaggedRevs'; |
219 | 219 | |
Index: trunk/extensions/FlaggedRevs/FlaggedArticle.php |
— | — | @@ -1355,8 +1355,11 @@ |
1356 | 1356 | $form .= "<span id='mw-commentbox' style='clear:both'>" . Xml::inputLabel( wfMsg('revreview-log'), 'wpReason', |
1357 | 1357 | 'wpReason', 50, '', array('class' => 'fr-comment-box') ) . " </span>"; |
1358 | 1358 | } |
1359 | | - $form .= Xml::submitButton( wfMsgHtml('revreview-submit'), |
1360 | | - array('id' => 'mw-submitbutton','class' => 'fr-comment-box','accesskey' => 's')+$toggle ); |
| 1359 | + $form .= Xml::submitButton( |
| 1360 | + wfMsgHtml('revreview-submit'), array('id' => 'submitreview', |
| 1361 | + 'class' => 'fr-comment-box','accesskey' => wfMsg('revreview-ak-review'), |
| 1362 | + 'title' => wfMsg('revreview-tt-review').' ['.wfMsg('revreview-ak-review').']' )+$toggle |
| 1363 | + ); |
1361 | 1364 | $form .= Xml::closeElement( 'span' ); |
1362 | 1365 | |
1363 | 1366 | $form .= Xml::closeElement( 'div' ); |
Index: trunk/extensions/FlaggedRevs/language/FlaggedRevs.i18n.php |
— | — | @@ -159,10 +159,18 @@ |
160 | 160 | 'stable-logpage' => 'Stability log', |
161 | 161 | 'stable-logpagetext' => 'This is a log of changes to the [[{{MediaWiki:Validationpage}}|stable version]] configuration of content pages. |
162 | 162 | A list of stabilized pages can be found at the [[Special:StablePages|stable page list]].', |
| 163 | + |
163 | 164 | 'tooltip-ca-current' => 'View the current draft of this page', |
| 165 | + 'tooltip-ca-stable' => 'View the stable version of this page', |
164 | 166 | 'tooltip-ca-default' => 'Quality assurance settings', |
165 | | - 'tooltip-ca-stable' => 'View the stable version of this page', |
| 167 | + |
| 168 | + 'revreview-ak-review' => 's', # do not translate or duplicate this message to other languages |
| 169 | + 'accesskey-ca-current' => 'v', # do not translate or duplicate this message to other languages |
| 170 | + 'accesskey-ca-stable' => 'c', # do not translate or duplicate this message to other languages |
| 171 | + |
| 172 | + 'revreview-tt-review' => 'Review this page', |
166 | 173 | 'validationpage' => '{{ns:help}}:Article validation', |
| 174 | + |
167 | 175 | ); |
168 | 176 | |
169 | 177 | /** Afrikaans (Afrikaans) |
Index: trunk/extensions/FlaggedRevs/flaggedrevs.js |
— | — | @@ -88,7 +88,7 @@ |
89 | 89 | notebox.style.display = quality ? 'inline' : 'none'; |
90 | 90 | } |
91 | 91 | // If only a few levels are zero, don't show submit link |
92 | | - var submit = document.getElementById('mw-submitbutton'); |
| 92 | + var submit = document.getElementById('submitreview'); |
93 | 93 | submit.disabled = ( somezero && !allzero ) ? 'disabled' : ''; |
94 | 94 | var comment = document.getElementById('wpReason'); |
95 | 95 | comment.disabled = ( somezero && !allzero ) ? 'disabled' : ''; |