Skip to content
Snippets Groups Projects
Commit a9fc3b03 authored by Daniel Friedman's avatar Daniel Friedman
Browse files

Verify cohort strings are scraped for translation

parent 7e52ba87
No related merge requests found
......@@ -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
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment