Commit 5a8d0f52 by Sylvia Pearce Committed by Waheed Ahmed

Update email messages for Publisher

parent 8b2944c6
......@@ -288,11 +288,12 @@ class UpdateCourseRunViewTests(TestCase):
# Verify that `lms_course_id` and `changed_by` are not None
self.assert_course_key_and_changed_by(lms_course_id=lms_course_id, changed_by=self.user)
course_key = CourseKey.from_string(lms_course_id)
# Assert email sent
self.assert_email_sent(
reverse('publisher:publisher_course_run_detail', kwargs={'pk': self.course_run.id}),
'Studio instance created',
'EdX has created a Studio instance for '
'Studio URL created: {title} {run}'.format(title=self.course_run.course.title, run=course_key.run),
'has created a Studio URL'
)
def assert_course_key_and_changed_by(self, lms_course_id=None, changed_by=None):
......@@ -756,7 +757,7 @@ class ChangeCourseRunStateViewTests(TestCase):
self.assertEqual([course.course_team_admin.email], mail.outbox[0].to)
course_key = CourseKey.from_string(self.course_run.lms_course_id)
expected_subject = 'Publication complete: {course_name} {run_number}'.format(
expected_subject = 'Publication complete: About page for {course_name} {run_number}'.format(
course_name=course.title,
run_number=course_key.run
)
......
......@@ -14,16 +14,19 @@ from course_discovery.apps.publisher.utils import is_email_notification_enabled
logger = logging.getLogger(__name__)
def send_email_for_studio_instance_created(course_run, updated_text=_('created')):
def send_email_for_studio_instance_created(course_run):
""" Send an email to course team on studio instance creation.
Arguments:
course_run (CourseRun): CourseRun object
updated_text (String): String object
"""
try:
course_key = CourseKey.from_string(course_run.lms_course_id)
object_path = reverse('publisher:publisher_course_run_detail', kwargs={'pk': course_run.id})
subject = _('Studio instance {updated_text}').format(updated_text=updated_text) # pylint: disable=no-member
subject = _('Studio URL created: {title} {run_number}').format( # pylint: disable=no-member
title=course_run.course.title,
run_number=course_key.run
)
to_addresses = [course_run.course.course_team_admin.email]
from_address = settings.PUBLISHER_FROM_EMAIL
......@@ -32,7 +35,6 @@ def send_email_for_studio_instance_created(course_run, updated_text=_('created')
project_coordinator = course_run.course.project_coordinator
context = {
'updated_text': updated_text,
'course_run': course_run,
'course_run_page_url': 'https://{host}{path}'.format(
host=Site.objects.get_current().domain.strip('/'), path=object_path
......@@ -41,7 +43,8 @@ def send_email_for_studio_instance_created(course_run, updated_text=_('created')
'from_address': from_address,
'course_team_name': course_team_admin.get_full_name() or course_team_admin.username,
'project_coordinator_name': project_coordinator.get_full_name() or project_coordinator.username,
'contact_us_email': project_coordinator.email
'contact_us_email': project_coordinator.email,
'studio_url': course_run.studio_url
}
txt_template_path = 'publisher/email/studio_instance_created.txt'
......@@ -70,7 +73,7 @@ def send_email_for_course_creation(course, course_run):
txt_template = 'publisher/email/course_created.txt'
html_template = 'publisher/email/course_created.html'
subject = _('New Studio instance request for {title}').format(title=course.title) # pylint: disable=no-member
subject = _('Studio URL requested: {title}').format(title=course.title) # pylint: disable=no-member
project_coordinator = course.project_coordinator
course_team = course.course_team_admin
......@@ -242,7 +245,8 @@ def send_email_for_send_for_review_course_run(course_run, user):
'sender_team': 'course team' if user_role.role == PublisherUserRole.CourseTeam else 'project coordinators',
'page_url': 'https://{host}{path}'.format(
host=Site.objects.get_current().domain.strip('/'), path=page_path
)
),
'studio_url': course_run.studio_url
}
send_course_workflow_email(course, user, subject, txt_template, html_template, context, recipient_user)
......@@ -469,7 +473,7 @@ def send_course_run_published_email(course_run):
try:
if is_email_notification_enabled(course_team_user):
course_key = CourseKey.from_string(course_run.lms_course_id)
subject = _('Publication complete: {course_name} {run_number}').format( # pylint: disable=no-member
subject = _('Publication complete: About page for {course_name} {run_number}').format( # pylint: disable=no-member
course_name=course_run.course.title,
run_number=course_key.run
)
......
......@@ -26,7 +26,7 @@ class StudioInstanceCreatedEmailTests(TestCase):
def setUp(self):
super(StudioInstanceCreatedEmailTests, self).setUp()
self.user = UserFactory()
self.course_run = factories.CourseRunFactory()
self.course_run = factories.CourseRunFactory(lms_course_id='course-v1:edX+DemoX+Demo_Course')
# add user in course-user-role table
factories.CourseUserRoleFactory(
......@@ -55,10 +55,14 @@ class StudioInstanceCreatedEmailTests(TestCase):
""" Verify that emails sent successfully for studio instance created."""
emails.send_email_for_studio_instance_created(self.course_run)
course_key = CourseKey.from_string(self.course_run.lms_course_id)
self.assert_email_sent(
reverse('publisher:publisher_course_run_detail', kwargs={'pk': self.course_run.id}),
'Studio instance created',
'EdX has created a Studio instance for'
'Studio URL created: {title} {run_number}'.format(
title=self.course_run.course.title,
run_number=course_key.run
),
'created a Studio URL for the'
)
def assert_email_sent(self, object_path, subject, expected_body):
......@@ -71,7 +75,7 @@ class StudioInstanceCreatedEmailTests(TestCase):
self.assertIn(expected_body, body)
page_url = 'https://{host}{path}'.format(host=Site.objects.get_current().domain.strip('/'), path=object_path)
self.assertIn(page_url, body)
self.assertIn('You can now edit this course in Studio.', body)
self.assertIn('Enter course run content in Studio.', body)
self.assertIn('Thanks', body)
self.assertIn('This email address is unable to receive replies. For questions or comments', body)
self.assertIn(self.course_team.full_name, body)
......@@ -124,7 +128,7 @@ class CourseCreatedEmailTests(TestCase):
""" Verify that studio instance request email sent successfully."""
emails.send_email_for_course_creation(self.course_run.course, self.course_run)
subject = 'New Studio instance request for {title}'.format(title=self.course_run.course.title)
subject = 'Studio URL requested: {title}'.format(title=self.course_run.course.title)
self.assert_email_sent(subject)
def assert_email_sent(self, subject):
......@@ -136,7 +140,7 @@ class CourseCreatedEmailTests(TestCase):
body = mail.outbox[0].body.strip()
self.assertIn('{name} created the'.format(name=self.course_team.full_name), body)
self.assertIn('{dashboard_url}'.format(dashboard_url=reverse('publisher:publisher_dashboard')), body)
self.assertIn('Please create a Studio instance for this course', body)
self.assertIn('Please create a Studio URL for this course.', body)
self.assertIn('Thanks', body)
def test_email_not_sent_with_notification_disabled(self):
......@@ -370,7 +374,7 @@ class CourseRunMarkAsReviewedEmailTests(TestCase):
page_path = reverse('publisher:publisher_course_run_detail', kwargs={'pk': self.course_run.id})
page_url = 'https://{host}{path}'.format(host=Site.objects.get_current().domain.strip('/'), path=page_path)
self.assertIn(page_url, body)
self.assertIn('You can now submit a request for a preview of the course run About page.', body)
self.assertIn('The review for this course run is complete.', body)
class CourseRunPreviewEmailTests(TestCase):
......@@ -421,7 +425,7 @@ class CourseRunPreviewEmailTests(TestCase):
page_path = reverse('publisher:publisher_course_run_detail', kwargs={'pk': self.run_state.course_run.id})
page_url = 'https://{host}{path}'.format(host=Site.objects.get_current().domain.strip('/'), path=page_path)
self.assertIn(page_url, body)
self.assertIn('The course run is now ready for publication.', body)
self.assertIn('You can now publish this About page.', body)
def test_preview_accepted_email_with_error(self):
""" Verify that email failure log error message."""
......@@ -523,7 +527,7 @@ class CourseRunPublishedEmailTests(TestCase):
emails.send_course_run_published_email(self.course_run)
course_key = CourseKey.from_string(self.course_run.lms_course_id)
subject = 'Publication complete: {course_name} {run_number}'.format(
subject = 'Publication complete: About page for {course_name} {run_number}'.format(
course_name=self.course_run.course.title,
run_number=course_key.run
)
......@@ -531,9 +535,7 @@ class CourseRunPublishedEmailTests(TestCase):
self.assertEqual([self.course.course_team_admin.email], mail.outbox[0].to)
self.assertEqual(str(mail.outbox[0].subject), subject)
body = mail.outbox[0].body.strip()
page_path = reverse('publisher:publisher_course_run_detail', kwargs={'pk': self.course_run.id})
page_url = 'https://{host}{path}'.format(host=Site.objects.get_current().domain.strip('/'), path=page_path)
self.assertIn(page_url, body)
self.assertIn(self.course_run.preview_url, body)
self.assertIn(self.course_run.preview_url, body)
self.assertIn('has been published', body)
......
......@@ -14,6 +14,7 @@ from django.forms import model_to_dict
from django.test import TestCase
from guardian.shortcuts import assign_perm
from mock import patch
from opaque_keys.edx.keys import CourseKey
from pytz import timezone
from testfixtures import LogCapture
......@@ -409,7 +410,7 @@ class CreateCourseRunViewTests(TestCase):
# Verify that and email is sent for studio instance request to project coordinator.
self.assertEqual(len(mail.outbox), 1)
self.assertEqual([self.course.project_coordinator.email], mail.outbox[0].to)
expected_subject = 'New Studio instance request for {title}'.format(title=self.course.title)
expected_subject = 'Studio URL requested: {title}'.format(title=self.course.title)
self.assertEqual(str(mail.outbox[0].subject), expected_subject)
def test_seat_without_price(self):
......@@ -2534,10 +2535,11 @@ class CourseRunEditViewTests(TestCase):
self.new_course_run = CourseRun.objects.get(id=self.new_course_run.id)
self.assertEqual(self.new_course_run.lms_course_id, self.updated_dict['lms_course_id'])
course_key = CourseKey.from_string(self.new_course_run.lms_course_id)
self.assert_email_sent(
reverse('publisher:publisher_course_run_detail', kwargs={'pk': self.new_course_run.id}),
'Studio instance updated',
'EdX has updated a Studio instance for '
'Studio URL created: {title} {run}'.format(title=self.new_course.title, run=course_key.run),
'has created a Studio URL'
)
def test_effort_on_edit_page(self):
......@@ -2885,5 +2887,5 @@ class CreateRunFromDashboardViewTests(TestCase):
# Verify that and email is sent for studio instance request to project coordinator.
self.assertEqual(len(mail.outbox), 1)
self.assertEqual([self.course.project_coordinator.email], mail.outbox[0].to)
expected_subject = 'New Studio instance request for {title}'.format(title=self.course.title)
expected_subject = 'Studio URL requested: {title}'.format(title=self.course.title)
self.assertEqual(str(mail.outbox[0].subject), expected_subject)
......@@ -685,7 +685,7 @@ class CourseRunEditView(mixins.LoginRequiredMixin, mixins.PublisherPermissionMix
course_run.course_run_state.change_state(state=CourseStateChoices.Draft, user=user)
if course_run.lms_course_id and lms_course_id != course_run.lms_course_id:
emails.send_email_for_studio_instance_created(course_run, updated_text=_('updated'))
emails.send_email_for_studio_instance_created(course_run)
# pylint: disable=no-member
messages.success(request, _('Course run updated successfully.'))
......
......@@ -112,7 +112,7 @@ def send_email_decline_preview(comment, course_run, preview_url):
# Translators: subject_desc will be Preview Decline for course run,
# 'title' will be the value of course title.
subject = _('Preview reviewed: {course_name}').format( # pylint: disable=no-member
subject = _('Preview declined: {course_name}').format( # pylint: disable=no-member
course_name=course_name
)
......
......@@ -218,11 +218,10 @@ class CommentsEmailTests(TestCase):
course_key = CourseKey.from_string(self.course_run.lms_course_id)
comment = self._create_decline_comment()
subject = 'Preview reviewed: {title} {run}'.format(title=self.course.title, run=course_key.run)
subject = 'Preview declined: {title} {run}'.format(title=self.course.title, run=course_key.run)
self.assertEqual([user.email], mail.outbox[0].to)
self.assertEqual(str(mail.outbox[0].subject), subject)
body = 'has reviewed the preview for'.format(
url=self.url,
body = 'has declined the preview of the About page for the course run of {title}'.format(
title=self.course.title
)
self.assertIn(body, str(mail.outbox[0].body.strip()))
......
......@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-12 12:13+0500\n"
"POT-Creation-Date: 2017-05-15 12:57+0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
......@@ -496,17 +496,13 @@ msgid "Approved"
msgstr ""
#: apps/publisher/emails.py
msgid "created"
msgstr ""
#: apps/publisher/emails.py
#, python-brace-format
msgid "Studio instance {updated_text}"
msgid "Studio URL created: {title} {run_number}"
msgstr ""
#: apps/publisher/emails.py
#, python-brace-format
msgid "New Studio instance request for {title}"
msgid "Studio URL requested: {title}"
msgstr ""
#: apps/publisher/emails.py
......@@ -541,7 +537,7 @@ msgstr ""
#: apps/publisher/emails.py
#, python-brace-format
msgid "Publication complete: {course_name} {run_number}"
msgid "Publication complete: About page for {course_name} {run_number}"
msgstr ""
#: apps/publisher/emails.py
......@@ -904,10 +900,6 @@ msgid "There was an error saving course run, {error}"
msgstr ""
#: apps/publisher/views.py
msgid "updated"
msgstr ""
#: apps/publisher/views.py
msgid "Course run updated successfully."
msgstr ""
......@@ -960,7 +952,7 @@ msgstr ""
#. 'title' will be the value of course title.
#: apps/publisher_comments/emails.py
#, python-brace-format
msgid "Preview reviewed: {course_name}"
msgid "Preview declined: {course_name}"
msgstr ""
#: apps/publisher_comments/models.py
......@@ -2652,13 +2644,11 @@ msgstr ""
#: templates/publisher/email/comment.html
#: templates/publisher/email/comment.txt
#: templates/publisher/email/decline_preview.html
msgid "View comment in Publisher"
msgstr ""
#: templates/publisher/email/comment.html
#: templates/publisher/email/comment.txt
#: templates/publisher/email/course/send_for_review.html
#: templates/publisher/email/course/send_for_review.txt
#: templates/publisher/email/course_created.html
#: templates/publisher/email/course_created.txt
......@@ -2721,11 +2711,14 @@ msgstr ""
#: templates/publisher/email/course_created.txt
#: templates/publisher/email/course_run/mark_as_reviewed.html
#: templates/publisher/email/course_run/mark_as_reviewed.txt
#: templates/publisher/email/course_run/preview_accepted.html
#: templates/publisher/email/course_run/preview_accepted.txt
#: templates/publisher/email/course_run/preview_available.html
#: templates/publisher/email/course_run/preview_available.txt
#: templates/publisher/email/course_run/published.html
#: templates/publisher/email/course_run/published.txt
#: templates/publisher/email/decline_preview.html
#: templates/publisher/email/decline_preview.txt
#: templates/publisher/email/studio_instance_created.html
#: templates/publisher/email/studio_instance_created.txt
#: templates/publisher/email/studio_instance_needed.html
......@@ -2764,18 +2757,17 @@ msgstr ""
#: templates/publisher/email/course/send_for_review.html
#, python-format
msgid ""
"%(sender_team)s from %(org_name)s has submitted "
"%(link_start)s%(page_url)s%(link_middle)s%(course_name)s%(link_end)s for "
"review. %(link_start)s%(page_url)s%(link_middle)s View this course in "
"Publisher%(link_end)s to review the changes or suggest edits."
"%(sender_team)s from %(org_name)s has submitted %(course_name)s for review. "
"%(link_start)s%(page_url)s%(link_middle)s View this course in "
"Publisher%(link_end)s to mark the course as reviewed or suggest edits."
msgstr ""
#: templates/publisher/email/course/send_for_review.txt
#, python-format
msgid ""
"%(sender_team)s from %(org_name)s has submitted %(course_name)s for review. "
"%(page_url)s View this course in Publisher to review the changes or suggest "
"edits."
"%(page_url)s View this course in Publisher to mark the course as reviewed or"
" suggest edits."
msgstr ""
#. Translators: project_coordinator_name is a member name.
......@@ -2788,13 +2780,13 @@ msgstr ""
#, python-format
msgid ""
"%(course_team_name)s created the "
"%(link_start)s%(dashboard_url)s%(link_middle)s %(course_title)s%(link_end)s "
"course in Publisher on %(date)s at %(time)s."
"%(link_start)s%(page_url)s%(link_middle)s%(run_number)s course "
"run%(link_end)s of %(course_title)s in Publisher on %(date)s at %(time)s."
msgstr ""
#: templates/publisher/email/course_created.html
#: templates/publisher/email/course_created.txt
msgid "Please create a Studio instance for this course."
msgid "Please create a Studio URL for this course."
msgstr ""
#: templates/publisher/email/course_created.txt
......@@ -2806,26 +2798,39 @@ msgstr ""
#: templates/publisher/email/course_created.txt
#, python-format
msgid ""
"%(course_team_name)s created the %(course_title)s : %(dashboard_url)s course"
" in Publisher on %(date)s at %(time)s."
"%(course_team_name)s created the %(course_run)s : %(dashboard_url)s course "
"run of %(course_title)s in Publisher on %(date)s at %(time)s."
msgstr ""
#: templates/publisher/email/course_run/mark_as_reviewed.html
#, python-format
msgid ""
"The %(sender_team)s has reviewed the "
"%(sender_team)s has reviewed the "
"%(link_start)s%(page_url)s%(link_middle)s%(run_number)s course "
"run%(link_end)s of "
"%(link_start)s%(course_page_url)s%(link_middle)s%(course_name)s%(link_end)s."
" You can now submit a request for a preview of the course run About page."
"run%(link_end)s of %(course_name)s and has not added comments or suggested "
"edits. The review for this course run is complete."
msgstr ""
#: templates/publisher/email/course_run/mark_as_reviewed.html
#: templates/publisher/email/course_run/mark_as_reviewed.txt
msgid ""
"Please create a preview of the About page for this course run and enter the "
"preview URL in Publisher."
msgstr ""
#: templates/publisher/email/course_run/mark_as_reviewed.html
#: templates/publisher/email/course_run/mark_as_reviewed.txt
msgid ""
"Additionally, please check the comments in Publisher for information about "
"OFAC blocking."
msgstr ""
#: templates/publisher/email/course_run/mark_as_reviewed.txt
#, python-format
msgid ""
"The %(sender_team)s has reviewed the %(run_number)s %(page_url)s course run "
"of %(course_name)s %(course_page_url)s. You can now submit a request for a "
"preview of the course run About page."
"of %(course_name)s and has not added comments or suggested edits. The review"
" for this course run is complete."
msgstr ""
#: templates/publisher/email/course_run/preview_accepted.html
......@@ -2837,86 +2842,77 @@ msgstr ""
#: templates/publisher/email/course_run/preview_accepted.html
#, python-format
msgid ""
"%(course_team)s has reviewed the preview of the "
"%(course_team)s has reviewed the preview of the About page for the "
"%(link_start)s%(page_url)s%(link_middle)s%(run_number)s%(link_end)s course "
"run of "
"%(link_start)s%(course_page_url)s%(link_middle)s%(course_name)s%(link_end)s "
"from %(org_name)s. The course run is now ready for publication."
msgstr ""
#. Translators: It's closing of mail.
#: templates/publisher/email/course_run/preview_accepted.html
#: templates/publisher/email/course_run/send_for_review.html
#: templates/publisher/email/course_run/send_for_review.txt
msgid "Thank you,"
"run of %(course_name)s from %(org_name)s. You can now publish this About "
"page."
msgstr ""
#: templates/publisher/email/course_run/preview_accepted.txt
#, python-format
msgid ""
"%(course_team)s has reviewed the preview of the %(run_number)s %(page_url)s "
"course run of %(course_name)s %(course_page_url)s from %(org_name)s. The "
"course run is now ready for publication."
"%(course_team)s has reviewed the preview of the About page for the "
"%(run_number)s %(page_url)s course run of %(course_name)s from %(org_name)s."
" You can now publish this About page."
msgstr ""
#: templates/publisher/email/course_run/preview_available.html
#, python-format
msgid ""
"A preview is now available for the "
"%(link_start)s%(page_url)s%(link_middle)s%(course_run_number)s%(link_end)s "
"course run of "
"%(link_start)s%(course_page_url)s%(link_middle)s%(course_name)s%(link_end)s."
" %(link_start)s%(preview_link)s%(link_middle)s See the preview%(link_end)s "
"to review or suggest edits to this course run."
"A preview is now available for the %(course_run_number)s course run of "
"%(course_name)s. %(link_start)s%(preview_link)s%(link_middle)s View the "
"course run in Publisher%(link_end)s to access the preview for this About "
"page and accept or decline the preview."
msgstr ""
#: templates/publisher/email/course_run/preview_available.txt
#, python-format
msgid ""
"A preview is now available for the %(course_run_number)s course run of "
"%(course_name)s %(course_page_url)s. See the preview %(page_url)s to review "
"or suggest edits to this course run."
"%(course_name)s. View the course run in Publisher %(page_url)s to access the"
" preview for this About page and accept or decline the preview."
msgstr ""
#: templates/publisher/email/course_run/published.html
#: templates/publisher/email/course_run/published.txt
#, python-format
msgid ""
"The %(link_start)s%(page_url)s%(link_middle)s%(course_run_number)s course "
"run%(link_end)s of "
"%(link_start)s%(course_page_url)s%(link_middle)s%(course_name)s%(link_end)s "
"has been published. No further action is necessary for this course run."
"The About page for the %(course_run_number)s course run of %(course_name)s "
"has been published. No further action is necessary."
msgstr ""
#: templates/publisher/email/course_run/published.html
#, python-format
msgid ""
"%(link_start)s%(preview_url)s%(link_middle)sView this course run "
"live.%(link_end)s"
"%(link_start)s%(preview_url)s%(link_middle)sView this About page on "
"edx.org.%(link_end)s"
msgstr ""
#: templates/publisher/email/course_run/published.txt
#, python-format
msgid ""
"The %(course_run_number)s %(page_url)s course run of %(course_name)s "
"%(course_page_url)s has been published. No further action is necessary for "
"this course run."
msgid "View this About page on edx.org. %(preview_url)s"
msgstr ""
#: templates/publisher/email/course_run/published.txt
#: templates/publisher/email/course_run/send_for_review.html
#, python-format
msgid "View this course run live. %(preview_url)s"
msgid ""
"%(sender_team)s for course_name from %(org_name)s has submitted the "
"%(run_number)s course run for review. "
"%(link_start)s%(page_url)s%(link_middle)s View this course run in "
"Publisher%(link_end)s to review the changes or suggest edits."
msgstr ""
#: templates/publisher/email/course_run/send_for_review.html
#, python-format
msgid ""
"%(sender_team)s for "
"%(link_start)s%(course_page_url)s%(link_middle)s%(course_name)s%(link_end)s "
"from %(org_name)s has submitted the "
"%(link_start)s%(page_url)s%(link_middle)s%(run_number)s course "
"run%(link_end)s for review. %(link_start)s%(page_url)s%(link_middle)s View "
"this course run in Publisher%(link_end)s to review the changes or suggest "
"edits."
"This is a good time to %(link_start)s%(studio_url)s%(link_middle)s review "
"this course run in Studio%(link_end)s."
msgstr ""
#. Translators: It's closing of mail.
#: templates/publisher/email/course_run/send_for_review.html
#: templates/publisher/email/course_run/send_for_review.txt
msgid "Thank you,"
msgstr ""
#: templates/publisher/email/course_run/send_for_review.txt
......@@ -2927,28 +2923,36 @@ msgid ""
"Publisher to review the changes or suggest edits."
msgstr ""
#: templates/publisher/email/course_run/send_for_review.txt
#, python-format
msgid ""
"This is a good time to %(studio_url)s review this course run in Studio."
msgstr ""
#: templates/publisher/email/decline_preview.html
#, python-format
msgid ""
"The %(team_name)s has reviewed the preview for "
"%(link_start)s%(page_url)s%(link_middle)s%(course_name)s%(link_end)s. View "
"the course run in Publisher for more information."
"%(team_name)s has declined the preview of the About page for the "
"%(run_number)s course run of %(course_name)s. "
"%(link_start)s%(page_url)s%(link_middle)sView the course run in "
"Publisher.%(link_end)s"
msgstr ""
#: templates/publisher/email/decline_preview.html
#, python-format
msgid "%(team_name)s added the following comment to this preview."
msgid "%(team_name)s added the following comment."
msgstr ""
#: templates/publisher/email/decline_preview.txt
#, python-format
msgid ""
"The %(team_name)s has reviewed the preview for %(course_name)s. View the "
"course run in Publisher for more information."
"%(team_name)s has declined the preview of the About page for the "
"%(run_number)s course run of %(course_name)s. View the course run in "
"Publisher."
msgstr ""
#: templates/publisher/email/decline_preview.txt
msgid "View comment in Publisher: "
msgid "{{ team_name }} added the following comment."
msgstr ""
#: templates/publisher/email/role_assignment_changed.html
......@@ -2984,66 +2988,85 @@ msgid "Dear %(course_team_name)s,"
msgstr ""
#: templates/publisher/email/studio_instance_created.html
#: templates/publisher/email/studio_instance_created.txt
#, python-format
msgid ""
"EdX has %(updated_text)s a Studio instance for "
"%(link_start)s%(course_run_page_url)s%(link_middle)s "
"%(course_name)s%(link_end)s. You can now edit this course and configure your"
" course team in Studio."
"%(project_coordinator_name)s has created a Studio URL for the %(course_run)s"
" course run of %(course_name)s. You can now take either of the following "
"actions."
msgstr ""
#: templates/publisher/email/studio_instance_created.html
#, python-format
#: templates/publisher/email/studio_instance_created.txt
msgid "Enter course run content in Studio."
msgstr ""
#: templates/publisher/email/studio_instance_created.html
#: templates/publisher/email/studio_instance_created.txt
msgid ""
"Before edX can announce your course on %(link_start)sedx.org%(link_end)s, "
"you need to add the following items %(start_tag)sboth in Publisher and in "
"Studio%(end_tag)s."
"Continue adding About page information for this course run in Publisher."
msgstr ""
#: templates/publisher/email/studio_instance_created.html
#: templates/publisher/email/studio_instance_created.txt
msgid "Important Notes"
msgstr ""
#: templates/publisher/email/studio_instance_created.html
#: templates/publisher/email/studio_instance_created.txt
msgid ""
"Before edX can publish the About page for this course run, you must also add"
" the following items for this course run in Studio."
msgstr ""
#: templates/publisher/email/studio_instance_created.html
#: templates/publisher/email/studio_instance_created.txt
msgid "Course start date"
msgstr ""
#: templates/publisher/email/studio_instance_created.html
#: templates/publisher/email/studio_instance_created.txt
msgid "Course end date"
msgstr ""
#: templates/publisher/email/studio_instance_created.html
#: templates/publisher/email/studio_instance_created.txt
msgid "Course image"
msgstr ""
#: templates/publisher/email/studio_instance_created.html
#: templates/publisher/email/studio_instance_created.txt
msgid ""
"Certificate assets (including signatory names, titles, and signature images)"
msgstr ""
#: templates/publisher/email/studio_instance_created.html
#, python-format
msgid ""
"In addition, keep the following items in mind as you build your course."
"EdX expects your completed %(link_start)sMOOC Development "
"Checklist%(link_end)s before the course run starts."
msgstr ""
#: templates/publisher/email/studio_instance_created.html
#, python-format
msgid ""
"If this course is not a re-run, your video administrator must work with edX "
"partner support to enable the %(link_start)svideo upload tool%(link_end)s "
"before you can add videos to your course."
"If this is the first run of a course, you should upload the course About "
"video before you submit the course for review in Publisher. For more "
"information, see %(link_start)sAdd a Course About Video to "
"edx.org%(link_end)s."
msgstr ""
#: templates/publisher/email/studio_instance_created.html
#, python-format
#: templates/publisher/email/studio_instance_created.txt
msgid ""
"We expect your completed %(link_start)sMOOC Development "
"Checklist%(link_end)s before your course starts. This checklist includes "
"valuable best practices that help you to stay on track as you design and "
"build your course. We recommend that you use the list early!"
"EdX expects your completed MOOC Development Checklist before the course run "
"starts."
msgstr ""
#: templates/publisher/email/studio_instance_created.txt
#, python-format
msgid ""
"EdX has %(updated_text)s a Studio instance for %(course_name)s: "
"%(course_run_page_url)s. You can now edit this course in Studio."
"If this is the first run of a course, you should upload the course About "
"video before you submit the course for review in Publisher. For more "
"information, see Add a Course About Video to edx.org."
msgstr ""
#: templates/publisher/email/studio_instance_needed.html
......
......@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-12 12:13+0500\n"
"POT-Creation-Date: 2017-05-15 12:57+0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
......
......@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-12 12:13+0500\n"
"POT-Creation-Date: 2017-05-15 12:57+0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
......@@ -611,20 +611,15 @@ msgid "Approved"
msgstr "Àpprövéd Ⱡ'σяєм ιρѕυм ∂#"
#: apps/publisher/emails.py
msgid "created"
msgstr "çréätéd Ⱡ'σяєм ιρѕυм #"
#: apps/publisher/emails.py
#, python-brace-format
msgid "Studio instance {updated_text}"
msgstr "Stüdïö ïnstänçé {updated_text} Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт,#"
msgid "Studio URL created: {title} {run_number}"
msgstr ""
"Stüdïö ÛRL çréätéd: {title} {run_number} Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє#"
#: apps/publisher/emails.py
#, python-brace-format
msgid "New Studio instance request for {title}"
msgstr ""
"Néw Stüdïö ïnstänçé réqüést för {title} Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, "
"¢σηѕє¢тєт#"
msgid "Studio URL requested: {title}"
msgstr "Stüdïö ÛRL réqüéstéd: {title} Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕ#"
#: apps/publisher/emails.py
#, python-brace-format
......@@ -665,10 +660,10 @@ msgstr ""
#: apps/publisher/emails.py
#, python-brace-format
msgid "Publication complete: {course_name} {run_number}"
msgid "Publication complete: About page for {course_name} {run_number}"
msgstr ""
"Püßlïçätïön çömplété: {course_name} {run_number} Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт "
"αмєт, ¢σηѕє¢#"
"Püßlïçätïön çömplété: Àßöüt pägé för {course_name} {run_number} Ⱡ'σяєм ιρѕυм"
" ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя #"
#: apps/publisher/emails.py
#, python-brace-format
......@@ -1067,10 +1062,6 @@ msgstr ""
"¢σηѕє¢тєтυя #"
#: apps/publisher/views.py
msgid "updated"
msgstr "üpdätéd Ⱡ'σяєм ιρѕυм #"
#: apps/publisher/views.py
msgid "Course run updated successfully."
msgstr ""
"Çöürsé rün üpdätéd süççéssfüllý. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тє#"
......@@ -1125,8 +1116,8 @@ msgstr "{subject_desc} {title} Ⱡ'σяєм ιρѕυм #"
#. 'title' will be the value of course title.
#: apps/publisher_comments/emails.py
#, python-brace-format
msgid "Preview reviewed: {course_name}"
msgstr "Prévïéw révïéwéd: {course_name} Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, #"
msgid "Preview declined: {course_name}"
msgstr "Prévïéw déçlïnéd: {course_name} Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, #"
#: apps/publisher_comments/models.py
msgid "Default"
......@@ -3140,13 +3131,11 @@ msgstr ""
#: templates/publisher/email/comment.html
#: templates/publisher/email/comment.txt
#: templates/publisher/email/decline_preview.html
msgid "View comment in Publisher"
msgstr "Vïéw çömmént ïn Püßlïshér Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕ#"
#: templates/publisher/email/comment.html
#: templates/publisher/email/comment.txt
#: templates/publisher/email/course/send_for_review.html
#: templates/publisher/email/course/send_for_review.txt
#: templates/publisher/email/course_created.html
#: templates/publisher/email/course_created.txt
......@@ -3222,11 +3211,14 @@ msgstr ""
#: templates/publisher/email/course_created.txt
#: templates/publisher/email/course_run/mark_as_reviewed.html
#: templates/publisher/email/course_run/mark_as_reviewed.txt
#: templates/publisher/email/course_run/preview_accepted.html
#: templates/publisher/email/course_run/preview_accepted.txt
#: templates/publisher/email/course_run/preview_available.html
#: templates/publisher/email/course_run/preview_available.txt
#: templates/publisher/email/course_run/published.html
#: templates/publisher/email/course_run/published.txt
#: templates/publisher/email/decline_preview.html
#: templates/publisher/email/decline_preview.txt
#: templates/publisher/email/studio_instance_created.html
#: templates/publisher/email/studio_instance_created.txt
#: templates/publisher/email/studio_instance_needed.html
......@@ -3269,32 +3261,30 @@ msgstr ""
#: templates/publisher/email/course/send_for_review.html
#, python-format
msgid ""
"%(sender_team)s from %(org_name)s has submitted "
"%(link_start)s%(page_url)s%(link_middle)s%(course_name)s%(link_end)s for "
"review. %(link_start)s%(page_url)s%(link_middle)s View this course in "
"Publisher%(link_end)s to review the changes or suggest edits."
"%(sender_team)s from %(org_name)s has submitted %(course_name)s for review. "
"%(link_start)s%(page_url)s%(link_middle)s View this course in "
"Publisher%(link_end)s to mark the course as reviewed or suggest edits."
msgstr ""
"%(sender_team)s fröm %(org_name)s häs süßmïttéd "
"%(link_start)s%(page_url)s%(link_middle)s%(course_name)s%(link_end)s för "
"révïéw. %(link_start)s%(page_url)s%(link_middle)s Vïéw thïs çöürsé ïn "
"Püßlïshér%(link_end)s tö révïéw thé çhängés ör süggést édïts. Ⱡ'σяєм ιρѕυм "
"∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємρσя "
"ιη¢ι∂ι∂υηт υт łαвσяє єт ∂σłσяє мαgηα αłιqυα. υт єηιм α∂ мιηιм νєηιαм, qυιѕ "
"ησѕтяυ∂ єχєя¢ιтαтιση υłłαм¢σ łαвσяιѕ ηιѕι υт αłιqυιρ єχ єα ¢σммσ∂σ "
"%(sender_team)s fröm %(org_name)s häs süßmïttéd %(course_name)s för révïéw. "
"%(link_start)s%(page_url)s%(link_middle)s Vïéw thïs çöürsé ïn "
"Püßlïshér%(link_end)s tö märk thé çöürsé äs révïéwéd ör süggést édïts. "
"Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ "
"тємρσя ιη¢ι∂ι∂υηт υт łαвσяє єт ∂σłσяє мαgηα αłιqυα. υт єηιм α∂ мιηιм νєηιαм,"
" qυιѕ ησѕтяυ∂ єχєя¢ιтαтιση υłłαм¢σ łαвσяιѕ ηιѕι υт αłιqυιρ єχ єα ¢σммσ∂σ "
"¢σηѕєqυαт. ∂υιѕ αυтє ιяυяє ∂σłσя ιη яєρяєнєη∂єяιт ιη νσłυρтαтє νєłιт єѕѕє "
"¢ιłłυм ∂σłσяє єυ ƒυgιαт ηυłłα ραяιαтυя. єχ¢єρтєυя ѕιηт σ¢¢αє¢αт ¢υρι∂αтαт "
"ηση ρяσι∂єηт, ѕυηт ιη ¢υłρα qυι σƒƒι¢ια ∂єѕєяυηт мσłłιт αηιм ι∂ єѕт łαв#"
"ηση ρяσι∂єηт, ѕυηт ιη ¢υłρα qυι σƒƒι¢ια ∂єѕєяυηт мσłłιт αηιм ι∂ єѕт łαвσяυм#"
#: templates/publisher/email/course/send_for_review.txt
#, python-format
msgid ""
"%(sender_team)s from %(org_name)s has submitted %(course_name)s for review. "
"%(page_url)s View this course in Publisher to review the changes or suggest "
"edits."
"%(page_url)s View this course in Publisher to mark the course as reviewed or"
" suggest edits."
msgstr ""
"%(sender_team)s fröm %(org_name)s häs süßmïttéd %(course_name)s för révïéw. "
"%(page_url)s Vïéw thïs çöürsé ïn Püßlïshér tö révïéw thé çhängés ör süggést "
"édïts. Ⱡ'σяєм ιρѕυм ∂σ#"
"%(page_url)s Vïéw thïs çöürsé ïn Püßlïshér tö märk thé çöürsé äs révïéwéd ör"
" süggést édïts. Ⱡ'σяєм #"
#. Translators: project_coordinator_name is a member name.
#: templates/publisher/email/course_created.html
......@@ -3306,20 +3296,20 @@ msgstr "Déär %(project_coordinator_name)s, Ⱡ'σяєм ιρѕυм ∂σł#"
#, python-format
msgid ""
"%(course_team_name)s created the "
"%(link_start)s%(dashboard_url)s%(link_middle)s %(course_title)s%(link_end)s "
"course in Publisher on %(date)s at %(time)s."
"%(link_start)s%(page_url)s%(link_middle)s%(run_number)s course "
"run%(link_end)s of %(course_title)s in Publisher on %(date)s at %(time)s."
msgstr ""
"%(course_team_name)s çréätéd thé "
"%(link_start)s%(dashboard_url)s%(link_middle)s %(course_title)s%(link_end)s "
"çöürsé ïn Püßlïshér ön %(date)s ät %(time)s. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, "
"¢σηѕє¢тєтυя #"
"%(link_start)s%(page_url)s%(link_middle)s%(run_number)s çöürsé "
"rün%(link_end)s öf %(course_title)s ïn Püßlïshér ön %(date)s ät %(time)s. "
"Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєт#"
#: templates/publisher/email/course_created.html
#: templates/publisher/email/course_created.txt
msgid "Please create a Studio instance for this course."
msgid "Please create a Studio URL for this course."
msgstr ""
"Pléäsé çréäté ä Stüdïö ïnstänçé för thïs çöürsé. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт "
"αмєт, ¢σηѕє¢тєтυя α#"
"Pléäsé çréäté ä Stüdïö ÛRL för thïs çöürsé. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, "
"¢σηѕє¢тєтυя #"
#: templates/publisher/email/course_created.txt
#: templates/publisher/email/studio_instance_needed.html
......@@ -3330,44 +3320,66 @@ msgstr "Déär Ⱡ'σяєм ι#"
#: templates/publisher/email/course_created.txt
#, python-format
msgid ""
"%(course_team_name)s created the %(course_title)s : %(dashboard_url)s course"
" in Publisher on %(date)s at %(time)s."
"%(course_team_name)s created the %(course_run)s : %(dashboard_url)s course "
"run of %(course_title)s in Publisher on %(date)s at %(time)s."
msgstr ""
"%(course_team_name)s çréätéd thé %(course_title)s : %(dashboard_url)s çöürsé"
" ïn Püßlïshér ön %(date)s ät %(time)s. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, "
"¢σηѕє¢тєтυя α#"
"%(course_team_name)s çréätéd thé %(course_run)s : %(dashboard_url)s çöürsé "
"rün öf %(course_title)s ïn Püßlïshér ön %(date)s ät %(time)s. Ⱡ'σяєм ιρѕυм "
"∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя#"
#: templates/publisher/email/course_run/mark_as_reviewed.html
#, python-format
msgid ""
"The %(sender_team)s has reviewed the "
"%(sender_team)s has reviewed the "
"%(link_start)s%(page_url)s%(link_middle)s%(run_number)s course "
"run%(link_end)s of "
"%(link_start)s%(course_page_url)s%(link_middle)s%(course_name)s%(link_end)s."
" You can now submit a request for a preview of the course run About page."
"run%(link_end)s of %(course_name)s and has not added comments or suggested "
"edits. The review for this course run is complete."
msgstr ""
"Thé %(sender_team)s häs révïéwéd thé "
"%(sender_team)s häs révïéwéd thé "
"%(link_start)s%(page_url)s%(link_middle)s%(run_number)s çöürsé "
"rün%(link_end)s öf "
"%(link_start)s%(course_page_url)s%(link_middle)s%(course_name)s%(link_end)s."
" Ýöü çän nöw süßmït ä réqüést för ä prévïéw öf thé çöürsé rün Àßöüt pägé. "
"Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ "
"тємρσя ιη¢ι∂ι∂υηт υт łαвσяє єт ∂σłσяє мαgηα αłιqυα. υт єηιм α∂ мιηιм νєηιαм,"
" qυιѕ ησѕтяυ∂ єχєя¢ιтαтιση υłłαм¢σ łαвσяιѕ ηιѕι υт αłιqυιρ єχ єα ¢σммσ∂σ "
"¢σηѕєqυαт. ∂υιѕ αυтє ιяυяє ∂σłσя ιη яєρяєнєη∂єяιт ιη νσłυρтαтє νєłιт єѕѕє "
"¢ιłłυм ∂σłσяє єυ ƒυgιαт ηυłłα ραяιαтυя. єχ¢єρтєυя ѕιηт σ¢¢αє¢αт ¢υρι∂αтαт "
"ηση ρяσι∂єηт, ѕυηт ιη ¢υłρα qυι σƒƒι¢ια ∂єѕєяυηт мσłłιт αηιм ι∂#"
"rün%(link_end)s öf %(course_name)s änd häs nöt äddéd çömménts ör süggéstéd "
"édïts. Thé révïéw för thïs çöürsé rün ïs çömplété. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт "
"αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємρσя ιη¢ι∂ι∂υηт υт "
"łαвσяє єт ∂σłσяє мαgηα αłιqυα. υт єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтяυ∂ "
"єχєя¢ιтαтιση υłłαм¢σ łαвσяιѕ ηιѕι υт αłιqυιρ єχ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ "
"αυтє ιяυяє ∂σłσя ιη яєρяєнєη∂єяιт ιη νσłυρтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσяє єυ "
"ƒυgιαт ηυłłα ραяιαтυя. єχ¢єρтєυя ѕιηт σ¢¢αє¢αт ¢υρι∂αтαт ηση ρяσι∂єηт, ѕυηт "
"ιη ¢υłρα qυι σƒƒι¢ια ∂єѕєяυηт мσłłιт αηιм ι∂#"
#: templates/publisher/email/course_run/mark_as_reviewed.html
#: templates/publisher/email/course_run/mark_as_reviewed.txt
msgid ""
"Please create a preview of the About page for this course run and enter the "
"preview URL in Publisher."
msgstr ""
"Pléäsé çréäté ä prévïéw öf thé Àßöüt pägé för thïs çöürsé rün änd éntér thé "
"prévïéw ÛRL ïn Püßlïshér. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмє#"
#: templates/publisher/email/course_run/mark_as_reviewed.html
#: templates/publisher/email/course_run/mark_as_reviewed.txt
msgid ""
"Additionally, please check the comments in Publisher for information about "
"OFAC blocking."
msgstr ""
"Àddïtïönällý, pléäsé çhéçk thé çömménts ïn Püßlïshér för ïnförmätïön äßöüt "
"ÖFÀÇ ßlöçkïng. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕ#"
#: templates/publisher/email/course_run/mark_as_reviewed.txt
#, python-format
msgid ""
"The %(sender_team)s has reviewed the %(run_number)s %(page_url)s course run "
"of %(course_name)s %(course_page_url)s. You can now submit a request for a "
"preview of the course run About page."
"of %(course_name)s and has not added comments or suggested edits. The review"
" for this course run is complete."
msgstr ""
"Thé %(sender_team)s häs révïéwéd thé %(run_number)s %(page_url)s çöürsé rün "
"öf %(course_name)s %(course_page_url)s. Ýöü çän nöw süßmït ä réqüést för ä "
"prévïéw öf thé çöürsé rün Àßöüt pägé. Ⱡ'σя#"
"öf %(course_name)s änd häs nöt äddéd çömménts ör süggéstéd édïts. Thé révïéw"
" för thïs çöürsé rün ïs çömplété. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя "
"α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємρσя ιη¢ι∂ι∂υηт υт łαвσяє єт ∂σłσяє мαgηα"
" αłιqυα. υт єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтяυ∂ єχєя¢ιтαтιση υłłαм¢σ łαвσяιѕ "
"ηιѕι υт αłιqυιρ єχ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιяυяє ∂σłσя ιη "
"яєρяєнєη∂єяιт ιη νσłυρтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσяє єυ ƒυgιαт ηυłłα "
"ραяιαтυя. єχ¢єρтєυя ѕιηт σ¢¢αє¢αт ¢υρι∂αтαт ηση ρяσι∂єηт, ѕυηт ιη ¢υłρα qυι "
"σƒƒι¢ια ∂єѕєяυηт мσłłιт αηιм ι∂ єѕт #"
#: templates/publisher/email/course_run/preview_accepted.html
#: templates/publisher/email/course_run/preview_accepted.txt
......@@ -3378,140 +3390,129 @@ msgstr "Déär %(publisher_role_name)s, Ⱡ'σяєм ιρѕυм ∂σł#"
#: templates/publisher/email/course_run/preview_accepted.html
#, python-format
msgid ""
"%(course_team)s has reviewed the preview of the "
"%(course_team)s has reviewed the preview of the About page for the "
"%(link_start)s%(page_url)s%(link_middle)s%(run_number)s%(link_end)s course "
"run of "
"%(link_start)s%(course_page_url)s%(link_middle)s%(course_name)s%(link_end)s "
"from %(org_name)s. The course run is now ready for publication."
"run of %(course_name)s from %(org_name)s. You can now publish this About "
"page."
msgstr ""
"%(course_team)s häs révïéwéd thé prévïéw öf thé "
"%(course_team)s häs révïéwéd thé prévïéw öf thé Àßöüt pägé för thé "
"%(link_start)s%(page_url)s%(link_middle)s%(run_number)s%(link_end)s çöürsé "
"rün öf "
"%(link_start)s%(course_page_url)s%(link_middle)s%(course_name)s%(link_end)s "
"fröm %(org_name)s. Thé çöürsé rün ïs nöw réädý för püßlïçätïön. Ⱡ'σяєм ιρѕυм"
" ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємρσя "
"ιη¢ι∂ι∂υηт υт łαвσяє єт ∂σłσяє мαgηα αłιqυα. υт єηιм α∂ мιηιм νєηιαм, qυιѕ "
"ησѕтяυ∂ єχєя¢ιтαтιση υłłαм¢σ łαвσяιѕ ηιѕι υт αłιqυιρ єχ єα ¢σммσ∂σ "
"¢σηѕєqυαт. ∂υιѕ αυтє ιяυяє ∂σłσя ιη яєρяєнєη∂єяιт ιη νσłυρтαтє νєłιт єѕѕє "
"¢ιłłυм ∂σłσяє єυ ƒυgιαт ηυłłα ραяιαтυя. єχ¢єρтєυя ѕιηт σ¢¢αє¢αт ¢υρι∂αтαт "
"ηση ρяσι∂єηт, ѕυηт ιη ¢υłρα qυι σƒƒι¢ια ∂єѕєяυηт мσłłιт αηιм ι∂ єѕт łαв#"
#. Translators: It's closing of mail.
#: templates/publisher/email/course_run/preview_accepted.html
#: templates/publisher/email/course_run/send_for_review.html
#: templates/publisher/email/course_run/send_for_review.txt
msgid "Thank you,"
msgstr "Thänk ýöü, Ⱡ'σяєм ιρѕυм ∂σłσ#"
"rün öf %(course_name)s fröm %(org_name)s. Ýöü çän nöw püßlïsh thïs Àßöüt "
"pägé. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ "
"єιυѕмσ∂ тємρσя ιη¢ι∂ι∂υηт υт łαвσяє єт ∂σłσяє мαgηα αłιqυα. υт єηιм α∂ мιηιм"
" νєηιαм, qυιѕ ησѕтяυ∂ єχєя¢ιтαтιση υłłαм¢σ łαвσяιѕ ηιѕι υт αłιqυιρ єχ єα "
"¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιяυяє ∂σłσя ιη яєρяєнєη∂єяιт ιη νσłυρтαтє νєłιт"
" єѕѕє ¢ιłłυм ∂σłσяє єυ ƒυgιαт ηυłłα ραяιαтυя. єχ¢єρтєυя ѕιηт σ¢¢αє¢αт "
"¢υρι∂αтαт ηση ρяσι∂єηт, ѕυηт ιη ¢υłρα qυι σƒƒι¢ια ∂єѕєяυηт мσłłιт αηιм ι∂ "
"єѕт łαвσяυ#"
#: templates/publisher/email/course_run/preview_accepted.txt
#, python-format
msgid ""
"%(course_team)s has reviewed the preview of the %(run_number)s %(page_url)s "
"course run of %(course_name)s %(course_page_url)s from %(org_name)s. The "
"course run is now ready for publication."
"%(course_team)s has reviewed the preview of the About page for the "
"%(run_number)s %(page_url)s course run of %(course_name)s from %(org_name)s."
" You can now publish this About page."
msgstr ""
"%(course_team)s häs révïéwéd thé prévïéw öf thé %(run_number)s %(page_url)s "
"çöürsé rün öf %(course_name)s %(course_page_url)s fröm %(org_name)s. Thé "
"çöürsé rün ïs nöw réädý för püßlïçätïön. Ⱡ'σяєм ιρѕυ#"
"%(course_team)s häs révïéwéd thé prévïéw öf thé Àßöüt pägé för thé "
"%(run_number)s %(page_url)s çöürsé rün öf %(course_name)s fröm %(org_name)s."
" Ýöü çän nöw püßlïsh thïs Àßöüt pägé. Ⱡ'σяє#"
#: templates/publisher/email/course_run/preview_available.html
#, python-format
msgid ""
"A preview is now available for the "
"%(link_start)s%(page_url)s%(link_middle)s%(course_run_number)s%(link_end)s "
"course run of "
"%(link_start)s%(course_page_url)s%(link_middle)s%(course_name)s%(link_end)s."
" %(link_start)s%(preview_link)s%(link_middle)s See the preview%(link_end)s "
"to review or suggest edits to this course run."
msgstr ""
"À prévïéw ïs nöw äväïläßlé för thé "
"%(link_start)s%(page_url)s%(link_middle)s%(course_run_number)s%(link_end)s "
"çöürsé rün öf "
"%(link_start)s%(course_page_url)s%(link_middle)s%(course_name)s%(link_end)s."
" %(link_start)s%(preview_link)s%(link_middle)s Séé thé prévïéw%(link_end)s "
"tö révïéw ör süggést édïts tö thïs çöürsé rün. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, "
"A preview is now available for the %(course_run_number)s course run of "
"%(course_name)s. %(link_start)s%(preview_link)s%(link_middle)s View the "
"course run in Publisher%(link_end)s to access the preview for this About "
"page and accept or decline the preview."
msgstr ""
"À prévïéw ïs nöw äväïläßlé för thé %(course_run_number)s çöürsé rün öf "
"%(course_name)s. %(link_start)s%(preview_link)s%(link_middle)s Vïéw thé "
"çöürsé rün ïn Püßlïshér%(link_end)s tö äççéss thé prévïéw för thïs Àßöüt "
"pägé änd äççépt ör déçlïné thé prévïéw. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, "
"¢σηѕє¢тєтυя α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємρσя ιη¢ι∂ι∂υηт υт łαвσяє єт "
"∂σłσяє мαgηα αłιqυα. υт єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтяυ∂ єχєя¢ιтαтιση "
"υłłαм¢σ łαвσяιѕ ηιѕι υт αłιqυιρ єχ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιяυяє "
"∂σłσя ιη яєρяєнєη∂єяιт ιη νσłυρтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσяє єυ ƒυgιαт ηυłłα"
" ραяιαтυя. єχ¢єρтєυя ѕιηт σ¢¢αє¢αт ¢υρι∂αтαт ηση ρяσι∂єηт, ѕυηт ιη ¢υłρα qυι"
" σƒƒι¢ια ∂єѕє#"
" ραяιαтυя. єχ¢єρтєυя ѕιηт σ¢¢αє¢αт ¢υρι∂αтαт ηση ρяσι∂єηт, ѕυηт #"
#: templates/publisher/email/course_run/preview_available.txt
#, python-format
msgid ""
"A preview is now available for the %(course_run_number)s course run of "
"%(course_name)s %(course_page_url)s. See the preview %(page_url)s to review "
"or suggest edits to this course run."
"%(course_name)s. View the course run in Publisher %(page_url)s to access the"
" preview for this About page and accept or decline the preview."
msgstr ""
"À prévïéw ïs nöw äväïläßlé för thé %(course_run_number)s çöürsé rün öf "
"%(course_name)s %(course_page_url)s. Séé thé prévïéw %(page_url)s tö révïéw "
"ör süggést édïts tö thïs çöürsé rün. Ⱡ'σя#"
"%(course_name)s. Vïéw thé çöürsé rün ïn Püßlïshér %(page_url)s tö äççéss thé"
" prévïéw för thïs Àßöüt pägé änd äççépt ör déçlïné thé prévïéw. Ⱡ'σяєм ιρѕυм"
" ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємρσя "
"ιη¢ι∂ι∂υηт υт łαвσяє єт ∂σłσяє мαgηα αłιqυα. υт єηιм α∂ мιηιм νєηιαм, qυιѕ "
"ησѕтяυ∂ єχєя¢ιтαтιση υłłαм¢σ łαвσяιѕ ηιѕι υт αłιqυιρ єχ єα ¢σммσ∂σ "
"¢σηѕєqυαт. ∂υιѕ αυтє ιяυяє ∂σłσя ιη яєρяєнєη∂єяιт ιη νσłυρтαтє νєłιт єѕѕє "
"¢ιłłυм ∂σłσяє єυ ƒυgιαт ηυłłα ραяιαтυя. єχ¢єρтєυя ѕιηт σ¢¢αє¢αт ¢υρι∂αтαт "
"ηση ρяσι∂єηт, ѕυηт ιη ¢υłρα qυι#"
#: templates/publisher/email/course_run/published.html
#: templates/publisher/email/course_run/published.txt
#, python-format
msgid ""
"The %(link_start)s%(page_url)s%(link_middle)s%(course_run_number)s course "
"run%(link_end)s of "
"%(link_start)s%(course_page_url)s%(link_middle)s%(course_name)s%(link_end)s "
"has been published. No further action is necessary for this course run."
"The About page for the %(course_run_number)s course run of %(course_name)s "
"has been published. No further action is necessary."
msgstr ""
"Thé %(link_start)s%(page_url)s%(link_middle)s%(course_run_number)s çöürsé "
"rün%(link_end)s öf "
"%(link_start)s%(course_page_url)s%(link_middle)s%(course_name)s%(link_end)s "
"häs ßéén püßlïshéd. Nö fürthér äçtïön ïs néçéssärý för thïs çöürsé rün. "
"Ⱡ'σяєм ιρѕυ#"
"Thé Àßöüt pägé för thé %(course_run_number)s çöürsé rün öf %(course_name)s "
"häs ßéén püßlïshéd. Nö fürthér äçtïön ïs néçéssärý. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт "
"αмєт, #"
#: templates/publisher/email/course_run/published.html
#, python-format
msgid ""
"%(link_start)s%(preview_url)s%(link_middle)sView this course run "
"live.%(link_end)s"
"%(link_start)s%(preview_url)s%(link_middle)sView this About page on "
"edx.org.%(link_end)s"
msgstr ""
"%(link_start)s%(preview_url)s%(link_middle)sVïéw thïs çöürsé rün "
"lïvé.%(link_end)s Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя#"
"%(link_start)s%(preview_url)s%(link_middle)sVïéw thïs Àßöüt pägé ön "
"édx.örg.%(link_end)s Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя #"
#: templates/publisher/email/course_run/published.txt
#, python-format
msgid ""
"The %(course_run_number)s %(page_url)s course run of %(course_name)s "
"%(course_page_url)s has been published. No further action is necessary for "
"this course run."
msgid "View this About page on edx.org. %(preview_url)s"
msgstr ""
"Thé %(course_run_number)s %(page_url)s çöürsé rün öf %(course_name)s "
"%(course_page_url)s häs ßéén püßlïshéd. Nö fürthér äçtïön ïs néçéssärý för "
"thïs çöürsé rün. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт #"
"Vïéw thïs Àßöüt pägé ön édx.örg. %(preview_url)s Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт "
"αмєт, ¢σηѕє¢тєтυ#"
#: templates/publisher/email/course_run/published.txt
#: templates/publisher/email/course_run/send_for_review.html
#, python-format
msgid "View this course run live. %(preview_url)s"
msgid ""
"%(sender_team)s for course_name from %(org_name)s has submitted the "
"%(run_number)s course run for review. "
"%(link_start)s%(page_url)s%(link_middle)s View this course run in "
"Publisher%(link_end)s to review the changes or suggest edits."
msgstr ""
"Vïéw thïs çöürsé rün lïvé. %(preview_url)s Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, "
"¢σηѕє¢т#"
"%(sender_team)s för çöürsé_nämé fröm %(org_name)s häs süßmïttéd thé "
"%(run_number)s çöürsé rün för révïéw. "
"%(link_start)s%(page_url)s%(link_middle)s Vïéw thïs çöürsé rün ïn "
"Püßlïshér%(link_end)s tö révïéw thé çhängés ör süggést édïts. Ⱡ'σяєм ιρѕυм "
"∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємρσя "
"ιη¢ι∂ι∂υηт υт łαвσяє єт ∂σłσяє мαgηα αłιqυα. υт єηιм α∂ мιηιм νєηιαм, qυιѕ "
"ησѕтяυ∂ єχєя¢ιтαтιση υłłαм¢σ łαвσяιѕ ηιѕι υт αłιqυιρ єχ єα ¢σммσ∂σ "
"¢σηѕєqυαт. ∂υιѕ αυтє ιяυяє ∂σłσя ιη яєρяєнєη∂єяιт ιη νσłυρтαтє νєłιт єѕѕє "
"¢ιłłυм ∂σłσяє єυ ƒυgιαт ηυłłα ραяιαтυя. єχ¢єρтєυя ѕιηт σ¢¢αє¢αт ¢υρι∂αтαт "
"ηση ρяσι∂єηт, ѕυηт ιη ¢υłρα qυι σƒƒι¢ια ∂єѕєяυ#"
#: templates/publisher/email/course_run/send_for_review.html
#, python-format
msgid ""
"%(sender_team)s for "
"%(link_start)s%(course_page_url)s%(link_middle)s%(course_name)s%(link_end)s "
"from %(org_name)s has submitted the "
"%(link_start)s%(page_url)s%(link_middle)s%(run_number)s course "
"run%(link_end)s for review. %(link_start)s%(page_url)s%(link_middle)s View "
"this course run in Publisher%(link_end)s to review the changes or suggest "
"edits."
"This is a good time to %(link_start)s%(studio_url)s%(link_middle)s review "
"this course run in Studio%(link_end)s."
msgstr ""
"%(sender_team)s för "
"%(link_start)s%(course_page_url)s%(link_middle)s%(course_name)s%(link_end)s "
"fröm %(org_name)s häs süßmïttéd thé "
"%(link_start)s%(page_url)s%(link_middle)s%(run_number)s çöürsé "
"rün%(link_end)s för révïéw. %(link_start)s%(page_url)s%(link_middle)s Vïéw "
"thïs çöürsé rün ïn Püßlïshér%(link_end)s tö révïéw thé çhängés ör süggést "
"édïts. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ "
"єιυѕмσ∂ тємρσя ιη¢ι∂ι∂υηт υт łαвσяє єт ∂σłσяє мαgηα αłιqυα. υт єηιм α∂ мιηιм"
" νєηιαм, qυιѕ ησѕтяυ∂ єχєя¢ιтαтιση υłłαм¢σ łαвσяιѕ ηιѕι υт αłιqυιρ єχ єα "
"¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιяυяє ∂σłσя ιη яєρяєнєη∂єяιт ιη νσłυρтαтє νєłιт"
" єѕѕє ¢ιłłυм ∂σłσяє єυ ƒυgιαт ηυłłα ραяιαтυя. єχ¢єρтєυя ѕιηт σ¢¢αє¢αт "
"¢υρι∂αтαт ηση ρяσι∂єηт, ѕυ#"
"Thïs ïs ä gööd tïmé tö %(link_start)s%(studio_url)s%(link_middle)s révïéw "
"thïs çöürsé rün ïn Stüdïö%(link_end)s. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, "
"¢σηѕє¢тєтυя #"
#. Translators: It's closing of mail.
#: templates/publisher/email/course_run/send_for_review.html
#: templates/publisher/email/course_run/send_for_review.txt
msgid "Thank you,"
msgstr "Thänk ýöü, Ⱡ'σяєм ιρѕυм ∂σłσ#"
#: templates/publisher/email/course_run/send_for_review.txt
#, python-format
......@@ -3530,36 +3531,50 @@ msgstr ""
"ƒυgιαт ηυłłα ραяιαтυя. єχ¢єρтєυя ѕιηт σ¢¢αє¢αт ¢υρι∂αтαт ηση ρяσι∂єηт, ѕυηт "
"ιη ¢υłρα qυι σƒƒι¢ια ∂єѕєяυηт мσłłιт αηιм ι∂ є#"
#: templates/publisher/email/course_run/send_for_review.txt
#, python-format
msgid ""
"This is a good time to %(studio_url)s review this course run in Studio."
msgstr ""
"Thïs ïs ä gööd tïmé tö %(studio_url)s révïéw thïs çöürsé rün ïn Stüdïö. "
"Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α#"
#: templates/publisher/email/decline_preview.html
#, python-format
msgid ""
"The %(team_name)s has reviewed the preview for "
"%(link_start)s%(page_url)s%(link_middle)s%(course_name)s%(link_end)s. View "
"the course run in Publisher for more information."
"%(team_name)s has declined the preview of the About page for the "
"%(run_number)s course run of %(course_name)s. "
"%(link_start)s%(page_url)s%(link_middle)sView the course run in "
"Publisher.%(link_end)s"
msgstr ""
"Thé %(team_name)s häs révïéwéd thé prévïéw för "
"%(link_start)s%(page_url)s%(link_middle)s%(course_name)s%(link_end)s. Vïéw "
"thé çöürsé rün ïn Püßlïshér för möré ïnförmätïön. Ⱡ'σяєм ιρѕυм ∂σłσя ѕι#"
"%(team_name)s häs déçlïnéd thé prévïéw öf thé Àßöüt pägé för thé "
"%(run_number)s çöürsé rün öf %(course_name)s. "
"%(link_start)s%(page_url)s%(link_middle)sVïéw thé çöürsé rün ïn "
"Püßlïshér.%(link_end)s Ⱡ'σяєм ιρ#"
#: templates/publisher/email/decline_preview.html
#, python-format
msgid "%(team_name)s added the following comment to this preview."
msgid "%(team_name)s added the following comment."
msgstr ""
"%(team_name)s äddéd thé föllöwïng çömmént tö thïs prévïéw. Ⱡ'σяєм ιρѕυм "
"∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α#"
"%(team_name)s äddéd thé föllöwïng çömmént. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, "
"¢σηѕє¢тє#"
#: templates/publisher/email/decline_preview.txt
#, python-format
msgid ""
"The %(team_name)s has reviewed the preview for %(course_name)s. View the "
"course run in Publisher for more information."
"%(team_name)s has declined the preview of the About page for the "
"%(run_number)s course run of %(course_name)s. View the course run in "
"Publisher."
msgstr ""
"Thé %(team_name)s häs révïéwéd thé prévïéw för %(course_name)s. Vïéw thé "
"çöürsé rün ïn Püßlïshér för möré ïnförmätïön. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, #"
"%(team_name)s häs déçlïnéd thé prévïéw öf thé Àßöüt pägé för thé "
"%(run_number)s çöürsé rün öf %(course_name)s. Vïéw thé çöürsé rün ïn "
"Püßlïshér. Ⱡ'σяєм ιρѕυм ∂σłσя #"
#: templates/publisher/email/decline_preview.txt
msgid "View comment in Publisher: "
msgstr "Vïéw çömmént ïn Püßlïshér: Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє#"
msgid "{{ team_name }} added the following comment."
msgstr ""
"{{ team_name }} äddéd thé föllöwïng çömmént. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, "
"¢σηѕє¢тє#"
#: templates/publisher/email/role_assignment_changed.html
#, python-format
......@@ -3600,42 +3615,62 @@ msgid "Dear %(course_team_name)s,"
msgstr "Déär %(course_team_name)s, Ⱡ'σяєм ιρѕυм ∂σł#"
#: templates/publisher/email/studio_instance_created.html
#: templates/publisher/email/studio_instance_created.txt
#, python-format
msgid ""
"EdX has %(updated_text)s a Studio instance for "
"%(link_start)s%(course_run_page_url)s%(link_middle)s "
"%(course_name)s%(link_end)s. You can now edit this course and configure your"
" course team in Studio."
"%(project_coordinator_name)s has created a Studio URL for the %(course_run)s"
" course run of %(course_name)s. You can now take either of the following "
"actions."
msgstr ""
"ÉdX häs %(updated_text)s ä Stüdïö ïnstänçé för "
"%(link_start)s%(course_run_page_url)s%(link_middle)s "
"%(course_name)s%(link_end)s. Ýöü çän nöw édït thïs çöürsé änd çönfïgüré ýöür"
" çöürsé téäm ïn Stüdïö. Ⱡ'σяєм ιρѕ#"
"%(project_coordinator_name)s häs çréätéd ä Stüdïö ÛRL för thé %(course_run)s"
" çöürsé rün öf %(course_name)s. Ýöü çän nöw täké éïthér öf thé föllöwïng "
"äçtïöns. Ⱡ'σяєм ιρѕυм ∂σłσя ѕ#"
#: templates/publisher/email/studio_instance_created.html
#, python-format
#: templates/publisher/email/studio_instance_created.txt
msgid "Enter course run content in Studio."
msgstr ""
"Éntér çöürsé rün çöntént ïn Stüdïö. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєт#"
#: templates/publisher/email/studio_instance_created.html
#: templates/publisher/email/studio_instance_created.txt
msgid ""
"Before edX can announce your course on %(link_start)sedx.org%(link_end)s, "
"you need to add the following items %(start_tag)sboth in Publisher and in "
"Studio%(end_tag)s."
"Continue adding About page information for this course run in Publisher."
msgstr ""
"Béföré édX çän ännöünçé ýöür çöürsé ön %(link_start)sédx.örg%(link_end)s, "
"ýöü nééd tö ädd thé föllöwïng ïtéms %(start_tag)sßöth ïn Püßlïshér änd ïn "
"Stüdïö%(end_tag)s. Ⱡ'σя#"
"Çöntïnüé äddïng Àßöüt pägé ïnförmätïön för thïs çöürsé rün ïn Püßlïshér. "
"Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя#"
#: templates/publisher/email/studio_instance_created.html
#: templates/publisher/email/studio_instance_created.txt
msgid "Important Notes"
msgstr "Ìmpörtänt Nötés Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт α#"
#: templates/publisher/email/studio_instance_created.html
#: templates/publisher/email/studio_instance_created.txt
msgid ""
"Before edX can publish the About page for this course run, you must also add"
" the following items for this course run in Studio."
msgstr ""
"Béföré édX çän püßlïsh thé Àßöüt pägé för thïs çöürsé rün, ýöü müst älsö ädd"
" thé föllöwïng ïtéms för thïs çöürsé rün ïn Stüdïö. Ⱡ'σяє#"
#: templates/publisher/email/studio_instance_created.html
#: templates/publisher/email/studio_instance_created.txt
msgid "Course start date"
msgstr "Çöürsé stärt däté Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмє#"
#: templates/publisher/email/studio_instance_created.html
#: templates/publisher/email/studio_instance_created.txt
msgid "Course end date"
msgstr "Çöürsé énd däté Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт α#"
#: templates/publisher/email/studio_instance_created.html
#: templates/publisher/email/studio_instance_created.txt
msgid "Course image"
msgstr "Çöürsé ïmägé Ⱡ'σяєм ιρѕυм ∂σłσя ѕ#"
#: templates/publisher/email/studio_instance_created.html
#: templates/publisher/email/studio_instance_created.txt
msgid ""
"Certificate assets (including signatory names, titles, and signature images)"
msgstr ""
......@@ -3643,55 +3678,55 @@ msgstr ""
" Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυ#"
#: templates/publisher/email/studio_instance_created.html
#, python-format
msgid ""
"In addition, keep the following items in mind as you build your course."
"EdX expects your completed %(link_start)sMOOC Development "
"Checklist%(link_end)s before the course run starts."
msgstr ""
"Ìn äddïtïön, kéép thé föllöwïng ïtéms ïn mïnd äs ýöü ßüïld ýöür çöürsé. "
"Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя#"
"ÉdX éxpéçts ýöür çömplétéd %(link_start)sMÖÖÇ Dévélöpmént "
"Çhéçklïst%(link_end)s ßéföré thé çöürsé rün stärts. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт "
"αмєт, ¢σηѕ#"
#: templates/publisher/email/studio_instance_created.html
#, python-format
msgid ""
"If this course is not a re-run, your video administrator must work with edX "
"partner support to enable the %(link_start)svideo upload tool%(link_end)s "
"before you can add videos to your course."
"If this is the first run of a course, you should upload the course About "
"video before you submit the course for review in Publisher. For more "
"information, see %(link_start)sAdd a Course About Video to "
"edx.org%(link_end)s."
msgstr ""
"Ìf thïs çöürsé ïs nöt ä ré-rün, ýöür vïdéö ädmïnïsträtör müst wörk wïth édX "
"pärtnér süppört tö énäßlé thé %(link_start)svïdéö üplöäd tööl%(link_end)s "
"ßéföré ýöü çän ädd vïdéös tö ýöür çöürsé. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, "
"¢σηѕє¢тєтυя α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємρσя ιη¢ι∂ι∂υηт υт łαвσяє єт "
"∂σłσяє мαgηα αłιqυα. υт єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтяυ∂ єχєя¢ιтαтιση "
"υłłαм¢σ łαвσяιѕ ηιѕι υт αłιqυιρ єχ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιяυяє "
"∂σłσя ιη яєρяєнєη∂єяιт ιη νσłυρтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσяє єυ ƒυgιαт ηυłłα"
" ραяιαтυя. єχ¢єρтєυя ѕιηт σ¢¢αє¢αт ¢υρι∂αтαт ηση ρяσι∂єηт, ѕυηт ιη ¢υłρα "
"qυι#"
"Ìf thïs ïs thé fïrst rün öf ä çöürsé, ýöü shöüld üplöäd thé çöürsé Àßöüt "
"vïdéö ßéföré ýöü süßmït thé çöürsé för révïéw ïn Püßlïshér. För möré "
"ïnförmätïön, séé %(link_start)sÀdd ä Çöürsé Àßöüt Vïdéö tö "
"édx.örg%(link_end)s. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιηg "
"єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємρσя ιη¢ι∂ι∂υηт υт łαвσяє єт ∂σłσяє мαgηα αłιqυα. υт "
"єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтяυ∂ єχєя¢ιтαтιση υłłαм¢σ łαвσяιѕ ηιѕι υт "
"αłιqυιρ єχ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιяυяє ∂σłσя ιη яєρяєнєη∂єяιт ιη "
"νσłυρтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσяє єυ ƒυgιαт ηυłłα ραяιαтυя. єχ¢єρтєυя ѕιηт "
"σ¢¢αє¢α#"
#: templates/publisher/email/studio_instance_created.html
#, python-format
#: templates/publisher/email/studio_instance_created.txt
msgid ""
"We expect your completed %(link_start)sMOOC Development "
"Checklist%(link_end)s before your course starts. This checklist includes "
"valuable best practices that help you to stay on track as you design and "
"build your course. We recommend that you use the list early!"
"EdX expects your completed MOOC Development Checklist before the course run "
"starts."
msgstr ""
"Wé éxpéçt ýöür çömplétéd %(link_start)sMÖÖÇ Dévélöpmént "
"Çhéçklïst%(link_end)s ßéföré ýöür çöürsé stärts. Thïs çhéçklïst ïnçlüdés "
"välüäßlé ßést präçtïçés thät hélp ýöü tö stäý ön träçk äs ýöü désïgn änd "
"ßüïld ýöür çöürsé. Wé réçömménd thät ýöü üsé thé lïst éärlý! Ⱡ'σяєм ιρѕυм "
"∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємρσя "
"ιη¢ι∂ι∂υηт υт łαвσяє єт ∂σłσяє мαgηα αłιqυα. υт єηιм α∂ мιηιм νєηιαм, qυιѕ "
"ησѕтяυ∂ єχєя¢ιтαтιση υłłαм¢σ łαвσяιѕ ηιѕι υт αłιqυιρ єχ єα ¢σммσ∂σ "
"¢σηѕєqυαт. ∂υιѕ αυтє ιяυяє ∂σłσя ιη яєρяєнєη∂єяιт ιη νσłυρтαтє νєł#"
"ÉdX éxpéçts ýöür çömplétéd MÖÖÇ Dévélöpmént Çhéçklïst ßéföré thé çöürsé rün "
"stärts. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢т#"
#: templates/publisher/email/studio_instance_created.txt
#, python-format
msgid ""
"EdX has %(updated_text)s a Studio instance for %(course_name)s: "
"%(course_run_page_url)s. You can now edit this course in Studio."
"If this is the first run of a course, you should upload the course About "
"video before you submit the course for review in Publisher. For more "
"information, see Add a Course About Video to edx.org."
msgstr ""
"ÉdX häs %(updated_text)s ä Stüdïö ïnstänçé för %(course_name)s: "
"%(course_run_page_url)s. Ýöü çän nöw édït thïs çöürsé ïn Stüdïö. Ⱡ'σяєм "
"ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢т#"
"Ìf thïs ïs thé fïrst rün öf ä çöürsé, ýöü shöüld üplöäd thé çöürsé Àßöüt "
"vïdéö ßéföré ýöü süßmït thé çöürsé för révïéw ïn Püßlïshér. För möré "
"ïnförmätïön, séé Àdd ä Çöürsé Àßöüt Vïdéö tö édx.örg. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт"
" αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємρσя ιη¢ι∂ι∂υηт υт "
"łαвσяє єт ∂σłσяє мαgηα αłιqυα. υт єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтяυ∂ "
"єχєя¢ιтαтιση υłłαм¢σ łαвσяιѕ ηιѕι υт αłιqυιρ єχ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ "
"αυтє ιяυяє ∂σłσя ιη яєρяєнєη∂єяιт ιη νσłυρтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσяє єυ "
"ƒυgιαт ηυłłα ραяιαтυя. єχ¢єρтєυя ѕιηт σ¢¢αє¢αт ¢υρι∂αт#"
#: templates/publisher/email/studio_instance_needed.html
#: templates/publisher/email/studio_instance_needed.txt
......
......@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-12 12:13+0500\n"
"POT-Creation-Date: 2017-05-15 12:57+0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
......
......@@ -9,13 +9,13 @@
{% endblocktrans %}
<p>
{% blocktrans with link_start='<a href="' link_middle='">' link_end='</a>' trimmed %}
{{ sender_team }} from {{ org_name }} has submitted {{ link_start }}{{ page_url }}{{ link_middle }}{{ course_name }}{{ link_end }} for review. {{ link_start }}{{ page_url }}{{ link_middle }} View this course in Publisher{{ link_end }} to review the changes or suggest edits.
{{ sender_team }} from {{ org_name }} has submitted {{ course_name }} for review. {{ link_start }}{{ page_url }}{{ link_middle }} View this course in Publisher{{ link_end }} to mark the course as reviewed or suggest edits.
{% endblocktrans %}
</p>
{% comment %}Translators: It's closing of mail.{% endcomment %}
{% trans "Thanks," %}<br>
{% trans "The edX team" %}
{{ sender_name }}
{% blocktrans trimmed %}
......
......@@ -4,7 +4,7 @@
Dear {{ recipient_name }},
{% endblocktrans %}
{% blocktrans trimmed %}
{{ sender_team }} from {{ org_name }} has submitted {{ course_name }} for review. {{ page_url }} View this course in Publisher to review the changes or suggest edits.
{{ sender_team }} from {{ org_name }} has submitted {{ course_name }} for review. {{ page_url }} View this course in Publisher to mark the course as reviewed or suggest edits.
{% endblocktrans %}
{% trans "Thanks," %}
......
......@@ -10,13 +10,15 @@
<p>
<p>
{% blocktrans with link_start='<a href="' link_middle='">' link_end='</a>' trimmed %}
{{ course_team_name }} created the {{ link_start }}{{ dashboard_url }}{{ link_middle }} {{ course_title }}{{ link_end }} course in Publisher on {{ date }} at {{ time }}.
{{ course_team_name }} created the {{ link_start }}{{ page_url }}{{ link_middle }}{{ run_number }} course run{{ link_end }} of {{ course_title }} in Publisher on {{ date }} at {{ time }}.
{% endblocktrans %}
</p>
<p>{% trans "Please create a Studio instance for this course." %}</p>
<p>{% trans "Please create a Studio URL for this course." %}</p>
{# Translators: It's closing of mail. #}
<p>{% trans "Thanks," %}</p>
<p>{% trans "The edX team" %}</p>
<!-- End Message Body -->
{% endblock body %}
......@@ -3,10 +3,10 @@
{% trans "Dear" %} {{ project_coordinator_name }},
{% blocktrans trimmed %}
{{ course_team_name }} created the {{ course_title }} : {{ dashboard_url }} course in Publisher on {{ date }} at {{ time }}.
{{ course_team_name }} created the {{ course_run }} : {{ dashboard_url }} course run of {{ course_title }} in Publisher on {{ date }} at {{ time }}.
{% endblocktrans %}
{% trans "Please create a Studio instance for this course." %}
{% trans "Please create a Studio URL for this course." %}
{% trans "Thanks," %}
{% trans "The edX team" %}
......@@ -2,16 +2,23 @@
{% load i18n %}
{% block body %}
<!-- Message Body -->
<p>
{% blocktrans trimmed %}
Dear {{ recipient_name }},
{% endblocktrans %}
<p>
{% blocktrans with link_start='<a href="' link_middle='">' link_end='</a>' trimmed %}
The {{ sender_team }} has reviewed the {{ link_start }}{{ page_url }}{{ link_middle }}{{ run_number }} course run{{ link_end }} of {{ link_start }}{{ course_page_url }}{{ link_middle }}{{ course_name }}{{ link_end }}. You can now submit a request for a preview of the course run About page.
{{ sender_team }} has reviewed the {{ link_start }}{{ page_url }}{{ link_middle }}{{ run_number }} course run{{ link_end }} of {{ course_name }} and has not added comments or suggested edits. The review for this course run is complete.
{% endblocktrans %}
</p>
<p>
{% trans "Please create a preview of the About page for this course run and enter the preview URL in Publisher." %}
</p>
<p>
<b>
{% trans "Additionally, please check the comments in Publisher for information about OFAC blocking." %}
</b>
</p>
{% comment %}Translators: It's closing of mail.{% endcomment %}
{% trans "Thanks," %}<br>
......
......@@ -4,8 +4,10 @@
Dear {{ recipient_name }},
{% endblocktrans %}
{% blocktrans trimmed %}
The {{ sender_team }} has reviewed the {{ run_number }} {{ page_url }} course run of {{ course_name }} {{ course_page_url }}. You can now submit a request for a preview of the course run About page.
The {{ sender_team }} has reviewed the {{ run_number }} {{ page_url }} course run of {{ course_name }} and has not added comments or suggested edits. The review for this course run is complete.
{% endblocktrans %}
{% trans "Please create a preview of the About page for this course run and enter the preview URL in Publisher." %}
{% trans "Additionally, please check the comments in Publisher for information about OFAC blocking." %}
{% trans "Thanks," %}
{{ sender_name }}
......
......@@ -8,12 +8,12 @@
{% endblocktrans %}
<p>
{% blocktrans with link_start='<a href="' link_middle='">' link_end='</a>' trimmed %}
{{ course_team }} has reviewed the preview of the {{ link_start }}{{ page_url }}{{ link_middle }}{{ run_number }}{{ link_end }} course run of {{ link_start }}{{ course_page_url }}{{ link_middle }}{{ course_name }}{{ link_end }} from {{ org_name }}. The course run is now ready for publication.
{{ course_team }} has reviewed the preview of the About page for the {{ link_start }}{{ page_url }}{{ link_middle }}{{ run_number }}{{ link_end }} course run of {{ course_name }} from {{ org_name }}. You can now publish this About page.
{% endblocktrans %}
</p>
{% comment %}Translators: It's closing of mail.{% endcomment %}
{% trans "Thank you," %}<br>
{% trans "Thanks," %}<br>
{{ course_team }}
......
......@@ -4,7 +4,7 @@
Dear {{ publisher_role_name }},
{% endblocktrans %}
{% blocktrans trimmed %}
{{ course_team }} has reviewed the preview of the {{ run_number }} {{ page_url }} course run of {{ course_name }} {{ course_page_url }} from {{ org_name }}. The course run is now ready for publication.
{{ course_team }} has reviewed the preview of the About page for the {{ run_number }} {{ page_url }} course run of {{ course_name }} from {{ org_name }}. You can now publish this About page.
{% endblocktrans %}
{% trans "Thanks," %}
......
......@@ -8,7 +8,7 @@
{% endblocktrans %}
<p>
{% blocktrans with link_start='<a href="' link_middle='">' link_end='</a>' trimmed %}
A preview is now available for the {{ link_start }}{{ page_url }}{{ link_middle }}{{ course_run_number }}{{ link_end }} course run of {{ link_start }}{{ course_page_url }}{{ link_middle }}{{ course_name }}{{ link_end }}. {{ link_start }}{{ preview_link }}{{ link_middle }} See the preview{{ link_end }} to review or suggest edits to this course run.
A preview is now available for the {{ course_run_number }} course run of {{ course_name }}. {{ link_start }}{{ preview_link }}{{ link_middle }} View the course run in Publisher{{ link_end }} to access the preview for this About page and accept or decline the preview.
{% endblocktrans %}
</p>
......
......@@ -5,7 +5,7 @@
{% endblocktrans %}
{% blocktrans trimmed %}
A preview is now available for the {{ course_run_number }} course run of {{ course_name }} {{ course_page_url }}. See the preview {{ page_url }} to review or suggest edits to this course run.
A preview is now available for the {{ course_run_number }} course run of {{ course_name }}. View the course run in Publisher {{ page_url }} to access the preview for this About page and accept or decline the preview.
{% endblocktrans %}
{% trans "Thanks," %}
......
......@@ -7,13 +7,13 @@
Dear {{ recipient_name }},
{% endblocktrans %}
<p>
{% blocktrans with link_start='<a href="' link_middle='">' link_end='</a>' trimmed %}
The {{ link_start }}{{ page_url }}{{ link_middle }}{{ course_run_number }} course run{{ link_end }} of {{ link_start }}{{ course_page_url }}{{ link_middle }}{{ course_name }}{{ link_end }} has been published. No further action is necessary for this course run.
{% blocktrans trimmed %}
The About page for the {{ course_run_number }} course run of {{ course_name }} has been published. No further action is necessary.
{% endblocktrans %}
</p>
<p>
{% blocktrans with link_start='<a href="' link_middle='">' link_end='</a>' trimmed %}
{{ link_start }}{{ preview_url }}{{ link_middle }}View this course run live.{{ link_end }}
{{ link_start }}{{ preview_url }}{{ link_middle }}View this About page on edx.org.{{ link_end }}
{% endblocktrans %}
</p>
{% comment %}Translators: It's closing of mail.{% endcomment %}
......
......@@ -4,11 +4,11 @@
Dear {{ recipient_name }},
{% endblocktrans %}
{% blocktrans trimmed %}
The {{ course_run_number }} {{ page_url }} course run of {{ course_name }} {{ course_page_url }} has been published. No further action is necessary for this course run.
The About page for the {{ course_run_number }} course run of {{ course_name }} has been published. No further action is necessary.
{% endblocktrans %}
{% blocktrans trimmed %}
View this course run live. {{ preview_url }}
View this About page on edx.org. {{ preview_url }}
{% endblocktrans %}
......
......@@ -9,10 +9,15 @@
{% endblocktrans %}
<p>
{% blocktrans with link_start='<a href="' link_middle='">' link_end='</a>' trimmed %}
{{ sender_team }} for {{ link_start }}{{ course_page_url }}{{ link_middle }}{{ course_name }}{{ link_end }} from {{ org_name }} has submitted the {{ link_start }}{{ page_url }}{{ link_middle }}{{ run_number }} course run{{ link_end }} for review. {{ link_start }}{{ page_url }}{{ link_middle }} View this course run in Publisher{{ link_end }} to review the changes or suggest edits.
{{ sender_team }} for course_name from {{ org_name }} has submitted the {{ run_number }} course run for review. {{ link_start }}{{ page_url }}{{ link_middle }} View this course run in Publisher{{ link_end }} to review the changes or suggest edits.
{% endblocktrans %}
</p>
<!-- The link in this new sentence should go to the course run in Studio.-->
<p>
{% blocktrans with link_start='<a href="' link_middle='">' link_end='</a>' trimmed %}
This is a good time to {{ link_start }}{{ studio_url }}{{ link_middle }} review this course run in Studio{{ link_end }}.
{% endblocktrans %}
</p>
{% comment %}Translators: It's closing of mail.{% endcomment %}
{% trans "Thank you," %}<br>
{{ sender_name }}
......
......@@ -6,6 +6,9 @@
{% blocktrans trimmed %}
{{ sender_team }} for {{ course_name }} from {{ org_name }} has submitted the {{ run_number }} course run for review. {{ page_url }} View this course run in Publisher to review the changes or suggest edits.
{% endblocktrans %}
{% blocktrans trimmed %}
This is a good time to {{ studio_url }} review this course run in Studio.
{% endblocktrans %}
{% trans "Thank you," %}
{{ sender_name }}
......
......@@ -9,22 +9,21 @@
<p>
{% blocktrans trimmed with link_start='<a href="' link_middle='">' link_end='</a>' %}
The {{ team_name }} has reviewed the preview for {{ link_start }}{{ page_url }}{{ link_middle }}{{ course_name }}{{ link_end }}. View the course run in Publisher for more information.
{{ team_name }} has declined the preview of the About page for the {{ run_number }} course run of {{course_name}}. {{ link_start }}{{ page_url }}{{ link_middle }}View the course run in Publisher.{{ link_end }}
{% endblocktrans %}
</p>
<p>
{% blocktrans trimmed %}
{{ team_name }} added the following comment to this preview.
{{ team_name }} added the following comment.
{% endblocktrans %}
</p>
<p style="font-style: italic;">
"{{ comment.comment }}"
</p>
<p>
<a href="{{ page_url }}">{% trans "View comment in Publisher" %}</a>
</p>
<p>{% trans "The edX team" %}</p>
{% comment %}Translators: It's closing of mail.{% endcomment %}
{% trans "Thanks," %}<br>
{% trans "The edX team" %}
<!-- End Message Body -->
{% endblock body %}
......@@ -5,11 +5,12 @@
{% endblocktrans %}
{% blocktrans trimmed %}
The {{ team_name }} has reviewed the preview for {{ course_name }}. View the course run in Publisher for more information.
{{ team_name }} has declined the preview of the About page for the {{ run_number }} course run of {{ course_name }}. View the course run in Publisher.
{% endblocktrans %}
{{ comment.comment }}
{% trans "{{ team_name }} added the following comment." %}{{ page_url }}
{% trans "View comment in Publisher: " %}{{ page_url }}
{{ comment.comment }}
{% trans "Thanks," %}
{% trans "The edX team" %}
......@@ -3,42 +3,51 @@
{% block body %}
<!-- Message Body -->
<!-- Is it still true that we need users to enter this info "both in Publisher and in Studio" (line 21)? -->
<p>
{% comment %}Translators: course_team_name is course team member name.{% endcomment %}
{% blocktrans trimmed %}
Dear {{ course_team_name }},
{% endblocktrans %}
<p>
{% blocktrans with link_start='<a href="' link_middle='">' link_end='</a>' trimmed %}
EdX has {{ updated_text }} a Studio instance for {{ link_start }}{{ course_run_page_url }}{{ link_middle }} {{ course_name }}{{ link_end }}.
You can now edit this course and configure your course team in Studio.
{% endblocktrans %}
</p>
<p>
{% blocktrans with link_start='<a href="https://www.edx.org/">' link_end='</a>' start_tag='<b>' end_tag='</b>' trimmed %}
Before edX can announce your course on {{ link_start }}edx.org{{ link_end }}, you need to add the following items {{ start_tag }}both in Publisher and in Studio{{ end_tag }}.
{% blocktrans trimmed %}
{{ project_coordinator_name }} has created a Studio URL for the {{ course_run }} course run of {{ course_name }}. You can now take either of the following actions.
{% endblocktrans %}
</p>
<ul>
<li>{% trans "Course start date" %}</li>
<li>{% trans "Course end date" %}</li>
<li>{% trans "Course image" %}</li>
<li>{% trans "Certificate assets (including signatory names, titles, and signature images)" %}</li>
<li>
<a href="{{ studio_url }}">
{% trans "Enter course run content in Studio." %}
</a>
</li>
<li>
<a href="{{ course_run_page_url }}">
{% trans "Continue adding About page information for this course run in Publisher." %}
</a>
</li>
</ul>
<p>
{% trans "In addition, keep the following items in mind as you build your course." %}
<b>
{% trans "Important Notes" %}
</b>
</p>
<ul>
<li>
{% blocktrans with link_start='<a href="http://edx.readthedocs.io/projects/edx-partner-course-staff/en/latest/video/video_prereqs.html#video-getting-started">' link_end='</a>' trimmed %}
If this course is not a re-run, your video administrator must work with edX partner support to enable the {{ link_start }}video upload tool{{ link_end }} before you can add videos to your course.
{% endblocktrans %}
{% trans "Before edX can publish the About page for this course run, you must also add the following items for this course run in Studio." %}
</li>
<ul>
<li>{% trans "Course start date" %}</li>
<li>{% trans "Course end date" %}</li>
<li>{% trans "Course image" %}</li>
<li>{% trans "Certificate assets (including signatory names, titles, and signature images)" %}</li>
</ul>
<li>
{% blocktrans with link_start='<a href="https://docs.google.com/spreadsheets/d/1phjmDNoARq4YjJoiFZc0ELumj3r04r36LEncCjN9PVk/">' link_end='</a>' trimmed %}
We expect your completed {{ link_start }}MOOC Development Checklist{{ link_end }} before your course starts. This checklist includes valuable best practices that help you to stay on track as you design and build your course. We recommend that you use the list early!
EdX expects your completed {{ link_start }}MOOC Development Checklist{{ link_end }} before the course run starts.
{% endblocktrans %}
</li>
<li>
{% blocktrans with link_start='<a href="http://edx.readthedocs.io/projects/edx-partner-course-staff/en/latest/set_up_course/setting_up_student_view.html#add-a-course-about-video-to-edx-org">' link_end='</a>' trimmed %}
If this is the first run of a course, you should upload the course About video before you submit the course for review in Publisher. For more information, see {{ link_start }}Add a Course About Video to edx.org{{ link_end }}.
{% endblocktrans %}
</li>
</ul>
......
......@@ -4,10 +4,28 @@
Dear {{ course_team_name }},
{% endblocktrans %}
{% blocktrans trimmed %}
EdX has {{ updated_text }} a Studio instance for {{ course_name }}: {{ course_run_page_url }}.
You can now edit this course in Studio.
{{ project_coordinator_name }} has created a Studio URL for the {{ course_run}} course run of {{ course_name }}. You can now take either of the following actions.
{% endblocktrans %}
{% trans "Enter course run content in Studio." %} {{ studio_url }}
{% trans "Continue adding About page information for this course run in Publisher." %} {{ course_run_page_url }}
{% trans "Important Notes" %}
{% trans "Before edX can publish the About page for this course run, you must also add the following items for this course run in Studio." %}
{% trans "Course start date" %}
{% trans "Course end date" %}
{% trans "Course image" %}
{% trans "Certificate assets (including signatory names, titles, and signature images)" %}
{% trans "EdX expects your completed MOOC Development Checklist before the course run starts." %} https://docs.google.com/spreadsheets/d/1phjmDNoARq4YjJoiFZc0ELumj3r04r36LEncCjN9PVk/
{% trans "If this is the first run of a course, you should upload the course About video before you submit the course for review in Publisher. For more information, see Add a Course About Video to edx.org." %}
http://edx.readthedocs.io/projects/edx-partner-course-staff/en/latest/set_up_course/setting_up_student_view.html#add-a-course-about-video-to-edx-org
{% trans "Thanks," %}
{{ project_coordinator_name }}
......
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