diff --git a/.env b/.env index 2e9264c07..cc62dcbca 100644 --- a/.env +++ b/.env @@ -23,6 +23,7 @@ PUBLISHER_BASE_URL='' REFRESH_ACCESS_TOKEN_ENDPOINT='' SEGMENT_KEY='' SITE_NAME='' +STUDIO_SHORT_NAME='Studio' SUPPORT_EMAIL='' SUPPORT_URL='' USER_INFO_COOKIE_NAME='' @@ -30,11 +31,8 @@ ENABLE_ACCESSIBILITY_PAGE=false ENABLE_PROGRESS_GRAPH_SETTINGS=false ENABLE_TEAM_TYPE_SETTING=false ENABLE_NEW_EDITOR_PAGES=true -ENABLE_NEW_HOME_PAGE = false ENABLE_NEW_COURSE_OUTLINE_PAGE = false ENABLE_NEW_VIDEO_UPLOAD_PAGE = false -ENABLE_NEW_GRADING_PAGE = false -ENABLE_NEW_COURSE_TEAM_PAGE = false ENABLE_UNIT_PAGE = false ENABLE_VIDEO_UPLOAD_PAGE_LINK_IN_CONTENT_DROPDOWN = false BBB_LEARN_MORE_URL='' diff --git a/.env.development b/.env.development index 4707975eb..79af5244a 100644 --- a/.env.development +++ b/.env.development @@ -25,6 +25,7 @@ REFRESH_ACCESS_TOKEN_ENDPOINT='http://localhost:18000/login_refresh' SEGMENT_KEY=null SITE_NAME='Your Plaform Name Here' STUDIO_BASE_URL='http://localhost:18010' +STUDIO_SHORT_NAME='Studio' SUPPORT_EMAIL= SUPPORT_URL='https://support.edx.org' USER_INFO_COOKIE_NAME='edx-user-info' @@ -34,8 +35,6 @@ ENABLE_TEAM_TYPE_SETTING=false ENABLE_NEW_EDITOR_PAGES=true ENABLE_NEW_COURSE_OUTLINE_PAGE = false ENABLE_NEW_VIDEO_UPLOAD_PAGE = false -ENABLE_NEW_GRADING_PAGE = false -ENABLE_NEW_COURSE_TEAM_PAGE = false ENABLE_UNIT_PAGE = false ENABLE_VIDEO_UPLOAD_PAGE_LINK_IN_CONTENT_DROPDOWN = false BBB_LEARN_MORE_URL='' diff --git a/.env.test b/.env.test index ecb87d55e..4dfdcfece 100644 --- a/.env.test +++ b/.env.test @@ -22,17 +22,15 @@ REFRESH_ACCESS_TOKEN_ENDPOINT='http://localhost:18000/login_refresh' SEGMENT_KEY=null SITE_NAME='edX' STUDIO_BASE_URL='http://localhost:18010' +STUDIO_SHORT_NAME='Studio' SUPPORT_EMAIL='support@example.com' SUPPORT_URL='https://support.edx.org' USER_INFO_COOKIE_NAME='edx-user-info' ENABLE_PROGRESS_GRAPH_SETTINGS=false ENABLE_TEAM_TYPE_SETTING=false ENABLE_NEW_EDITOR_PAGES=true -ENABLE_NEW_HOME_PAGE = false ENABLE_NEW_COURSE_OUTLINE_PAGE = true ENABLE_NEW_VIDEO_UPLOAD_PAGE = true -ENABLE_NEW_GRADING_PAGE = true -ENABLE_NEW_COURSE_TEAM_PAGE = true ENABLE_UNIT_PAGE = true ENABLE_VIDEO_UPLOAD_PAGE_LINK_IN_CONTENT_DROPDOWN = true BBB_LEARN_MORE_URL='' diff --git a/src/export-page/CourseExportPage.jsx b/src/export-page/CourseExportPage.jsx index 9d3d9e698..55ae67064 100644 --- a/src/export-page/CourseExportPage.jsx +++ b/src/export-page/CourseExportPage.jsx @@ -59,7 +59,7 @@ const CourseExportPage = ({ intl, courseId }) => { })} - +
{ title={intl.formatMessage(messages.headingTitle)} subtitle={intl.formatMessage(messages.headingSubtitle)} /> -

{intl.formatMessage(messages.description1, { studioShortName: getConfig().STUDIO_SHORT_NAME })}

-

{intl.formatMessage(messages.description2)}

+

{intl.formatMessage(messages.description1, { studioShortName: getConfig().STUDIO_SHORT_NAME })}

+

{intl.formatMessage(messages.description2)}

( -