Skip to content

Commit

Permalink
fix: i18n_extract error
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyrylo Hudym-Levkovych authored and Kyrylo Hudym-Levkovych committed Jul 8, 2024
1 parent f0c148b commit 98364a1
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import React from 'react';
import PropTypes from 'prop-types';
import { Form } from '@edx/paragon';
import { FormattedMessage } from '@edx/frontend-platform/i18n';
import { RECIPIENTS_DISPLAY_NAMES } from '../../utils';

import './bulkEmailRecepient.scss';

Expand Down Expand Up @@ -42,7 +41,7 @@ export default function BulkEmailRecipient(props) {
<Form.Checkbox key="myself" value="myself" className="mt-2.5 col col-lg-4 col-sm-6 col-12">
<FormattedMessage
id="bulk.email.form.recipients.myself"
defaultMessage={RECIPIENTS_DISPLAY_NAMES.myself}
defaultMessage="Myself"
description="A selectable choice from a list of potential email recipients"
/>
</Form.Checkbox>
Expand All @@ -53,7 +52,7 @@ export default function BulkEmailRecipient(props) {
>
<FormattedMessage
id="bulk.email.form.recipients.staff"
defaultMessage={RECIPIENTS_DISPLAY_NAMES.staff}
defaultMessage="Staff and instructors"
description="A selectable choice from a list of potential email recipients"
/>
</Form.Checkbox>
Expand Down Expand Up @@ -100,7 +99,7 @@ export default function BulkEmailRecipient(props) {
>
<FormattedMessage
id="bulk.email.form.recipients.learners"
defaultMessage={RECIPIENTS_DISPLAY_NAMES.learners}
defaultMessage="All students"
description="A selectable choice from a list of potential email recipients"
/>
</Form.Checkbox>
Expand Down

0 comments on commit 98364a1

Please sign in to comment.