* feat: replace hardcoded edx string with site_name from configs * feat: add ability to obtain site name dynamically * fix: localize overriding createPortal method
12 lines
289 B
JavaScript
12 lines
289 B
JavaScript
import { defineMessages } from '@edx/frontend-platform/i18n';
|
|
|
|
const messages = defineMessages({
|
|
'course-authoring.page.title': {
|
|
id: 'course-authoring.page.title',
|
|
defaultMessage: 'Course Authoring | {siteName}',
|
|
description: 'Title tag',
|
|
},
|
|
});
|
|
|
|
export default messages;
|