Merge pull request #6501 from edx/adam/update-copy-date
update copyright dates
This commit is contained in:
@@ -31,7 +31,7 @@ import lms.envs.common
|
||||
# Although this module itself may not use these imported variables, other dependent modules may.
|
||||
from lms.envs.common import (
|
||||
USE_TZ, TECH_SUPPORT_EMAIL, PLATFORM_NAME, BUGS_EMAIL, DOC_STORE_CONFIG, ALL_LANGUAGES, WIKI_ENABLED, MODULESTORE,
|
||||
update_module_store_settings, ASSET_IGNORE_REGEX
|
||||
update_module_store_settings, ASSET_IGNORE_REGEX, COPYRIGHT_YEAR
|
||||
)
|
||||
from path import path
|
||||
from warnings import simplefilter
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<div class="wrapper-footer wrapper">
|
||||
<footer class="primary" role="contentinfo">
|
||||
<div class="colophon">
|
||||
<p>© 2014 <a href="http://www.edx.org" rel="external">edX</a>. ${ _("All rights reserved.")}</p>
|
||||
<p>© ${settings.COPYRIGHT_YEAR} <a href="${marketing_link('ROOT')}" rel="external">${settings.PLATFORM_NAME}</a>. ${ _("All rights reserved.")}</p>
|
||||
</div>
|
||||
|
||||
<nav class="nav-peripheral">
|
||||
|
||||
@@ -32,7 +32,11 @@
|
||||
|
||||
<div class="footer-about-copyright">
|
||||
## Translators: '©' is an HTML character code for the copyright symbol. Please don't remove or change it.
|
||||
<p>${_("© {copyright_year} edX, some rights reserved.").format(copyright_year=settings.COPYRIGHT_YEAR)}</p>
|
||||
<p>${_("© {copyright_year} {platform_name}, some rights reserved").format(
|
||||
platform_name=settings.PLATFORM_NAME,
|
||||
copyright_year=settings.COPYRIGHT_YEAR
|
||||
)}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="footer-about-links">
|
||||
|
||||
Reference in New Issue
Block a user