diff --git a/lms/templates/dashboard/_dashboard_certificate_information.html b/lms/templates/dashboard/_dashboard_certificate_information.html
index 5f3436a7f718..57a1bc6cc16b 100644
--- a/lms/templates/dashboard/_dashboard_certificate_information.html
+++ b/lms/templates/dashboard/_dashboard_certificate_information.html
@@ -104,7 +104,7 @@
-
<%- interpolate(gettext(
- 'You have successfully completed all the requirements for the %(title)s %(type)s.'),
- { title: title, type: type }, true) %>
+
+ <%- StringUtils.interpolate(gettext('You have successfully completed all the requirements for the {title} {type}.'),
+ { title: title, type: type }
+ )
+ %>
<% } else { %>
<%- gettext('Your Program Journey') %>
- <%- interpolate(gettext(
- 'Track and plan your progress through the %(count)s courses in this program. To complete the program, you must earn a verified certificate for each course.'),
- { count: totalCount }, true) %>
+ <%- StringUtils.interpolate(gettext('Track and plan your progress through the {count} courses in this program. To complete the program, you must earn a verified certificate for each course.'),
+ { count: totalCount }
+ )
+ %>
<% } %>
diff --git a/lms/templates/learner_dashboard/program_header_view.underscore b/lms/templates/learner_dashboard/program_header_view.underscore
index 58b556faaa6a..e5a58487e466 100644
--- a/lms/templates/learner_dashboard/program_header_view.underscore
+++ b/lms/templates/learner_dashboard/program_header_view.underscore
@@ -7,7 +7,7 @@
<%- programData.title %>
-
Institutions
+
<%- gettext('Institutions') %>
<% if (programData.authoring_organizations.length) { %>
<% _.each(programData.authoring_organizations, function(org) { %>