@@ -187,44 +187,44 @@ $(function() {
187
187
if ( ! has_patch ) {
188
188
next_steps . push (
189
189
"<a href='https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/submitting-patches/'>" +
190
- "To provide a patch </a> by sending a pull request . " +
190
+ "To send a pull request </a>. " +
191
191
"<a href='https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/submitting-patches/#claiming-tickets'>" +
192
192
"Claim the ticket</a> when you start working so that someone else doesn't duplicate effort. " +
193
193
"Before sending a pull request, review your work against the <a href='" +
194
194
"https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/submitting-patches/#patch-review-checklist'>" +
195
- "patch review checklist</a>. " +
196
- "Check the \"Has patch \" flag on the ticket after sending a pull request and " +
195
+ "contribution review checklist</a>. " +
196
+ "Check the \"Has pull request \" flag on the ticket after sending a pull request and " +
197
197
include_link_to_pr_msg
198
198
) ;
199
199
} else {
200
200
if ( needs_tests ) {
201
- next_steps . push ( 'To add tests to the patch , then uncheck the "Needs tests" flag on the ticket.' ) ;
201
+ next_steps . push ( 'To add tests to the pull request , then uncheck the "Needs tests" flag on the ticket.' ) ;
202
202
}
203
203
if ( needs_docs ) {
204
- next_steps . push ( 'To write documentation for the patch , then uncheck "Needs documentation" on the ticket.' ) ;
204
+ next_steps . push ( 'To write documentation for the pull request , then uncheck "Needs documentation" on the ticket.' ) ;
205
205
}
206
206
if ( patch_needs_improvement ) {
207
207
next_steps . push (
208
- "To improve the patch as described in the pull request review " +
208
+ "To improve the pull request as described in the pull request review " +
209
209
"comments or on this ticket, then uncheck \"Patch needs improvement\"."
210
210
) ;
211
211
}
212
212
if ( ! needs_tests && ! needs_docs && ! patch_needs_improvement ) {
213
213
next_steps . push (
214
- 'For anyone except the patch author to review the patch using the ' +
214
+ 'For anyone except the pull request author to review the pull request using the ' +
215
215
'<a href="https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/submitting-patches/#patch-review-checklist">' +
216
- 'patch review checklist</a> and either ' +
216
+ 'pull request review checklist</a> and either ' +
217
217
'mark the ticket as "Ready for checkin" if everything looks good, ' +
218
218
'or leave comments for improvement and mark the ticket as ' +
219
- '"Patch needs improvement".'
219
+ '"Pull request needs improvement".'
220
220
) ;
221
221
} else {
222
222
next_steps . push ( "<p>If creating a new pull request, " + include_link_to_pr_msg ) ;
223
223
}
224
224
}
225
225
} else if ( stage == 'Ready for checkin' ) {
226
226
next_steps . push (
227
- 'For a Django committer to do a final review of the patch and merge ' +
227
+ 'For a Django committer to do a final review of the pull request and merge ' +
228
228
'it if all looks good.'
229
229
) ;
230
230
} else if ( stage == 'Someday/Maybe' ) {
@@ -234,7 +234,7 @@ $(function() {
234
234
'<p>It could be an issue that\'s blocked until a future version of Django ' +
235
235
'(if so, Keywords will contain that version number). It could also ' +
236
236
'be an enhancement request that we might consider adding someday to the framework ' +
237
- 'if an excellent patch is submitted.</p>' +
237
+ 'if an excellent contribution is submitted.</p>' +
238
238
'<p>If you\'re interested in contributing to the issue, ' +
239
239
'raising your ideas on the <a href="http://groups.google.com/group/django-developers">django-developers</a> ' +
240
240
'mailing list certainly wouldn\'t hurt.<p>'
0 commit comments