Commit 4d7be021 by Matt Drayer

Merge pull request #11140 from edx/saleem-latif/SOL-1431

SOL-1431: Remove no-op translations from devstack.py
parents b7b8c745 e3edb4e9
......@@ -170,17 +170,16 @@ FEATURES['CERTIFICATES_HTML_VIEW'] = True
########################## Course Discovery #######################
_ = lambda s: s
LANGUAGE_MAP = {'terms': {lang: display for lang, display in ALL_LANGUAGES}, 'name': _('Language')}
LANGUAGE_MAP = {'terms': {lang: display for lang, display in ALL_LANGUAGES}, 'name': 'Language'}
COURSE_DISCOVERY_MEANINGS = {
'org': {
'name': _('Organization'),
'name': 'Organization',
},
'modes': {
'name': _('Course Type'),
'name': 'Course Type',
'terms': {
'honor': _('Honor'),
'verified': _('Verified'),
'honor': 'Honor',
'verified': 'Verified',
},
},
'language': LANGUAGE_MAP,
......
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