Index: trunk/extensions/CodeReview/CodeReview.i18n.php |
— | — | @@ -262,7 +262,7 @@ |
263 | 263 | 'code-signoff-submit' => 'Submit button text. |
264 | 264 | |
265 | 265 | A "sign-off" is a concept in code review that means that the person doing the sign-off has approved the involved code changes.', |
266 | | - 'code-signoff-strike' => 'Submit button that, when clicked, will cause the selected sign-offs to be struck. Struck sign-offs are visible but displayed <s>with a line through them</s>.', |
| 266 | + 'code-signoff-strike' => 'Submit button that, when clicked, will cause the selected sign-offs to be struck. Struck sign-offs are visible but displayed <del>with a line through them</del>.', |
267 | 267 | 'code-signoff-signoff' => 'Label text which is followed by a checkbox for each sign-off state and a submit button.', |
268 | 268 | 'code-signoff-flag-inspected' => 'Type of sign-off indicating the code has been looked at.', |
269 | 269 | 'code-signoff-flag-tested' => 'Type of sign-off indicating the code has been tested.', |
Index: trunk/extensions/CodeReview/ui/CodeRevisionView.php |
— | — | @@ -241,6 +241,7 @@ |
242 | 242 | // Uses messages 'code-rev-modified-a', 'code-rev-modified-r', 'code-rev-modified-d', 'code-rev-modified-m' |
243 | 243 | $desc = wfMsgHtml( 'code-rev-modified-' . strtolower( $action ) ); |
244 | 244 | // Find any ' (from x)' from rename comment in the path. |
| 245 | + $matches = array(); |
245 | 246 | preg_match( '/ \([^\)]+\)$/', $path, $matches ); |
246 | 247 | $from = isset( $matches[0] ) ? $matches[0] : ''; |
247 | 248 | // Remove ' (from x)' from rename comment in the path. |