16 lines
613 B
TypeScript
16 lines
613 B
TypeScript
import { defineMessages } from '@edx/frontend-platform/i18n';
|
|
|
|
const messages = defineMessages({
|
|
connectionError: {
|
|
id: 'authoring.alert.error.connection',
|
|
defaultMessage: 'We encountered a technical error when loading this page. This might be a temporary issue, so please try again in a few minutes. If the problem persists, please go to the {supportLink} for help.',
|
|
description: 'Error message shown to users when there is a connectivity issue with the server.',
|
|
},
|
|
supportText: {
|
|
id: 'authoring.alert.support.text',
|
|
defaultMessage: 'Support Page',
|
|
},
|
|
});
|
|
|
|
export default messages;
|