Skip to content

Commit f9ec869

Browse files
committed
Merge branch 'buy-sell-labels-fix' into release-v4.45.0
2 parents 2cbe6ab + a727fdd commit f9ec869

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

frontends/web/src/locales/en/app.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,6 @@
372372
"button": {
373373
"abort": "Abort",
374374
"back": "Back",
375-
"buy": "Buy",
376375
"changepin": "Change device password",
377376
"check": "Check backup",
378377
"continue": "Continue",
@@ -398,6 +397,7 @@
398397
"exchange": {
399398
"bankTransfer": "Bank transfer",
400399
"bestDeal": "Best deal",
400+
"buy": "Buy",
401401
"creditCard": "Credit card",
402402
"fast": "Fast",
403403
"fee": "fee",
@@ -459,7 +459,8 @@
459459
},
460460
"noExchanges": "Sorry, there are no available exchanges in this region.",
461461
"region": "Region",
462-
"selectRegion": "Not specified"
462+
"selectRegion": "Not specified",
463+
"sell": "Sell"
463464
},
464465
"info": {
465466
"continue": "Agree and continue",

frontends/web/src/routes/exchange/components/exchangetab.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ export const ExchangeTab = ({
3636
active={activeTab === 'buy'}
3737
onClick={() => onChangeTab('buy')}
3838
>
39-
{t('Buy')}
39+
{t('buy.exchange.buy')}
4040
</PillButton>
4141
<PillButton
4242
active={activeTab === 'sell'}
4343
onClick={() => onChangeTab('sell')}
4444
>
45-
{t('Sell')}
45+
{t('buy.exchange.sell')}
4646
</PillButton>
4747
</PillButtonGroup>
4848
);

0 commit comments

Comments
 (0)