diff --git a/modules/Surveys/Entry/Thanks.php b/modules/Surveys/Entry/Thanks.php
index 3b5fcd03334..009bc408592 100644
--- a/modules/Surveys/Entry/Thanks.php
+++ b/modules/Surveys/Entry/Thanks.php
@@ -2,6 +2,7 @@
$surveyName = !empty($_REQUEST['name']) ? $_REQUEST['name'] : 'Survey';
+$surveyThanks = translate('LBL_SURVEY_THANKS', 'Surveys');
?>
@@ -23,7 +24,7 @@
= $surveyName; ?>
-
Thanks for completing this survey.
+
= $surveyThanks; ?>
diff --git a/modules/Surveys/language/en_us.lang.php b/modules/Surveys/language/en_us.lang.php
index ab98c87839b..285f9680bbe 100644
--- a/modules/Surveys/language/en_us.lang.php
+++ b/modules/Surveys/language/en_us.lang.php
@@ -105,4 +105,5 @@
'LBL_SUBMIT' => 'Submit',
'LBL_STARS' => 'Stars',
'LBL_SURVEY_CLOSE_RESPONSE' => 'Thanks for your interest but this survey is now closed.',
+ 'LBL_SURVEY_THANKS' => 'Thanks for completing this survey.',
);