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.

Commit 19870d3

Browse files
konstantinosG-derivKonstantinos-Gk
andauthored
fix: subtask (#4250)
Co-authored-by: Konstantinos-Gk <[email protected]>
1 parent aa392b0 commit 19870d3

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

crowdin/messages.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1252,6 +1252,7 @@
12521252
"1636782601": "Multipliers",
12531253
"1637050346": "Why did my credit card deposit get declined?",
12541254
"1637552314": "Once you are satisfied with the parameters that you have set, select either ‘Up’ or ‘Down’ to purchase your contract. Otherwise, continue to customise the parameters and place your order when you are satisfied with the conditions.",
1255+
"1641242912": "_t_Sign up for your demo account now._t_",
12551256
"1641578390": "1 }",
12561257
"1643887982": "Amazon.com Inc",
12571258
"1644652204": "Fund your account with your preferred payment method.",

src/components/custom/_signup-flat.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react'
22
import styled from 'styled-components'
33
import { Input, Button, LinkButton } from 'components/form'
44
import { Header, Text } from 'components/elements'
5-
import { localize } from 'components/localization'
5+
import { Localize, localize } from 'components/localization'
66
import { Container } from 'components/containers'
77
import device from 'themes/device'
88
// SVG
@@ -135,11 +135,11 @@ const SignupFlat = ({
135135
weight="bold"
136136
color={dark ? 'white' : 'black'}
137137
>
138-
{localize('Join over 2.5 million traders worldwide')}
138+
<Localize translate_text="_t_Join over 2.5 million traders worldwide_t_" />
139139
</StyledHeader>
140140
<br />
141141
<Text color={dark ? 'white' : 'black'}>
142-
{localize('Sign up for your demo account now.')}
142+
<Localize translate_text="_t_Sign up for your demo account now._t_" />
143143
</Text>
144144
<InputGroup>
145145
<InputWrapper>

src/pages/markets/components/sections/_hero_derived_fx.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,15 +134,17 @@ const MarketSubHeader = styled.div`
134134
font-size: 16px;
135135
width: 25vw;
136136
color: var(--color-black-9);
137-
text-align: center;
137+
text-align: left;
138138
line-height: 24px;
139139
140140
@media ${device.laptopM} {
141141
min-width: 40rem;
142+
text-align: center;
142143
}
143144
@media ${device.mobileM} {
144145
font-size: 14px;
145146
width: 83vw;
147+
text-align: center;
146148
}
147149
`
148150
const StyledHeader = styled(Header)`

0 commit comments

Comments
 (0)