mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-28 20:53:24 +10:00
Merge pull request #654 from sharetribe/fix-feed-translations
Fix activity feed translations
This commit is contained in:
commit
5081d91e13
2 changed files with 6 additions and 6 deletions
|
|
@ -157,13 +157,13 @@ const resolveTransitionMessage = (
|
|||
return isOwnTransition ? (
|
||||
<FormattedMessage id="ActivityFeed.ownTransitionDecline" />
|
||||
) : (
|
||||
<FormattedMessage id="ActivityFeed.transitionDecline" />
|
||||
<FormattedMessage id="ActivityFeed.transitionDecline" values={{ displayName }} />
|
||||
);
|
||||
case TRANSITION_EXPIRE:
|
||||
return ownRole === TX_TRANSITION_ACTOR_PROVIDER ? (
|
||||
<FormattedMessage id="ActivityFeed.ownTransitionAutoDecline" />
|
||||
<FormattedMessage id="ActivityFeed.ownTransitionExpire" />
|
||||
) : (
|
||||
<FormattedMessage id="ActivityFeed.transitionAutoDecline" values={{ displayName }} />
|
||||
<FormattedMessage id="ActivityFeed.transitionExpire" values={{ displayName }} />
|
||||
);
|
||||
case TRANSITION_CANCEL:
|
||||
return <FormattedMessage id="ActivityFeed.transitionCancel" />;
|
||||
|
|
|
|||
|
|
@ -4,17 +4,17 @@
|
|||
"ActivityFeed.leaveAReview": "Leave a review for { displayName }.",
|
||||
"ActivityFeed.leaveAReviewSecond": "Leave a review for { displayName } to see their review.",
|
||||
"ActivityFeed.ownTransitionAccept": "You accepted the booking request.",
|
||||
"ActivityFeed.ownTransitionAutoDecline": "Booking request expired. You did not reply on time.",
|
||||
"ActivityFeed.ownTransitionDecline": "You declined the booking request.",
|
||||
"ActivityFeed.ownTransitionExpire": "Booking request expired. You did not reply on time.",
|
||||
"ActivityFeed.ownTransitionRequest": "You requested to book { listingTitle }.",
|
||||
"ActivityFeed.ownTransitionReview": "You left a review for { displayName }.",
|
||||
"ActivityFeed.showOlderMessages": "Show older",
|
||||
"ActivityFeed.today": "Today",
|
||||
"ActivityFeed.transitionAccept": "{ displayName } accepted the booking request.",
|
||||
"ActivityFeed.transitionAutoDecline": "Booking request expired. { displayName } did not reply on time.",
|
||||
"ActivityFeed.transitionCancel": "The booking was cancelled.",
|
||||
"ActivityFeed.transitionComplete": "The booking was completed. { reviewLink }",
|
||||
"ActivityFeed.transitionDecline": "{ displayName } declined the booking request.",
|
||||
"ActivityFeed.transitionExpire": "Booking request expired. { displayName } did not reply on time.",
|
||||
"ActivityFeed.transitionRequest": "{ displayName } requested to book { listingTitle }.",
|
||||
"ActivityFeed.transitionReview": "{ displayName } left a review for you. { reviewLink }",
|
||||
"AuthenticationPage.emailAlreadyInUse": "An account with this email address already exists. Try logging in instead.",
|
||||
|
|
@ -465,8 +465,8 @@
|
|||
"ReviewModal.description": "Reviews are an important part of the Saunatime community. Please share what went well and what could have been improved.",
|
||||
"ReviewModal.later": "Later",
|
||||
"ReviewModal.title": "Leave a review for {revieweeName}",
|
||||
"SearchFilters.foundResults": "{count, number} {count, plural, one {result} other {results}}",
|
||||
"SearchFilters.filtersButtonLabel": "Filters",
|
||||
"SearchFilters.foundResults": "{count, number} {count, plural, one {result} other {results}}",
|
||||
"SearchFilters.loadingResults": "Loading search results…",
|
||||
"SearchFilters.loadingResultsMobile": "Loading…",
|
||||
"SearchFilters.noResults": "Could not find any listings.",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue