Verify cohort strings are scraped for translation

This commit is contained in:
Daniel Friedman
2014-10-14 15:31:16 -04:00
parent 7e52ba872e
commit a9fc3b035b

View File

@@ -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
)