From 198e9c7c0e32621dfd6b292598280653d3a59581 Mon Sep 17 00:00:00 2001 From: David Baumgold Date: Thu, 18 Dec 2014 13:47:50 -0500 Subject: [PATCH] Do a better job translating "Program Manager" --- cms/templates/settings.html | 28 +++++++++++++++++++++++----- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/cms/templates/settings.html b/cms/templates/settings.html index ea12f2453a..d364fc0501 100644 --- a/cms/templates/settings.html +++ b/cms/templates/settings.html @@ -108,10 +108,17 @@ CMS.URL.UPLOAD_ASSET = '${upload_asset_url}';

${_("Promoting Your Course with edX")}

-

${_('Your course summary page will not be viewable until your ' - 'course has been announced. To provide content for the ' - 'page and preview it, follow the instructions provided ' - 'by your PM.')}

+

${_( + 'Your course summary page will not be viewable until your course ' + 'has been announced. To provide content for the page and preview ' + 'it, follow the instructions provided by your {manager}.').format( + manager='{pm}'.format( + ## Translators: This is a job title + program_manager=_("Program Manager"), + ## Translators: This is an abbreviation for "Program Manager", which is a job title + pm=_("PM"), + ) + )}

% endif @@ -189,7 +196,18 @@ CMS.URL.UPLOAD_ASSET = '${upload_asset_url}';

${_("These Dates Are Not Used When Promoting Your Course")}

-

${_('These dates impact when your courseware can be viewed, but they are not the dates shown on your course summary page. To provide the course start and registration dates as shown on your course summary page, follow the instructions provided by your PM.')}

+

${_( + 'These dates impact when your courseware can be viewed, ' + 'but they are not the dates shown on your course summary page. ' + 'To provide the course start and registration dates as shown on your course ' + 'summary page, follow the instructions provided by your {manager}.').format( + manager='{pm}'.format( + ## Translators: This is a job title + program_manager=_("Program Manager"), + ## Translators: This is an abbreviation for "Program Manager", which is a job title + pm=_("PM"), + ) + )}

% endif