Skip to content

Commit fbb533f

Browse files
thisconnectbenma
authored andcommitted
frontend: update pocket info content
Added info about which currencies, transfer methods, reccuring payments and identity verification.
1 parent 521bd4a commit fbb533f

File tree

2 files changed

+57
-6
lines changed

2 files changed

+57
-6
lines changed

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

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,9 +333,27 @@
333333
"supportedCurrencies": "Supports all major fiat currencies: USD, EUR, CHF, and more."
334334
},
335335
"pocket": {
336-
"fee": "Fee: {{fee}}%",
336+
"fees": {
337+
"info": "Bank transfer: {{fee}}%",
338+
"title": "Fees"
339+
},
337340
"learnMore": "Learn more about Pocket",
338-
"supportedBankTransfers": "Supports CHF SEPA and EUR instant SEPA bank transfers"
341+
"payment": {
342+
"bankTransfer": "Bank transfer",
343+
"bankTransferDetails": {
344+
"sepa": "SEPA and SEPA Instant (EUR transactions in SEPA countries only)",
345+
"sic": "Swiss Interbank Clearing (CHF transactions in CH/LI only)",
346+
"uk": "UK Faster Payments (GBP transactions in the UK only)"
347+
},
348+
"bankTransferReccuring": "How to set up recurring purchases with a standing order?",
349+
"title": "Payment methods"
350+
},
351+
"supportedCurrencies": "Supports European currencies: EUR, GBP, and CHF.",
352+
"verification": {
353+
"info": "Only requires identity verification above daily and annual thresholds.",
354+
"link": "Find current thresholds here",
355+
"title": "Identity verification"
356+
}
339357
},
340358
"region": {
341359
"title": "Select the region your bank account is registered in to see which options are available to you."

frontends/web/src/routes/buy/components/infocontent.tsx

Lines changed: 37 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,46 @@ export const MoonPayInfo = ({ cardFee, bankTransferFee }: TMoonPayInfo) => {
6363

6464
export const PocketInfo = ({ bankTransferFee }: TPocketInfo) => {
6565
const { t } = useTranslation();
66-
const formattedBankTransferFee = bankTransferFee && bankTransferFee * 100;
66+
const fee = bankTransferFee && bankTransferFee * 100;
6767
return (
6868
<div className={style.container}>
69-
<p>{t('buy.exchange.infoContent.pocket.supportedBankTransfers')}</p>
70-
<p>{t('buy.exchange.infoContent.pocket.fee', { fee: formattedBankTransferFee })}</p>
69+
<p>{t('buy.exchange.infoContent.pocket.supportedCurrencies')}</p>
70+
<br />
71+
<p><b>{t('buy.exchange.infoContent.pocket.payment.title')}</b></p>
72+
<br />
73+
<p>{t('buy.exchange.infoContent.pocket.payment.bankTransfer')}</p>
74+
<ul>
75+
<li>{t('buy.exchange.infoContent.pocket.payment.bankTransferDetails.sepa')}</li>
76+
<li>{t('buy.exchange.infoContent.pocket.payment.bankTransferDetails.uk')}</li>
77+
<li>{t('buy.exchange.infoContent.pocket.payment.bankTransferDetails.sic')}</li>
78+
</ul>
7179
<br/>
72-
<p><A href="https://pocketbitcoin.com/">{t('buy.exchange.infoContent.pocket.learnMore')}</A></p>
80+
<p>
81+
<A href="https://pocketbitcoin.com/faq/how-do-I-set-up-my-standing-order">
82+
{t('buy.exchange.infoContent.pocket.payment.bankTransferReccuring')}
83+
</A>
84+
</p>
85+
<br />
86+
<p><b>{t('buy.exchange.infoContent.pocket.verification.title')}</b></p>
87+
<br />
88+
<p>{t('buy.exchange.infoContent.pocket.verification.info')}</p>
89+
<br />
90+
<p>
91+
<A href="https://pocketbitcoin.com/faq/are-there-any-limits-with-pocket">
92+
{t('buy.exchange.infoContent.pocket.verification.link')}
93+
</A>
94+
</p>
95+
<br />
96+
<p><b>{t('buy.exchange.infoContent.pocket.fees.title')}</b></p>
97+
<ul>
98+
<li>{t('buy.exchange.infoContent.pocket.fees.info', { fee })}</li>
99+
</ul>
100+
<br />
101+
<p>
102+
<A href="https://pocketbitcoin.com/">
103+
{t('buy.exchange.infoContent.pocket.learnMore')}
104+
</A>
105+
</p>
73106
</div>
74107
);
75108
};

0 commit comments

Comments
 (0)