Commit 129428bb by Michael Youngstrom Committed by GitHub

Merge pull request #15749 from edx/revert-14836-teltek/i18n_certificate_date

Revert "Add i18n to date in certificate web"
parents 53ccd158 ca1ca99a
......@@ -98,7 +98,7 @@ def _update_certificate_context(context, user_certificate, platform_name):
# Translators: The format of the date includes the full name of the month
context['certificate_date_issued'] = _('{month} {day}, {year}').format(
month=strftime_localized(user_certificate.modified_date, "%B"),
month=user_certificate.modified_date.strftime("%B"),
day=user_certificate.modified_date.day,
year=user_certificate.modified_date.year
)
......
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