Commit d20af4a2 by Greg Martin

Add VAL "Duplicate" status

Added duplicate video failed status for VAL.
parent 09cdc6f4
......@@ -44,6 +44,9 @@ class StatusDisplayStrings(object):
_COMPLETE = ugettext_noop("Ready")
# Translators: This is the status for a video that the servers have failed to process
_FAILED = ugettext_noop("Failed")
# Translators: This is the status for a video which has failed
# due to being flagged as a duplicate by an external or internal CMS
_DUPLICATE = ugettext_noop("Failed Duplicate")
# 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")
......@@ -61,6 +64,7 @@ class StatusDisplayStrings(object):
"file_complete": _COMPLETE,
"file_corrupt": _FAILED,
"pipeline_error": _FAILED,
"duplicate": _DUPLICATE,
"invalid_token": _INVALID_TOKEN,
"imported": _IMPORTED,
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment