diff --git a/app/templates/views/support/thanks.html b/app/templates/views/support/thanks.html index 182b76128..95797197c 100644 --- a/app/templates/views/support/thanks.html +++ b/app/templates/views/support/thanks.html @@ -19,14 +19,14 @@ {% if out_of_hours %} We’ll reply within one working day. {% else %} - We’ll read it in the next 30 minutes and reply within one + We’ll read your message in the next 30 minutes and reply within one working day. {% endif %} {% else %} {% if out_of_hours %} - We’ll read it when we’re back in the office. + We’ll read your message when we’re back in the office. {% else %} - We’ll read it in the next 30 minutes. + We’ll read your message in the next 30 minutes. {% endif %} {% endif %} {% endif %} diff --git a/tests/app/main/views/test_feedback.py b/tests/app/main/views/test_feedback.py index 6ff655ca6..bcf466689 100644 --- a/tests/app/main/views/test_feedback.py +++ b/tests/app/main/views/test_feedback.py @@ -551,18 +551,18 @@ def test_bat_email_page( # Anonymous tickets don’t promise a reply ( False, False, False, - 'We’ll read it in the next 30 minutes.', + 'We’ll read your message in the next 30 minutes.', ), ( False, False, True, - 'We’ll read it when we’re back in the office.', + 'We’ll read your message when we’re back in the office.', ), # When we look at your ticket depends on whether we’re in normal # business hours ( False, True, False, - 'We’ll read it in the next 30 minutes and reply within one working day.', + 'We’ll read your message in the next 30 minutes and reply within one working day.', ), ( False, True, True,