Skip to content

Commit

Permalink
fix: intl of tab labels
Browse files Browse the repository at this point in the history
  • Loading branch information
rpenido committed Jul 5, 2024
1 parent 3400f71 commit 2672082
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/library-authoring/LibraryAuthoringPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ const LibraryAuthoringPage = () => {
onSelect={handleTabChange}
className="my-3"
>
<Tab eventKey={TAB_LIST.home} title="Home" />
<Tab eventKey={TAB_LIST.components} title="Components" />
<Tab eventKey={TAB_LIST.collections} title="Collections" />
<Tab eventKey={TAB_LIST.home} title={intl.formatMessage(messages.homeTab)} />
<Tab eventKey={TAB_LIST.components} title={intl.formatMessage(messages.componentsTab)} />
<Tab eventKey={TAB_LIST.collections} title={intl.formatMessage(messages.componentsTab)} />
</Tabs>
<Routes>
<Route
Expand Down
15 changes: 15 additions & 0 deletions src/library-authoring/messages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,21 @@ const messages = defineMessages({
defaultMessage: 'Add component',
description: 'Button text to add a new component',
},
homeTab: {
id: 'course-authoring.library-authoring.home-tab',
defaultMessage: 'Home',
description: 'Tab label for the home tab',
},
componentsTab: {
id: 'course-authoring.library-authoring.components-tab',
defaultMessage: 'Components',
description: 'Tab label for the components tab',
},
collectionsTab: {
id: 'course-authoring.library-authoring.collections-tab',
defaultMessage: 'Components',
description: 'Tab label for the collections tab',
},
componentsTempPlaceholder: {
id: 'course-authoring.library-authoring.components-temp-placeholder',
defaultMessage: 'There are {componentCount} components in this library',
Expand Down

0 comments on commit 2672082

Please sign in to comment.