42 lines
1.4 KiB
JavaScript
42 lines
1.4 KiB
JavaScript
import { defineMessages } from '@edx/frontend-platform/i18n';
|
|
|
|
const messages = defineMessages({
|
|
translationTourModalTitle: {
|
|
id: 'translationSelection.translationTourModalTitle',
|
|
defaultMessage: 'New translation feature!',
|
|
description: 'Title for the translation modal.',
|
|
},
|
|
translationTourModalBody: {
|
|
id: 'translationSelection.translationTourModalBody',
|
|
defaultMessage: 'Now you can easily translate course content.',
|
|
description: 'Body for the translation modal.',
|
|
},
|
|
tryItButtonText: {
|
|
id: 'translationSelection.tryItButtonText',
|
|
defaultMessage: 'Try it',
|
|
description: 'Button text for the translation modal.',
|
|
},
|
|
dismissButtonText: {
|
|
id: 'translationSelection.dismissButtonText',
|
|
defaultMessage: 'Dismiss',
|
|
description: 'Button text for the translation modal.',
|
|
},
|
|
languageSelectionModalTitle: {
|
|
id: 'translationSelection.languageSelectionModalTitle',
|
|
defaultMessage: 'Translate this course',
|
|
description: 'Title for the translation modal.',
|
|
},
|
|
cancelButtonText: {
|
|
id: 'translationSelection.cancelButtonText',
|
|
defaultMessage: 'Cancel',
|
|
description: 'Button text for the translation modal.',
|
|
},
|
|
submitButtonText: {
|
|
id: 'translationSelection.submitButtonText',
|
|
defaultMessage: 'Submit',
|
|
description: 'Button text for the translation modal.',
|
|
},
|
|
});
|
|
|
|
export default messages;
|