-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0d62bd2
commit 8e38065
Showing
3 changed files
with
160 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import { defineMessages } from '@edx/frontend-platform/i18n'; | ||
|
||
const messages = defineMessages({ | ||
pageTitle: { | ||
id: 'course-authoring.course-optimizer.page.title', | ||
defaultMessage: '{headingTitle} | {courseName} | {siteName}', | ||
}, | ||
noDataCard: { | ||
id: 'course-authoring.course-optimizer.noDataCard', | ||
defaultMessage: 'No Scan data available', | ||
}, | ||
noBrokenLinksCard: { | ||
id: 'course-authoring.course-optimizer.emptyResultsCard', | ||
defaultMessage: 'No broken links found', | ||
}, | ||
scanHeader: { | ||
id: 'course-authoring.course-optimizer.scanHeader', | ||
defaultMessage: 'Broken Links Scan', | ||
}, | ||
lockedCheckboxLabel: { | ||
id: 'course-authoring.course-optimizer.lockedCheckboxLabel', | ||
defaultMessage: 'Show Locked Course Files', | ||
}, | ||
brokenLinksNumber: { | ||
id: 'course-authoring.course-optimizer.brokenLinksNumber', | ||
defaultMessage: '{count} broken links', | ||
}, | ||
lockedInfoTooltip: { | ||
id: 'course-authoring.course-optimizer.lockedInfoTooltip', | ||
defaultMessage: 'These course files are "locked", so we cannot test whether they work or not.', | ||
}, | ||
brokenLinkStatus: { | ||
id: 'course-authoring.course-optimizer.brokenLinkStatus', | ||
defaultMessage: 'Status: Broken', | ||
}, | ||
lockedLinkStatus: { | ||
id: 'course-authoring.course-optimizer.lockedLinkStatus', | ||
defaultMessage: 'Status: Locked', | ||
}, | ||
}); | ||
|
||
export default messages; |