Files
frontend-app-authoring/plugins/course-apps/edxnotes/messages.js
Braden MacDonald 3c661e15cb Convert "Pages & Resources" page to a plugin system (#638)
* feat: Make "Pages & Resources" course apps into plugins

* feat: move ora_settings

* feat: move proctoring

* feat: move progress

* feat: move teams

* feat: move wiki

* feat: move Xpert settings

* fix: add webpack.prod.config.js

* fix: clean up unused parts of package.json files

* feat: Add an error message when displaying a Course App Plugin fails

* chore: fix various eslint warnings

* chore: fix jest tests

* fix: error preventing "npm ci" from working

* feat: better tests for <SettingsComponent>

* chore: move xpert_unit_summary into same dir as other plugins

* fix: eslint-import-resolver-webpack is a dev dependency

* chore: move learning_assistant to be a plugin too

* feat: for compatibility, install 2U plugins by default

* fix: bug with learning_assistant package.json
2024-02-28 11:50:54 -05:00

26 lines
874 B
JavaScript

import { defineMessages } from '@edx/frontend-platform/i18n';
const messages = defineMessages({
heading: {
id: 'course-authoring.pages-resources.notes.heading',
defaultMessage: 'Configure notes',
},
enableNotesLabel: {
id: 'course-authoring.pages-resources.notes.enable-notes.label',
defaultMessage: 'Notes',
},
enableNotesHelp: {
id: 'course-authoring.pages-resources.notes.enable-notes.help',
defaultMessage: `Learners can access their notes either in the body of the
course of on a notes page. On the notes page, a learner can see all the
notes made during the course. The page also contains links to the location
of the notes in the course body.`,
},
enableNotesLink: {
id: 'course-authoring.pages-resources.notes.enable-notes.link',
defaultMessage: 'Learn more about notes',
},
});
export default messages;