remove translations from support form values

This commit is contained in:
Gabe Mulley
2018-12-13 16:06:21 -05:00
committed by Matthew Piatetsky
parent 772d8af669
commit 181a531aca

View File

@@ -28,11 +28,11 @@ class Provenance(Enum):
"""
Provenance enum
"""
course = _('Course')
org = _('Org')
site = _('Site')
global_ = _('Global')
default = _('Default')
course = 'Course'
org = 'Org'
site = 'Site'
global_ = 'Global'
default = 'Default'
class StackedConfigurationModel(ConfigurationModel):