From 17e87f87ec2ab6f430abd739c9633015b9b0a5a7 Mon Sep 17 00:00:00 2001 From: Mushtaq Ali Date: Mon, 11 Sep 2017 16:29:54 +0500 Subject: [PATCH] Change transcript status text - EDUCATOR-1324 --- cms/djangoapps/contentstore/views/videos.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cms/djangoapps/contentstore/views/videos.py b/cms/djangoapps/contentstore/views/videos.py index 609af3ebe8..eaf610dd68 100644 --- a/cms/djangoapps/contentstore/views/videos.py +++ b/cms/djangoapps/contentstore/views/videos.py @@ -109,7 +109,7 @@ class StatusDisplayStrings(object): # Translators: This is the status for a video that is having its transcription in progress on servers _TRANSCRIPTION_IN_PROGRESS = ugettext_noop("Transcription in Progress") # Translators: This is the status for a video whose transcription is complete - _TRANSCRIPTION_READY = ugettext_noop("Transcription Ready") + _TRANSCRIPT_READY = ugettext_noop("Transcript Ready") _STATUS_MAP = { "upload": _UPLOADING, @@ -129,7 +129,7 @@ class StatusDisplayStrings(object): "invalid_token": _INVALID_TOKEN, "imported": _IMPORTED, "transcription_in_progress": _TRANSCRIPTION_IN_PROGRESS, - "transcription_ready": _TRANSCRIPTION_READY, + "transcription_ready": _TRANSCRIPT_READY, } @staticmethod