diff --git a/cms/djangoapps/contentstore/views/tests/test_transcript_settings.py b/cms/djangoapps/contentstore/views/tests/test_transcript_settings.py
index 901fb14905..32eb1a0edb 100644
--- a/cms/djangoapps/contentstore/views/tests/test_transcript_settings.py
+++ b/cms/djangoapps/contentstore/views/tests/test_transcript_settings.py
@@ -69,7 +69,7 @@ class TranscriptCredentialsTest(CourseTestCase):
},
({'error_type': TranscriptionProviderErrorType.INVALID_CREDENTIALS}, False),
400,
- '{\n "error": "Transcript credentials are not valid."\n}'
+ '{\n "error": "The information you entered is incorrect."\n}'
),
(
{
diff --git a/cms/djangoapps/contentstore/views/transcript_settings.py b/cms/djangoapps/contentstore/views/transcript_settings.py
index c400c3dc04..86374d469d 100644
--- a/cms/djangoapps/contentstore/views/transcript_settings.py
+++ b/cms/djangoapps/contentstore/views/transcript_settings.py
@@ -103,7 +103,7 @@ def transcript_credentials_handler(request, course_key_string):
# edx-video-pipeline doesn't support i18n translations yet.
error_type = error_response.get('error_type')
if error_type == TranscriptionProviderErrorType.INVALID_CREDENTIALS:
- error_message = _('Transcript credentials are not valid.')
+ error_message = _('The information you entered is incorrect.')
response = JsonResponse({'error': error_message}, status=400)
diff --git a/cms/templates/js/course-video-settings-update-org-credentials-footer.underscore b/cms/templates/js/course-video-settings-update-org-credentials-footer.underscore
index 0d93a55ca2..9de3376527 100644
--- a/cms/templates/js/course-video-settings-update-org-credentials-footer.underscore
+++ b/cms/templates/js/course-video-settings-update-org-credentials-footer.underscore
@@ -1,6 +1,6 @@