diff --git a/cms/djangoapps/contentstore/views/videos.py b/cms/djangoapps/contentstore/views/videos.py index a9e5f0eab180d0596bbb92f8e7c16a2fc084c936..8cf5c2e15281195ae264b641928af81f4984420d 100644 --- a/cms/djangoapps/contentstore/views/videos.py +++ b/cms/djangoapps/contentstore/views/videos.py @@ -52,6 +52,8 @@ class StatusDisplayStrings(object): # Translators: This is the status for a video for which an invalid # processing token was provided in the course settings _INVALID_TOKEN = ugettext_noop("Invalid Token") + # Translators: This is the status for a video that was included in a course import + _IMPORTED = ugettext_noop("Imported") # Translators: This is the status for a video that is in an unknown state _UNKNOWN = ugettext_noop("Unknown") @@ -64,7 +66,8 @@ class StatusDisplayStrings(object): "file_complete": _COMPLETE, "file_corrupt": _FAILED, "pipeline_error": _FAILED, - "invalid_token": _INVALID_TOKEN + "invalid_token": _INVALID_TOKEN, + "imported": _IMPORTED, } @staticmethod