Reword choose sender/reply to address pages

Make it clear that:

- In the case of text messages, it’s about who the message comes from
- In the case of emails, it’s about where the user will reply to
This commit is contained in:
Chris Hill-Scott
2017-11-13 11:31:12 +00:00
parent 03447c10da
commit beffb9e123
2 changed files with 5 additions and 5 deletions

View File

@@ -218,17 +218,17 @@ def get_sender_context(sender_details, template_type):
context = { context = {
'email': { 'email': {
'title': "Choose where to send replies", 'title': "Choose where to send replies",
'description': "Select an email address that recipients can reply to", 'description': 'Where should replies go?',
'field_name': 'email_address' 'field_name': 'email_address'
}, },
'letter': { 'letter': {
'title': 'Choose sender address', 'title': 'Choose sender address',
'description': 'Select an address that recipients can reply to', 'description': 'What should appear in the top right of the letter?',
'field_name': 'contact_block' 'field_name': 'contact_block'
}, },
'sms': { 'sms': {
'title': 'Chose text message sender', 'title': 'Chose text message sender',
'description': 'Select a text message sender that the recipients can reply to', 'description': 'Who should the message come from?',
'field_name': 'sms_sender' 'field_name': 'sms_sender'
} }
}[template_type] }[template_type]

View File

@@ -45,13 +45,13 @@ test_non_spreadsheet_files = glob(path.join('tests', 'non_spreadsheet_files', '*
mock_get_service_email_template, mock_get_service_email_template,
multiple_reply_to_email_addresses, multiple_reply_to_email_addresses,
'Choose where to send replies', 'Choose where to send replies',
'Select an email address that recipients can reply to' 'Where should replies go?',
), ),
( (
mock_get_service_template, mock_get_service_template,
multiple_sms_senders, multiple_sms_senders,
'Chose text message sender', 'Chose text message sender',
'Select a text message sender that the recipients can reply to' 'Who should the message come from?'
) )
]) ])
def test_show_correct_title_and_description_for_sender_type( def test_show_correct_title_and_description_for_sender_type(