Index: trunk/extensions/CodeReview/backend/CodeRevision.php |
— | — | @@ -253,6 +253,7 @@ |
254 | 254 | private static function makeStateMessageKey( $key ) { |
255 | 255 | return "code-status-$key"; |
256 | 256 | } |
| 257 | + |
257 | 258 | /** |
258 | 259 | * List of all flags a user can mark themself as having done to a revision |
259 | 260 | * @return Array |
Index: trunk/extensions/CodeReview/CodeReview.i18n.php |
— | — | @@ -304,8 +304,7 @@ |
305 | 305 | * {{msg-mw|code-signoff-flag-inspected}} |
306 | 306 | * {{msg-mw|code-signoff-flag-tested}}', |
307 | 307 | 'code-signoff-field-date' => 'Table column header: timestamp of the sign-off. {{Identical|Date}}', |
308 | | - 'code-signoff-struckdate' => 'This is displayed in the date column for a struck sign-off. $1 is the timestamp of the sign-off, $2 is the timestamp of when it was struck. |
309 | | -Struck is the past tense of verb strike (as in delete).', |
| 308 | + 'code-signoff-struckdate' => 'This is displayed in the date column for a struck sign-off. $1 is the timestamp of the sign-off, $2 is the timestamp of when it was struck. Struck is the past tense of verb strike (as in delete).', |
310 | 309 | 'code-pathsearch-path' => '{{Identical|Path}}', |
311 | 310 | 'code-revfilter-cr_status' => '{{Identical|Status}}', |
312 | 311 | 'code-revfilter-cr_author' => '{{Identical|Author}}', |
Index: trunk/extensions/CodeReview/modules/ext.codereview.tooltips.js |
— | — | @@ -43,13 +43,6 @@ |
44 | 44 | var status = mw.html.escape( rev.status ); |
45 | 45 | var author = mw.html.escape( rev.author ); |
46 | 46 | |
47 | | - var tip = '<div class="mw-codereview-status-' + status + '" style="padding:5px 8px 4px; margin:-5px -8px -4px;">' |
48 | | - + 'r' + matches[2] |
49 | | - + ' [' + mw.msg( 'codereview-status-' + status ) + '] by ' |
50 | | - + author |
51 | | - + ( rev['*'] ? ' - ' + text : '' ) |
52 | | - + '</div>'; |
53 | | - |
54 | 47 | var tip = '<div class="mw-codereview-status-' + status + '" style="padding:5px 8px 4px; margin:-5px -8px -4px;">'; |
55 | 48 | |
56 | 49 | if ( rev[*] ) { |