From 98b9fb09cdbd847957dcf61255aad965e3dcf178 Mon Sep 17 00:00:00 2001 From: Sarina Canelake Date: Mon, 10 Nov 2014 16:30:48 -0500 Subject: [PATCH] Fix dashboard i18n --- lms/templates/dashboard/_dashboard_course_listing.html | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/lms/templates/dashboard/_dashboard_course_listing.html b/lms/templates/dashboard/_dashboard_course_listing.html index e7295864de..79c6e65ee3 100644 --- a/lms/templates/dashboard/_dashboard_course_listing.html +++ b/lms/templates/dashboard/_dashboard_course_listing.html @@ -185,9 +185,13 @@ %endif % if is_course_blocked:

- ${_('You can no longer access this course because payment has not yet been received. you can contact the account holder to request payment, or you can')} - ${_('unenroll')} - ${_('for this course.')} + ${_("You can no longer access this course because payment has not yet been received. You + can {link_start}contact the account holder{link_end} to request payment, or you can + {unenroll_link_start}unenroll{unenroll_link_end} from this course").format( + link_start='', + link_end='', + unenroll_link_start='', + unenroll_link_end="")}

%endif