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.

Konstantinos / Remove Japan #4426

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
2 changes: 1 addition & 1 deletion crowdin/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -760,6 +760,7 @@
"1015371290": "Experienced affiliate managers answer all your queries and provide you with excellent promotional and educational materials.",
"1015510435": "BMW",
"1016846951": "> USD 20,000 per month",
"1021226457": "<0>Note</0>: Accumulators aren’t available in Singapore and the EU.",
"1021490172": "Try another keyword",
"1022161791": "Join Deriv’s team in Germany and work on next-gen fintech products. View our current openings for a chance to build a fulfilling career.",
"1022211991": "Security",
Expand Down Expand Up @@ -1720,7 +1721,6 @@
"-993480898": "Accumulators",
"-527888991": "Available on <0>DTrader</0>, accumulators give you up to a 99% chance of growing your payout exponentially at every tick.",
"-1665591661": "You can trade accumulators on the <0>Crash/Boom</0>, <0>Jump</0>, and <0>Volatility</0> indices. We’ll enable accumulators for <0>Derived FX</0> indices soon.",
"-190551824": "<0>Note</0>: Accumulators aren’t available in Singapore, Japan, and the EU.",
"-661391580": "To find out more, visit the <0>Accumulators page</0>.",
"-1698968926": "How do I trade accumulators?",
"-726477239": "Visit the <0>Accumulators page</0> to learn more about trading accumulators.",
Expand Down
2 changes: 1 addition & 1 deletion src/common/country-base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,5 +135,5 @@ export const african_countries = [
// special partnership payments for this countries
export const cpa_plan_countries = ['za', 'ec']

export const isEuCountry = (clients_country: typeof eu_countries[number]): boolean =>
export const isEuCountry = (clients_country: (typeof eu_countries)[number]): boolean =>
eu_countries.includes(clients_country)
1 change: 1 addition & 0 deletions src/components/custom/_signup-public.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ const EmailButton = styled(Button)<{ isChecked?: boolean }>`
@media ${device.tabletL} {
padding: 10px 16px;
white-space: nowrap;
border-radius: 4px;
min-width: unset;
margin-left: 0;
height: 40px;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/help-centre/data/_accumulators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const accumulators: TQuestionsData = {
},
{
translation_text:
'_t_<0>Note</0>: Accumulators aren’t available in Singapore, Japan, and the EU._t_',
'_t_<0>Note</0>: Accumulators aren’t available in Singapore and the EU._t_',
translation_components: [{ key: 0, type: 'strong' }],
has_margin_top: true,
},
Expand Down
3 changes: 0 additions & 3 deletions src/pages/markets/components/sections/_other-markets.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,6 @@ const markets_type: MarketsType = {
content_eu: (
<Localize translate_text="Forex trading gives you the chance to profit from changes in the relative values of currencies on the forex market." />
),
content_eu: (
<Localize translate_text="Forex trading gives you the chance to profit from changes in the relative values of currencies on the forex market." />
),
to: '/markets/forex/',
id: 'marketforexothermarkets',
},
Expand Down
9 changes: 2 additions & 7 deletions src/pages/markets/static/style/_markets-style.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,18 +139,13 @@ export const MarketsList = styled(CssGrid)<MarketsListProps>`
export const DerivedMarketsList = styled.div<MarketsListProps>`
display: grid;
border-left: 1px solid var(--color-grey-22);
border-right: ${({ has_right_border }) =>
has_right_border ? '1px solid var(--color-grey-22)' : 'unset'};
grid-template-columns: ${({ col }) => `repeat(${col ?? 2}, 1fr)`};
border-right: var(--solid-grey-22);
width: 100%;
height: fit-content;
padding: 24px;
gap: ${({ gap }) => (gap ? gap : '12px')};
@media ${device.tabletL} {
grid-template-columns: ${({ tablet_col }) => `repeat(${tablet_col ?? 2}, 1fr)`};
display: grid;
min-height: 76px;
}

@media ${device.mobileL} {
grid-template-columns: ${({ mobile_col }) => `repeat(${mobile_col ?? 2}, 1fr)`};
${({ mobile_template }) => mobile_template && 'border-left: unset;'};
Expand Down
2 changes: 1 addition & 1 deletion src/pages/trade-types/components/_style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,4 +164,4 @@ export {
OptionGridSecondary,
MarketsItem,
StartTradingBg,
}
}