Index: trunk/extensions/CodeReview/CodeReview.i18n.php |
— | — | @@ -52,6 +52,7 @@ |
53 | 53 | 'code-field-user' => 'Commenter', |
54 | 54 | 'code-field-message' => 'Commit summary', |
55 | 55 | 'code-field-status' => 'Status', |
| 56 | + 'code-field-status-description' => 'Status description', |
56 | 57 | 'code-field-timestamp' => 'Date', |
57 | 58 | 'code-field-comments' => 'Notes', |
58 | 59 | 'code-field-path' => 'Path', |
— | — | @@ -89,7 +90,7 @@ |
90 | 91 | 'code-status-fixme' => 'fixme', |
91 | 92 | 'code-status-desc-fixme' => 'A reviewer marked this revision introduce a bug or is broken. It should be corrected.', |
92 | 93 | 'code-status-reverted' => 'reverted', |
93 | | - 'code-status-desc-reverted' => 'Revision was thrown away by a later revision.', |
| 94 | + 'code-status-desc-reverted' => 'Revision was undone by a later revision.', |
94 | 95 | 'code-status-resolved' => 'resolved', |
95 | 96 | 'code-status-desc-resolved' => 'Revision had an issue which was addressed by a later revision.', |
96 | 97 | 'code-status-ok' => 'ok', |
Index: trunk/extensions/CodeReview/ui/CodeStatusListView.php |
— | — | @@ -23,7 +23,8 @@ |
24 | 24 | . "<td>" . wfMsg( "code-status-desc-" . $state ) . "</td></tr>\n" ; |
25 | 25 | } |
26 | 26 | $wgOut->addHTML( '<table class="TablePager">' |
27 | | - . '<tr><th>toto</th><th>tata</th></tr>' |
| 27 | + . '<tr><th>' . wfMsg( 'code-field-status' ) . '</th>' |
| 28 | + . '<th>' . wfMsg( 'code-field-status-description' ) . '</th></tr>' |
28 | 29 | . $table_rows |
29 | 30 | . '</table>' |
30 | 31 | ); |