Use different copy for outgoing gift badges
This commit is contained in:
parent
6b231346d9
commit
7b1721b0d0
2 changed files with 6 additions and 2 deletions
|
@ -2716,10 +2716,14 @@
|
|||
"message": "This message was deleted.",
|
||||
"description": "Shown in a message's bubble when the message has been deleted for everyone."
|
||||
},
|
||||
"message--giftBadge--unopened": {
|
||||
"message--giftBadge--unopened--incoming": {
|
||||
"message": "View this message on mobile to open it",
|
||||
"description": "Shown in a message's bubble when you've received a gift badge from a contact"
|
||||
},
|
||||
"message--giftBadge--unopened--outgoing": {
|
||||
"message": "Tap this message on mobile to view your gift",
|
||||
"description": "Shown in a message's bubble when you've sent a gift badge to a contact"
|
||||
},
|
||||
"message--giftBadge--unopened--label": {
|
||||
"message": "Gift",
|
||||
"description": "Shown in a message's bubble when you've received a gift badge from a contact"
|
||||
|
|
|
@ -1284,7 +1284,7 @@ export class Message extends React.PureComponent<Props, State> {
|
|||
}
|
||||
|
||||
if (giftBadge.state === GiftBadgeStates.Unopened) {
|
||||
const description = i18n('message--giftBadge--unopened');
|
||||
const description = i18n(`message--giftBadge--unopened--${direction}`);
|
||||
const isRTL = getDirection(description) === 'rtl';
|
||||
const { metadataWidth } = this.state;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue