Commit eaa37761 by Sarina Canelake Committed by David Baumgold

Update text in LMS footer as per legal

[OPEN-444]
parent 6a004026
...@@ -30,12 +30,17 @@ ...@@ -30,12 +30,17 @@
</div> </div>
<div class="footer-about-copyright"> <div class="footer-about-copyright">
## Translators: '&copy;' is an HTML character code for the copyright symbol. Please don't remove or change it. ## Using "edX Inc." explicitly here for copyright purposes (settings.PLATFORM_NAME is just "edX", and this footer is only used on edx.org)
<p>${_("&copy; {copyright_year} {platform_name}, some rights reserved").format( <p>&copy; ${settings.COPYRIGHT_YEAR} edX Inc.</p>
platform_name=settings.PLATFORM_NAME,
copyright_year=settings.COPYRIGHT_YEAR ## Site operators: Please do not remove this paragraph! This attributes back to edX and makes your acknowledgement of edX's trademarks clear.
)} <p>
</p> ## 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"<a href='https://www.edx.org/'>",
link_end=u"</a>"
)}
</p>
</div> </div>
<div class="footer-about-links"> <div class="footer-about-links">
......
...@@ -51,11 +51,15 @@ ...@@ -51,11 +51,15 @@
</p> </p>
</div> </div>
## Translators: '&copy;' is an HTML character code for the copyright symbol. Please don't remove or change it. <p class="copyright">&copy; ${settings.COPYRIGHT_YEAR} ${settings.PLATFORM_NAME}.</p>
<p class="copyright">${_("&copy; {copyright_year} {platform_name}, some rights reserved").format(
platform_name=settings.PLATFORM_NAME, ## Site operators: Please do not remove this paragraph! This attributes back to edX and makes your acknowledgement of edX's trademarks clear.
copyright_year=settings.COPYRIGHT_YEAR <p class="copyright">
)} ## 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"<a href='https://www.edx.org/'>",
link_end=u"</a>"
)}
</p> </p>
<nav class="nav-legal"> <nav class="nav-legal">
<ul> <ul>
......
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