From 53ae1771781813b04f6f3438518f21c61f0a4512 Mon Sep 17 00:00:00 2001 From: David Baumgold Date: Thu, 1 Aug 2013 13:46:40 -0400 Subject: [PATCH] Curly quotes around course name --- cms/templates/manage_users.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cms/templates/manage_users.html b/cms/templates/manage_users.html index 1ae948fab6..e8026677e8 100644 --- a/cms/templates/manage_users.html +++ b/cms/templates/manage_users.html @@ -197,7 +197,7 @@ if(_.contains(staffEmails, email)) { var msg = new CMS.Views.Prompt.Warning({ 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: { primary: { text: gettext("Return to team listing"), @@ -274,7 +274,7 @@ var email = $(this).data('id'); var msg = new CMS.Views.Prompt.Warning({ 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: { primary: { text: gettext("Delete"),