From a9fc3b035baeb9144ade736741ff2fcf0ec899bc Mon Sep 17 00:00:00 2001 From: Daniel Friedman Date: Tue, 14 Oct 2014 15:31:16 -0400 Subject: [PATCH] Verify cohort strings are scraped for translation --- .../instructor_dashboard_2/cohort-editor.underscore | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore b/lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore index 9c7c37fad1..0f2833a07e 100644 --- a/lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore +++ b/lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore @@ -3,11 +3,7 @@ <%- cohort.get('name') %> <%- 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 )