diff --git a/lms/envs/common.py b/lms/envs/common.py index e1b2a6a505..a8bffb8232 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -41,6 +41,8 @@ from lms.djangoapps.lms_xblock.mixin import LmsBlockMixin # The display name of the platform to be used in templates/emails/etc. PLATFORM_NAME = "Your Platform Name Here" CC_MERCHANT_NAME = PLATFORM_NAME +# Shows up in the platform footer, eg "(c) COPYRIGHT_YEAR" +COPYRIGHT_YEAR = "2015" PLATFORM_FACEBOOK_ACCOUNT = "http://www.facebook.com/YourPlatformFacebookAccount" PLATFORM_TWITTER_ACCOUNT = "@YourPlatformTwitterAccount" diff --git a/lms/templates/footer-edx-new.html b/lms/templates/footer-edx-new.html index dd45d094da..80c1f6c412 100644 --- a/lms/templates/footer-edx-new.html +++ b/lms/templates/footer-edx-new.html @@ -31,7 +31,8 @@
-${_("© 2014 {platform_name}, some rights reserved").format(platform_name=settings.PLATFORM_NAME)}
+ ## Translators: '©' is an HTML character code for the copyright symbol. Please don't remove or change it. +${_("© {copyright_year} {platform_name}, some rights reserved").format( + platform_name=settings.PLATFORM_NAME, + copyright_year=settings.COPYRIGHT_YEAR + )} +