diff --git a/cms/static/js/views/utils/create_course_utils.js b/cms/static/js/views/utils/create_course_utils.js index 14f0327cfd..77799da1df 100644 --- a/cms/static/js/views/utils/create_course_utils.js +++ b/cms/static/js/views/utils/create_course_utils.js @@ -5,7 +5,8 @@ define(['jquery', 'gettext', 'common/js/components/utils/view_utils', 'js/views/ function($, gettext, ViewUtils, CreateUtilsFactory) { 'use strict'; return function(selectors, classes) { - var keyLengthViolationMessage = gettext('The combined length of the organization, course number, and course run fields cannot be more than <%=limit%> characters.'); + var keyLengthViolationMessage = gettext('The combined length of the organization, course number, ' + + 'and course run fields cannot be more than <%- limit %> characters.'); var keyFieldSelectors = [selectors.org, selectors.number, selectors.run]; var nonEmptyCheckFieldSelectors = [selectors.name, selectors.org, selectors.number, selectors.run]; diff --git a/cms/static/js/views/utils/create_library_utils.js b/cms/static/js/views/utils/create_library_utils.js index f024580b42..11f17dbc03 100644 --- a/cms/static/js/views/utils/create_library_utils.js +++ b/cms/static/js/views/utils/create_library_utils.js @@ -5,7 +5,8 @@ define(['jquery', 'gettext', 'common/js/components/utils/view_utils', 'js/views/ function($, gettext, ViewUtils, CreateUtilsFactory) { 'use strict'; return function(selectors, classes) { - var keyLengthViolationMessage = gettext('The combined length of the organization and library code fields cannot be more than <%=limit%> characters.'); + var keyLengthViolationMessage = gettext('The combined length of the organization and library code fields' + + ' cannot be more than <%- limit %> characters.'); var keyFieldSelectors = [selectors.org, selectors.number]; var nonEmptyCheckFieldSelectors = [selectors.name, selectors.org, selectors.number]; diff --git a/lms/templates/commerce/provider.underscore b/lms/templates/commerce/provider.underscore index 7f40e192ea..d86955eb39 100644 --- a/lms/templates/commerce/provider.underscore +++ b/lms/templates/commerce/provider.underscore @@ -1,27 +1,32 @@