${_('This unit has been published. To make changes, you must {link_start}edit a draft{link_end}.').format(link_start='', link_end='')}
${_('This is a draft of the published unit. To update the live version, you must {link_start}replace it with this draft{link_end}.').format(link_start='', link_end='')}
% if release_date is not None:
${_("This unit is scheduled to be released to students on {date} with the subsection {link_start}{name}{link_end}").format(
date=release_date,
name=subsection.display_name_with_default,
link_start=u''.format(url=subsection_url),
link_end=u'',
)}
% else:
${_("This unit is scheduled to be released to students with the subsection {link_start}{name}{link_end}").format(
name=subsection.display_name_with_default,
link_start=u''.format(url=subsection_url),
link_end=u'',
)}
% endif