diff --git a/src/component/modalTipView/view.js b/src/component/modalTipView/view.js index 70d38a9..301a225 100644 --- a/src/component/modalTipView/view.js +++ b/src/component/modalTipView/view.js @@ -65,14 +65,16 @@ export default class ModalTipView extends React.PureComponent { }; render() { - const { balance, onCancelPress, onOverlayPress } = this.props; + const { balance, channelName, contentName, onCancelPress, onOverlayPress } = this.props; const canSendTip = this.state.tipAmount > 0; return ( - {__('Send a tip')} + + {channelName ? __('Send a tip to %channel%', { channel: channelName }) : __('Send a tip')} + @@ -100,6 +102,20 @@ export default class ModalTipView extends React.PureComponent { {this.state.sendTipStarted && } + + + {__( + 'This will appear as a tip for %content%, which will boost its ability to be discovered while active.', + { content: contentName } + )} + + + +