Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/enrollments/components/EnrollmentStatusModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const EnrollmentStatusModal = ({ isOpen, onClose }: EnrollmentStatusModalProps)
</ModalDialog.Header>
<ModalDialog.Body className="border-bottom border-top border-light-700">
<div className="my-2">
<p>{intl.formatMessage(messages.addLearnerInstructions)}</p>
<p>{intl.formatMessage(messages.enrollmentStatusInstructions)}</p>
<FormControl
placeholder={intl.formatMessage(messages.enrollmentStatusPlaceholder)}
value={learnerIdentifier}
Expand Down
7 changes: 6 additions & 1 deletion src/enrollments/messages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,12 @@ const messages = defineMessages({
addLearnerInstructions: {
id: 'instruct.enrollments.modals.checkEnrollmentStatus.addLearnerInstructions',
defaultMessage: 'Enter email addresses and/or usernames separated by new lines or commas. You will not get notification for emails that bounce, so please double-check spelling.',
description: 'Instructions for enroll learners to the course',
description: 'Instructions for enrolling learners to the course',
},
enrollmentStatusInstructions: {
id: 'instruct.enrollments.modals.checkEnrollmentStatus.enrollmentStatusInstructions',
defaultMessage: 'Enter email address or username. An incorrect or misspelled email address may result in an inaccurate status, please double-check spelling.',
description: 'Instructions for checking enrollment status of a learner in the course',
},
enrollmentStatusPlaceholder: {
id: 'instruct.enrollments.modals.checkEnrollmentStatus.enrollmentStatusPlaceholder',
Expand Down
Loading