Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Amina/Footer update #1910

Merged
merged 3 commits into from
Jul 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/components/layout/footer/disclaimer.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,9 @@ const DisclaimerSection = () => {
<Localize translate_text="CFDs are considered complex derivatives and may not be suitable for retail clients." />
</DisclaimerParagraph>
<DisclaimerParagraph>
<Localize translate_text="CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. 68% of retail investor accounts lose money when trading CFDs with this provider. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money." />
<Localize translate_text="CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. {{loss_percent}}% of retail investor accounts lose money when trading CFDs with this provider. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money."
values={{ loss_percent: 63 }}
/>
</DisclaimerParagraph>
<DisclaimerParagraph>
<Localize translate_text="The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money." />
Expand Down Expand Up @@ -168,7 +170,9 @@ const DisclaimerSection = () => {
<Localize translate_text="CFDs are considered complex derivatives and may not be suitable for retail clients." />
</DisclaimerParagraph>
<DisclaimerParagraph>
<Localize translate_text="CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. 68% of retail investor accounts lose money when trading CFDs with this provider. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money." />
<Localize translate_text="CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. {{loss_percent}}% of retail investor accounts lose money when trading CFDs with this provider. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money."
values={{ loss_percent: 63 }}
/>
</DisclaimerParagraph>
<DisclaimerParagraph>
<Localize translate_text="The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money." />
Expand Down
3 changes: 2 additions & 1 deletion src/components/layout/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ export const CFDWarning = ({ is_ppc }) => {
<CFDContainer>
<CFDText>
<Localize
translate_text="CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. <0>68% of retail investor accounts lose money when trading CFDs with this provider.</0> You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money."
translate_text="CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. <0>{{loss_percent}}% of retail investor accounts lose money when trading CFDs with this provider.</0> You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money."
values={{ loss_percent: 63 }}
components={[<strong key={0} />]}
/>
</CFDText>
Expand Down