Commit 53ae1771 by David Baumgold

Curly quotes around course name

parent 16e2ee80
...@@ -197,7 +197,7 @@ ...@@ -197,7 +197,7 @@
if(_.contains(staffEmails, email)) { if(_.contains(staffEmails, email)) {
var msg = new CMS.Views.Prompt.Warning({ var msg = new CMS.Views.Prompt.Warning({
title: gettext("Already a course team member"), title: gettext("Already a course team member"),
message: _.template(gettext("{email} is already on the {course} team. If you're trying to add a new member, please double-check the email address you provided."), {email: email, course: course.escape('name')}, {interpolate: /\{(.+?)\}/g}), message: _.template(gettext("{email} is already on the “{course}” team. If you're trying to add a new member, please double-check the email address you provided."), {email: email, course: course.escape('name')}, {interpolate: /\{(.+?)\}/g}),
actions: { actions: {
primary: { primary: {
text: gettext("Return to team listing"), text: gettext("Return to team listing"),
...@@ -274,7 +274,7 @@ ...@@ -274,7 +274,7 @@
var email = $(this).data('id'); var email = $(this).data('id');
var msg = new CMS.Views.Prompt.Warning({ var msg = new CMS.Views.Prompt.Warning({
title: gettext("Are you sure?"), title: gettext("Are you sure?"),
message: _.template(gettext("Are you sure you want to delete {email} from the course team for {course}?"), {email: email, course: course.get('name')}, {interpolate: /\{(.+?)\}/g}), message: _.template(gettext("Are you sure you want to delete {email} from the course team for “{course}”?"), {email: email, course: course.get('name')}, {interpolate: /\{(.+?)\}/g}),
actions: { actions: {
primary: { primary: {
text: gettext("Delete"), text: gettext("Delete"),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment