File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 815
815
"receive" : " Receive {{coinCode}}" ,
816
816
"receive_bitcoin" : " Receive Bitcoin" ,
817
817
"receive_crypto" : " Receive crypto" ,
818
- "search" : " Search…"
818
+ "search" : " Search…" ,
819
+ "sell" : " Sell {{coinCode}}" ,
820
+ "sell_bitcoin" : " Sell Bitcoin" ,
821
+ "sell_crypto" : " Sell crypto"
819
822
},
820
823
"genericError" : " An error occurred. If you notice any issues, please restart the application." ,
821
824
"goal" : {
Original file line number Diff line number Diff line change @@ -247,7 +247,12 @@ export const BTCDirect = ({
247
247
< div className = { style . header } >
248
248
< Header title = {
249
249
< h2 >
250
- { t ( 'generic.buy' , { context : translationContext } ) }
250
+ { action === 'buy' ? (
251
+ t ( 'generic.buy' , { context : translationContext } )
252
+ ) : (
253
+ t ( 'generic.sell' , { context : translationContext } )
254
+ ) }
255
+ { }
251
256
</ h2 >
252
257
} />
253
258
</ div >
You can’t perform that action at this time.
0 commit comments