diff --git a/openedx/features/content_type_gating/partitions.py b/openedx/features/content_type_gating/partitions.py index df0735d53d..c2e7ebc3cf 100644 --- a/openedx/features/content_type_gating/partitions.py +++ b/openedx/features/content_type_gating/partitions.py @@ -65,7 +65,9 @@ def create_content_gating_partition(course): partition = content_gate_scheme.create_user_partition( id=CONTENT_GATING_PARTITION_ID, - name=_(u"Feature-based Enrollments"), + # Content gating partition name should not be marked for translations + # edX mobile apps expect it in english + name=u"Feature-based Enrollments", description=_(u"Partition for segmenting users by access to gated content types"), parameters={"course_id": six.text_type(course.id)} )