diff --git a/app/main/views/send.py b/app/main/views/send.py index 7cc21680d..2eab37327 100644 --- a/app/main/views/send.py +++ b/app/main/views/send.py @@ -217,18 +217,18 @@ def set_sender(service_id, template_id): def get_sender_context(sender_details, template_type): context = { 'email': { - 'title': "Choose where to send replies", - 'description': "Select an email address that recipients can reply to", + 'title': 'Send to one recipient', + 'description': 'Where should replies go?', 'field_name': 'email_address' }, 'letter': { - 'title': 'Choose sender address', - 'description': 'Select an address that recipients can reply to', + 'title': 'Send to one recipient', + 'description': 'What should appear in the top right of the letter?', 'field_name': 'contact_block' }, 'sms': { - 'title': 'Chose text message sender', - 'description': 'Select a text message sender that the recipients can reply to', + 'title': 'Send to one recipient', + 'description': 'Who should the message come from?', 'field_name': 'sms_sender' } }[template_type] diff --git a/tests/app/main/views/test_send.py b/tests/app/main/views/test_send.py index 33363bd60..969b75523 100644 --- a/tests/app/main/views/test_send.py +++ b/tests/app/main/views/test_send.py @@ -44,14 +44,14 @@ test_non_spreadsheet_files = glob(path.join('tests', 'non_spreadsheet_files', '* ( mock_get_service_email_template, multiple_reply_to_email_addresses, - 'Choose where to send replies', - 'Select an email address that recipients can reply to' + 'Send to one recipient', + 'Where should replies go?', ), ( mock_get_service_template, multiple_sms_senders, - 'Chose text message sender', - 'Select a text message sender that the recipients can reply to' + 'Send to one recipient', + 'Who should the message come from?' ) ]) def test_show_correct_title_and_description_for_sender_type(