Commit 33cfb9c7 by Daniel Friedman

Merge pull request #5582 from edx/dan-f/cohorts-internationalization

Ensure all user-facing cohort-related strings are internationalized
parents a3ac57bb a9fc3b03
......@@ -3,11 +3,7 @@
<span class="title-value"><%- cohort.get('name') %></span>
<span class="group-count"><%-
interpolate(
ngettext(
'(contains 1 student)',
'(contains %(student_count)s students)',
cohort.get('user_count')
),
ngettext('(contains %(student_count)s student)', '(contains %(student_count)s students)', cohort.get('user_count')),
{ student_count: cohort.get('user_count') },
true
)
......
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