This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: fix unmarked translations (#306)
- Loading branch information
1 parent
23fcf91
commit baa036e
Showing
4 changed files
with
43 additions
and
18 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
11 changes: 11 additions & 0 deletions
11
src/orders-and-subscriptions/OrdersAndSubscriptionsPage.messages.js
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,11 @@ | ||
import { defineMessages } from '@edx/frontend-platform/i18n'; | ||
|
||
const messages = defineMessages({ | ||
'ecommerce.order.history.loading': { | ||
id: 'ecommerce.order.history.loading', | ||
defaultMessage: 'Loading orders and subscriptions...', | ||
description: 'Message when orders and subscriptions page is loading.', | ||
}, | ||
}); | ||
|
||
export default messages; |
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,17 @@ | ||
import { defineMessages } from '@edx/frontend-platform/i18n'; | ||
|
||
const messages = defineMessages({ | ||
'ecommerce.order.history.manage.subscriptions.button': { | ||
id: 'ecommerce.order.history.manage.subscriptions.button', | ||
defaultMessage: 'Orders and subscriptions', | ||
description: | ||
'Button label to navigate to the orders and subscriptions page.', | ||
}, | ||
'ecommerce.order.history.manage.subscriptions.loading': { | ||
id: 'ecommerce.order.history.manage.subscriptions.loading', | ||
defaultMessage: 'Loading manage subscriptions...', | ||
description: 'Message when loading the manage subscriptions page.', | ||
}, | ||
}); | ||
|
||
export default messages; |