Files
frontend-app-authoring/src/import-page/messages.js
2023-09-25 12:07:08 -04:00

31 lines
1.5 KiB
JavaScript

import { defineMessages } from '@edx/frontend-platform/i18n';
const messages = defineMessages({
pageTitle: {
id: 'course-authoring.import.page.title',
defaultMessage: '{headingTitle} | {courseName} | {siteName}',
},
headingTitle: {
id: 'course-authoring.import.heading.title',
defaultMessage: 'Course import',
},
headingSubtitle: {
id: 'course-authoring.import.heading.subtitle',
defaultMessage: 'Tools',
},
description1: {
id: 'course-authoring.import.description1',
defaultMessage: 'Be sure you want to import a course before continuing. The contents of the imported course will replace the contents of the existing course. You cannot undo a course import. Before you proceed, we recommend that you export the current course, so that you have a backup copy of it.',
},
description2: {
id: 'course-authoring.import.description2',
defaultMessage: 'The course that you import must be in a .tar.gz file (that is, a .tar file compressed with GNU Zip). This .tar.gz file must contain a course.xml file. It may also contain other files.',
},
description3: {
id: 'course-authoring.import.description3',
defaultMessage: 'The import process has five stages. During the first two stages, you must stay on this page. You can leave this page after the unpacking stage has completed. We recommend, however, that you don\'t make important changes to your course until the import operation has completed.',
},
});
export default messages;