Index: trunk/extensions/FlaggedRevs/Language/FlaggedRevsPage.i18n.en.php |
— | — | @@ -148,6 +148,7 @@ |
149 | 149 | 'stabilization-notexists' => 'There is no page called "[[:$1|$1]]". No configuration is possible.', |
150 | 150 | 'stabilization-notcontent' => 'The page "[[:$1|$1]]" cannot be reviewed. No configuration is possible.', |
151 | 151 | 'stabilization-success' => 'Stable version configuration for [[:$1|$1]] successfuly set.', |
| 152 | + 'stabilization-comment' => 'Comment:', |
152 | 153 | |
153 | 154 | 'stabilization-sel-short' => 'Precedence', |
154 | 155 | 'stabilization-sel-short-0' => 'Quality', |
— | — | @@ -164,5 +165,5 @@ |
165 | 166 | 'reviewedpages-lev-1' => 'Quality', |
166 | 167 | 'reviewedpages-lev-2' => 'Featured', |
167 | 168 | 'reviewedpages-all' => 'reviewed versions', |
168 | | - 'reviewedpages-best' => 'latest highest rated revision' |
| 169 | + 'reviewedpages-best' => 'latest highest rated revision', |
169 | 170 | ); |
Index: trunk/extensions/FlaggedRevs/FlaggedRevsPage.php |
— | — | @@ -1099,19 +1099,19 @@ |
1100 | 1100 | $form .= "</tr></table></fieldset>"; |
1101 | 1101 | |
1102 | 1102 | if( $this->isAllowed ) { |
| 1103 | + $form .= '<p>'.Xml::inputLabel( wfMsg( 'stabilization-comment' ), 'wpReason', 'wpReason', 60 ).'</p>'; |
| 1104 | + |
1103 | 1105 | $watchLabel = wfMsgExt('watchthis', array('parseinline')); |
1104 | 1106 | $watchAttribs = array('accesskey' => wfMsg( 'accesskey-watch' ), 'id' => 'wpWatchthis'); |
1105 | 1107 | $watchChecked = ( $wgUser->getOption( 'watchdefault' ) || $wgTitle->userIsWatching() ); |
1106 | | - |
1107 | 1108 | $form .= "<p> ".Xml::check( 'wpWatchthis', $watchChecked, $watchAttribs ); |
1108 | 1109 | $form .= " <label for='wpWatchthis'".$this->skin->tooltipAndAccesskey('watch').">{$watchLabel}</label>"; |
1109 | | - |
| 1110 | + |
1110 | 1111 | $form .= Xml::hidden('title', $wgTitle->getPrefixedText() ); |
1111 | 1112 | $form .= Xml::hidden('page', $this->page->getPrefixedText() ); |
1112 | 1113 | $form .= Xml::hidden( 'wpEditToken', $wgUser->editToken() ); |
1113 | 1114 | |
1114 | | - $form .= '<p>'.Xml::inputLabel( wfMsg( 'revreview-log' ), 'wpReason', 'wpReason', 60 ).'</p>'; |
1115 | | - $form .= Xml::submitButton( wfMsg( 'stabilization-submit' ) ); |
| 1115 | + $form .= '<p>'.Xml::submitButton( wfMsg( 'stabilization-submit' ) ).'</p>'; |
1116 | 1116 | } |
1117 | 1117 | $form .= '</form>'; |
1118 | 1118 | |