diff --git a/lms/djangoapps/teams/static/teams/js/collections/topic.js b/lms/djangoapps/teams/static/teams/js/collections/topic.js index 83dedd8941..538e339762 100644 --- a/lms/djangoapps/teams/static/teams/js/collections/topic.js +++ b/lms/djangoapps/teams/static/teams/js/collections/topic.js @@ -13,6 +13,7 @@ delete this.server_api['sort_order']; // Sort order is not specified for the Team API this.registerSortableField('name', gettext('name')); + // Translators: This refers to the number of teams (a count of how many teams there are) this.registerSortableField('team_count', gettext('team count')); }, diff --git a/lms/templates/courseware/progress.html b/lms/templates/courseware/progress.html index 0fa64263eb..564ded6c8c 100644 --- a/lms/templates/courseware/progress.html +++ b/lms/templates/courseware/progress.html @@ -75,6 +75,7 @@ from django.utils.http import urlquote_plus %elif is_generating:
${_("We're creating your certificate. You can keep working in your courses and a link to it will appear here and on your Dashboard when it is ready.")}
- ${_(u"Congratulations! You are eligible to receive course credit for successfully completing your edX course! Click {link} to get your credit now.").format( - link=u'here'.format( + ${_(u"Congratulations! You are eligible to receive course credit for successfully completing your {platform_name} course! {link_start}Get your credit now.{link_end}").format( + link_start=u''.format( dashboard_url=dashboard_link - ) + ), + link_end=u'', + platform_name=settings.PLATFORM_NAME )}
@@ -42,16 +44,18 @@- ${_(u'To get course credit, simply go to your {link} and click the Get Credit button. No application, transcript, or grade report is required.').format( - link=u'edX dashboard'.format( + ${_(u'To get course credit, simply go to your {link_start}{platform_name} dashboard{link_end} and click the Get Credit button. No application, transcript, or grade report is required.').format( + link_start=u''.format( dashboard_url=dashboard_link - ) + ), + link_end=u'', + platform_name=settings.PLATFORM_NAME )}
- ${_(u"We hope you enjoyed the course, and we hope to see you in future edX courses!")}
- ${_(u"The edX team")}
+ ${_(u"We hope you enjoyed the course, and we hope to see you in future {platform_name} courses!").format(platform_name=settings.PLATFORM_NAME)}
+ ${_(u"The {platform_name} Team").format(platform_name=settings.PLATFORM_NAME)}
- ${_(u"For more information on credit at edX, click {link}.").format( - link=u'here' + ${_(u"{link_start}Click here for more information on credit at {platform_name}{link_end}.").format( + link_start=u'', + link_end=u'', + platform_name=settings.PLATFORM_NAME )}