aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Somerville <matthew-github@dracos.co.uk>2016-09-13 16:22:43 +0100
committerMatthew Somerville <matthew-github@dracos.co.uk>2016-09-14 13:32:46 +0100
commit0ea97a53bd11a05f9a0b9bac12964e080b593ba0 (patch)
treea0e4abf257c204a7a58964e511cc4f2e148a52f4
parent3d317877844973587766b6788a462bac16543f40 (diff)
Update contact success message text.
-rw-r--r--t/app/controller/contact.t4
-rw-r--r--templates/web/base/contact/submit.html2
2 files changed, 3 insertions, 3 deletions
diff --git a/t/app/controller/contact.t b/t/app/controller/contact.t
index dd94fc431..7c2769b9c 100644
--- a/t/app/controller/contact.t
+++ b/t/app/controller/contact.t
@@ -250,7 +250,7 @@ for my $test (
$mech->get_ok('/contact');
}
$mech->submit_form_ok( { with_fields => $test->{fields} } );
- $mech->content_contains('Thank you for your feedback');
+ $mech->content_contains('Thank you for your enquiry');
my $email = $mech->get_email;
@@ -376,7 +376,7 @@ for my $test (
$mech->clear_emails_ok;
$mech->get_ok('/contact');
$mech->submit_form_ok( { with_fields => $test->{fields} } );
- $mech->content_contains('Thank you for your feedback');
+ $mech->content_contains('Thank you for your enquiry');
$mech->email_count_is(1);
}
};
diff --git a/templates/web/base/contact/submit.html b/templates/web/base/contact/submit.html
index 5adb87e2d..4bf82dcd6 100644
--- a/templates/web/base/contact/submit.html
+++ b/templates/web/base/contact/submit.html
@@ -3,7 +3,7 @@
[% IF success %]
<div class="confirmation-header">
- <h1>[% loc('Thank you for your feedback') %]</h1>
+ <h1>[% loc('Thank you for your enquiry') %]</h1>
<p>[% loc('We’ll get back to you as soon as we can.') %]</p>
</div>