Skip to content

Commit 5d9e6c0

Browse files
committed
Fixed the language of the nomination confirmation message.
- Legacy-Id: 6250
1 parent 86cf15c commit 5d9e6c0

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

ietf/nomcom/views.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -424,8 +424,10 @@ def process_nomination_status(request, year, nominee_position_id, state, date, h
424424
return HttpResponseForbidden("The nomination already was %s" % nominee_position.state)
425425

426426
state = get_object_or_404(NomineePositionState, slug=state)
427-
message = ('warning', "Are you sure to change the nomination on %s as %s?" % (nominee_position.position.name,
428-
state.name))
427+
message = ('warning',
428+
"Check Yes to set the state of your nomination to %s to %s (this"+
429+
"is not a final commitment - you can notify us later if you need to change this)" %
430+
(nominee_position.position.name, state.name))
429431
if request.method == 'POST':
430432
nominee_position.state = state
431433
nominee_position.save()

0 commit comments

Comments
 (0)