diff --git a/cms/templates/widgets/footer.html b/cms/templates/widgets/footer.html index 53a96538f2f4..b1828017b9ec 100644 --- a/cms/templates/widgets/footer.html +++ b/cms/templates/widgets/footer.html @@ -1,3 +1,5 @@ +## mako +<%page expression_filter="h"/> <%! from django.utils.translation import ugettext as _ from django.urls import reverse @@ -5,6 +7,7 @@ from django.conf import settings import pytz from cms.djangoapps.contentstore.config.waffle import waffle, ENABLE_ACCESSIBILITY_POLICY_PAGE +from openedx.core.djangolib.markup import HTML, Text %>
- ## Translators: 'EdX', 'edX', 'Studio', and 'Open edX' are trademarks of 'edX Inc.'. Please do not translate any of these trademarks and company names. - ${_("EdX, Open edX, Studio, and the edX and Open edX logos are registered trademarks or trademarks of {link_start}edX Inc.{link_end}").format( - link_start=u"", - link_end=u"" + ## Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. Please do not translate any of these trademarks and company names. + ${Text(_("edX, Open edX, and the edX and Open edX logos are registered trademarks of {link_start}edX Inc.{link_end}")).format( + link_start=HTML(u""), + link_end=HTML(u"") )}
- ## Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. Please do not translate any of these trademarks and company names. - ${_("EdX, Open edX, and the edX and Open edX logos are registered trademarks or trademarks of {link_start}edX Inc.{link_end}").format( - link_start=u"", - link_end=u"" + ## Translators: 'edX' and 'Open edX' are trademarks of 'edX Inc.'. Please do not translate any of these trademarks and company names. + ${Text(_("edX, Open edX, and the edX and Open edX logos are registered trademarks of {link_start}edX Inc.{link_end}")).format( + link_start=HTML(u""), + link_end=HTML(u"") )}