Index: trunk/extensions/CodeReview/codereview.sql |
— | — | @@ -146,7 +146,7 @@ |
147 | 147 | -- cc_id of parent comment if a threaded child, otherwise NULL |
148 | 148 | cc_parent int, |
149 | 149 | |
150 | | - -- User id/name of the commentor |
| 150 | + -- User id/name of the commenter |
151 | 151 | cc_user int not null, |
152 | 152 | cc_user_text varchar(255) not null, |
153 | 153 | |
— | — | @@ -189,7 +189,7 @@ |
190 | 190 | -- Timestamp of the change, in MediaWiki format. |
191 | 191 | cpc_timestamp binary(14) not null default '', |
192 | 192 | |
193 | | - -- User id/name of the commentor |
| 193 | + -- User id/name of the commenter |
194 | 194 | cpc_user int not null, |
195 | 195 | cpc_user_text varchar(255) not null, |
196 | 196 | |
Index: trunk/extensions/CodeReview/CodeReview.i18n.php |
— | — | @@ -34,7 +34,7 @@ |
35 | 35 | 'code-author-unlinksuccess' => 'Author $1 has been unlinked', |
36 | 36 | 'code-field-id' => 'Revision', |
37 | 37 | 'code-field-author' => 'Author', |
38 | | - 'code-field-user' => 'Commentator', |
| 38 | + 'code-field-user' => 'Commenter', |
39 | 39 | 'code-field-message' => 'Commit summary', |
40 | 40 | 'code-field-status' => 'Status', |
41 | 41 | 'code-field-timestamp' => 'Date', |
Index: trunk/extensions/CodeReview/CodeRevision.php |
— | — | @@ -227,7 +227,7 @@ |
228 | 228 | $commentId = $dbw->insertId(); |
229 | 229 | $dbw->commit(); |
230 | 230 | |
231 | | - // Give email notices to committer and commentors |
| 231 | + // Give email notices to committer and commenters |
232 | 232 | global $wgCodeReviewENotif, $wgEnableEmail; |
233 | 233 | if( $wgCodeReviewENotif && $wgEnableEmail ) { |
234 | 234 | // Make list of users to send emails to |
— | — | @@ -240,7 +240,7 @@ |
241 | 241 | $title->setFragment( "#c{$commentId}" ); |
242 | 242 | $url = $title->getFullUrl(); |
243 | 243 | foreach( $users as $userId => $user ) { |
244 | | - // No sense in notifying this commentor |
| 244 | + // No sense in notifying this commenter |
245 | 245 | if( $wgUser->getId() == $user->getId() ) { |
246 | 246 | continue; |
247 | 247 | } |