From 33222476e1af05ca3b67d8d0f47c253688c65cf0 Mon Sep 17 00:00:00 2001 From: hirad-deriv Date: Tue, 25 Jun 2024 18:03:49 +0800 Subject: [PATCH 01/17] Hirad/CFDs-3919/ Adding zero spread as one of MT5 options (#15422) * chore: adding the first steps of zero spread * fix: differentiation between Zero spread and swap free is done * chore: finished the Zero spread implementation * chore: fixed the issue of account creation flow * chore: resolving the sonar cloud issues * fix: heading title and some small other issues * chore: updated the title of top-up button * refactor: add icon * chore: fixing the account type on password modal * fix: adding jurisdiction for swap-free accounts in the accounts creation flow * chore: improving the quality of code * refactor: pass product into cashier transfer mt5 * chore: adding the pop over to zero spread in compare accounts * chore: updated the top up modal text * chore: making small changes based on the demo * chore: made changes based on comments * chore: capitalising the spread word * chore: making changes based on the comments * chore: making type change for cTrader * chore: making improvements to the task * chore: making the new text bigger * chore: removed the redundant class * chore: removing the redundant div * chore: removed the redundant fragment * chore: updating the landing_company_shortcode in the modal * fix: updated the styling of the component * chore: updated the code a bit * chore: removing the redundant function from the trade modal * chore: updared the New! word to NEW * chore: changing the placement of zero spread in compare accounts page * fix: The issue of investor password modal is fixed * fix: added new tag to logged out page * fix: removed the Demo word from the TH dashboard * fix: updated the style of options and CFDs switcher * chore: added the keyword Deriv to demo success modal * chore: added the MT5 word for demo success modal * chore: made the color of the platform switcher darker * chore: separated the EU and normal content * chore: added the Deriv MT5 word for success modal * chore: adding the missing deriv word * chore: updating the bold options text to normal * feat: created cfd password modal info * feat: added cfd password modal info css * feat: added info icon * feat: added info to cfd password modal * feat: created cfd password modal checkbox * feat: added checkbox to cfd password modal * feat: added real account condition * fix: update tnc link text to bold * fix: info text values * fix: updated checked logic * fix: updated to jurisdiction checkbox * fix: added Fragment * fix: updated tnc text to bold * feat: added cfd password modal tnc component * feat: added tnc to password modal * fix: make cfd modal scrollable * fix: make tnc text small letter * fix: info icon size * fix: info icon size * chore: removed the duplicate type * fix: tnc to bottom * fix: added tnc to password change modal * fix: added tnc to password change modal --------- Co-authored-by: rostislav-deriv Co-authored-by: Hirad Lashkarian Co-authored-by: hasan-deriv --- .../ic-appstore-zero-spread.svg | 1 + .../assets/svgs/trading-platform/index.tsx | 2 + .../cfds-listing-logged-out.tsx | 1 + .../components/cfds-listing/cfds-listing.scss | 23 +++-- .../src/components/cfds-listing/index.tsx | 9 +- .../containers/trading-app-card.scss | 6 +- .../containers/trading-app-card.tsx | 23 ++--- .../src/modules/traders-hub/traders-hub.scss | 18 +++- packages/appstore/src/types/common.types.ts | 1 + packages/cashier-v2/src/types.ts | 2 +- .../ic-appstore-zero-spread.svg | 1 + .../assets/svgs/trading-platform/index.tsx | 2 + .../src/stores/account-transfer-store.ts | 1 + .../ic-appstore-zero-spread.svg | 1 + .../Assets/svgs/trading-platform/index.tsx | 2 + packages/cfd/src/Components/props.types.ts | 3 + .../cfd-compare-accounts-title-icon.spec.tsx | 25 ++++- .../cfd-compare-accounts-card.tsx | 12 +-- .../cfd-compare-accounts-description.tsx | 27 ++++- .../cfd-compare-accounts-title-icon.tsx | 9 +- .../cfd-compare-accounts.scss | 19 ++++ .../src/Containers/cfd-password-change.tsx | 19 +++- .../Containers/cfd-password-modal-info.tsx | 33 +++++++ .../src/Containers/cfd-password-modal-tnc.tsx | 40 ++++++++ .../cfd/src/Containers/cfd-password-modal.tsx | 61 +++++++++--- .../Containers/cfd-reset-password-modal.tsx | 2 +- .../cfd/src/Containers/dmt5-trade-modal.tsx | 85 ++++++++++------ .../cfd/src/Containers/mt5-trade-modal.tsx | 4 +- packages/cfd/src/Helpers/cfd-config.ts | 11 ++- .../src/Helpers/compare-accounts-config.ts | 99 ++++++++++++++----- .../Stores/Modules/CFD/Helpers/cfd-config.ts | 25 +++-- .../cfd/src/Stores/Modules/CFD/cfd-store.js | 24 +++-- .../Containers/cfd-reset-password-modal.tsx | 2 +- packages/cfd/src/sass/cfd.scss | 43 +++++++- packages/cfd/src/types/cfd-store.types.ts | 3 +- .../components/icon/common/ic-info-light.svg | 3 + .../components/src/components/icon/icons.js | 2 + .../icon/mt5/ic-mt5-zero-spread.svg | 1 + packages/core/src/Constants/cfd-text.js | 7 +- packages/core/src/Stores/traders-hub-store.js | 85 ++++++++++++++-- packages/shared/src/styles/constants.scss | 3 + .../src/utils/cfd/available-cfd-accounts.ts | 3 + packages/shared/src/utils/cfd/cfd.ts | 49 ++++++--- packages/stores/types.ts | 5 +- 44 files changed, 637 insertions(+), 160 deletions(-) create mode 100644 packages/appstore/src/assets/svgs/trading-platform/ic-appstore-zero-spread.svg create mode 100644 packages/cashier/src/assets/svgs/trading-platform/ic-appstore-zero-spread.svg create mode 100644 packages/cfd/src/Assets/svgs/trading-platform/ic-appstore-zero-spread.svg create mode 100644 packages/cfd/src/Containers/cfd-password-modal-info.tsx create mode 100644 packages/cfd/src/Containers/cfd-password-modal-tnc.tsx create mode 100644 packages/components/src/components/icon/common/ic-info-light.svg create mode 100644 packages/components/src/components/icon/mt5/ic-mt5-zero-spread.svg diff --git a/packages/appstore/src/assets/svgs/trading-platform/ic-appstore-zero-spread.svg b/packages/appstore/src/assets/svgs/trading-platform/ic-appstore-zero-spread.svg new file mode 100644 index 000000000000..7bf648dc239a --- /dev/null +++ b/packages/appstore/src/assets/svgs/trading-platform/ic-appstore-zero-spread.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/appstore/src/assets/svgs/trading-platform/index.tsx b/packages/appstore/src/assets/svgs/trading-platform/index.tsx index 3a277ca0a2c7..874fb56867bb 100644 --- a/packages/appstore/src/assets/svgs/trading-platform/index.tsx +++ b/packages/appstore/src/assets/svgs/trading-platform/index.tsx @@ -19,6 +19,7 @@ import DerivGoBlack from 'Assets/svgs/trading-platform/ic-appstore-derivgo-black import Options from 'Assets/svgs/trading-platform/ic-appstore-options.svg'; import SmartTraderBlue from 'Assets/svgs/trading-platform/ic-appstore-smarttrader-blue.svg'; import SwapFree from 'Assets/svgs/trading-platform/ic-appstore-swap-free.svg'; +import ZeroSpread from 'Assets/svgs/trading-platform/ic-appstore-zero-spread.svg'; import Demo from 'Assets/svgs/trading-platform/ic-brand-demo.svg'; import { IconProps } from '../icon-types'; @@ -43,6 +44,7 @@ export const PlatformIcons = { Options, SmartTrader, SmartTraderBlue, + ZeroSpread, Standard, }; diff --git a/packages/appstore/src/components/cfds-listing-logged-out/cfds-listing-logged-out.tsx b/packages/appstore/src/components/cfds-listing-logged-out/cfds-listing-logged-out.tsx index 8fcfe5be63ce..62749dd07ba6 100644 --- a/packages/appstore/src/components/cfds-listing-logged-out/cfds-listing-logged-out.tsx +++ b/packages/appstore/src/components/cfds-listing-logged-out/cfds-listing-logged-out.tsx @@ -44,6 +44,7 @@ const CFDsListingLoggedOut = observer(() => { has_divider={!is_eu_user && getHasDivider(index, list_size, 3)} onAction={() => redirectToLogin(false, getLanguage())} market_type='all' + is_new /> ); })} diff --git a/packages/appstore/src/components/cfds-listing/cfds-listing.scss b/packages/appstore/src/components/cfds-listing/cfds-listing.scss index 29fdbe22712c..061fb05cd823 100644 --- a/packages/appstore/src/components/cfds-listing/cfds-listing.scss +++ b/packages/appstore/src/components/cfds-listing/cfds-listing.scss @@ -504,14 +504,6 @@ color: var(--text-less-prominent); line-height: 1.45; } - &--tag { - background-color: $color-blue; - color: var(--text-colored-background); - border-radius: 0.2rem; - padding: 0 0.4rem; - font-weight: bold; - font-size: 1.3rem; - } &__mobile { &-title { @@ -524,6 +516,21 @@ flex-direction: column; flex-grow: 1; + &-heading--real { + padding: 0.2rem 0.4rem; + margin-left: 0.3rem; + background-color: var(--icon-grey-background); + border-radius: $BORDER_RADIUS; + } + + &-heading--demo { + background-color: $color-blue-8; + color: $color-blue-9; + border-radius: $BORDER_RADIUS; + padding: 0.2rem 0.4rem; + margin-left: 0.3rem; + } + &-balance { margin-left: 1.5rem; } diff --git a/packages/appstore/src/components/cfds-listing/index.tsx b/packages/appstore/src/components/cfds-listing/index.tsx index 1ae293f04ccb..11230da412fe 100644 --- a/packages/appstore/src/components/cfds-listing/index.tsx +++ b/packages/appstore/src/components/cfds-listing/index.tsx @@ -66,7 +66,7 @@ const CFDsListing = observer(() => { financial_restricted_countries, } = traders_hub; - const { setAccountType, toggleCTraderTransferModal } = cfd; + const { setAccountType, toggleCTraderTransferModal, setProduct } = cfd; const { account_status, is_landing_company_loaded, @@ -210,9 +210,7 @@ const CFDsListing = observer(() => { {combined_cfd_mt5_accounts.map((existing_account, index: number) => { const list_size = combined_cfd_mt5_accounts.length; - const track_account_subtitle = is_demo - ? `${existing_account.tracking_name} Demo` - : existing_account.tracking_name; + const track_account_subtitle = existing_account.tracking_name; const has_mt5_account_status = existing_account?.status || is_idv_revoked @@ -226,6 +224,7 @@ const CFDsListing = observer(() => { action_type={existing_account.action_type} availability={selected_region} clickable_icon + is_new icon={existing_account.icon} sub_title={existing_account?.sub_title} name={!has_mt5_account_status ? existing_account?.name : ''} @@ -251,11 +250,13 @@ const CFDsListing = observer(() => { category: selected_account_type, type: existing_account.market_type, }); + setProduct(existing_account.product); setAppstorePlatform(existing_account.platform); getAccount(); } } else if (existing_account.action_type === 'multi-action') { const button_name = e?.currentTarget?.name; + setProduct(existing_account.product); if (button_name === 'transfer-btn') { Analytics.trackEvent('ce_tradershub_dashboard_form', { action: 'account_transfer', diff --git a/packages/appstore/src/components/containers/trading-app-card.scss b/packages/appstore/src/components/containers/trading-app-card.scss index 31ef2f597e55..c0fd004d0fc7 100644 --- a/packages/appstore/src/components/containers/trading-app-card.scss +++ b/packages/appstore/src/components/containers/trading-app-card.scss @@ -47,9 +47,9 @@ height: fit-content; width: fit-content; margin-inline-start: 1rem; - background-color: var(--brand-red-coral); - color: var(--text-colored-background); - border-radius: $BORDER_RADIUS * 4; + background-color: $color-yellow-4; + color: $color-yellow-5; + border-radius: $BORDER_RADIUS; } } diff --git a/packages/appstore/src/components/containers/trading-app-card.tsx b/packages/appstore/src/components/containers/trading-app-card.tsx index c465e348bb4a..479d23e16dc9 100644 --- a/packages/appstore/src/components/containers/trading-app-card.tsx +++ b/packages/appstore/src/components/containers/trading-app-card.tsx @@ -21,6 +21,7 @@ import { getUrlSmartTrader, getUrlBinaryBot, MT5_ACCOUNT_STATUS, + CFD_PRODUCTS_TITLE, } from '@deriv/shared'; import OpenPositionsSVGModal from '../modals/open-positions-svg-modal'; import './trading-app-card.scss'; @@ -58,7 +59,6 @@ const TradingAppCard = ({ const { account_status: { authentication } = {} } = client; const [is_open_position_svg_modal_open, setIsOpenPositionSvgModalOpen] = React.useState(false); - const demo_label = localize('Demo'); const low_risk_cr_non_eu = content_flag === ContentFlag.LOW_RISK_CR_NON_EU; @@ -160,15 +160,10 @@ const TradingAppCard = ({ color='prominent' data-testid='dt_cfd-account-name' > - {!is_real && sub_title ? `${sub_title} ${demo_label}` : sub_title} + {sub_title} {short_code_and_region && ( - + {short_code_and_region} )} @@ -178,21 +173,15 @@ const TradingAppCard = ({ className='title' size='xs' line_height='s' - weight='bold' color={action_type === 'trade' ? 'prominent' : 'general'} data-testid={ action_type === 'get' || is_deriv_platform ? 'dt_platform-name' : 'dt_account-balance' } > - {!is_real && !sub_title && !is_deriv_platform ? `${name} ${localize('Demo')}` : name} + {name} - {is_new && ( - + {is_new && name === CFD_PRODUCTS_TITLE.ZEROSPREAD && ( + {localize('NEW!')} )} diff --git a/packages/appstore/src/modules/traders-hub/traders-hub.scss b/packages/appstore/src/modules/traders-hub/traders-hub.scss index 425fc4065661..cc7b5919d86a 100644 --- a/packages/appstore/src/modules/traders-hub/traders-hub.scss +++ b/packages/appstore/src/modules/traders-hub/traders-hub.scss @@ -35,9 +35,8 @@ &__button-toggle { margin-top: 3rem; - border-radius: $BORDER_RADIUS; padding: 0.4rem; - background-color: var(--general-section-1); + background-color: transparent; } &--mobile { @@ -86,3 +85,18 @@ background: var(--general-main-1); } } + +.dc-button-menu__toggle { + background-color: transparent; + border-bottom: 1px solid var(--general-section-1); + border-radius: 0; + span { + color: var(--text-prominent); + } +} + +.dc-button-menu__toggle--active { + background-color: transparent; + border-bottom: 1px solid var(--button-primary-default); + border-radius: 0; +} diff --git a/packages/appstore/src/types/common.types.ts b/packages/appstore/src/types/common.types.ts index 143d21b43710..ba0237f5730b 100644 --- a/packages/appstore/src/types/common.types.ts +++ b/packages/appstore/src/types/common.types.ts @@ -62,6 +62,7 @@ export type TDetailsOfEachMT5Loginid = DetailsOfEachMT5Loginid & { platform?: string; }; platform?: TPlatform; + product?: 'swap_free' | 'zero_spread' | 'derivx' | 'ctrader'; openFailedVerificationModal?: (from_account: string) => void; market_type: NonNullable | TMarketType; }; diff --git a/packages/cashier-v2/src/types.ts b/packages/cashier-v2/src/types.ts index 2cd3d189b717..7232295c49aa 100644 --- a/packages/cashier-v2/src/types.ts +++ b/packages/cashier-v2/src/types.ts @@ -27,6 +27,7 @@ export namespace TErrorTypes { declare module 'react-router-dom' { export function useHistory(): { + goBack: () => void; location: { hash: string; pathname: TRouteTypes.TRoutes; @@ -34,7 +35,6 @@ declare module 'react-router-dom' { state: Record; }; push: (path: TRouteTypes.TRoutes) => void; - goBack: () => void; }; export function useRouteMatch(path: TRouteTypes.TRoutes): boolean; diff --git a/packages/cashier/src/assets/svgs/trading-platform/ic-appstore-zero-spread.svg b/packages/cashier/src/assets/svgs/trading-platform/ic-appstore-zero-spread.svg new file mode 100644 index 000000000000..7bf648dc239a --- /dev/null +++ b/packages/cashier/src/assets/svgs/trading-platform/ic-appstore-zero-spread.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/cashier/src/assets/svgs/trading-platform/index.tsx b/packages/cashier/src/assets/svgs/trading-platform/index.tsx index 3eac5ef637e3..7e7857ab4155 100644 --- a/packages/cashier/src/assets/svgs/trading-platform/index.tsx +++ b/packages/cashier/src/assets/svgs/trading-platform/index.tsx @@ -5,6 +5,7 @@ import Options from './ic-appstore-options.svg'; import CFDs from './ic-appstore-cfds.svg'; import Standard from './ic-appstore-standard.svg'; import SwapFree from './ic-appstore-swap-free.svg'; +import ZeroSpread from './ic-appstore-zero-spread.svg'; export interface IconProps { icon: T; @@ -20,6 +21,7 @@ export const PlatformIcons = { CFDs, Standard, SwapFree, + ZeroSpread, }; const TradingPlatformIcon = ({ icon, className, size, onClick }: IconProps) => { diff --git a/packages/cashier/src/stores/account-transfer-store.ts b/packages/cashier/src/stores/account-transfer-store.ts index 21822762fb41..f75460b15f6a 100644 --- a/packages/cashier/src/stores/account-transfer-store.ts +++ b/packages/cashier/src/stores/account-transfer-store.ts @@ -394,6 +394,7 @@ export default class AccountTransferStore { sub_account_type: account.sub_account_type, platform: account.account_type, is_eu: this.root_store.client.is_eu, + product: account.product, })} ${this.root_store.client.is_eu ? '' : non_eu_accounts}` : `${cfd_text_display} ${ getCFDAccountDisplay({ diff --git a/packages/cfd/src/Assets/svgs/trading-platform/ic-appstore-zero-spread.svg b/packages/cfd/src/Assets/svgs/trading-platform/ic-appstore-zero-spread.svg new file mode 100644 index 000000000000..7bf648dc239a --- /dev/null +++ b/packages/cfd/src/Assets/svgs/trading-platform/ic-appstore-zero-spread.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/cfd/src/Assets/svgs/trading-platform/index.tsx b/packages/cfd/src/Assets/svgs/trading-platform/index.tsx index 164006c8e3bb..82462dd8a01a 100644 --- a/packages/cfd/src/Assets/svgs/trading-platform/index.tsx +++ b/packages/cfd/src/Assets/svgs/trading-platform/index.tsx @@ -6,6 +6,7 @@ import DerivX from './ic-appstore-deriv-x.svg'; import Derived from './ic-appstore-derived.svg'; import Financial from './ic-appstore-financial.svg'; import SwapFree from './ic-appstore-swap-free.svg'; +import ZeroSpread from './ic-appstore-zero-spread.svg'; import Standard from './ic-appstore-standard.svg'; export interface IconProps { @@ -22,6 +23,7 @@ export const PlatformIcons = { CTrader, SwapFree, DerivX, + ZeroSpread, Standard, }; diff --git a/packages/cfd/src/Components/props.types.ts b/packages/cfd/src/Components/props.types.ts index c4149356bd5d..e35eb267cf47 100644 --- a/packages/cfd/src/Components/props.types.ts +++ b/packages/cfd/src/Components/props.types.ts @@ -8,6 +8,8 @@ export type TCFDPlatform = 'dxtrade' | 'mt5' | 'ctrader'; export type TCFDsPlatformType = 'dxtrade' | 'mt5' | 'ctrader' | ''; +export type TProducts = 'swap_free' | 'zero_spread' | 'ctrader' | 'derivx'; + export type TShortcode = DetailsOfEachMT5Loginid['landing_company_short']; export type TCFDAccountCopy = { @@ -97,6 +99,7 @@ export type TTradingPlatformAvailableAccount = { export type TModifiedTradingPlatformAvailableAccount = Omit & { platform?: 'mt5' | 'dxtrade' | 'ctrader'; market_type: TTradingPlatformAvailableAccount['market_type'] | 'synthetic'; + product?: TProducts; }; export type TCardFlipStatus = { diff --git a/packages/cfd/src/Containers/cfd-compare-accounts/__tests__/cfd-compare-accounts-title-icon.spec.tsx b/packages/cfd/src/Containers/cfd-compare-accounts/__tests__/cfd-compare-accounts-title-icon.spec.tsx index 7d6a88250072..61e40e7fb639 100644 --- a/packages/cfd/src/Containers/cfd-compare-accounts/__tests__/cfd-compare-accounts-title-icon.spec.tsx +++ b/packages/cfd/src/Containers/cfd-compare-accounts/__tests__/cfd-compare-accounts-title-icon.spec.tsx @@ -9,6 +9,7 @@ const mocked_props = { platform: 'mt5', market_type: 'gaming', shortcode: 'svg', + product: '', }, is_eu_user: false, is_demo: false, @@ -60,10 +61,20 @@ describe('', () => { mocked_props.trading_platforms.platform = 'mt5'; mocked_props.trading_platforms.market_type = 'all'; mocked_props.trading_platforms.shortcode = 'svg'; + mocked_props.trading_platforms.product = 'swap_free'; render(); expect(screen.getByText('Swap-Free - SVG')).toBeInTheDocument(); }); + test('should render correct title for Zero Spread market type and shortcode', () => { + mocked_props.trading_platforms.platform = 'mt5'; + mocked_props.trading_platforms.market_type = 'all'; + mocked_props.trading_platforms.shortcode = 'bvi'; + mocked_props.trading_platforms.product = 'zero_spread'; + render(); + expect(screen.getByText('Zero Spread - BVI')).toBeInTheDocument(); + }); + test('should render correct title for Deriv X market type and shortcode', () => { mocked_props.trading_platforms.platform = 'dxtrade'; mocked_props.trading_platforms.market_type = 'all'; @@ -105,13 +116,25 @@ describe('', () => { mocked_props.trading_platforms.platform = 'mt5'; mocked_props.trading_platforms.market_type = 'all'; mocked_props.trading_platforms.shortcode = 'svg'; + mocked_props.trading_platforms.product = 'swap_free'; mocked_props.is_demo = true; mocked_props.is_eu_user = false; render(); expect(screen.getByText('Swap-Free Demo')).toBeInTheDocument(); }); - test('should render correct title for Swap-Free with correct market type and shortcode demo account', () => { + test('should render correct title for Zero Spread with correct market type and shortcode demo account', () => { + mocked_props.trading_platforms.platform = 'mt5'; + mocked_props.trading_platforms.market_type = 'all'; + mocked_props.trading_platforms.shortcode = 'bvi'; + mocked_props.trading_platforms.product = 'zero_spread'; + mocked_props.is_demo = true; + mocked_props.is_eu_user = false; + render(); + expect(screen.getByText('Zero Spread Demo')).toBeInTheDocument(); + }); + + test('should render correct title for DerivX with correct market type and shortcode demo account', () => { mocked_props.trading_platforms.platform = 'dxtrade'; mocked_props.trading_platforms.market_type = 'all'; mocked_props.trading_platforms.shortcode = 'svg'; diff --git a/packages/cfd/src/Containers/cfd-compare-accounts/cfd-compare-accounts-card.tsx b/packages/cfd/src/Containers/cfd-compare-accounts/cfd-compare-accounts-card.tsx index 43bc741a695e..e5bb1e3d79ab 100644 --- a/packages/cfd/src/Containers/cfd-compare-accounts/cfd-compare-accounts-card.tsx +++ b/packages/cfd/src/Containers/cfd-compare-accounts/cfd-compare-accounts-card.tsx @@ -1,28 +1,26 @@ import React from 'react'; - import { Text } from '@deriv/components'; -import { CFD_PLATFORMS } from '@deriv/shared'; +import { PRODUCT } from '../../Helpers/cfd-config'; import { Localize } from '@deriv/translations'; import { TCompareAccountsCard } from 'Components/props.types'; - -import CFDCompareAccountsDescription from './cfd-compare-accounts-description'; -import CFDCompareAccountsPlatformLabel from './cfd-compare-accounts-platform-label'; import CFDCompareAccountsTitleIcon from './cfd-compare-accounts-title-icon'; +import CFDCompareAccountsDescription from './cfd-compare-accounts-description'; import CFDInstrumentsLabelHighlighted from './cfd-instruments-label-highlighted'; +import CFDCompareAccountsPlatformLabel from './cfd-compare-accounts-platform-label'; const CFDCompareAccountsCard = ({ trading_platforms, is_eu_user, is_demo }: TCompareAccountsCard) => { return (
- {trading_platforms.platform === CFD_PLATFORMS.CTRADER && ( + {trading_platforms.product === PRODUCT.ZEROSPREAD && ( - + )} { const market_type = getMarketType(trading_platforms); - const market_type_shortcode = market_type.concat('_', trading_platforms.shortcode ?? ''); + const market_type_shortcode = + trading_platforms.platform === CFD_PLATFORMS.MT5 && market_type === 'all' + ? `${market_type}_${trading_platforms.product}_${trading_platforms.shortcode}` + : market_type.concat('_', trading_platforms.shortcode ?? ''); const juridisction_data = getJuridisctionDescription(market_type_shortcode); const { traders_hub } = useStore(); const { selected_region } = traders_hub; + const zero_spread_spread_message = localize('Commissions apply'); + return (
- {juridisction_data.spread} +
+ {juridisction_data.spread} + {market_type_shortcode === MARKET_TYPE_SHORTCODE.ALL_ZERO_SPREAD_BVI && ( + + )} +
{juridisction_data.spread_description} diff --git a/packages/cfd/src/Containers/cfd-compare-accounts/cfd-compare-accounts-title-icon.tsx b/packages/cfd/src/Containers/cfd-compare-accounts/cfd-compare-accounts-title-icon.tsx index 7d8c0066a694..da89afd19d30 100644 --- a/packages/cfd/src/Containers/cfd-compare-accounts/cfd-compare-accounts-title-icon.tsx +++ b/packages/cfd/src/Containers/cfd-compare-accounts/cfd-compare-accounts-title-icon.tsx @@ -4,15 +4,18 @@ import { localize } from '@deriv/translations'; import TradigPlatformIconProps from '../../Assets/svgs/trading-platform'; import { TCompareAccountsCard } from 'Components/props.types'; import { getAccountCardTitle, getMarketType, getAccountIcon } from '../../Helpers/compare-accounts-config'; -import { CFD_PLATFORMS, MARKET_TYPE_SHORTCODE } from '../../Helpers/cfd-config'; +import { CFD_PLATFORMS, MARKET_TYPE, MARKET_TYPE_SHORTCODE } from '../../Helpers/cfd-config'; const CFDCompareAccountsTitleIcon = ({ trading_platforms, is_eu_user, is_demo }: TCompareAccountsCard) => { const market_type = !is_eu_user ? getMarketType(trading_platforms) : 'CFDs'; - const market_type_shortcode = market_type.concat('_', trading_platforms.shortcode ?? ''); + const market_type_shortcode = + trading_platforms.platform === CFD_PLATFORMS.MT5 && market_type === MARKET_TYPE.ALL + ? `${market_type}_${trading_platforms.product}_${trading_platforms.shortcode}` + : market_type.concat('_', trading_platforms.shortcode ?? ''); const jurisdiction_card_icon = trading_platforms.platform === CFD_PLATFORMS.DXTRADE || trading_platforms.platform === CFD_PLATFORMS.CTRADER ? getAccountIcon(trading_platforms.platform) - : getAccountIcon(market_type); + : getAccountIcon(market_type, trading_platforms.product); const jurisdiction_card_title = trading_platforms.platform === CFD_PLATFORMS.DXTRADE || trading_platforms.platform === CFD_PLATFORMS.CTRADER ? getAccountCardTitle(trading_platforms.platform, is_demo) diff --git a/packages/cfd/src/Containers/cfd-compare-accounts/cfd-compare-accounts.scss b/packages/cfd/src/Containers/cfd-compare-accounts/cfd-compare-accounts.scss index 1e3e20153a7e..d6fda418b3f6 100644 --- a/packages/cfd/src/Containers/cfd-compare-accounts/cfd-compare-accounts.scss +++ b/packages/cfd/src/Containers/cfd-compare-accounts/cfd-compare-accounts.scss @@ -39,6 +39,10 @@ } } } + &-spread { + display: flex; + justify-content: center; + } &-main-container { padding-left: 1rem; padding-right: 1rem; @@ -129,6 +133,21 @@ } } } + &-zerospread-tooltip { + position: relative; + left: 0.5rem; + top: 0.2rem; + &--msg { + position: relative; + width: 100%; + @include mobile { + display: block; + position: fixed; + width: 15.2rem; + right: 0; + } + } + } &-platform-label { background-color: var(--header-background-mt5); padding: 0.9rem; diff --git a/packages/cfd/src/Containers/cfd-password-change.tsx b/packages/cfd/src/Containers/cfd-password-change.tsx index 9a43f226fb22..838eaa3510d9 100644 --- a/packages/cfd/src/Containers/cfd-password-change.tsx +++ b/packages/cfd/src/Containers/cfd-password-change.tsx @@ -4,8 +4,10 @@ import { observer, useStore } from '@deriv/stores'; import { FormSubmitButton, PasswordInput, PasswordMeter, Text } from '@deriv/components'; import { isDesktop, WS, getErrorMessages } from '@deriv/shared'; import { Localize, localize } from '@deriv/translations'; -import { CFD_PLATFORMS } from '../Helpers/cfd-config'; +import { CATEGORY, CFD_PLATFORMS, PRODUCT } from '../Helpers/cfd-config'; import { validatePassword } from '../Helpers/constants'; +import { useCfdStore } from '../Stores/Modules/CFD/Helpers/useCfdStores'; +import CfdPasswordModalTnc from './cfd-password-modal-tnc'; export type TCFDPasswordFormValues = { password: string }; export type TCFDPasswordFormChangeValues = { old_password: string; new_password: string }; @@ -38,12 +40,17 @@ const CFDPasswordChange = observer( onForgotPassword, setNewPasswordValue, should_set_trading_password, + platform, }: TCFDPasswordChangeProps) => { const { ui, modules } = useStore(); + const { product, account_type } = useCfdStore(); const { cfd } = modules; const { setIsMt5PasswordChangedModalVisible, setIsFromMt5MigrationModal } = cfd; const { is_mobile, is_mt5_migration_modal_enabled } = ui; const has_cancel_button = (isDesktop() ? !should_set_trading_password : true) || error_type === 'PasswordReset'; + const [checked, setChecked] = React.useState( + !(product === PRODUCT.ZEROSPREAD && account_type.category === CATEGORY.REAL) + ); const handleCancel = () => { if (!has_cancel_button) { @@ -184,10 +191,18 @@ const CFDPasswordChange = observer(
+ {product === PRODUCT.ZEROSPREAD && account_type.category === CATEGORY.REAL && ( + setChecked(prev => !prev)} + /> + )}
{ + return ( +
+
+ +
+ + + +
+ ); +}; + +export default CfdPasswordModalInfo; diff --git a/packages/cfd/src/Containers/cfd-password-modal-tnc.tsx b/packages/cfd/src/Containers/cfd-password-modal-tnc.tsx new file mode 100644 index 000000000000..9bb595222285 --- /dev/null +++ b/packages/cfd/src/Containers/cfd-password-modal-tnc.tsx @@ -0,0 +1,40 @@ +import React from 'react'; +import { getCFDPlatformLabel, CFD_PRODUCTS_TITLE, CFD_PLATFORMS } from '@deriv/shared'; +import { observer, useStore } from '@deriv/stores'; +import CfdPasswordModalInfo from './cfd-password-modal-info'; +import JurisdictionCheckBox from './jurisdiction-modal/jurisdiction-modal-checkbox'; +import { useCfdStore } from '../Stores/Modules/CFD/Helpers/useCfdStores'; +import classNames from 'classnames'; + +type CfdPasswordModalTncProps = { + platform: typeof CFD_PLATFORMS[keyof typeof CFD_PLATFORMS]; + checked: boolean; + onCheck: () => void; + className?: string; +}; + +const CfdPasswordModalTnc = observer(({ platform, checked, onCheck, className }: CfdPasswordModalTncProps) => { + const { client } = useStore(); + const { should_restrict_vanuatu_account_creation, should_restrict_bvi_account_creation } = client; + const { jurisdiction_selected_shortcode } = useCfdStore(); + + return ( +
+ + +
+ ); +}); + +export default CfdPasswordModalTnc; diff --git a/packages/cfd/src/Containers/cfd-password-modal.tsx b/packages/cfd/src/Containers/cfd-password-modal.tsx index 32eb6df03269..a17fbfc6b433 100644 --- a/packages/cfd/src/Containers/cfd-password-modal.tsx +++ b/packages/cfd/src/Containers/cfd-password-modal.tsx @@ -30,19 +30,21 @@ import { import { observer, useStore } from '@deriv/stores'; import { Localize, localize } from '@deriv/translations'; -import TradingPlatformIcon from '../Assets/svgs/trading-platform'; +import { TProducts } from '../Components/props.types'; import SuccessDialog from '../Components/success-dialog.jsx'; +import CFDPasswordModalTitle from './cfd-password-modal-title'; +import TradingPlatformIcon from '../Assets/svgs/trading-platform'; import MigrationSuccessModal from '../Components/migration-success-modal'; -import { getDxCompanies, getMtCompanies, TDxCompanies, TMtCompanies } from '../Stores/Modules/CFD/Helpers/cfd-config'; import { useCfdStore } from '../Stores/Modules/CFD/Helpers/useCfdStores'; -import CFDPasswordModalTitle from './cfd-password-modal-title'; -import { CFD_PLATFORMS, JURISDICTION, CATEGORY } from '../Helpers/cfd-config'; +import { CFD_PLATFORMS, JURISDICTION, CATEGORY, PRODUCT } from '../Helpers/cfd-config'; +import { getDxCompanies, getMtCompanies, TDxCompanies, TMtCompanies } from '../Stores/Modules/CFD/Helpers/cfd-config'; -import ChangePasswordConfirmation from './cfd-change-password-confirmation'; import CFDPasswordChange from './cfd-password-change'; import CFDPasswordChangeContent from './cfd-password-change-content'; +import ChangePasswordConfirmation from './cfd-change-password-confirmation'; import '../sass/cfd.scss'; +import CfdPasswordModalTnc from './cfd-password-modal-tnc'; export type TCFDPasswordFormValues = { password: string }; @@ -59,6 +61,7 @@ type TIconTypeProps = { platform: string; type?: string; show_eu_related_content: boolean; + product?: TProducts; }; type TCFDPasswordFormReusedProps = { @@ -164,7 +167,7 @@ const ReviewMessageForMT5 = ({ return null; }; -const IconType = React.memo(({ platform, type, show_eu_related_content }: TIconTypeProps) => { +const IconType = React.memo(({ platform, type, show_eu_related_content, product }: TIconTypeProps) => { const traders_hub = window.location.pathname === routes.traders_hub; if (platform === CFD_PLATFORMS.DXTRADE) { return ; @@ -176,6 +179,9 @@ const IconType = React.memo(({ platform, type, show_eu_related_content }: TIconT case 'synthetic': return ; case 'all': + if (product === PRODUCT.ZEROSPREAD) { + return ; + } return ; case 'financial': if (show_eu_related_content) { @@ -190,6 +196,9 @@ const IconType = React.memo(({ platform, type, show_eu_related_content }: TIconT case 'synthetic': return ; case 'all': + if (product === PRODUCT.ZEROSPREAD) { + return ; + } return ; case 'financial': if (show_eu_related_content) { @@ -234,6 +243,11 @@ const CreatePassword = ({ error_message, is_real_financial_stp, }: TCFDCreatePasswordProps) => { + const { product, account_type } = useCfdStore(); + const [checked, setChecked] = React.useState( + !(product === PRODUCT.ZEROSPREAD && account_type.category === CATEGORY.REAL) + ); + return (
)} + {product === PRODUCT.ZEROSPREAD && account_type.category === CATEGORY.REAL && ( + setChecked(prev => !prev)} + /> + )} 0} + is_disabled={!values.password || !checked || Object.keys(errors).length > 0} is_loading={isSubmitting} label={localize('Create {{platform}} password', { platform: getCFDPlatformLabel(platform), @@ -399,6 +420,10 @@ const CFDPasswordForm = observer( }: TCFDPasswordFormProps) => { const { ui } = useStore(); const { is_mobile } = ui; + const { product, account_type } = useCfdStore(); + const [checked, setChecked] = React.useState( + !(product === PRODUCT.ZEROSPREAD && account_type.category === CATEGORY.REAL) + ); const button_label = React.useMemo(() => { if (error_type === 'PasswordReset') { @@ -525,9 +550,17 @@ const CFDPasswordForm = observer( /> )} + {product === PRODUCT.ZEROSPREAD && account_type.category === CATEGORY.REAL && ( + setChecked(prev => !prev)} + /> + )}
); @@ -1016,6 +1050,7 @@ const CFDPasswordModal = observer(({ form_error, platform }: TCFDPasswordModalPr platform={platform} type={account_type.type} show_eu_related_content={show_eu_related_content} + product={product} /> } icon_size='xlarge' diff --git a/packages/cfd/src/Containers/cfd-reset-password-modal.tsx b/packages/cfd/src/Containers/cfd-reset-password-modal.tsx index 9467b0ff9554..8515beaee4fb 100644 --- a/packages/cfd/src/Containers/cfd-reset-password-modal.tsx +++ b/packages/cfd/src/Containers/cfd-reset-password-modal.tsx @@ -14,7 +14,7 @@ const ResetPasswordIntent = ({ current_list, children, is_eu, ...props }: TReset const reset_password_type = localStorage.getItem('cfd_reset_password_type') || 'main'; // Default to main const has_intent = reset_password_intent && - /(real|demo)\.(financial|financial_demo|financial_stp|financial_svg|financial_bvi|financial_fx|financial_v|synthetic|synthetic_svg|synthetic_bvi|synthetic_v|all_svg|dxtrade|all)/.test( + /(real|demo)\.(financial|financial_demo|financial_stp|financial_svg|financial_bvi|financial_fx|financial_v|synthetic|synthetic_svg|synthetic_bvi|synthetic_v|all_swap_free_svg|all_zero_spread_bvi|dxtrade|all)/.test( reset_password_intent ); diff --git a/packages/cfd/src/Containers/dmt5-trade-modal.tsx b/packages/cfd/src/Containers/dmt5-trade-modal.tsx index 10901331ca54..2b947d207e39 100644 --- a/packages/cfd/src/Containers/dmt5-trade-modal.tsx +++ b/packages/cfd/src/Containers/dmt5-trade-modal.tsx @@ -2,10 +2,10 @@ import React from 'react'; import { DetailsOfEachMT5Loginid } from '@deriv/api-types'; import { Text, Icon, Money, StatusBadge } from '@deriv/components'; import getStatusBadgeConfig from '@deriv/account/src/Configs/get-status-badge-config'; -import { getCFDAccountDisplay, getCFDAccountKey, MT5_ACCOUNT_STATUS } from '@deriv/shared'; +import { getCFDAccountKey, MT5_ACCOUNT_STATUS } from '@deriv/shared'; import { observer, useStore } from '@deriv/stores'; import { Localize, localize } from '@deriv/translations'; -import { CATEGORY, CFD_PLATFORMS, MARKET_TYPE, JURISDICTION } from '../Helpers/cfd-config'; +import { CFD_PLATFORMS, MARKET_TYPE, PRODUCT } from '../Helpers/cfd-config'; import TradingPlatformIcon from '../Assets/svgs/trading-platform'; import MigrationBanner from './migration-banner'; import MT5DesktopRedirectOption from './mt5-desktop-redirect-option'; @@ -13,7 +13,7 @@ import MT5MobileRedirectOption from './mt5-mobile-redirect-option'; import PasswordBox from '../Components/passwordbox'; import SpecBox from '../Components/specbox'; import { TCFDPasswordReset } from './props.types'; -import { TTradingPlatformAccounts } from '../Components/props.types'; +import { TProducts, TTradingPlatformAccounts } from '../Components/props.types'; type TMT5TradeModalProps = { mt5_trade_account: DetailsOfEachMT5Loginid; @@ -26,6 +26,8 @@ type TMT5TradeModalProps = { arg5: string | undefined ) => void; toggleModal: () => void; + product?: TProducts; + is_demo: string; }; const getTitle = (market_type: string, show_eu_related_content: boolean) => { @@ -34,36 +36,36 @@ const getTitle = (market_type: string, show_eu_related_content: boolean) => { }; const DMT5TradeModal = observer( - ({ mt5_trade_account, show_eu_related_content, onPasswordManager, toggleModal }: TMT5TradeModalProps) => { + ({ + mt5_trade_account, + show_eu_related_content, + onPasswordManager, + toggleModal, + product, + is_demo, + }: TMT5TradeModalProps) => { const { ui, client } = useStore(); const { is_mobile } = ui; const { account_status: { authentication } = {} } = client; const is_eligible_to_migrate = mt5_trade_account.eligible_to_migrate; - const getCompanyShortcode = () => { - if ( - (mt5_trade_account.account_type === CATEGORY.DEMO && - mt5_trade_account.market_type === MARKET_TYPE.FINANCIAL && - mt5_trade_account.landing_company_short === JURISDICTION.LABUAN) || - mt5_trade_account.account_type === CATEGORY.REAL - ) { - return mt5_trade_account.landing_company_short; - } - return undefined; - }; - const getHeadingTitle = () => - getCFDAccountDisplay({ - market_type: mt5_trade_account.market_type, - sub_account_type: mt5_trade_account.sub_account_type, - platform: CFD_PLATFORMS.MT5, - is_eu: show_eu_related_content, - shortcode: getCompanyShortcode(), - is_mt5_trade_modal: true, - }); const getAccountTitle = () => { if (show_eu_related_content) return 'CFDs'; else if (mt5_trade_account.market_type === MARKET_TYPE.SYNTHETIC) return 'Standard'; - else if (mt5_trade_account.market_type === MARKET_TYPE.ALL) return 'SwapFree'; + else if (mt5_trade_account.market_type === MARKET_TYPE.ALL && product === PRODUCT.SWAPFREE) + return 'Swap-Free'; + else if (mt5_trade_account.market_type === MARKET_TYPE.ALL && product === PRODUCT.ZEROSPREAD) + return 'Zero Spread'; + return 'Financial'; + }; + + const getAccountIcons = () => { + if (show_eu_related_content) return 'CFDs'; + else if (mt5_trade_account.market_type === MARKET_TYPE.SYNTHETIC) return 'Standard'; + else if (mt5_trade_account.market_type === MARKET_TYPE.ALL && product === PRODUCT.SWAPFREE) + return 'SwapFree'; + else if (mt5_trade_account.market_type === MARKET_TYPE.ALL && product === PRODUCT.ZEROSPREAD) + return 'ZeroSpread'; return 'Financial'; }; @@ -82,14 +84,38 @@ const DMT5TradeModal = observer( MT5_ACCOUNT_STATUS.MIGRATED_WITHOUT_POSITION, ].includes(mt5_trade_account?.status); + const shortcode = + mt5_trade_account.landing_company_short && + mt5_trade_account.landing_company_short !== 'svg' && + mt5_trade_account.landing_company_short !== 'bvi' + ? mt5_trade_account.landing_company_short?.charAt(0).toUpperCase() + + mt5_trade_account.landing_company_short?.slice(1) + : mt5_trade_account.landing_company_short?.toUpperCase(); + return (
- +
- - {getHeadingTitle()} - +
+ + {getAccountTitle()} + + {!is_demo ? ( + + {shortcode} + + ) : ( + + {localize('Demo')} + + )} +
{(mt5_trade_account as TTradingPlatformAccounts)?.display_login && ( {(mt5_trade_account as TTradingPlatformAccounts)?.display_login} @@ -149,6 +175,7 @@ const DMT5TradeModal = observer( sub_account_type: mt5_trade_account.sub_account_type, platform: CFD_PLATFORMS.MT5, shortcode: mt5_trade_account.landing_company_short, + product, }); onPasswordManager( mt5_trade_account?.login, diff --git a/packages/cfd/src/Containers/mt5-trade-modal.tsx b/packages/cfd/src/Containers/mt5-trade-modal.tsx index a8be68984c52..232e1d01e362 100644 --- a/packages/cfd/src/Containers/mt5-trade-modal.tsx +++ b/packages/cfd/src/Containers/mt5-trade-modal.tsx @@ -32,7 +32,7 @@ const MT5TradeModal = observer( const { platform } = common; const { is_mobile } = ui; - const { mt5_trade_account, dxtrade_tokens, ctrader_tokens } = useCfdStore(); + const { mt5_trade_account, dxtrade_tokens, ctrader_tokens, product } = useCfdStore(); const CFDTradeModal = () => { if (platform === 'mt5') { @@ -42,6 +42,8 @@ const MT5TradeModal = observer( show_eu_related_content={show_eu_related_content} onPasswordManager={onPasswordManager} toggleModal={toggleModal} + product={product} + is_demo={is_demo} /> ); } diff --git a/packages/cfd/src/Helpers/cfd-config.ts b/packages/cfd/src/Helpers/cfd-config.ts index e73aa74bef18..4f93f99c4a4f 100644 --- a/packages/cfd/src/Helpers/cfd-config.ts +++ b/packages/cfd/src/Helpers/cfd-config.ts @@ -18,6 +18,13 @@ export const MARKET_TYPE = { ALL: 'all', } as const; +export const PRODUCT = { + SWAPFREE: 'swap_free', + ZEROSPREAD: 'zero_spread', + CTRADER: 'ctrader', + DERIVX: 'derivx', +} as const; + export const MOBILE_PLATFORMS = { IOS: 'ios', HAUWEI: 'huawei', @@ -53,7 +60,9 @@ export const MARKET_TYPE_SHORTCODE = { FINANCIAL_VANUATU: 'financial_vanuatu', FINANCIAL_LABUAN: 'financial_labuan', FINANCIAL_MALTA_INVEST: 'financial_maltainvest', - ALL_SVG: 'all_svg', + ALL_SWAP_FREE_SVG: 'all_swap_free_svg', + ALL_ZERO_SPREAD_BVI: 'all_zero_spread_bvi', + ALL_ZS_BVI: 'all_bvi', ALL_DXTRADE: 'all_', } as const; diff --git a/packages/cfd/src/Helpers/compare-accounts-config.ts b/packages/cfd/src/Helpers/compare-accounts-config.ts index 4dfe615ae14f..19a4e40dea99 100644 --- a/packages/cfd/src/Helpers/compare-accounts-config.ts +++ b/packages/cfd/src/Helpers/compare-accounts-config.ts @@ -1,6 +1,6 @@ import { localize } from '@deriv/translations'; -import { TInstrumentsIcon, TModifiedTradingPlatformAvailableAccount } from '../Components/props.types'; -import { CFD_PLATFORMS, MARKET_TYPE, JURISDICTION, REGION, MARKET_TYPE_SHORTCODE } from './cfd-config'; +import { TInstrumentsIcon, TModifiedTradingPlatformAvailableAccount, TProducts } from '../Components/props.types'; +import { CFD_PLATFORMS, MARKET_TYPE, JURISDICTION, REGION, MARKET_TYPE_SHORTCODE, PRODUCT } from './cfd-config'; // Map the accounts according to the market type const getHighlightedIconLabel = ( @@ -16,11 +16,14 @@ const getHighlightedIconLabel = ( return localize('Forex: standard/exotic'); } else if ( (trading_platforms.platform === CFD_PLATFORMS.MT5 && - market_type_shortcode === MARKET_TYPE_SHORTCODE.ALL_SVG) || + market_type_shortcode === MARKET_TYPE_SHORTCODE.ALL_SWAP_FREE_SVG) || trading_platforms.platform === CFD_PLATFORMS.CTRADER ) { return localize('Forex: major/minor'); - } else if (market_type === MARKET_TYPE.SYNTHETIC) { + } else if ( + market_type === MARKET_TYPE.SYNTHETIC || + market_type_shortcode === MARKET_TYPE_SHORTCODE.ALL_ZS_BVI + ) { return localize('Forex: standard'); } return localize('Forex: standard/micro'); @@ -83,18 +86,33 @@ const getHighlightedIconLabel = ( case MARKET_TYPE.ALL: default: if (trading_platforms.platform === CFD_PLATFORMS.MT5) { - return [ - { icon: 'Forex', text: getForexLabel(), highlighted: true }, - { icon: 'Stocks', text: localize('Stocks'), highlighted: true }, - { icon: 'StockIndices', text: localize('Stock indices'), highlighted: true }, - { icon: 'Commodities', text: localize('Commodities'), highlighted: true }, - { icon: 'Cryptocurrencies', text: localize('Cryptocurrencies'), highlighted: true }, - { icon: 'ETF', text: localize('ETFs'), highlighted: true }, - { icon: 'Synthetics', text: localize('Synthetic indices'), highlighted: true }, - { icon: 'Baskets', text: localize('Basket indices'), highlighted: false }, - { icon: 'DerivedFX', text: localize('Derived FX'), highlighted: false }, - ]; + if (trading_platforms.product === PRODUCT.SWAPFREE) { + return [ + { icon: 'Forex', text: getForexLabel(), highlighted: true }, + { icon: 'Stocks', text: localize('Stocks'), highlighted: true }, + { icon: 'StockIndices', text: localize('Stock indices'), highlighted: true }, + { icon: 'Commodities', text: localize('Commodities'), highlighted: true }, + { icon: 'Cryptocurrencies', text: localize('Cryptocurrencies'), highlighted: true }, + { icon: 'ETF', text: localize('ETFs'), highlighted: true }, + { icon: 'Synthetics', text: localize('Synthetic indices'), highlighted: true }, + { icon: 'Baskets', text: localize('Basket indices'), highlighted: false }, + { icon: 'DerivedFX', text: localize('Derived FX'), highlighted: false }, + ]; + } else if (trading_platforms.product === PRODUCT.ZEROSPREAD) { + return [ + { icon: 'Forex', text: getForexLabel(), highlighted: true }, + { icon: 'Stocks', text: localize('Stocks'), highlighted: false }, + { icon: 'StockIndices', text: localize('Stock indices'), highlighted: true }, + { icon: 'Commodities', text: localize('Commodities'), highlighted: true }, + { icon: 'Cryptocurrencies', text: localize('Cryptocurrencies'), highlighted: true }, + { icon: 'ETF', text: localize('ETFs'), highlighted: false }, + { icon: 'Synthetics', text: localize('Synthetic indices'), highlighted: true }, + { icon: 'Baskets', text: localize('Basket indices'), highlighted: true }, + { icon: 'DerivedFX', text: localize('Derived FX'), highlighted: true }, + ]; + } } + return [ { icon: 'Forex', text: getForexLabel(), highlighted: true }, { icon: 'Stocks', text: localize('Stocks'), highlighted: true }, @@ -126,8 +144,10 @@ const getAccountCardTitle = (shortcode: string, is_demo?: boolean) => { return localize('Financial - Vanuatu'); case MARKET_TYPE_SHORTCODE.FINANCIAL_LABUAN: return localize('Financial - Labuan'); - case MARKET_TYPE_SHORTCODE.ALL_SVG: + case MARKET_TYPE_SHORTCODE.ALL_SWAP_FREE_SVG: return is_demo ? localize('Swap-Free Demo') : localize('Swap-Free - SVG'); + case MARKET_TYPE_SHORTCODE.ALL_ZERO_SPREAD_BVI: + return is_demo ? localize('Zero Spread Demo') : localize('Zero Spread - BVI'); case CFD_PLATFORMS.DXTRADE: return is_demo ? localize('Deriv X Demo') : localize('Deriv X'); case CFD_PLATFORMS.CTRADER: @@ -159,14 +179,20 @@ const platformsHeaderLabel = { }; // Get the Account Icons based on the market type -const getAccountIcon = (shortcode: string) => { +const getAccountIcon = (shortcode: string, product?: TProducts) => { switch (shortcode) { case MARKET_TYPE.SYNTHETIC: return 'Standard'; case MARKET_TYPE.FINANCIAL: return 'Financial'; case MARKET_TYPE.ALL: - return 'SwapFree'; + switch (product) { + case PRODUCT.ZEROSPREAD: + return 'ZeroSpread'; + case PRODUCT.SWAPFREE: + default: + return 'SwapFree'; + } case CFD_PLATFORMS.DXTRADE: return 'DerivX'; case CFD_PLATFORMS.CTRADER: @@ -239,6 +265,16 @@ const getJuridisctionDescription = (shortcode: string) => { localize('(License no. SIBA/L/18/1114)'), localize('Regulator/External dispute resolution') ); + case MARKET_TYPE_SHORTCODE.ALL_ZERO_SPREAD_BVI: + return createDescription( + 'Deriv (BVI) Ltd', + 'British Virgin Islands', + localize('British Virgin Islands Financial Services Commission'), + localize('(License no. SIBA/L/18/1114)'), + localize('Regulator/External dispute resolution'), + '1:1000', + '0.0 pips' + ); case MARKET_TYPE_SHORTCODE.SYNTHETIC_VANUATU: case MARKET_TYPE_SHORTCODE.FINANCIAL_VANUATU: return createDescription( @@ -267,9 +303,8 @@ const getJuridisctionDescription = (shortcode: string) => { '', '1:30' ); - // Dxtrade case MARKET_TYPE_SHORTCODE.ALL_DXTRADE: - case MARKET_TYPE_SHORTCODE.ALL_SVG: + case MARKET_TYPE_SHORTCODE.ALL_SWAP_FREE_SVG: case MARKET_TYPE_SHORTCODE.SYNTHETIC_SVG: case MARKET_TYPE_SHORTCODE.FINANCIAL_SVG: default: @@ -280,7 +315,10 @@ const getJuridisctionDescription = (shortcode: string) => { // Sort the MT5 accounts in the order of derived, financial and swap-free const getSortedCFDAvailableAccounts = (available_accounts: TModifiedTradingPlatformAvailableAccount[]) => { const swap_free_accounts = available_accounts - .filter(item => item.market_type === MARKET_TYPE.ALL) + .filter(item => item.market_type === MARKET_TYPE.ALL && item.product === PRODUCT.SWAPFREE) + .map(item => ({ ...item, platform: CFD_PLATFORMS.MT5 } as const)); + const zero_spread_accounts = available_accounts + .filter(item => item.market_type === MARKET_TYPE.ALL && item.product === PRODUCT.ZEROSPREAD) .map(item => ({ ...item, platform: CFD_PLATFORMS.MT5 } as const)); const financial_accounts = available_accounts .filter(item => item.market_type === MARKET_TYPE.FINANCIAL && item.shortcode !== JURISDICTION.MALTA_INVEST) @@ -288,7 +326,7 @@ const getSortedCFDAvailableAccounts = (available_accounts: TModifiedTradingPlatf const gaming_accounts = available_accounts .filter(item => item.market_type === MARKET_TYPE.GAMING) .map(item => ({ ...item, platform: CFD_PLATFORMS.MT5 } as const)); - return [...gaming_accounts, ...financial_accounts, ...swap_free_accounts]; + return [...gaming_accounts, ...financial_accounts, ...swap_free_accounts, ...zero_spread_accounts]; }; // Get the maltainvest accounts for EU and DIEL clients @@ -316,6 +354,7 @@ const dxtrade_data: TModifiedTradingPlatformAvailableAccount = { shortcode: JURISDICTION.SVG, sub_account_type: '', platform: CFD_PLATFORMS.DXTRADE, + product: PRODUCT.DERIVX, }; const ctrader_data: TModifiedTradingPlatformAvailableAccount = { @@ -334,6 +373,7 @@ const ctrader_data: TModifiedTradingPlatformAvailableAccount = { shortcode: JURISDICTION.SVG, sub_account_type: '', platform: CFD_PLATFORMS.CTRADER, + product: 'ctrader', }; // Get the MT5 demo accounts of the user @@ -342,6 +382,14 @@ const getMT5DemoData = (available_accounts: TModifiedTradingPlatformAvailableAcc item => item.market_type === MARKET_TYPE.ALL && item.shortcode === JURISDICTION.SVG && + item.product === PRODUCT.SWAPFREE && + item.platform === CFD_PLATFORMS.MT5 + ); + const zero_spread_demo_accounts = available_accounts.filter( + item => + item.market_type === MARKET_TYPE.ALL && + item.shortcode === JURISDICTION.BVI && + item.product === PRODUCT.ZEROSPREAD && item.platform === CFD_PLATFORMS.MT5 ); const financial_demo_accounts = available_accounts.filter( @@ -350,7 +398,12 @@ const getMT5DemoData = (available_accounts: TModifiedTradingPlatformAvailableAcc const gaming_demo_accounts = available_accounts.filter( item => item.market_type === MARKET_TYPE.GAMING && item.shortcode === JURISDICTION.SVG ); - return [...gaming_demo_accounts, ...financial_demo_accounts, ...swap_free_demo_accounts]; + return [ + ...gaming_demo_accounts, + ...financial_demo_accounts, + ...swap_free_demo_accounts, + ...zero_spread_demo_accounts, + ]; }; const getDxtradeDemoData = (available_accounts: TModifiedTradingPlatformAvailableAccount[]) => { return available_accounts.filter(item => item.platform === CFD_PLATFORMS.DXTRADE); diff --git a/packages/cfd/src/Stores/Modules/CFD/Helpers/cfd-config.ts b/packages/cfd/src/Stores/Modules/CFD/Helpers/cfd-config.ts index d0963846ac5c..1f782317ee4e 100644 --- a/packages/cfd/src/Stores/Modules/CFD/Helpers/cfd-config.ts +++ b/packages/cfd/src/Stores/Modules/CFD/Helpers/cfd-config.ts @@ -1,5 +1,6 @@ import { Jurisdiction } from '@deriv/shared'; import { localize } from '@deriv/translations'; +import { TProducts } from 'Components/props.types'; export type TDxCompanies = ReturnType; export type TMtCompanies = ReturnType; @@ -97,11 +98,11 @@ export const getCTraderCompanies = () => { }; }; -export const getMtCompanies = (is_eu: boolean) => { +export const getMtCompanies = (is_eu: boolean, product?: TProducts) => { const all_config = { account_type: '', leverage: 100, - short_title: localize('Swap-Free'), + short_title: product === 'swap_free' ? localize('Swap-Free') : localize('Zero Spread'), }; const synthetic_config = { account_type: '', @@ -123,15 +124,21 @@ export const getMtCompanies = (is_eu: boolean) => { all: { mt5_account_type: all_config.account_type, leverage: all_config.leverage, - title: localize('Demo Swap-Free'), + title: product === 'swap_free' ? localize('Demo Swap-Free') : localize('Demo Zero Spread'), short_title: all_config.short_title, }, - all_svg: { + all_swap_free_svg: { mt5_account_type: all_config.account_type, leverage: all_config.leverage, title: localize('Demo Swap-Free SVG'), short_title: localize('Swap-Free SVG'), }, + all_zero_spread_bvi: { + mt5_account_type: all_config.account_type, + leverage: all_config.leverage, + title: localize('Demo Zero Spread BVI'), + short_title: localize('Zero Spread BVI'), + }, ctrader: { mt5_account_type: all_config.account_type, leverage: '500', @@ -180,15 +187,21 @@ export const getMtCompanies = (is_eu: boolean) => { all: { mt5_account_type: all_config.account_type, leverage: all_config.leverage, - title: localize('Swap-Free'), + title: product === 'swap_free' ? localize('Swap-Free') : localize('Zero Spread'), short_title: all_config.short_title, }, - all_svg: { + all_swap_free_svg: { mt5_account_type: all_config.account_type, leverage: all_config.leverage, title: localize('Swap-Free SVG'), short_title: all_config.short_title, }, + all_zero_spread_bvi: { + mt5_account_type: all_config.account_type, + leverage: all_config.leverage, + title: localize('Zero Spread BVI'), + short_title: all_config.short_title, + }, ctrader: { mt5_account_type: all_config.account_type, leverage: '500', diff --git a/packages/cfd/src/Stores/Modules/CFD/cfd-store.js b/packages/cfd/src/Stores/Modules/CFD/cfd-store.js index fe00d92b260c..85abb348f92f 100644 --- a/packages/cfd/src/Stores/Modules/CFD/cfd-store.js +++ b/packages/cfd/src/Stores/Modules/CFD/cfd-store.js @@ -20,6 +20,7 @@ export default class CFDStore extends BaseStore { jurisdiction_selected_shortcode = ''; is_compare_accounts_visible = false; is_mt5_trade_modal_visible = false; + product = ''; account_type = { category: '', @@ -58,6 +59,7 @@ export default class CFDStore extends BaseStore { real_synthetic_accounts_existing_data = []; real_financial_accounts_existing_data = []; real_swapfree_accounts_existing_data = []; + real_zerospread_accounts_existing_data = []; migrated_mt5_accounts = []; @@ -86,6 +88,7 @@ export default class CFDStore extends BaseStore { current_account: observable, is_cfd_verification_modal_visible: observable, error_type: observable, + product: observable, dxtrade_tokens: observable, ctrader_tokens: observable, migrated_mt5_accounts: observable, @@ -112,6 +115,7 @@ export default class CFDStore extends BaseStore { beginRealSignupForMt5: action.bound, enableMt5FinancialStpModal: action.bound, setAccountType: action.bound, + setProduct: action.bound, setCurrentAccount: action.bound, setMT5TradeAccount: action.bound, setIsAccountBeingCreated: action.bound, @@ -150,9 +154,9 @@ export default class CFDStore extends BaseStore { get account_title() { return this.account_type.category - ? getMtCompanies(this.root_store.traders_hub.show_eu_related_content)[this.account_type.category][ - this.account_type.type - ].title + ? getMtCompanies(this.root_store.traders_hub.show_eu_related_content, this.product)[ + this.account_type.category + ][this.account_type.type].title : ''; } @@ -189,13 +193,12 @@ export default class CFDStore extends BaseStore { ...account, }; }); - return list; } // eslint-disable-next-line class-methods-use-this get mt5_companies() { - return getMtCompanies(this.root_store.client.is_eu); + return getMtCompanies(this.root_store.client.is_eu, this.product); } // eslint-disable-next-line class-methods-use-this @@ -209,6 +212,7 @@ export default class CFDStore extends BaseStore { return this.real_synthetic_accounts_existing_data?.some( account => account.landing_company_short === this.jurisdiction_selected_shortcode ); + // here case 'all': return this.real_swapfree_accounts_existing_data?.some( account => account.landing_company_short === this.jurisdiction_selected_shortcode @@ -458,7 +462,11 @@ export default class CFDStore extends BaseStore { phone, state: address_state, zipCode: address_postcode, - ...(this.account_type.type === 'all' ? { sub_account_category: 'swap_free' } : {}), + ...(this.account_type.type === 'all' + ? this.product === 'swap_free' + ? { product: 'swap_free' } + : { product: 'zero_spread' } + : {}), ...(values.server ? { server: values.server } : {}), ...(this.jurisdiction_selected_shortcode ? { company: this.jurisdiction_selected_shortcode } : {}), ...(this.jurisdiction_selected_shortcode !== Jurisdiction.LABUAN @@ -518,6 +526,10 @@ export default class CFDStore extends BaseStore { this.account_type = account_type; } + setProduct(product) { + this.product = product; + } + setCurrentAccount(data, meta) { this.current_account = { ...meta, diff --git a/packages/cfd/src/features/Containers/cfd-reset-password-modal.tsx b/packages/cfd/src/features/Containers/cfd-reset-password-modal.tsx index 528627fd22c8..711862b98916 100644 --- a/packages/cfd/src/features/Containers/cfd-reset-password-modal.tsx +++ b/packages/cfd/src/features/Containers/cfd-reset-password-modal.tsx @@ -15,7 +15,7 @@ const ResetPasswordIntent = ({ current_list, children, is_eu, ...props }: TReset const reset_password_type = localStorage.getItem('cfd_reset_password_type') ?? 'main'; // Default to main const has_intent = reset_password_intent && - /(real|demo)\.(financial|financial_demo|financial_stp|financial_svg|financial_bvi|financial_fx|financial_v|synthetic|synthetic_svg|synthetic_bvi|synthetic_v|all_svg|dxtrade|all)/.test( + /(real|demo)\.(financial|financial_demo|financial_stp|financial_svg|financial_bvi|financial_fx|financial_v|synthetic|synthetic_svg|synthetic_bvi|synthetic_v|all_svg|all_bvi|dxtrade|all)/.test( reset_password_intent ); diff --git a/packages/cfd/src/sass/cfd.scss b/packages/cfd/src/sass/cfd.scss index 91b50b27bac5..c1d98d33471f 100644 --- a/packages/cfd/src/sass/cfd.scss +++ b/packages/cfd/src/sass/cfd.scss @@ -82,7 +82,7 @@ overflow-y: auto; overflow-x: hidden; height: 100%; - max-height: calc(100% - 6.4rem); + max-height: calc(100vh - 6.4rem); padding: 1rem; } } @@ -174,6 +174,47 @@ margin-bottom: 2.2rem; } } + &-tnc { + margin-block-end: 3.2rem; + &--bottom { + @include mobile { + margin-top: auto; + margin-bottom: 7.5rem; + } + } + } + &-info { + border-radius: 0.4rem; + background: $color-status-information; + display: flex; + padding: 0.8rem; + align-items: flex-start; + gap: 0.8rem; + margin-block-end: 0.8rem; + &__icon { + flex-basis: 1.6rem; + max-width: 1.6rem; + } + } + &__checkbox { + display: flex; + align-self: baseline; + margin-inline-start: -0.8rem; + .dc-text { + font-size: var(--text-size-xxs); + text-align: var(--text-align-left); + & > a { + font-weight: bold; + text-transform: lowercase; + } + } + } + &-info, + &__checkbox { + .dc-icon { + margin-inline-start: 0; + } + } } .dc-modal__container_top-up-virtual { diff --git a/packages/cfd/src/types/cfd-store.types.ts b/packages/cfd/src/types/cfd-store.types.ts index 94a9808069f7..9db3b17aefef 100644 --- a/packages/cfd/src/types/cfd-store.types.ts +++ b/packages/cfd/src/types/cfd-store.types.ts @@ -1,6 +1,6 @@ import { FormikHelpers } from 'formik'; import { DetailsOfEachMT5Loginid, Mt5NewAccount, VerifyEmailResponse } from '@deriv/api-types'; -import { TDetailsOfEachMT5Loginid, TTradingPlatformAvailableAccount } from 'Components/props.types'; +import { TDetailsOfEachMT5Loginid, TProducts, TTradingPlatformAvailableAccount } from 'Components/props.types'; import { TCFDPasswordFormValues } from 'Containers/cfd-password-modal'; import { TDxCompanies, TMtCompanies } from 'Stores/Modules/CFD/Helpers/cfd-config'; @@ -9,6 +9,7 @@ export type TCFDStore = { toggleCFDVerificationModal: () => void; setJurisdictionSelectedShortcode: (shortcode: string) => void; setAccountType: (account_type: { category: string; type?: string }) => void; + product: TProducts; dxtrade_tokens: { demo: string; real: string; diff --git a/packages/components/src/components/icon/common/ic-info-light.svg b/packages/components/src/components/icon/common/ic-info-light.svg new file mode 100644 index 000000000000..44ddbfb378b9 --- /dev/null +++ b/packages/components/src/components/icon/common/ic-info-light.svg @@ -0,0 +1,3 @@ + + + diff --git a/packages/components/src/components/icon/icons.js b/packages/components/src/components/icon/icons.js index c862d525e10b..1f31289f1263 100644 --- a/packages/components/src/components/icon/icons.js +++ b/packages/components/src/components/icon/icons.js @@ -446,6 +446,7 @@ import './common/ic-identity-document-verification-verified.svg'; import './common/ic-identity-document-verification.svg'; import './common/ic-image.svg'; import './common/ic-info-blue.svg'; +import './common/ic-info-light.svg'; import './common/ic-info-outline.svg'; import './common/ic-info.svg'; import './common/ic-ins-outs.svg'; @@ -769,6 +770,7 @@ import './mt5/ic-mt5-vanuatu-derived.svg'; import './mt5/ic-mt5-vanuatu-financial.svg'; import './mt5/ic-mt5-vanuatu-standard.svg'; import './mt5/ic-mt5-vanuatu.svg'; +import './mt5/ic-mt5-zero-spread.svg'; import './option/ic-option-accumulators.svg'; import './option/ic-option-call-put-reset.svg'; import './option/ic-option-call-put-spread.svg'; diff --git a/packages/components/src/components/icon/mt5/ic-mt5-zero-spread.svg b/packages/components/src/components/icon/mt5/ic-mt5-zero-spread.svg new file mode 100644 index 000000000000..7bf648dc239a --- /dev/null +++ b/packages/components/src/components/icon/mt5/ic-mt5-zero-spread.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/core/src/Constants/cfd-text.js b/packages/core/src/Constants/cfd-text.js index 04e27190baa2..52dbcd017fe2 100644 --- a/packages/core/src/Constants/cfd-text.js +++ b/packages/core/src/Constants/cfd-text.js @@ -17,7 +17,8 @@ export const CFD_TEXT = { financial_fx: () => localize('Financial Labuan'), financial_v: () => localize('Financial Vanuatu'), financial_svg: () => localize('Financial SVG'), - all: () => localize('Swap-Free'), - all_demo: () => localize('Swap-Free Demo'), - all_svg: () => localize('Swap-Free SVG'), + all_swap_free_demo: () => localize('Swap-Free Demo'), + all_zero_spread_demo: () => localize('Zero Spread Demo'), + all_swap_free_svg: () => localize('Swap-Free SVG'), + all_zero_spread_bvi: () => localize('Zero Spread BVI'), }; diff --git a/packages/core/src/Stores/traders-hub-store.js b/packages/core/src/Stores/traders-hub-store.js index 874ccd05d5f5..05b7585e29fa 100644 --- a/packages/core/src/Stores/traders-hub-store.js +++ b/packages/core/src/Stores/traders-hub-store.js @@ -1,6 +1,14 @@ import { action, computed, makeObservable, observable, reaction } from 'mobx'; -import { CFD_PLATFORMS, ContentFlag, formatMoney, getAppstorePlatforms, getCFDAvailableAccount } from '@deriv/shared'; +import { + CFD_PLATFORMS, + ContentFlag, + formatMoney, + isPOARequiredForMT5, + getAppstorePlatforms, + getCFDAvailableAccount, + getAuthenticationStatusInfo, +} from '@deriv/shared'; import { localize } from '@deriv/translations'; import BaseStore from './base-store'; import { isEuCountry } from '_common/utility'; @@ -393,6 +401,9 @@ export default class TradersHubStore extends BaseStore { const getSwapFreeAccountDesc = () => { return localize('Swap-free CFDs on selected financial and derived instruments.'); }; + const getZeroSpreadAccountDesc = () => { + return localize('Zero spread CFDs on financial and derived instruments'); + }; const all_available_accounts = [ ...getCFDAvailableAccount(), @@ -401,6 +412,7 @@ export default class TradersHubStore extends BaseStore { description: getAccountDesc(), platform: CFD_PLATFORMS.MT5, market_type: 'financial', + product: 'financial', icon: !this.is_eu_user || this.is_demo_low_risk ? 'Financial' : 'CFDs', availability: 'All', }, @@ -409,9 +421,19 @@ export default class TradersHubStore extends BaseStore { description: getSwapFreeAccountDesc(), platform: CFD_PLATFORMS.MT5, market_type: 'all', + product: 'swap_free', icon: 'SwapFree', availability: 'Non-EU', }, + { + name: localize('Zero Spread'), + description: getZeroSpreadAccountDesc(), + platform: CFD_PLATFORMS.MT5, + market_type: 'all', + product: 'zero_spread', + icon: 'ZeroSpread', + availability: 'Non-EU', + }, ]; this.available_cfd_accounts = all_available_accounts.map(account => { return { @@ -420,6 +442,7 @@ export default class TradersHubStore extends BaseStore { //tracking name need not be localised,so added the localization here for the account name. tracking_name: account.name, name: localize(account.name), + product: account.product, }; }); this.getAvailableDxtradeAccounts(); @@ -518,7 +541,7 @@ export default class TradersHubStore extends BaseStore { ); } - getExistingAccounts(platform, market_type) { + getExistingAccounts(platform, market_type, product) { const { residence } = this.root_store.client; const current_list = this.root_store.modules?.cfd?.current_list || []; const current_list_keys = Object.keys(current_list); @@ -526,12 +549,16 @@ export default class TradersHubStore extends BaseStore { const existing_accounts = current_list_keys .filter(key => { const maltainvest_account = current_list[key].landing_company_short === 'maltainvest'; - - if (platform === CFD_PLATFORMS.MT5 && !this.is_eu_user && !maltainvest_account) { + if ( + platform === CFD_PLATFORMS.MT5 && + market_type !== 'all' && + !this.is_eu_user && + !maltainvest_account + ) { return key.startsWith(`${platform}.${selected_account_type}.${market_type}`); } if (platform === CFD_PLATFORMS.MT5 && market_type === 'all') { - return key.startsWith(`${platform}.${selected_account_type}.${platform}@${market_type}`); + return key.startsWith(`${platform}.${selected_account_type}.${market_type}_${product}`); } if (platform === CFD_PLATFORMS.DXTRADE && market_type === 'all') { return key.startsWith(`${platform}.${selected_account_type}.${platform}@${market_type}`); @@ -555,7 +582,6 @@ export default class TradersHubStore extends BaseStore { }, []); return existing_accounts; } - startTrade(platform, account) { const { common, modules } = this.root_store; const { toggleMT5TradeModal, setMT5TradeAccount } = modules.cfd; @@ -594,12 +620,49 @@ export default class TradersHubStore extends BaseStore { } } + openRealPasswordModal = account_type => { + const { modules } = this.root_store; + const { enableCFDPasswordModal, setAccountType } = modules.cfd; + setAccountType(account_type); + enableCFDPasswordModal(); + }; + async openRealAccount(account_type, platform) { const { client, modules } = this.root_store; - const { has_active_real_account } = client; - const { createCFDAccount, enableCFDPasswordModal, toggleJurisdictionModal } = modules.cfd; + const { has_active_real_account, account_status, should_restrict_bvi_account_creation } = client; + const { + createCFDAccount, + enableCFDPasswordModal, + toggleJurisdictionModal, + product, + toggleCFDVerificationModal, + setJurisdictionSelectedShortcode, + has_submitted_cfd_personal_details, + } = modules.cfd; + const { poi_or_poa_not_submitted, poi_acknowledged_for_bvi_labuan_vanuatu, poa_acknowledged } = + getAuthenticationStatusInfo(account_status); + const is_poa_required_for_mt5 = isPOARequiredForMT5(account_status, 'bvi'); if (has_active_real_account && platform === CFD_PLATFORMS.MT5) { - toggleJurisdictionModal(); + if (product !== 'zero_spread' && product !== 'swap_free') { + toggleJurisdictionModal(); + } else if (product === 'swap_free') { + setJurisdictionSelectedShortcode('svg'); + enableCFDPasswordModal(); + } else if (product === 'zero_spread') { + setJurisdictionSelectedShortcode('bvi'); + if ( + poi_acknowledged_for_bvi_labuan_vanuatu && + !poi_or_poa_not_submitted && + !should_restrict_bvi_account_creation && + poa_acknowledged && + has_submitted_cfd_personal_details && + !is_poa_required_for_mt5 + ) { + this.openRealPasswordModal(account_type); + } else { + toggleCFDVerificationModal(); + } + } } else if (platform === CFD_PLATFORMS.DXTRADE) { enableCFDPasswordModal(); } else { @@ -690,7 +753,7 @@ export default class TradersHubStore extends BaseStore { setCombinedCFDMT5Accounts() { this.combined_cfd_mt5_accounts = []; this.available_mt5_accounts?.forEach(account => { - const existing_accounts = this.getExistingAccounts(account.platform, account.market_type); + const existing_accounts = this.getExistingAccounts(account.platform, account.market_type, account.product); const has_existing_accounts = existing_accounts.length > 0; if (has_existing_accounts) { existing_accounts.forEach(existing_account => { @@ -710,6 +773,7 @@ export default class TradersHubStore extends BaseStore { action_type: 'multi-action', availability: this.selected_region, market_type: account.market_type, + product: account.product, tracking_name: account.tracking_name, }, ]; @@ -726,6 +790,7 @@ export default class TradersHubStore extends BaseStore { action_type: 'get', availability: this.selected_region, market_type: account.market_type, + product: account.product, tracking_name: account.tracking_name, }, ]; diff --git a/packages/shared/src/styles/constants.scss b/packages/shared/src/styles/constants.scss index ec3511f71ada..2fedf37211ca 100644 --- a/packages/shared/src/styles/constants.scss +++ b/packages/shared/src/styles/constants.scss @@ -33,6 +33,7 @@ $color-blue-5: #dfeaff; $color-blue-6: #92b8ff; $color-blue-7: #182130; $color-blue-8: #e6f5ff; +$color-blue-9: #00426a; $color-brown: #664407; $color-green: #85acb0; $color-green-1: #4bb4b3; @@ -79,6 +80,8 @@ $color-yellow: #ffad3a; $color-yellow-1: #b3760d; $color-yellow-2: #ffa912; $color-yellow-3: rgba(255, 173, 58, 0.16); +$color-yellow-4: #fff7e6; +$color-yellow-5: #6a4800; /* status colors */ $color-status-warning: rgba(255, 173, 58, 0.16); diff --git a/packages/shared/src/utils/cfd/available-cfd-accounts.ts b/packages/shared/src/utils/cfd/available-cfd-accounts.ts index ce7ea208c5ad..525e96a780c2 100644 --- a/packages/shared/src/utils/cfd/available-cfd-accounts.ts +++ b/packages/shared/src/utils/cfd/available-cfd-accounts.ts @@ -20,6 +20,7 @@ export const getCFDAvailableAccount = () => [ description: localize('CFDs on derived and financial instruments.'), platform: CFD_PLATFORMS.MT5, market_type: 'synthetic', + product: 'standard', icon: 'Standard', availability: 'Non-EU', }, @@ -28,6 +29,7 @@ export const getCFDAvailableAccount = () => [ description: localize('CFDs on financial and derived instruments via a customisable platform.'), platform: CFD_PLATFORMS.DXTRADE, market_type: 'all', + product: 'derivx', icon: 'DerivX', availability: 'Non-EU', }, @@ -36,6 +38,7 @@ export const getCFDAvailableAccount = () => [ description: localize('CFDs on financial and derived instruments with copy trading.'), platform: CFD_PLATFORMS.CTRADER, market_type: 'all', + product: 'ctrader', icon: 'CTrader', availability: 'Non-EU', }, diff --git a/packages/shared/src/utils/cfd/cfd.ts b/packages/shared/src/utils/cfd/cfd.ts index c160e023ec57..a20daf2d358b 100644 --- a/packages/shared/src/utils/cfd/cfd.ts +++ b/packages/shared/src/utils/cfd/cfd.ts @@ -22,9 +22,15 @@ export const CFD_text: { [key: string]: string } = { financial_fx: 'Financial Labuan', financial_v: 'Financial Vanuatu', financial_svg: 'Financial SVG', - all: 'Swap-Free', - all_demo: 'Swap-Free Demo', - all_svg: 'Swap-Free SVG', + all_swap_free_demo: 'Swap-Free Demo', + all_zero_spread_demo: 'Zero Spread Demo', + all_swap_free_svg: 'Swap-Free SVG', + all_zero_spread_bvi: 'Zero Spread BVI', +} as const; + +export const CFD_PRODUCTS_TITLE = { + ZEROSPREAD: 'Zero Spread', + SWAPFREE: 'Swap-Free', } as const; export const getMT5Title = (account_type: string) => { @@ -37,6 +43,7 @@ export const getMT5Title = (account_type: string) => { return CFD_text.financial; }; +type TProduct = 'swap_free' | 'zero_spread' | 'cTrader' | 'derivx'; type TPlatform = 'dxtrade' | 'mt5' | 'ctrader'; type TMarketType = 'financial' | 'synthetic' | 'gaming' | 'all' | undefined; type TShortcode = 'svg' | 'bvi' | 'labuan' | 'vanuatu' | 'malta' | 'maltainvest'; @@ -47,6 +54,7 @@ type TGetAccount = { }; type TGetCFDAccountKey = TGetAccount & { shortcode?: TShortcode; + product?: TProduct; }; // * mt5_login_list returns these: @@ -55,12 +63,27 @@ type TGetCFDAccountKey = TGetAccount & { // * // sub_account_type financial_stp only happens in "financial" market_type // dxrade and swap_free both have market_type "all" so check for platform is neccessary -export const getCFDAccountKey = ({ market_type, sub_account_type, platform, shortcode }: TGetCFDAccountKey) => { +export const getCFDAccountKey = ({ + market_type, + sub_account_type, + platform, + shortcode, + product, +}: TGetCFDAccountKey) => { if (platform === CFD_PLATFORMS.MT5 && market_type === 'all') { - // currently we are only supporting SVG for SwapFree - switch (shortcode) { - case 'svg': - return 'all_svg'; + switch (product) { + case 'swap_free': + if (shortcode) { + return 'all_swap_free_svg'; + } + return 'all_swap_free_demo'; + + case 'zero_spread': + if (shortcode) { + return 'all_zero_spread_bvi'; + } + return 'all_zero_spread_demo'; + default: return 'all_demo'; } @@ -177,11 +200,12 @@ export const getCFDAccountDisplay = ({ sub_account_type, platform, is_eu, + product, shortcode, is_mt5_trade_modal, is_transfer_form = false, }: TGetCFDAccountDisplay) => { - const cfd_account_key = getCFDAccountKey({ market_type, sub_account_type, platform, shortcode }); + const cfd_account_key = getCFDAccountKey({ market_type, sub_account_type, platform, shortcode, product }); if (!cfd_account_key) return undefined; if (is_mt5_trade_modal && is_eu) { @@ -208,6 +232,7 @@ export const getCFDAccountDisplay = ({ type TGetCFDAccount = TGetAccount & { is_eu?: boolean; is_transfer_form?: boolean; + product?: TProduct; }; type TGetMT5Icon = { @@ -221,8 +246,9 @@ export const getCFDAccount = ({ platform, is_eu, is_transfer_form = false, + product, }: TGetCFDAccount) => { - let cfd_account_key = getCFDAccountKey({ market_type, sub_account_type, platform }); + let cfd_account_key = getCFDAccountKey({ market_type, sub_account_type, platform, product }); if (!cfd_account_key) return undefined; if (cfd_account_key === 'financial_demo' && is_eu) { @@ -244,13 +270,14 @@ export const setSharedCFDText = (all_shared_CFD_text: { [key: string]: () => voi CFD_text_translated = all_shared_CFD_text; }; -type TAccount = DetailsOfEachMT5Loginid & { platform: string }; +type TAccount = DetailsOfEachMT5Loginid & { platform: string; product?: TProduct }; export const getAccountListKey = (account: TAccount, platform: TPlatform, shortcode?: TShortcode) => { return `${account.platform || platform}.${account.account_type}.${getCFDAccountKey({ market_type: account.market_type, sub_account_type: account.sub_account_type, platform, shortcode, + product: account.product, })}@${ platform === CFD_PLATFORMS.DXTRADE || platform === CFD_PLATFORMS.CTRADER ? account.market_type : account.server }`; diff --git a/packages/stores/types.ts b/packages/stores/types.ts index d465a7fcd435..39d6996dc98b 100644 --- a/packages/stores/types.ts +++ b/packages/stores/types.ts @@ -104,6 +104,8 @@ type TPopulateSettingsExtensionsMenuItem = { value: (props: T) => JSX.Element; }; +type TProduct = 'swap_free' | 'zero_spread' | 'ctrader' | 'derivx'; + type TRegionAvailability = 'Non-EU' | 'EU' | 'All'; type TIconTypes = @@ -237,7 +239,6 @@ type TActiveAccount = TAccount & { type TTradingPlatformAvailableAccount = { market_type: 'financial' | 'gaming' | 'all'; name: string; - product?: string; requirements: { after_first_deposit: { financial_assessment: string[]; @@ -252,6 +253,7 @@ type TTradingPlatformAvailableAccount = { sub_account_type: string; max_count?: number; available_count?: number; + product: TProduct; }; type TAvailableCFDAccounts = { @@ -1026,6 +1028,7 @@ type TTradersHubStore = { availability?: TRegionAvailability; description?: string; market_type?: 'all' | 'financial' | 'synthetic'; + product: TProduct; }[]; openModal: (modal_id: string, props?: unknown) => void; selected_account: { From 07f4194291bc4eae15c580f513271f5cfbbf3b4e Mon Sep 17 00:00:00 2001 From: Ameerul Hady <103412909+ameerul-deriv@users.noreply.github.com> Date: Tue, 25 Jun 2024 18:13:23 +0800 Subject: [PATCH 02/17] chore: removed currently string from modal title (#15770) --- packages/p2p/src/pages/advertiser-page/advertiser-page.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/p2p/src/pages/advertiser-page/advertiser-page.jsx b/packages/p2p/src/pages/advertiser-page/advertiser-page.jsx index 0e04d5ed9627..b6e8679b1c2e 100755 --- a/packages/p2p/src/pages/advertiser-page/advertiser-page.jsx +++ b/packages/p2p/src/pages/advertiser-page/advertiser-page.jsx @@ -77,7 +77,7 @@ const AdvertiserPage = () => { const showErrorModal = eligibility_status => { let error_message = localize("It's either deleted or no longer active."); - let error_modal_title = localize('This ad is currently unavailable'); + let error_modal_title = localize('This ad is unavailable'); if (eligibility_status?.length > 0) { error_modal_title = ''; From f520e24dcb020899e4265aefe433b8f4e7a9f5a5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 25 Jun 2024 16:06:15 +0300 Subject: [PATCH 03/17] =?UTF-8?q?translations:=20=F0=9F=93=9A=20sync=20tra?= =?UTF-8?q?nslations=20with=20crowdin=20(#15779)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: DerivFE --- packages/p2p/crowdin/messages.json | 2 +- packages/p2p/src/translations/ar.json | 2 +- packages/p2p/src/translations/bn.json | 2 +- packages/p2p/src/translations/de.json | 2 +- packages/p2p/src/translations/es.json | 2 +- packages/p2p/src/translations/fr.json | 2 +- packages/p2p/src/translations/it.json | 2 +- packages/p2p/src/translations/ko.json | 2 +- packages/p2p/src/translations/mn.json | 2 +- packages/p2p/src/translations/pl.json | 2 +- packages/p2p/src/translations/pt.json | 2 +- packages/p2p/src/translations/ru.json | 2 +- packages/p2p/src/translations/si.json | 2 +- packages/p2p/src/translations/sw.json | 2 +- packages/p2p/src/translations/th.json | 2 +- packages/p2p/src/translations/tr.json | 2 +- packages/p2p/src/translations/vi.json | 2 +- packages/p2p/src/translations/zh_cn.json | 2 +- packages/p2p/src/translations/zh_tw.json | 2 +- packages/translations/crowdin/messages.json | 2 +- packages/translations/src/translations/ach.json | 14 +++++++++++--- packages/translations/src/translations/ar.json | 14 +++++++++++--- packages/translations/src/translations/bn.json | 14 +++++++++++--- packages/translations/src/translations/de.json | 14 +++++++++++--- packages/translations/src/translations/es.json | 14 +++++++++++--- packages/translations/src/translations/fr.json | 14 +++++++++++--- packages/translations/src/translations/it.json | 14 +++++++++++--- packages/translations/src/translations/km.json | 14 +++++++++++--- packages/translations/src/translations/ko.json | 14 +++++++++++--- packages/translations/src/translations/mn.json | 14 +++++++++++--- packages/translations/src/translations/pl.json | 14 +++++++++++--- packages/translations/src/translations/pt.json | 14 +++++++++++--- packages/translations/src/translations/ru.json | 14 +++++++++++--- packages/translations/src/translations/si.json | 14 +++++++++++--- packages/translations/src/translations/sw.json | 14 +++++++++++--- packages/translations/src/translations/th.json | 14 +++++++++++--- packages/translations/src/translations/tr.json | 14 +++++++++++--- packages/translations/src/translations/uz.json | 14 +++++++++++--- packages/translations/src/translations/vi.json | 14 +++++++++++--- packages/translations/src/translations/zh_cn.json | 14 +++++++++++--- packages/translations/src/translations/zh_tw.json | 14 +++++++++++--- 41 files changed, 251 insertions(+), 83 deletions(-) diff --git a/packages/p2p/crowdin/messages.json b/packages/p2p/crowdin/messages.json index 3ae8f91b5867..bee18022b6a6 100644 --- a/packages/p2p/crowdin/messages.json +++ b/packages/p2p/crowdin/messages.json @@ -1 +1 @@ -{"3215342":"Last 30 days","4276410":"One last step before we close this order","6794664":"Ads that match your Deriv P2P balance and limit.","19789721":"Nobody has blocked you. Yay!","24711354":"Total orders <0>30d | <1>lifetime","50672601":"Bought","55916349":"All","68867477":"Order ID {{ id }}","81450871":"We couldn’t find that page","97214671":"Hi! I'd like to exchange {{first_currency}} for {{second_currency}} at {{rate_display}}{{rate_type}} on Deriv P2P.nnIf you're interested, check out my ad 👉nn{{- advert_url}}nnThanks!","106063661":"Share this ad","111718006":"End date","121738739":"Send","122280248":"Avg release time <0>30d","134205943":"Your ads with fixed rates have been deactivated. Set floating rates to reactivate them.","140800401":"Float","150156106":"Save changes","159757877":"You won't see {{advertiser_name}}'s ads anymore and they won't be able to place orders on your ads.","170072126":"Seen {{ duration }} days ago","173939998":"Avg. pay time <0>30d","179083332":"Date","180844799":"Your completion rate is too low for this ad.","192859167":"{{avg_buy_time_in_minutes}} min","203271702":"Try again","231473252":"Preferred currency","233677840":"of the market rate","257637860":"Upload documents to verify your address.","276261353":"Avg pay time <0>30d","277542386":"Please use <0>live chat to contact our Customer Support team for help.","316725580":"You can no longer rate this transaction.","323002325":"Post ad","324970564":"Seller's contact details","358133589":"Unblock {{advertiser_name}}?","364681129":"Contact details","367579676":"Blocked","390890891":"Last quarter","392469164":"You have blocked {{advertiser_name}}.","416167062":"You'll receive","424668491":"expired","450016951":"Hello! This is where you can chat with the counterparty to confirm the order details.
Note: In case of a dispute, we'll use this chat as a reference.","452752527":"Rate (1 {{ currency }})","459886707":"E-wallets","460477293":"Enter message","464044457":"Buyer's nickname","473688701":"Enter a valid amount","488150742":"Resend email","498500965":"Seller's nickname","500514593":"Hide my ads","501523417":"You have no orders.","514948272":"Copy link","517202770":"Set fixed rate","523301614":"Release {{amount}} {{currency}}","525380157":"Buy {{offered_currency}} order","531912261":"Bank name, account number, beneficiary name","554135844":"Edit","555447610":"You won't be able to change your buy and sell limits again after this. Do you want to continue?","560402954":"User rating","565060416":"Exchange rate","574961698":"45 minutes","587882987":"Advertisers","611376642":"Clear","612069973":"Would you recommend this buyer?","625563394":"Only numbers are allowed.","628581263":"The {{local_currency}} market rate has changed.","639382772":"Please upload supported file type.","649549724":"I’ve not received any payment.","654193846":"The verification link appears to be invalid. Hit the button below to request for a new one","655733440":"Others","661808069":"Resend email {{remaining_time}}","662578726":"Available","668309975":"Others will see this on your profile, ads, and chats.","683273691":"Rate (1 {{ account_currency }})","720104538":"Fixed Rate","723172934":"Looking to buy or sell USD? You can post your own ad for others to respond.","728383001":"I’ve received more than the agreed amount.","733311523":"P2P transactions are locked. This feature is not available for payment agents.","752996317":"Last step","767789372":"Wait for payment","782834680":"Time left","783454335":"Yes, remove","784839262":"Share","830703311":"My profile","834075131":"Blocked advertisers","838024160":"Bank details","842911528":"Don’t show this message again.","846659545":"Your ad is not listed on <0>Buy/Sell because the amount exceeds your daily limit of {{limit}} {{currency}}.\n <1 /><1 />You can still see your ad on <0>My ads. If you’d like to increase your daily limit, please contact us via <2>live chat.","858027714":"Seen {{ duration }} minutes ago","873437248":"Instructions (optional)","875911610":"Preferred countries <0>({{eligible_countries_display}})","876086855":"Complete the financial assessment form","881351325":"Would you recommend this seller?","886126850":"This ad is not listed on Buy/Sell because its maximum order is lower than the minimum amount you can specify for orders in your ads.","887667868":"Order","892431976":"If you cancel your order {{cancellation_limit}} times in {{cancellation_period}} hours, you will be blocked from using Deriv P2P for {{block_duration}} hours.
({{number_of_cancels_remaining}} cancellations remaining)","917359787":"You've not used Deriv P2P long enough for this ad.","926446466":"Please set a different minimum and/or maximum order limit. nnThe range of your ad should not overlap with any of your active ads.","929967494":"Non-reversible deposits: Deposits from non-reversible payment methods.","931661826":"Download this QR code","947389294":"We need your documents","949859957":"Submit","954233511":"Sold","957807235":"Blocking wasn't possible as {{name}} is not using Deriv P2P anymore.","988380202":"Your instructions","993198283":"The file you uploaded is not supported. Upload another.","1001160515":"Sell","1002264993":"Seller's real name","1009032439":"All time","1019151270":"Only users who match these criteria will see your ad.","1020552673":"You're creating an ad to buy <0>{{ target_amount }} {{ target_currency }}...","1030390916":"You already have an ad with this range","1035893169":"Delete","1040596075":"Address verification failed. Please try again.","1052094244":"Max order","1056821534":"Are you sure?","1057127276":"{{- avg_release_time_in_minutes}} min","1065551550":"Set floating rate","1077515534":"Date to","1080990424":"Confirm","1089110190":"You accidentally gave us another email address (usually a work or a personal one instead of the one you meant).","1091533736":"Don't risk your funds with cash transactions. Use bank transfers or e-wallets instead.","1106073960":"You've created an ad","1106485202":"Available Deriv P2P balance","1109217274":"Success!","1119887091":"Verification","1121630246":"Block","1137964885":"Can only contain letters, numbers, and special characters .- _ @.","1142686040":"Nickname added successfully!","1151608942":"Total amount","1157877436":"{{field_name}} should not exceed Amount","1162965175":"Buyer","1163072833":"<0>ID verified","1164771858":"I’ve received payment from 3rd party.","1168689876":"Your ad is not listed","1184609483":"Create a similar ad","1191941618":"Enter a value that's within -{{limit}}% to +{{limit}}%","1192337383":"Seen {{ duration }} hour ago","1202500203":"Pay now","1228352589":"Not rated yet","1229976478":"You will be able to see {{ advertiser_name }}'s ads. They'll be able to place orders on your ads, too.","1236083813":"Your payment details","1258285343":"Oops, something went wrong","1274343323":"This ad is currently unavailable","1286797620":"Active","1287051975":"Nickname is too long","1300767074":"{{name}} is no longer on Deriv P2P","1303016265":"Yes","1313218101":"Rate this transaction","1314266187":"Joined today","1320670806":"Leave page","1326475003":"Activate","1328352136":"Sell {{ account_currency }}","1330528524":"Seen {{ duration }} month ago","1337027601":"You sold {{offered_amount}} {{offered_currency}}","1347322213":"How would you rate this transaction?","1347724133":"I have paid {{amount}} {{currency}}.","1366244749":"Limits","1370999551":"Floating rate","1371193412":"Cancel","1376329801":"Last 60 days","1378388952":"Promote your ad by sharing the QR code and link.","1381949324":"<0>Address verified","1385570445":"Upload documents to verify your identity.","1398938904":"We can't deliver the email to this address (usually because of firewalls or filtering).","1404414405":"Counterparty conditions","1422356389":"No results for \"{{text}}\".","1426213515":"If you’ve received {{amount}} {{local_currency}} from {{name}} in your bank account or e-wallet, hit the button below to complete the order.","1430413419":"Maximum is {{value}} {{currency}}","1438103743":"Floating rates are enabled for {{local_currency}}. Ads with fixed rates will be deactivated. Switch to floating rates by {{end_date}}.","1448855725":"Add payment methods","1452260922":"Too many failed attempts","1467483693":"Past orders","1474532322":"Sort by","1480915523":"Skip","1497156292":"No ads for this currency 😞","1505293001":"Trade partners","1543377906":"This ad is not listed on Buy/Sell because you have paused all your ads.","1568512719":"Your daily limits have been increased to {{daily_buy_limit}} {{currency}} (buy) and {{daily_sell_limit}} {{currency}} (sell).","1581886364":"Your Deriv P2P balance includes:","1583335572":"If the ad doesn't receive an order for {{adverts_archive_period}} days, it will be deactivated.","1587250288":"Ad ID {{advert_id}} ","1587507924":"Or copy this link","1607051458":"Search by nickname","1615530713":"Something's not right","1620858613":"You're editing an ad to sell <0>{{ target_amount }} {{ target_currency }} for <0>{{ local_amount }} {{ local_currency }} <1>({{ price_rate }} {{local_currency}}/{{ target_currency }})","1622662457":"Date from","1623916605":"I wasn’t able to make full payment.","1654365787":"Unknown","1660278694":"The advertiser changed the rate before you confirmed the order.","1671725772":"If you choose to cancel, the edited details will be lost.","1675716253":"Min limit","1678804253":"Buy {{ currency }}","1685888862":"An internal error occurred","1686592014":"To place an order, add one of the advertiser's preferred payment methods:","1691540875":"Edit payment method","1699829275":"Cannot upload a file over 5MB","1702855414":"Your ad isn’t listed on Buy/Sell due to the following reason(s):","1703154819":"You're editing an ad to sell <0>{{ target_amount }} {{ target_currency }}...","1721422292":"Show my real name","1740434340":"Orders will expire if they aren’t completed within this time.","1747523625":"Go back","1752096323":"{{field_name}} should not be below Min limit","1767817594":"Buy completion <0>30d","1782514544":"This ad is not listed on Buy/Sell because its minimum order is higher than {{maximum_order_amount}} {{currency}}.","1784151356":"at","1791767028":"Set a fixed rate for your ad.","1794470010":"I’ve made full payment, but the seller hasn’t released the funds.","1794474847":"I've received payment","1798116519":"Available amount","1799384587":"Has the buyer paid you?","1809099720":"Expand all","1810217569":"Please refresh this page to continue.","1842172737":"You've received {{offered_amount}} {{offered_currency}}","1858251701":"minute","1859308030":"Give feedback","1874956952":"Hit the button below to add payment methods.","1881018702":"hour","1902229457":"Unable to block advertiser","1908023954":"Sorry, an error occurred while processing your request.","1914014145":"Today","1919093147":"Completion rate of more than <0>{{min_completion_rate}}%","1923443894":"Inactive","1928240840":"Sell {{ currency }}","1929119945":"There are no ads yet","1976156928":"You'll send","1992961867":"Rate (1 {{currency}})","1994023526":"The email address you entered had a mistake or typo (happens to the best of us).","2020104747":"Filter","2027742762":"Review your settings and create a new ad. Every ad must have unique limits and rates.","2029375371":"Payment instructions","2032274854":"Recommended by {{recommended_count}} traders","2039361923":"You're creating an ad to sell...","2040110829":"Increase my limits","2060873863":"Your order {{order_id}} is complete","2063890788":"Cancelled","2064304887":"We accept JPG, PDF, or PNG (up to 5MB).","2065710341":"The completion rate is the percentage of successful orders.","2076240918":"We'll only show your ad to people who've been using Deriv P2P for longer than the time you choose.","2091671594":"Status","2096014107":"Apply","2104905634":"No one has recommended this trader yet","2121837513":"Minimum is {{value}} {{currency}}","2142425493":"Ad ID","2145292295":"Rate","-1540251249":"Buy {{ account_currency }}","-1267880283":"{{field_name}} is required","-2019083683":"{{field_name}} can only include letters, numbers, spaces, and any of these symbols: -+.,'#@():;","-222920564":"{{field_name}} has exceeded maximum length","-2093768906":"{{name}} has released your funds.
Would you like to give your feedback?","-1101273282":"Nickname is required","-919203928":"Nickname is too short","-1907100457":"Cannot start, end with, or repeat special characters.","-270502067":"Cannot repeat a character more than 4 times.","-499872405":"You have open orders for this ad. Complete all open orders before deleting this ad.","-2125702445":"Instructions","-1274358564":"Max limit","-1995606668":"Amount","-1965472924":"Fixed rate","-1081775102":"{{field_name}} should not be below Max limit","-991345852":"Only up to 2 decimals are allowed.","-885044836":"{{field_name}} should not exceed Max limit","-1921077416":"All ({{list_value}})","-608125128":"Blocked ({{list_value}})","-1764050750":"Payment details","-2021135479":"This field is required.","-2005205076":"{{field_name}} has exceeded maximum length of 200 characters.","-1837059346":"Buy / Sell","-494667560":"Orders","-679691613":"My ads","-412680608":"Add payment method","-984140537":"Add","-1220275347":"You may choose up to 3 payment methods for this ad.","-510341549":"I’ve received less than the agreed amount.","-650030360":"I’ve paid more than the agreed amount.","-1192446042":"If your complaint isn't listed here, please contact our Customer Support team.","-573132778":"Complaint","-792338456":"What's your complaint?","-418870584":"Cancel order","-1392383387":"I've paid","-727273667":"Complain","-2016990049":"Sell {{offered_currency}} order","-811190405":"Time","-961632398":"Collapse all","-415476028":"Not rated","-26434257":"You have until {{remaining_review_time}} GMT to rate this transaction.","-768709492":"Your transaction experience","-652933704":"Recommended","-84139378":"Not Recommended","-2139303636":"You may have followed a broken link, or the page has moved to a new address.","-1448368765":"Error code: {{error_code}} page not found","-1660552437":"Return to P2P","-137444201":"Buy","-1306639327":"Payment methods","-904197848":"Limits {{min_order_amount_limit_display}}-{{max_order_amount_limit_display}} {{currency}}","-464361439":"{{- avg_buy_time_in_minutes}} min","-2109576323":"Sell completion <0>30d","-165392069":"Avg. release time <0>30d","-1154208372":"Trade volume <0>30d","-1494028069":"It's either deleted or no longer active.","-2017825013":"Got it","-1845037007":"Advertiser's page","-1070228546":"Joined {{days_since_joined}}d","-2015102262":"({{number_of_ratings}} rating)","-1412298133":"({{number_of_ratings}} ratings)","-260332243":"{{user_blocked_count}} person has blocked you","-117094654":"{{user_blocked_count}} people have blocked you","-329713179":"Ok","-1689905285":"Unblock","-1148912768":"If the market rate changes from the rate shown here, we won't be able to process your order.","-55126326":"Seller","-92830427":"Seller's instructions","-1940034707":"Buyer's instructions","-631576120":"Orders must be completed in","-835196958":"Receive payment to","-1218007718":"You may choose up to 3.","-1933432699":"Enter {{transaction_type}} amount","-2021730616":"{{ad_type}}","-490637584":"Limit: {{min}}–{{max}} {{currency}}","-1974067943":"Your bank details","-892663026":"Your contact details","-1285759343":"Search","-1657433201":"There are no matching ads.","-1862812590":"Limits {{ min_order }}–{{ max_order }} {{ currency }}","-1876891031":"Currency","-1503997652":"No ads for this currency.","-1048001140":"No results for \"{{value}}\".","-254484597":"You have no ads 😞","-1179827369":"Create new ad","-73663931":"Create ad","-141315849":"No ads for this currency at the moment 😞","-1889014820":"<0>Don’t see your payment method? <1>Add new.","-1406830100":"Payment method","-294043241":"Set ad type and amount","-311810519":"Set payment details","-1149273198":"Set ad conditions","-1282343703":"You're creating an ad to buy <0>{{ target_amount }} {{ target_currency }} for <0>{{ local_amount }} {{ local_currency }} <1>({{ price_rate }} {{local_currency}}/{{ target_currency }})","-2139632895":"You're creating an ad to sell <0>{{ target_amount }} {{ target_currency }} for <0>{{ local_amount }} {{ local_currency }} <1>({{ price_rate }} {{local_currency}}/{{ target_currency }})","-40669120":"You're creating an ad to sell <0>{{ target_amount }} {{ target_currency }}...","-514789442":"You're creating an ad to buy...","-1914431773":"You're editing an ad to buy <0>{{ target_amount }} {{ target_currency }} for <0>{{ local_amount }} {{ local_currency }} <1>({{ price_rate }} {{local_currency}}/{{ target_currency }})","-107996509":"You're editing an ad to buy <0>{{ target_amount }} {{ target_currency }}...","-863580260":"You're editing an ad to buy...","-1396464057":"You're editing an ad to sell...","-309848900":"Copy","-1318334333":"Deactivate","-372210670":"Rate (1 {{account_currency}})","-87612148":"Ad not listed","-466964809":"Manage ad","-1667041441":"Rate (1 {{ offered_currency }})","-792015701":"Deriv P2P cashier is unavailable in your country.","-1983512566":"This conversation is closed.","-283017497":"Retry","-360975483":"You've made no transactions of this type during this period.","-979459594":"Buy/Sell","-2052184983":"Order ID","-2096350108":"Counterparty","-1597110099":"Receive","-750202930":"Active orders","-1626659964":"I've received {{amount}} {{currency}}.","-526636259":"Error 404","-480724783":"You already have an ad with this rate","-2040406318":"You already have an ad with the same exchange rate for this currency pair and order type. nnPlease set a different rate for your ad.","-1117584385":"Seen more than 6 months ago","-1766199849":"Seen {{ duration }} months ago","-591593016":"Seen {{ duration }} day ago","-1586918919":"Seen {{ duration }} hours ago","-664781013":"Seen {{ duration }} minute ago","-1717650468":"Online","-485338176":"The advertiser has set conditions for this ad that you don't meet.","-1887970998":"Unblocking wasn't possible as {{name}} is not using Deriv P2P anymore.","-1207312691":"Completed","-688728873":"Expired","-1951641340":"Under dispute","-1738697484":"Confirm payment","-1611857550":"Waiting for the seller to confirm","-1452684930":"Buyer's real name","-1875343569":"Seller's payment details","-1977959027":"hours","-1603581277":"minutes","-1792280476":"Choose your payment method","-520142572":"Cashier is currently down for maintenance","-1552080215":"Please check back in a few minutes.<0>Thank you for your patience.","-684271315":"OK","-130601012":"Please select duration","-232254547":"Custom","-1577570698":"Start date","-1251526905":"Last 7 days","-1638172550":"To enable this feature you must complete the following:","-1086586743":"Please submit your <0>proof of address. You can use Deriv P2P after we’ve verified your documents.","-559300364":"Your Deriv P2P cashier is blocked","-740038242":"Your rate is","-1072444041":"Update ad","-2085839488":"This ad is not listed on Buy/Sell because its minimum order is higher than the ad’s remaining amount ({{remaining_amount}} {{currency}}).","-987612578":"This ad is not listed on Buy/Sell because its minimum order is higher than your Deriv P2P available balance ({{balance}} {{currency}}).","-84644774":"This ad is not listed on Buy/Sell because its minimum order is higher than your remaining daily limit ({{remaining_limit}} {{currency}}).","-452142075":"You’re not allowed to use Deriv P2P to advertise. Please contact us via live chat for more information.","-1886565882":"Your ads with floating rates have been deactivated. Set fixed rates to reactivate them.","-971817673":"Your ad isn't visible to others","-1735126907":"This could be because your account balance is insufficient, your ad amount exceeds your daily limit, or both. You can still see your ad on <0>My ads.","-674715853":"Your ad exceeds the daily limit","-1530773708":"Block {{advertiser_name}}?","-2035037071":"Your Deriv P2P balance isn't enough. Please increase your balance before trying again.","-293182503":"Cancel adding this payment method?","-1850127397":"If you choose to cancel, the details you’ve entered will be lost.","-1601971804":"Cancel your edits?","-1571737200":"Don't cancel","-146021156":"Delete {{payment_method_name}}?","-1846700504":"Are you sure you want to remove this payment method?","-231863107":"No","-471384801":"Sorry, we're unable to increase your limits right now. Please try again in a few minutes.","-150224710":"Yes, continue","-1422779483":"That payment method cannot be deleted","-1088454544":"Get new link","-1327607310":"Releasing funds before receiving payment may result in losses. Check your email and follow the instructions <0>within 10 minutes to release the funds.","-1632557686":"I didn’t receive the email","-142727028":"The email is in your spam folder (sometimes things get lost there).","-75934135":"Matching ads","-1856204727":"Reset","-227512949":"Check your spelling or use a different term.","-1554938377":"Search payment method","-1728351486":"Invalid verification link","-433946201":"Leave page?","-818345434":"Are you sure you want to leave this page? Changes made will not be saved.","-392043307":"Do you want to delete this ad?","-854930519":"You will NOT be able to restore it.","-1600783504":"Set a floating rate for your ad.","-2066944925":"Deriv P2P balance","-172105477":"P2P deposits: Funds received from buying USD from another Deriv P2P user.","-271432543":"Note: Funds deposited using reversible payment methods, like credit cards, Maestro, Diners Club, ZingPay, Skrill, Neteller, Ozow, and UPI QR will not appear in your P2P balance.","-268565332":"What’s your nickname?","-532709160":"Your nickname","-1016461467":"Your nickname cannot be changed later.","-2008992756":"Do you want to cancel this order?","-1618084450":"If you cancel this order, you'll be blocked from using Deriv P2P for {{block_duration}} hours.","-2026176944":"Please do not cancel if you have already made payment.","-1989544601":"Cancel this order","-492996224":"Do not cancel","-1447732068":"Payment confirmation","-1951344681":"Please make sure that you've paid {{amount}} {{currency}} to {{other_user_name}}, and upload the receipt as proof of your payment","-637818525":"Sending forged documents will result in an immediate and permanent ban.","-670364940":"Upload receipt here","-937707753":"Go Back","-167747987":"Search countries","-1171244939":"No results for \"{{search_value}}\".","-1581516455":"Preferred countries","-1340125291":"Done","-1854199094":"{{type}} {{account_currency}}","-788469106":"ID number","-574559641":"Scan this code to order via Deriv P2P","-1078665050":"Share link","-354026679":"Share via","-229543460":"{{- link}}","-1388977563":"Copied!","-237014436":"Recommended by {{recommended_count}} trader","-849068301":"Loading...","-2061807537":"Something’s not right","-1354983065":"Refresh","-2054589794":"You've been temporarily barred from using our services due to multiple cancellation attempts. Try again after {{date_time}} GMT.","-1079963355":"trades","-609070622":"Identity verification in progress.","-1269954557":"Identity verification failed. Please try again.","-1507102231":"Identity verification complete.","-670039668":"Address verification in progress.","-23313647":"Address verification complete.","-1483008038":"Verify your P2P account","-792476552":"Verify your identity and address to use Deriv P2P.","-288996254":"Unavailable","-145054222":"Counterparty conditions (optional)","-614283799":"Joined more than","-1908785123":"Completion rate of more than","-2049545084":"We'll only show your ad to people with a completion rate higher than your selection.","-492290468":"We’ll only show your ad to people in the countries you choose.","-71696502":"Previous","-1541554430":"Next","-207756259":"You may tap and choose up to 3.","-2094684686":"If you choose to cancel, the details you've entered will be lost.","-1561775203":"Buy {{currency}}","-1527285935":"Sell {{currency}}","-592818187":"Your Deriv P2P balance is {{ dp2p_balance }}","-1654157453":"Fixed rate (1 {{currency}})","-379708059":"Min order","-1459289144":"This information will be visible to everyone.","-712875121":"{{title}}","-1987185760":"Next: {{title}}","-1281511784":"Cancel ad creation?","-2144449586":"Ad type","-1307206495":"Order must be completed in","-1653577295":"Joined more than <0>{{min_join_days}} days","-293628675":"1 hour","-1978767852":"30 minutes","-999492762":"15 minutes","-322185463":"All countries","-1908692350":"Filter by","-992568889":"No one to show here","-1241719539":"When you block someone, you won't see their ads, and they can't see yours. Your ads will be hidden from their search results, too.","-1007339977":"There are no matching name.","-1298666786":"My counterparties","-179005984":"Save","-2059312414":"Ad details","-1769584466":"Stats","-2090878601":"Daily limit","-474123616":"Want to increase your daily limits to <0>{{max_daily_buy}} {{currency}} (buy) and <1>{{max_daily_sell}} {{currency}} (sell)?","-133982971":"{{avg_release_time_in_minutes}} min","-130547447":"Trade volume <0>30d | <1>lifetime","-383030149":"You haven’t added any payment methods yet","-1156559889":"Bank Transfers","-1269362917":"Add new"} \ No newline at end of file +{"3215342":"Last 30 days","4276410":"One last step before we close this order","6794664":"Ads that match your Deriv P2P balance and limit.","19789721":"Nobody has blocked you. Yay!","24711354":"Total orders <0>30d | <1>lifetime","50672601":"Bought","55916349":"All","68867477":"Order ID {{ id }}","81450871":"We couldn’t find that page","97214671":"Hi! I'd like to exchange {{first_currency}} for {{second_currency}} at {{rate_display}}{{rate_type}} on Deriv P2P.nnIf you're interested, check out my ad 👉nn{{- advert_url}}nnThanks!","106063661":"Share this ad","111718006":"End date","121738739":"Send","122280248":"Avg release time <0>30d","134205943":"Your ads with fixed rates have been deactivated. Set floating rates to reactivate them.","140800401":"Float","150156106":"Save changes","159757877":"You won't see {{advertiser_name}}'s ads anymore and they won't be able to place orders on your ads.","170072126":"Seen {{ duration }} days ago","173939998":"Avg. pay time <0>30d","179083332":"Date","180844799":"Your completion rate is too low for this ad.","192859167":"{{avg_buy_time_in_minutes}} min","203271702":"Try again","231473252":"Preferred currency","233677840":"of the market rate","257637860":"Upload documents to verify your address.","276261353":"Avg pay time <0>30d","277542386":"Please use <0>live chat to contact our Customer Support team for help.","316725580":"You can no longer rate this transaction.","323002325":"Post ad","324970564":"Seller's contact details","358133589":"Unblock {{advertiser_name}}?","364681129":"Contact details","367579676":"Blocked","390890891":"Last quarter","392469164":"You have blocked {{advertiser_name}}.","416167062":"You'll receive","424668491":"expired","450016951":"Hello! This is where you can chat with the counterparty to confirm the order details.
Note: In case of a dispute, we'll use this chat as a reference.","452752527":"Rate (1 {{ currency }})","459886707":"E-wallets","460477293":"Enter message","464044457":"Buyer's nickname","473688701":"Enter a valid amount","488150742":"Resend email","498500965":"Seller's nickname","500514593":"Hide my ads","501523417":"You have no orders.","514948272":"Copy link","517202770":"Set fixed rate","523301614":"Release {{amount}} {{currency}}","525380157":"Buy {{offered_currency}} order","531912261":"Bank name, account number, beneficiary name","554135844":"Edit","555447610":"You won't be able to change your buy and sell limits again after this. Do you want to continue?","560402954":"User rating","565060416":"Exchange rate","574961698":"45 minutes","587882987":"Advertisers","611376642":"Clear","612069973":"Would you recommend this buyer?","625563394":"Only numbers are allowed.","628581263":"The {{local_currency}} market rate has changed.","639382772":"Please upload supported file type.","649549724":"I’ve not received any payment.","654193846":"The verification link appears to be invalid. Hit the button below to request for a new one","655733440":"Others","661808069":"Resend email {{remaining_time}}","662578726":"Available","668309975":"Others will see this on your profile, ads, and chats.","683273691":"Rate (1 {{ account_currency }})","720104538":"Fixed Rate","723172934":"Looking to buy or sell USD? You can post your own ad for others to respond.","728383001":"I’ve received more than the agreed amount.","733311523":"P2P transactions are locked. This feature is not available for payment agents.","752996317":"Last step","767789372":"Wait for payment","782834680":"Time left","783454335":"Yes, remove","784839262":"Share","790825518":"This ad is unavailable","830703311":"My profile","834075131":"Blocked advertisers","838024160":"Bank details","842911528":"Don’t show this message again.","846659545":"Your ad is not listed on <0>Buy/Sell because the amount exceeds your daily limit of {{limit}} {{currency}}.\n <1 /><1 />You can still see your ad on <0>My ads. If you’d like to increase your daily limit, please contact us via <2>live chat.","858027714":"Seen {{ duration }} minutes ago","873437248":"Instructions (optional)","875911610":"Preferred countries <0>({{eligible_countries_display}})","876086855":"Complete the financial assessment form","881351325":"Would you recommend this seller?","886126850":"This ad is not listed on Buy/Sell because its maximum order is lower than the minimum amount you can specify for orders in your ads.","887667868":"Order","892431976":"If you cancel your order {{cancellation_limit}} times in {{cancellation_period}} hours, you will be blocked from using Deriv P2P for {{block_duration}} hours.
({{number_of_cancels_remaining}} cancellations remaining)","917359787":"You've not used Deriv P2P long enough for this ad.","926446466":"Please set a different minimum and/or maximum order limit. nnThe range of your ad should not overlap with any of your active ads.","929967494":"Non-reversible deposits: Deposits from non-reversible payment methods.","931661826":"Download this QR code","947389294":"We need your documents","949859957":"Submit","954233511":"Sold","957807235":"Blocking wasn't possible as {{name}} is not using Deriv P2P anymore.","988380202":"Your instructions","993198283":"The file you uploaded is not supported. Upload another.","1001160515":"Sell","1002264993":"Seller's real name","1009032439":"All time","1019151270":"Only users who match these criteria will see your ad.","1020552673":"You're creating an ad to buy <0>{{ target_amount }} {{ target_currency }}...","1030390916":"You already have an ad with this range","1035893169":"Delete","1040596075":"Address verification failed. Please try again.","1052094244":"Max order","1056821534":"Are you sure?","1057127276":"{{- avg_release_time_in_minutes}} min","1065551550":"Set floating rate","1077515534":"Date to","1080990424":"Confirm","1089110190":"You accidentally gave us another email address (usually a work or a personal one instead of the one you meant).","1091533736":"Don't risk your funds with cash transactions. Use bank transfers or e-wallets instead.","1106073960":"You've created an ad","1106485202":"Available Deriv P2P balance","1109217274":"Success!","1119887091":"Verification","1121630246":"Block","1137964885":"Can only contain letters, numbers, and special characters .- _ @.","1142686040":"Nickname added successfully!","1151608942":"Total amount","1157877436":"{{field_name}} should not exceed Amount","1162965175":"Buyer","1163072833":"<0>ID verified","1164771858":"I’ve received payment from 3rd party.","1168689876":"Your ad is not listed","1184609483":"Create a similar ad","1191941618":"Enter a value that's within -{{limit}}% to +{{limit}}%","1192337383":"Seen {{ duration }} hour ago","1202500203":"Pay now","1228352589":"Not rated yet","1229976478":"You will be able to see {{ advertiser_name }}'s ads. They'll be able to place orders on your ads, too.","1236083813":"Your payment details","1258285343":"Oops, something went wrong","1286797620":"Active","1287051975":"Nickname is too long","1300767074":"{{name}} is no longer on Deriv P2P","1303016265":"Yes","1313218101":"Rate this transaction","1314266187":"Joined today","1320670806":"Leave page","1326475003":"Activate","1328352136":"Sell {{ account_currency }}","1330528524":"Seen {{ duration }} month ago","1337027601":"You sold {{offered_amount}} {{offered_currency}}","1347322213":"How would you rate this transaction?","1347724133":"I have paid {{amount}} {{currency}}.","1366244749":"Limits","1370999551":"Floating rate","1371193412":"Cancel","1376329801":"Last 60 days","1378388952":"Promote your ad by sharing the QR code and link.","1381949324":"<0>Address verified","1385570445":"Upload documents to verify your identity.","1398938904":"We can't deliver the email to this address (usually because of firewalls or filtering).","1404414405":"Counterparty conditions","1422356389":"No results for \"{{text}}\".","1426213515":"If you’ve received {{amount}} {{local_currency}} from {{name}} in your bank account or e-wallet, hit the button below to complete the order.","1430413419":"Maximum is {{value}} {{currency}}","1438103743":"Floating rates are enabled for {{local_currency}}. Ads with fixed rates will be deactivated. Switch to floating rates by {{end_date}}.","1448855725":"Add payment methods","1452260922":"Too many failed attempts","1467483693":"Past orders","1474532322":"Sort by","1480915523":"Skip","1497156292":"No ads for this currency 😞","1505293001":"Trade partners","1543377906":"This ad is not listed on Buy/Sell because you have paused all your ads.","1568512719":"Your daily limits have been increased to {{daily_buy_limit}} {{currency}} (buy) and {{daily_sell_limit}} {{currency}} (sell).","1581886364":"Your Deriv P2P balance includes:","1583335572":"If the ad doesn't receive an order for {{adverts_archive_period}} days, it will be deactivated.","1587250288":"Ad ID {{advert_id}} ","1587507924":"Or copy this link","1607051458":"Search by nickname","1615530713":"Something's not right","1620858613":"You're editing an ad to sell <0>{{ target_amount }} {{ target_currency }} for <0>{{ local_amount }} {{ local_currency }} <1>({{ price_rate }} {{local_currency}}/{{ target_currency }})","1622662457":"Date from","1623916605":"I wasn’t able to make full payment.","1654365787":"Unknown","1660278694":"The advertiser changed the rate before you confirmed the order.","1671725772":"If you choose to cancel, the edited details will be lost.","1675716253":"Min limit","1678804253":"Buy {{ currency }}","1685888862":"An internal error occurred","1686592014":"To place an order, add one of the advertiser's preferred payment methods:","1691540875":"Edit payment method","1699829275":"Cannot upload a file over 5MB","1702855414":"Your ad isn’t listed on Buy/Sell due to the following reason(s):","1703154819":"You're editing an ad to sell <0>{{ target_amount }} {{ target_currency }}...","1721422292":"Show my real name","1740434340":"Orders will expire if they aren’t completed within this time.","1747523625":"Go back","1752096323":"{{field_name}} should not be below Min limit","1767817594":"Buy completion <0>30d","1782514544":"This ad is not listed on Buy/Sell because its minimum order is higher than {{maximum_order_amount}} {{currency}}.","1784151356":"at","1791767028":"Set a fixed rate for your ad.","1794470010":"I’ve made full payment, but the seller hasn’t released the funds.","1794474847":"I've received payment","1798116519":"Available amount","1799384587":"Has the buyer paid you?","1809099720":"Expand all","1810217569":"Please refresh this page to continue.","1842172737":"You've received {{offered_amount}} {{offered_currency}}","1858251701":"minute","1859308030":"Give feedback","1874956952":"Hit the button below to add payment methods.","1881018702":"hour","1902229457":"Unable to block advertiser","1908023954":"Sorry, an error occurred while processing your request.","1914014145":"Today","1919093147":"Completion rate of more than <0>{{min_completion_rate}}%","1923443894":"Inactive","1928240840":"Sell {{ currency }}","1929119945":"There are no ads yet","1976156928":"You'll send","1992961867":"Rate (1 {{currency}})","1994023526":"The email address you entered had a mistake or typo (happens to the best of us).","2020104747":"Filter","2027742762":"Review your settings and create a new ad. Every ad must have unique limits and rates.","2029375371":"Payment instructions","2032274854":"Recommended by {{recommended_count}} traders","2039361923":"You're creating an ad to sell...","2040110829":"Increase my limits","2060873863":"Your order {{order_id}} is complete","2063890788":"Cancelled","2064304887":"We accept JPG, PDF, or PNG (up to 5MB).","2065710341":"The completion rate is the percentage of successful orders.","2076240918":"We'll only show your ad to people who've been using Deriv P2P for longer than the time you choose.","2091671594":"Status","2096014107":"Apply","2104905634":"No one has recommended this trader yet","2121837513":"Minimum is {{value}} {{currency}}","2142425493":"Ad ID","2145292295":"Rate","-1540251249":"Buy {{ account_currency }}","-1267880283":"{{field_name}} is required","-2019083683":"{{field_name}} can only include letters, numbers, spaces, and any of these symbols: -+.,'#@():;","-222920564":"{{field_name}} has exceeded maximum length","-2093768906":"{{name}} has released your funds.
Would you like to give your feedback?","-1101273282":"Nickname is required","-919203928":"Nickname is too short","-1907100457":"Cannot start, end with, or repeat special characters.","-270502067":"Cannot repeat a character more than 4 times.","-499872405":"You have open orders for this ad. Complete all open orders before deleting this ad.","-2125702445":"Instructions","-1274358564":"Max limit","-1995606668":"Amount","-1965472924":"Fixed rate","-1081775102":"{{field_name}} should not be below Max limit","-991345852":"Only up to 2 decimals are allowed.","-885044836":"{{field_name}} should not exceed Max limit","-1921077416":"All ({{list_value}})","-608125128":"Blocked ({{list_value}})","-1764050750":"Payment details","-2021135479":"This field is required.","-2005205076":"{{field_name}} has exceeded maximum length of 200 characters.","-1837059346":"Buy / Sell","-494667560":"Orders","-679691613":"My ads","-412680608":"Add payment method","-984140537":"Add","-1220275347":"You may choose up to 3 payment methods for this ad.","-510341549":"I’ve received less than the agreed amount.","-650030360":"I’ve paid more than the agreed amount.","-1192446042":"If your complaint isn't listed here, please contact our Customer Support team.","-573132778":"Complaint","-792338456":"What's your complaint?","-418870584":"Cancel order","-1392383387":"I've paid","-727273667":"Complain","-2016990049":"Sell {{offered_currency}} order","-811190405":"Time","-961632398":"Collapse all","-415476028":"Not rated","-26434257":"You have until {{remaining_review_time}} GMT to rate this transaction.","-768709492":"Your transaction experience","-652933704":"Recommended","-84139378":"Not Recommended","-2139303636":"You may have followed a broken link, or the page has moved to a new address.","-1448368765":"Error code: {{error_code}} page not found","-1660552437":"Return to P2P","-137444201":"Buy","-1306639327":"Payment methods","-904197848":"Limits {{min_order_amount_limit_display}}-{{max_order_amount_limit_display}} {{currency}}","-464361439":"{{- avg_buy_time_in_minutes}} min","-2109576323":"Sell completion <0>30d","-165392069":"Avg. release time <0>30d","-1154208372":"Trade volume <0>30d","-1494028069":"It's either deleted or no longer active.","-2017825013":"Got it","-1845037007":"Advertiser's page","-1070228546":"Joined {{days_since_joined}}d","-2015102262":"({{number_of_ratings}} rating)","-1412298133":"({{number_of_ratings}} ratings)","-260332243":"{{user_blocked_count}} person has blocked you","-117094654":"{{user_blocked_count}} people have blocked you","-329713179":"Ok","-1689905285":"Unblock","-1148912768":"If the market rate changes from the rate shown here, we won't be able to process your order.","-55126326":"Seller","-92830427":"Seller's instructions","-1940034707":"Buyer's instructions","-631576120":"Orders must be completed in","-835196958":"Receive payment to","-1218007718":"You may choose up to 3.","-1933432699":"Enter {{transaction_type}} amount","-2021730616":"{{ad_type}}","-490637584":"Limit: {{min}}–{{max}} {{currency}}","-1974067943":"Your bank details","-892663026":"Your contact details","-1285759343":"Search","-1657433201":"There are no matching ads.","-1862812590":"Limits {{ min_order }}–{{ max_order }} {{ currency }}","-1876891031":"Currency","-1503997652":"No ads for this currency.","-1048001140":"No results for \"{{value}}\".","-254484597":"You have no ads 😞","-1179827369":"Create new ad","-73663931":"Create ad","-141315849":"No ads for this currency at the moment 😞","-1889014820":"<0>Don’t see your payment method? <1>Add new.","-1406830100":"Payment method","-294043241":"Set ad type and amount","-311810519":"Set payment details","-1149273198":"Set ad conditions","-1282343703":"You're creating an ad to buy <0>{{ target_amount }} {{ target_currency }} for <0>{{ local_amount }} {{ local_currency }} <1>({{ price_rate }} {{local_currency}}/{{ target_currency }})","-2139632895":"You're creating an ad to sell <0>{{ target_amount }} {{ target_currency }} for <0>{{ local_amount }} {{ local_currency }} <1>({{ price_rate }} {{local_currency}}/{{ target_currency }})","-40669120":"You're creating an ad to sell <0>{{ target_amount }} {{ target_currency }}...","-514789442":"You're creating an ad to buy...","-1914431773":"You're editing an ad to buy <0>{{ target_amount }} {{ target_currency }} for <0>{{ local_amount }} {{ local_currency }} <1>({{ price_rate }} {{local_currency}}/{{ target_currency }})","-107996509":"You're editing an ad to buy <0>{{ target_amount }} {{ target_currency }}...","-863580260":"You're editing an ad to buy...","-1396464057":"You're editing an ad to sell...","-309848900":"Copy","-1318334333":"Deactivate","-372210670":"Rate (1 {{account_currency}})","-87612148":"Ad not listed","-466964809":"Manage ad","-1667041441":"Rate (1 {{ offered_currency }})","-792015701":"Deriv P2P cashier is unavailable in your country.","-1983512566":"This conversation is closed.","-283017497":"Retry","-360975483":"You've made no transactions of this type during this period.","-979459594":"Buy/Sell","-2052184983":"Order ID","-2096350108":"Counterparty","-1597110099":"Receive","-750202930":"Active orders","-1626659964":"I've received {{amount}} {{currency}}.","-526636259":"Error 404","-480724783":"You already have an ad with this rate","-2040406318":"You already have an ad with the same exchange rate for this currency pair and order type. nnPlease set a different rate for your ad.","-1117584385":"Seen more than 6 months ago","-1766199849":"Seen {{ duration }} months ago","-591593016":"Seen {{ duration }} day ago","-1586918919":"Seen {{ duration }} hours ago","-664781013":"Seen {{ duration }} minute ago","-1717650468":"Online","-485338176":"The advertiser has set conditions for this ad that you don't meet.","-1887970998":"Unblocking wasn't possible as {{name}} is not using Deriv P2P anymore.","-1207312691":"Completed","-688728873":"Expired","-1951641340":"Under dispute","-1738697484":"Confirm payment","-1611857550":"Waiting for the seller to confirm","-1452684930":"Buyer's real name","-1875343569":"Seller's payment details","-1977959027":"hours","-1603581277":"minutes","-1792280476":"Choose your payment method","-520142572":"Cashier is currently down for maintenance","-1552080215":"Please check back in a few minutes.<0>Thank you for your patience.","-684271315":"OK","-130601012":"Please select duration","-232254547":"Custom","-1577570698":"Start date","-1251526905":"Last 7 days","-1638172550":"To enable this feature you must complete the following:","-1086586743":"Please submit your <0>proof of address. You can use Deriv P2P after we’ve verified your documents.","-559300364":"Your Deriv P2P cashier is blocked","-740038242":"Your rate is","-1072444041":"Update ad","-2085839488":"This ad is not listed on Buy/Sell because its minimum order is higher than the ad’s remaining amount ({{remaining_amount}} {{currency}}).","-987612578":"This ad is not listed on Buy/Sell because its minimum order is higher than your Deriv P2P available balance ({{balance}} {{currency}}).","-84644774":"This ad is not listed on Buy/Sell because its minimum order is higher than your remaining daily limit ({{remaining_limit}} {{currency}}).","-452142075":"You’re not allowed to use Deriv P2P to advertise. Please contact us via live chat for more information.","-1886565882":"Your ads with floating rates have been deactivated. Set fixed rates to reactivate them.","-971817673":"Your ad isn't visible to others","-1735126907":"This could be because your account balance is insufficient, your ad amount exceeds your daily limit, or both. You can still see your ad on <0>My ads.","-674715853":"Your ad exceeds the daily limit","-1530773708":"Block {{advertiser_name}}?","-2035037071":"Your Deriv P2P balance isn't enough. Please increase your balance before trying again.","-293182503":"Cancel adding this payment method?","-1850127397":"If you choose to cancel, the details you’ve entered will be lost.","-1601971804":"Cancel your edits?","-1571737200":"Don't cancel","-146021156":"Delete {{payment_method_name}}?","-1846700504":"Are you sure you want to remove this payment method?","-231863107":"No","-471384801":"Sorry, we're unable to increase your limits right now. Please try again in a few minutes.","-150224710":"Yes, continue","-1422779483":"That payment method cannot be deleted","-1088454544":"Get new link","-1327607310":"Releasing funds before receiving payment may result in losses. Check your email and follow the instructions <0>within 10 minutes to release the funds.","-1632557686":"I didn’t receive the email","-142727028":"The email is in your spam folder (sometimes things get lost there).","-75934135":"Matching ads","-1856204727":"Reset","-227512949":"Check your spelling or use a different term.","-1554938377":"Search payment method","-1728351486":"Invalid verification link","-433946201":"Leave page?","-818345434":"Are you sure you want to leave this page? Changes made will not be saved.","-392043307":"Do you want to delete this ad?","-854930519":"You will NOT be able to restore it.","-1600783504":"Set a floating rate for your ad.","-2066944925":"Deriv P2P balance","-172105477":"P2P deposits: Funds received from buying USD from another Deriv P2P user.","-271432543":"Note: Funds deposited using reversible payment methods, like credit cards, Maestro, Diners Club, ZingPay, Skrill, Neteller, Ozow, and UPI QR will not appear in your P2P balance.","-268565332":"What’s your nickname?","-532709160":"Your nickname","-1016461467":"Your nickname cannot be changed later.","-2008992756":"Do you want to cancel this order?","-1618084450":"If you cancel this order, you'll be blocked from using Deriv P2P for {{block_duration}} hours.","-2026176944":"Please do not cancel if you have already made payment.","-1989544601":"Cancel this order","-492996224":"Do not cancel","-1447732068":"Payment confirmation","-1951344681":"Please make sure that you've paid {{amount}} {{currency}} to {{other_user_name}}, and upload the receipt as proof of your payment","-637818525":"Sending forged documents will result in an immediate and permanent ban.","-670364940":"Upload receipt here","-937707753":"Go Back","-167747987":"Search countries","-1171244939":"No results for \"{{search_value}}\".","-1581516455":"Preferred countries","-1340125291":"Done","-1854199094":"{{type}} {{account_currency}}","-788469106":"ID number","-574559641":"Scan this code to order via Deriv P2P","-1078665050":"Share link","-354026679":"Share via","-229543460":"{{- link}}","-1388977563":"Copied!","-237014436":"Recommended by {{recommended_count}} trader","-849068301":"Loading...","-2061807537":"Something’s not right","-1354983065":"Refresh","-2054589794":"You've been temporarily barred from using our services due to multiple cancellation attempts. Try again after {{date_time}} GMT.","-1079963355":"trades","-609070622":"Identity verification in progress.","-1269954557":"Identity verification failed. Please try again.","-1507102231":"Identity verification complete.","-670039668":"Address verification in progress.","-23313647":"Address verification complete.","-1483008038":"Verify your P2P account","-792476552":"Verify your identity and address to use Deriv P2P.","-288996254":"Unavailable","-145054222":"Counterparty conditions (optional)","-614283799":"Joined more than","-1908785123":"Completion rate of more than","-2049545084":"We'll only show your ad to people with a completion rate higher than your selection.","-492290468":"We’ll only show your ad to people in the countries you choose.","-71696502":"Previous","-1541554430":"Next","-207756259":"You may tap and choose up to 3.","-2094684686":"If you choose to cancel, the details you've entered will be lost.","-1561775203":"Buy {{currency}}","-1527285935":"Sell {{currency}}","-592818187":"Your Deriv P2P balance is {{ dp2p_balance }}","-1654157453":"Fixed rate (1 {{currency}})","-379708059":"Min order","-1459289144":"This information will be visible to everyone.","-712875121":"{{title}}","-1987185760":"Next: {{title}}","-1281511784":"Cancel ad creation?","-2144449586":"Ad type","-1307206495":"Order must be completed in","-1653577295":"Joined more than <0>{{min_join_days}} days","-293628675":"1 hour","-1978767852":"30 minutes","-999492762":"15 minutes","-322185463":"All countries","-1908692350":"Filter by","-992568889":"No one to show here","-1241719539":"When you block someone, you won't see their ads, and they can't see yours. Your ads will be hidden from their search results, too.","-1007339977":"There are no matching name.","-1298666786":"My counterparties","-179005984":"Save","-2059312414":"Ad details","-1769584466":"Stats","-2090878601":"Daily limit","-474123616":"Want to increase your daily limits to <0>{{max_daily_buy}} {{currency}} (buy) and <1>{{max_daily_sell}} {{currency}} (sell)?","-133982971":"{{avg_release_time_in_minutes}} min","-130547447":"Trade volume <0>30d | <1>lifetime","-383030149":"You haven’t added any payment methods yet","-1156559889":"Bank Transfers","-1269362917":"Add new"} \ No newline at end of file diff --git a/packages/p2p/src/translations/ar.json b/packages/p2p/src/translations/ar.json index d625a91f3f82..1f892c1520d8 100644 --- a/packages/p2p/src/translations/ar.json +++ b/packages/p2p/src/translations/ar.json @@ -80,6 +80,7 @@ "782834680": "الوقت المتبقي", "783454335": "نعم، قم بإزالته", "784839262": "شارك", + "790825518": "هذا الإعلان غير متوفر", "830703311": "ملف التعريف الخاص بي", "834075131": "المعلنون المحظورون", "838024160": "تفاصيل البنك", @@ -140,7 +141,6 @@ "1229976478": "ستتمكن من مشاهدة إعلانات {{ advertiser_name }}. وسيتمكنون من تقديم طلبات على إعلاناتك أيضًا.", "1236083813": "تفاصيل الدفع الخاصة بك", "1258285343": "عفوًا، حدث خطأ ما", - "1274343323": "هذا الإعلان غير متوفر حالياً", "1286797620": "نشيط", "1287051975": "اللقب طويل جدًا", "1300767074": "لم يعد الرقم {{name}} موجودًا على Deriv P2P", diff --git a/packages/p2p/src/translations/bn.json b/packages/p2p/src/translations/bn.json index b55bfe2429e4..157cf06ebb7a 100644 --- a/packages/p2p/src/translations/bn.json +++ b/packages/p2p/src/translations/bn.json @@ -80,6 +80,7 @@ "782834680": "বাকি সময়", "783454335": "হ্যাঁ, মুছে ফেলুন", "784839262": "শেয়ার করুন", + "790825518": "This ad is unavailable", "830703311": "আমার প্রোফাইল", "834075131": "ব্লক করা বিজ্ঞাপনদাতাদের", "838024160": "ব্যাংকের বিস্তারিত বিবরণ", @@ -140,7 +141,6 @@ "1229976478": "আপনি {{ advertiser_name }}এর বিজ্ঞাপন দেখতে সক্ষম হবেন। তারা আপনার বিজ্ঞাপনগুলিতেও অর্ডার দিতে সক্ষম হবে।", "1236083813": "আপনার পেমেন্ট বিবরণ", "1258285343": "ওহো, কিছু একটা ভুল হয়েছে", - "1274343323": "এই বিজ্ঞাপনটি বর্তমানে উপলব্ধ", "1286797620": "সক্রিয়", "1287051975": "ডাকনাম অনেক লম্বা", "1300767074": "{{name}} Deriv P2P এ আর নেই", diff --git a/packages/p2p/src/translations/de.json b/packages/p2p/src/translations/de.json index d1f066badbf1..b098e465f945 100644 --- a/packages/p2p/src/translations/de.json +++ b/packages/p2p/src/translations/de.json @@ -80,6 +80,7 @@ "782834680": "Verbleibende Zeit", "783454335": "Ja, entfernen", "784839262": "Teilen", + "790825518": "Diese Anzeige ist nicht verfügbar", "830703311": "Mein Profil", "834075131": "Blockierte Werbetreibende", "838024160": "Bankdaten", @@ -140,7 +141,6 @@ "1229976478": "Sie werden die Anzeigen von {{ advertiser_name }}sehen können. Sie können auch Bestellungen für Ihre Anzeigen aufgeben.", "1236083813": "Deine Zahlungsdetails", "1258285343": "Ups, da ist etwas schief gelaufen", - "1274343323": "Diese Anzeige ist derzeit nicht verfügbar", "1286797620": "Aktiv", "1287051975": "Der Spitzname ist zu lang", "1300767074": "{{name}} ist nicht mehr auf Deriv P2P", diff --git a/packages/p2p/src/translations/es.json b/packages/p2p/src/translations/es.json index 64c9182b760e..74a978248bb2 100644 --- a/packages/p2p/src/translations/es.json +++ b/packages/p2p/src/translations/es.json @@ -80,6 +80,7 @@ "782834680": "Tiempo restante", "783454335": "Sí, eliminar", "784839262": "Compartir", + "790825518": "Este anuncio no está disponible", "830703311": "Mi perfil", "834075131": "Anuncios bloqueados", "838024160": "Detalles del banco", @@ -140,7 +141,6 @@ "1229976478": "Podrá ver los anuncios de {{ advertiser_name }}. Él/ella también podrá realizar pedidos en sus anuncios.", "1236083813": "Sus detalles de pago", "1258285343": "Ups, algo salió mal", - "1274343323": "Este anuncio no está disponible actualmente", "1286797620": "Activo", "1287051975": "El alias es demasiado largo", "1300767074": "{{name}} ya no está en Deriv P2P", diff --git a/packages/p2p/src/translations/fr.json b/packages/p2p/src/translations/fr.json index b316c084bb90..bd0369884656 100644 --- a/packages/p2p/src/translations/fr.json +++ b/packages/p2p/src/translations/fr.json @@ -80,6 +80,7 @@ "782834680": "Temps restant", "783454335": "Oui, supprimer", "784839262": "Partager", + "790825518": "Cette annonce n'est pas disponible", "830703311": "Mon profil", "834075131": "Annonceurs bloqués", "838024160": "Coordonnées bancaires", @@ -140,7 +141,6 @@ "1229976478": "Vous pourrez voir les annonces de {{ advertiser_name }}. Il pourra également placer des ordres sur vos annonces.", "1236083813": "Vos informations de paiement", "1258285343": "Désolé, un problème est survenu", - "1274343323": "Cette annonce est actuellement indisponible", "1286797620": "Actif", "1287051975": "Le pseudo est trop long", "1300767074": "{{name}} n'est plus sur Deriv P2P", diff --git a/packages/p2p/src/translations/it.json b/packages/p2p/src/translations/it.json index 479e1951e60c..b458c976620f 100644 --- a/packages/p2p/src/translations/it.json +++ b/packages/p2p/src/translations/it.json @@ -80,6 +80,7 @@ "782834680": "Tempo residuo", "783454335": "Sì, rimuovi", "784839262": "Condividi", + "790825518": "Questo annuncio non è disponibile", "830703311": "Il mio profilo", "834075131": "Inserzionisti bloccati", "838024160": "Dettagli bancari", @@ -140,7 +141,6 @@ "1229976478": "Potrai vedere gli annunci di {{ advertiser_name }}. Potranno anche effettuare ordini sui tuoi annunci.", "1236083813": "Dettagli del pagamento", "1258285343": "Ops, qualcosa non ha funzionato", - "1274343323": "Questo annuncio non è attualmente disponibile", "1286797620": "Attivo", "1287051975": "Soprannome troppo lungo", "1300767074": "{{name}} non è più su Deriv P2P", diff --git a/packages/p2p/src/translations/ko.json b/packages/p2p/src/translations/ko.json index 4a527b4f835a..181c19dba452 100644 --- a/packages/p2p/src/translations/ko.json +++ b/packages/p2p/src/translations/ko.json @@ -80,6 +80,7 @@ "782834680": "남은 시간", "783454335": "예, 제거하겠습니다", "784839262": "공유", + "790825518": "이 광고를 사용할 수 없습니다.", "830703311": "내 프로필", "834075131": "차단된 광고주", "838024160": "은행 세부 정보", @@ -140,7 +141,6 @@ "1229976478": "{{ advertiser_name }}의 광고를 볼 수 있습니다. 이들 또한 귀하의 광고를 통해 주문할 수 있습니다.", "1236083813": "결제 세부 정보", "1258285343": "문제가 발생했습니다", - "1274343323": "이 광고는 현재 사용할 수 없습니다.", "1286797620": "활성", "1287051975": "닉네임이 너무 깁니다", "1300767074": "{{name}}는 더 이상 Deriv P2P의 사용자가 아닙니다", diff --git a/packages/p2p/src/translations/mn.json b/packages/p2p/src/translations/mn.json index f1325838947a..5f127c1c33ae 100644 --- a/packages/p2p/src/translations/mn.json +++ b/packages/p2p/src/translations/mn.json @@ -80,6 +80,7 @@ "782834680": "Цаг үлдсэн", "783454335": "Тийм ээ, устгах", "784839262": "Хуваалцах", + "790825518": "This ad is unavailable", "830703311": "Миний профайл", "834075131": "Хаагдсан зар сурталчилгаа", "838024160": "Банкны дэлгэрэнгүй мэдээлэл", @@ -140,7 +141,6 @@ "1229976478": "Та {{ advertiser_name }}-ийн зар сурталчилгааг үзэх боломжтой болно. Тэд таны зар дээр захиалга өгөх боломжтой болно.", "1236083813": "Таны төлбөрийн дэлгэрэнгүй мэдээлэл", "1258285343": "Өө, ямар нэг зүйл буруу явав", - "1274343323": "This ad is currently unavailable", "1286797620": "Идэвхтэй", "1287051975": "Хоч хэтэрхий урт", "1300767074": "{{name}} Deriv P2P дээр байхаа больсон", diff --git a/packages/p2p/src/translations/pl.json b/packages/p2p/src/translations/pl.json index a04aa78bd47e..d4ef8f87bcb4 100644 --- a/packages/p2p/src/translations/pl.json +++ b/packages/p2p/src/translations/pl.json @@ -80,6 +80,7 @@ "782834680": "Pozostały czas", "783454335": "Tak, usuń", "784839262": "Udział", + "790825518": "This ad is unavailable", "830703311": "Mój profil", "834075131": "Zablokowani ogłoszeniodawcy", "838024160": "Dane banku", @@ -140,7 +141,6 @@ "1229976478": "Będziesz widzieć reklamy ogłoszeniodawcy: {{ advertiser_name }}. Ten ogłoszeniodawca będzie mógł składać zlecenia w odpowiedzi na Twoje ogłoszenia.", "1236083813": "Szczegóły Twojej płatności", "1258285343": "Ups, coś poszło nie tak", - "1274343323": "Ta reklama jest obecnie niedostępna", "1286797620": "Aktywne", "1287051975": "Pseudonim jest za długi", "1300767074": "Użytkownik {{name}} nie jest już dostępny na Deriv P2P", diff --git a/packages/p2p/src/translations/pt.json b/packages/p2p/src/translations/pt.json index 7abdb734806d..cdee89d812e1 100644 --- a/packages/p2p/src/translations/pt.json +++ b/packages/p2p/src/translations/pt.json @@ -80,6 +80,7 @@ "782834680": "Tempo restante", "783454335": "Sim, remover", "784839262": "Partilhar", + "790825518": "Este anúncio não está disponível", "830703311": "Meu perfil", "834075131": "Anunciantes bloqueados", "838024160": "Detalhes bancários", @@ -140,7 +141,6 @@ "1229976478": "Você poderá ver os anúncios de {{ advertiser_name }}. Eles também poderão fazer pedidos em seus anúncios.", "1236083813": "Seus dados de pagamento", "1258285343": "Ops, algo deu errado", - "1274343323": "Este anúncio não está atualmente disponível", "1286797620": "Ativo", "1287051975": "Nome alternativo muito grande", "1300767074": "{{name}} já não se encontra na Deriv P2P", diff --git a/packages/p2p/src/translations/ru.json b/packages/p2p/src/translations/ru.json index bbdcf7edbc0a..8cdd230aaf6a 100644 --- a/packages/p2p/src/translations/ru.json +++ b/packages/p2p/src/translations/ru.json @@ -80,6 +80,7 @@ "782834680": "Осталось времени", "783454335": "Да, удалить", "784839262": "Поделиться", + "790825518": "Это объявление недоступно", "830703311": "Мой профайл", "834075131": "Заблокированные", "838024160": "Банковские реквизиты", @@ -140,7 +141,6 @@ "1229976478": "Вы сможете увидеть объявления {{ advertiser_name }}. Он также сможет размещать ордеры на ваши объявления.", "1236083813": "Ваши платежные реквизиты", "1258285343": "Упс, что-то пошло не так", - "1274343323": "Это объявление сейчас недоступно", "1286797620": "Активный", "1287051975": "Псевдоним слишком длинный", "1300767074": "{{name}} больше нет на Deriv P2P", diff --git a/packages/p2p/src/translations/si.json b/packages/p2p/src/translations/si.json index 7c237c5d4cd4..f8111497453a 100644 --- a/packages/p2p/src/translations/si.json +++ b/packages/p2p/src/translations/si.json @@ -80,6 +80,7 @@ "782834680": "ඉතිරිව ඇති කාලය", "783454335": "ඔව්, ඉවත් කරන්න", "784839262": "බෙදා ගන්න", + "790825518": "This ad is unavailable", "830703311": "මගේ පැතිකඩ", "834075131": "අවහිර කළ දැන්වීම්කරුවන්", "838024160": "බැංකු විස්තර", @@ -140,7 +141,6 @@ "1229976478": "ඔබට {{ advertiser_name }}ගේ දැන්වීම් දැක ගත හැකිය. ඔබේ දැන්වීම් මත ඇණවුම් කිරීමට ඔවුන්ට හැකි වනු ඇත.", "1236083813": "ඔබගේ ගෙවීම් විස්තර", "1258285343": "අපොයි, යමක් වැරදී", - "1274343323": "මෙම දැන්වීම දැනට නොමැත", "1286797620": "සක්‍රීය", "1287051975": "අන්වර්ථ නාමය දිගු වේ", "1300767074": "{{name}} තවදුරටත් ඩෙරිව් පී 2 පී මත නොවේ", diff --git a/packages/p2p/src/translations/sw.json b/packages/p2p/src/translations/sw.json index b78ae215c3eb..793660ab5ea7 100644 --- a/packages/p2p/src/translations/sw.json +++ b/packages/p2p/src/translations/sw.json @@ -80,6 +80,7 @@ "782834680": "Muda uliobaki", "783454335": "Ndio, ondoa", "784839262": "Sambaza", + "790825518": "This ad is unavailable", "830703311": "Wasifu wangu", "834075131": "Watangazaji waliozuiliwa", "838024160": "Taarifa za benki", @@ -140,7 +141,6 @@ "1229976478": "Utaweza kuona matangazo ya {{ advertiser_name }}. Wataweza kuweka maagizo kwenye matangazo yako pia.", "1236083813": "Taarifa za malipo yako", "1258285343": "Oops, kuna kitu hakijaenda sawa", - "1274343323": "Tangazo hili haipatikani kwa sasa", "1286797620": "Hai", "1287051975": "Jina la utani ni refu sana", "1300767074": "{{name}} haipo tena kwenye Deriv P2P", diff --git a/packages/p2p/src/translations/th.json b/packages/p2p/src/translations/th.json index a38d40a4d25e..4321802d290b 100644 --- a/packages/p2p/src/translations/th.json +++ b/packages/p2p/src/translations/th.json @@ -80,6 +80,7 @@ "782834680": "เหลือเวลาอีก", "783454335": "ใช่ ให้เอาออกไป", "784839262": "แชร์", + "790825518": "This ad is unavailable", "830703311": "โปรไฟล์ของฉัน", "834075131": "ผู้ลงโฆษณาที่ถูกปิดกั้น", "838024160": "รายละเอียดข้อมูลธนาคาร", @@ -140,7 +141,6 @@ "1229976478": "คุณจะสามารถมองเห็นโฆษณาของ {{ advertiser_name }} ได้ และพวกเขาจะสามารถส่งคำสั่งซื้อเกี่ยวกับโฆษณาของคุณได้ด้วย", "1236083813": "รายละเอียดการชำระเงินของคุณ", "1258285343": "อ๊ะ มีบางอย่างผิดปกติ", - "1274343323": "โฆษณานี้ไม่พร้อมใช้งาน", "1286797620": "กำลังใช้งานอยู่", "1287051975": "ชื่อเล่นของคุณยาวเกินไป", "1300767074": "{{name}} ไม่ได้อยู่ในแอป Deriv P2P อีกต่อไป", diff --git a/packages/p2p/src/translations/tr.json b/packages/p2p/src/translations/tr.json index e74bece0f3d3..026c94ad2b57 100644 --- a/packages/p2p/src/translations/tr.json +++ b/packages/p2p/src/translations/tr.json @@ -80,6 +80,7 @@ "782834680": "Kalan zaman", "783454335": "Evet, kaldır", "784839262": "Paylaş", + "790825518": "Bu ilana ulaşılamıyor", "830703311": "Profilim", "834075131": "Engellenen ilan verenler", "838024160": "Banka bilgileri", @@ -140,7 +141,6 @@ "1229976478": "{{ advertiser_name }} tarafından verilen ilanları görebileceksiniz. Onlar da ilanlarınıza sipariş verebilecekler.", "1236083813": "Ödeme ayrıntılarınız", "1258285343": "Oops, bir sorun oluştu", - "1274343323": "Bu ilana şu anda ulaşılamıyor", "1286797620": "Aktif", "1287051975": "Takma ad çok uzun", "1300767074": "{{name}} artık Deriv P2P'de değil", diff --git a/packages/p2p/src/translations/vi.json b/packages/p2p/src/translations/vi.json index 1c7583acf84f..adfe8d6fe664 100644 --- a/packages/p2p/src/translations/vi.json +++ b/packages/p2p/src/translations/vi.json @@ -80,6 +80,7 @@ "782834680": "Thời gian còn lại", "783454335": "Có, hãy bỏ", "784839262": "Chia sẻ", + "790825518": "This ad is unavailable", "830703311": "Thông tin của tôi", "834075131": "Nhà quảng cáo bị chặn", "838024160": "Thông tin ngân hàng", @@ -140,7 +141,6 @@ "1229976478": "Bạn sẽ có thể xem quảng cáo của {{ advertiser_name }}. Họ cũng có thể yêu cầu giao dịch trên quảng cáo của bạn.", "1236083813": "Chi tiết thanh toán của bạn", "1258285343": "Ối, đã xảy ra lỗi", - "1274343323": "Quảng cáo này hiện không khả dụng", "1286797620": "Đang hoạt động", "1287051975": "Nickname quá dài", "1300767074": "{{name}} không còn trên Deriv P2P", diff --git a/packages/p2p/src/translations/zh_cn.json b/packages/p2p/src/translations/zh_cn.json index 68a37ed6a3ff..2027a91f0ca4 100644 --- a/packages/p2p/src/translations/zh_cn.json +++ b/packages/p2p/src/translations/zh_cn.json @@ -80,6 +80,7 @@ "782834680": "剩余时间", "783454335": "是,删除", "784839262": "分享", + "790825518": "This ad is unavailable", "830703311": "我的个人资料", "834075131": "被封禁的广告商", "838024160": "银行详细信息", @@ -140,7 +141,6 @@ "1229976478": "您将能够看到 {{ advertiser_name }} 的广告。他们也可以给您的广告下订单。", "1236083813": "您的付款详细信息", "1258285343": "糟糕,出错了", - "1274343323": "此广告目前不可用", "1286797620": "活跃", "1287051975": "昵称太长", "1300767074": "{{name}} 已不再在 Deriv P2P", diff --git a/packages/p2p/src/translations/zh_tw.json b/packages/p2p/src/translations/zh_tw.json index 43aaf52f3e78..b174abccfc81 100644 --- a/packages/p2p/src/translations/zh_tw.json +++ b/packages/p2p/src/translations/zh_tw.json @@ -80,6 +80,7 @@ "782834680": "剩餘時間", "783454335": "是,刪除", "784839262": "共用", + "790825518": "This ad is unavailable", "830703311": "我的個人資料", "834075131": "被封禁廣告商", "838024160": "銀行詳細資料", @@ -140,7 +141,6 @@ "1229976478": "您將能夠看到 {{ advertiser_name }} 的廣告。他們也可以給您的廣告下訂單。", "1236083813": "您的付款詳細資料", "1258285343": "糟糕,出錯了", - "1274343323": "此廣告目前無法使用", "1286797620": "活躍", "1287051975": "暱稱太長", "1300767074": "{{name}} 已不再在 Deriv P2P", diff --git a/packages/translations/crowdin/messages.json b/packages/translations/crowdin/messages.json index 78f91b59a066..d26b23fb7dd4 100644 --- a/packages/translations/crowdin/messages.json +++ b/packages/translations/crowdin/messages.json @@ -1 +1 @@ -{"0":"","1485191":"1:1000","2082741":"additional document number","2091451":"Deriv Bot - your automated trading partner","3125515":"Your Deriv MT5 password is for logging in to your Deriv MT5 accounts on the desktop, web, and mobile apps.","3215342":"Last 30 days","3420069":"To avoid delays, enter your <0>name and <0>date of birth exactly as they appear on your identity document.","4547840":"<0>Verify your account to transfer funds. <1>Verify now","5149403":"Learn more about trade types","7100308":"Hour must be between 0 and 23.","9488203":"Deriv Bot is a web-based strategy builder for trading digital options. It’s a platform where you can build your own automated trading bot using drag-and-drop 'blocks'.","9757544":"Please submit your proof of address","11533428":"Trade bigger positions with less capital on a wide range of global markets. <0>Learn more","11539750":"set {{ variable }} to Relative Strength Index Array {{ dummy }}","11706633":"Loss threshold: The bot will stop trading if your total loss exceeds this amount.","11872052":"Yes, I'll come back later","14365404":"Request failed for: {{ message_type }}, retrying in {{ delay }}s","15377251":"Profit amount: {{profit}}","17843034":"Check proof of identity document verification status","19424289":"Username","19552684":"USD Basket","21035405":"Please tell us why you’re leaving. (Select up to {{ allowed_reasons }} reasons.)","24900606":"Gold Basket","25854018":"This block displays messages in the developer’s console with an input that can be either a string of text, a number, boolean, or an array of data.","26566655":"Summary","26596220":"Finance","27582393":"Example :","27582767":"{{amount}} {{currency}}","27731356":"Your account is temporarily disabled. Please contact us via <0>live chat to enable deposits and withdrawals again.","27830635":"Deriv (V) Ltd","28581045":"Add a real MT5 account","33433576":"Please use an e-wallet to withdraw your funds.","35089987":"Upload the front and back of your driving licence.","41737927":"Thank you","44877997":"Residence permit","45453595":"Binary Coin","45821474":"Proof of income","46523711":"Your proof of identity is verified","49404821":"If you buy a \"<0>{{trade_type}}\" option, you receive a payout at expiry if the final price is {{payout_status}} the strike price. Otherwise, your “<0>{{trade_type}}” option will expire worthless.","53801223":"Hong Kong 50","53964766":"5. Hit Save to download your bot. You can choose to download your bot to your device or your Google Drive.","54185751":"Less than $100,000","55340304":"Keep your current contract?","55916349":"All","57362642":"Closed","58254854":"Scopes","59169515":"If you select \"Asian Rise\", you will win the payout if the last tick is higher than the average of the ticks.","59341501":"Unrecognized file format","59662816":"Stated limits are subject to change without prior notice.","62748351":"List Length","63869411":"This block tests a given number according to the selection","64402604":"Check transfer information","65185694":"Fiat onramp","65982042":"Total","66519591":"Investor password","66610627":"We were unable to verify your selfie because it’s not clear. Please take a clearer photo and try again. Ensure that there’s enough light where you are and that your entire face is in the frame.","67923436":"No, Deriv Bot will stop running when your web browser is closed.","68885999":"Repeats the previous trade when an error is encountered.","69005593":"The example below restarts trading after 30 or more seconds after 1 minute candle was started.","71016232":"OMG/USD","71232823":"Manage funds","71445658":"Open","71563326":"A fast and secure fiat-to-crypto payment service. Deposit cryptocurrencies from anywhere in the world using your credit/debit cards and bank transfers.","71853457":"$100,001 - $500,000","72500774":"Please fill in Tax residence.","73086872":"You have self-excluded from trading","73326375":"The low is the lowest point ever reached by the market during the contract period.","74963864":"Under","76635112":"To proceed, resubmit these documents","76916358":"You have reached the withdrawal limit.<0/>Please upload your proof of identity and address to lift the limit to continue your withdrawal.","76925355":"Check your bot’s performance","77982950":"Vanilla options allow you to predict an upward (bullish) or downward (bearish) direction of the underlying asset by purchasing a \"Call\" or a \"Put\".","81009535":"Potential profit/loss","81091424":"To complete the upgrade, please log out and log in again to add more accounts and make transactions with your Wallets.","81450871":"We couldn’t find that page","82839270":"Upload the page of your passport that contains your photo.","83202647":"Collapse Block","84402478":"Where do I find the blocks I need?","84924586":"To trade options and multipliers, get a Deriv Apps account first.","85343079":"Financial assessment","85359122":"40 or more","85389154":"Steps required to continue verification on your mobile","90266322":"2. Start a chat with your newly created Telegram bot and make sure to send it some messages before proceeding to the next step. (e.g. Hello Bot!)","91993812":"The Martingale Strategy is a classic trading technique that has been used for more than a hundred years, popularised by the French mathematician Paul Pierre Levy in the 18th century.","93154671":"1. Hit Reset at the bottom of stats panel.","96381225":"ID verification failed","98473502":"We’re not obliged to conduct an appropriateness test, nor provide you with any risk warnings.","98972777":"random item","100239694":"Upload front of card from your computer","102226908":"Field cannot be empty","105871033":"Your age in the document you provided appears to be below 18 years. We’re only allowed to offer our services to clients above 18 years old, so we’ll need to close your account. If you have a balance in your account, contact us via live chat and we’ll help to withdraw your funds before your account is closed.","107537692":"These limits apply to your options trades only. For example, <0>maximum total loss refers to the losses on all your trades on options trading platforms.","108916570":"Duration: {{duration}} days","109073671":"Please use an e-wallet that you have used for deposits previously. Ensure the e-wallet supports withdrawal. See the list of e-wallets that support withdrawals <0>here.","111215238":"Move away from direct light","111718006":"End date","111931529":"Max. total stake over 7 days","113378532":"ETH/USD","115032488":"Buy price and P/L","116005488":"Indicators","117056711":"We’re updating our site","117318539":"Password should have lower and uppercase English letters with numbers.","117366356":"Turbo options allow you to predict the direction of the underlying asset’s movements.","118727646":"{{new_account_title}}","119261701":"Prediction:","119446122":"Contract type is not selected","120340777":"Complete your personal details","122617359":"View tutorial","122993457":"This is to confirm that it's you making the withdrawal request.","123454801":"{{withdraw_amount}} {{currency_symbol}}","124723298":"Upload a proof of address to verify your address","125354367":"An example of D’Alembert's Grind strategy","125443840":"6. Restart last trade on error","125842960":"{{name}} is required.","127307725":"A politically exposed person (PEP) is someone appointed with a prominent public position. Close associates and family members of a PEP are also considered to be PEPs.","129005644":"The idea is that successful trades may recoup previous losses. However, it is crucial to exercise caution as the risk can quickly increase with this strategy. With Deriv Bot, you can minimise your risk by setting a maximum stake. This is an optional risk management feature. Let’s say a maximum stake of 3 USD. If your stake for the next trade is set to exceed 3 USD, your stake will reset to the initial stake of 1 USD. If you didn't set a maximum stake, it would have increased beyond 3 USD.","129137937":"You decide how much and how long to trade. You can take a break from trading whenever you want. This break can be from 6 weeks to 5 years. When it’s over, you can extend it or resume trading after a 24-hour cooling-off period. If you don’t want to set a specific limit, leave the field empty.","129729742":"Tax Identification Number*","130567238":"THEN","132596476":"In providing our services to you, we are required to ask you for some information to assess if a given product or service is appropriate for you and whether you have the experience and knowledge to understand the risks involved.<0/><0/>","132689841":"Trade on web terminal","133523018":"Please go to the Deposit page to get an address.","133536621":"and","133655768":"Note: If you wish to learn more about the Bot Builder, you can proceed to the <0>Tutorials tab.","136790425":"Try changing or removing filters to view available positions.","137589354":"To assess your trading experience and if our products are suitable for you. Please provide accurate and complete answers, as they may affect the outcome of this assessment.","138055021":"Synthetic indices","139454343":"Confirm my limits","141265840":"Funds transfer information","141626595":"Make sure your device has a working camera","142050447":"set {{ variable }} to create text with","142390699":"Connected to your mobile","143970826":"Payment problems?","145511192":"s is the initial stake.","145633981":"Unavailable as your documents are still under review","145736466":"Take a selfie","150156106":"Save changes","150486954":"Token name","151279367":"2. Set the Purchase conditions. In this example, your bot will purchase a Rise contract when it starts and after a contract closes.","151646545":"Unable to read file {{name}}","152415091":"Math","152524253":"Trade the world’s markets with our popular user-friendly platform.","157593038":"random integer from {{ start_number }} to {{ end_number }}","157871994":"Link expired","158355408":"Some services may be temporarily unavailable.","160746023":"Tether as an Omni token (USDT) is a version of Tether that is hosted on the Omni layer on the Bitcoin blockchain.","160863687":"Camera not detected","164112826":"This block allows you to load blocks from a URL if you have them stored on a remote server, and they will be loaded only when your bot runs.","164564432":"Deposits are temporarily unavailable due to system maintenance. You can make your deposits when the maintenance is complete.","165294347":"Please set your country of residence in your account settings to access the cashier.","165312615":"Continue on phone","165682516":"If you don’t mind sharing, which other trading platforms do you use?","167094229":"• Current stake: Use this variable to store the stake amount. You can assign any amount you want, but it must be a positive number.","170185684":"Ignore","170244199":"I’m closing my account for other reasons.","171307423":"Recovery","171579918":"Go to Self-exclusion","171638706":"Variables","173991459":"We’re sending your request to the blockchain.","174793462":"Strike","176078831":"Added","176319758":"Max. total stake over 30 days","176654019":"$100,000 - $250,000","177099483":"Your address verification is pending, and we’ve placed some restrictions on your account. The restrictions will be lifted once your address is verified.","179083332":"Date","181107754":"Your new <0>{{platform}} {{eligible_account_to_migrate}} account(s) are ready for trading.","181346014":"Notes ","181881956":"Contract Type: {{ contract_type }}","182630355":"Thank you for submitting your information.","184024288":"lower case","189705706":"This block uses the variable \"i\" to control the iterations. With each iteration, the value of \"i\" is determined by the items in a given list.","189759358":"Creates a list by repeating a given item","190834737":"Guide","191372501":"Accumulation of Income/Savings","192436105":"No need for symbols, digits, or uppercase letters","192573933":"Verification complete","195972178":"Get character","196810983":"If the duration is more than 24 hours, the Cut-off time and Expiry date will apply instead.","196998347":"We hold customer funds in bank accounts separate from our operational accounts which would not, in the event of insolvency, form part of the company's assets. This meets the <0>Gambling Commission's requirements for the segregation of customer funds at the level: <1>medium protection.","197190401":"Expiry date","201091938":"30 days","203179929":"<0>You can open this account once your submitted documents have been verified.","203271702":"Try again","203297887":"The Quick Strategy you just created will be loaded to the workspace.","203924654":"Hit the <0>Start button to begin and follow the tutorial.","204797764":"Transfer to client","204863103":"Exit time","206010672":"Delete {{ delete_count }} Blocks","207521645":"Reset Time","207824122":"Please withdraw your funds from the following Deriv account(s):","209533725":"You’ve transferred {{amount}} {{currency}}","210385770":"If you have an active account, please log in to continue. Otherwise, please sign up.","210872733":"The verification status is not available, provider says: Malformed JSON.","211224838":"Investment","211461880":"Common names and surnames are easy to guess","211487193":"Document number (e.g. identity card, passport, driver's license)","211847965":"Your <0>personal details are incomplete. Please go to your account settings and complete your personal details to enable withdrawals.","216650710":"You are using a demo account","217377529":"5. If the next trades are profitable, the stake for the following trade will be reduced by 2 USD. This can be shown above where the stake of 3 USD is reduced to 1 USD. See A3.","217403651":"St. Vincent & Grenadines","217504255":"Financial assessment submitted successfully","218441288":"Identity card number","220014242":"Upload a selfie from your computer","220186645":"Text Is empty","221261209":"A Deriv account will allow you to fund (and withdraw from) your CFDs account(s).","223120514":"In this example, each point of the SMA line is an arithmetic average of close prices for the last 50 days.","223607908":"Last digit stats for latest 1000 ticks for {{underlying_name}}","224650827":"IOT/USD","225887649":"This block is mandatory. It's added to your strategy by default when you create new strategy. You can not add more than one copy of this block to the canvas.","227591929":"To timestamp {{ input_datetime }} {{ dummy }}","227903202":"We’ll charge a 1% transfer fee for transfers in different currencies between your Deriv fiat and {{platform_name_mt5}} accounts.","228521812":"Tests whether a string of text is empty. Returns a boolean value (true or false).","233500222":"- High: the highest price","235244966":"Return to Trader's Hub","235583807":"SMA is a frequently used indicator in technical analysis. It calculates the average market price over a specified period, and is usually used to identify market trend direction: up or down. For example, if the SMA is moving upwards, it means the market trend is up. ","235994721":"Forex (standard/exotic) and cryptocurrencies","236642001":"Journal","238496287":"Leverage trading is high-risk, so it's a good idea to use risk management features such as stop loss. Stop loss allows you to","241546739":"Please choose the correct Deriv company and server name when logging in, as shown on Trader’s Hub.","243537306":"1. Under the Blocks menu, go to Utility > Variables.","243614144":"This is only available for existing clients.","245005091":"lower","245187862":"The DRC will make a <0>decision on the complaint (please note that the DRC mentions no timeframe for announcing its decision).","245812353":"if {{ condition }} return {{ value }}","246428134":"Step-by-step guides","248153700":"Reset your password","248565468":"Check your {{ identifier_title }} account email and click the link in the email to proceed.","248909149":"Send a secure link to your phone","251134918":"Account Information","251445658":"Dark theme","251882697":"Thank you! Your response has been recorded into our system.<0/><0/>Please click ‘OK’ to continue.","254912581":"This block is similar to EMA, except that it gives you the entire EMA line based on the input list and the given period.","256031314":"Cash Business","256602726":"If you close your account:","258448370":"MT5","258912192":"Trading assessment","260069181":"An error occured while trying to load the URL","260086036":"Place blocks here to perform tasks once when your bot starts running.","260361841":"Tax Identification Number can't be longer than 25 characters.","260393332":"You cannot make further deposits as your documents are still under review. We will notify you by email within 3 days once your verification is approved.","261074187":"4. Once the blocks are loaded onto the workspace, tweak the parameters if you want, or hit Run to start trading.","261250441":"Drag the <0>Trade again block and add it into the <0>do part of the <0>Repeat until block.","262095250":"If you select <0>\"Put\", you’ll earn a payout if the final price is below the strike price at expiry. Otherwise, you won’t receive a payout.","264976398":"3. 'Error' displays a message in red to highlight something that needs to be resolved immediately.","265644304":"Trade types","266455247":"Standard Vanuatu","267992618":"The platforms lack key features or functionality.","268940240":"Your balance ({{format_balance}} {{currency}}) is less than the current minimum withdrawal allowed ({{format_min_withdraw_amount}} {{currency}}). Please top up your account to continue with your withdrawal.","269322978":"Deposit with your local currency via peer-to-peer exchange with fellow traders in your country.","269607721":"Upload","270339490":"If you select \"Over\", you will win the payout if the last digit of the last tick is greater than your prediction.","270396691":"<0>Your Wallets are ready!","270610771":"In this example, the open price of a candle is assigned to the variable \"candle_open_price\".","270712176":"descending","270780527":"You've reached the limit for uploading your documents.","271637055":"Download is unavailable while your bot is running.","272179372":"This block is commonly used to adjust the parameters of your next trade and to implement stop loss/take profit logic.","273350342":"Copy and paste the token into the app.","273728315":"Should not be 0 or empty","274268819":"Volatility 100 Index","275116637":"Deriv X","276770377":"New MT5 account(s) under the {{to_account}} jurisdiction will be created for new trades.","277469417":"Exclude time cannot be for more than five years.","278684544":"get sub-list from # from end","280021988":"Use these shortcuts","281110034":"Effective trading with the D'Alembert system requires careful consideration of its stake progression and risk management. Traders can automate this approach using Deriv Bot, setting profit and loss thresholds to ensure balanced and controlled trading. However, it is crucial for traders to assess their risk appetite, test strategies on a demo account, and align with their own trading style before transitioning to real money trading. This optimization process helps strike a balance between potential gains and losses while managing risk prudently.","282319001":"Check your image","282564053":"Next, we'll need your proof of address.","283830551":"Your address doesn’t match your profile","284527272":"antimode","284772879":"Contract","284809500":"Financial Demo","287934290":"Are you sure you want to cancel this transaction?","289731075":"Get Started","291344459":"The table illustrates this principle in the second session. After a trade resulting in loss in round 4 followed by a successful trade in round 5, the stake will increase to 2 USD for round 6. This is in line with the strategy's rule of raising the stake only after a loss is followed by a successful trade.","291744889":"<0>1. Trade parameters:<0>","291817757":"Go to our Deriv community and learn about APIs, API tokens, ways to use Deriv APIs, and more.","292526130":"Tick and candle analysis","292589175":"This will display the SMA for the specified period, using a candle list.","292887559":"Transfer to {{selected_value}} is not allowed, Please choose another account from dropdown","293250845":"Are you sure you want to continue?","294043810":"I confirm that my tax information is accurate and complete.","294305803":"Manage account settings","294335229":"Sell at market price","296017162":"Back to Bot","301441673":"Select your citizenship/nationality as it appears on your passport or other government-issued ID.","304309961":"We're reviewing your withdrawal request. You may still cancel this transaction if you wish. Once we start processing, you won't be able to cancel.","304506198":"Total balance:","310234308":"Close all your positions.","312142140":"Save new limits?","312300092":"Trims the spaces within a given string or text.","313741895":"This block returns “True” if the last candle is black. It can be placed anywhere on the canvas except within the Trade parameters root block.","315306603":"You have an account that do not have currency assigned. Please choose a currency to trade with this account.","316694303":"Is candle black?","318865860":"close","318984807":"This block repeats the instructions contained within for a specific number of times.","321457615":"Oops, something went wrong!","323179846":"The time interval for each candle can be set from one minute to one day.","323209316":"Select a Deriv Bot Strategy","323360883":"Baskets","325662004":"Expand Block","325763347":"result","326770937":"Withdraw {{currency}} ({{currency_symbol}}) to your wallet","327534692":"Duration value is not allowed. To run the bot, please enter {{min}}.","328539132":"Repeats inside instructions specified number of times","329353047":"Malta Financial Services Authority (MFSA) (licence no. IS/70156)","329404045":"<0>Switch to your real account<1> to create a {{platform}} {{account_title}} account.","330384187":"Enable trading with your first transfer.","333456603":"Withdrawal limits","333807745":"Click on the block you want to remove and press Delete on your keyboard.","334942497":"Buy time","337023006":"Start time cannot be in the past.","339449279":"Remaining time","339610914":"Spread Up/Spread Down","339879944":"GBP/USD","340807218":"Description not found.","342181776":"Cancel transaction","343873723":"This block displays a message. You can specify the color of the message and choose from 6 different sound options.","344418897":"These trading limits and self-exclusion help you control the amount of money and time you spend on {{brand_website_name}} and exercise <0>responsible trading.","345320063":"Invalid timestamp","345818851":"Sorry, an internal error occurred. Hit the above checkbox to try again.","346843343":"CFDs on financial and derived instruments with copy trading.","347029309":"Forex: standard/micro","347039138":"Iterate (2)","348951052":"Your cashier is currently locked","349047911":"Over","349110642":"<0>{{payment_agent}}<1>'s contact details","350602311":"Stats show the history of consecutive tick counts, i.e. the number of ticks the price remained within range continuously.","351744408":"Tests if a given text string is empty","352363702":"You may see links to websites with a fake Deriv login page where you’ll get scammed for your money.","353731490":"Job done","354945172":"Submit document","357477280":"No face found","357672069":"Income verification failed","359053005":"Please enter a token name.","359649435":"Given candle list is not valid","359809970":"This block gives you the selected candle value from a list of candles within the selected time interval. You can choose from open price, close price, high price, low price, and open time.","360224937":"Logic","360773403":"Bot Builder","363576009":"- High price: the highest price","363738790":"Browser","363990763":"Sell price:","367801124":"Total assets in your Deriv accounts.","368160866":"in list","369035361":"<0>•Your account number","371151609":"Last used","371710104":"This scope will allow third-party apps to buy and sell contracts for you, renew your expired purchases, and top up your demo accounts.","372291654":"Exclude time must be after today.","372645383":"True if the market direction matches the selection","372805409":"You should enter 9-35 characters.","373021397":"random","373306660":"{{label}} is required.","373495360":"This block returns the entire SMA line, containing a list of all values for a given period.","374537470":"No results for \"{{text}}\"","375714803":"Deal Cancellation Error","377231893":"Deriv Bot is unavailable in the EU","377538732":"Key parameters","379523479":"To avoid loss of funds, do not share tokens with the Admin scope with unauthorised parties.","380606668":"tick","380694312":"Maximum consecutive trades","381972464":"Your document has expired.","384303768":"This block returns \"True\" if the last candle is black. It can be placed anywhere on the canvas except within the Trade parameters root block.","384707870":"CRS confirmation","386278304":"Install the {{platform_name_trader}} web app","386502387":"Bot is not running","389923099":"Zoom in","390890891":"Last quarter","391685252":"Revoke","391915203":"Hedging","392582370":"Fall Equals","393789743":"Letters, spaces, periods, hyphens, apostrophes only.","396418990":"Offline","398816980":"Launch {{platform_name_trader}} in seconds the next time you want to trade.","401339495":"Verify address","401345454":"Head to the Tutorials tab to do so.","403456289":"The formula for SMA is:","406359555":"Contract details","406497323":"Sell your active contract if needed (optional)","411482865":"Add {{deriv_account}} account","412433839":"I agree to the <0>terms and conditions.","413594348":"Only letters, numbers, space, hyphen, period, and forward slash are allowed.","417864079":"You’ll not be able to change currency once you have made a deposit.","419485005":"Spot","419496000":"Your contract is closed automatically when your profit is more than or equals to this amount. This block can only be used with the multipliers trade type.","420072489":"CFD trading frequency","422055502":"From","423682863":"When your loss reaches or exceeds the set amount, your trade will be closed automatically.","424101652":"Quick strategy guides >","424272085":"We take your financial well-being seriously and want to ensure you are fully aware of the risks before trading.<0/><0/>","424897068":"Do you understand that you could potentially lose 100% of the money you use to trade?","426031496":"Stop","427134581":"Try using another file type.","427617266":"Bitcoin","429970999":"To avoid delays, enter your <0>name exactly as it appears on your {{document_name}}.","431267979":"Here’s a quick guide on how to use Deriv Bot on the go.","432273174":"1:100","432508385":"Take Profit: {{ currency }} {{ take_profit }}","432519573":"Document uploaded","433348384":"Real accounts are not available to politically exposed persons (PEPs).","433616983":"2. Investigation phase","434548438":"Highlight function definition","434896834":"Custom functions","436364528":"Your account will be opened with {{legal_entity_name}}, and will be subject to the laws of Saint Vincent and the Grenadines.","436534334":"<0>We've sent you an email.","437138731":"Create a new {{platform}} password","437453244":"Choose your preferred cryptocurrency","437485293":"File type not supported","437904704":"Maximum open positions","438067535":"Over $500,000","439398769":"This strategy is currently not compatible with Deriv Bot.","442281706":"You’ve just deleted a block.","442520703":"$250,001 - $500,000","443559872":"Financial SVG","444484637":"Logic negation","445419365":"1 - 2 years","447548846":"SSNIT number","450983288":"Your deposit is unsuccessful due to an error on the blockchain. Please contact your crypto wallet service provider for more info.","451852761":"Continue on your phone","452054360":"Similar to RSI, this block gives you a list of values for each entry in the input list.","452949978":"The 1-3-2-6 strategy is designed to capitalise on consecutive successful trades while minimising losses during losing streaks. The rationale behind this strategy lies in statistical probabilities, with adjustments to stake sizes based on the perceived likelihood of success. There is a higher likelihood of success in the second trade after one successful trade. Hence the stake adjusts to 3 in the second trade. In the third trade, the stake adjusts to 2 units due to a lower probability of a successful trade. If the third trade is also successful, the strategy then allocates all the previous gains (a total of 6 units of initial stake) into the fourth trade with the aim of doubling the potential profits. If the fourth trade results in a positive outcome, the strategy helps achieve a total gain of 12 units. However, it is crucial to exercise caution, as the risk can escalate quickly with this strategy, and any loss in the fourth trade forfeits all previous gains.","453175851":"Your MT5 Financial STP account will be opened through {{legal_entity_name}}. All trading in this account is subject to the regulations and guidelines of the Labuan Financial Service Authority (LFSA). None of your other accounts, including your Deriv account, is subject to the regulations and guidelines of the Labuan Financial Service Authority (LFSA).","454196938":"Regulation:","456746157":"Grant access to your camera from your browser settings","457020083":"It’ll take longer to verify you if we can’t read it","457494524":"1. From the block library, enter a name for the new variable and click Create.","459612953":"Select account","459817765":"Pending","460070238":"Congratulations","460975214":"Complete your Appropriateness Test","461795838":"Please contact us via live chat to unlock it.","462079779":"Resale not offered","463361726":"Select an item","465993338":"Oscar's Grind","466424460":"Oscar’s Grind","466837068":"Yes, increase my limits","467839232":"I trade forex CFDs and other complex financial instruments regularly on other platforms.","471402292":"Your bot uses a single trade type for each run.","473154195":"Settings","474306498":"We’re sorry to see you leave. Your account is now closed.","475492878":"Try Synthetic Indices","476023405":"Didn't receive the email?","477557241":"Remote blocks to load must be a collection.","478280278":"This block displays a dialog box that uses a customised message to prompt for an input. The input can be either a string of text or a number and can be assigned to a variable. When the dialog box is displayed, your strategy is paused and will only resume after you enter a response and click \"OK\".","478827886":"We calculate this based on the barrier you’ve selected.","479420576":"Tertiary","480356486":"*Boom 300 and Crash 300 Index","481276888":"Goes Outside","483279638":"Assessment Completed<0/><0/>","483591040":"Delete all {{ delete_count }} blocks?","485379166":"View transactions","487239607":"Converts a given True or False to the opposite value","488150742":"Resend email","489768502":"Change investor password","490053735":"If you select this feature, your trade will be closed automatically at the nearest available asset price when your loss reaches or exceeds the stop loss amount. Your loss may be more than the amount you entered depending on the market price at closing.","491603904":"Unsupported browser","492198410":"Make sure everything is clear","492566838":"Taxpayer identification number","497518317":"Function that returns a value","498562439":"or","499522484":"1. for \"string\": 1325.68 USD","500855527":"Chief Executives, Senior Officials and Legislators","500920471":"This block performs arithmetic operations between two numbers.","501401157":"You are only allowed to make deposits","501537611":"*Maximum number of open positions","502007051":"Demo Swap-Free SVG","502041595":"This block gives you a specific candle from within the selected time interval.","505793554":"last letter","508390614":"Demo Financial STP","511679687":"Accumulators allow you to express a view on the range of movement of an index and grow your stake exponentially at a fixed <0>growth rate.","514031715":"list {{ input_list }} is empty","514776243":"Your {{account_type}} password has been changed.","514948272":"Copy link","517631043":"We’ve sent your e-book. Check your email to download it.","517833647":"Volatility 50 (1s) Index","518955798":"7. Run Once at Start","519205761":"You can no longer open new positions with this account.","520136698":"Boom 500 Index","520458365":"Last used: ","521872670":"item","522703281":"divisible by","523123321":"- 10 to the power of a given number","524459540":"How do I create variables?","527329988":"This is a top-100 common password","529056539":"Options","531114081":"3. Contract Type","531675669":"Euro","532724086":"Employment contract","533403953":"Your existing <0>{{platform}} {{type}} {{from_account}} account(s) will remain accessible.","535041346":"Max. total stake per day","536277802":"TP & SL history","537788407":"Other CFDs Platform","538017420":"0.5 pips","538042340":"Principle 2: The stake only increases when a loss trade is followed by a successful trade","538228086":"Close-Low","541650045":"Manage {{platform}} password","541700024":"First, enter your driving licence number and the expiry date.","542038694":"Only letters, numbers, space, underscore, and hyphen are allowed for {{label}}.","542305026":"You must also submit a proof of identity.","543413346":"You have no open positions for this asset. To view other open positions, click Go to Reports","545323805":"Filter by trade types","547029855":"If you select this feature, you can cancel your trade within a chosen time frame if the asset price moves against your favour. You will get your stake back without profit/loss. We charge a small fee for this. Take profit and stop loss are disabled when deal cancellation is active.","549479175":"Deriv Multipliers","549799607":"Go to LiveChat","551569133":"Learn more about trading limits","551958626":"Excellent","554135844":"Edit","554410233":"This is a top-10 common password","555351771":"After defining trade parameters and trade options, you may want to instruct your bot to purchase contracts when specific conditions are met. To do that you can use conditional blocks and indicators blocks to help your bot to make decisions.","555881991":"National Identity Number Slip","558866810":"Run your bot","559224320":"Our classic “drag-and-drop” tool for creating trading bots, featuring pop-up trading charts, for advanced users.","560759471":"You'll see these details once the contract starts.","561982839":"Change your currency","562599414":"This block returns the purchase price for the selected trade type. This block can be used only in the \"Purchase conditions\" root block.","563034502":"We shall try to resolve your complaint within 15 business days. We will inform you of the outcome together with an explanation of our position and propose any remedial measures we intend to take.","563166122":"We shall acknowledge receiving your complaint, review it carefully, and keep you updated on the handling process. We might request further information or clarifications to facilitate the resolution of the complaint.","563652273":"Go to block","565410797":"The below image illustrates how Simple Moving Average Array block works:","566274201":"1. Market","567019968":"A variable is among the most important and powerful components in creating a bot. It is a way to store information, either as text or numbers. The information stored as a variable can be used and changed according to the given instructions. Variables can be given any name, but usually they are given useful, symbolic names so that it is easier to call them during the execution of instructions.","567163880":"Create a {{platform}} password","567755787":"Tax Identification Number is required.","569057236":"In which country was your document issued?","571921777":"Funds protection level","572576218":"Languages","573173477":"Is candle {{ input_candle }} black?","575668969":"3. For trades that result in a profit, the stake for the next trade will be increased by 2 USD. Deriv Bot will continue to add 2 USD for every successful trade. See A1.","575702000":"Remember, selfies, pictures of houses, or non-related images will be rejected.","575968081":"Account created. Select payment method for deposit.","576355707":"Select your country and citizenship:","577215477":"count with {{ variable }} from {{ start_number }} to {{ end_number }} by {{ step_size }}","577779861":"Withdrawal","577883523":"4. Awards and orders","578640761":"Call Spread","579529868":"Show all details — including the bottom 2 lines","580431127":"Restart buy/sell on error (disable for better performance): {{ checkbox }}","580665362":"Stays In/Goes Out","580774080":"insert at","581168980":"Legal","582945649":"2 minutes","584028307":"Allow equals","587577425":"Secure my account","587856857":"Want to know more about APIs?","592087722":"Employment status is required.","592964176":"Join over 2.5 million traders","593459109":"Try a different currency","595080994":"Example: CR123456789","597089493":"Here is where you can decide to sell your contract before it expires. Only one copy of this block is allowed.","597481571":"DISCLAIMER","597707115":"Tell us about your trading experience.","599469202":"{{secondPast}}s ago","602278674":"Verify identity","603849445":"Strike price","603849863":"Look for the <0>Repeat While/Until, and click the + icon to add the block to the workspace area.","603899222":"Distance to current spot","606240547":"- Natural log","606877840":"Back to today","607807243":"Get candle","609519227":"This is the email address associated with your Deriv account.","609650241":"Infinite loop detected","610537973":"Any information you provide is confidential and will be used for verification purposes only.","611020126":"View address on Blockchain","613418320":"<0>Setup unsuccessful","613877038":"Chart","615156635":"Your selfie does not match your document.","617345387":"If you select \"Reset-Up”, you win the payout if the exit spot is strictly higher than either the entry spot or the spot at reset time.","617910072":"Use your Deriv account email and password to login into the {{ platform }} platform.","618520466":"Example of a cut-off document","619268911":"<0>a.The Financial Commission will investigate the validity of the complaint within 5 business days.","619407328":"Are you sure you want to unlink from {{identifier_title}}?","621829484":"{{days_passed}}d ago","623192233":"Please complete the <0>Appropriateness Test to access your cashier.","623542160":"Exponential Moving Average Array (EMAA)","625571750":"Entry spot:","626175020":"Standard Deviation Up Multiplier {{ input_number }}","626809456":"Resubmit","627292452":"<0>Your Proof of Identity or Proof of Address did not meet our requirements. Please check your email for further instructions.","627814558":"This block returns a value when a condition is true. Use this block within either of the function blocks above.","628193133":"Account ID","629003252":"If your current password doesn't match these requirements, you'll need to create a new one in the next step.","629145209":"In case if the \"AND\" operation is selected, the block returns \"True\" only if both given values are \"True\"","629395043":"All growth rates","632398049":"This block assigns a null value to an item or statement.","632897893":"If any of the above applies to you, select <0>Yes. Otherwise, select <0>No.","634219491":"You have not provided your tax identification number. This information is necessary for legal and regulatory requirements. Please go to <0>Personal details in your account settings, and fill in your latest tax identification number.","634274250":"How long each trade takes to expire.","636219628":"<0>c.If no settlement opportunity can be found, the complaint will proceed to the determination phase to be handled by the DRC.","636427296":"Need help with tax info? Let us know via <0>live chat.","636579615":"Number of unit(s) to be added to the next trade after a losing trade. One unit is equivalent to the amount of initial stake.","639382772":"Please upload supported file type.","640249298":"Normal","640596349":"You have yet to receive any notifications","640730141":"Refresh this page to restart the identity verification process","641420532":"We've sent you an email","642210189":"Please check your email for the verification link to complete the process.","642393128":"Enter amount","642546661":"Upload back of license from your computer","644150241":"The number of contracts you have won since you last cleared your stats.","645902266":"EUR/NZD","646773081":"Profit threshold: The bot will stop trading if your total profit exceeds this amount.","647039329":"Proof of address required","647745382":"Input List {{ input_list }}","649317411":"On the basis of the information provided in relation to your knowledge and experience, we consider that the investments available via this website are not appropriate for you.<0/><1/>","649923867":"Adds a sign to a number to create a barrier offset. (deprecated)","650836587":"This article explores the Martingale strategy integrated into Deriv Bot, a versatile trading bot designed to trade assets such as forex, commodities, and derived indices. We will delve into the strategy's core parameters, its application, and provide essential takeaways for traders looking to use the bot effectively.","651284052":"Low Tick","651684094":"Notify","652298946":"Date of birth","654422099":"CRS confirmation is required.","654507872":"True-False","654924603":"Martingale","655937299":"We’ll update your limits. Click <0>Accept to acknowledge that you are fully responsible for your actions, and we are not liable for any addiction or loss.","656893085":"Timestamp","657325150":"This block is used to define trade options within the Trade parameters root block. Some options are only applicable for certain trade types. Parameters such as duration and stake are common among most trade types. Prediction is used for trade types such as Digits, while barrier offsets are for trade types that involve barriers such as Touch/No Touch, Ends In/Out, etc.","659482342":"Please remember that it is your responsibility to keep your answers accurate and up to date. You can update your personal details at any time in your account settings.","660481941":"To access your mobile apps and other third-party apps, you'll first need to generate an API token.","660991534":"Finish","661759508":"On the basis of the information provided in relation to your knowledge and experience, we consider that the investments available via this website are not appropriate for you.<0/><0/>","662953503":"Your contract will be closed when the <0>stop out level is reached.","664779910":"3. If the first trade results in profit, the stake for the following trade will not reduce but remain at the initial stake. The strategy minimally trades at the initial stake of 1 USD. See A1.","665089217":"Please submit your <0>proof of identity to authenticate your account and access your Cashier.","665777772":"XLM/USD","665872465":"In the example below, the opening price is selected, which is then assigned to a variable called \"op\".","666724936":"Please enter a valid ID number.","669494711":"1.4 pips","671630762":"We accept only these types of documents as proof of your address. The document must be recent (issued within last {{expiry_in_months}} months) and include your name and address:","672008428":"ZEC/USD","673915530":"Jurisdiction and choice of law","674973192":"Use this password to log in to your Deriv MT5 accounts on the desktop, web, and mobile apps.","676159329":"Could not switch to default account.","676675313":"Authy","677918431":"Market: {{ input_market }} > {{ input_submarket }} > {{ input_symbol }}","679199080":"Why passkeys?","680334348":"This block was required to correctly convert your old strategy.","681108680":"Additional information required for {{platform}} account(s)","681808253":"Previous spot price","681926004":"Example of a blurry document","682056402":"Standard Deviation Down Multiplier {{ input_number }}","686387939":"How do I clear my transaction log?","687193018":"Slippage risk","687212287":"Amount is a required field.","688510664":"You've {{two_fa_status}} 2FA on this device. You'll be logged out of your account on other devices (if any). Use your password and a 2FA code to log back in.","689137215":"Purchase price","691956534":"<0>You have added a {{currency}} account.<0> Make a deposit now to start trading.","692354762":"Please enter your {{document_name}}. {{example_format}}","693396140":"Deal cancellation (expired)","693933036":"Exploring the Oscar’s Grind strategy in Deriv Bot","694035561":"Trade options multipliers","696157141":"Low spot","696735942":"Enter your National Identification Number (NIN)","696870196":"- Open time: the opening time stamp","697630556":"This market is presently closed.","698037001":"National Identity Number","699159918":"1. Filing complaints","699646180":"A minimum deposit value of <0>{{minimum_deposit}} {{currency}} is required. Otherwise, the funds will be lost and cannot be recovered.","700259824":"Account currency","701034660":"We are still processing your withdrawal request.<0 />Please wait for the transaction to be completed before deactivating your account.","701462190":"Entry spot","701647434":"Search for string","702451070":"National ID (No Photo)","702561961":"Change theme","705262734":"Your Wallets are ready","705299518":"Next, upload the page of your passport that contains your photo.","705697927":"2. Set your preferred unit. In this example, it is 2 units or 2 USD.","705821926":"Learn about this trade type","706727320":"Binary options trading frequency","706755289":"This block performs trigonometric functions.","706960383":"We’ll offer to buy your contract at this price should you choose to sell it before its expiry. This is based on several factors, such as the current spot price, duration, etc. However, we won’t offer a contract value if the remaining duration is below 60 seconds.","707189572":"Your email address has changed.<0/>Now, log in with your new email address.","707662672":"{{unblock_date}} at {{unblock_time}}","708055868":"Driving licence number","710123510":"repeat {{ while_or_until }} {{ boolean }}","711999057":"Successful","712101776":"Take a photo of your passport photo page","712635681":"This block gives you the selected candle value from a list of candles. You can choose from open price, close price, high price, low price, and open time.","713054648":"Sending","714080194":"Submit proof","714746816":"MetaTrader 5 Windows app","715841616":"Please enter a valid phone number (e.g. +15417541234).","716428965":"(Closed)","718504300":"Postal/ZIP code","718509613":"Maximum duration: {{ value }}","720293140":"Log out","720519019":"Reset my password","721011817":"- Raise the first number to the power of the second number","723045653":"You'll log in to your Deriv account with this email address.","723961296":"Manage password","724526379":"Learn more with our tutorials","728042840":"To continue trading with us, please confirm where you live.","728824018":"Spanish Index","729251105":"Range: {{min}} - {{max}} {{duration_unit_text}} ","729651741":"Choose a photo","730473724":"This block performs the \"AND\" or the \"OR\" logic operation with the given values.","731382582":"BNB/USD","732828463":"Standing instructions to transfer funds to an account maintained in the United States, or directions regularly received from a US address","734298230":"Just a reminder","734390964":"Insufficient balance","734881840":"false","735907651":"A US residence address or a US correspondence address (including a US PO box)","737751617":"<0>Explore our website to see what’s available.","739126643":"Indicative high spot","742469109":"Reset Balance","743623600":"Reference","744110277":"Bollinger Bands Array (BBA)","745656178":"Use this block to sell your contract at the market price.","745674059":"Returns the specific character from a given string of text according to the selected option. ","746112978":"Your computer may take a few seconds to update","749336930":"Secure alternative to passwords.","750886728":"Switch to your real account to submit your documents","751468800":"Start now","751692023":"We <0>do not guarantee a refund if you make a wrong transfer.","752024971":"Reached maximum number of digits","752992217":"This block gives you the selected constant values.","753088835":"Default","753184969":"In providing our services to you, we are required to obtain information from you in order to assess whether a given product or service is appropriate for you (that is, whether you possess the experience and knowledge to understand the risks involved).<0/><1/>","753727511":"Type","755138488":"We’re unable to verify the document you provided because it contains markings or text that should not be on your document. Please provide a clear photo or a scan of your original identity document.","756152377":"SMA places equal weight to the entire distribution of values.","758003269":"make list from text","758492962":"210+","760528514":"Please note that changing the value of \"i\" won't change the value of the original item in the list","761576760":"Fund your account to start trading.","762926186":"A quick strategy is a ready-made strategy that you can use in Deriv Bot. There are 3 quick strategies you can choose from: Martingale, D'Alembert, and Oscar's Grind.","764366329":"Trading limits","766317539":"Language","772520934":"You may sell the contract up to 24 hours before expiry. If you do, we’ll pay you the <0>contract value.","773091074":"Stake:","773309981":"Oil/USD","773336410":"Tether is a blockchain-enabled platform designed to facilitate the use of fiat currencies in a digital manner.","775679302":"{{pending_withdrawals}} pending withdrawal(s)","775706054":"Do you sell trading bots?","776085955":"Strategies","776432808":"Select the country where you currently live.","778172770":"Deriv CFDs","780009485":"About D'Alembert","781924436":"Call Spread/Put Spread","783974693":"Avoid recent years","784311461":"Exponential Moving Average (EMA)","784583814":"Linked to your computer","785969488":"Jump 75 Index","787727156":"Barrier","788005234":"NA","792164271":"This is when your contract will expire based on the Duration or End time you’ve selected.","792622364":"Negative balance protection","793526589":"To file a complaint about our service, send an email to <0>complaints@deriv.com and state your complaint in detail. Please submit any relevant screenshots of your trading or system for our better understanding.","793531921":"Our company is one of the oldest and most reputable online trading companies in the world. We are committed to treat our clients fairly and provide them with excellent service.<0/><1/>Please provide us with feedback on how we can improve our services to you. Rest assured that you will be heard, valued, and treated fairly at all times.","794682658":"Copy the link to your phone","795859446":"Password saved","797007873":"Follow these steps to recover camera access:","797500286":"negative","800228448":"This complaints policy, which may change from time to time, applies to your account(s) registered with {{legal_entity_name_svg}} and {{legal_entity_name_fx}}.","800521289":"Your personal details are incomplete","801430087":"A link can contain the word \"Deriv\" and still be fake.","802436811":"View transaction details","802438383":"New proof of address is needed","802556390":"seconds","802989607":"Drag your XML file here","803500173":"Initial stake","806165583":"Australia 200","807499069":"Financial commission complaints procedure","808323704":"You can also use \"Compare\" and \"Logic operation\" blocks to make test variables.","812430133":"Spot price on the previous tick.","815925952":"This block is mandatory. Only one copy of this block is allowed. It is added to the canvas by default when you open Deriv Bot.","816580787":"Welcome back! Your messages have been restored.","816738009":"<0/><1/>You may also raise your unresolved dispute to the <2>Office of the Arbiter for Financial Services.","818447476":"Switch account?","820877027":"Please verify your proof of identity","821163626":"Server maintenance occurs every first Saturday of the month from 7 to 10 GMT time. You may experience service disruption during this time.","823186089":"A block that can contain text.","824797920":"Is list empty?","825042307":"Let’s try again","825179913":"This document number was already submitted for a different account. It seems you have an account with us that doesn't need further verification. Please contact us via <0>live chat if you need help.","826511719":"USD/SEK","827688195":"Disable Block","828219890":"then","828602451":"Returns the list of tick values in string format","830164967":"Last name","830703311":"My profile","830993327":"No current transactions available","832053636":"Document submission","832217983":"40 transactions or more in the past 12 months","832398317":"Sell Error","832721563":"If you select \"Low Tick\", you win the payout if the selected tick is the lowest among the next five ticks.","834966953":"1551661986 seconds since Jan 01 1970 (UTC) translates to 03/04/2019 @ 1:13am (UTC).","835336137":"View Detail","835350845":"Add another word or two. Uncommon words are better.","836097457":"I am interested in trading but have very little experience.","837063385":"Do not send other currencies to this address.","837066896":"Your document is being reviewed, please check back in 1-3 days.","839158849":"4. If the second trade results in a loss, the Deriv Bot will automatically increase your stake for the next trade by 2 USD. Deriv Bot will continue to add 2 USD to the previous round’s stake after every losing trade. See A2.","839805709":"To smoothly verify you, we need a better photo","841434703":"Disable stack","841543189":"View transaction on Blockchain","843333337":"You can only make deposits. Please complete the <0>financial assessment to unlock withdrawals.","845304111":"Slow EMA Period {{ input_number }}","848083350":"Your payout is equal to the <0>payout per point multiplied by the difference between the final price and the strike price. You will only earn a profit if your payout is higher than your initial stake.","850582774":"Please update your personal info","851054273":"If you select \"Higher\", you win the payout if the exit spot is strictly higher than the barrier.","851264055":"Creates a list with a given item repeated for a specific number of times.","851508288":"This block constrains a given number within a set range.","852527030":"Step 2","852583045":"Tick List String","852627184":"document number","854399751":"Digit code must only contain numbers.","854630522":"Choose a cryptocurrency account","857363137":"Volatility 300 (1s) Index","857445204":"Deriv currently supports withdrawals of Tether eUSDT to Ethereum wallet. To ensure a successful transaction, enter a wallet address compatible with the tokens you wish to withdraw. <0>Learn more","857986403":"do something","858663703":"For new trades, please transfer your funds into the new <0>{{platform}} {{eligible_account_to_migrate}} account(s).","860319618":"Tourism","862283602":"Phone number*","863023016":"For instance, if a trader has a loss threshold (B) of 100 USD, with an initial stake (s) of 1 USD and 2 units of increment (f), the calculation would be as follows:","863328851":"Proof of identity","864610268":"First, enter your {{label}} and the expiry date.","864655280":"You can continue to hold your current open positions in your existing MT5 account(s).","864957760":"Math Number Positive","865424952":"High-to-Low","865642450":"2. Logged in from a different browser","866496238":"Make sure your license details are clear to read, with no blur or glare","868826608":"Excluded from {{brand_website_name}} until","869068127":"The cashier is temporarily down due to maintenance. It will be available as soon as the maintenance is complete.","869823595":"Function","872661442":"Are you sure you want to update email <0>{{prev_email}} to <1>{{changed_email}}?","872721776":"2. Select your XML file and hit Select.","872817404":"Entry Spot Time","873166343":"1. 'Log' displays a regular message.","873387641":"If you have open positions","874461655":"Scan the QR code with your phone","874472715":"Your funds will remain in your existing MT5 account(s).","874484887":"Take profit must be a positive number.","875101277":"If I close my web browser, will Deriv Bot continue to run?","875532284":"Restart process on a different device","876086855":"Complete the financial assessment form","876292912":"Exit","879014472":"Reached maximum number of decimals","879647892":"You may sell the contract up until 60 seconds before expiry. If you do, we’ll pay you the <0>contract value.","881963105":"(XAUUSD, XAGUSD)","882423592":"The amount that you stake for the first trade. Note that this is the minimum stake amount.","885065431":"Get a Deriv account","888274063":"Town/City","888924866":"We don’t accept the following inputs for:","890299833":"Go to Reports","891337947":"Select country","893963781":"Close-to-Low","893975500":"You do not have any recent bots","894191608":"<0>c.We must award the settlement within 28 days of when the decision is reached.","896790627":"A US birthplace","897597439":"Changes saved.","898457777":"You have added a Deriv Financial account.","898904393":"Barrier:","899342595":"NIN","900646972":"page.","902045490":"3 minutes","903429103":"In candles list read {{ candle_property }} # from end {{ input_number }}","904696726":"API token","905227556":"Strong passwords contain at least 8 characters, combine uppercase and lowercase letters and numbers.","905564365":"MT5 CFDs","906049814":"We’ll review your documents and notify you of its status within 5 minutes.","906789729":"Your verification documents were already used for another account.","907680782":"Proof of ownership verification failed","909272635":"Financial - SVG","910888293":"Too many attempts","911048905":"(BTCUSD, ETHUSD)","912257733":"The workspace will be reset to the default strategy and any unsaved changes will be lost. <0>Note: This will not affect your running bot.","912406629":"Follow these steps:","912967164":"Import from your computer","915735109":"Back to {{platform_name}}","918447723":"Real","920125517":"Add demo account","921857297":"Enter a value from 0 to {{ value }}.","921901739":"- your account details of the bank linked to your account","922313275":"You're back online","924046954":"Upload a document showing your name and bank account number or account details.","924912760":"Your document appears to be a digital document.","929608744":"You are unable to make withdrawals","930255747":"Please enter your {{document_name}}. ","930346117":"Capitalization doesn't help very much","930546422":"Touch","933126306":"Enter some text here","933193610":"Only letters, periods, hyphens, apostrophes, and spaces, please.","937237342":"Strategy name cannot be empty","937682366":"Upload both of these documents to prove your identity.","937831119":"Last name*","937992258":"Table","938500877":"{{ text }}. <0>You can view the summary of this transaction in your email.","938947787":"Withdrawal {{currency}}","938988777":"High barrier","944499219":"Max. open positions","945532698":"Contract sold","945753712":"Back to Trader’s Hub","946204249":"Read","946841802":"A white (or green) candle indicates that the open price is lower than the close price. This represents an upward movement of the market price.","947046137":"Your withdrawal will be processed within 24 hours","947363256":"Create list","947704973":"Reverse D’Alembert","947758334":"City is required","947914894":"Top up  <0>","948156236":"Create {{type}} password","948176566":"New!","949859957":"Submit","951404247":"Enjoy seamless transactions across multiple currencies and an intuitive user interface with funds segregation.","952927527":"Regulated by the Malta Financial Services Authority (MFSA) (licence no. IS/70156)","956448295":"Cut-off image detected","957182756":"Trigonometric functions","958430760":"In/Out","959031082":"set {{ variable }} to MACD Array {{ dropdown }} {{ dummy }}","960201789":"3. Sell conditions","961266215":"140+","961327418":"My computer","961692401":"Bot","962251615":"If you want to adjust your self-exclusion limits, <0>contact us via live chat.","966457287":"set {{ variable }} to Exponential Moving Average {{ dummy }}","968576099":"Up/Down","969858761":"Principle 1: Strategy aims to potentially make one unit of profit per session","969987233":"Win up to maximum payout if exit spot is between lower and upper barrier, in proportion to the difference between exit spot and lower barrier.","970915884":"AN","974888153":"High-Low","975608902":"To trade CFDs, get a Deriv Apps account first.","975668699":"I confirm and accept {{company}} 's <0>Terms and Conditions","975747761":"Ongoing","975950139":"Country of Residence","977929335":"Go to my account settings","980050614":"Update now","981138557":"Redirect","981568830":"You have chosen to exclude yourself from trading on our website until {{exclude_until}}. If you are unable to place a trade or deposit after your self-exclusion period, please contact us via <0>live chat.","981965437":"Scan the QR code below with your 2FA app. We recommend <0>Authy or <1>Google Authenticator.","982146443":"WhatsApp","982402892":"First line of address","982829181":"Barriers","983451828":"2. Select the asset and trade type.","986565137":"We've received your proof of income","987053672":"You can continue with the open positions on your current <0>{{platform}} {{existing_account}} account(s).","987224688":"How many trades have you placed with other financial instruments in the past 12 months?","988064913":"4. Come back to Deriv Bot and add the Notify Telegram block to the workspace. Paste the Telegram API token and chat ID into the block fields accordingly.","988361781":"You have no trading activity yet.","988934465":"When prompted, you must enable camera access to continue","989840364":"You’re under legal age.","990739582":"170+","992294492":"Your postal code is invalid","992677950":"Logging out on other devices","993827052":"Choosing this jurisdiction will give you a Financial STP account. Your trades will go directly to the market and have tighter spreads.","995563717":"not {{ boolean }}","997276809":"I confirm that the name and date of birth above match my chosen identity document","997311089":"Change my password","999008199":"text","1001160515":"Sell","1002989598":"iOS: iCloud keychain.","1003876411":"Should start with letter or number and may contain a hyphen, period and slash.","1004127734":"Send email","1006069082":"The objective of Martingale strategy is to take advantage of consecutive successful trades and maximise potential profits from them. This strategy is beneficial only if there are consecutive successful trades. Therefore, it is important to set a maximum stake to secure all the potential profits gained from a number of consecutive successful trades, or you could lose all the profits you have accumulated, including your initial stake. For example, if your goal is to maximise profits within 2 consecutive successful trades, you set a maximum stake of 2 USD, given your initial stake is 1 USD. Similarly, if your goal is to maximise profits within 3 consecutive successful trades, you set a maximum stake of 4 USD, given your initial stake is 1 USD.","1006458411":"Errors","1006664890":"Silent","1008151470":"Unit: The number of units that are added in the event of successful trades or the number of units removed in the event of losing trades. For example, if the unit is set at 2, the stake increases or decreases by two times the initial stake of 1 USD, meaning it changes by 2 USD.","1009032439":"All time","1010198306":"This block creates a list with strings and numbers.","1010337648":"We were unable to verify your proof of ownership.","1011208051":"Congratulations, you have successfully created your <0/>{{category}} {{platform}} {{type}} {{jurisdiction_selected_shortcode}} account. ","1011424042":"{{text}}. stake<0/>","1012102263":"You will not be able to log in to your account until this date (up to 6 weeks from today).","1015201500":"Define your trade options such as duration and stake.","1016220824":"You need to switch to a real money account to use this feature.<0/>You can do this by selecting a real account from the <1>Account Switcher.","1018803177":"standard deviation","1019265663":"You have no transactions yet.","1019508841":"Barrier 1","1021090237":"Upgrade your <0>{{account_1}} <1/>and <0>{{account_2}} {{platform}} account(s)","1021679446":"Multipliers only","1022934784":"1 minute","1022971288":"Payout per pip","1023237947":"1. In the example below, the instructions are repeated as long as the value of x is less than or equal to 10. Once the value of x exceeds 10, the loop is terminated.","1023643811":"This block purchases contract of a specified type.","1023795011":"Even/Odd","1024205076":"Logic operation","1026046972":"Please enter a payout amount that's lower than {{max_payout}}.","1026289179":"Trade on the go","1028211549":"All fields are required","1028758659":"Citizenship*","1029164365":"We presume that you possess the experience, knowledge, and expertise to make your own investment decisions and properly assess the risk involved.","1029641567":"{{label}} must be less than 30 characters.","1030021206":"change {{ variable }} by {{ number }}","1031602624":"We've sent a secure link to %{number}","1031731167":"Pound Sterling","1032173180":"Deriv","1032907147":"AUD/NZD","1033253221":"Confirm your identity to make a withdrawal.","1035893169":"Delete","1036116144":"Speculate on the price movement of an asset without actually owning it.","1036867749":"The desired duration, stake, prediction, and/or barrier(s) for the contract is defined here.","1038575777":"Change password","1039428638":"EU regulation","1039476188":"The size used to multiply the stake after a losing trade for the next trade.","1039755542":"Use a few words, avoid common phrases","1040472990":"1. Go to Bot Builder.","1040677897":"To continue trading, you must also submit a proof of address.","1041001318":"This block performs the following operations on a given list: sum, minimum, maximum, average, median, mode, antimode, standard deviation, random item.","1041620447":"If you are unable to scan the QR code, you can manually enter this code instead:","1042659819":"You have an account that needs action","1043790274":"There was an error","1044599642":"<0> has been credited into your {{platform}} {{title}} account.","1045704971":"Jump 150 Index","1045782294":"Click the <0>Change password button to change your Deriv password.","1047389068":"Food Services","1047644783":"Enable screen lock on your device.","1047881477":"Unfortunately, your browser does not support the video.","1048687543":"Labuan Financial Services Authority","1048947317":"Sorry, this app is unavailable in {{clients_country}}.","1049384824":"Rise","1050063303":"Videos on Deriv Bot","1050128247":"I confirm that I have verified the payment agent’s transfer information.","1050844889":"Reports","1052779010":"You are on your demo account","1052921318":"{{currency}} Wallet","1053153674":"Jump 50 Index","1053159279":"Level of education","1053556481":"Once you submit your complaint, we will send you an acknowledgement email to confirm that we have received it.","1055313820":"No document detected","1056381071":"Return to trade","1056821534":"Are you sure?","1057216772":"text {{ input_text }} is empty","1057519018":"4. If a trade ends in a profit, the stake for the following trade will be reset to the initial stake amount of 1 USD.","1057749183":"Two-factor authentication (2FA)","1057765448":"Stop out level","1057904606":"The concept of the D’Alembert Strategy is said to be similar to the Martingale Strategy where you will increase your contract size after a loss. With the D’Alembert Strategy, you will also decrease your contract size after a successful trade.","1058804653":"Expiry","1058905535":"Tutorial","1060231263":"When are you required to pay an initial margin?","1061308507":"Purchase {{ contract_type }}","1062423382":"Explore the video guides and FAQs to build your bot in the tutorials tab.","1062536855":"Equals","1062569830":"The <0>name on your identity document doesn't match your profile.","1065275078":"cTrader is only available on desktop for now.","1065498209":"Iterate (1)","1065766135":"You have {{remaining_transfers}} {{transfer_text}} remaining for today.","1066235879":"Transferring funds will require you to create a second account.","1066459293":"4.3. Acknowledging your complaint","1069347258":"The verification link you used is invalid or expired. Please request for a new one.","1070323991":"6. If consecutive successful trades were to happen, the stake would follow a sequence of adjustment from 1 to 3, then 2, and 6 units of initial stake. After 4 consecutive successful trades, it completes one cycle and then the strategy will repeat itself for another cycle. If any trade results in a loss, your stake will reset back to the initial stake for the next trade.","1070624871":"Check proof of address document verification status","1073261747":"Verifications","1073611269":"A copy of your identity document (e.g. identity card, passport, driver's license)","1073711308":"Trade closed","1076006913":"Profit/loss on the last {{item_count}} contracts","1077515534":"Date to","1078189922":"You can make a new deposit once the verification of your account is complete.","1078221772":"Leverage prevents you from opening large positions.","1078303105":"Stop out","1080068516":"Action","1080990424":"Confirm","1082158368":"*Maximum account cash balance","1082406746":"Please enter a stake amount that's at least {{min_stake}}.","1083781009":"Tax identification number*","1083826534":"Enable Block","1087112394":"You must select the strike price before entering the contract.","1088031284":"Strike:","1088138125":"Tick {{current_tick}} - ","1089085289":"Mobile number","1089436811":"Tutorials","1089687322":"Stop your current bot?","1090041864":"The {{block_type}} block is mandatory and cannot be deleted/disabled.","1095295626":"<0>•The Arbiter for Financial Services will determine whether the complaint can be accepted and is in accordance with the law.","1096078516":"We’ll review your documents and notify you of its status within 3 days.","1096175323":"You’ll need a Deriv account","1098147569":"Purchase commodities or shares of a company.","1098622295":"\"i\" starts with the value of 1, and it will be increased by 2 at every iteration. The loop will repeat until \"i\" reaches the value of 12, and then the loop is terminated.","1100133959":"National ID","1100870148":"To learn more about account limits and how they apply, please go to the <0>Help Centre.","1101560682":"stack","1101712085":"Buy Price","1102420931":"Next, upload the front and back of your driving licence.","1102995654":"Calculates Exponential Moving Average (EMA) list from a list of values with a period","1103309514":"Target","1103452171":"Cookies help us to give you a better experience and personalised content on our site.","1104912023":"Pending verification","1107474660":"Submit proof of address","1107555942":"To","1109217274":"Success!","1110102997":"Statement","1112582372":"Interval duration","1113119682":"This block gives you the selected candle value from a list of candles.","1113292761":"Less than 8MB","1113390200":"Your open trades will appear here.","1114679006":"You have successfully created your bot using a simple strategy.","1117281935":"Sell conditions (optional)","1117863275":"Security and safety","1118294625":"You have chosen to exclude yourself from trading on our website until {{exclusion_end}}. If you are unable to place a trade or deposit after your self-exclusion period, please contact us via live chat.","1119887091":"Verification","1119986999":"Your proof of address was submitted successfully","1120985361":"Terms & conditions updated","1122910860":"Please complete your <0>financial assessment.","1123927492":"You have not selected your account currency","1124382808":"Please enter the expiry time in the format \"HH:MM\".","1125090693":"Must be a number","1126075317":"Add your Deriv MT5 <0>{{account_type_name}} STP account under Deriv (FX) Ltd regulated by Labuan Financial Services Authority (Licence no. MB/18/0024).","1126934455":"Length of token name must be between 2 and 32 characters.","1127224297":"Sorry for the interruption","1127884488":"cTrader MacOS app","1128139358":"How many CFD trades have you placed in the past 12 months?","1128321947":"Clear All","1128404172":"Undo","1129124569":"If you select \"Under\", you will win the payout if the last digit of the last tick is less than your prediction.","1129842439":"Please enter a take profit amount.","1130791706":"N","1133651559":"Live chat","1134879544":"Example of a document with glare","1134883120":"Use your Deriv account email and password to log in to cTrader.","1138126442":"Forex: standard","1139483178":"Enable stack","1143730031":"Direction is {{ direction_type }}","1144028300":"Relative Strength Index Array (RSIA)","1145927365":"Run the blocks inside after a given number of seconds","1146064568":"Go to Deposit page","1147269948":"Barrier cannot be zero.","1150637063":"*Volatility 150 Index and Volatility 250 Index","1151964318":"both sides","1152294962":"Upload the front of your driving licence.","1154021400":"list","1154239195":"Title and name","1155011317":"This block converts the date and time to the number of seconds since the Unix Epoch (1970-01-01 00:00:00).","1155143434":"By clicking on <0>Next you agree to move your {{platform}} {{type}} {{from_account}} account(s) under <2/>Deriv {{account_to_migrate}} Ltd’s <1>terms and conditions.","1155626418":"below","1158678321":"<0>b.The Head of the Dispute Resolution Committee (DRC) will contact both you and us within 5 business days to obtain all necessary information and see if there is a chance to settle the complaint during the investigation phase.","1160761178":"No payout if exit spot is below or equal to the lower barrier.","1161924555":"Please select an option","1163771266":"The third block is <0>optional. You may use this block if you want to sell your contract before it expires. For now, leave the block as it is. ","1163836811":"Real Estate","1164773983":"Take profit and/or stop loss are not available while deal cancellation is active.","1166023941":"New password","1166128807":"Choose one of your accounts or add a new cryptocurrency account","1166377304":"Increment value","1166916934":"Demo Standard SVG","1168029733":"Win payout if exit spot is also equal to entry spot.","1169201692":"Create {{platform}} password","1170228717":"Stay on {{platform_name_trader}}","1171765024":"Step 3","1171961126":"trade parameters","1172230903":"• Stop loss threshold: Use this variable to store your loss limit. You can assign any amount you want. Your bot will stop when your losses hits or exceeds this amount.","1172524677":"CFDs Demo","1173957529":"Go to ‘Account Settings’ on Deriv.","1174542625":"- Find the chat ID property in the response, and copy the value of the id property","1174689133":"3. Set your trade parameters and hit Run.","1174748431":"Payment channel","1175183064":"Vanuatu","1177396776":"If you select \"Asian Fall\", you will win the payout if the last tick is lower than the average of the ticks.","1177723589":"There are no transactions to display","1178582280":"The number of contracts you have lost since you last cleared your stats.","1178800778":"Take a photo of the back of your license","1178942276":"Please try again in a minute.","1179704370":"Please enter a take profit amount that's higher than the current potential profit.","1181396316":"This block gives you a random number from within a set range","1181770592":"Profit/loss from selling","1183007646":"- Contract type: the name of the contract type such as Rise, Fall, Touch, No Touch, etс.","1183448523":"<0>We're setting up your Wallets","1184968647":"Close your contract now or keep it running. If you decide to keep it running, you can check and close it later on the ","1186687280":"Question {{ current }} of {{ total }}","1188316409":"To receive your funds, contact the payment agent with the details below","1188980408":"5 minutes","1189249001":"4.1. What is considered a complaint?","1189368976":"Please complete your personal details before you verify your identity.","1190226567":"Standard - Vanuatu","1191429031":"Please click on the link in the email to change your <0>{{platform_name_dxtrade}} password.","1192598228":"Wallets will become your dedicated fund management tool, allowing you to transfer funds between Wallets and trading accounts instantly.","1195393249":"Notify {{ notification_type }} with sound: {{ notification_sound }} {{ input_message }}","1196006480":"Profit threshold","1198368641":"Relative Strength Index (RSI)","1199281499":"Last Digits List","1201533528":"Contracts won","1201773643":"numeric","1203297580":"This block sends a message to a Telegram channel.","1203380736":"The D’Alembert strategy is less risky than Martingale, but you can still determine how long your funds will last with this strategy before trading. Simply use this formula.","1204223111":"In this example, the open prices from a list of candles are assigned to a variable called \"candle_list\".","1204459171":"Your existing <0>{{platform}} {{type_1}} <1/>and <0>{{type_2}} {{from_account}} account(s) will remain accessible.","1206227936":"How to mask your card?","1206821331":"Armed Forces","1208729868":"Ticks","1208903663":"Invalid token","1211912982":"Bot is starting","1214893428":"Account creation is currently unavailable for mobile. Please log in with your computer to create a new account.","1216408337":"Self-Employed","1217159705":"Bank account number","1217481729":"Tether as an ERC20 token (eUSDT) is a version of Tether that is hosted on Ethereum.","1218546232":"What is Fiat onramp?","1219844088":"do %1","1221250438":"To enable withdrawals, please submit your <0>Proof of Identity (POI) and <1>Proof of Address (POA) and also complete the <2>financial assessment in your account settings.","1222096166":"Deposit via bank wire, credit card, and e-wallet","1222521778":"Making deposits and withdrawals is difficult.","1222544232":"We’ve sent you an email","1225874865":"The stake adjustment: target session profit (1 USD) - current session profit (0 USD) = 1 USD","1227074958":"random fraction","1227132397":"4. For trades that result in a loss, there are two outcomes. If it was traded at the initial stake, the next trade will remain at the same amount as the strategy trades minimally at the initial stake, see A2. If it was traded with a higher amount, the stake for the next trade would be reduced by 2 USD, see A3.","1227240509":"Trim spaces","1228534821":"Some currencies may not be supported by payment agents in your country.","1229883366":"Tax identification number","1230884443":"State/Province (optional)","1231282282":"Use only the following special characters: {{permitted_characters}}","1232291311":"Maximum withdrawal remaining","1232353969":"0-5 transactions in the past 12 months","1233178579":"Our customers say","1233300532":"Payout","1233910495":"If you select \"<0>Down\", your total profit/loss will be the percentage decrease in the underlying asset price, times the multiplier and stake, minus commissions.","1234292259":"Source of wealth","1234764730":"Upload a screenshot of your name and email address from the personal details section.","1234889964":"Better funds segregation","1237330017":"Pensioner","1238311538":"Admin","1239752061":"In your cryptocurrency wallet, make sure to select the <0>{{network_name}} network when you transfer funds to Deriv.","1239760289":"Complete your trading assessment","1239940690":"Restarts the bot when an error is encountered.","1240027773":"Please Log in","1240688917":"Glossary","1241238585":"You may transfer between your Deriv fiat, cryptocurrency, and {{platform_name_mt5}} accounts.","1242288838":"Hit the checkbox above to choose your document.","1242994921":"Click here to start building your Deriv Bot.","1243064300":"Local","1243287470":"Transaction status","1246207976":"Enter the authentication code generated by your 2FA app:","1246880072":"Select issuing country","1247280835":"Our cryptocurrency cashier is temporarily down due to system maintenance. You can make cryptocurrency deposits and withdrawals in a few minutes when the maintenance is complete.","1248018350":"Source of income","1248940117":"<0>a.The decisions made by the DRC are binding on us. DRC decisions are binding on you only if you accept them.","1250113042":"This device doesn't support passkeys.","1250495155":"Token copied!","1252669321":"Import from your Google Drive","1253531007":"Confirmed","1253636052":"MetaTrader5 web terminal","1254565203":"set {{ variable }} to create list with","1255827200":"You can also import or build your bot using any of these shortcuts.","1255909792":"last","1255963623":"To date/time {{ input_timestamp }} {{ dummy }}","1258097139":"What could we do to improve?","1258198117":"positive","1259145708":"Let’s try again. Choose another document and enter the corresponding details.","1259598687":"GBP/JPY","1260259925":"Phone is not in a proper format.","1264096613":"Search for a given string","1265317149":"A recent utility bill (e.g. electricity, water or gas) or recent bank statement or government-issued letter with your name and address.","1265704976":"","1266728508":"Proof of income verification passed","1269296089":"Let's build a Bot!","1270581106":"If you select \"No Touch\", you win the payout if the market never touches the barrier at any time during the contract period.","1272012156":"GBP/CHF","1272337240":"Days","1272681097":"Hours","1274380814":"Your payout is equal to the <0>payout per pip multiplied by the difference, <1>in pips, between the final price and the strike price. You will only earn a profit if your payout is higher than your initial stake.","1274819385":"3. Complaints and Disputes","1276660852":"Submit your proof of identity","1281045211":"Sorts the items in a given list, by their numeric or alphabetical value, in either ascending or descending order.","1281290230":"Select","1282951921":"Only Downs","1284522768":"If \"Loss\" is selected, it will return \"True\" if your last trade was unsuccessful. Otherwise, it will return an empty string.","1286094280":"Withdraw","1286507651":"Close identity verification screen","1288965214":"Passport","1289146554":"British Virgin Islands Financial Services Commission","1289650867":"The Oscar’s Grind strategy is designed to potentially gain a modest yet steady profit in each trading session. This strategy splits trades into sessions and has three principles.","1290525720":"Example: ","1291997417":"Contracts will expire at exactly 23:59:59 GMT on your selected expiry date.","1292179259":"No open trades","1292188546":"Reset Deriv MT5 investor password","1292891860":"Notify Telegram","1293660048":"Max. total loss per day","1294553728":"We’re unable to verify the document you provided because it appears to be a blank image. Please try again or upload another document.","1294756261":"This block creates a function, which is a group of instructions that can be executed at any time. Place other blocks in here to perform any kind of action that you need in your strategy. When all the instructions in a function have been carried out, your bot will continue with the remaining blocks in your strategy. Click the “do something” field to give it a name of your choice. Click the plus icon to send a value (as a named variable) to your function.","1295284664":"Please accept our <0>updated Terms and Conditions to proceed.","1296380713":"Close my contract","1298254025":"Standard - BVI","1299479533":"8 hours","1300576911":"Please resubmit your proof of address or we may restrict your account.","1302691457":"Occupation","1303016265":"Yes","1303530014":"We’re processing your withdrawal.","1304083330":"copy","1304272843":"Please submit your proof of address.","1304620236":"Enable camera","1305217290":"Upload the back of your identity card.","1306976251":"Standard SVG","1308625834":"Sets the default time interval for blocks that read list of candles.","1309017029":"Enabling this allows you to save your blocks as one collection which can be easily integrated into other bots.","1309044871":"Returns the value of the latest tick in string format","1310483610":"Results for \"{{ search_term }}\"","1311680770":"payout","1313167179":"Please log in","1313302450":"The bot will stop trading if your total loss exceeds this amount.","1314572331":"Your document failed our verification checks.","1316216284":"You can use this password for all your {{platform}} accounts.","1319217849":"Check your mobile","1320715220":"<0>Account closed","1320750775":"Front and back","1322804930":"Restart the process on the latest version of Google Chrome","1323327633":"Our complaints process comprises the following 4 steps:","1323476617":"Changes the capitalisation of a string of text to Upper case, Lower case, Title case.","1323996051":"Profile","1324922837":"2. The new variable will appear as a block under Set variable.","1325514262":"(licence no. MB/18/0024)","1327181172":"Financial Vanuatu","1327494533":"{{sell_value}} (Sell)","1329136554":"Jump 200 Index","1329325646":"The content of this block is called on every tick","1331199417":"Please enter the correct format. ","1331367811":"Client account number","1332168410":"Learn more","1332168769":"Disconnect","1333576137":"Please update your {{details}} to continue.","1333839457":"Submit identity card (front)","1334326985":"It may take a few minutes to arrive","1335967988":"Notice","1337846406":"This block gives you the selected candle value from a list of candles within the selected time interval.","1337864666":"Photo of your document","1338496204":"Ref. ID","1339613797":"Regulator/External dispute resolution","1340286510":"The bot has stopped, but your trade may still be running. You can check it on the Reports page.","1341840346":"View in Journal","1341921544":"Trading accounts and funds","1344696151":"Forex, stocks, stock indices, commodities, cryptocurrencies and synthetic indices.","1346038489":"Should be less than 70.","1346204508":"Take profit","1346339408":"Managers","1346947293":"We were unable to verify your selfie because it’s not clear. Please take a clearer photo and try again. Ensure that there's enough light where you are and that your entire face is in the frame.","1347071802":"{{minutePast}}m ago","1349133669":"Try changing your search criteria.","1349289354":"Great, that's everything we need","1349295677":"in text {{ input_text }} get substring from {{ position1 }} {{ index1 }} to {{ position2 }} {{ index2 }}","1351906264":"This feature is not available for payment agents.","1352234202":"Last {{positionsCount}} contracts:","1353197182":"Please select","1354288636":"Based on your answers, it looks like you have insufficient knowledge and experience in trading CFDs. CFD trading is risky and you could potentially lose all of your capital.<0/><0/>","1355250245":"{{ calculation }} of list {{ input_list }}","1356574493":"Returns a specific portion of a given string of text.","1356607862":"Deriv password","1357213116":"Identity card","1358543466":"Not available","1358543748":"enabled","1360929368":"Add a Deriv account","1362029761":"Exploring the Reverse Martingale strategy in Deriv Bot","1362578283":"High","1363645836":"Derived FX","1363675688":"Duration is a required field.","1364879837":"The verification is passed but the personal info is not available to compare.","1364958515":"Stocks","1366244749":"Limits","1367488817":"4. Restart trading conditions","1367990698":"Volatility 10 Index","1370647009":"Enjoy higher daily limits","1371193412":"Cancel","1371555192":"Choose your preferred payment agent and enter your withdrawal amount. If your payment agent is not listed, <0>search for them using their account number.","1371641641":"Open the link on your mobile","1371911731":"Financial products in the EU are offered by {{legal_entity_name}}, licensed as a Category 3 Investment Services provider by the Malta Financial Services Authority (<0>Licence no. IS/70156).","1373949314":"The Reverse Martingale strategy involves increasing your stake after each successful trade and resets to the initial stake for every losing trade as it aims to secure potential profits from consecutive wins.","1374627690":"Max. account balance","1374902304":"Your document appears to be damaged or cropped.","1375884086":"Financial, legal, or government document: recent bank statement, affidavit, or government-issued letter.","1376329801":"Last 60 days","1378419333":"Ether","1380349261":"Range","1383017005":"You have switched accounts.","1384127719":"You should enter {{min}}-{{max}} numbers.","1384222389":"Please submit valid identity documents to unlock the cashier.","1385418910":"Please set a currency for your existing real account before creating another account.","1387503299":"Log in","1388770399":"Proof of identity required","1389197139":"Import error","1390792283":"Trade parameters","1391174838":"Potential payout:","1392985917":"This is similar to a commonly used password","1393559748":"Invalid date/time: {{ datetime_string }}","1393901361":"There’s an app for that","1393903598":"if true {{ return_value }}","1396179592":"Commission","1396417530":"Bear Market Index","1397628594":"Insufficient funds","1400341216":"We’ll review your documents and notify you of its status within 1 to 3 days.","1400732866":"View from camera","1400962248":"High-Close","1402208292":"Change text case","1402224124":"Hit the button below, and we'll email you a verification link.","1402300547":"Lets get your address verified","1403376207":"Update my details","1405584799":"with interval: {{ candle_interval_type }}","1407191858":"DTrader","1408844944":"Click the plus icon to extend the functionality of this block.","1411373212":"Strong passwords contain at least 8 characters. combine uppercase and lowercase letters, numbers, and symbols.","1412405902":"See important notes","1412535872":"You can check the result of the last trade with this block. It can only be placed within the \"Restart trading conditions\" root block.","1413047745":"Assigns a given value to a variable","1413359359":"Make a new transfer","1414205271":"prime","1414366321":"An uppercase letter","1414918420":"We'll review your proof of identity again and will give you an update as soon as possible.","1415006332":"get sub-list from first","1415513655":"Download cTrader on your phone to trade with the Deriv cTrader account","1415974522":"If you select \"Differs\", you will win the payout if the last digit of the last tick is not the same as your prediction.","1416521695":"Positions","1417558007":"Max. total loss over 7 days","1417907460":"No problem! Your passkey still works.","1417914636":"Login ID","1418115525":"This block repeats instructions as long as a given condition is true.","1419330165":"Forex, stocks, stock indices, commodities, cryptocurrencies, ETFs and synthetic indices","1421046084":"Setup your account","1421749665":"Simple Moving Average (SMA)","1422060302":"This block replaces a specific item in a list with another given item. It can also insert the new item in the list at a specific position.","1422129582":"All details must be clear — nothing blurry","1423082412":"Last Digit","1423296980":"Enter your SSNIT number","1424741507":"See more","1424763981":"1-3-2-6","1424779296":"If you've recently used bots but don't see them in this list, it may be because you:","1428657171":"You can only make deposits. Please contact us via <0>live chat for more information.","1430221139":"Verify now","1430396558":"5. Restart buy/sell on error","1430632931":"To get trading, please confirm who you are, and where you live.","1433367863":"Sorry, an error occured while processing your request.","1433468641":"We offer our services in all countries, except for the ones mentioned in our terms and conditions.","1434382099":"Displays a dialog window with a message","1434767075":"Get started on Deriv Bot","1434976996":"Announcement","1435363248":"This block converts the number of seconds since the Unix Epoch to a date and time format such as 2019-08-01 00:00:00.","1437396005":"Add comment","1437529196":"Payslip","1438247001":"A professional client receives a lower degree of client protection due to the following.","1438340491":"else","1439168633":"Stop loss:","1441208301":"Total<0 />profit/loss","1442747050":"Loss amount: <0>{{profit}}","1442840749":"Random integer","1443478428":"Selected proposal does not exist","1444066971":"It seems you’ve submitted this document before. Upload a new document.","1444843056":"Corporate Affairs Commission","1445592224":"You accidentally gave us another email address (Usually a work or a personal one instead of the one you meant).","1449462402":"In review","1452260922":"Too many failed attempts","1452941569":"This block delays execution for a given number of seconds. You can place any blocks within this block. The execution of other blocks in your strategy will be paused until the instructions in this block are carried out.","1453317405":"This block gives you the balance of your account either as a number or a string of text.","1454406889":"Choose <0>until as the repeat option.","1454648764":"deal reference id","1454865058":"Do not enter an address linked to an ICO purchase or crowdsale. If you do, the ICO tokens will not be credited into your account.","1455741083":"Upload the back of your driving licence.","1457341530":"Your proof of identity verification has failed","1457603571":"No notifications","1458160370":"Enter your {{platform}} password to add a {{platform_name}} {{account}} {{jurisdiction_shortcode}} account.","1459761348":"Submit proof of identity","1461323093":"Display messages in the developer’s console.","1462238858":"By purchasing the \"High-to-Close\" contract, you'll win the multiplier times the difference between the high and close over the duration of the contract.","1464190305":"This block will transfer the control back to the Purchase conditions block, enabling you to purchase another contract without manually stopping and restarting your bot.","1464253511":"You already have an account for each of the cryptocurrencies available on {{deriv}}.","1465084972":"How much experience do you have with other financial instruments?","1465919899":"Pick an end date","1466430429":"Should be between {{min_value}} and {{max_value}}","1466900145":"Doe","1467017903":"This market is not yet available on {{platform_name_trader}}, but it is on {{platform_name_smarttrader}}.","1467421920":"with interval: %1","1467880277":"3. General queries","1468308734":"This block repeats instructions as long as a given condition is true","1468419186":"Deriv currently supports withdrawals of Tether USDT to Omni wallet. To ensure a successful transaction, enter a wallet address compatible with the tokens you wish to withdraw. <0>Learn more","1468508098":"Slippage happens when the asset price changes by the time it reaches our servers.","1469133110":"cTrader Windows app","1469150826":"Take Profit","1469764234":"Cashier Error","1469814942":"- Division","1470319695":"Returns either True or False","1470565177":"Article of association","1471008053":"Deriv Bot isn't quite ready for real accounts","1471070549":"Can contract be sold?","1471741480":"Severe error","1473369747":"Synthetics only","1475513172":"Size","1476301886":"Similar to SMA, this block gives you the entire SMA line containing a list of all values for a given period.","1478030986":"Create or delete API tokens for trading and withdrawals","1480915523":"Skip","1484336612":"This block is used to either terminate or continue a loop, and can be placed anywhere within a loop block.","1487086154":"Your documents were submitted successfully","1488548367":"Upload again","1490509675":"Options accounts","1491392301":"<0>Sold for: {{sold_for}}","1492686447":"Your MT5 Financial STP account will be opened through Deriv (FX) Ltd. All trading in this account is subject to the regulations and guidelines of the Labuan Financial Service Authority (LFSA). None of your other accounts, including your Deriv account, is subject to the regulations and guidelines of the Labuan Financial Service Authority (LFSA).","1493673429":"Change email","1493866481":"Run Deriv X on your browser","1496810530":"GBP/AUD","1497773819":"Deriv MT5 accounts","1499080621":"Tried to perform an invalid operation.","1501691227":"Add Your Deriv MT5 <0>{{account_type_name}} account under Deriv (V) Ltd, regulated by the Vanuatu Financial Services Commission.","1502039206":"Over {{barrier}}","1502325741":"Your password cannot be the same as your email address.","1503419760":"Swap-free CFDs on selected financial and derived instruments.","1503618738":"- Deal reference ID: the reference ID of the contract","1505420815":"No payment agents found for your search","1505898522":"Download stack","1505927599":"Our servers hit a bump. Let’s refresh to move on.","1507554225":"Submit your proof of address","1509559328":"cTrader","1509570124":"{{buy_value}} (Buy)","1509678193":"Education","1510075920":"Gold/USD","1510357015":"Tax residence is required.","1510735345":"This block gives you a list of the last digits of the last 1000 tick values.","1512469749":"In the above example it is assumed that variable candle_open_price is processed somewhere within other blocks.","1513771077":"We're processing your withdrawal.","1516559721":"Please select one file only","1516676261":"Deposit","1517503814":"Drop file or click here to upload","1520332426":"Net annual income","1524636363":"Authentication failed","1525222923":"Touch/No touch","1526012495":"This could be because:","1526483456":"2. Enter a name for your variable, and hit Create. New blocks containing your new variable will appear below.","1527251898":"Unsuccessful","1527664853":"Your payout is equal to the payout per point multiplied by the difference between the final price and the strike price.","1527906715":"This block adds the given number to the selected variable.","1531017969":"Creates a single text string from combining the text value of each attached item, without spaces in between. The number of items can be added accordingly.","1533177906":"Fall","1534796105":"Gets variable value","1537192641":"Unable to process your request","1537711064":"You need to make a quick identity verification before you can access the Cashier. Please go to your account settings to submit your proof of identity.","1540585098":"Decline","1541508606":"Looking for CFDs? Go to Trader's Hub","1541770236":"The 1-3-2-6 strategy aims to maximise potential profits with four consecutive successful trades. One unit is equal to the amount of the initial stake. The stake will adjust from 1 unit to 3 units after the first successful trade, then to 2 units after your second successful trade, and to 6 units after the third successful trade. The stake for the next trade will reset to the initial stake if there is a losing trade or a completion of the trade cycle.","1541969455":"Both","1542742708":"Synthetics, Forex, Stocks, Stock indices, Commodities, and Cryptocurrencies","1544642951":"If you select \"Only Ups\", you win the payout if consecutive ticks rise successively after the entry spot. No payout if any tick falls or is equal to any of the previous ticks.","1547148381":"That file is too big (only up to 8MB allowed). Please upload another file.","1549098835":"Total withdrawn","1551172020":"AUD Basket","1551689907":"Enhance your trading experience by upgrading your <0/><1>{{platform}} {{type}} {{from_account}} account(s).","1555345325":"User Guide","1556391770":"You cannot make a withdrawal as your documents are still under review. We will notify you by email within 3 days once your verification is approved.","1557682012":"Account Settings","1558972889":"set {{ variable }} to Simple Moving Average {{ dummy }}","1560302445":"Copied","1562374116":"Students","1566037033":"Bought: {{longcode}} (ID: {{transaction_id}})","1566717687":"We also provide a guide on the Tutorial tab to show you how you can build and execute a simple strategy.","1567745852":"Bot name","1569527365":"Verification failed. Resubmit your details.","1569624004":"Dismiss alert","1570484627":"Ticks list","1571575776":"Accepted formats: pdf, jpeg, jpg, and png. Max file size: 8MB","1572504270":"Rounding operation","1572982976":"Server","1573429525":"Call/Put","1575556189":"Tether on the Ethereum blockchain, as an ERC20 token, is a newer transport layer, which now makes Tether available in Ethereum smart contracts. As a standard ERC20 token, it can also be sent to any Ethereum address.","1577480486":"Your mobile link will expire in one hour","1577527507":"Account opening reason is required.","1577612026":"Select a folder","1580498808":"Multiple faces found","1584109614":"Ticks String List","1584936297":"XML file contains unsupported elements. Please check or modify file.","1587046102":"Documents from that country are not currently supported — try another document type","1589148299":"Start","1589640950":"Resale of this contract is not offered.","1589702653":"Proof of address","1589863913":"These are the trade parameters used for D’Alembert strategy in Deriv Bot.","1590400723":"Total assets in all your accounts","1591933071":"Resubmit document","1593010588":"Login now","1594147169":"Please come back in","1594322503":"Sell is available","1595295238":"3. Use a logic block to check if Total profit/loss is more than the Stop loss threshold amount. You can find the Total profit/loss variable under Analysis > Stats on the Blocks menu on the left. Your bot will continue to purchase new contracts until the Total profit/loss amount exceeds the Stop loss threshold amount.","1597672660":"Deriv MT5 Password","1598009247":"<0>a.You may file a complaint with the Financial Commission up to 45 days after the incident.","1598386296":"Town/City is required.","1598443642":"Transaction hash","1599743312":"An example of Reverse Martingale strategy","1602894348":"Create a password","1604916224":"Absolute","1605222432":"I have no knowledge and experience in trading at all.","1605292429":"Max. total loss","1612105450":"Get substring","1612638396":"Cancel your trade at any time within a specified timeframe.","1615897837":"Signal EMA Period {{ input_number }}","1618652381":"For instance, if a trader has a loss threshold (B) is 1000 USD, with an initial stake (s) is 1 USD, and the Martingale multiplier (m) is 2, the calculation would be as follows:","1619070150":"You are being redirected to an external website.","1620278321":"Names and surnames by themselves are easy to guess","1620346110":"Set currency","1621024661":"Tether as a TRC20 token (tUSDT) is a version of Tether that is hosted on Tron.","1622662457":"Date from","1622944161":"Now, go to the <0>Restart trading conditions block.","1623706874":"Use this block when you want to use multipliers as your trade type.","1628981793":"Can I trade cryptocurrencies on Deriv Bot?","1630417358":"Please go to your account settings and complete your personal details to enable withdrawals.","1631281562":"GBP Basket","1633661992":"Tick {{current_tick}}/{{tick_count}}","1634016345":"2. If the trade is successful, this strategy will automatically adjust your stake to 3 units of your initial stake for the next trade. In this case, the stake adjustment is 3 units and the initial stake is 1 USD, hence the next trade will start at 3 USD.","1634903642":"Only your face can be in the selfie","1634969163":"Change currency","1635266650":"It seems that your name in the document is not the same as your Deriv profile. Please update your name in the <0>Personal details page to solve this issue.","1635628424":"An envelope with your name and address.","1636605481":"Platform settings","1636782601":"Multipliers","1638321777":"Your demo account balance is low. Reset your balance to continue trading from your demo account.","1639262461":"Pending withdrawal request:","1639304182":"Please click on the link in the email to reset your password.","1641395634":"Last digits list","1641635657":"New proof of identity document needed","1641980662":"Salutation is required.","1644636153":"Transaction hash: <0>{{value}}","1644703962":"Looking for CFD accounts? Go to Trader's Hub","1644864436":"You’ll need to authenticate your account before requesting to become a professional client. <0>Authenticate my account","1644908559":"Digit code is required.","1647186767":"The bot encountered an error while running.","1648938920":"Netherlands 25","1649239667":"2. Under the Blocks menu, you'll see a list of categories. Blocks are grouped within these categories. Choose the block you want and drag them to the workspace.","1650963565":"Introducing Wallets","1651513020":"Display remaining time for each interval","1651951220":"Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\"","1652366857":"get and remove","1652968048":"Define your trade options such as multiplier and stake.","1652976865":"In this example, this block is used with another block to get the open prices from a list of candles. The open prices are then assigned to the variable called \"cl\".","1653136377":"copied!","1653180917":"We cannot verify you without using your camera","1653999225":"Forex: major/minor","1654365787":"Unknown","1654529197":"Purchase condition","1654721858":"Upload anyway","1655372864":"Your contract will expire on this date (in GMT), based on the end time you’ve selected.","1655627840":"UPPER CASE","1656155124":"Resend in <0 /> seconds","1658954996":"Plant and Machine Operators and Assemblers","1659074761":"Reset Put","1659352235":"Add your Deriv MT5 CFDs account under Deriv Investments (Europe) Limited, regulated by the Malta Financial Services Authority (MFSA) (licence no. IS/70156).","1665272539":"Remember: You cannot log in to your account until the selected date.","1665718170":"The document must contain a letterhead.","1665738338":"Balance","1665756261":"Go to live chat","1668138872":"Modify account settings","1669062316":"The payout at expiry is equal to the payout per pip multiplied by the difference, <0>in pips, between the final price and the strike price.","1670016002":"Multiplier: {{ multiplier }}","1670426231":"End Time","1671232191":"You have set the following limits:","1675030608":"To create this account first we need you to resubmit your proof of address.","1676549796":"Dynamic Leverage","1677027187":"Forex","1679743486":"1. Go to Quick strategy and select the strategy you want.","1680666439":"Upload your bank statement showing your name, account number, and transaction history.","1681765749":"Martingale formula 2","1682409128":"Untitled Strategy","1682636566":"Resend email in","1683963454":"Your contract will be closed automatically at the next available asset price on {{date}} at {{timestamp}}.","1684419981":"What's this?","1686800117":"{{error_msg}}","1689103988":"Second Since Epoch","1689258195":"We were unable to verify your address with the details you provided. Please check and resubmit or choose a different document type.","1690746575":"Enhance your trading experience by upgrading your <0>{{platform}} {{type_1}} <1/>and <0>{{type_2}} {{from_account}} account(s).","1691335819":"To continue trading with us, please confirm who you are.","1691536201":"If you choose your duration in number of ticks, you won’t be able to terminate your contract early.","1691765860":"- Negation","1692912479":"Deriv MT5, Deriv X","1693614409":"Start time","1694517345":"Enter a new email address","1696190747":"Trading inherently involves risks, and actual profits can fluctuate due to various factors, including market volatility and other unforeseen variables. As such, exercise caution and conduct thorough research before engaging in any trading activities.","1698624570":"2. Hit Ok to confirm.","1699606318":"You've reached the limit of uploading your documents.","1700233813":"Transfer from {{selected_value}} is not allowed, Please choose another account from dropdown","1701447705":"Please update your address","1702339739":"Common mistakes","1703091957":"We collect information about your employment as part of our due diligence obligations, as required by anti-money laundering legislation.","1703712522":"Your payout is equal to the payout per pip multiplied by the difference, <0>in pips, between the final price and the strike price.","1704656659":"How much experience do you have in CFD trading?","1708413635":"For your {{currency_name}} ({{currency}}) account","1709859601":"Exit Spot Time","1711013665":"Anticipated account turnover","1711016273":"<0>This may take up to 2 minutes. During this time, some services may be unavailable.","1711676335":"square root","1711929663":"Your funds have been transferred","1712357617":"Invalid email address.","1713633297":"3. If the second trade is also successful, your stake will adjust to 2 USD or 2 units of the initial stake for the next trade.","1714255392":"To enable withdrawals, please complete your financial assessment.","1715011380":"Jump 25 Index","1715630945":"Returns the total profit in string format","1715680813":"Your contract will expire at exactly 23:59:59 GMT +0 on your selected expiry date.","1717023554":"Resubmit documents","1717474982":"CFDs on financial and derived instruments via a customisable platform.","1720451994":"We’ll charge a 2% transfer fee or {{minimum_fee}} {{currency}}, whichever is higher, for transfers between your Deriv fiat and Deriv cryptocurrency accounts.","1720968545":"Upload passport photo page from your computer","1722056905":"The document you provided is not supported for your country. Please provide a supported document for your country.","1722888575":"{{mt5_migration_error}}","1723069433":"Your new Wallet","1723589564":"Represents the maximum number of outstanding contracts in your portfolio. Each line in your portfolio counts for one open position. Once the maximum is reached, you will not be able to open new positions without closing an existing position first.","1724367774":"You can make a funds transfer once the verification of your account is complete.","1724696797":"You are limited to one fiat account only.","1725958461":"Account number","1726472773":"Function with no return value","1726565314":"Close my account","1728183781":"About Tether","1729145421":"Risk warning","1731747596":"The block(s) highlighted in red are missing input values. Please update them and click \"Run bot\".","1732891201":"Sell price","1733711201":"Regulators/external dispute resolution","1734185104":"Balance: %1","1734264460":"Disclaimer","1734521537":"The document you provided appears to be two different types. Please try again or provide another document.","1736292549":"Update postal code","1737352280":"Bot.init is not called","1738094481":"<0>Duration: Ticks 1","1738611950":"About Reverse Martingale","1738681493":"Remove your glasses, if necessary","1739086943":"Wall Street 30","1739384082":"Unemployed","1739668049":"Close your account","1740371444":"Underlying market is not selected","1741006997":"Yesterday","1742256256":"Please upload one of the following documents:","1743448290":"Payment agents","1743679873":"If you select <0>\"Call\", you’ll earn a <1>payout if the <1>final price is above the <1>strike price at <1>expiry. Otherwise, you won’t receive a payout.","1743902050":"Complete your financial assessment","1744509610":"Just drag the XML file from your computer onto the workspace, and your bot will be loaded accordingly. Alternatively, you can hit Import in Bot Builder, and choose to import your bot from your computer or from your Google Drive.","1745523557":"- Square root","1746051371":"Download the app","1746273643":"Moving Average Convergence Divergence","1747501260":"Sell conditions","1747674345":"Please use `.` as a decimal separator for fractional numbers.","1747682136":"Contract was cancelled.","1748754976":"Run","1753082252":"This article explores the strategy integrated into Deriv Bot, a versatile trading bot designed to trade assets such as Forex, Commodities, and Derived Indices. We will delve into the strategy's core parameters, its application, and provide essential takeaways for traders looking to use the bot effectively.","1753183432":"We take all complaints seriously and aim to resolve them as quickly and fairly as possible. If you are unhappy with any aspect of our service, please let us know by submitting a complaint using the guidance below:","1753226544":"remove","1753975551":"Upload passport photo page","1754256229":"Each day, you can make up to {{ allowed_internal }} transfers between your Deriv accounts, up to {{ allowed_mt5 }} transfers between your Deriv and {{platform_name_mt5}} accounts, up to {{ allowed_ctrader }} transfers between your Deriv and {{platform_name_ctrader}} accounts, and up to {{ allowed_dxtrade }} transfers between your Deriv and {{platform_name_dxtrade}} accounts.","1756678453":"break out","1758386013":"Do not get lured to fake \"Deriv\" pages!","1761038852":"Let’s continue with providing proofs of address and identity.","1761254001":"A number","1761762171":"Restart last trade on error (bot ignores the unsuccessful trade): {{ checkbox }}","1762707297":"Phone number","1763123662":"Upload your NIMC slip.","1766212789":"Server maintenance starts at 06:00 GMT every Sunday and may last up to 2 hours. You may experience service disruption during this time.","1766993323":"Only letters, numbers, and underscores are allowed.","1768293340":"Contract value","1768861315":"Minute","1768918213":"Only letters, space, hyphen, period, and apostrophe are allowed.","1769068935":"Choose any of these exchanges to buy cryptocurrencies:","1770041368":"Experience safer logins","1771037549":"Add a Deriv real account","1771592738":"Conditional block","1772396880":"The date of birth on your document doesn’t match your profile.","1777847421":"This is a very common password","1778893716":"Click here","1779144409":"Account verification required","1779519903":"Should be a valid number.","1779801832":"Please update your password accordingly.","1779872677":"Download e-book","1780442963":"Scan the QR code to download {{ platform }}.","1780770384":"This block gives you a random fraction between 0.0 to 1.0.","1782308283":"Quick strategy","1782395995":"Last Digit Prediction","1782690282":"Blocks menu","1782703044":"Sign up","1783526986":"How do I build a trading bot?","1783740125":"Upload your selfie","1785298924":"D’Alembert formula 1","1786644593":"Supported formats: JPEG, JPG, PNG, PDF, and GIF only","1787492950":"Indicators on the chart tab are for indicative purposes only and may vary slightly from the ones on the {{platform_name_dbot}} workspace.","1788515547":"<0/>For more information on submitting a complaint with the Office of the Arbiter for Financial Services, please <1>see their guidance.","1788966083":"01-07-1999","1789273878":"Payout per point","1789497185":"Make sure your passport details are clear to read, with no blur or glare","1791432284":"Search for country","1791971912":"Recent","1792037169":"To avoid delays, enter your <0>name and <0>date of birth exactly as they appear on your {{document_name}}.","1793913365":"To deposit money, please switch to your {{currency_symbol}} account.","1794815502":"Download your transaction history.","1796787905":"Please upload the following document(s).","1798943788":"You can only make deposits.","1801093206":"Get candle list","1801270786":"Ready to automate your trading strategy without writing any code? You’ve come to the right place.","1801927731":"{{platform_name_dxtrade}} accounts","1803338729":"Choose what type of contract you want to trade. For example, for the Rise/Fall trade type you can choose one of three options: Rise, Fall, or Both. Selected option will determine available options for the Purchase block.","1804620701":"Expiration","1804789128":"{{display_value}} Ticks","1806017862":"Max. ticks","1808058682":"Blocks are loaded successfully","1808867555":"This block uses the variable “i” to control the iterations. With each iteration, the value of “i” is determined by the items in a given list.","1810217569":"Please refresh this page to continue.","1811109068":"Jurisdiction","1811138041":"Enter a value from {{ value }} to 9.","1811343027":"2. Select your Martingale multiplier. In this example, it is 2.","1811972349":"Market","1811973475":"Returns a specific character from a given string","1812006199":"Identity verification","1812582011":"Connecting to server","1813700208":"Boom 300 Index","1813958354":"Remove comment","1815034361":"alphabetic","1815905959":"DTrader, DBot, SmartTrader, and Binary Bot","1815995250":"Buying contract","1817006592":"All trade types","1817154864":"This block gives you a random number from within a set range.","1820242322":"e.g. United States","1820332333":"Top up","1821818748":"Enter Driver License Reference number","1823177196":"Most popular","1824193700":"This block gives you the last digit of the latest tick value.","1824292864":"Call","1827607208":"File not uploaded.","1828370654":"Onboarding","1830520348":"{{platform_name_dxtrade}} Password","1831847842":"I confirm that the name and date of birth above match my chosen identity document (see below)","1833499833":"Proof of identity documents upload failed","1836767074":"Search payment agent name","1837533589":"Stop Loss","1837762008":"Please submit your proof of identity and proof of address to verify your account in your account settings to access the cashier.","1839021527":"Please enter a valid account number. Example: CR123456789","1840721160":"Deriv MT5 latest password requirements","1840865068":"set {{ variable }} to Simple Moving Average Array {{ dummy }}","1841788070":"Palladium/USD","1841996888":"Daily loss limit","1842266423":"back","1843336754":"Select document","1843658716":"If you select \"Only Downs\", you win the payout if consecutive ticks fall successively after the entry spot. No payout if any tick rises or is equal to any of the previous ticks.","1845598565":"The second session concludes upon reaching the aim of one unit of potential profit per session, equivalent to 1 USD. If trading continues, a new session will commence again.","1845892898":"(min: {{min_stake}} - max: {{max_payout}})","1846266243":"This feature is not available for demo accounts.","1846587187":"You have not selected your country of residence","1846588117":"Your contract will be closed automatically when your loss reaches {{stop_out_percentage}}% of your stake.","1849484058":"Any unsaved changes will be lost.","1850031313":"- Low: the lowest price","1850132581":"Country not found","1850659345":"- Payout: the payout of the contract","1851052337":"Place of birth is required.","1851776924":"upper","1854480511":"Cashier is locked","1854874899":"Back to list","1854909245":"Multiplier:","1855566768":"List item position","1856485118":"Please <0>resubmit your proof of address to transfer funds between MT5 and Deriv accounts.","1856755117":"Pending action required","1858251701":"minute","1859308030":"Give feedback","1861688160":"Deposit, transfer, trade","1863053247":"Please upload your identity document.","1863731653":"To receive your funds, contact the payment agent","1865525612":"No recent transactions.","1866244589":"The entry spot is the first tick for High/Low Ticks.","1866811212":"Deposit in your local currency via an authorised, independent payment agent in your country.","1867217564":"Index must be a positive integer","1867783237":"High-to-Close","1869315006":"See how we protect your funds to unlock the cashier.","1869486036":"You receive a <0>payout at <0>expiry if the spot price never touches or breaches the <0>barrier during the contract period. If it does, your contract will be terminated early.","1869787212":"Even","1870933427":"Crypto","1871196637":"True if the result of the last trade matches the selection","1871377550":"Do you offer pre-built trading bots on Deriv Bot?","1871664426":"Note","1873376454":"This is a price level that you choose. If this barrier is ever crossed, your contract would be terminated.","1874481756":"Use this block to purchase the specific contract you want. You may add multiple Purchase blocks together with conditional blocks to define your purchase conditions. This block can only be used within the Purchase conditions block.","1874737957":"To trade multipliers, get a Deriv Apps account first.","1874756442":"BVI","1875090343":"Choose a date range","1875702561":"Load or build your bot","1876015808":"Social Security and National Insurance Trust","1876325183":"Minutes","1876333357":"Tax Identification Number is invalid.","1877225775":"Your proof of address is verified","1877832150":"# from end","1878172674":"No, we don't. However, you'll find quick strategies on Deriv Bot that'll help you build your own trading bot for free.","1878189977":"The Martingale strategy involves increasing your stake after each loss to recoup prior losses with a single successful trade.","1879042430":"Appropriateness Test, WARNING:","1879412976":"Profit amount: <0>{{profit}}","1879651964":"<0>Pending verification","1880029566":"Australian Dollar","1880097605":"prompt for {{ string_or_number }} with message {{ input_text }}","1880227067":"Submit passport photo pages","1880377568":"An example of D’Alembert strategy","1880875522":"Create \"get %1\"","1881018702":"hour","1881380263":"Total assets in your account.","1881587673":"Total stake since you last cleared your stats.","1882825238":"Restart trading conditions","1883531976":"Clerks","1885708031":"#","1887257727":"R is the number of rounds a trader can sustain given a specific loss threshold.","1887925280":"The document must be recent and include your name and address:","1889357660":"Enter a value in minutes, up to 60480 minutes (equivalent to 6 weeks).","1890171328":"By clicking Accept below and proceeding with the Account Opening you should note that you may be exposing yourself to risks (which may be significant, including the risk of loss of the entire sum invested) that you may not have the knowledge and experience to properly assess or mitigate.","1890332321":"Returns the number of characters of a given string of text, including numbers, spaces, punctuation marks, and symbols.","1893869876":"(lots)","1894667135":"Please verify your proof of address","1896269665":"CFDs on derived and financial instruments.","1899898605":"Maximum size: 8MB","1902547203":"MetaTrader 5 MacOS app","1903437648":"Blurry photo detected","1904665809":"The Reverse Martingale strategy in trading may offer substantial gains but also comes with significant risks. With your selected strategy, Deriv Bot provides automated trading with risk management measures like setting initial stake, stake size, maximum stake, profit threshold and loss threshold. It's crucial for traders to assess their risk tolerance, practice in a demo account, and understand the strategy before trading with real money.","1905032541":"We're now ready to verify your identity","1905589481":"If you want to change your account currency, please contact us via <0>live chat.","1906213000":"Our system will finish any Deriv Bot trades that are running, and Deriv Bot will not place any new trades.","1906639368":"If this is the first time you try to create a password, or you have forgotten your password, please reset it.","1907423697":"Earn more with Deriv API","1907499654":"Deriv App","1907899646":"Take profit can't be adjusted for ongoing accumulator contracts.","1908023954":"Sorry, an error occurred while processing your request.","1908239019":"Make sure all of the document is in the photo","1908686066":"Appropriateness Test Warning","1909647105":"TRX/USD","1909769048":"median","1910533633":"Get a real account to deposit money and start trading.","1913777654":"Switch account","1914014145":"Today","1914270645":"Default Candle Interval: {{ candle_interval_type }}","1914725623":"Upload the page that contains your photo.","1916129921":"Reverse Martingale","1917178459":"Bank Verification Number","1917523456":"This block sends a message to a Telegram channel. You will need to create your own Telegram bot to use this block.","1918796823":"Please enter a stop loss amount.","1918832194":"No experience","1919030163":"Tips to take a good selfie","1919296368":"2. Select your unit. In this example, it is 2 units or 2 USD.","1919594496":"{{website_name}} is not affiliated with any payment agents. Customers deal with payment agents at their sole risk. Customers are advised to check the credentials of payment agents and the accuracy of any information about payment agents (on {{website_name}} or elsewhere) before using their services.","1919694313":"To start trading, transfer funds from your Deriv account into this account.","1920217537":"Compare","1920468180":"How to use the SMA block","1921914669":"Deposit with Deriv P2P","1922529883":"Boom 1000 Index","1922955556":"Use a longer keyboard pattern with more turns","1924365090":"Maybe later","1924765698":"Place of birth*","1928930389":"GBP/NOK","1929694162":"Compare accounts","1930899934":"Tether","1931659123":"Run on every tick","1931884033":"It seems that your date of birth in the document is not the same as your Deriv profile. Please update your date of birth in the <0>Personal details page to solve this issue.","1934450653":"For <0>Contract type, set it to Both.","1938327673":"Deriv {{platform}} <0>{{is_demo}}","1939014728":"How do I remove blocks from the workspace?","1939902659":"Signal","1940408545":"Delete this token","1941915555":"Try later","1943440862":"Calculates Bollinger Bands (BB) list from a list with a period","1944204227":"This block returns current account balance.","1947527527":"1. This link was sent by you","1948092185":"GBP/CAD","1949719666":"Here are the possible reasons:","1950413928":"Submit identity documents","1955219734":"Town/City*","1957759876":"Upload identity document","1958788790":"This is the amount you’ll receive at expiry for every point of change in the underlying price, if the spot price never touches or breaches the barrier throughout the contract duration.","1958807602":"4. 'Table' takes an array of data, such as a list of candles, and displays it in a table format.","1959678342":"Highs & Lows","1960240336":"first letter","1964165648":"Connection lost","1965916759":"Asian options settle by comparing the last tick with the average spot over the period.","1966023998":"2FA enabled","1966281100":"Console {{ message_type }} value: {{ input_message }}","1966855430":"Account already exists","1968025770":"Bitcoin Cash","1968077724":"Agriculture","1968368585":"Employment status","1970060713":"You’ve successfully deleted a bot.","1971898712":"Add or manage account","1973536221":"You have no open positions yet.","1973910243":"Manage your accounts","1974273865":"This scope will allow third-party apps to view your account activity, settings, limits, balance sheets, trade purchase history, and more.","1978218112":"Google Authenticator","1981940238":"This complaints policy, which may change from time to time, applies to your account(s) registered with {{legal_entity_name_svg}} and {{legal_entity_name_v}}.","1982790875":"Upgrade your <0/><1>{{account_title}} {{platform}} account(s)","1982796981":"Declarations","1982912252":"Relative Strength Index (RSI) from a list with a period","1983001416":"Define your trade options such as multiplier and stake. This block can only be used with the multipliers trade type. If you select another trade type, this block will be replaced with the Trade options block.","1983358602":"This policy, which may change from time to time, applies to your account registered with {{legal_entity_name}}.","1983387308":"Preview","1983480826":"Sign in","1983544897":"P.O. Box is not accepted in address","1983676099":"Please check your email for details.","1984700244":"Request an input","1984742793":"Uploading documents","1985366224":"Each day, you can make up to {{ allowed_internal }} transfers between your Deriv accounts and up to {{ allowed_mt5 }} transfers between your Deriv and {{platform_name_mt5}} accounts.","1985637974":"Any blocks placed within this block will be executed at every tick. If the default candle interval is set to 1 minute in the Trade Parameters root block, the instructions in this block will be executed once every minute. Place this block outside of any root block.","1986322868":"When your loss reaches or exceeds this amount, your trade will be closed automatically.","1986498784":"BTC/LTC","1987080350":"Demo","1987447369":"Your cashier is locked","1988153223":"Email address","1988302483":"Take profit:","1990331072":"Proof of ownership","1990735316":"Rise Equals","1991055223":"View the market price of your favourite assets.","1991448657":"Don't know your tax identification number? Click <0>here to learn more.","1991524207":"Jump 100 Index","1994023526":"The email address you entered had a mistake or typo (happens to the best of us).","1994558521":"The platforms aren’t user-friendly.","1994600896":"This block requires a list of candles as an input parameter.","1995023783":"First line of address*","1996767628":"Please confirm your tax information.","1997138507":"If the last tick is equal to the average of the ticks, you don't win the payout.","1997313835":"Your stake will continue to grow as long as the current spot price remains within a specified <0>range from the <0>previous spot price. Otherwise, you lose your stake and the trade is terminated.","1999213036":"Enhanced security is just a tap away.","1999346412":"For faster verification, input the same address here as in your proof of address document (see section below)","2001222130":"Check your spam or junk folder. If it's not there, try resending the email.","2001361785":"1. Start with the initial stake. Let’s say 1 USD.","2001717886":"Demo Standard","2004052487":"Estimating the lifespan of your trades","2007028410":"market, trade type, contract type","2010759971":"Uploads successful","2010866561":"Returns the total profit/loss","2011609940":"Please input number greater than 0","2011808755":"Purchase Time","2012139674":"Android: Google password manager.","2014536501":"Card number","2014590669":"Variable '{{variable_name}}' has no value. Please set a value for variable '{{variable_name}}' to notify.","2017672013":"Please select the country of document issuance.","2018044371":"Multipliers let you trade with leverage and limit your risk to your stake. <0>Learn more","2019596693":"The document was rejected by the Provider.","2020545256":"Close your account?","2021037737":"Please update your details to continue.","2021161151":"Watch this video to learn how to build a trading bot on Deriv Bot. Also, check out this blog post on building a trading bot.","2023546580":"Your account will be available for trading once the verification of your account is complete.","2023659183":"Student","2023762268":"I prefer another trading website.","2025339348":"Move away from direct light — no glare","2027441253":"Why do we collect this?","2027625329":"Simple Moving Average Array (SMAA)","2027638150":"Upgrade","2027696535":"Tax information","2028163119":"EOS/USD","2029237955":"Labuan","2030018735":"RSI is a technical analysis tool that helps you identify the market trend. It will give you a value from 0 to 100. An RSI value of 70 and above means that the asset is overbought and the current trend may reverse, while a value of 30 and below means that the asset is oversold.","2030045667":"Message","2033648953":"This block gives you the specified candle value for a selected time interval.","2034803607":"You must be 18 years old and above.","2035258293":"Start trading with us","2035925727":"sort {{ sort_type }} {{ sort_direction }} {{ input_list }}","2036578466":"Should be {{value}}","2037665157":"Expand All Blocks","2037906477":"get sub-list from #","2038562422":"TIN is required.","2039198937":"Maximum stake: The maximum amount you are willing to pay to enter a single trade. The stake for your next trade will reset to the initial stake if it exceeds this value. This is an optional risk management parameter.","2042023623":"We’re reviewing your documents. This should take about 5 minutes.","2042050260":"- Purchase price: the purchase price (stake) of the contract","2042115724":"Upload a screenshot of your account and personal details page with your name, account number, phone number, and email address.","2044086432":"The close is the latest tick at or before the end time. If you selected a specific end time, the end time is the selected time.","2046273837":"Last tick","2046577663":"Import or choose your bot","2048110615":"Email address*","2048134463":"File size exceeded.","2049386104":"We need you to submit these in order to get this account:","2050170533":"Tick list","2051558666":"View transaction history","2052022586":"To enhance your MT5 account security we have upgraded our password policy.","2054889300":"Create \"%1\"","2055317803":"Copy the link to your mobile browser","2056369950":"<0>To complete your Wallet setup, log out and then log in again.","2056526458":"Get real account","2057082550":"Accept our updated <0>terms and conditions","2057419639":"Exit Spot","2059365224":"Yes, you can get started with a pre-built bot using the Quick strategy feature. You’ll find some of the most popular trading strategies here: Martingale, D'Alembert, and Oscar's Grind. Just select the strategy, enter your trade parameters, and your bot will be created for you. You can always tweak the parameters later.","2059753381":"Why did my verification fail?","2060873863":"Your order {{order_id}} is complete","2062912059":"function {{ function_name }} {{ function_params }}","2063812316":"Text Statement","2063815003":"Ready to enable Wallets","2063890788":"Cancelled","2066978677":"{{formatted_opening_time}} (GMT) on {{opening_day}},<0 /> {{opening_date}}.","2067903936":"Driving licence","2070002739":"Don’t accept","2070345146":"When opening a leveraged CFD trade.","2070518923":"Import your bot or tap Quick Strategies to choose from the ready-to-use bot templates.","2070752475":"Regulatory Information","2070858497":"Your document appears to be a screenshot.","2071043849":"Browse","2074207096":"How to create a passkey?","2074235904":"Last name is required.","2074497711":"The Telegram notification could not be sent","2074713563":"4.2. Submission of a complaint","2079925695":"Unit: The number of units that are added in the event of a trade resulting in loss or the number of units removed in the event of a trade resulting in profit. For example, if the unit is set at 2, the stake increases or decreases by two times the initial stake of 1 USD, meaning it changes by 2 USD.","2080553498":"3. Get the chat ID using the Telegram REST API (read more: https://core.telegram.org/bots/api#getupdates)","2080829530":"Sold for: {{sold_for}}","2081622549":"Must be a number higher than {{ min }}","2082533832":"Yes, delete","2084693624":"Converts a string representing a date/time string into seconds since Epoch. Example: 2019-01-01 21:03:45 GMT+0800 will be converted to 1546347825. Time and time zone offset are optional.","2085387371":"Must be numbers, letters, and special characters . , ' -","2085602195":"- Entry value: the value of the first tick of the contract","2086048243":"Certificate of incorporation","2086792088":"Both barriers should be relative or absolute","2088344208":"Forex (standard), stock indices, commodities, cryptocurrencies, stocks, ETFs, synthetic indices, basket indices and derived FX","2088735355":"Your session and login limits","2089087110":"Basket indices","2089395053":"Unit","2089581483":"Expires on","2090650973":"The spot price may change by the time your order reaches our servers. When this happens, your payout may be affected.","2091671594":"Status","2093675079":"- Close: the closing price","2096014107":"Apply","2096456845":"Date of birth*","2097170986":"About Tether (Omni)","2097381850":"Calculates Simple Moving Average line from a list with a period","2097815211":"Number of rounds (R) = 10","2097932389":"Upload 2 separate screenshots from the personal details page and the account page via <0>https://app.astropay.com/profile","2099488590":"Changes to your Deriv MT5 login","2100713124":"account","2100912278":"4. If a trade ends in a loss, the stake for the following trade will be reset to the initial stake amount of 1 USD.","2101972779":"This is the same as the above example, using a tick list.","2102572780":"Length of digit code must be 6 characters.","2104115663":"Last login","2104364680":"Please switch to your demo account to run your Deriv Bot.","2104397115":"Please go to your account settings and complete your personal details to enable deposits and withdrawals.","2107381257":"Scheduled cashier system maintenance","2107882050":"The back of your document appears to be missing. Please include both sides of your identity document.","2110365168":"Maximum number of trades reached","2111015970":"This block helps you check if your contract can be sold. If your contract can be sold, it returns “True”. Otherwise, it returns an empty string.","2111528352":"Creating a variable","2112119013":"Take a selfie showing your face","2112175277":"with delimiter","2113321581":"Add a Deriv Gaming account","2114766645":"Some trade types are unavailable for {{symbol}}.","2115223095":"Loss","2117165122":"1. Create a Telegram bot and get your Telegram API token. Read more on how to create bots in Telegram here: https://core.telegram.org/bots#6-botfather","2117489390":"Auto update in {{ remaining }} seconds","2118292085":"<0>Note: You’ll receive an email when your deposit starts being processed.","2119449126":"Example output of the below example will be:","2119710534":"FAQ","2121227568":"NEO/USD","2122152120":"Assets","2127564856":"Withdrawals are locked","2128919448":"We’ll offer to buy your contract at this price should you choose to sell it before its expiry. This is based on several factors, such as the current spot price. We won’t offer a contract value if the remaining duration is below 15 seconds or if the contract duration is in ticks.","2129807378":"Update profile","2133075559":"This means after 10 rounds of consecutive losses, this trader will lose 100 USD. This reaches the loss threshold of 100 USD, stopping the bot.","2133451414":"Duration","2133470627":"This block returns the potential payout for the selected trade type. This block can be used only in the \"Purchase conditions\" root block.","2135563258":"Forex trading frequency","2136246996":"Selfie uploaded","2136480755":"Some details in your document appear to be invalid, missing, or unclear.","2137901996":"This will clear all data in the summary, transactions, and journal panels. All counters will be reset to zero.","2137993569":"This block compares two values and is used to build a conditional structure.","2138861911":"Scans and photocopies are not accepted","2139171480":"Reset Up/Reset Down","2139362660":"left side","2141055709":"New {{type}} password","2143803283":"Purchase Error","2144609616":"If you select \"Reset-Down”, you win the payout if the exit spot is strictly lower than either the entry spot or the spot at reset time.","2145690912":"Income Earning","2145995536":"Create new account","2146336100":"in text %1 get %2","2146698770":"Pro tip: You can also click and drag out the desired block","2146892766":"Binary options trading experience","2147244655":"How do I import my own trading bot into Deriv Bot?","-931052769":"Submit verification","-1004605898":"Tips","-1938142055":"Documents uploaded","-448090287":"The link only works on mobile devices","-1244287721":"Something's gone wrong","-241258681":"You'll need to restart your verification on your computer","-929254273":"Get secure link","-2021867851":"Check back here to finish the submission","-1547069149":"Open the link and complete the tasks","-1767652006":"Here's how to do it:","-277611959":"You can now return to your computer to continue","-724178625":"Make sure full document is visible","-1519380038":"Glare detected","-1895280620":"Make sure your card details are clear to read, with no blur or glare","-1464447919":"Make sure your permit details are clear to read, with no blur or glare","-1436160506":"Make sure details are clear to read, with no blur or glare","-759124288":"Close","-759118956":"Redo","-753375398":"Enlarge image","-1042933881":"Driver's license","-1503134764":"Face photo page","-1335343167":"Sorry, no mobile phone bills","-699045522":"Documents you can use to verify your identity","-543666102":"It must be an official photo ID","-903877217":"These are the documents most likely to show your current home address","-1356835948":"Choose document","-1364375936":"Select a %{country} document","-401586196":"or upload photo – no scans or photocopies","-3110517":"Take a photo with your phone","-2033894027":"Submit identity card (back)","-20684738":"Submit license (back)","-1359585500":"Submit license (front)","-106779602":"Submit residence permit (back)","-1287247476":"Submit residence permit (front)","-1954762444":"Restart the process on the latest version of Safari","-261174676":"Must be under 10MB.","-685885589":"An error occurred while loading the component","-502539866":"Your face is needed in the selfie","-1377968356":"Please try again","-1226547734":"Try using a JPG or PNG file","-849068301":"Loading...","-1730346712":"Loading","-1849371752":"Check that your number is correct","-309848900":"Copy","-1424436001":"Send link","-1093833557":"How to scan a QR code","-1408210605":"Point your phone’s camera at the QR code","-1773802163":"If it doesn’t work, download a QR code scanner from Google Play or the App Store","-109026565":"Scan QR code","-1644436882":"Get link via SMS","-1667839246":"Enter mobile number","-1533172567":"Enter your mobile number:","-1352094380":"Send this one-time link to your phone","-28974899":"Get your secure link","-359315319":"Continue","-826420669":"Make sure","-1279080293":"2. Your desktop window stays open","-102776692":"Continue with the verification","-89152891":"Take a photo of the back of your card","-1646367396":"Take a photo of the front of your card","-1350855047":"Take a photo of the front of your license","-2119367889":"Take a photo using the basic camera mode instead","-342915396":"Take a photo","-419040068":"Passport photo page","-1354983065":"Refresh","-1925063334":"Recover camera access to continue face verification","-54784207":"Camera access is denied","-1392699864":"Allow camera access","-269477401":"Provide the whole document page for best results","-864639753":"Upload back of card from your computer","-1309771027":"Upload front of license from your computer","-1722060225":"Take photo","-565732905":"Selfie","-1703181240":"Check that it is connected and functional. You can also continue verification on your phone","-2043114239":"Camera not working?","-2029238500":"It may be disconnected. Try using your phone instead.","-468928206":"Make sure your device's camera works","-466246199":"Camera not working","-698978129":"Remember to press stop when you're done. Redo video actions","-538456609":"Looks like you took too long","-781816433":"Photo of your face","-1471336265":"Make sure your selfie clearly shows your face","-1375068556":"Check selfie","-1914530170":"Face forward and make sure your eyes are clearly visible","-776541617":"We'll compare it with your document","-478752991":"Your link will expire in one hour","-1859729380":"Keep this window open while using your mobile","-1283761937":"Resend link","-629011256":"Don't refresh this page","-1005231905":"Once you've finished we'll take you to the next step","-542134805":"Upload photo","-1462975230":"Document example","-1472844935":"The photo should clearly show your document","-1120954663":"First name*","-1659980292":"First name","-962979523":"Your {{ field_name }} as in your identity document","-1416797980":"Please enter your {{ field_name }} as in your official identity documents.","-1466268810":"Please remember that it is your responsibility to keep your answers accurate and up to date. You can update your personal details at any time in your <0>account settings.","-32386760":"Name","-766265812":"first name","-1857534296":"John","-1282749116":"last name","-1485480657":"Other details","-1784741577":"date of birth","-1702919018":"Second line of address (optional)","-1315410953":"State/Province","-2040322967":"Citizenship","-344715612":"Employment status*","-1543016582":"I hereby confirm that the tax information I provided is true and complete. I will also inform {{legal_entity_name}} about any changes to this information.","-946282997":"Additional information","-1315571766":"Place of birth","-789291456":"Tax residence*","-1692219415":"Tax residence","-1903720068":"The country in which you meet the criteria for paying taxes. Usually the country in which you physically reside.","-651516152":"Tax Identification Number","-1387062433":"Account opening reason","-222283483":"Account opening reason*","-307865807":"Risk Tolerance Warning","-690100729":"Yes, I understand the risk.","-2010628430":"CFDs and other financial instruments come with a high risk of losing money rapidly due to leverage. You should consider whether you understand how CFDs and other financial instruments work and whether you can afford to take the high risk of losing your money. <0/><0/> To continue, you must confirm that you understand your capital is at risk.","-863770104":"Please note that by clicking ‘OK’, you may be exposing yourself to risks. You may not have the knowledge or experience to properly assess or mitigate these risks, which may be significant, including the risk of losing the entire sum you have invested.","-684271315":"OK","-1292808093":"Trading Experience","-153346659":"Upload your selfie.","-602131304":"Passport number","-1051213440":"Upload the front and back of your identity card.","-1600807543":"First, enter your identity card number and the expiry date.","-1139923664":"Next, upload the front and back of your identity card.","-783705755":"Upload the front of your identity card.","-566750665":"NIMC slip and proof of age","-1465944279":"NIMC slip number","-429612996":"Next, upload both of the following documents.","-376981174":"Upload your proof of age: birth certificate or age declaration document.","-612174191":"First line of address is required","-242734402":"Only {{max}} characters, please.","-378415317":"State is required","-1784470716":"State is not in a proper format","-1699820408":"Please enter a {{field_name}} under {{max_number}} characters.","-1575567374":"postal/ZIP code","-816263501":"Only letters, numbers, space and hyphen are allowed.","-755626951":"Complete your address details","-1024240099":"Address","-1534917661":"Select your preferred currency","-1027595143":"Less than $25,000","-40491332":"$25,000 - $50,000","-1139806939":"$50,001 - $100,000","-996132458":"Construction","-915003867":"Health","-1430012453":"Information & Communications Technology","-987824916":"Science & Engineering","-146630682":"Social & Cultural","-761306973":"Manufacturing","-1631552645":"Professionals","-474864470":"Personal Care, Sales and Service Workers","-1129355784":"Agricultural, Forestry and Fishery Workers","-1242914994":"Craft, Metal, Electrical and Electronics Workers","-1317824715":"Cleaners and Helpers","-1592729751":"Mining, Construction, Manufacturing and Transport Workers","-1030759620":"Government Officers","-2137323480":"Company Ownership","-1590574533":"Divorce Settlement","-1667683002":"Inheritance","-1237843731":"Investment Income","-777506574":"Sale of Property","-654781670":"Primary","-1717373258":"Secondary","-1156937070":"$500,001 - $1,000,000","-315534569":"Over $1,000,000","-2068544539":"Salaried Employee","-531314998":"Investments & Dividends","-1235114522":"Pension","-1298056749":"State Benefits","-449943381":"Savings & Inheritance","-477761028":"Voter ID","-1466346630":"CPF","-1161338910":"First name is required.","-1629185446":"Enter no more than 50 characters.","-1281693513":"Date of birth is required.","-26599672":"Citizenship is required","-912174487":"Phone is required.","-673765468":"Letters, numbers, spaces, periods, hyphens and forward slashes only.","-212167954":"Tax Identification Number is not properly formatted.","-1823540512":"Personal details","-1227878799":"Speculative","-1174064217":"Mr","-855506127":"Ms","-204765990":"Terms of use","-739367071":"Employed","-626752657":"0-1 year","-532014689":"1-2 years","-1001024004":"Over 3 years","-790513277":"6-10 transactions in the past 12 months","-580085300":"11-39 transactions in the past 12 months","-1116008222":"You should enter 9-35 numbers.","-1995979930":"First line of address is required.","-703454156":"Please enter a Postal/ZIP code under 20 characters.","-2113555886":"Only letters, numbers, space, and hyphen are allowed.","-1103497546":"Tax return","-700600899":"Business proof of address","-1073862586":"Memorandum","-1823328095":"Authorization letter","-397487797":"Enter your full card number","-1376950117":"That file format isn't supported. Please upload .pdf, .png, .jpg, or .jpeg files only.","-612752984":"These are default limits that we apply to your accounts.","-1498206510":"Account limits","-1411635770":"Learn more about account limits","-1340125291":"Done","-1101543580":"Limit","-858297154":"Represents the maximum amount of cash that you may hold in your account. If the maximum is reached, you will be asked to withdraw funds.","-976258774":"Not set","-1182362640":"Represents the maximum aggregate payouts on outstanding contracts in your portfolio. If the maximum is attained, you may not purchase additional contracts without first closing out existing positions.","-1781293089":"Maximum aggregate payouts on open positions","-1412690135":"*Any limits in your Self-exclusion settings will override these default limits.","-1598751496":"Represents the maximum volume of contracts that you may purchase in any given trading day.","-173346300":"Maximum daily turnover","-138380129":"Total withdrawal allowed","-1502578110":"Your account is fully authenticated and your withdrawal limits have been lifted.","-506122621":"Please take a moment to update your information now.","-1106259572":"Don't know your tax identification number? <1 />Click <0>here to learn more.","-252665911":"Place of birth{{required}}","-859814496":"Tax residence{{required}}","-237940902":"Tax Identification number{{required}}","-919191810":"Please fill in tax residence.","-270569590":"Intended use of account{{required}}","-2120290581":"Intended use of account is required.","-594456225":"Second line of address","-1964954030":"Postal/ZIP Code","-1541554430":"Next","-71696502":"Previous","-516397235":"Be careful who you share this token with. Anyone with this token can perform the following actions on your account behalf","-989216986":"Add accounts","-617480265":"Delete token","-316749685":"Are you sure you want to delete this token?","-955038366":"Copy this token","-1668692965":"Hide this token","-1661284324":"Show this token","-1076138910":"Trade","-1666909852":"Payments","-488597603":"Trading information","-605778668":"Never","-1628008897":"Token","-1238499897":"Last Used","-2087317410":"Oops, something went wrong.","-184202848":"Upload file","-370334393":"Click here to browse your files.","-863586176":"Drag and drop a file or click to browse your files.","-723198394":"File size should be 8MB or less","-1948369500":"File uploaded is not supported","-1040865880":"Drop files here..","-1100235269":"Industry of employment","-684388823":"Estimated net worth","-509054266":"Anticipated annual turnover","-1117345066":"Choose the document type","-1634507018":"Enter your {{document_name}}","-1237846864":"Verify again","-39187636":"{{index}}.","-337620257":"Switch to real account","-2120454054":"Add a real account","-38915613":"Unsaved changes","-2137450250":"You have unsaved changes. Are you sure you want to discard changes and leave this page?","-1067082004":"Leave Settings","-1113902570":"Details","-2142540205":"It appears that the address in your document doesn’t match the address in your Deriv profile. Please update your personal details now with the correct address.","-1451334536":"Continue trading","-251603364":"Your document for proof of address is expired. <0/>Please submit again.","-1425489838":"Proof of address verification not required","-1008641170":"Your account does not need address verification at this time. We will inform you if address verification is required in the future.","-60204971":"We could not verify your proof of address","-1944264183":"To continue trading, you must also submit a proof of identity.","-1088324715":"We’ll review your documents and notify you of its status within 1 - 3 working days.","-329713179":"Ok","-2145244263":"This field is required","-1500958859":"Verify","-839094775":"Back","-1813671961":"Your identity verification failed because:","-2097808873":"We were unable to verify your ID with the details you provided. ","-1652371224":"Your profile is updated","-504784172":"Your document has been submitted","-1391934478":"Your ID is verified. You will also need to submit proof of your address.","-118547687":"ID verification passed","-200989771":"Go to personal details","-1358357943":"Please check and update your postal code before submitting proof of identity.","-1401994581":"Your personal details are missing","-2004327866":"Please select a valid country of document issuance.","-1664159494":"Country","-1044962593":"Upload Document","-749870311":"Please contact us via <0>live chat.","-1084991359":"Proof of identity verification not required","-1981334109":"Your account does not need identity verification at this time. We will inform you if identity verification is required in the future.","-182918740":"Your proof of identity submission failed because:","-155705811":"A clear colour photo or scanned image","-246893488":"JPEG, JPG, PNG, PDF, or GIF","-1454880310":"Must be valid for at least 6 months","-1949501500":"First, enter your {{label}}.","-100534371":"Before uploading, please ensure that you’re facing forward in the selfie, your face is within the frame, and your eyes are clearly visible even if you’re wearing glasses.","-1529523673":"Confirm and upload","-705047643":"Sorry, an error occured. Please select another file.","-1664309884":"Tap here to upload","-1725454783":"Failed","-841187054":"Try Again","-856213726":"You must also submit a proof of address.","-552371330":"We were unable to verify your income. <0 /> Please check the email we've sent you for further information.","-978467455":"Limit reached","-361316523":"You have reached the maximum number of allowed attempts for submitting proof of income. <0 /> Please check the email we've sent you for further information.","-1785967427":"We'll review your documents and notify you of its status within 7 working days.","-987011273":"Your proof of ownership isn't required.","-808299796":"You are not required to submit proof of ownership at this time. We will inform you if proof of ownership is required in the future.","-179726573":"We’ve received your proof of ownership.","-813779897":"Proof of ownership verification passed.","-1389323399":"You should enter {{min_number}}-{{max_number}} characters.","-47815161":"Please include at least 1 special character such as ( _ @ ? ! / # ) in your password.","-1313806160":"Please request a new password and check your email for the new token.","-1598167506":"Success","-1077809489":"You have a new {{platform}} password to log in to your {{platform}} accounts on the web and mobile apps.","-2068479232":"{{platform}} password","-507633532":"Your password must contain between 8-16 characters that include uppercase and lowercase letters, and at least one number and special character such as ( _ @ ? ! / # ).","-2005211699":"Create","-1597186502":"Reset {{platform}} password","-638756912":"Black out digits 7 to 12 of the card number that’s shown on the front of your debit/credit card.⁤","-996691262":"We’ve introduced these limits to encourage <0>responsible trading. They are optional, and you can adjust them anytime.","-2079276011":"These limits apply to your multipliers trades only. For example, <0>maximum total loss refers to the losses on your multipliers trades.","-2116570030":"If you want to adjust your limits, <0>contact us via live chat. We’ll make the adjustments within 24 hours.","-1389915983":"You decide how much and how long to trade. You can take a break from trading whenever you want. This break can be from 6 weeks to 5 years. When it’s over, you can extend it or log in to resume trading. If you don’t want to set a specific limit, leave the field empty.","-1031814119":"About trading limits and self-exclusion","-183468698":"Trading limits and self-exclusion","-1088698009":"These self-exclusion limits help you control the amount of money and time you spend trading on {{platform_name_trader}}, {{platform_name_dbot}}, {{platform_name_smarttrader}} and {{platform_name_bbot}} on Deriv. The limits you set here will help you exercise <0>responsible trading.","-933963283":"No, review my limits","-1759860126":"Yes, log me out immediately","-572347855":"{{value}} mins","-313333548":"You’ll be able to adjust these limits at any time. You can reduce your limits from the <0>self-exclusion page. To increase or remove your limits, please contact our <1>Customer Support team.","-1265833982":"Accept","-2123139671":"Your stake and loss limits","-1250802290":"24 hours","-2070080356":"Max. total stake","-1545823544":"7 days","-180147209":"You will be automatically logged out from each session after this time limit.","-374553538":"Your account will be excluded from the website until this date (at least 6 months, up to 5 years).","-2105708790":"Your maximum account balance and open positions","-1960600163":"Once your account balance reaches this amount, you will not be able to deposit funds into your account.","-1073845224":"No. of open position(s)","-288196326":"Your maximum deposit limit","-568749373":"Max. deposit limit","-1617352279":"The email is in your spam folder (Sometimes things get lost there).","-547557964":"We can’t deliver the email to this address (Usually because of firewalls or filtering).","-142444667":"Please click on the link in the email to change your Deriv MT5 password.","-742748008":"Check your email and click the link in the email to proceed.","-84068414":"Still didn't get the email? Please contact us via <0>live chat.","-474419287":"FATCA declaration","-1101737402":"Please select*","-975118358":"Your account will be opened with {{legal_entity_name}}, regulated by the Malta Financial Services Authority (MFSA), and will be subject to the laws of Malta.","-2073934245":"The financial trading services offered on this site are only suitable for customers who accept the possibility of losing all the money they invest and who understand and have experience of the risk involved in the purchase of financial contracts. Transactions in financial contracts carry a high degree of risk. If the contracts you purchased expire as worthless, you will lose all your investment, which includes the contract premium.","-1035494182":"You acknowledge that, subject to the Company's discretion, applicable regulations, and internal checks being fulfilled, we will open an account for you and allow you to deposit funds during the client acceptance procedure. However, until the verification of your account is completed, you will not be able to trade, withdraw or make further deposits. If you do not provide relevant documents within 30-days, we will refund the deposited amount through the same payment method you used to deposit.","-1125193491":"Add account","-2068229627":"I am not a PEP, and I have not been a PEP in the last 12 months.","-1209644365":"I hereby confirm that my request for opening an account with Deriv Investments (Europe) Ltd is made on my own initiative.","-740157281":"Trading Experience Assessment","-1720468017":"In providing our services to you, we are required to obtain information from you in order to assess whether a given product or service is appropriate for you.","-1685104463":"* This is required","-186841084":"Change your login email","-907403572":"To change your email address, you'll first need to unlink your email address from your {{identifier_title}} account.","-1850792730":"Unlink from {{identifier_title}}","-428335668":"You will need to set a password to complete the process.","-1232613003":"<0>Verification failed. <1>Why?","-805775852":"<0>Needs verification.<1>Verify now","-1983989074":"<0>No new positions","-1196936955":"Upload a screenshot of your name and email address from the personal information section.","-1286823855":"Upload your mobile bill statement showing your name and phone number.","-1309548471":"Upload your bank statement showing your name and account details.","-1410396115":"Upload a photo showing your name and the first six and last four digits of your card number. If the card does not display your name, upload the bank statement showing your name and card number in the transaction history.","-3805155":"Upload a screenshot of either of the following to process the transaction:","-1523487566":"- your account profile section on the website","-613062596":"- the Account Information page on the app","-1718304498":"User ID","-609424336":"Upload a screenshot of your name, account number, and email address from the personal details section of the app or profile section of your account on the website.","-1954436643":"Upload a screenshot of your username on the General Information page at <0>https://onlinenaira.com/members/index.htm","-79853954":"Upload a screenshot of your account number and phone number on the Bank Account/Mobile wallet page at <0>https://onlinenaira.com/members/bank.htm","-1192882870":"Upload a screenshot of your name and account number from the personal details section.","-818898181":"Name in document doesn’t match your Deriv profile.","-310316375":"Address in document doesn’t match address you entered above.","-485368404":"Document issued more than 6-months ago.","-91160765":"Document issued more than 12-months ago.","-367016488":"Blurry document. All information must be clear and visible.","-1957076143":"Cropped document. All information must be clear and visible.","-1576856758":"An account with these details already exists. Please make sure the details you entered are correct as only one real account is allowed per client. If this is a mistake, contact us via <0>live chat.","-1792723131":"To avoid delays, enter your <0>date of birth exactly as it appears on your {{document_name}}.","-5605257":"This scope will allow third-party apps to withdraw to payment agents and make inter-account transfers for you.","-1373485333":"This scope will allow third-party apps to view your trading history.","-758221415":"This scope will allow third-party apps to open accounts for you, manage your settings and token usage, and more. ","-1629894615":"I have other financial priorities.","-844051272":"I want to stop myself from trading.","-1113965495":"I’m no longer interested in trading.","-1224285232":"Customer service was unsatisfactory.","-1231402474":"Connected apps are authorised applications associated with your account through your API token or the OAuth authorisation process. They can act on your behalf within the limitations that you have set.","-506083843":"As a user, you are responsible for sharing access and for actions that occur in your account (even if they were initiated by a third-party app on your behalf).","-831752682":"Please note that only third-party apps will be displayed on this page. Official Deriv apps will not appear here.","-915844096":"US citizenship or lawful permanent resident (green card) status","-208714573":"An “in care of” address or a “hold mail” address that is the sole address with respect to the client","-1082633433":"A power of attorney or signatory authority granted to a person with a US address.","-231863107":"No","-1858215754":"The document must be up-to-date and signed by the issuance authority.","-718917527":"Invalid or incomplete documents shall be rejected.","-1526404112":"Utility bill: electricity, water, gas, or landline phone bill.","-537552700":"Home rental agreement: valid and current agreement.","-506510414":"Date and time","-1708927037":"IP address","-189310067":"Account closed","-849320995":"Assessments","-773766766":"Email and passwords","-1144318594":"Passkeys","-1466827732":"Self exclusion","-241588481":"Login history","-966136867":"Connected apps","-213009361":"Two-factor authentication","-526636259":"Error 404","-870902742":"How much knowledge and experience do you have in relation to online trading?","-1929477717":"I have an academic degree, professional certification, and/or work experience related to financial services.","-1540148863":"I have attended seminars, training, and/or workshops related to trading.","-922751756":"Less than a year","-542986255":"None","-1337206552":"In your understanding, CFD trading allows you to","-456863190":"Place a position on the price movement of an asset where the outcome is a fixed return or nothing at all.","-1314683258":"Make a long-term investment for a guaranteed profit.","-1546090184":"How does leverage affect CFD trading?","-1636427115":"Leverage helps to mitigate risk.","-800221491":"Leverage guarantees profits.","-811839563":"Leverage lets you open large positions for a fraction of trade value, which may result in increased profit or loss.","-1185193552":"Close your trade automatically when the loss is equal to or more than a specified amount, as long as there is adequate market liquidity.","-1046354":"Close your trade automatically when the profit is equal to or more than a specified amount, as long as there is adequate market liquidity.","-1842858448":"Make a guaranteed profit on your trade.","-860053164":"When trading multipliers.","-1250327770":"When buying shares of a company.","-1222388581":"All of the above.","-1592318047":"See example","-1694758788":"Enter your document number","-1176889260":"Please select a document type.","-274764613":"Driver License Reference number","-1265050949":"identity document","-2139303636":"You may have followed a broken link, or the page has moved to a new address.","-1448368765":"Error code: {{error_code}} page not found","-254792921":"You can only make deposits at the moment. To enable withdrawals, please complete your financial assessment.","-1437017790":"Financial information","-70342544":"We’re legally obliged to ask for your financial information.","-39038029":"Trading experience","-601903492":"Forex trading experience","-1012699451":"CFD trading experience","-1894668798":"Other trading instruments experience","-1026468600":"Other trading instruments frequency","-1743024217":"Select Language","-136976514":"Country of residence*","-1124948631":"Professional Client","-259515058":"By default, all {{brand_website_name}} clients are retail clients but anyone can request to be treated as a professional client.","-1463348492":"I would like to be treated as a professional client.","-1958764604":"Email preference","-2068064150":"Get updates about Deriv products, services and events.","-1558679249":"Please make sure your information is correct or it may affect your trading experience.","-1822545742":"Ether Classic","-1334641066":"Litecoin","-1214036543":"US Dollar","-1782590355":"No currency has been set for this account","-1171226355":"Length of token name must be between {{MIN_TOKEN}} and {{MAX_TOKEN}} characters.","-1803339710":"Maximum {{MAX_TOKEN}} characters.","-408613988":"Select scopes based on the access you need.","-807767876":"Note:","-1117963487":"Name your token and click on 'Create' to generate your token.","-2116332353":"Please close your positions in the following Deriv account(s):","-2048005267":"{{number_of_positions}} position(s)","-2125635811":"Please withdraw your funds from the following {{platform_name}} account(s):","-577445413":"Please close your positions in the following {{platform_name}} account(s):","-1219849101":"Please select at least one reason","-9323953":"Remaining characters: {{remaining_characters}}","-484540402":"An error occurred","-1911549768":"Inaccessible MT5 account(s)","-1869355019":"Action required","-1030102424":"You can't trade on Deriv.","-448385353":"You can't make transactions.","-1058447223":"Before closing your account:","-912764166":"Withdraw your funds.","-60139953":"We shall delete your personal information as soon as our legal obligations are met, as mentioned in the section on Data Retention in our <0>Security and privacy policy","-2061895474":"Closing your account will automatically log you out. We shall delete your personal information as soon as our legal obligations are met.","-203298452":"Close account","-937707753":"Go Back","-771109503":"Use our powerful, flexible, and free API to build a custom trading platform for yourself or for your business.","-1815044949":"You currently don't have any third-party authorised apps associated with your account.","-1699100421":"What are connected apps?","-536187647":"Confirm revoke access?","-1357606534":"Permission","-570222048":"Revoke access","-1468863262":"{{action}}","-727433417":"{{status}}","-1814836151":"What are passkeys?","-1275937234":"Unlock your account like your phone - with biometrics, face scan or PIN.","-587750445":"Extra security layer.","-642452561":"Shields against unauthorised access and phishing.","-1654043401":"You can create one passkey per device.","-1411242065":"Where are passkeys saved?","-258752017":"What happens if my Deriv account email is changed?","-634268263":"Sign in to Deriv with your existing passkey.","-1700177761":"Create passkey","-1405679241":"Stored on: ","-567193224":"Rename","-1140319320":"Your account is now secured with a passkey.<0/>Manage your passkey through your<0/>Deriv account settings.","-592543249":"Add more passkeys","-331060101":"Passkey setup failed","-1036903080":"We’re experiencing a temporary issue in processing your request. Please try again later.","-713875531":"Enable bluetooth.","-1729774899":"Sign in to your Google or iCloud account.","-684009726":"Edit passkey","-1004529240":"Passkey name","-1728732301":"Effortless login with passkeys","-1708254107":"Enable Bluetooth.","-613368504":"Tips:","-1897886029":"Before using passkey:","-1893497054":"Only 3-30 characters allowed.","-80717068":"Apps you have linked to your <0>Deriv password:","-340060402":"Your Deriv X password is for logging in to your Deriv X accounts on the web and mobile apps.","-619126443":"Use the <0>Deriv password to log in to {{brand_website_name}} and {{platform_name_trader}}.","-623760979":"Use the <0>Deriv password to log in to {{brand_website_name}}, {{platform_name_trader}} and {{platform_name_go}}.","-459147994":"Use the <0>Deriv password to log in to {{brand_website_name}}, {{platform_name_go}}, {{platform_name_trader}}, {{platform_name_smarttrader}}, {{platform_name_dbot}} and {{platform_name_ctrader}}.","-1884902844":"Max. deposit limit per day","-545085253":"Max. deposit limit over 7 days","-1031006762":"Max. deposit limit over 30 days","-1116871438":"Max. total loss over 30 days","-2134714205":"Time limit per session","-1884271702":"Time out until","-1265825026":"Timeout time must be greater than current time.","-1332882202":"Timeout time cannot be more than 6 weeks.","-1635977118":"Exclude time cannot be less than 6 months.","-2131200819":"Disable","-200487676":"Enable","-1840392236":"That's not the right code. Please try again.","-2067796458":"Authentication code","-790444493":"Protect your account with 2FA. Each time you log in to your account, you will need to enter your password and an authentication code generated by a 2FA app on your smartphone.","-752939584":"How to set up 2FA for your Deriv account","-90649785":"Click here to copy key","-206376148":"Key copied!","-368010540":"You have enabled 2FA for your Deriv account.","-403552929":"To disable 2FA, please enter the six-digit authentication code generated by your 2FA app below:","-1043340733":"Proof of address documents upload failed","-890084320":"Save and submit","-30772747":"Your personal details have been saved successfully.","-2021135479":"This field is required.","-1002044401":"Select your document*","-1272489896":"Please complete this field.","-721346138":"The options and multipliers trading platform.","-1874136267":"The ultimate bot trading platform.","-415943890":"The legacy options trading platform.","-673722343":"The legacy bot trading platform.","-2018495421":"The mobile app for trading multipliers and accumulators.","-897826065":"The multipliers trading platform.","-2115275974":"CFDs","-1585707873":"Financial Commission","-199154602":"Vanuatu Financial Services Commission","-191165775":"Malta Financial Services Authority","-194969520":"Counterparty company","-1089385344":"Deriv (SVG) LLC","-2019617323":"Deriv (BVI) Ltd","-112814932":"Deriv (FX) Ltd","-1131400885":"Deriv Investments (Europe) Limited","-1471207907":"All assets","-781132577":"Leverage","-1591882610":"Synthetics","-543177967":"Stock indices","-362324454":"Commodities","-1959484303":"Cryptocurrencies","-1071336803":"Platform","-1879666853":"Deriv MT5","-820028470":"Options & Multipliers","-1210359945":"Transfer funds to your accounts","-1926387364":"We’ve sent your e-book to your email. You can also download it here.","-1057002564":"<0>We’re unable to upgrade you to Wallets at this time and are working to get this fixed as soon as we can. Please <1>try again<0>.","-1424352390":"<0>Wallets<1> — A smarter way to manage your funds","-280236366":"Enable now","-145462920":"Deriv cTrader","-982095728":"Get","-1790089996":"NEW!","-1473281803":"Predict the market, profit if you’re right, risk only what you put in. <0>Learn more","-2134770229":"Total assets in your Deriv Apps and Deriv MT5 CFDs demo account.","-1277942366":"Total assets","-1255879419":"Trader's Hub","-493788773":"Non-EU","-673837884":"EU","-230566990":"The following documents you submitted did not pass our checks:","-846812148":"Proof of address.","-1146027991":"If you’d like to get the {{from_account}} account, resubmit these documents.","-710685402":"No new positions","-1445744852":"You can no longer open new positions with your {{from_account}} account. Please use your {{to_account}} account to open new positions.","-1699909965":"or ","-2127865736":"Your {{from_account}} account will be archived after 30 days of inactivity. You can still access your trade history until the account is archived.","-417529381":"Your current trading account(s)","-1543281897":"Instant transfers between Wallets and trading accounts","-1415400918":"Multiple currency support","-1712363879":"Why Wallets","-348452343":"Your open trading positions will not be affected while we are setting up your wallets.","-2055865877":"Non-EU regulation","-643108528":"Non-EU and EU regulation","-1002556560":"We’re unable to complete with the Wallet upgrade. Please try again later or contact us via live chat.","-1186807402":"Transfer","-744999940":"Deriv account","-766186087":"{{trustScore}} out of 5 based on {{numberOfReviews}} reviews","-1265635180":"The products offered on our website are complex derivative products that carry a significant risk of potential loss. CFDs are complex instruments with a high risk of losing money rapidly due to leverage. 67.28% of retail investor accounts lose money when trading CFDs with this provider. You should consider whether you understand how these products work and whether you can afford to take the high risk of losing your money.","-1870909526":"Our server cannot retrieve an address.","-582721696":"The current allowed withdraw amount is {{format_min_withdraw_amount}} to {{format_max_withdraw_amount}} {{currency}}","-1975494965":"Cashier","-42592103":"Deposit cryptocurrencies","-60779216":"Withdrawals are temporarily unavailable due to system maintenance. You can make your withdrawals when the maintenance is complete.","-520142572":"Cashier is currently down for maintenance","-1552080215":"Please check back in a few minutes.<0>Thank you for your patience.","-215186732":"You’ve not set your country of residence. To access Cashier, please update your country of residence in the Personal details section in your account settings.","-1392897508":"The identification documents you submitted have expired. Please submit valid identity documents to unlock Cashier. ","-954082208":"Your cashier is currently locked. Please contact us via <0>live chat to find out how to unlock it.","-929148387":"Please set your account currency to enable deposits and withdrawals.","-2027907316":"You can make a withdrawal once the verification of your account is complete.","-541392118":"Your account has not been authenticated. Please submit your <0>proof of identity and <1>proof of address to authenticate your account and access your cashier.","-599998434":"You cannot make a fund transfer as your documents are still under review. We will notify you by email within 3 days once your verification is approved.","-247122507":"Your cashier is locked. Please complete the <0>financial assessment to unlock it.","-1443721737":"Your cashier is locked. See <0>how we protect your funds before you proceed.","-901712457":"Your access to Cashier has been temporarily disabled as you have not set your 30-day turnover limit. Please go to <0>Self-exclusion and set your 30-day turnover limit.","-166472881":"Your <0>personal details are incomplete. Please go to your account settings and complete your personal details to enable deposits and withdrawals.","-666905139":"Deposits are locked","-378858101":"Your <0>personal details are incomplete. Please go to your account settings and complete your personal details to enable deposits.","-1318742415":"Your account has not been authenticated. Please submit your <0>proof of identity and <1>proof of address to authenticate your account and request for withdrawals.","-1923809087":"Unfortunately, you can only make deposits. Please contact us via <0>live chat to enable withdrawals.","-172277021":"Cashier is locked for withdrawals","-1624999813":"It seems that you've no commissions to withdraw at the moment. You can make withdrawals once you receive your commissions.","-1077304626":"Amount ({{currency}})","-1559994981":"Approximate value","-1272778997":"We've sent you an email.","-89973258":"Resend email in {{seconds}}s","-1332236294":"Please verify your identity","-1675848843":"Error","-283017497":"Retry","-1294455996":"Deriv P2P unavailable","-1838982691":"UNKNOWN","-532693866":"Something went wrong. Please refresh the page and try again.","-1196049878":"First line of home address","-1326406485":"Postal Code/ZIP","-939625805":"Telephone","-442575534":"Email verification failed","-1459042184":"Update your personal details","-1603543465":"We can't validate your personal details because there is some information missing.","-614516651":"Need help? <0>Contact us.","-203002433":"Deposit now","-720315013":"You have no funds in your {{currency}} account","-2052373215":"Please make a deposit to use this feature.","-379487596":"{{selected_percentage}}% of available balance ({{format_amount}} {{currency__display_code}})","-1957498244":"more","-1059419768":"Notes","-285921910":"Learn more about <0>payment methods.","-190084602":"Transaction","-1995606668":"Amount","-2024290965":"Confirmations","-811190405":"Time","-728508487":"{{currency}} recent transactions","-1984478597":"The details of this transaction is available on CoinsPaid.","-316545835":"Please ensure <0>all details are <0>correct before making your transfer.","-949073402":"I confirm that I have verified the client’s transfer information.","-1752211105":"Transfer now","-1787304306":"Deriv P2P","-174976899":"P2P verification","-1705887186":"Your deposit is successful.","-142361708":"In process","-1582681840":"We’ve received your request and are waiting for more blockchain confirmations.","-1626218538":"You’ve cancelled your withdrawal request.","-1062841150":"Your withdrawal is unsuccessful due to an error on the blockchain. Please <0>contact us via live chat for more info.","-630780094":"We’re awaiting confirmation from the blockchain.","-1525882769":"Your withdrawal is unsuccessful. We've sent you an email with more information.","-298601922":"Your withdrawal is successful.","-922143389":"Deriv P2P is currently unavailable in this currency.","-1310327711":"Deriv P2P is currently unavailable in your country.","-1463156905":"Learn more about payment methods","-972283623":"Deriv P2P-V2","-685073712":"This is your <0>{{currency}} account {{loginid}}.","-1547606079":"We accept the following cryptocurrencies:","-1517325716":"Deposit via the following payment methods:","-639677539":"Buy cryptocurrencies","-1560098002":"Buy cryptocurrencies via fiat onramp","-541870313":"Deposit via payment agents","-197251450":"Don't want to trade in {{currency_code}}? You can open another cryptocurrency account.","-515809216":"Send only {{currency_name}} ({{currency_code}}) to this address.","-748636591":"A minimum deposit value of <0>{{minimum_deposit}} {{currency}} is required. Otherwise, a fee is applied.","-1589407981":"To avoid loss of funds:","-1042704302":"Make sure to copy your Deriv account address correctly into your crypto wallet.","-2108344100":"Looking for a way to buy cryptocurrencies? <0>Try Fiat onramp.","-598073640":"About Tether (Ethereum)","-275902914":"Tether on Ethereum (eUSDT)","-1188009792":"Tether on Omni Layer (USDT)","-1239329687":"Tether was originally created to use the bitcoin network as its transport protocol ‒ specifically, the Omni Layer ‒ to allow transactions of tokenised traditional currency.","-314177745":"Unfortunately, we couldn't get the address since our server was down. Please click Refresh to reload the address or try again later.","-91824739":"Deposit {{currency}}","-523804269":"{{amount}} {{currency}} on {{date}}","-494847428":"Address: <0>{{value}}","-1117977576":"Confirmations: <0>{{value}}","-1935946851":"View more","-1744490898":"Unfortunately, we cannot retrieve the information at this time. ","-338505133":"We do not charge a transfer fee for transfers in the same currency between your Deriv fiat and {{platform_name_mt5}} accounts, between your Deriv fiat and {{platform_name_ctrader}} accounts, and between your Deriv fiat and {{platform_name_dxtrade}} accounts.","-2056016338":"You’ll not be charged a transfer fee for transfers in the same currency between your Deriv fiat and {{platform_name_mt5}} accounts.","-599632330":"We’ll charge a 1% transfer fee for transfers in different currencies between your Deriv fiat and {{platform_name_mt5}} accounts and between your Deriv fiat and {{platform_name_dxtrade}} accounts.","-1196994774":"We’ll charge a 2% transfer fee or {{minimum_fee}} {{currency}}, whichever is higher, for transfers between your Deriv cryptocurrency accounts.","-993556039":"We’ll charge a 2% transfer fee or {{minimum_fee}} {{currency}}, whichever is higher, for transfers between your Deriv cryptocurrency and Deriv MT5 accounts and between your Deriv cryptocurrency and {{platform_name_dxtrade}} accounts.","-1382702462":"We’ll charge a 2% transfer fee or {{minimum_fee}} {{currency}}, whichever is higher, for transfers between your Deriv cryptocurrency and Deriv MT5 accounts.","-1339063554":"You may transfer between your Deriv fiat, cryptocurrency, {{platform_name_mt5}}, {{platform_name_ctrader}}, and {{platform_name_dxtrade}} accounts.","-1151983985":"Transfer limits may vary depending on the exchange rates.","-1747571263":"Please bear in mind that some transfers may not be possible.","-757062699":"Transfers may be unavailable due to high volatility or technical issues and when the exchange markets are closed.","-855721928":"Needs verification","-908402700":"Verification failed","-1866405488":"Deriv cTrader accounts","-1344870129":"Deriv accounts","-1109729546":"You will be able to transfer funds between MT5 accounts and other accounts once your address is verified.","-1593609508":"Transfer between your accounts in Deriv","-1155970854":"You have reached the maximum daily transfers. Please try again tomorrow.","-464965808":"Transfer limits: <0 /> - <1 />","-553249337":"Transfers are locked","-1638172550":"To enable this feature you must complete the following:","-1949883551":"You only have one account","-1149845849":"Back to Trader's Hub","-1232852916":"We’re switching over to your {{currency}} account to view the transaction.","-1632668764":"I accept","-544232635":"Please go to the Deposit page to generate an address. Then come back here to continue with your transaction.","-1161069724":"Please copy the crypto address you see below. You'll need it to deposit your cryptocurrency.","-1388977563":"Copied!","-1962894999":"This address can only be used ONCE. Please copy a new one for your next transaction.","-451858550":"By clicking 'Continue' you will be redirected to {{ service }}, a third-party payment service provider. Please note that {{ website_name }} is not responsible for the content or services provided by {{ service }}. If you encounter any issues related to {{ service }} services, you must contact {{ service }} directly.","-2005265642":"Fiat onramp is a cashier service that allows you to convert fiat currencies to crypto to top up your Deriv crypto accounts. Listed here are third-party crypto exchanges. You’ll need to create an account with them to use their services.","-1593063457":"Select payment channel","-1309258714":"From account number","-1247676678":"To account number","-816476007":"Account holder name","-344403983":"Description","-922432739":"Please enter a valid client login ID.","-1024241603":"Insufficient balance.","-1979554765":"Please enter a valid description.","-1254233806":"You've transferred","-953082600":"Some payment methods may not be listed here but payment agents may still offer them. If you can’t find your favourite method, contact the payment agents directly to check further.","-1491457729":"All payment methods","-142563298":"Contact your preferred payment agent for payment instructions and make your deposit.","-352134412":"Transfer limit","-1023961762":"Commission on deposits","-552873274":"Commission on withdrawal","-880645086":"Withdrawal amount","-118683067":"Withdrawal limits: <0 />-<1 />","-1125090734":"Important notice to receive your funds","-1924707324":"View transaction","-1474202916":"Make a new withdrawal","-511423158":"Enter the payment agent account number","-2059278156":"Note: {{website_name}} does not charge any transfer fees.","-1201279468":"To withdraw your funds, please choose the same payment method you used to make your deposits.","-2004264970":"Your wallet address should have 25 to 64 characters.","-1707299138":"Your {{currency_symbol}} wallet address","-38063175":"{{account_text}} wallet","-705272444":"Upload a proof of identity to verify your identity","-130833284":"Please note that your maximum and minimum withdrawal limits aren’t fixed. They change due to the high volatility of cryptocurrency.","-1531269493":"We'll send you an email once your transaction has been processed.","-1373954791":"Should be a valid number","-1278608332":"Please enter a number between 0 and {{api_max_losses}}.","-287597204":"Enter limits to stop your bot from trading when any of these conditions are met.","-1445989611":"Limits your potential losses for the day across all Deriv platforms.","-152878438":"Maximum number of trades your bot will execute for this run.","-1490942825":"Apply and run","-2067572496":"You’ve just stopped the bot. Any open contracts can be viewed on the Reports page.","-992003496":"Changes you make will not affect your running bot.","-1778025545":"You’ve successfully imported a bot.","-1572746946":"Asian Up","-686840306":"Asian Down","-2141198770":"Higher","-816098265":"Lower","-1646655742":"Spread Up","-668987427":"Spread Down","-912577498":"Matches","-1862940531":"Differs","-808904691":"Odd","-556230215":"Ends Outside","-1268220904":"Ends Between","-703542574":"Up","-1127399675":"Down","-768425113":"No Touch","-1163058241":"Stays Between","-1354485738":"Reset Call","-376148198":"Only Ups","-1337379177":"High Tick","-328036042":"Please enter a stop loss amount that's higher than the current potential loss.","-2127699317":"Invalid stop loss. Stop loss cannot be more than stake.","-179005984":"Save","-610059687":"Exploring the D’Alembert strategy in Deriv Bot","-1226666341":"The D'Alembert strategy involves increasing your stake after a losing trade and reducing it after a successful trade by a predetermined number of units.","-312844882":"Initial stake: The amount that you are willing to place as a stake to enter a trade. This is the starting point for any changes in stake depending on the dynamic of the strategy being used.","-1173302981":"1. Start with the initial stake. In this example, we’ll use 1 USD.","-1540106116":"Profit and loss thresholds","-894905768":"With Deriv Bot, traders can set the profit and loss thresholds to secure potential profits and limit potential losses. This means that the trading bot will automatically stop when either the profit or loss thresholds are reached. It's a form of risk management that can potentially enhance returns. For example, if a trader sets the profit threshold at 100 USD and the strategy exceeds 100 USD of profit from all trades, then the bot will stop running.","-1946134465":"Where:","-248283982":"B is the loss threshold.","-1148521416":"f is the unit increment.","-211800490":"D’Alembert formula 2","-1772692202":"This formula helps you plan your trades by considering the amount of money you have and your comfort level with risk. It involves determining your loss threshold and the initial stake you want to trade with. Then, you use this formula to calculate the number of rounds you can trade. This process provides insight into stake sizing and expectations.","-2107238266":"The D'Alembert system offers more balanced trading through controlled stake progression. With prudent risk management like stake limits, it can be effectively automated in Deriv Bot. However, traders should thoroughly assess their risk appetite, test strategies on a demo account to align with their trading style before trading with real money. This allows optimising the approach and striking a balance between potential gains and losses whilst managing risk.","-500873566":"Disclaimer:","-344769349":"Please be aware that while we may use rounded figures for illustration, a stake of a specific amount does not guarantee an exact amount in successful trades. For example, a 1 USD stake does not necessarily equate to a 1 USD profit in successful trades.","-818800551":"Exploring the Martingale strategy in Deriv Bot","-533490374":"These are the trade parameters used in Deriv Bot with Martingale strategy.","-1507161059":"Multiplier: The multiplier used to increase your stake if you're losing a trade. The value must be greater than 1.","-1333404686":"An example of Martingale strategy","-1755877136":"3. If the first trade ends in a loss, Deriv Bot will automatically double your stake for the next trade to 2 USD. Deriv Bot will continue to double the stake after every losing trade.","-1297651002":"If you're about to start trading and haven't established a Maximum Stake as part of your risk management strategy, you can determine how long your funds will last by employing the Martingale strategy. Simply use this formula.","-46865201":"Martingale formula 1","-116397598":"m is the Martingale multiplier.","-658161609":"Number of rounds, R ≈ 9.965","-288082521":"This means that after 10 rounds of consecutive losses, this trader will lose 1023 USD which exceeds the loss threshold of 1000 USD, stopping the bot.","-770387160":"The Martingale strategy in trading may offer substantial gains but also comes with significant risks. With your selected strategy, Deriv Bot provides automated trading with risk management measures like setting initial stake, stake size, maximum stake, profit threshold and loss threshold. It's crucial for traders to assess their risk tolerance, practice in a demo account, and understand the strategy before trading with real money.","-1901073152":"These are the trade parameters used for Oscar’s Grind strategy in Deriv Bot.","-1575153036":"An example of Oscar’s Grind strategy","-732418614":"The table above demonstrates this principle by showing that when a successful trade occurs and meets the target of one unit of potential profit which is 1 USD in this example, the session ends. If trading continues, a new session will begin.","-106266344":"Principle 3: The stake adjusts to the gap size between current loss and the target profit for the session","-492908094":"In round 7, the stake is adjusted downwards from 2 USD to 1 USD, to meet the target profit of 1 USD.","-90079299":"With Deriv Bot, traders can set the profit and loss thresholds to secure potential profits and limit potential losses. This means that the trading bot will automatically stop when either the profit or loss threshold is reached. This is a form of risk management that can potentially boost successful trades whilst limiting the impact of loss. For example, if a trader sets the profit threshold at 100 USD and the strategy exceeds 100 USD of profit from all trades, then the bot will stop running.","-1549673884":"The Oscar's Grind strategy provides a disciplined approach for incremental gains through systematic stake progression. When integrated into Deriv Bot with proper risk management like profit or loss thresholds, it offers traders a potentially powerful automated trading technique. However, traders should first thoroughly assess their risk tolerance and first try trading on a demo account in order to familiarise with the strategy before trading with real funds.","-655650222":"Exploring the Reverse D’Alembert strategy in Deriv Bot","-1864807973":"The Reverse D'Alembert strategy involves increasing your stake after a successful trade and reducing it after a losing trade by a predetermined number of units.","-809681645":"These are the trade parameters used in Deriv Bot with Reverse D’Alembert strategy.","-1239374257":"An example of Reverse D’Alembert strategy","-309821442":"Please be aware that while we may use rounded figures for illustration, a stake of a specific amount does not guarantee an exact amount in successful trades. For example, a 1 USD stake does not necessarily equate to a 1 USD profit in successful trades.","-1576691912":"This article explores the Reverse Martingale strategy integrated into Deriv Bot, a versatile trading bot designed to trade assets such as forex, commodities, and derived indices. We will delve into the strategy's core parameters, its application, and provide essential takeaways for traders looking to use the bot effectively.","-1934849823":"These are the trade parameters used in Deriv Bot with Reverse Martingale strategy.","-1021919630":"Multiplier: The multiplier used to increase your stake if your trade is successful. The value must be greater than 1.","-760516362":"3. If the first trade is a successful trade, Deriv Bot will automatically double your stake for the next trade to 2 USD. Deriv Bot will continue to double the stake after every successful trade.","-1410950365":"Exploring the 1-3-2-6 strategy in Deriv Bot","-1175255072":"These are the trade parameters used in Deriv Bot with 1-3-2-6 strategy.","-183884527":"An example of 1-3-2-6 strategy","-275617819":"4. However, if any trade results in a loss, your stake will reset back to the initial stake of 1 USD for the next trade. The third trade results in a loss hence the stake resets to the initial stake of 1 USD for the next trade.","-719846465":"5. Upon reaching the initial stake, if the next trade still results in a loss, your stake will remain at the initial stake of 1 USD. This strategy will minimally trade at the initial stake. Refer to the fourth and fifth trade.","-1452746011":"The 1-3-2-6 strategy in trading may offer substantial gains but also comes with significant risks. Each stake is independent, and the strategy does not increase your chances of successful trades in the long run. If you encounter a series of losses, the strategy can lead to significant losses. Therefore, it is crucial for traders to assess their risk tolerance, practice in a demo account, utilise profit and loss thresholds, and fully comprehend the strategy before engaging in real-money trading.","-1016171176":"Asset","-138833194":"The underlying market your bot will trade with this strategy.","-621128676":"Trade type","-399349239":"Your bot will use this trade type for every run","-410856998":"The bot will stop trading if your total profit exceeds this amount.","-447853970":"Loss threshold","-33106112":"The size used to multiply the stake after a successful trade for the next trade.","-1503301801":"The value must be equal or greater than {{ min }}","-1596504046":"Number of unit(s) to be added to the next trade after a successful trade. One unit is equivalent to the amount of initial stake.","-1521098535":"Max stake","-1448426542":"The stake for your next trade will reset to the initial stake if it exceeds this value.","-993953307":"Your prediction of the last digit of the asset price.","-1305281529":"D’Alembert","-1842451303":"Welcome to Deriv Bot!","-1391310674":"Check out these guides and FAQs to learn more about building your bot:","-2066779239":"FAQs","-280324365":"What is Deriv Bot?","-155173714":"Let’s build a bot!","-1919212468":"3. You can also search for the blocks you want using the search bar above the categories.","-1520558271":"For more info, check out this blog post on the basics of building a trading bot.","-980360663":"3. Choose the block you want and drag it to the workspace.","-1493168314":"What is a quick strategy?","-1680391945":"Using a quick strategy","-1177914473":"How do I save my strategy?","-271986909":"In Bot Builder, hit Save on the toolbar at the top to download your bot. Give your bot a name, and choose to download your bot to your device or Google Drive. Your bot will be downloaded as an XML file.","-1149045595":"1. After hitting Import, select Local and click Continue.","-288041546":"2. Select your XML file and hit Open.","-2127548288":"3. Your bot will be loaded accordingly.","-1311297611":"1. After hitting Import, select Google Drive and click Continue.","-1549564044":"How do I reset the workspace?","-1127331928":"In Bot Builder, hit Reset on the toolbar at the top. This will clear the workspace. Please note that any unsaved changes will be lost.","-1720444288":"How do I control my losses with Deriv Bot?","-1142295124":"There are several ways to control your losses with Deriv Bot. Here’s a simple example of how you can implement loss control in your strategy:","-2129119462":"1. Create the following variables and place them under Run once at start:","-1918487001":"Example:","-468926787":"This is how your trade parameters, variables, and trade options should look like:","-1565344891":"Can I run Deriv Bot on multiple tabs in my web browser?","-90192474":"Yes, you can. However, there are limits on your account, such as maximum number of open positions and maximum aggregate payouts on open positions. So, just keep these limits in mind when opening multiple positions. You can find more info about these limits at Settings > Account limits.","-213872712":"No, we don't offer cryptocurrencies on Deriv Bot.","-2147346223":"In which countries is Deriv Bot available?","-352345777":"What are the most popular strategies for automated trading?","-552392096":"Three of the most commonly used strategies in automated trading are Martingale, D'Alembert, and Oscar's Grind — you can find them all ready-made and waiting for you in Deriv Bot.","-1630262763":"About Martingale","-413928457":"About Oscar's Grind","-1497015866":"About Reverse D’Alembert","-437005403":"About 1-3-2-6","-590765322":"Unfortunately, this trading platform is not available for EU Deriv account. Please switch to a non-EU account to continue trading.","-2110207996":"Deriv Bot is unavailable for this account","-971295844":"Switch to another account","-1194079833":"Deriv Bot is not available for EU clients","-746652890":"Notifications","-824109891":"System","-507620484":"Unsaved","-764102808":"Google Drive","-749186458":"Account switching is disabled while your bot is running. Please stop your bot before switching accounts.","-597939268":"Keep my contract","-1322453991":"You need to log in to run the bot.","-236548954":"Contract Update Error","-1428017300":"THE","-1450728048":"OF","-255051108":"YOU","-1845434627":"IS","-931434605":"THIS","-740712821":"A","-1223145005":"Loss amount: {{profit}}","-1206212388":"Welcome back! Your messages have been restored. You are using your {{current_currency}} account.","-1724342053":"You are using your {{current_currency}} account.","-187634388":"This block is mandatory. Here is where you can decide if your bot should continue trading. Only one copy of this block is allowed.","-2105473795":"The only input parameter determines how block output is going to be formatted. In case if the input parameter is \"string\" then the account currency will be added.","-1800436138":"2. for \"number\": 1325.68","-530632460":"This block is used to determine if the market price moves in the selected direction or not. It gives you a value of \"True\" or \"False\".","-1875717842":"Examples:","-890079872":"1. If the selected direction is \"Rise\", and the previous tick value is less than the current tick value, the output will be \"True\". Otherwise, the output will be an empty string.","-489739641":"2. If the selected direction is \"Fall\", and the previous tick value is more than the current tick value, the output will be \"True\". Otherwise, the output will be an empty string.","-2116076360":"There are 4 message types:","-1421941045":"2. 'Warn' displays a message in yellow to highlight something that needs attention.","-277850921":"If \"Win\" is selected, it will return \"True\" if your last trade was successful. Otherwise, it will return an empty string.","-2139916657":"1. In the below example the loop is terminated in case \"x\" is \"False\" even though only one iteration is complete","-1238900333":"2. In the below example the loop jumps to the next iteration without executing below block in case if \"x\" is \"False\"","-1729479576":"You can use \"i\" inside the loop, for example to access list items","-1474636594":"In this example, the loop will repeat three times, as that is the number of items in the given list. During each iteration, the variable \"i\" will be assigned a value from the list. ","-908772734":"This block evaluates a statement and will perform an action only when the statement is true.","-334040831":"2. In this example, the instructions are repeated as long as the value of x is greater than or equal to 10. Once the value of x drops below 10, the loop is terminated.","-444267958":"\"Seconds Since Epoch\" block returns the number of seconds since January 1st, 1970.","-447522129":"You might need it when you want to repeat an actions after certain amount of time.","-1488259879":"The term \"candle\" refers to each bar on the candlestick chart. Each candle represents four market prices for the selected time interval:","-2020693608":"Each candlestick on the chart represents 4 market prices for the selected time interval:","-62728852":"- Open price: the opening price","-1247744334":"- Low price: the lowest price","-1386365697":"- Close price: the closing price","-1498732382":"A black (or red) candle indicates that the open price is higher than the close price. This represents a downward movement of the market price.","-1871864755":"This block gives you the last digit of the latest tick value of the selected market. If the latest tick value is 1410.90, this block will return 0. It’s useful for digit-based contracts such as Even/Odd, Matches/Differs, or Higher/Lower.","-1029671512":"In case if the \"OR\" operation is selected, the block returns \"True\" in case if one or both given values are \"True\"","-210295176":"Available operations:","-1385862125":"- Addition","-983721613":"- Subtraction","-854750243":"- Multiplication","-1394815185":"In case if the given number is less than the lower boundary of the range, the block returns the lower boundary value. Similarly, if the given number is greater than the higher boundary, the block will return the higher boundary value. In case if the given value is between boundaries, the block will return the given value unchanged.","-1034564248":"In the below example the block returns the value of 10 as the given value (5) is less than the lower boundary (10)","-2009817572":"This block performs the following operations to a given number","-671300479":"Available operations are:","-514610724":"- Absolute","-1923861818":"- Euler’s number (2.71) to the power of a given number","-1556344549":"Here’s how:","-1061127827":"- Visit the following URL, make sure to replace with the Telegram API token you created in Step 1: https://api.telegram.org/bot/getUpdates","-311389920":"In this example, the open prices from a list of candles are assigned to a variable called \"cl\".","-1460794449":"This block gives you a list of candles within a selected time interval.","-1634242212":"Used within a function block, this block returns a value when a specific condition is true.","-2012970860":"This block gives you information about your last contract.","-1504783522":"You can choose to see one of the following:","-10612039":"- Profit: the profit you’ve earned","-555996976":"- Entry time: the starting time of the contract","-1391071125":"- Exit time: the contract expiration time","-1961642424":"- Exit value: the value of the last tick of the contract","-111312913":"- Barrier: the barrier value of the contract (applicable to barrier-based trade types such as stays in/out, touch/no touch, etc.)","-674283099":"- Result: the result of the last contract: \"win\" or \"loss\"","-704543890":"This block gives you the selected candle value such as open price, close price, high price, low price, and open time. It requires a candle as an input parameter.","-482281200":"In the example below, the open price is assigned to the variable \"op\".","-364621012":"This block gives you the specified candle value for a selected time interval. You can choose which value you want:","-232477769":"- Open: the opening price","-610736310":"Use this block to sell your contract at the market price. Selling your contract is optional. You may choose to sell if the market trend is unfavourable.","-1307657508":"This block gives you the potential profit or loss if you decide to sell your contract. It can only be used within the \"Sell conditions\" root block.","-1921072225":"In the example below, the contract will only be sold if the potential profit or loss is more than the stake.","-955397705":"SMA adds the market price in a list of ticks or candles for a number of time periods, and divides the sum by that number of time periods.","-1424923010":"where n is the number of periods.","-1835384051":"What SMA tells you","-749487251":"SMA serves as an indicator of the trend. If the SMA points up then the market price is increasing and vice versa. The larger the period number, the smoother SMA line is.","-1996062088":"In this example, each point of the SMA line is an arithmetic average of close prices for the last 10 days.","-1866751721":"Input list accepts a list of ticks or candles, while period is the specified time period.","-1097076512":"You may compare SMA values calculated on every bot run to identify the market trend direction. Alternatively, you may also use a variation of the SMA block, the Simple Moving Average Array block. ","-1254849504":"If a period of 10 is entered, the Simple Moving Average Array block will return a list of SMA values calculated based on period of 10.","-1190046167":"This block displays a dialog box with a customised message. When the dialog box is displayed, your strategy is paused and will only resume after you click \"OK\".","-859028989":"In this example, the date and time will be displayed in a green notification box.","-1452086215":"In this example, a Rise contract will be purchased at midnight on 1 August 2019.","-2078588404":"Select your desired market and asset type. For example, Forex > Major pairs > AUD/JPY","-2037446013":"2. Trade Type","-533927844":"Select your desired trade type. For example, Up/Down > Rise/Fall","-1192411640":"4. Default Candle Interval","-485434772":"8. Trade Options","-1827646586":"This block assigns a given value to a variable, creating the variable if it doesn't already exist.","-254421190":"List: ({{message_length}})","-555886064":"Won","-529060972":"Lost","-1062922595":"Reference ID (buy)","-2068574600":"Reference ID (sell)","-994038153":"Start Time","-1979852400":"Entry Spot","-427802309":"Profit/Loss","-224804428":"Transactions","-287223248":"No transaction or activity yet.","-418247251":"Download your journal.","-2123571162":"Download","-1616649196":"results","-90107030":"No results found","-984140537":"Add","-870004399":"<0>Bought: {{longcode}} (ID: {{transaction_id}})","-1211474415":"Filters","-186972150":"There are no messages to display","-558594655":"The bot is not running","-478946875":"The stats are cleared","-999254545":"All messages are filtered out","-934909826":"Load strategy","-1121028020":"or, if you prefer...","-254025477":"Select an XML file from your device","-1131095838":"Please upload an XML file","-523928088":"Create one or upload one from your local drive or Google Drive.","-1684205190":"Why can't I see my recent bots?","-2050879370":"1. Logged in from a different device","-811857220":"3. Cleared your browser cache","-625024929":"Leaving already?","-584289785":"No, I'll stay","-1435060006":"If you leave, your current contract will be completed, but your bot will stop running immediately.","-783058284":"Total stake","-2077494994":"Total payout","-1073955629":"No. of runs","-1729519074":"Contracts lost","-42436171":"Total profit/loss","-1856204727":"Reset","-1137823888":"Total payout since you last cleared your stats.","-992662695":"The number of times your bot has run since you last cleared your stats. Each run includes the execution of all the root blocks.","-1382491190":"Your total profit/loss since you last cleared your stats. It is the difference between your total payout and your total stake.","-24780060":"When you’re ready to trade, hit ","-2147110353":". You’ll be able to track your bot’s performance here.","-1442034178":"Contract bought","-2020280751":"Bot is stopping","-1436403979":"Contract closed","-411060180":"TradingView Chart","-627895223":"Exit spot","-2140412463":"Buy price","-1299484872":"Account","-2004386410":"Win","-266502731":"Transactions detailed summary","-1711732508":"Reference IDs","-386141434":"(Buy)","-482272687":"(Sell)","-1983189496":"ticks","-694277729":"(High)","-2028564707":"(Low)","-596238067":"Entry/Exit spot","-1823621139":"Quick Strategy","-1782602933":"Choose a template below and set your trade parameters.","-315611205":"Strategy","-1524489375":"(optional)","-150224710":"Yes, continue","-475765963":"Edit the amount","-1349897832":"Do not show this message again.","-984512425":"Minimum duration: {{ value }}","-2084091453":"The value must be equal or greater than {{ value }}","-657364297":"The value must be equal or less than {{ value }}","-1696412885":"Import","-320197558":"Sort blocks","-939764287":"Charts","-1566369363":"Zoom out","-1285759343":"Search","-1291088318":"Purchase conditions","-112876186":"Analysis","-1769584466":"Stats","-1133736197":"Utility","-1682372359":"Text","-907562847":"Lists","-1646497683":"Loops","-251326965":"Miscellaneous","-1692205739":"Import a bot from your computer or Google Drive, build it from scratch, or start with a quick strategy.","-1150390589":"Last modified","-1393876942":"Your bots:","-1545070554":"Delete bot","-1972599670":"Your bot will be permanently deleted when you hit ","-1692956623":"Yes, delete.","-573479616":"Are you sure you want to delete it?","-786915692":"You are connected to Google Drive","-1256971627":"To import your bot from your Google Drive, you'll need to sign in to your Google account.","-1233084347":"To know how Google Drive handles your data, please review Deriv’s <0>Privacy policy.","-1150107517":"Connect","-767342552":"Enter your bot name, choose to save on your computer or Google Drive, and hit ","-1372891985":"Save.","-1003476709":"Save as collection","-636521735":"Save strategy","-1953880747":"Stop my bot","-1899230001":"Stopping the current bot will load the Quick Strategy you just created to the workspace.","-2131847097":"Any open contracts can be viewed on the ","-563774117":"Dashboard","-683790172":"Now, <0>run the bot to test out the strategy.","-1127164953":"Hi! Hit <0>Start for a quick tour.","-358288026":"Note: You can also find this tutorial in the <0>Tutorials tab.","-129587613":"Got it, thanks!","-1793577405":"Build from scratch","-358753028":"Create your bot using our drag-and-drop blocks or click Quick Strategy to choose from the ready-to-use bot templates.","-1212601535":"Monitor the market","-21136101":"See how your bot is doing in real-time.","-631097919":"Click <0>Run when you want to start trading, and click <0>Stop when you want to stop.","-1999747212":"Want to retake the tour?","-782992165":"Step 1 :","-1207872534":"First, set the <0>Trade parameters block.","-1656388044":"First, set <0>Market to Derived > Continuous Indices > Volatility 100 (1s) Index.","-1706298865":"Then, set <0>Trade type to Up/Down > Rise/Fall.","-1834358537":"For <0>Default candle interval, set it to 1 minute","-1940971254":"For <0>Trade options, set it as below:","-512839354":"<0>Stake: USD 10 (min: 0.35 - max: 50000)","-753745278":"Step 2 :","-1056713679":"Then, set the <0>Purchase conditions block.","-245497823":"<0>2. Purchase conditions:","-916770284":"<0>Purchase: Rise","-758077259":"Step 3 :","-677396944":"Step 4 :","-295975118":"Next, go to <0>Utility tab under the Blocks menu. Tap the drop-down arrow and hit <0>Loops.","-698493945":"Step 5 :","-1992994687":"Now, tap the <0>Analysis drop-down arrow and hit <0>Contract.","-1844492873":"Go to the <0>Last trade result block and click + icon to add the <0>Result is Win block to the workspace.","-1547091772":"Then, drag the <0>Result is win into the empty slot next to <0>repeat until block.","-736400802":"Step 6 :","-732067680":"Finally, drag and add the whole <0>Repeat block to the <0>Restart trading conditions block.","-1411787252":"Step 1","-1109392787":"Learn how to build your bot from scratch using a simple strategy.","-1263822623":"You can import a bot from your mobile device or from Google drive, see a preview in the bot builder, and start trading by running the bot.","-563921656":"Bot Builder guide","-1596172043":"Quick strategy guides","-1765276625":"Click the multiplier drop-down menu and choose the multiplier value you want to trade with.","-1872233077":"Your potential profit will be multiplied by the multiplier value you’ve chosen.","-614454953":"To learn more about multipliers, please go to the <0>Multipliers page.","-662836330":"Would you like to keep your current contract or close it? If you decide to keep it running, you can check and close it later on the <0>Reports page.","-1717650468":"Online","-1309011360":"Open positions","-1597214874":"Trade table","-1929724703":"Compare CFD accounts","-883103549":"Account deactivated","-45873457":"NEW","-1190972431":"P2P-V2","-1837059346":"Buy / Sell","-1845037007":"Advertiser's page","-494667560":"Orders","-679691613":"My ads","-821418875":"Trader","-679102561":"Contract Details","-430118939":"Complaints policy","-377375279":"Standard","-1582979384":"Standard Demo","-1212531781":"Standard BVI","-328128497":"Financial","-533935232":"Financial BVI","-565431857":"Financial Labuan","-659955365":"Swap-Free","-291535132":"Swap-Free Demo","-1472945832":"Swap-Free SVG","-144803045":"Only numbers and these special characters are allowed: {{permitted_characters}}","-1450516268":"Only letters, numbers, space, hyphen, period, and apostrophe are allowed.","-1966032552":"The length of token should be 8.","-2128137611":"Should start with letter or number, and may contain hyphen and underscore.","-1590869353":"Up to {{decimal_count}} decimal places are allowed.","-2061307421":"Should be more than {{min_value}}","-1099941162":"Should be less than {{max_value}}","-1528188268":"Straight rows of keys are easy to guess","-1339903234":"Short keyboard patterns are easy to guess","-23980798":"Repeats like \"aaa\" are easy to guess","-235760680":"Avoid repeated words and characters","-1568933154":"Sequences like abc or 6543 are easy to guess","-725663701":"Avoid sequences","-1450768475":"Recent years are easy to guess","-1804838610":"Avoid years that are associated with you","-64849469":"Dates are often easy to guess","-2006915194":"Avoid dates and years that are associated with you","-2124205211":"A word by itself is easy to guess","-1095202689":"All-uppercase is almost as easy to guess as all-lowercase","-2137856661":"Reversed words aren't much harder to guess","-1885413063":"Predictable substitutions like '@' instead of 'a' don't help very much","-369258265":"This password is on the blacklist","-577777971":"You have reached the rate limit of requests per second. Please try later.","-206321775":"Fiat","-522767852":"DEMO","-433761292":"Switching to default account.","-405439829":"Sorry, you can't view this contract because it doesn't belong to this account.","-1590712279":"Gaming","-16448469":"Virtual","-2093768906":"{{name}} has released your funds.
Would you like to give your feedback?","-705744796":"Your demo account balance has reached the maximum limit, and you will not be able to place new trades. Reset your balance to continue trading from your demo account.","-2063700253":"disabled","-1585069798":"Please click the following link to complete your Appropriateness Test.","-1287141934":"Find out more","-367759751":"Your account has not been verified","-596690079":"Enjoy using Deriv?","-265932467":"We’d love to hear your thoughts","-1815573792":"Drop your review on Trustpilot.","-823349637":"Go to Trustpilot","-1204063440":"Set my account currency","-1601813176":"Would you like to increase your daily limits to {{max_daily_buy}} {{currency}} (buy) and {{max_daily_sell}} {{currency}} (sell)?","-1751632759":"Get a faster mobile trading experience with the <0>{{platform_name_go}} app!","-1164554246":"You submitted expired identification documents","-219846634":"Let’s verify your ID","-529038107":"Install","-1738575826":"Please switch to your real account or create one to access the cashier.","-1329329028":"You’ve not set your 30-day turnover limit","-132893998":"Your access to the cashier has been temporarily disabled as you have not set your 30-day turnover limit. Please go to Self-exclusion and set the limit.","-1852207910":"MT5 withdrawal disabled","-764323310":"MT5 withdrawals have been disabled on your account. Please check your email for more details.","-1744163489":"Please verify your proof of income","-382676325":"To continue trading with us, please submit your proof of income.","-1902997828":"Refresh now","-753791937":"A new version of Deriv is available","-1775108444":"This page will automatically refresh in 5 minutes to load the latest version.","-1175685940":"Please contact us via live chat to enable withdrawals.","-493564794":"Please complete your financial assessment.","-1125797291":"Password updated.","-157145612":"Please log in with your updated password.","-1728185398":"Resubmit proof of address","-612396514":"Please resubmit your proof of address.","-1519764694":"Your proof of address is verified.","-1629185222":"Submit now","-1961967032":"Resubmit proof of identity","-117048458":"Please submit your proof of identity.","-1196422502":"Your proof of identity is verified.","-1392958585":"Please check your email.","-136292383":"Your proof of address verification is pending","-386909054":"Your proof of address verification has failed","-430041639":"Your proof of address did not pass our verification checks, and we’ve placed some restrictions on your account. Please resubmit your proof of address.","-87177461":"Please go to your account settings and complete your personal details to enable deposits.","-904632610":"Reset your balance","-470018967":"Reset balance","-156611181":"Please complete the financial assessment in your account settings to unlock it.","-1925176811":"Unable to process withdrawals in the moment","-980696193":"Withdrawals are temporarily unavailable due to system maintenance. You can make withdrawals when the maintenance is complete.","-1647226944":"Unable to process deposit in the moment","-488032975":"Deposits are temporarily unavailable due to system maintenance. You can make deposits when the maintenance is complete.","-2136953532":"Scheduled cashier maintenance","-849587074":"You have not provided your tax identification number","-47462430":"This information is necessary for legal and regulatory requirements. Please go to your account settings, and fill in your latest tax identification number.","-2067423661":"Stronger security for your Deriv account","-1719731099":"With two-factor authentication, you’ll protect your account with both your password and your phone - so only you can access your account, even if someone knows your password.","-949074612":"Please contact us via live chat.","-2087822170":"You are offline","-1669693571":"Check your connection.","-1706642239":"<0>Proof of ownership <1>required","-553262593":"<0><1>Your account is currently locked <2><3>Please upload your proof of <4>ownership to unlock your account. <5>","-1834929362":"Upload my document","-1043638404":"<0>Proof of ownership <1>verification failed","-1766760306":"<0><1>Please upload your document <2>with the correct details. <3>","-8892474":"Start assessment","-1330929685":"Please submit your proof of identity and proof of address to verify your account and continue trading.","-99461057":"Please submit your proof of address to verify your account and continue trading.","-577279362":"Please submit your proof of identity to verify your account and continue trading.","-197134911":"Your proof of identity is expired","-152823394":"Your proof of identity has expired. Please submit a new proof of identity to verify your account and continue trading.","-822813736":"We're unable to complete with the Wallet upgrade. Please try again later or contact us via live chat.","-285366843":"We are going to update the login process for your Deriv MT5 account.","-978414767":"We require additional information for your Deriv MT5 account(s). Please take a moment to update your information now.","-482715448":"Go to Personal details","-2072411961":"Your proof of address has been verified","-384887227":"Update the address in your profile.","-1470677931":"CFDs on financial instruments.","-1998049070":"If you agree to our use of cookies, click on Accept. For more information, <0>see our policy.","-402093392":"Add Deriv Account","-1721181859":"You’ll need a {{deriv_account}} account","-1989074395":"Please add a {{deriv_account}} account first before adding a {{dmt5_account}} account. Deposits and withdrawals for your {{dmt5_label}} account are done by transferring funds to and from your {{deriv_label}} account.","-689237734":"Proceed","-1642457320":"Help centre","-1966944392":"Network status: {{status}}","-181484419":"Responsible trading","-650505513":"Full screen","-1823504435":"View notifications","-1954045170":"No currency assigned","-1591792668":"Account Limits","-34495732":"Regulatory information","-1323441180":"I hereby confirm that my request for opening an account with Deriv to trade OTC products issued and offered exclusively outside Brazil was initiated by me. I fully understand that Deriv is not regulated by CVM and by approaching Deriv I intend to set up a relation with a foreign company.","-1396326507":"Unfortunately, {{website_name}} is not available in your country.","-288996254":"Unavailable","-1308346982":"Derived","-1019903756":"Synthetic","-735306327":"Manage accounts","-1813972756":"Account creation paused for 24 hours","-366030582":"Sorry, you're unable to create an account at this time. As you declined our previous risk warnings, we need you to wait for 24 hours after your first account creation attempt before you can proceed.<0/><0/>","-534047566":"Thank you for your understanding. You can create your account on {{real_account_unblock_date}} or later.","-399816343":"Trading Experience Assessment<0/>","-1822498621":"As per our regulatory obligations, we are required to assess your trading knowledge and experience.<0/><0/>Please click ‘OK’ to continue","-71049153":"Keep your account secure with a password","-1861974537":"Strong passwords contain at least 8 characters, combine uppercase and lowercase letters, numbers, and symbols.","-1965920446":"Start trading","-1485242688":"Step {{step}}: {{step_title}} ({{step}} of {{steps}})","-1829842622":"You can open an account for each cryptocurrency.","-987221110":"Choose a currency you would like to trade with.","-1066574182":"Choose a currency","-1146960797":"Fiat currencies","-1914534236":"Choose your currency","-200560194":"Please switch to your {{fiat_currency}} account to change currencies.","-1829493739":"Choose the currency you would like to trade with.","-1814647553":"Add a new","-1269362917":"Add new","-650480777":"crypto account","-175638343":"Choose an account or add a new one","-1768223277":"Your account is ready","-1215717784":"<0>You have successfully changed your currency to {{currency}}.<0>Make a deposit now to start trading.","-1775006840":"Make a deposit now to start trading.","-983734304":"We need proof of your identity and address before you can start trading.","-917733293":"To get trading, please confirm where you live.","-1282628163":"You'll be able to get trading as soon as verification is complete.","-952649119":"Log In","-3815578":"Sign Up","-1456176427":"Set a currency for your real account","-1329687645":"Create a cryptocurrency account","-1429178373":"Create a new account","-1740162250":"Manage account","-1016775979":"Choose an account","-1362081438":"Adding more real accounts has been restricted for your country.","-1602122812":"24-hour Cool Down Warning","-1519791480":"CFDs and other financial instruments come with a high risk of losing money rapidly due to leverage. You should consider whether you understand how CFDs and other financial instruments work and whether you can afford to take the risk of losing your money. <0/><0/>\n As you have declined our previous warning, you would need to wait 24 hours before you can proceed further.","-1010875436":"CFDs and other financial instruments come with a high risk of losing money rapidly due to leverage. You should consider whether you understand how CFDs and other financial instruments work and whether you can afford to take the high risk of losing your money. <0/><0/> To continue, kindly note that you would need to wait 24 hours before you can proceed further.","-1725418054":"By clicking ‘Accept’ and proceeding with the account opening, you should note that you may be exposing yourself to risks. These risks, which may be significant, include the risk of losing the entire sum invested, and you may not have the knowledge and experience to properly assess or mitigate them.","-730377053":"You can’t add another real account","-2100785339":"Invalid inputs","-2061807537":"Something’s not right","-272953725":"Your details match an existing account. If you need help, contact us via <0>live chat.","-1534648620":"Your password has been changed","-596199727":"We will now redirect you to the login page.","-437918412":"No currency assigned to your account","-1193651304":"Country of residence","-707550055":"We need this to make sure our service complies with laws and regulations in your country.","-280139767":"Set residence","-601615681":"Select theme","-1152511291":"Dark","-1428458509":"Light","-1976089791":"Your Deriv account has been unlinked from your {{social_identity_provider}} account. You can now log in to Deriv using your new email address and password.","-505449293":"Enter a new password for your Deriv account.","-243732824":"Take me to Demo account","-1269078299":"I will setup my real account later.","-703818088":"Only log in to your account at this secure link, never elsewhere.","-1235799308":"Fake links often contain the word that looks like \"Deriv\" but look out for these differences.","-2102997229":"Examples","-82488190":"I've read the above carefully.","-97775019":"Do not trust and give away your credentials on fake websites, ads or emails.","-2142491494":"OK, got it","-611136817":"Beware of fake links.","-1342699195":"Total profit/loss:","-1941013000":"This complaints policy, which may change from time to time, applies to your account(s) registered with {{legal_entity_name_svg}}, {{legal_entity_name_fx}}, and {{legal_entity_name_v}}.","-594812204":"This complaints policy, which may change from time to time, applies to your account(s) registered with {{legal_entity_name_svg}}.","-813256361":"We are committed to treating our clients fairly and providing them with excellent service.<0/><1/>We would love to hear from you on how we can improve our services to you. Any information you provide will be treated in the strictest confidence. Rest assured that you will be heard, valued, and always treated fairly.","-1622847732":"If you have an inquiry regarding your trading account with {{legal_entity_name}}, you can contact us through our <0>Help centre or by chatting with a representative via <1>Live Chat.<2/><3/>We are committed to resolving your query in the quickest time possible and appreciate your patience in allowing us time to resolve the matter.<4/><5/>We strive to provide the best possible service and support to our customers. However, in the event that we are unable to resolve your query or if you feel that our response is unsatisfactory, we want to hear from you. We welcome and encourage you to submit an official complaint to us so that we can review your concerns and work towards a resolution.","-1406192787":"If you are not satisfied with the outcome, you can escalate your complaint to the <0>Financial Commission.","-2115348800":"1. Introduction","-744009523":"2. Fair treatment","-866831420":"3.1. Submission of a complaint","-1102904026":"3.2. Handling your complaint","-603378979":"3.3. Resolving your complaint","-697569974":"3.4. Your decision","-1280998762":"4. Complaints","-1886635232":"A complaint is any expression of dissatisfaction by a client regarding our products or services that requires a formal response.<0/><1/>If what you submit does not fall within the scope of a complaint, we may reclassify it as a query and forward it to the relevant department for handling. However, if you believe that your query should be classified as a complaint due to its relevance to the investment services provided by {{legal_entity_name}}, you may request that we reclassify it accordingly.","-1771496016":"To submit a complaint, please send an email to <0>complaints@deriv.com, providing as much detail as possible. To help us investigate and resolve your complaint more efficiently, please include the following information:","-1197243525":"<0>•A clear and detailed description of your complaint, including any relevant dates, times, and transactions","-1795134892":"<0>•Any relevant screenshots or supporting documentation that will assist us in understanding the issue","-2053887036":"4.4. Handling your complaint","-717170429":"Once we have received the details of your complaint, we shall review it carefully and keep you updated on the handling process. We might request further information or clarifications to facilitate the resolution of the complaint.","-1841922393":"4.5. Resolving your complaint","-1327119795":"4.6. Your decision","-2019654103":"If we are unable to resolve your complaint or you are not satisfied with the outcome, you can escalate your complaint to the Office of the Arbiter for Financial Services.<0/><1/><2>Filing complaints with the Office of the Arbiter for Financial Services","-687172857":"<0>•You may file a complaint with the Arbiter for Financial Services only if you are not satisfied with our decision or the decision wasn’t made within 15 business days.","-262934706":"<0>•If the complaint is accepted by the Arbiter, you will receive another email with further details relating to the payment of the €25 complaint fee and the processes that follow.","-993572476":"<0>b.The Financial Commission has 5 days to acknowledge that your complaint was received and 14 days to answer the complaint through our Internal Dispute Resolution (IDR) procedure.","-1769159081":"<0>c.You will be able to file a complaint with the Financial Commission only if you are not satisfied with our decision or the decision wasn’t made within 14 days.","-58307244":"3. Determination phase","-356618087":"<0>b.The DRC may request additional information from you or us, who must then provide the requested information within 7 days.","-945718602":"<0>b.If you agree with a DRC decision, you will need to accept it within 14 days. If you do not respond to the DRC decision within 14 days, the complaint is considered closed.","-1500907666":"<0>d.If the decision is made in our favour, you must provide a release for us within 7 days of when the decision is made, and the complaint will be considered closed.","-429248139":"5. Disclaimer","-818926350":"The Financial Commission accepts appeals for 45 days following the date of the incident and only after the trader has tried to resolve the issue with the company directly.","-1825471709":"A whole new trading experience on a powerful yet easy to use platform.","-981017278":"Automated trading at your fingertips. No coding needed.","-583559763":"Menu","-1685795001":"Demo Wallet","-319395348":"Looking for CFDs? Go to Trader’s Hub","-554054753":"Get started","-1364763296":"No need to remember a password","-1274467503":"Sync across devices","-2036288743":"Enhanced security with biometrics or screen lock ","-143216768":"Learn more about passkeys <0> here.","-778309978":"The link you clicked has expired. Ensure to click the link in the latest email in your inbox. Alternatively, enter your email below and click <0>Resend email for a new link.","-2007055538":"Information updated","-521477049":"We are going to update the login process for your Deriv MT5 account. Here is what you need to do when you want to log in via your MT5 mobile app starting from 7 February:","-749864644":"If you have trouble logging into your Deriv MT5 account, please follow this <0>guide.","-238296389":"Need help? Contact us via <0>live chat to assist you with any login questions.","-941870889":"The cashier is for real accounts only","-352838513":"It looks like you don’t have a real {{regulation}} account. To use the cashier, switch to your {{active_real_regulation}} real account, or get an {{regulation}} real account.","-1858915164":"Ready to deposit and trade for real?","-162753510":"Add real account","-1208519001":"You need a real Deriv account to access the cashier.","-715867914":"Successfully deposited","-1271218821":"Account added","-197631101":"Your funds will be available for trading once the verification of your account is complete.","-835056719":"We’ve received your documents","-55435892":"We’ll need 1 - 3 days to review your documents and notify you by email. You can practice with demo accounts in the meantime.","-1916578937":"<0>Explore the exciting new features that your Wallet offers.","-1724438599":"<0>You're almost there!","-1089300025":"We don’t charge deposit fees! Once your account is verified, you will be able to trade, make additional deposits, or withdraw funds.","-476018343":"Live Chat","-310434518":"The email input should not be empty.","-1471705969":"<0>{{title}}: {{trade_type_name}} on {{symbol}}","-1771117965":"Trade opened","-1856112961":"The URL you requested isn’t available","-304807228":"<0>You’re not logged in, or<0>Our services are unavailable in your country.","-1567989247":"Submit your proof of identity and address","-523602297":"Forex majors","-1303090739":"Up to 1:1500","-19213603":"Metals","-1264604378":"Up to 1:1000","-1728334460":"Up to 1:300","-646902589":"(US_30, US_100, US_500)","-705682181":"Malta","-1835174654":"1:30","-1647612934":"Spreads from","-1912437030":"about required verifications.","-466784048":"Regulator/EDR","-2098459063":"British Virgin Islands","-1326848138":"British Virgin Islands Financial Services Commission (License no. SIBA/L/18/1114)","-1711743223":"Forex (standard/micro), stocks, stock indices, commodities, cryptocurrencies and ETFs","-1372141447":"Straight-through processing","-1969608084":"Forex and Cryptocurrencies","-800771713":"Labuan Financial Services Authority (licence no. MB/18/0024)","-1497128311":"80+","-1689815930":"You will need to submit proof of identity and address once you reach certain thresholds.","-1175785439":"Deriv (SVG) LLC (company no. 273 LLC 2020)","-1344709651":"40+","-139026353":"A selfie of yourself.","-1228847561":"Verification in review.","-618322245":"Verification successful.","-149461870":"Forex: standard/exotic","-1995163270":"ETFs","-1220727671":"Standard - SVG","-865172869":"Financial - BVI","-1851765767":"Financial - Vanuatu","-558597854":"Financial - Labuan","-2052425142":"Swap-Free - SVG","-1192904361":"Deriv X Demo","-283929334":"Deriv cTrader Demo","-1269597956":"MT5 Platform","-1302404116":"Maximum leverage","-239789243":"(License no. SIBA/L/18/1114)","-941636117":"MetaTrader 5 Linux app","-1434036215":"Demo Financial","-1416247163":"Financial STP","-1637969571":"Demo Swap-Free","-1882063886":"Demo CFDs","-1347908717":"Demo Financial SVG","-1780324582":"SVG","-860609405":"Password","-742647506":"Fund transfer","-712681566":"Peer-to-peer exchange","-1267880283":"{{field_name}} is required","-2084509650":"{{field_name}} is not properly formatted.","-790488576":"Forgot password?","-476558960":"If you don’t have open positions","-1385484963":"Confirm to change your {{platform}} password","-1990902270":"This will change the password to all of your {{platform}} accounts.","-12535938":"*Volatility 250 Index, Volatility 150 Index, Boom 300 and Crash 300 Index","-201485855":"Up to","-700260448":"demo","-1769158315":"real","-1922462747":"Trader's hub","-16858060":"You have a new Deriv MT5 password to log in to your Deriv MT5 accounts on the web and mobile apps.","-1868608634":"Current password","-2092058806":"8 to 16 characters","-2051033705":"A special character such as ( _ @ ? ! / # )","-1762249687":"A lowercase letter","-535365199":"Enter your {{platform}} password to add a {{platform_name}} {{account}} account.","-184453418":"Enter your {{platform}} password","-393388362":"We’re reviewing your documents. This should take about 1 to 3 days.","-2057918502":"Hint: You may have entered your Deriv password, which is different from your {{platform}} password.","-267598687":"Congratulations, you have successfully created your <0/>{{category}} {{platform}} {{type}} account. To start trading, <1 />transfer funds <2 />from your Deriv account into this account.","-1475660820":"Your Deriv MT5 {{type}} account is ready. ","-1710177700":"Your demo {{type}} account is ready.","-1184248732":"Congratulations, you have successfully created your <0/>{{category}} {{platform}} {{type}} account. ","-1928229820":"Reset Deriv X investor password","-1969916895":"Your password must contain between 8-16 characters that include uppercase and lowercase letters, and at least one number and special character ( _ @ ? ! / # ).","-1087845020":"main","-1950683866":"investor","-1874242353":"Fund top up","-89838213":"You can top up your demo account with an additional <0> if your balance is <1> or less.","-1211122723":"{{ platform }} {{ account_title }} account","-78895143":"Current balance","-149993085":"New current balance","-1615126227":"Manage up to {{max_count}} Deriv cTrader accounts. While you can convert any of your Deriv cTrader accounts into a strategy account, please take note of the following:","-1547739386":"To ensure you can always create and manage strategies with fees, <0>keep at least one account free from being a strategy provider. This way, you’ll always have an account ready for collecting fees, allowing you to have up to four strategies where you may impose fees.","-2145356061":"Download Deriv X on your phone to trade with the Deriv X account","-1547458328":"Run cTrader on your browser","-747382643":"Get another cTrader account","-1986258847":"Server maintenance starts at 01:00 GMT every Sunday, and this process may take up to 2 hours to complete. Service may be disrupted during this time.","-499504077":"Choose a cTrader account to transfer","-251202291":"Broker","-678964540":"to","-206829624":"(1:x)","-616293830":"Enjoy dynamic leverage of <0>up to 1:1500 when trading selected instruments in the forex, commodities, cryptocurrencies, and stock indices markets. Our dynamic leverage adjusts automatically to your trading position, based on asset type and trading volume.","-2042845290":"Your investor password has been changed.","-1882295407":"Your password has been changed.","-254497873":"Use this password to grant viewing access to another user. While they may view your trading account, they will not be able to trade or take any other actions.","-161656683":"Current investor password","-374736923":"New investor password","-1793894323":"Create or reset investor password","-21438174":"Add your Deriv cTrader account under Deriv (SVG) LLC (company no. 273 LLC 2020).","-2026018074":"Add your Deriv MT5 <0>{{account_type_name}} account under Deriv (SVG) LLC (company no. 273 LLC 2020).","-162320753":"Add your Deriv MT5 <0>{{account_type_name}} account under Deriv (BVI) Ltd, regulated by the British Virgin Islands Financial Services Commission (License no. SIBA/L/18/1114).","-271828350":"Get more out of Deriv MT5 Financial","-2125860351":"Choose a jurisdiction for your Deriv MT5 CFDs account","-1460321521":"Choose a jurisdiction for your {{account_type}} account","-637537305":"Download {{ platform }} on your phone to trade with the {{ platform }} {{ account }} account","-964130856":"{{existing_account_title}}","-879259635":"Enter your Deriv MT5 password to upgrade your account(s).","-1504907646":"Deriv MT5 password","-361998267":"We've introduced additional password requirements to increase your account security. Your password should:","-996995493":"Be between 8 to 16 characters.","-219163415":"Contain at least one special character.","-1446636186":"By clicking on <0>Next you agree to move your {{platform}} {{type_1}} and {{type_2}} {{from_account}} account(s) under Deriv {{account_to_migrate}} Ltd’s <1>terms and conditions.","-1766387013":"Upgrade your MT5 account(s)","-990927225":"Enter your Deriv MT5 password","-1486399361":"Trade with MT5 mobile app","-301350824":"Note: Don't have the MT5 app? Tap the <0>Trade with MT5 mobile app button to download. Once you have\n installed the app, return to this screen and hit the same button to log in.","-648956272":"Use this password to log in to your Deriv X accounts on the web and mobile apps.","-1814308691":"Please click on the link in the email to change your {{platform}} password.","-2015785957":"Compare CFDs {{demo_title}} accounts","-81650212":"MetaTrader 5 web","-508045656":"Coming soon on IOS","-601303096":"Scan the QR code to download Deriv {{ platform }}.","-1357917360":"Web terminal","-1282933308":"Not {{barrier}}","-968190634":"Equals {{barrier}}","-1747377543":"Under {{barrier}}","-1386326276":"Barrier is a required field.","-1418742026":"Higher barrier must be higher than lower barrier.","-92007689":"Lower barrier must be lower than higher barrier.","-1095538960":"Please enter the start time in the format \"HH:MM\".","-1975910372":"Minute must be between 0 and 59.","-866277689":"Expiry time cannot be in the past.","-1455298001":"Now","-256210543":"Trading is unavailable at this time.","-1150099396":"We’re working to have this available for you soon. If you have another account, switch to that account to continue trading. You may add a Deriv MT5 Financial.","-28115241":"{{platform_name_trader}} is not available for this account","-453920758":"Go to {{platform_name_mt5}} dashboard","-402175529":"History","-1013917510":"The reset time is {{ reset_time }}","-925402280":"Indicative low spot","-1075414250":"High spot","-902712434":"Deal cancellation","-988484646":"Deal cancellation (executed)","-444882676":"Deal cancellation (active)","-13423018":"Reference ID","-1371082433":"Reset barrier","-1402197933":"Reset time","-2035315547":"Low barrier","-1745835713":"Selected tick","-1551639437":"No history","-1214703885":"You have yet to update either take profit or stop loss","-504849554":"It will reopen at","-59803288":"In the meantime, try our synthetic indices. They simulate real-market volatility and are open 24/7.","-1278109940":"See open markets","-694105443":"This market is closed","-104603605":"You cannot trade as your documents are still under review. We will notify you by email once your verification is approved.","-439389714":"We’re working on it","-770929448":"Go to {{platform_name_smarttrader}}","-347156282":"Submit Proof","-138538812":"Log in or create a free account to place a trade.","-2036388794":"Create free account","-1813736037":"No further trading is allowed on this contract type for the current trading session. For more info, refer to our <0>terms and conditions.","-1043795232":"Recent positions","-153220091":"{{display_value}} Tick","-802374032":"Hour","-663862998":"Markets","-1341681145":"When this is active, you can cancel your trade within the chosen time frame. Your stake will be returned without loss.","-2069438609":"No matches found","-97673874":"No closed trades","-1727419550":"Your closed trades will be shown here.","-225500551":"Entry & exit details","-993480898":"Accumulators","-123659792":"Vanillas","-1226595254":"Turbos","-922253974":"Rise/Fall","-1361254291":"Higher/Lower","-330437517":"Matches/Differs","-657360193":"Over/Under","-315741954":"{{amount}} trade types","-232254547":"Custom","-1251526905":"Last 7 days","-1539223392":"Last 90 days","-1913695340":"Order Details","-1882287418":"How do I earn a payout?","-2017825013":"Got it","-725670935":"Take profit and stop loss are unavailable while deal cancellation is enabled.","-1331298683":"Take profit can’t be adjusted for ongoing accumulator contracts.","-99964540":"When your profit reaches or exceeds the set amount, your trade will be closed automatically.","-1052279158":"Your <0>payout is the sum of your initial stake and profit.","-274058583":"<0>Take profit is an additional feature that lets you manage your risk by automatically closing the trade when your profit reaches the target amount. This feature is unavailable for ongoing accumulator contracts.","-1819891401":"You can close your trade anytime. However, be aware of <0>slippage risk.","-231957809":"Win maximum payout if the exit spot is higher than or equal to the upper barrier.","-464144986":"Win maximum payout if the exit spot is lower than or equal to the lower barrier.","-1031456093":"Win up to maximum payout if exit spot is between lower and upper barrier, in proportion to the difference between upper barrier and exit spot.","-968162707":"No payout if exit spot is above or equal to the upper barrier.","-2089488446":"If you select \"Ends Between\", you win the payout if the exit spot is strictly higher than the Low barrier AND strictly lower than the High barrier.","-1876950330":"If you select \"Ends Outside\", you win the payout if the exit spot is EITHER strictly higher than the High barrier, OR strictly lower than the Low barrier.","-546460677":"If the exit spot is equal to either the Low barrier or the High barrier, you don't win the payout.","-1929209278":"If you select \"Even\", you will win the payout if the last digit of the last tick is an even number (i.e., 2, 4, 6, 8, or 0).","-2038865615":"If you select \"Odd\", you will win the payout if the last digit of the last tick is an odd number (i.e., 1, 3, 5, 7, or 9).","-1959473569":"If you select \"Lower\", you win the payout if the exit spot is strictly lower than the barrier.","-1350745673":"If the exit spot is equal to the barrier, you don't win the payout.","-93996528":"By purchasing the \"Close-to-Low\" contract, you'll win the multiplier times the difference between the close and low over the duration of the contract.","-420387848":"The high is the highest point ever reached by the market during the contract period.","-1722190480":"By purchasing the \"High-to-Low\" contract, you'll win the multiplier times the difference between the high and low over the duration of the contract.","-1281286610":"If you select \"Matches\", you will win the payout if the last digit of the last tick is the same as your prediction.","-618782785":"Use multipliers to leverage your potential returns. Predict if the asset price will move upward (bullish) or downward (bearish). We’ll charge a commission when you open a multipliers trade.","-565391674":"If you select \"<0>Up\", your total profit/loss will be the percentage increase in the underlying asset price, times the multiplier and stake, minus commissions.","-1113825265":"Additional features are available to manage your positions: “<0>Take profit” and “<0>Stop loss” allow you to adjust your level of risk aversion.","-1104397398":"Additional features are available to manage your positions: “<0>Take profit”, “<0>Stop loss” and “<0>Deal cancellation” allow you to adjust your level of risk aversion.","-1272255095":"If the exit spot is equal to the barrier or the new barrier (if a reset occurs), you don't win the payout.","-1392065699":"If you select \"Rise\", you win the payout if the exit spot is strictly higher than the entry spot.","-1762566006":"If you select \"Fall\", you win the payout if the exit spot is strictly lower than the entry spot.","-1435306976":"If you select \"Allow equals\", you win the payout if exit spot is higher than or equal to entry spot for \"Rise\". Similarly, you win the payout if exit spot is lower than or equal to entry spot for \"Fall\".","-1812957362":"If you select \"Stays Between\", you win the payout if the market stays between (does not touch) either the High barrier or the Low barrier at any time during the contract period","-220379757":"If you select \"Goes Outside\", you win the payout if the market touches either the High barrier or the Low barrier at any time during the contract period.","-299450697":"If you select \"High Tick\", you win the payout if the selected tick is the highest among the next five ticks.","-1416078023":"If you select \"Touch\", you win the payout if the market touches the barrier at any time during the contract period.","-1565216130":"If you select <0>\"Up\", you’ll earn a payout if the spot price never drops below the barrier.","-1336860323":"If you select <0>\"Down\", you’ll earn a payout if the spot price never rises above the barrier.","-1547935605":"Your payout is equal to the <0>payout per point multiplied by the difference between the <0>final price and the barrier. You will only earn a profit if your payout is higher than your initial stake.","-1307465836":"You may sell the contract up to 15 seconds before expiry. If you do, we’ll pay you the <0>contract value.","-351875097":"Number of ticks","-729830082":"View less","-1649593758":"Trade info","-1382749084":"Go back to trading","-1239477911":"second","-1585766960":"min","-1652791614":"mins","-1977959027":"hours","-442488432":"day","-337314714":"days","-1435392215":"About deal cancellation","-1192773792":"Don't show this again","-471757681":"Risk management","-843831637":"Stop loss","-771725194":"Deal Cancellation","-1669741470":"The payout at expiry is equal to the payout per point multiplied by the difference between the final price and the strike price.","-2131851017":"Growth rate","-1422269966":"You can choose a growth rate with values of 1%, 2%, 3%, 4%, and 5%.","-1186791513":"Payout is the sum of your initial stake and profit.","-1682624802":"It is a percentage of the previous spot price. The percentage rate is based on your choice of the index and the growth rate.","-468501352":"If you select this feature, your trade will be closed automatically at the nearest available asset price when your profit reaches or exceeds the take profit amount. Your profit may be more than the amount you entered depending on the market price at closing.","-1186082278":"Your payout is equal to the payout per point multiplied by the difference between the final price and barrier.","-584445859":"This is when your contract will expire based on the duration or end time you’ve selected. If the duration is more than 24 hours, the cut-off time and expiry date will apply instead.","-1221049974":"Final price","-1247327943":"This is the spot price of the last tick at expiry.","-1890561510":"Cut-off time","-878534036":"If you select \"Call\", you’ll earn a payout if the final price is above the strike price at expiry. Otherwise, you won’t receive a payout.","-1587076792":"If you select \"Put\", you’ll earn a payout if the final price is below the strike price at expiry. Otherwise, you won’t receive a payout.","-1482134885":"We calculate this based on the strike price and duration you’ve selected.","-565990678":"Your contract will expire on this date (in GMT), based on the End time you’ve selected.","-1545819495":"Your trade will be closed automatically at the nearest available asset price when your loss reaches a certain percentage of your stake, but your loss never exceeds your stake. This percentage depends on the chosen underlying asset and the Multiplier.","-477936848":"We use next-tick-execution mechanism, which is the next asset price when the trade opening is processed by our servers.","-1476381873":"The latest asset price when the trade closure is processed by our servers.","-148680560":"Spot price of the last tick upon reaching expiry.","-1123926839":"Contracts will expire at exactly 14:00:00 GMT on your selected expiry date.","-1904828224":"We’ll offer to buy your contract at this price should you choose to sell it before its expiry. This is based on several factors, such as the current spot price, duration, etc. However, we won’t offer a contract value if the remaining duration is below 24 hours.","-127118348":"Choose {{contract_type}}","-543478618":"Try checking your spelling or use a different term","-338707425":"Minimum duration is 1 day","-1003473648":"Duration: {{duration}} day","-700280380":"Deal cancel. fee","-8998663":"Digit: {{last_digit}} ","-718750246":"Your stake will grow at {{growth_rate}}% per tick as long as the current spot price remains within ±{{tick_size_barrier_percentage}} from the previous spot price.","-1358367903":"Stake","-542594338":"Max. payout","-690963898":"Your contract will be automatically closed when your payout reaches this amount.","-511541916":"Your contract will be automatically closed upon reaching this number of ticks.","-438655760":"<0>Note: You can close your trade anytime. Be aware of slippage risk.","-774638412":"Stake must be between {{min_stake}} {{currency}} and {{max_stake}} {{currency}}","-434270664":"Current Price","-1956787775":"Barrier Price:","-1513281069":"Barrier 2","-390994177":"Should be between {{min}} and {{max}}","-1231210510":"Tick","-2055106024":"Toggle between advanced and simple duration settings","-1012793015":"End time","-1804019534":"Expiry: {{date}}","-2037881712":"Your contract will be closed automatically at the next available asset price on <0>.","-629549519":"Commission <0/>","-2131859340":"Stop out <0/>","-1686280757":"<0>{{commission_percentage}}% of (<1/> * {{multiplier}})","-732683018":"When your profit reaches or exceeds this amount, your trade will be closed automatically.","-989393637":"Take profit can't be adjusted after your contract starts.","-339236213":"Multiplier","-1763848396":"Put","-194424366":"above","-857660728":"Strike Prices","-1346404690":"You receive a payout at expiry if the spot price never touches or breaches the barrier throughout the contract duration. Otherwise, your contract will be terminated early.","-1572548510":"Ups & Downs","-71301554":"Ins & Outs","-952298801":"Look Backs","-763273340":"Digits","-2002533437":"Custom function","-215053350":"with:","-1257232389":"Specify a parameter name:","-1885742588":"with: ","-188442606":"function {{ function_name }} {{ function_params }} {{ dummy }}","-313112159":"This block is similar to the one above, except that this returns a value. The returned value can be assigned to a variable of your choice.","-1783320173":"Prematurely returns a value within a function","-1485521724":"Conditional return","-1482801393":"return","-46453136":"get","-1838027177":"first","-1182568049":"Get list item","-1675454867":"This block gives you the value of a specific item in a list, given the position of the item. It can also remove the item from the list.","-381501912":"This block creates a list of items from an existing list, using specific item positions.","-426766796":"Get sub-list","-1679267387":"in list {{ input_list }} find {{ first_or_last }} occurence of item {{ input_value }}","-2087996855":"This block gives you the position of an item in a given list.","-422008824":"Checks if a given list is empty","-1343887675":"This block checks if a given list is empty. It returns “True” if the list is empty, “False” if otherwise.","-1548407578":"length of {{ input_list }}","-1786976254":"This block gives you the total number of items in a given list.","-2113424060":"create list with item {{ input_item }} repeated {{ number }} times","-1955149944":"Repeat an item","-434887204":"set","-197957473":"as","-851591741":"Set list item","-1874774866":"ascending","-1457178757":"Sorts the items in a given list","-350986785":"Sort list","-324118987":"make text from list","-155065324":"This block creates a list from a given string of text, splitting it with the given delimiter. It can also join items in a list into a string of text.","-459051222":"Create list from text","-977241741":"List Statement","-451425933":"{{ break_or_continue }} of loop","-323735484":"continue with next iteration","-1592513697":"Break out/continue","-713658317":"for each item {{ variable }} in list {{ input_list }}","-1825658540":"Iterates through a given list","-952264826":"repeat {{ number }} times","-887757135":"Repeat (2)","-1608672233":"This block is similar to the block above, except that the number of times it repeats is determined by a given variable.","-533154446":"Repeat (1)","-1059826179":"while","-1893063293":"until","-279445533":"Repeat While/Until","-1003706492":"User-defined variable","-359097473":"set {{ variable }} to {{ value }}","-1588521055":"Sets variable value","-980448436":"Set variable","-1538570345":"Get the last trade information and result, then trade again.","-222725327":"Here is where you can decide if your bot should continue trading.","-1638446329":"Result is {{ win_or_loss }}","-1968029988":"Last trade result","-1588406981":"You can check the result of the last trade with this block.","-1459154781":"Contract Details: {{ contract_detail }}","-1652241017":"Reads a selected property from contract details list","-985351204":"Trade again","-2082345383":"These blocks transfer control to the Purchase conditions block.","-172574065":"This block will transfer the control back to the Purchase conditions block, enabling you to purchase another contract.","-403103225":"restart","-837044282":"Ask Price {{ contract_type }}","-1033917049":"This block returns the purchase price for the selected trade type.","-1863737684":"2. Purchase conditions","-228133740":"Specify contract type and purchase conditions.","-1098726473":"This block is mandatory. Only one copy of this block is allowed. You can place the Purchase block (see below) here as well as conditional blocks to define your purchase conditions.","-1777988407":"Payout {{ contract_type }}","-511116341":"This block returns the potential payout for the selected trade type","-1943211857":"Potential payout","-1738427539":"Purchase","-813464969":"buy","-53668380":"True if active contract can be sold before expiration at current market price","-43337012":"Sell profit/loss","-2112866691":"Returns the profit/loss from selling at market price","-2132417588":"This block gives you the potential profit or loss if you decide to sell your contract.","-1360483055":"set {{ variable }} to Bollinger Bands {{ band_type }} {{ dummy }}","-20542296":"Calculates Bollinger Bands (BB) from a list with a period","-1951109427":"Bollinger Bands (BB)","-857226052":"BB is a technical analysis indicator that’s commonly used by traders. The idea behind BB is that the market price stays within the upper and lower bands for 95% of the time. The bands are the standard deviations of the market price, while the line in the middle is a simple moving average line. If the price reaches either the upper or lower band, there’s a possibility of a trend reversal.","-325196350":"set {{ variable }} to Bollinger Bands Array {{ band_type }} {{ dummy }}","-199689794":"Similar to BB. This block gives you a choice of returning the values of either the lower band, higher band, or the SMA line in the middle.","-920690791":"Calculates Exponential Moving Average (EMA) from a list with a period","-960641587":"EMA is a type of moving average that places more significance on the most recent data points. It’s also known as the exponentially weighted moving average. EMA is different from SMA in that it reacts more significantly to recent price changes.","-1557584784":"set {{ variable }} to Exponential Moving Average Array {{ dummy }}","-32333344":"Calculates Moving Average Convergence Divergence (MACD) from a list","-628573413":"MACD is calculated by subtracting the long-term EMA (26 periods) from the short-term EMA (12 periods). If the short-term EMA is greater or lower than the long-term EMA than there’s a possibility of a trend reversal.","-1133676960":"Fast EMA Period {{ input_number }}","-883166598":"Period {{ input_period }}","-450311772":"set {{ variable }} to Relative Strength Index {{ dummy }}","-1861493523":"Calculates Relative Strength Index (RSI) list from a list of values with a period","-880048629":"Calculates Simple Moving Average (SMA) from a list with a period","-1150972084":"Market direction","-276935417":"This block is used to determine if the market price moves in the selected direction or not. It gives you a value of “True” or “False”.","-764931948":"in candle list get # from end {{ input_number }}","-924607337":"Returns the last digit of the latest tick","-560033550":"Returns the list of last digits of 1000 recent tick values","-74062476":"Make a List of {{ candle_property }} values in candles list with interval: {{ candle_interval_type }}","-1556495906":"Returns a list of specific values from a candle list according to selected time interval","-166816850":"Create a list of candle values (1)","-1261436901":"Candles List","-1174859923":"Read the selected candle value","-1972165119":"Read candle value (1)","-1956100732":"You can use this block to analyze the ticks, regardless of your trades","-443243232":"The content of this block is called on every tick. Place this block outside of any root block.","-641399277":"Last Tick","-1628954567":"Returns the value of the last tick","-1332756793":"This block gives you the value of the last tick.","-2134440920":"Last Tick String","-1466340125":"Tick value","-467913286":"Tick value Description","-785831237":"This block gives you a list of the last 1000 tick values.","-1546430304":"Tick List String Description","-1788626968":"Returns \"True\" if the given candle is black","-436010611":"Make a list of {{ candle_property }} values from candles list {{ candle_list }}","-1384340453":"Returns a list of specific values from a given candle list","-584859539":"Create a list of candle values (2)","-2010558323":"Read {{ candle_property }} value in candle {{ input_candle }}","-2846417":"This block gives you the selected candle value.","-1587644990":"Read candle value (2)","-1202212732":"This block returns account balance","-1737837036":"Account balance","-1963883840":"Put your blocks in here to prevent them from being removed","-1284013334":"Use this block if you want some instructions to be ignored when your bot runs. Instructions within this block won’t be executed.","-1217253851":"Log","-1987568069":"Warn","-104925654":"Console","-1956819233":"This block displays messages in the developer's console with an input that can be either a string of text, a number, boolean, or an array of data.","-1450461842":"Load block from URL: {{ input_url }}","-1088614441":"Loads blocks from URL","-1747943728":"Loads from URL","-2105753391":"Notify Telegram {{ dummy }} Access Token: {{ input_access_token }} Chat ID: {{ input_chat_id }} Message: {{ input_message }}","-1008209188":"Sends a message to Telegram","-1218671372":"Displays a notification and optionally play selected sound","-2099284639":"This block gives you the total profit/loss of your trading strategy since your bot started running. You can reset this by clicking “Clear stats” on the Transaction Stats window, or by refreshing this page in your browser.","-683825404":"Total Profit String","-718220730":"Total Profit String Description","-1861858493":"Number of runs","-264195345":"Returns the number of runs","-303451917":"This block gives you the total number of times your bot has run. You can reset this by clicking “Clear stats” on the Transaction Stats window, or by refreshing this page in your browser.","-2132861129":"Conversion Helper Block","-74095551":"Seconds Since Epoch","-15528039":"Returns the number of seconds since January 1st, 1970","-729807788":"This block returns the number of seconds since January 1st, 1970.","-1370107306":"{{ dummy }} {{ stack_input }} Run after {{ number }} second(s)","-558838192":"Delayed run","-1975250999":"This block converts the number of seconds since the Unix Epoch (1 January 1970) into a string of text representing the date and time.","-702370957":"Convert to date/time","-982729677":"Convert to timestamp","-311268215":"This block converts a string of text that represents the date and time into seconds since the Unix Epoch (1 January 1970). The time and time zone offset are optional. Example: 2019-01-01 21:03:45 GMT+0800 will be converted to 1546347825.","-1797602591":"Stop Loss: {{ currency }} {{ stop_loss }}","-1374685318":"Your contract is closed automatically when your loss is more than or equals to this amount. This block can only be used with the multipliers trade type.","-1214929127":"Stop loss must be a positive number.","-780745489":"If the contract type is “Both”, then the Purchase Conditions should include both Rise and Fall using the “Conditional Block\"","-2142851225":"Multiplier trade options","-625636913":"Amount must be a positive number.","-1466383897":"Duration: {{ duration_unit }} {{ duration_value }}","-440702280":"Trade options","-1193894978":"Define your trade options such as duration and stake. Some options are only applicable for certain trade types.","-46523443":"Duration value is not allowed. To run the bot, please enter a value between {{min}} to {{max}}.","-1483427522":"Trade Type: {{ trade_type_category }} > {{ trade_type }}","-323348124":"1. Trade parameters","-1671903503":"Run once at start:","-783173909":"Trade options:","-376956832":"Here is where you define the parameters of your contract.","-1244007240":"if {{ condition }} then","-1577206704":"else if","-33796979":"true","-1434883449":"This is a single block that returns a boolean value, either true or false.","-1946404450":"Compares two values","-979918560":"This block converts the boolean value (true or false) to its opposite.","-2047257743":"Null","-1274387519":"Performs selected logic operation","-766386234":"This block performs the \"AND\" or the \"OR\" logic operation.","-790995537":"test {{ condition }}","-1860211657":"if false {{ return_value }}","-1643760249":"This block tests if a given value is true or false and returns “True” or “False” accordingly.","-1551875333":"Test value","-52486882":"Arithmetical operations","-1010436425":"This block adds the given number to the selected variable","-999773703":"Change variable","-1272091683":"Mathematical constants","-1396629894":"constrain {{ number }} low {{ low_number }} high {{ high_number }}","-425224412":"This block constrains a given number so that it is within a set range.","-2072551067":"Constrain within a range","-43523220":"remainder of {{ number1 }} ÷ {{ number2 }}","-1291857083":"Returns the remainder after a division","-592154850":"Remainder after division","-736665095":"Returns the remainder after the division of the given numbers.","-1266992960":"Math Number Description","-77191651":"{{ number }} is {{ type }}","-817881230":"even","-142319891":"odd","-1000789681":"whole","-1735674752":"Test a number","-1017805068":"This block tests a given number according to the selection and it returns a value of “True” or “False”. Available options: Even, Odd, Prime, Whole, Positive, Negative, Divisible","-1858332062":"Number","-1053492479":"Enter an integer or fractional number into this block. Please use `.` as a decimal separator for fractional numbers.","-927097011":"sum","-1653202295":"max","-1555878023":"average","-1748351061":"mode","-992067330":"Aggregate operations","-1691561447":"This block gives you a random fraction between 0.0 to 1.0","-523625686":"Random fraction number","-933024508":"Rounds a given number to an integer","-1656927862":"This block rounds a given number according to the selection: round, round up, round down.","-1495304618":"absolute","-61210477":"Operations on a given number","-181644914":"This block performs the selected operations to a given number.","-840732999":"to {{ variable }} append text {{ input_text }}","-1469497908":"Appends a given text to a variable","-1851366276":"Text Append","-1666316828":"Appends a given text to a variable.","-1902332770":"Transform {{ input_text }} to {{ transform_type }}","-1489004405":"Title Case","-904432685":"Changes text case accordingly","-882381096":"letter #","-1027605069":"letter # from end","-2066990284":"random letter","-337089610":"in text {{ input_text1 }} find {{ first_or_last }} occurence of text {{ input_text2 }}","-1966694141":"Searches through a string of text for a specific occurrence of a given character or word, and returns the position.","-697543841":"Text join","-141160667":"length of {{ input_text }}","-1133072029":"Text String Length","-1109723338":"print {{ input_text }}","-736668830":"Print","-1631669591":"string","-1768939692":"number","-1821552998":"trim spaces from {{ side }} of {{ input_text }}","-801766026":"right side","-474779821":"Trims spaces","-1687036846":"Download block","-1266781295":"Expand","-894560707":"function","-1867119688":"Duplicate","-610728049":"Rearrange Vertically","-2033146714":"Collapse All Blocks","-958601558":"Delete Block","-1193267384":"Detach Block","-1750478127":"New variable name","-1061878051":"Y","-2047029150":"Unable to load the block file.","-1410769167":"Target must be an XML file","-609157479":"This URL is already loaded","-241945454":"Proposals are not ready","-1087890592":"Maximum loss amount reached","-1030545878":"You are rate limited for: {{ message_type }}, retrying in {{ delay }}s (ID: {{ request }})","-490766438":"You are disconnected, retrying in {{ delay }}s","-1389975609":"unknown","-1900515692":"Duration must be a positive integer","-245297595":"Please login","-1445046468":"Given candle is not valid","-1891622945":"{{hourPast}}h ago","-1919680487":"workspace","-1703118772":"The {{block_type}} block is misplaced from {{missing_space}}.","-1785726890":"purchase conditions","-461955353":"purchase price","-172348735":"profit","-1624674721":"contract type","-1644154369":"entry spot time","-510792478":"entry spot price","-1974651308":"exit spot time","-1600267387":"exit spot price","-514917720":"barrier","-1072292603":"No Change","-795152863":"green","-1640576332":"blue","-804983649":"yellow","-94281841":"red","-1242470654":"Earned money","-841561409":"Put Spread","-1429914047":"Low","-1893628957":"Open Time","-1896106455":"10 minutes","-999492762":"15 minutes","-1978767852":"30 minutes","-293628675":"1 hour","-385604445":"2 hours","-1965813351":"4 hours","-525321833":"1 day","-1691868913":"Touch/No Touch","-151151292":"Asians","-1048378719":"Reset Call/Reset Put","-1282312809":"High/Low Ticks","-1237186896":"Only Ups/Only Downs","-529846150":"Seconds","-1635771697":"middle","-1529389221":"Histogram","-1819860668":"MACD","-1750896349":"D'Alembert","-102980621":"The Oscar's Grind Strategy is a low-risk positive progression strategy that first appeared in 1965. By using this strategy, the size of your contract will increase after successful trades, but remains unchanged after unsuccessful trades.","-462715374":"Untitled Bot","-280147477":"All transactions","-137444201":"Buy","-130601012":"Please select duration","-1577570698":"Start date","-1904030160":"Transaction performed by (App ID: {{app_id}})","-1876891031":"Currency","-513103225":"Transaction time","-2066666313":"Credit/Debit","-1981004241":"Sell time","-1196431745":"Contract cost","-3423966":"Take profit<0 />Stop loss","-1131753095":"The {{trade_type_name}} contract details aren't currently available. We're working on making them available soon.","-360975483":"You've made no transactions of this type during this period.","-335816381":"Ends In/Ends Out","-1789807039":"Asian Up/Asian Down","-558031309":"High Tick/Low Tick","-447037544":"Buy price:","-737348236":"Contract cost:","-1694314813":"Contract value:","-113940416":"Current stake:","-1999539705":"Deal cancel. fee:","-155989831":"Decrement value","-338379841":"Indicative price:","-2027409966":"Initial stake:","-1769852749":"N/A","-726626679":"Potential profit/loss:","-1511825574":"Profit/Loss:","-499175967":"Strike Price","-2082644096":"Current stake","-706219815":"Indicative price","-1669418686":"AUD/CAD","-1548588249":"AUD/CHF","-1552890620":"AUD/JPY","-681231560":"AUD/PLN","-64938413":"AUD/USD","-1430522808":"EUR/AUD","-2020477069":"EUR/CAD","-1201853162":"EUR/CHF","-1318070255":"EUR/GBP","-1197505739":"EUR/JPY","-405907358":"EUR/USD","-1536293064":"NZD/JPY","-79700881":"NZD/USD","-642323838":"USD/CAD","-428199705":"USD/CHF","-424108348":"USD/JPY","-548255282":"USD/NOK","-1834131208":"USD/PLN","-524302516":"Silver/USD","-764731776":"Platinum/USD","-853582174":"France 40","-1096386695":"UK 100","-617646862":"Germany 40","-2077690248":"Japan 225","-512194910":"US Tech 100","-381746202":"US 500","-1935463381":"Swiss 20","-1941767726":"Euro 50","-1925264914":"Volatility 25 Index","-708579504":"Volatility 50 Index","-975255670":"Volatility 75 Index","-1736314513":"Crash 300 Index","-342128411":"Crash 500 Index","-9704319":"Crash 1000 Index","-465860988":"Bull Market Index","-390528194":"Step Index","-280323742":"EUR Basket","-563812039":"Volatility 10 (1s) Index","-82971929":"Volatility 25 (1s) Index","-433962508":"Volatility 75 (1s) Index","-764111252":"Volatility 100 (1s) Index","-816110209":"Volatility 150 (1s) Index","-1374309449":"Volatility 200 (1s) Index","-1288044380":"Volatility 250 (1s) Index","-1164978320":"Jump 10 Index","-575272887":"BCH/USD","-295406873":"BTC/ETH","-1713556301":"ZMR/USD","-2046638412":"XRP/USD","-1263203461":"BTC/USD","-1112522776":"DSH/USD","-460689370":"LTC/USD","-132112961":"Sharkfin","-1715390759":"I want to do this later","-56163366":"I don't have any of these","-175164838":"{{seconds_passed}}s ago","-514136557":"{{minutes_passed}}m ago","-1420737287":"{{hours_passed}}h ago","-2092611555":"Sorry, this app is unavailable in your current location.","-1488537825":"If you have an account, log in to continue.","-1603581277":"minutes","-886317740":"The <0>date of birth on your identity document doesn't match your profile.","-1606307809":"We were unable to verify the identity document with the details provided.","-475787720":"The verification status was empty, rejected for lack of information.","-1627868670":"Your identity document has expired.","-1302288704":"The document’s owner is deceased.","-895884696":"The <0>name and <0>date of birth on your identity document don't match your profile.","-1231856133":"The verification status is not available, provider says: Needs Technical Investigation.","-433687715":"For enhanced security, we need to reverify your identity. Kindly resubmit your proof of identity to unlock your account.","-1637538521":"Your document appears to be invalid.","-876579004":"The name on your document doesn’t match your profile.","-746520172":"Some details on your document appear to be invalid, missing, or unclear.","-2146200521":"The serial number of your document couldn’t be verified.","-1945323197":"Your document appears to be in black and white. Please upload a colour photo of your document.","-631393256":"Your document contains markings or text that should not be on your document.","-609103016":"The image quality of your document is too low. Please provide a hi-res photo of your identity document.","-530935718":"We’re unable to verify the document you provided because some details appear to be missing. Please try again or provide another document.","-1027031626":"We’re unable to verify the document you provided because it appears to be damaged. Please try again or upload another document.","-1671621833":"The front of your document appears to be missing. Please provide both sides of your identity document.","-727588232":"Your document appears to be a scanned copy that contains markings or text that shouldn’t be on your document.","-1435064387":"Your document appears to be a printed copy.","-624316211":"Your document appears to be a photo of a device screen.","-1714959941":"This chart display is not ideal for tick contracts","-1254554534":"Please change the chart duration to tick for a better trading experience.","-1658230823":"Contract was sold for <0 />.","-1905867404":"Contract cancelled"} \ No newline at end of file +{"0":"","1485191":"1:1000","2082741":"additional document number","2091451":"Deriv Bot - your automated trading partner","3125515":"Your Deriv MT5 password is for logging in to your Deriv MT5 accounts on the desktop, web, and mobile apps.","3215342":"Last 30 days","3420069":"To avoid delays, enter your <0>name and <0>date of birth exactly as they appear on your identity document.","4547840":"<0>Verify your account to transfer funds. <1>Verify now","5149403":"Learn more about trade types","7100308":"Hour must be between 0 and 23.","9488203":"Deriv Bot is a web-based strategy builder for trading digital options. It’s a platform where you can build your own automated trading bot using drag-and-drop 'blocks'.","9757544":"Please submit your proof of address","11533428":"Trade bigger positions with less capital on a wide range of global markets. <0>Learn more","11539750":"set {{ variable }} to Relative Strength Index Array {{ dummy }}","11706633":"Loss threshold: The bot will stop trading if your total loss exceeds this amount.","11872052":"Yes, I'll come back later","14365404":"Request failed for: {{ message_type }}, retrying in {{ delay }}s","15377251":"Profit amount: {{profit}}","17843034":"Check proof of identity document verification status","19424289":"Username","19552684":"USD Basket","21035405":"Please tell us why you’re leaving. (Select up to {{ allowed_reasons }} reasons.)","24900606":"Gold Basket","25854018":"This block displays messages in the developer’s console with an input that can be either a string of text, a number, boolean, or an array of data.","26566655":"Summary","26596220":"Finance","27582393":"Example :","27582767":"{{amount}} {{currency}}","27731356":"Your account is temporarily disabled. Please contact us via <0>live chat to enable deposits and withdrawals again.","27830635":"Deriv (V) Ltd","28581045":"Add a real MT5 account","33433576":"Please use an e-wallet to withdraw your funds.","35089987":"Upload the front and back of your driving licence.","41737927":"Thank you","44877997":"Residence permit","45453595":"Binary Coin","45821474":"Proof of income","46523711":"Your proof of identity is verified","49404821":"If you buy a \"<0>{{trade_type}}\" option, you receive a payout at expiry if the final price is {{payout_status}} the strike price. Otherwise, your “<0>{{trade_type}}” option will expire worthless.","53801223":"Hong Kong 50","53964766":"5. Hit Save to download your bot. You can choose to download your bot to your device or your Google Drive.","54185751":"Less than $100,000","55340304":"Keep your current contract?","55916349":"All","57362642":"Closed","58254854":"Scopes","59169515":"If you select \"Asian Rise\", you will win the payout if the last tick is higher than the average of the ticks.","59341501":"Unrecognized file format","59662816":"Stated limits are subject to change without prior notice.","62748351":"List Length","63869411":"This block tests a given number according to the selection","64402604":"Check transfer information","65185694":"Fiat onramp","65982042":"Total","66519591":"Investor password","66610627":"We were unable to verify your selfie because it’s not clear. Please take a clearer photo and try again. Ensure that there’s enough light where you are and that your entire face is in the frame.","67923436":"No, Deriv Bot will stop running when your web browser is closed.","68885999":"Repeats the previous trade when an error is encountered.","69005593":"The example below restarts trading after 30 or more seconds after 1 minute candle was started.","71016232":"OMG/USD","71232823":"Manage funds","71445658":"Open","71563326":"A fast and secure fiat-to-crypto payment service. Deposit cryptocurrencies from anywhere in the world using your credit/debit cards and bank transfers.","71853457":"$100,001 - $500,000","72500774":"Please fill in Tax residence.","73086872":"You have self-excluded from trading","73326375":"The low is the lowest point ever reached by the market during the contract period.","74963864":"Under","76635112":"To proceed, resubmit these documents","76916358":"You have reached the withdrawal limit.<0/>Please upload your proof of identity and address to lift the limit to continue your withdrawal.","76925355":"Check your bot’s performance","77982950":"Vanilla options allow you to predict an upward (bullish) or downward (bearish) direction of the underlying asset by purchasing a \"Call\" or a \"Put\".","81009535":"Potential profit/loss","81091424":"To complete the upgrade, please log out and log in again to add more accounts and make transactions with your Wallets.","81450871":"We couldn’t find that page","82839270":"Upload the page of your passport that contains your photo.","83202647":"Collapse Block","84402478":"Where do I find the blocks I need?","84924586":"To trade options and multipliers, get a Deriv Apps account first.","85343079":"Financial assessment","85359122":"40 or more","85389154":"Steps required to continue verification on your mobile","90266322":"2. Start a chat with your newly created Telegram bot and make sure to send it some messages before proceeding to the next step. (e.g. Hello Bot!)","91993812":"The Martingale Strategy is a classic trading technique that has been used for more than a hundred years, popularised by the French mathematician Paul Pierre Levy in the 18th century.","93154671":"1. Hit Reset at the bottom of stats panel.","96381225":"ID verification failed","98473502":"We’re not obliged to conduct an appropriateness test, nor provide you with any risk warnings.","98972777":"random item","100239694":"Upload front of card from your computer","102226908":"Field cannot be empty","105871033":"Your age in the document you provided appears to be below 18 years. We’re only allowed to offer our services to clients above 18 years old, so we’ll need to close your account. If you have a balance in your account, contact us via live chat and we’ll help to withdraw your funds before your account is closed.","107537692":"These limits apply to your options trades only. For example, <0>maximum total loss refers to the losses on all your trades on options trading platforms.","108916570":"Duration: {{duration}} days","109073671":"Please use an e-wallet that you have used for deposits previously. Ensure the e-wallet supports withdrawal. See the list of e-wallets that support withdrawals <0>here.","111215238":"Move away from direct light","111718006":"End date","111931529":"Max. total stake over 7 days","113378532":"ETH/USD","115032488":"Buy price and P/L","116005488":"Indicators","117056711":"We’re updating our site","117318539":"Password should have lower and uppercase English letters with numbers.","117366356":"Turbo options allow you to predict the direction of the underlying asset’s movements.","118727646":"{{new_account_title}}","119261701":"Prediction:","119446122":"Contract type is not selected","120340777":"Complete your personal details","122617359":"View tutorial","122993457":"This is to confirm that it's you making the withdrawal request.","123454801":"{{withdraw_amount}} {{currency_symbol}}","124723298":"Upload a proof of address to verify your address","125354367":"An example of D’Alembert's Grind strategy","125443840":"6. Restart last trade on error","125842960":"{{name}} is required.","127307725":"A politically exposed person (PEP) is someone appointed with a prominent public position. Close associates and family members of a PEP are also considered to be PEPs.","129005644":"The idea is that successful trades may recoup previous losses. However, it is crucial to exercise caution as the risk can quickly increase with this strategy. With Deriv Bot, you can minimise your risk by setting a maximum stake. This is an optional risk management feature. Let’s say a maximum stake of 3 USD. If your stake for the next trade is set to exceed 3 USD, your stake will reset to the initial stake of 1 USD. If you didn't set a maximum stake, it would have increased beyond 3 USD.","129137937":"You decide how much and how long to trade. You can take a break from trading whenever you want. This break can be from 6 weeks to 5 years. When it’s over, you can extend it or resume trading after a 24-hour cooling-off period. If you don’t want to set a specific limit, leave the field empty.","129729742":"Tax Identification Number*","130567238":"THEN","132596476":"In providing our services to you, we are required to ask you for some information to assess if a given product or service is appropriate for you and whether you have the experience and knowledge to understand the risks involved.<0/><0/>","132689841":"Trade on web terminal","133523018":"Please go to the Deposit page to get an address.","133536621":"and","133655768":"Note: If you wish to learn more about the Bot Builder, you can proceed to the <0>Tutorials tab.","136790425":"Try changing or removing filters to view available positions.","137589354":"To assess your trading experience and if our products are suitable for you. Please provide accurate and complete answers, as they may affect the outcome of this assessment.","138055021":"Synthetic indices","139454343":"Confirm my limits","141265840":"Funds transfer information","141626595":"Make sure your device has a working camera","142050447":"set {{ variable }} to create text with","142390699":"Connected to your mobile","143970826":"Payment problems?","145511192":"s is the initial stake.","145633981":"Unavailable as your documents are still under review","145736466":"Take a selfie","150156106":"Save changes","150486954":"Token name","151279367":"2. Set the Purchase conditions. In this example, your bot will purchase a Rise contract when it starts and after a contract closes.","151646545":"Unable to read file {{name}}","152415091":"Math","152524253":"Trade the world’s markets with our popular user-friendly platform.","153485708":"Zero Spread - BVI","157593038":"random integer from {{ start_number }} to {{ end_number }}","157871994":"Link expired","158355408":"Some services may be temporarily unavailable.","160746023":"Tether as an Omni token (USDT) is a version of Tether that is hosted on the Omni layer on the Bitcoin blockchain.","160863687":"Camera not detected","164112826":"This block allows you to load blocks from a URL if you have them stored on a remote server, and they will be loaded only when your bot runs.","164564432":"Deposits are temporarily unavailable due to system maintenance. You can make your deposits when the maintenance is complete.","165294347":"Please set your country of residence in your account settings to access the cashier.","165312615":"Continue on phone","165682516":"If you don’t mind sharing, which other trading platforms do you use?","167094229":"• Current stake: Use this variable to store the stake amount. You can assign any amount you want, but it must be a positive number.","170185684":"Ignore","170244199":"I’m closing my account for other reasons.","171307423":"Recovery","171579918":"Go to Self-exclusion","171638706":"Variables","173991459":"We’re sending your request to the blockchain.","174793462":"Strike","176078831":"Added","176319758":"Max. total stake over 30 days","176654019":"$100,000 - $250,000","177099483":"Your address verification is pending, and we’ve placed some restrictions on your account. The restrictions will be lifted once your address is verified.","179083332":"Date","181107754":"Your new <0>{{platform}} {{eligible_account_to_migrate}} account(s) are ready for trading.","181346014":"Notes ","181881956":"Contract Type: {{ contract_type }}","182630355":"Thank you for submitting your information.","184024288":"lower case","189705706":"This block uses the variable \"i\" to control the iterations. With each iteration, the value of \"i\" is determined by the items in a given list.","189759358":"Creates a list by repeating a given item","190834737":"Guide","191372501":"Accumulation of Income/Savings","192436105":"No need for symbols, digits, or uppercase letters","192573933":"Verification complete","195972178":"Get character","196810983":"If the duration is more than 24 hours, the Cut-off time and Expiry date will apply instead.","196998347":"We hold customer funds in bank accounts separate from our operational accounts which would not, in the event of insolvency, form part of the company's assets. This meets the <0>Gambling Commission's requirements for the segregation of customer funds at the level: <1>medium protection.","197190401":"Expiry date","201091938":"30 days","203179929":"<0>You can open this account once your submitted documents have been verified.","203271702":"Try again","203297887":"The Quick Strategy you just created will be loaded to the workspace.","203924654":"Hit the <0>Start button to begin and follow the tutorial.","204797764":"Transfer to client","204863103":"Exit time","206010672":"Delete {{ delete_count }} Blocks","207521645":"Reset Time","207824122":"Please withdraw your funds from the following Deriv account(s):","209533725":"You’ve transferred {{amount}} {{currency}}","210385770":"If you have an active account, please log in to continue. Otherwise, please sign up.","210872733":"The verification status is not available, provider says: Malformed JSON.","211224838":"Investment","211461880":"Common names and surnames are easy to guess","211487193":"Document number (e.g. identity card, passport, driver's license)","211847965":"Your <0>personal details are incomplete. Please go to your account settings and complete your personal details to enable withdrawals.","216650710":"You are using a demo account","217377529":"5. If the next trades are profitable, the stake for the following trade will be reduced by 2 USD. This can be shown above where the stake of 3 USD is reduced to 1 USD. See A3.","217403651":"St. Vincent & Grenadines","217504255":"Financial assessment submitted successfully","218441288":"Identity card number","220014242":"Upload a selfie from your computer","220186645":"Text Is empty","221261209":"A Deriv account will allow you to fund (and withdraw from) your CFDs account(s).","223120514":"In this example, each point of the SMA line is an arithmetic average of close prices for the last 50 days.","223607908":"Last digit stats for latest 1000 ticks for {{underlying_name}}","224650827":"IOT/USD","225887649":"This block is mandatory. It's added to your strategy by default when you create new strategy. You can not add more than one copy of this block to the canvas.","227591929":"To timestamp {{ input_datetime }} {{ dummy }}","227903202":"We’ll charge a 1% transfer fee for transfers in different currencies between your Deriv fiat and {{platform_name_mt5}} accounts.","228521812":"Tests whether a string of text is empty. Returns a boolean value (true or false).","233500222":"- High: the highest price","235244966":"Return to Trader's Hub","235583807":"SMA is a frequently used indicator in technical analysis. It calculates the average market price over a specified period, and is usually used to identify market trend direction: up or down. For example, if the SMA is moving upwards, it means the market trend is up. ","235994721":"Forex (standard/exotic) and cryptocurrencies","236642001":"Journal","238496287":"Leverage trading is high-risk, so it's a good idea to use risk management features such as stop loss. Stop loss allows you to","241546739":"Please choose the correct Deriv company and server name when logging in, as shown on Trader’s Hub.","243537306":"1. Under the Blocks menu, go to Utility > Variables.","243614144":"This is only available for existing clients.","245005091":"lower","245187862":"The DRC will make a <0>decision on the complaint (please note that the DRC mentions no timeframe for announcing its decision).","245812353":"if {{ condition }} return {{ value }}","246428134":"Step-by-step guides","248153700":"Reset your password","248565468":"Check your {{ identifier_title }} account email and click the link in the email to proceed.","248909149":"Send a secure link to your phone","251134918":"Account Information","251445658":"Dark theme","251882697":"Thank you! Your response has been recorded into our system.<0/><0/>Please click ‘OK’ to continue.","254912581":"This block is similar to EMA, except that it gives you the entire EMA line based on the input list and the given period.","256031314":"Cash Business","256602726":"If you close your account:","258448370":"MT5","258912192":"Trading assessment","260069181":"An error occured while trying to load the URL","260086036":"Place blocks here to perform tasks once when your bot starts running.","260361841":"Tax Identification Number can't be longer than 25 characters.","260393332":"You cannot make further deposits as your documents are still under review. We will notify you by email within 3 days once your verification is approved.","261074187":"4. Once the blocks are loaded onto the workspace, tweak the parameters if you want, or hit Run to start trading.","261250441":"Drag the <0>Trade again block and add it into the <0>do part of the <0>Repeat until block.","262095250":"If you select <0>\"Put\", you’ll earn a payout if the final price is below the strike price at expiry. Otherwise, you won’t receive a payout.","264976398":"3. 'Error' displays a message in red to highlight something that needs to be resolved immediately.","265644304":"Trade types","266455247":"Standard Vanuatu","267992618":"The platforms lack key features or functionality.","268940240":"Your balance ({{format_balance}} {{currency}}) is less than the current minimum withdrawal allowed ({{format_min_withdraw_amount}} {{currency}}). Please top up your account to continue with your withdrawal.","269322978":"Deposit with your local currency via peer-to-peer exchange with fellow traders in your country.","269607721":"Upload","270339490":"If you select \"Over\", you will win the payout if the last digit of the last tick is greater than your prediction.","270396691":"<0>Your Wallets are ready!","270610771":"In this example, the open price of a candle is assigned to the variable \"candle_open_price\".","270712176":"descending","270780527":"You've reached the limit for uploading your documents.","271637055":"Download is unavailable while your bot is running.","272179372":"This block is commonly used to adjust the parameters of your next trade and to implement stop loss/take profit logic.","273350342":"Copy and paste the token into the app.","273728315":"Should not be 0 or empty","274268819":"Volatility 100 Index","275116637":"Deriv X","276770377":"New MT5 account(s) under the {{to_account}} jurisdiction will be created for new trades.","277469417":"Exclude time cannot be for more than five years.","278684544":"get sub-list from # from end","280021988":"Use these shortcuts","281110034":"Effective trading with the D'Alembert system requires careful consideration of its stake progression and risk management. Traders can automate this approach using Deriv Bot, setting profit and loss thresholds to ensure balanced and controlled trading. However, it is crucial for traders to assess their risk appetite, test strategies on a demo account, and align with their own trading style before transitioning to real money trading. This optimization process helps strike a balance between potential gains and losses while managing risk prudently.","282319001":"Check your image","282564053":"Next, we'll need your proof of address.","283830551":"Your address doesn’t match your profile","284527272":"antimode","284772879":"Contract","284809500":"Financial Demo","287934290":"Are you sure you want to cancel this transaction?","289731075":"Get Started","291344459":"The table illustrates this principle in the second session. After a trade resulting in loss in round 4 followed by a successful trade in round 5, the stake will increase to 2 USD for round 6. This is in line with the strategy's rule of raising the stake only after a loss is followed by a successful trade.","291744889":"<0>1. Trade parameters:<0>","291817757":"Go to our Deriv community and learn about APIs, API tokens, ways to use Deriv APIs, and more.","292526130":"Tick and candle analysis","292589175":"This will display the SMA for the specified period, using a candle list.","292887559":"Transfer to {{selected_value}} is not allowed, Please choose another account from dropdown","293250845":"Are you sure you want to continue?","294043810":"I confirm that my tax information is accurate and complete.","294305803":"Manage account settings","294335229":"Sell at market price","296017162":"Back to Bot","301441673":"Select your citizenship/nationality as it appears on your passport or other government-issued ID.","304309961":"We're reviewing your withdrawal request. You may still cancel this transaction if you wish. Once we start processing, you won't be able to cancel.","304506198":"Total balance:","310234308":"Close all your positions.","312142140":"Save new limits?","312300092":"Trims the spaces within a given string or text.","313741895":"This block returns “True” if the last candle is black. It can be placed anywhere on the canvas except within the Trade parameters root block.","315306603":"You have an account that do not have currency assigned. Please choose a currency to trade with this account.","316694303":"Is candle black?","318705408":"Demo Zero Spread","318865860":"close","318984807":"This block repeats the instructions contained within for a specific number of times.","321457615":"Oops, something went wrong!","323179846":"The time interval for each candle can be set from one minute to one day.","323209316":"Select a Deriv Bot Strategy","323360883":"Baskets","325662004":"Expand Block","325763347":"result","326770937":"Withdraw {{currency}} ({{currency_symbol}}) to your wallet","327534692":"Duration value is not allowed. To run the bot, please enter {{min}}.","328539132":"Repeats inside instructions specified number of times","329353047":"Malta Financial Services Authority (MFSA) (licence no. IS/70156)","329404045":"<0>Switch to your real account<1> to create a {{platform}} {{account_title}} account.","330384187":"Enable trading with your first transfer.","333456603":"Withdrawal limits","333807745":"Click on the block you want to remove and press Delete on your keyboard.","334942497":"Buy time","337023006":"Start time cannot be in the past.","339449279":"Remaining time","339610914":"Spread Up/Spread Down","339879944":"GBP/USD","340807218":"Description not found.","342181776":"Cancel transaction","343873723":"This block displays a message. You can specify the color of the message and choose from 6 different sound options.","344418897":"These trading limits and self-exclusion help you control the amount of money and time you spend on {{brand_website_name}} and exercise <0>responsible trading.","345320063":"Invalid timestamp","345818851":"Sorry, an internal error occurred. Hit the above checkbox to try again.","346070861":"Zero Spread","346843343":"CFDs on financial and derived instruments with copy trading.","347029309":"Forex: standard/micro","347039138":"Iterate (2)","348951052":"Your cashier is currently locked","349047911":"Over","349110642":"<0>{{payment_agent}}<1>'s contact details","350602311":"Stats show the history of consecutive tick counts, i.e. the number of ticks the price remained within range continuously.","351744408":"Tests if a given text string is empty","352363702":"You may see links to websites with a fake Deriv login page where you’ll get scammed for your money.","353731490":"Job done","354945172":"Submit document","357477280":"No face found","357672069":"Income verification failed","359053005":"Please enter a token name.","359649435":"Given candle list is not valid","359809970":"This block gives you the selected candle value from a list of candles within the selected time interval. You can choose from open price, close price, high price, low price, and open time.","360224937":"Logic","360773403":"Bot Builder","363576009":"- High price: the highest price","363738790":"Browser","363990763":"Sell price:","367801124":"Total assets in your Deriv accounts.","368160866":"in list","369035361":"<0>•Your account number","371151609":"Last used","371710104":"This scope will allow third-party apps to buy and sell contracts for you, renew your expired purchases, and top up your demo accounts.","372291654":"Exclude time must be after today.","372645383":"True if the market direction matches the selection","372805409":"You should enter 9-35 characters.","373021397":"random","373306660":"{{label}} is required.","373495360":"This block returns the entire SMA line, containing a list of all values for a given period.","374537470":"No results for \"{{text}}\"","375714803":"Deal Cancellation Error","377231893":"Deriv Bot is unavailable in the EU","377538732":"Key parameters","379523479":"To avoid loss of funds, do not share tokens with the Admin scope with unauthorised parties.","380606668":"tick","380694312":"Maximum consecutive trades","381972464":"Your document has expired.","384303768":"This block returns \"True\" if the last candle is black. It can be placed anywhere on the canvas except within the Trade parameters root block.","384707870":"CRS confirmation","386278304":"Install the {{platform_name_trader}} web app","386502387":"Bot is not running","389923099":"Zoom in","390890891":"Last quarter","391685252":"Revoke","391915203":"Hedging","392582370":"Fall Equals","393789743":"Letters, spaces, periods, hyphens, apostrophes only.","396418990":"Offline","398816980":"Launch {{platform_name_trader}} in seconds the next time you want to trade.","401339495":"Verify address","401345454":"Head to the Tutorials tab to do so.","403456289":"The formula for SMA is:","406359555":"Contract details","406497323":"Sell your active contract if needed (optional)","411482865":"Add {{deriv_account}} account","412433839":"I agree to the <0>terms and conditions.","413594348":"Only letters, numbers, space, hyphen, period, and forward slash are allowed.","417864079":"You’ll not be able to change currency once you have made a deposit.","419485005":"Spot","419496000":"Your contract is closed automatically when your profit is more than or equals to this amount. This block can only be used with the multipliers trade type.","420072489":"CFD trading frequency","422055502":"From","423682863":"When your loss reaches or exceeds the set amount, your trade will be closed automatically.","424101652":"Quick strategy guides >","424272085":"We take your financial well-being seriously and want to ensure you are fully aware of the risks before trading.<0/><0/>","424897068":"Do you understand that you could potentially lose 100% of the money you use to trade?","426031496":"Stop","427134581":"Try using another file type.","427617266":"Bitcoin","429970999":"To avoid delays, enter your <0>name exactly as it appears on your {{document_name}}.","431267979":"Here’s a quick guide on how to use Deriv Bot on the go.","432273174":"1:100","432508385":"Take Profit: {{ currency }} {{ take_profit }}","432519573":"Document uploaded","433348384":"Real accounts are not available to politically exposed persons (PEPs).","433616983":"2. Investigation phase","434548438":"Highlight function definition","434896834":"Custom functions","436364528":"Your account will be opened with {{legal_entity_name}}, and will be subject to the laws of Saint Vincent and the Grenadines.","436534334":"<0>We've sent you an email.","437138731":"Create a new {{platform}} password","437453244":"Choose your preferred cryptocurrency","437485293":"File type not supported","437904704":"Maximum open positions","438067535":"Over $500,000","439398769":"This strategy is currently not compatible with Deriv Bot.","442281706":"You’ve just deleted a block.","442520703":"$250,001 - $500,000","443559872":"Financial SVG","444484637":"Logic negation","445419365":"1 - 2 years","447548846":"SSNIT number","450983288":"Your deposit is unsuccessful due to an error on the blockchain. Please contact your crypto wallet service provider for more info.","451852761":"Continue on your phone","452054360":"Similar to RSI, this block gives you a list of values for each entry in the input list.","452949978":"The 1-3-2-6 strategy is designed to capitalise on consecutive successful trades while minimising losses during losing streaks. The rationale behind this strategy lies in statistical probabilities, with adjustments to stake sizes based on the perceived likelihood of success. There is a higher likelihood of success in the second trade after one successful trade. Hence the stake adjusts to 3 in the second trade. In the third trade, the stake adjusts to 2 units due to a lower probability of a successful trade. If the third trade is also successful, the strategy then allocates all the previous gains (a total of 6 units of initial stake) into the fourth trade with the aim of doubling the potential profits. If the fourth trade results in a positive outcome, the strategy helps achieve a total gain of 12 units. However, it is crucial to exercise caution, as the risk can escalate quickly with this strategy, and any loss in the fourth trade forfeits all previous gains.","453175851":"Your MT5 Financial STP account will be opened through {{legal_entity_name}}. All trading in this account is subject to the regulations and guidelines of the Labuan Financial Service Authority (LFSA). None of your other accounts, including your Deriv account, is subject to the regulations and guidelines of the Labuan Financial Service Authority (LFSA).","454196938":"Regulation:","456746157":"Grant access to your camera from your browser settings","457020083":"It’ll take longer to verify you if we can’t read it","457494524":"1. From the block library, enter a name for the new variable and click Create.","459612953":"Select account","459817765":"Pending","460070238":"Congratulations","460975214":"Complete your Appropriateness Test","461795838":"Please contact us via live chat to unlock it.","462079779":"Resale not offered","463361726":"Select an item","465993338":"Oscar's Grind","466424460":"Oscar’s Grind","466837068":"Yes, increase my limits","467839232":"I trade forex CFDs and other complex financial instruments regularly on other platforms.","471402292":"Your bot uses a single trade type for each run.","473154195":"Settings","474306498":"We’re sorry to see you leave. Your account is now closed.","475492878":"Try Synthetic Indices","476023405":"Didn't receive the email?","477557241":"Remote blocks to load must be a collection.","478280278":"This block displays a dialog box that uses a customised message to prompt for an input. The input can be either a string of text or a number and can be assigned to a variable. When the dialog box is displayed, your strategy is paused and will only resume after you enter a response and click \"OK\".","478827886":"We calculate this based on the barrier you’ve selected.","479420576":"Tertiary","480356486":"*Boom 300 and Crash 300 Index","481276888":"Goes Outside","483279638":"Assessment Completed<0/><0/>","483591040":"Delete all {{ delete_count }} blocks?","485379166":"View transactions","487239607":"Converts a given True or False to the opposite value","488150742":"Resend email","489768502":"Change investor password","490053735":"If you select this feature, your trade will be closed automatically at the nearest available asset price when your loss reaches or exceeds the stop loss amount. Your loss may be more than the amount you entered depending on the market price at closing.","491603904":"Unsupported browser","492198410":"Make sure everything is clear","492566838":"Taxpayer identification number","497518317":"Function that returns a value","498562439":"or","499522484":"1. for \"string\": 1325.68 USD","500855527":"Chief Executives, Senior Officials and Legislators","500920471":"This block performs arithmetic operations between two numbers.","501401157":"You are only allowed to make deposits","501537611":"*Maximum number of open positions","502007051":"Demo Swap-Free SVG","502041595":"This block gives you a specific candle from within the selected time interval.","505793554":"last letter","508390614":"Demo Financial STP","511679687":"Accumulators allow you to express a view on the range of movement of an index and grow your stake exponentially at a fixed <0>growth rate.","514031715":"list {{ input_list }} is empty","514776243":"Your {{account_type}} password has been changed.","514948272":"Copy link","517631043":"We’ve sent your e-book. Check your email to download it.","517833647":"Volatility 50 (1s) Index","518955798":"7. Run Once at Start","519205761":"You can no longer open new positions with this account.","520136698":"Boom 500 Index","520458365":"Last used: ","521872670":"item","522703281":"divisible by","523123321":"- 10 to the power of a given number","524459540":"How do I create variables?","527329988":"This is a top-100 common password","529056539":"Options","531114081":"3. Contract Type","531675669":"Euro","532724086":"Employment contract","533403953":"Your existing <0>{{platform}} {{type}} {{from_account}} account(s) will remain accessible.","535041346":"Max. total stake per day","536277802":"TP & SL history","537788407":"Other CFDs Platform","538017420":"0.5 pips","538042340":"Principle 2: The stake only increases when a loss trade is followed by a successful trade","538228086":"Close-Low","541650045":"Manage {{platform}} password","541700024":"First, enter your driving licence number and the expiry date.","542038694":"Only letters, numbers, space, underscore, and hyphen are allowed for {{label}}.","542305026":"You must also submit a proof of identity.","543413346":"You have no open positions for this asset. To view other open positions, click Go to Reports","545323805":"Filter by trade types","547029855":"If you select this feature, you can cancel your trade within a chosen time frame if the asset price moves against your favour. You will get your stake back without profit/loss. We charge a small fee for this. Take profit and stop loss are disabled when deal cancellation is active.","549479175":"Deriv Multipliers","549799607":"Go to LiveChat","551569133":"Learn more about trading limits","551958626":"Excellent","554135844":"Edit","554410233":"This is a top-10 common password","555351771":"After defining trade parameters and trade options, you may want to instruct your bot to purchase contracts when specific conditions are met. To do that you can use conditional blocks and indicators blocks to help your bot to make decisions.","555881991":"National Identity Number Slip","558866810":"Run your bot","559224320":"Our classic “drag-and-drop” tool for creating trading bots, featuring pop-up trading charts, for advanced users.","560759471":"You'll see these details once the contract starts.","561982839":"Change your currency","562599414":"This block returns the purchase price for the selected trade type. This block can be used only in the \"Purchase conditions\" root block.","563034502":"We shall try to resolve your complaint within 15 business days. We will inform you of the outcome together with an explanation of our position and propose any remedial measures we intend to take.","563166122":"We shall acknowledge receiving your complaint, review it carefully, and keep you updated on the handling process. We might request further information or clarifications to facilitate the resolution of the complaint.","563652273":"Go to block","565410797":"The below image illustrates how Simple Moving Average Array block works:","566274201":"1. Market","567019968":"A variable is among the most important and powerful components in creating a bot. It is a way to store information, either as text or numbers. The information stored as a variable can be used and changed according to the given instructions. Variables can be given any name, but usually they are given useful, symbolic names so that it is easier to call them during the execution of instructions.","567163880":"Create a {{platform}} password","567755787":"Tax Identification Number is required.","569057236":"In which country was your document issued?","571921777":"Funds protection level","572576218":"Languages","573173477":"Is candle {{ input_candle }} black?","575668969":"3. For trades that result in a profit, the stake for the next trade will be increased by 2 USD. Deriv Bot will continue to add 2 USD for every successful trade. See A1.","575702000":"Remember, selfies, pictures of houses, or non-related images will be rejected.","575968081":"Account created. Select payment method for deposit.","576355707":"Select your country and citizenship:","577215477":"count with {{ variable }} from {{ start_number }} to {{ end_number }} by {{ step_size }}","577779861":"Withdrawal","577883523":"4. Awards and orders","578640761":"Call Spread","579529868":"Show all details — including the bottom 2 lines","580431127":"Restart buy/sell on error (disable for better performance): {{ checkbox }}","580665362":"Stays In/Goes Out","580774080":"insert at","581168980":"Legal","582945649":"2 minutes","584028307":"Allow equals","587577425":"Secure my account","587856857":"Want to know more about APIs?","592087722":"Employment status is required.","592964176":"Join over 2.5 million traders","593459109":"Try a different currency","595080994":"Example: CR123456789","597089493":"Here is where you can decide to sell your contract before it expires. Only one copy of this block is allowed.","597481571":"DISCLAIMER","597707115":"Tell us about your trading experience.","599469202":"{{secondPast}}s ago","602278674":"Verify identity","603849445":"Strike price","603849863":"Look for the <0>Repeat While/Until, and click the + icon to add the block to the workspace area.","603899222":"Distance to current spot","606240547":"- Natural log","606877840":"Back to today","607807243":"Get candle","609519227":"This is the email address associated with your Deriv account.","609650241":"Infinite loop detected","610537973":"Any information you provide is confidential and will be used for verification purposes only.","611020126":"View address on Blockchain","613418320":"<0>Setup unsuccessful","613877038":"Chart","615156635":"Your selfie does not match your document.","617345387":"If you select \"Reset-Up”, you win the payout if the exit spot is strictly higher than either the entry spot or the spot at reset time.","617910072":"Use your Deriv account email and password to login into the {{ platform }} platform.","618520466":"Example of a cut-off document","619268911":"<0>a.The Financial Commission will investigate the validity of the complaint within 5 business days.","619407328":"Are you sure you want to unlink from {{identifier_title}}?","621829484":"{{days_passed}}d ago","623192233":"Please complete the <0>Appropriateness Test to access your cashier.","623542160":"Exponential Moving Average Array (EMAA)","625571750":"Entry spot:","626175020":"Standard Deviation Up Multiplier {{ input_number }}","626809456":"Resubmit","627292452":"<0>Your Proof of Identity or Proof of Address did not meet our requirements. Please check your email for further instructions.","627814558":"This block returns a value when a condition is true. Use this block within either of the function blocks above.","628193133":"Account ID","629003252":"If your current password doesn't match these requirements, you'll need to create a new one in the next step.","629145209":"In case if the \"AND\" operation is selected, the block returns \"True\" only if both given values are \"True\"","629395043":"All growth rates","632398049":"This block assigns a null value to an item or statement.","632897893":"If any of the above applies to you, select <0>Yes. Otherwise, select <0>No.","634219491":"You have not provided your tax identification number. This information is necessary for legal and regulatory requirements. Please go to <0>Personal details in your account settings, and fill in your latest tax identification number.","634274250":"How long each trade takes to expire.","636219628":"<0>c.If no settlement opportunity can be found, the complaint will proceed to the determination phase to be handled by the DRC.","636427296":"Need help with tax info? Let us know via <0>live chat.","636579615":"Number of unit(s) to be added to the next trade after a losing trade. One unit is equivalent to the amount of initial stake.","639382772":"Please upload supported file type.","640249298":"Normal","640596349":"You have yet to receive any notifications","640730141":"Refresh this page to restart the identity verification process","641420532":"We've sent you an email","642210189":"Please check your email for the verification link to complete the process.","642393128":"Enter amount","642546661":"Upload back of license from your computer","644150241":"The number of contracts you have won since you last cleared your stats.","645902266":"EUR/NZD","646773081":"Profit threshold: The bot will stop trading if your total profit exceeds this amount.","647039329":"Proof of address required","647745382":"Input List {{ input_list }}","649317411":"On the basis of the information provided in relation to your knowledge and experience, we consider that the investments available via this website are not appropriate for you.<0/><1/>","649923867":"Adds a sign to a number to create a barrier offset. (deprecated)","650836587":"This article explores the Martingale strategy integrated into Deriv Bot, a versatile trading bot designed to trade assets such as forex, commodities, and derived indices. We will delve into the strategy's core parameters, its application, and provide essential takeaways for traders looking to use the bot effectively.","651284052":"Low Tick","651684094":"Notify","652298946":"Date of birth","654422099":"CRS confirmation is required.","654507872":"True-False","654924603":"Martingale","655937299":"We’ll update your limits. Click <0>Accept to acknowledge that you are fully responsible for your actions, and we are not liable for any addiction or loss.","656893085":"Timestamp","657325150":"This block is used to define trade options within the Trade parameters root block. Some options are only applicable for certain trade types. Parameters such as duration and stake are common among most trade types. Prediction is used for trade types such as Digits, while barrier offsets are for trade types that involve barriers such as Touch/No Touch, Ends In/Out, etc.","659482342":"Please remember that it is your responsibility to keep your answers accurate and up to date. You can update your personal details at any time in your account settings.","660481941":"To access your mobile apps and other third-party apps, you'll first need to generate an API token.","660991534":"Finish","661759508":"On the basis of the information provided in relation to your knowledge and experience, we consider that the investments available via this website are not appropriate for you.<0/><0/>","662953503":"Your contract will be closed when the <0>stop out level is reached.","664779910":"3. If the first trade results in profit, the stake for the following trade will not reduce but remain at the initial stake. The strategy minimally trades at the initial stake of 1 USD. See A1.","665089217":"Please submit your <0>proof of identity to authenticate your account and access your Cashier.","665777772":"XLM/USD","665872465":"In the example below, the opening price is selected, which is then assigned to a variable called \"op\".","666724936":"Please enter a valid ID number.","669494711":"1.4 pips","671630762":"We accept only these types of documents as proof of your address. The document must be recent (issued within last {{expiry_in_months}} months) and include your name and address:","672008428":"ZEC/USD","673915530":"Jurisdiction and choice of law","674973192":"Use this password to log in to your Deriv MT5 accounts on the desktop, web, and mobile apps.","676159329":"Could not switch to default account.","676675313":"Authy","677918431":"Market: {{ input_market }} > {{ input_submarket }} > {{ input_symbol }}","679199080":"Why passkeys?","680334348":"This block was required to correctly convert your old strategy.","681108680":"Additional information required for {{platform}} account(s)","681808253":"Previous spot price","681926004":"Example of a blurry document","682056402":"Standard Deviation Down Multiplier {{ input_number }}","686387939":"How do I clear my transaction log?","687193018":"Slippage risk","687212287":"Amount is a required field.","688510664":"You've {{two_fa_status}} 2FA on this device. You'll be logged out of your account on other devices (if any). Use your password and a 2FA code to log back in.","689137215":"Purchase price","691956534":"<0>You have added a {{currency}} account.<0> Make a deposit now to start trading.","692354762":"Please enter your {{document_name}}. {{example_format}}","693396140":"Deal cancellation (expired)","693933036":"Exploring the Oscar’s Grind strategy in Deriv Bot","694035561":"Trade options multipliers","696157141":"Low spot","696735942":"Enter your National Identification Number (NIN)","696870196":"- Open time: the opening time stamp","697630556":"This market is presently closed.","698037001":"National Identity Number","699159918":"1. Filing complaints","699646180":"A minimum deposit value of <0>{{minimum_deposit}} {{currency}} is required. Otherwise, the funds will be lost and cannot be recovered.","700259824":"Account currency","701034660":"We are still processing your withdrawal request.<0 />Please wait for the transaction to be completed before deactivating your account.","701462190":"Entry spot","701647434":"Search for string","702451070":"National ID (No Photo)","702561961":"Change theme","705262734":"Your Wallets are ready","705299518":"Next, upload the page of your passport that contains your photo.","705697927":"2. Set your preferred unit. In this example, it is 2 units or 2 USD.","705821926":"Learn about this trade type","706727320":"Binary options trading frequency","706755289":"This block performs trigonometric functions.","706960383":"We’ll offer to buy your contract at this price should you choose to sell it before its expiry. This is based on several factors, such as the current spot price, duration, etc. However, we won’t offer a contract value if the remaining duration is below 60 seconds.","707189572":"Your email address has changed.<0/>Now, log in with your new email address.","707662672":"{{unblock_date}} at {{unblock_time}}","708055868":"Driving licence number","710123510":"repeat {{ while_or_until }} {{ boolean }}","711999057":"Successful","712101776":"Take a photo of your passport photo page","712635681":"This block gives you the selected candle value from a list of candles. You can choose from open price, close price, high price, low price, and open time.","713054648":"Sending","714080194":"Submit proof","714746816":"MetaTrader 5 Windows app","715841616":"Please enter a valid phone number (e.g. +15417541234).","716428965":"(Closed)","718504300":"Postal/ZIP code","718509613":"Maximum duration: {{ value }}","720293140":"Log out","720519019":"Reset my password","721011817":"- Raise the first number to the power of the second number","723045653":"You'll log in to your Deriv account with this email address.","723961296":"Manage password","724526379":"Learn more with our tutorials","728042840":"To continue trading with us, please confirm where you live.","728824018":"Spanish Index","729251105":"Range: {{min}} - {{max}} {{duration_unit_text}} ","729651741":"Choose a photo","730473724":"This block performs the \"AND\" or the \"OR\" logic operation with the given values.","731382582":"BNB/USD","732828463":"Standing instructions to transfer funds to an account maintained in the United States, or directions regularly received from a US address","734298230":"Just a reminder","734390964":"Insufficient balance","734881840":"false","735907651":"A US residence address or a US correspondence address (including a US PO box)","737751617":"<0>Explore our website to see what’s available.","739126643":"Indicative high spot","742469109":"Reset Balance","743623600":"Reference","744110277":"Bollinger Bands Array (BBA)","745656178":"Use this block to sell your contract at the market price.","745674059":"Returns the specific character from a given string of text according to the selected option. ","746112978":"Your computer may take a few seconds to update","749336930":"Secure alternative to passwords.","750886728":"Switch to your real account to submit your documents","751468800":"Start now","751692023":"We <0>do not guarantee a refund if you make a wrong transfer.","752024971":"Reached maximum number of digits","752992217":"This block gives you the selected constant values.","753088835":"Default","753184969":"In providing our services to you, we are required to obtain information from you in order to assess whether a given product or service is appropriate for you (that is, whether you possess the experience and knowledge to understand the risks involved).<0/><1/>","753727511":"Type","755138488":"We’re unable to verify the document you provided because it contains markings or text that should not be on your document. Please provide a clear photo or a scan of your original identity document.","756152377":"SMA places equal weight to the entire distribution of values.","758003269":"make list from text","758492962":"210+","760528514":"Please note that changing the value of \"i\" won't change the value of the original item in the list","761576760":"Fund your account to start trading.","762926186":"A quick strategy is a ready-made strategy that you can use in Deriv Bot. There are 3 quick strategies you can choose from: Martingale, D'Alembert, and Oscar's Grind.","764366329":"Trading limits","766317539":"Language","772520934":"You may sell the contract up to 24 hours before expiry. If you do, we’ll pay you the <0>contract value.","773091074":"Stake:","773309981":"Oil/USD","773336410":"Tether is a blockchain-enabled platform designed to facilitate the use of fiat currencies in a digital manner.","775679302":"{{pending_withdrawals}} pending withdrawal(s)","775706054":"Do you sell trading bots?","776085955":"Strategies","776432808":"Select the country where you currently live.","778172770":"Deriv CFDs","780009485":"About D'Alembert","781924436":"Call Spread/Put Spread","783974693":"Avoid recent years","784311461":"Exponential Moving Average (EMA)","784583814":"Linked to your computer","785969488":"Jump 75 Index","787727156":"Barrier","788005234":"NA","792164271":"This is when your contract will expire based on the Duration or End time you’ve selected.","792622364":"Negative balance protection","793526589":"To file a complaint about our service, send an email to <0>complaints@deriv.com and state your complaint in detail. Please submit any relevant screenshots of your trading or system for our better understanding.","793531921":"Our company is one of the oldest and most reputable online trading companies in the world. We are committed to treat our clients fairly and provide them with excellent service.<0/><1/>Please provide us with feedback on how we can improve our services to you. Rest assured that you will be heard, valued, and treated fairly at all times.","794682658":"Copy the link to your phone","795859446":"Password saved","797007873":"Follow these steps to recover camera access:","797500286":"negative","800228448":"This complaints policy, which may change from time to time, applies to your account(s) registered with {{legal_entity_name_svg}} and {{legal_entity_name_fx}}.","800521289":"Your personal details are incomplete","801430087":"A link can contain the word \"Deriv\" and still be fake.","802436811":"View transaction details","802438383":"New proof of address is needed","802556390":"seconds","802989607":"Drag your XML file here","803500173":"Initial stake","806165583":"Australia 200","807499069":"Financial commission complaints procedure","808323704":"You can also use \"Compare\" and \"Logic operation\" blocks to make test variables.","812430133":"Spot price on the previous tick.","815925952":"This block is mandatory. Only one copy of this block is allowed. It is added to the canvas by default when you open Deriv Bot.","816580787":"Welcome back! Your messages have been restored.","816738009":"<0/><1/>You may also raise your unresolved dispute to the <2>Office of the Arbiter for Financial Services.","818447476":"Switch account?","820877027":"Please verify your proof of identity","821163626":"Server maintenance occurs every first Saturday of the month from 7 to 10 GMT time. You may experience service disruption during this time.","823186089":"A block that can contain text.","824797920":"Is list empty?","825042307":"Let’s try again","825179913":"This document number was already submitted for a different account. It seems you have an account with us that doesn't need further verification. Please contact us via <0>live chat if you need help.","826511719":"USD/SEK","827688195":"Disable Block","828219890":"then","828602451":"Returns the list of tick values in string format","830164967":"Last name","830703311":"My profile","830993327":"No current transactions available","832053636":"Document submission","832217983":"40 transactions or more in the past 12 months","832398317":"Sell Error","832721563":"If you select \"Low Tick\", you win the payout if the selected tick is the lowest among the next five ticks.","834966953":"1551661986 seconds since Jan 01 1970 (UTC) translates to 03/04/2019 @ 1:13am (UTC).","835336137":"View Detail","835350845":"Add another word or two. Uncommon words are better.","836097457":"I am interested in trading but have very little experience.","837063385":"Do not send other currencies to this address.","837066896":"Your document is being reviewed, please check back in 1-3 days.","839158849":"4. If the second trade results in a loss, the Deriv Bot will automatically increase your stake for the next trade by 2 USD. Deriv Bot will continue to add 2 USD to the previous round’s stake after every losing trade. See A2.","839805709":"To smoothly verify you, we need a better photo","841434703":"Disable stack","841543189":"View transaction on Blockchain","843333337":"You can only make deposits. Please complete the <0>financial assessment to unlock withdrawals.","845304111":"Slow EMA Period {{ input_number }}","848083350":"Your payout is equal to the <0>payout per point multiplied by the difference between the final price and the strike price. You will only earn a profit if your payout is higher than your initial stake.","850582774":"Please update your personal info","851054273":"If you select \"Higher\", you win the payout if the exit spot is strictly higher than the barrier.","851264055":"Creates a list with a given item repeated for a specific number of times.","851508288":"This block constrains a given number within a set range.","852527030":"Step 2","852583045":"Tick List String","852627184":"document number","854399751":"Digit code must only contain numbers.","854630522":"Choose a cryptocurrency account","857363137":"Volatility 300 (1s) Index","857445204":"Deriv currently supports withdrawals of Tether eUSDT to Ethereum wallet. To ensure a successful transaction, enter a wallet address compatible with the tokens you wish to withdraw. <0>Learn more","857986403":"do something","858663703":"For new trades, please transfer your funds into the new <0>{{platform}} {{eligible_account_to_migrate}} account(s).","860319618":"Tourism","862283602":"Phone number*","863023016":"For instance, if a trader has a loss threshold (B) of 100 USD, with an initial stake (s) of 1 USD and 2 units of increment (f), the calculation would be as follows:","863328851":"Proof of identity","864610268":"First, enter your {{label}} and the expiry date.","864655280":"You can continue to hold your current open positions in your existing MT5 account(s).","864957760":"Math Number Positive","865424952":"High-to-Low","865642450":"2. Logged in from a different browser","866496238":"Make sure your license details are clear to read, with no blur or glare","868826608":"Excluded from {{brand_website_name}} until","869068127":"The cashier is temporarily down due to maintenance. It will be available as soon as the maintenance is complete.","869823595":"Function","872661442":"Are you sure you want to update email <0>{{prev_email}} to <1>{{changed_email}}?","872721776":"2. Select your XML file and hit Select.","872817404":"Entry Spot Time","873166343":"1. 'Log' displays a regular message.","873387641":"If you have open positions","874461655":"Scan the QR code with your phone","874472715":"Your funds will remain in your existing MT5 account(s).","874484887":"Take profit must be a positive number.","875101277":"If I close my web browser, will Deriv Bot continue to run?","875532284":"Restart process on a different device","876086855":"Complete the financial assessment form","876292912":"Exit","879014472":"Reached maximum number of decimals","879647892":"You may sell the contract up until 60 seconds before expiry. If you do, we’ll pay you the <0>contract value.","881963105":"(XAUUSD, XAGUSD)","882423592":"The amount that you stake for the first trade. Note that this is the minimum stake amount.","885065431":"Get a Deriv account","888274063":"Town/City","888924866":"We don’t accept the following inputs for:","890299833":"Go to Reports","891337947":"Select country","893963781":"Close-to-Low","893975500":"You do not have any recent bots","894191608":"<0>c.We must award the settlement within 28 days of when the decision is reached.","896790627":"A US birthplace","897597439":"Changes saved.","898457777":"You have added a Deriv Financial account.","898904393":"Barrier:","899342595":"NIN","900646972":"page.","902045490":"3 minutes","903429103":"In candles list read {{ candle_property }} # from end {{ input_number }}","904696726":"API token","905227556":"Strong passwords contain at least 8 characters, combine uppercase and lowercase letters and numbers.","905564365":"MT5 CFDs","906049814":"We’ll review your documents and notify you of its status within 5 minutes.","906789729":"Your verification documents were already used for another account.","907680782":"Proof of ownership verification failed","909272635":"Financial - SVG","910888293":"Too many attempts","911048905":"(BTCUSD, ETHUSD)","912257733":"The workspace will be reset to the default strategy and any unsaved changes will be lost. <0>Note: This will not affect your running bot.","912406629":"Follow these steps:","912967164":"Import from your computer","915735109":"Back to {{platform_name}}","918447723":"Real","920125517":"Add demo account","921857297":"Enter a value from 0 to {{ value }}.","921901739":"- your account details of the bank linked to your account","922313275":"You're back online","924046954":"Upload a document showing your name and bank account number or account details.","924912760":"Your document appears to be a digital document.","929608744":"You are unable to make withdrawals","930255747":"Please enter your {{document_name}}. ","930346117":"Capitalization doesn't help very much","930546422":"Touch","933126306":"Enter some text here","933193610":"Only letters, periods, hyphens, apostrophes, and spaces, please.","937237342":"Strategy name cannot be empty","937682366":"Upload both of these documents to prove your identity.","937831119":"Last name*","937992258":"Table","938500877":"{{ text }}. <0>You can view the summary of this transaction in your email.","938947787":"Withdrawal {{currency}}","938988777":"High barrier","944499219":"Max. open positions","945532698":"Contract sold","945753712":"Back to Trader’s Hub","946204249":"Read","946841802":"A white (or green) candle indicates that the open price is lower than the close price. This represents an upward movement of the market price.","947046137":"Your withdrawal will be processed within 24 hours","947363256":"Create list","947704973":"Reverse D’Alembert","947758334":"City is required","947914894":"Top up  <0>","948156236":"Create {{type}} password","949859957":"Submit","951404247":"Enjoy seamless transactions across multiple currencies and an intuitive user interface with funds segregation.","952927527":"Regulated by the Malta Financial Services Authority (MFSA) (licence no. IS/70156)","956448295":"Cut-off image detected","957182756":"Trigonometric functions","958430760":"In/Out","959031082":"set {{ variable }} to MACD Array {{ dropdown }} {{ dummy }}","960201789":"3. Sell conditions","961266215":"140+","961327418":"My computer","961692401":"Bot","962251615":"If you want to adjust your self-exclusion limits, <0>contact us via live chat.","966457287":"set {{ variable }} to Exponential Moving Average {{ dummy }}","968576099":"Up/Down","969858761":"Principle 1: Strategy aims to potentially make one unit of profit per session","969987233":"Win up to maximum payout if exit spot is between lower and upper barrier, in proportion to the difference between exit spot and lower barrier.","970915884":"AN","974888153":"High-Low","975608902":"To trade CFDs, get a Deriv Apps account first.","975668699":"I confirm and accept {{company}} 's <0>Terms and Conditions","975747761":"Ongoing","975950139":"Country of Residence","977929335":"Go to my account settings","979713491":"Zero Spread BVI","980050614":"Update now","981138557":"Redirect","981568830":"You have chosen to exclude yourself from trading on our website until {{exclude_until}}. If you are unable to place a trade or deposit after your self-exclusion period, please contact us via <0>live chat.","981965437":"Scan the QR code below with your 2FA app. We recommend <0>Authy or <1>Google Authenticator.","982146443":"WhatsApp","982402892":"First line of address","982829181":"Barriers","983451828":"2. Select the asset and trade type.","986565137":"We've received your proof of income","987053672":"You can continue with the open positions on your current <0>{{platform}} {{existing_account}} account(s).","987224688":"How many trades have you placed with other financial instruments in the past 12 months?","988064913":"4. Come back to Deriv Bot and add the Notify Telegram block to the workspace. Paste the Telegram API token and chat ID into the block fields accordingly.","988361781":"You have no trading activity yet.","988934465":"When prompted, you must enable camera access to continue","989840364":"You’re under legal age.","990739582":"170+","992294492":"Your postal code is invalid","992677950":"Logging out on other devices","993827052":"Choosing this jurisdiction will give you a Financial STP account. Your trades will go directly to the market and have tighter spreads.","995563717":"not {{ boolean }}","997276809":"I confirm that the name and date of birth above match my chosen identity document","997311089":"Change my password","999008199":"text","1001160515":"Sell","1002989598":"iOS: iCloud keychain.","1003876411":"Should start with letter or number and may contain a hyphen, period and slash.","1004127734":"Send email","1006069082":"The objective of Martingale strategy is to take advantage of consecutive successful trades and maximise potential profits from them. This strategy is beneficial only if there are consecutive successful trades. Therefore, it is important to set a maximum stake to secure all the potential profits gained from a number of consecutive successful trades, or you could lose all the profits you have accumulated, including your initial stake. For example, if your goal is to maximise profits within 2 consecutive successful trades, you set a maximum stake of 2 USD, given your initial stake is 1 USD. Similarly, if your goal is to maximise profits within 3 consecutive successful trades, you set a maximum stake of 4 USD, given your initial stake is 1 USD.","1006458411":"Errors","1006664890":"Silent","1008151470":"Unit: The number of units that are added in the event of successful trades or the number of units removed in the event of losing trades. For example, if the unit is set at 2, the stake increases or decreases by two times the initial stake of 1 USD, meaning it changes by 2 USD.","1009032439":"All time","1010198306":"This block creates a list with strings and numbers.","1010337648":"We were unable to verify your proof of ownership.","1011208051":"Congratulations, you have successfully created your <0/>{{category}} {{platform}} {{type}} {{jurisdiction_selected_shortcode}} account. ","1011424042":"{{text}}. stake<0/>","1012102263":"You will not be able to log in to your account until this date (up to 6 weeks from today).","1015201500":"Define your trade options such as duration and stake.","1016220824":"You need to switch to a real money account to use this feature.<0/>You can do this by selecting a real account from the <1>Account Switcher.","1018803177":"standard deviation","1019265663":"You have no transactions yet.","1019508841":"Barrier 1","1021090237":"Upgrade your <0>{{account_1}} <1/>and <0>{{account_2}} {{platform}} account(s)","1021679446":"Multipliers only","1022934784":"1 minute","1022971288":"Payout per pip","1023237947":"1. In the example below, the instructions are repeated as long as the value of x is less than or equal to 10. Once the value of x exceeds 10, the loop is terminated.","1023643811":"This block purchases contract of a specified type.","1023795011":"Even/Odd","1024205076":"Logic operation","1026046972":"Please enter a payout amount that's lower than {{max_payout}}.","1026289179":"Trade on the go","1028211549":"All fields are required","1028758659":"Citizenship*","1029164365":"We presume that you possess the experience, knowledge, and expertise to make your own investment decisions and properly assess the risk involved.","1029641567":"{{label}} must be less than 30 characters.","1030021206":"change {{ variable }} by {{ number }}","1031602624":"We've sent a secure link to %{number}","1031731167":"Pound Sterling","1032173180":"Deriv","1032907147":"AUD/NZD","1033253221":"Confirm your identity to make a withdrawal.","1035893169":"Delete","1036116144":"Speculate on the price movement of an asset without actually owning it.","1036867749":"The desired duration, stake, prediction, and/or barrier(s) for the contract is defined here.","1038575777":"Change password","1039428638":"EU regulation","1039476188":"The size used to multiply the stake after a losing trade for the next trade.","1039755542":"Use a few words, avoid common phrases","1040472990":"1. Go to Bot Builder.","1040677897":"To continue trading, you must also submit a proof of address.","1041001318":"This block performs the following operations on a given list: sum, minimum, maximum, average, median, mode, antimode, standard deviation, random item.","1041620447":"If you are unable to scan the QR code, you can manually enter this code instead:","1042659819":"You have an account that needs action","1043790274":"There was an error","1044599642":"<0> has been credited into your {{platform}} {{title}} account.","1045704971":"Jump 150 Index","1045782294":"Click the <0>Change password button to change your Deriv password.","1047389068":"Food Services","1047644783":"Enable screen lock on your device.","1047881477":"Unfortunately, your browser does not support the video.","1048687543":"Labuan Financial Services Authority","1048947317":"Sorry, this app is unavailable in {{clients_country}}.","1049384824":"Rise","1050063303":"Videos on Deriv Bot","1050128247":"I confirm that I have verified the payment agent’s transfer information.","1050844889":"Reports","1052779010":"You are on your demo account","1052921318":"{{currency}} Wallet","1053153674":"Jump 50 Index","1053159279":"Level of education","1053556481":"Once you submit your complaint, we will send you an acknowledgement email to confirm that we have received it.","1055313820":"No document detected","1056381071":"Return to trade","1056821534":"Are you sure?","1057216772":"text {{ input_text }} is empty","1057519018":"4. If a trade ends in a profit, the stake for the following trade will be reset to the initial stake amount of 1 USD.","1057749183":"Two-factor authentication (2FA)","1057765448":"Stop out level","1057904606":"The concept of the D’Alembert Strategy is said to be similar to the Martingale Strategy where you will increase your contract size after a loss. With the D’Alembert Strategy, you will also decrease your contract size after a successful trade.","1058804653":"Expiry","1058905535":"Tutorial","1060231263":"When are you required to pay an initial margin?","1061308507":"Purchase {{ contract_type }}","1062423382":"Explore the video guides and FAQs to build your bot in the tutorials tab.","1062536855":"Equals","1062569830":"The <0>name on your identity document doesn't match your profile.","1065275078":"cTrader is only available on desktop for now.","1065498209":"Iterate (1)","1065766135":"You have {{remaining_transfers}} {{transfer_text}} remaining for today.","1066235879":"Transferring funds will require you to create a second account.","1066459293":"4.3. Acknowledging your complaint","1069347258":"The verification link you used is invalid or expired. Please request for a new one.","1070323991":"6. If consecutive successful trades were to happen, the stake would follow a sequence of adjustment from 1 to 3, then 2, and 6 units of initial stake. After 4 consecutive successful trades, it completes one cycle and then the strategy will repeat itself for another cycle. If any trade results in a loss, your stake will reset back to the initial stake for the next trade.","1070624871":"Check proof of address document verification status","1073261747":"Verifications","1073611269":"A copy of your identity document (e.g. identity card, passport, driver's license)","1073711308":"Trade closed","1076006913":"Profit/loss on the last {{item_count}} contracts","1077515534":"Date to","1078189922":"You can make a new deposit once the verification of your account is complete.","1078221772":"Leverage prevents you from opening large positions.","1078303105":"Stop out","1080068516":"Action","1080990424":"Confirm","1082158368":"*Maximum account cash balance","1082406746":"Please enter a stake amount that's at least {{min_stake}}.","1083781009":"Tax identification number*","1083826534":"Enable Block","1087112394":"You must select the strike price before entering the contract.","1088031284":"Strike:","1088138125":"Tick {{current_tick}} - ","1089085289":"Mobile number","1089436811":"Tutorials","1089687322":"Stop your current bot?","1090041864":"The {{block_type}} block is mandatory and cannot be deleted/disabled.","1095295626":"<0>•The Arbiter for Financial Services will determine whether the complaint can be accepted and is in accordance with the law.","1096078516":"We’ll review your documents and notify you of its status within 3 days.","1096175323":"You’ll need a Deriv account","1098147569":"Purchase commodities or shares of a company.","1098622295":"\"i\" starts with the value of 1, and it will be increased by 2 at every iteration. The loop will repeat until \"i\" reaches the value of 12, and then the loop is terminated.","1100133959":"National ID","1100870148":"To learn more about account limits and how they apply, please go to the <0>Help Centre.","1101560682":"stack","1101712085":"Buy Price","1102420931":"Next, upload the front and back of your driving licence.","1102995654":"Calculates Exponential Moving Average (EMA) list from a list of values with a period","1103309514":"Target","1103452171":"Cookies help us to give you a better experience and personalised content on our site.","1104912023":"Pending verification","1107474660":"Submit proof of address","1107555942":"To","1109217274":"Success!","1110102997":"Statement","1112582372":"Interval duration","1113119682":"This block gives you the selected candle value from a list of candles.","1113292761":"Less than 8MB","1113390200":"Your open trades will appear here.","1114679006":"You have successfully created your bot using a simple strategy.","1117281935":"Sell conditions (optional)","1117863275":"Security and safety","1118294625":"You have chosen to exclude yourself from trading on our website until {{exclusion_end}}. If you are unable to place a trade or deposit after your self-exclusion period, please contact us via live chat.","1119887091":"Verification","1119986999":"Your proof of address was submitted successfully","1120985361":"Terms & conditions updated","1122910860":"Please complete your <0>financial assessment.","1123927492":"You have not selected your account currency","1124382808":"Please enter the expiry time in the format \"HH:MM\".","1125090693":"Must be a number","1126075317":"Add your Deriv MT5 <0>{{account_type_name}} STP account under Deriv (FX) Ltd regulated by Labuan Financial Services Authority (Licence no. MB/18/0024).","1126934455":"Length of token name must be between 2 and 32 characters.","1127224297":"Sorry for the interruption","1127884488":"cTrader MacOS app","1128139358":"How many CFD trades have you placed in the past 12 months?","1128321947":"Clear All","1128404172":"Undo","1129124569":"If you select \"Under\", you will win the payout if the last digit of the last tick is less than your prediction.","1129842439":"Please enter a take profit amount.","1130791706":"N","1133651559":"Live chat","1134879544":"Example of a document with glare","1134883120":"Use your Deriv account email and password to log in to cTrader.","1138126442":"Forex: standard","1139483178":"Enable stack","1143730031":"Direction is {{ direction_type }}","1144028300":"Relative Strength Index Array (RSIA)","1145927365":"Run the blocks inside after a given number of seconds","1146064568":"Go to Deposit page","1147269948":"Barrier cannot be zero.","1150637063":"*Volatility 150 Index and Volatility 250 Index","1151964318":"both sides","1152294962":"Upload the front of your driving licence.","1154021400":"list","1154239195":"Title and name","1155011317":"This block converts the date and time to the number of seconds since the Unix Epoch (1970-01-01 00:00:00).","1155143434":"By clicking on <0>Next you agree to move your {{platform}} {{type}} {{from_account}} account(s) under <2/>Deriv {{account_to_migrate}} Ltd’s <1>terms and conditions.","1155626418":"below","1158678321":"<0>b.The Head of the Dispute Resolution Committee (DRC) will contact both you and us within 5 business days to obtain all necessary information and see if there is a chance to settle the complaint during the investigation phase.","1160761178":"No payout if exit spot is below or equal to the lower barrier.","1161924555":"Please select an option","1163771266":"The third block is <0>optional. You may use this block if you want to sell your contract before it expires. For now, leave the block as it is. ","1163836811":"Real Estate","1164773983":"Take profit and/or stop loss are not available while deal cancellation is active.","1166023941":"New password","1166128807":"Choose one of your accounts or add a new cryptocurrency account","1166377304":"Increment value","1166916934":"Demo Standard SVG","1168029733":"Win payout if exit spot is also equal to entry spot.","1169201692":"Create {{platform}} password","1170228717":"Stay on {{platform_name_trader}}","1171765024":"Step 3","1171961126":"trade parameters","1172230903":"• Stop loss threshold: Use this variable to store your loss limit. You can assign any amount you want. Your bot will stop when your losses hits or exceeds this amount.","1172524677":"CFDs Demo","1173957529":"Go to ‘Account Settings’ on Deriv.","1174542625":"- Find the chat ID property in the response, and copy the value of the id property","1174689133":"3. Set your trade parameters and hit Run.","1174748431":"Payment channel","1175183064":"Vanuatu","1177396776":"If you select \"Asian Fall\", you will win the payout if the last tick is lower than the average of the ticks.","1177723589":"There are no transactions to display","1178582280":"The number of contracts you have lost since you last cleared your stats.","1178800778":"Take a photo of the back of your license","1178942276":"Please try again in a minute.","1179704370":"Please enter a take profit amount that's higher than the current potential profit.","1181396316":"This block gives you a random number from within a set range","1181770592":"Profit/loss from selling","1183007646":"- Contract type: the name of the contract type such as Rise, Fall, Touch, No Touch, etс.","1183448523":"<0>We're setting up your Wallets","1184968647":"Close your contract now or keep it running. If you decide to keep it running, you can check and close it later on the ","1186687280":"Question {{ current }} of {{ total }}","1188316409":"To receive your funds, contact the payment agent with the details below","1188980408":"5 minutes","1189249001":"4.1. What is considered a complaint?","1189368976":"Please complete your personal details before you verify your identity.","1190226567":"Standard - Vanuatu","1191429031":"Please click on the link in the email to change your <0>{{platform_name_dxtrade}} password.","1192598228":"Wallets will become your dedicated fund management tool, allowing you to transfer funds between Wallets and trading accounts instantly.","1195393249":"Notify {{ notification_type }} with sound: {{ notification_sound }} {{ input_message }}","1196006480":"Profit threshold","1198368641":"Relative Strength Index (RSI)","1199281499":"Last Digits List","1201533528":"Contracts won","1201773643":"numeric","1203297580":"This block sends a message to a Telegram channel.","1203380736":"The D’Alembert strategy is less risky than Martingale, but you can still determine how long your funds will last with this strategy before trading. Simply use this formula.","1204223111":"In this example, the open prices from a list of candles are assigned to a variable called \"candle_list\".","1204459171":"Your existing <0>{{platform}} {{type_1}} <1/>and <0>{{type_2}} {{from_account}} account(s) will remain accessible.","1206227936":"How to mask your card?","1206821331":"Armed Forces","1208729868":"Ticks","1208903663":"Invalid token","1211912982":"Bot is starting","1214893428":"Account creation is currently unavailable for mobile. Please log in with your computer to create a new account.","1216408337":"Self-Employed","1217159705":"Bank account number","1217481729":"Tether as an ERC20 token (eUSDT) is a version of Tether that is hosted on Ethereum.","1218546232":"What is Fiat onramp?","1219844088":"do %1","1221250438":"To enable withdrawals, please submit your <0>Proof of Identity (POI) and <1>Proof of Address (POA) and also complete the <2>financial assessment in your account settings.","1222096166":"Deposit via bank wire, credit card, and e-wallet","1222521778":"Making deposits and withdrawals is difficult.","1222544232":"We’ve sent you an email","1225874865":"The stake adjustment: target session profit (1 USD) - current session profit (0 USD) = 1 USD","1227074958":"random fraction","1227132397":"4. For trades that result in a loss, there are two outcomes. If it was traded at the initial stake, the next trade will remain at the same amount as the strategy trades minimally at the initial stake, see A2. If it was traded with a higher amount, the stake for the next trade would be reduced by 2 USD, see A3.","1227240509":"Trim spaces","1228534821":"Some currencies may not be supported by payment agents in your country.","1229883366":"Tax identification number","1230884443":"State/Province (optional)","1231282282":"Use only the following special characters: {{permitted_characters}}","1232291311":"Maximum withdrawal remaining","1232353969":"0-5 transactions in the past 12 months","1233178579":"Our customers say","1233300532":"Payout","1233910495":"If you select \"<0>Down\", your total profit/loss will be the percentage decrease in the underlying asset price, times the multiplier and stake, minus commissions.","1234292259":"Source of wealth","1234764730":"Upload a screenshot of your name and email address from the personal details section.","1234889964":"Better funds segregation","1237330017":"Pensioner","1238311538":"Admin","1239752061":"In your cryptocurrency wallet, make sure to select the <0>{{network_name}} network when you transfer funds to Deriv.","1239760289":"Complete your trading assessment","1239940690":"Restarts the bot when an error is encountered.","1240027773":"Please Log in","1240688917":"Glossary","1241238585":"You may transfer between your Deriv fiat, cryptocurrency, and {{platform_name_mt5}} accounts.","1242288838":"Hit the checkbox above to choose your document.","1242994921":"Click here to start building your Deriv Bot.","1243064300":"Local","1243287470":"Transaction status","1246207976":"Enter the authentication code generated by your 2FA app:","1246880072":"Select issuing country","1247280835":"Our cryptocurrency cashier is temporarily down due to system maintenance. You can make cryptocurrency deposits and withdrawals in a few minutes when the maintenance is complete.","1248018350":"Source of income","1248940117":"<0>a.The decisions made by the DRC are binding on us. DRC decisions are binding on you only if you accept them.","1250113042":"This device doesn't support passkeys.","1250495155":"Token copied!","1252669321":"Import from your Google Drive","1253531007":"Confirmed","1253636052":"MetaTrader5 web terminal","1254565203":"set {{ variable }} to create list with","1255827200":"You can also import or build your bot using any of these shortcuts.","1255909792":"last","1255963623":"To date/time {{ input_timestamp }} {{ dummy }}","1258097139":"What could we do to improve?","1258198117":"positive","1259145708":"Let’s try again. Choose another document and enter the corresponding details.","1259598687":"GBP/JPY","1260259925":"Phone is not in a proper format.","1264096613":"Search for a given string","1265317149":"A recent utility bill (e.g. electricity, water or gas) or recent bank statement or government-issued letter with your name and address.","1265704976":"","1266728508":"Proof of income verification passed","1269296089":"Let's build a Bot!","1270581106":"If you select \"No Touch\", you win the payout if the market never touches the barrier at any time during the contract period.","1272012156":"GBP/CHF","1272337240":"Days","1272681097":"Hours","1274380814":"Your payout is equal to the <0>payout per pip multiplied by the difference, <1>in pips, between the final price and the strike price. You will only earn a profit if your payout is higher than your initial stake.","1274819385":"3. Complaints and Disputes","1276660852":"Submit your proof of identity","1281045211":"Sorts the items in a given list, by their numeric or alphabetical value, in either ascending or descending order.","1281290230":"Select","1282951921":"Only Downs","1284522768":"If \"Loss\" is selected, it will return \"True\" if your last trade was unsuccessful. Otherwise, it will return an empty string.","1286094280":"Withdraw","1286507651":"Close identity verification screen","1288965214":"Passport","1289146554":"British Virgin Islands Financial Services Commission","1289650867":"The Oscar’s Grind strategy is designed to potentially gain a modest yet steady profit in each trading session. This strategy splits trades into sessions and has three principles.","1290525720":"Example: ","1291997417":"Contracts will expire at exactly 23:59:59 GMT on your selected expiry date.","1292179259":"No open trades","1292188546":"Reset Deriv MT5 investor password","1292891860":"Notify Telegram","1293660048":"Max. total loss per day","1294553728":"We’re unable to verify the document you provided because it appears to be a blank image. Please try again or upload another document.","1294756261":"This block creates a function, which is a group of instructions that can be executed at any time. Place other blocks in here to perform any kind of action that you need in your strategy. When all the instructions in a function have been carried out, your bot will continue with the remaining blocks in your strategy. Click the “do something” field to give it a name of your choice. Click the plus icon to send a value (as a named variable) to your function.","1295284664":"Please accept our <0>updated Terms and Conditions to proceed.","1296380713":"Close my contract","1298254025":"Standard - BVI","1299479533":"8 hours","1300576911":"Please resubmit your proof of address or we may restrict your account.","1302691457":"Occupation","1303016265":"Yes","1303530014":"We’re processing your withdrawal.","1304083330":"copy","1304272843":"Please submit your proof of address.","1304620236":"Enable camera","1305217290":"Upload the back of your identity card.","1306976251":"Standard SVG","1308625834":"Sets the default time interval for blocks that read list of candles.","1309017029":"Enabling this allows you to save your blocks as one collection which can be easily integrated into other bots.","1309044871":"Returns the value of the latest tick in string format","1310483610":"Results for \"{{ search_term }}\"","1311680770":"payout","1313167179":"Please log in","1313302450":"The bot will stop trading if your total loss exceeds this amount.","1314572331":"Your document failed our verification checks.","1316216284":"You can use this password for all your {{platform}} accounts.","1319217849":"Check your mobile","1320715220":"<0>Account closed","1320750775":"Front and back","1322804930":"Restart the process on the latest version of Google Chrome","1323327633":"Our complaints process comprises the following 4 steps:","1323476617":"Changes the capitalisation of a string of text to Upper case, Lower case, Title case.","1323996051":"Profile","1324922837":"2. The new variable will appear as a block under Set variable.","1325514262":"(licence no. MB/18/0024)","1327181172":"Financial Vanuatu","1327494533":"{{sell_value}} (Sell)","1329136554":"Jump 200 Index","1329325646":"The content of this block is called on every tick","1331199417":"Please enter the correct format. ","1331367811":"Client account number","1332168410":"Learn more","1332168769":"Disconnect","1333576137":"Please update your {{details}} to continue.","1333839457":"Submit identity card (front)","1334326985":"It may take a few minutes to arrive","1335967988":"Notice","1337846406":"This block gives you the selected candle value from a list of candles within the selected time interval.","1337864666":"Photo of your document","1338496204":"Ref. ID","1339613797":"Regulator/External dispute resolution","1340286510":"The bot has stopped, but your trade may still be running. You can check it on the Reports page.","1341840346":"View in Journal","1341921544":"Trading accounts and funds","1344696151":"Forex, stocks, stock indices, commodities, cryptocurrencies and synthetic indices.","1346038489":"Should be less than 70.","1346204508":"Take profit","1346339408":"Managers","1346947293":"We were unable to verify your selfie because it’s not clear. Please take a clearer photo and try again. Ensure that there's enough light where you are and that your entire face is in the frame.","1347071802":"{{minutePast}}m ago","1349133669":"Try changing your search criteria.","1349289354":"Great, that's everything we need","1349295677":"in text {{ input_text }} get substring from {{ position1 }} {{ index1 }} to {{ position2 }} {{ index2 }}","1351906264":"This feature is not available for payment agents.","1352234202":"Last {{positionsCount}} contracts:","1353197182":"Please select","1354288636":"Based on your answers, it looks like you have insufficient knowledge and experience in trading CFDs. CFD trading is risky and you could potentially lose all of your capital.<0/><0/>","1355250245":"{{ calculation }} of list {{ input_list }}","1356574493":"Returns a specific portion of a given string of text.","1356607862":"Deriv password","1357213116":"Identity card","1358543466":"Not available","1358543748":"enabled","1360929368":"Add a Deriv account","1362029761":"Exploring the Reverse Martingale strategy in Deriv Bot","1362578283":"High","1363645836":"Derived FX","1363675688":"Duration is a required field.","1364879837":"The verification is passed but the personal info is not available to compare.","1364958515":"Stocks","1366244749":"Limits","1367488817":"4. Restart trading conditions","1367990698":"Volatility 10 Index","1370647009":"Enjoy higher daily limits","1371193412":"Cancel","1371555192":"Choose your preferred payment agent and enter your withdrawal amount. If your payment agent is not listed, <0>search for them using their account number.","1371641641":"Open the link on your mobile","1371911731":"Financial products in the EU are offered by {{legal_entity_name}}, licensed as a Category 3 Investment Services provider by the Malta Financial Services Authority (<0>Licence no. IS/70156).","1373949314":"The Reverse Martingale strategy involves increasing your stake after each successful trade and resets to the initial stake for every losing trade as it aims to secure potential profits from consecutive wins.","1374627690":"Max. account balance","1374902304":"Your document appears to be damaged or cropped.","1375884086":"Financial, legal, or government document: recent bank statement, affidavit, or government-issued letter.","1376329801":"Last 60 days","1378419333":"Ether","1380349261":"Range","1383017005":"You have switched accounts.","1384127719":"You should enter {{min}}-{{max}} numbers.","1384222389":"Please submit valid identity documents to unlock the cashier.","1385418910":"Please set a currency for your existing real account before creating another account.","1387503299":"Log in","1388770399":"Proof of identity required","1389197139":"Import error","1390792283":"Trade parameters","1391174838":"Potential payout:","1392985917":"This is similar to a commonly used password","1393559748":"Invalid date/time: {{ datetime_string }}","1393901361":"There’s an app for that","1393903598":"if true {{ return_value }}","1396179592":"Commission","1396417530":"Bear Market Index","1397628594":"Insufficient funds","1400341216":"We’ll review your documents and notify you of its status within 1 to 3 days.","1400732866":"View from camera","1400962248":"High-Close","1402208292":"Change text case","1402224124":"Hit the button below, and we'll email you a verification link.","1402300547":"Lets get your address verified","1403376207":"Update my details","1405584799":"with interval: {{ candle_interval_type }}","1407191858":"DTrader","1408844944":"Click the plus icon to extend the functionality of this block.","1411373212":"Strong passwords contain at least 8 characters. combine uppercase and lowercase letters, numbers, and symbols.","1412405902":"See important notes","1412535872":"You can check the result of the last trade with this block. It can only be placed within the \"Restart trading conditions\" root block.","1413047745":"Assigns a given value to a variable","1413359359":"Make a new transfer","1414205271":"prime","1414366321":"An uppercase letter","1414918420":"We'll review your proof of identity again and will give you an update as soon as possible.","1415006332":"get sub-list from first","1415513655":"Download cTrader on your phone to trade with the Deriv cTrader account","1415974522":"If you select \"Differs\", you will win the payout if the last digit of the last tick is not the same as your prediction.","1416521695":"Positions","1417558007":"Max. total loss over 7 days","1417907460":"No problem! Your passkey still works.","1417914636":"Login ID","1418115525":"This block repeats instructions as long as a given condition is true.","1419330165":"Forex, stocks, stock indices, commodities, cryptocurrencies, ETFs and synthetic indices","1421046084":"Setup your account","1421749665":"Simple Moving Average (SMA)","1422060302":"This block replaces a specific item in a list with another given item. It can also insert the new item in the list at a specific position.","1422129582":"All details must be clear — nothing blurry","1423082412":"Last Digit","1423296980":"Enter your SSNIT number","1424741507":"See more","1424763981":"1-3-2-6","1424779296":"If you've recently used bots but don't see them in this list, it may be because you:","1428657171":"You can only make deposits. Please contact us via <0>live chat for more information.","1430221139":"Verify now","1430396558":"5. Restart buy/sell on error","1430632931":"To get trading, please confirm who you are, and where you live.","1433367863":"Sorry, an error occured while processing your request.","1433468641":"We offer our services in all countries, except for the ones mentioned in our terms and conditions.","1434382099":"Displays a dialog window with a message","1434767075":"Get started on Deriv Bot","1434976996":"Announcement","1435363248":"This block converts the number of seconds since the Unix Epoch to a date and time format such as 2019-08-01 00:00:00.","1437396005":"Add comment","1437529196":"Payslip","1438247001":"A professional client receives a lower degree of client protection due to the following.","1438340491":"else","1439168633":"Stop loss:","1441208301":"Total<0 />profit/loss","1442747050":"Loss amount: <0>{{profit}}","1442840749":"Random integer","1443478428":"Selected proposal does not exist","1444066971":"It seems you’ve submitted this document before. Upload a new document.","1444843056":"Corporate Affairs Commission","1445592224":"You accidentally gave us another email address (Usually a work or a personal one instead of the one you meant).","1449462402":"In review","1452260922":"Too many failed attempts","1452941569":"This block delays execution for a given number of seconds. You can place any blocks within this block. The execution of other blocks in your strategy will be paused until the instructions in this block are carried out.","1453317405":"This block gives you the balance of your account either as a number or a string of text.","1454406889":"Choose <0>until as the repeat option.","1454648764":"deal reference id","1454865058":"Do not enter an address linked to an ICO purchase or crowdsale. If you do, the ICO tokens will not be credited into your account.","1455741083":"Upload the back of your driving licence.","1457341530":"Your proof of identity verification has failed","1457603571":"No notifications","1458160370":"Enter your {{platform}} password to add a {{platform_name}} {{account}} {{jurisdiction_shortcode}} account.","1459761348":"Submit proof of identity","1461323093":"Display messages in the developer’s console.","1462238858":"By purchasing the \"High-to-Close\" contract, you'll win the multiplier times the difference between the high and close over the duration of the contract.","1464190305":"This block will transfer the control back to the Purchase conditions block, enabling you to purchase another contract without manually stopping and restarting your bot.","1464253511":"You already have an account for each of the cryptocurrencies available on {{deriv}}.","1465084972":"How much experience do you have with other financial instruments?","1465919899":"Pick an end date","1466430429":"Should be between {{min_value}} and {{max_value}}","1466900145":"Doe","1467017903":"This market is not yet available on {{platform_name_trader}}, but it is on {{platform_name_smarttrader}}.","1467421920":"with interval: %1","1467880277":"3. General queries","1468308734":"This block repeats instructions as long as a given condition is true","1468419186":"Deriv currently supports withdrawals of Tether USDT to Omni wallet. To ensure a successful transaction, enter a wallet address compatible with the tokens you wish to withdraw. <0>Learn more","1468508098":"Slippage happens when the asset price changes by the time it reaches our servers.","1469133110":"cTrader Windows app","1469150826":"Take Profit","1469764234":"Cashier Error","1469814942":"- Division","1470319695":"Returns either True or False","1470565177":"Article of association","1471008053":"Deriv Bot isn't quite ready for real accounts","1471070549":"Can contract be sold?","1471741480":"Severe error","1473369747":"Synthetics only","1475513172":"Size","1476301886":"Similar to SMA, this block gives you the entire SMA line containing a list of all values for a given period.","1478030986":"Create or delete API tokens for trading and withdrawals","1480915523":"Skip","1484336612":"This block is used to either terminate or continue a loop, and can be placed anywhere within a loop block.","1487086154":"Your documents were submitted successfully","1488548367":"Upload again","1490509675":"Options accounts","1491392301":"<0>Sold for: {{sold_for}}","1492686447":"Your MT5 Financial STP account will be opened through Deriv (FX) Ltd. All trading in this account is subject to the regulations and guidelines of the Labuan Financial Service Authority (LFSA). None of your other accounts, including your Deriv account, is subject to the regulations and guidelines of the Labuan Financial Service Authority (LFSA).","1493673429":"Change email","1493866481":"Run Deriv X on your browser","1496810530":"GBP/AUD","1497773819":"Deriv MT5 accounts","1499080621":"Tried to perform an invalid operation.","1501691227":"Add Your Deriv MT5 <0>{{account_type_name}} account under Deriv (V) Ltd, regulated by the Vanuatu Financial Services Commission.","1502039206":"Over {{barrier}}","1502325741":"Your password cannot be the same as your email address.","1503419760":"Swap-free CFDs on selected financial and derived instruments.","1503618738":"- Deal reference ID: the reference ID of the contract","1505420815":"No payment agents found for your search","1505898522":"Download stack","1505927599":"Our servers hit a bump. Let’s refresh to move on.","1507554225":"Submit your proof of address","1509559328":"cTrader","1509570124":"{{buy_value}} (Buy)","1509678193":"Education","1510075920":"Gold/USD","1510357015":"Tax residence is required.","1510735345":"This block gives you a list of the last digits of the last 1000 tick values.","1512469749":"In the above example it is assumed that variable candle_open_price is processed somewhere within other blocks.","1513771077":"We're processing your withdrawal.","1516559721":"Please select one file only","1516676261":"Deposit","1517503814":"Drop file or click here to upload","1520332426":"Net annual income","1524636363":"Authentication failed","1525222923":"Touch/No touch","1526012495":"This could be because:","1526483456":"2. Enter a name for your variable, and hit Create. New blocks containing your new variable will appear below.","1527251898":"Unsuccessful","1527664853":"Your payout is equal to the payout per point multiplied by the difference between the final price and the strike price.","1527906715":"This block adds the given number to the selected variable.","1531017969":"Creates a single text string from combining the text value of each attached item, without spaces in between. The number of items can be added accordingly.","1533177906":"Fall","1534796105":"Gets variable value","1537192641":"Unable to process your request","1537711064":"You need to make a quick identity verification before you can access the Cashier. Please go to your account settings to submit your proof of identity.","1540585098":"Decline","1541508606":"Looking for CFDs? Go to Trader's Hub","1541770236":"The 1-3-2-6 strategy aims to maximise potential profits with four consecutive successful trades. One unit is equal to the amount of the initial stake. The stake will adjust from 1 unit to 3 units after the first successful trade, then to 2 units after your second successful trade, and to 6 units after the third successful trade. The stake for the next trade will reset to the initial stake if there is a losing trade or a completion of the trade cycle.","1541969455":"Both","1542742708":"Synthetics, Forex, Stocks, Stock indices, Commodities, and Cryptocurrencies","1544642951":"If you select \"Only Ups\", you win the payout if consecutive ticks rise successively after the entry spot. No payout if any tick falls or is equal to any of the previous ticks.","1547148381":"That file is too big (only up to 8MB allowed). Please upload another file.","1549098835":"Total withdrawn","1551172020":"AUD Basket","1551689907":"Enhance your trading experience by upgrading your <0/><1>{{platform}} {{type}} {{from_account}} account(s).","1555345325":"User Guide","1556391770":"You cannot make a withdrawal as your documents are still under review. We will notify you by email within 3 days once your verification is approved.","1557682012":"Account Settings","1558972889":"set {{ variable }} to Simple Moving Average {{ dummy }}","1560302445":"Copied","1562374116":"Students","1566037033":"Bought: {{longcode}} (ID: {{transaction_id}})","1566717687":"We also provide a guide on the Tutorial tab to show you how you can build and execute a simple strategy.","1567745852":"Bot name","1569527365":"Verification failed. Resubmit your details.","1569624004":"Dismiss alert","1570484627":"Ticks list","1571575776":"Accepted formats: pdf, jpeg, jpg, and png. Max file size: 8MB","1572504270":"Rounding operation","1572982976":"Server","1573429525":"Call/Put","1575556189":"Tether on the Ethereum blockchain, as an ERC20 token, is a newer transport layer, which now makes Tether available in Ethereum smart contracts. As a standard ERC20 token, it can also be sent to any Ethereum address.","1577480486":"Your mobile link will expire in one hour","1577527507":"Account opening reason is required.","1577612026":"Select a folder","1580498808":"Multiple faces found","1584109614":"Ticks String List","1584936297":"XML file contains unsupported elements. Please check or modify file.","1587046102":"Documents from that country are not currently supported — try another document type","1589148299":"Start","1589640950":"Resale of this contract is not offered.","1589702653":"Proof of address","1589863913":"These are the trade parameters used for D’Alembert strategy in Deriv Bot.","1590400723":"Total assets in all your accounts","1591933071":"Resubmit document","1593010588":"Login now","1594147169":"Please come back in","1594322503":"Sell is available","1595295238":"3. Use a logic block to check if Total profit/loss is more than the Stop loss threshold amount. You can find the Total profit/loss variable under Analysis > Stats on the Blocks menu on the left. Your bot will continue to purchase new contracts until the Total profit/loss amount exceeds the Stop loss threshold amount.","1597672660":"Deriv MT5 Password","1598009247":"<0>a.You may file a complaint with the Financial Commission up to 45 days after the incident.","1598386296":"Town/City is required.","1598443642":"Transaction hash","1599743312":"An example of Reverse Martingale strategy","1602894348":"Create a password","1604916224":"Absolute","1605222432":"I have no knowledge and experience in trading at all.","1605292429":"Max. total loss","1612105450":"Get substring","1612638396":"Cancel your trade at any time within a specified timeframe.","1615897837":"Signal EMA Period {{ input_number }}","1618652381":"For instance, if a trader has a loss threshold (B) is 1000 USD, with an initial stake (s) is 1 USD, and the Martingale multiplier (m) is 2, the calculation would be as follows:","1619070150":"You are being redirected to an external website.","1620278321":"Names and surnames by themselves are easy to guess","1620346110":"Set currency","1621024661":"Tether as a TRC20 token (tUSDT) is a version of Tether that is hosted on Tron.","1622662457":"Date from","1622944161":"Now, go to the <0>Restart trading conditions block.","1623706874":"Use this block when you want to use multipliers as your trade type.","1628981793":"Can I trade cryptocurrencies on Deriv Bot?","1630417358":"Please go to your account settings and complete your personal details to enable withdrawals.","1631281562":"GBP Basket","1633661992":"Tick {{current_tick}}/{{tick_count}}","1634016345":"2. If the trade is successful, this strategy will automatically adjust your stake to 3 units of your initial stake for the next trade. In this case, the stake adjustment is 3 units and the initial stake is 1 USD, hence the next trade will start at 3 USD.","1634903642":"Only your face can be in the selfie","1634969163":"Change currency","1635266650":"It seems that your name in the document is not the same as your Deriv profile. Please update your name in the <0>Personal details page to solve this issue.","1635628424":"An envelope with your name and address.","1636605481":"Platform settings","1636782601":"Multipliers","1638321777":"Your demo account balance is low. Reset your balance to continue trading from your demo account.","1639262461":"Pending withdrawal request:","1639304182":"Please click on the link in the email to reset your password.","1641395634":"Last digits list","1641635657":"New proof of identity document needed","1641980662":"Salutation is required.","1644636153":"Transaction hash: <0>{{value}}","1644703962":"Looking for CFD accounts? Go to Trader's Hub","1644864436":"You’ll need to authenticate your account before requesting to become a professional client. <0>Authenticate my account","1644908559":"Digit code is required.","1647186767":"The bot encountered an error while running.","1648938920":"Netherlands 25","1649239667":"2. Under the Blocks menu, you'll see a list of categories. Blocks are grouped within these categories. Choose the block you want and drag them to the workspace.","1650963565":"Introducing Wallets","1651513020":"Display remaining time for each interval","1651951220":"Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\"","1652366857":"get and remove","1652968048":"Define your trade options such as multiplier and stake.","1652976865":"In this example, this block is used with another block to get the open prices from a list of candles. The open prices are then assigned to the variable called \"cl\".","1653136377":"copied!","1653180917":"We cannot verify you without using your camera","1653999225":"Forex: major/minor","1654365787":"Unknown","1654529197":"Purchase condition","1654721858":"Upload anyway","1655372864":"Your contract will expire on this date (in GMT), based on the end time you’ve selected.","1655627840":"UPPER CASE","1656155124":"Resend in <0 /> seconds","1658954996":"Plant and Machine Operators and Assemblers","1659074761":"Reset Put","1659352235":"Add your Deriv MT5 CFDs account under Deriv Investments (Europe) Limited, regulated by the Malta Financial Services Authority (MFSA) (licence no. IS/70156).","1665272539":"Remember: You cannot log in to your account until the selected date.","1665718170":"The document must contain a letterhead.","1665738338":"Balance","1665756261":"Go to live chat","1668138872":"Modify account settings","1669062316":"The payout at expiry is equal to the payout per pip multiplied by the difference, <0>in pips, between the final price and the strike price.","1670016002":"Multiplier: {{ multiplier }}","1670426231":"End Time","1671232191":"You have set the following limits:","1675030608":"To create this account first we need you to resubmit your proof of address.","1676549796":"Dynamic Leverage","1677027187":"Forex","1679743486":"1. Go to Quick strategy and select the strategy you want.","1680666439":"Upload your bank statement showing your name, account number, and transaction history.","1681765749":"Martingale formula 2","1682409128":"Untitled Strategy","1682636566":"Resend email in","1683963454":"Your contract will be closed automatically at the next available asset price on {{date}} at {{timestamp}}.","1684419981":"What's this?","1686800117":"{{error_msg}}","1689103988":"Second Since Epoch","1689258195":"We were unable to verify your address with the details you provided. Please check and resubmit or choose a different document type.","1690746575":"Enhance your trading experience by upgrading your <0>{{platform}} {{type_1}} <1/>and <0>{{type_2}} {{from_account}} account(s).","1691335819":"To continue trading with us, please confirm who you are.","1691536201":"If you choose your duration in number of ticks, you won’t be able to terminate your contract early.","1691765860":"- Negation","1692912479":"Deriv MT5, Deriv X","1693614409":"Start time","1694517345":"Enter a new email address","1696190747":"Trading inherently involves risks, and actual profits can fluctuate due to various factors, including market volatility and other unforeseen variables. As such, exercise caution and conduct thorough research before engaging in any trading activities.","1698624570":"2. Hit Ok to confirm.","1699606318":"You've reached the limit of uploading your documents.","1700233813":"Transfer from {{selected_value}} is not allowed, Please choose another account from dropdown","1701447705":"Please update your address","1702339739":"Common mistakes","1703091957":"We collect information about your employment as part of our due diligence obligations, as required by anti-money laundering legislation.","1703712522":"Your payout is equal to the payout per pip multiplied by the difference, <0>in pips, between the final price and the strike price.","1704656659":"How much experience do you have in CFD trading?","1708413635":"For your {{currency_name}} ({{currency}}) account","1709859601":"Exit Spot Time","1711013665":"Anticipated account turnover","1711016273":"<0>This may take up to 2 minutes. During this time, some services may be unavailable.","1711676335":"square root","1711929663":"Your funds have been transferred","1712357617":"Invalid email address.","1713633297":"3. If the second trade is also successful, your stake will adjust to 2 USD or 2 units of the initial stake for the next trade.","1714255392":"To enable withdrawals, please complete your financial assessment.","1715011380":"Jump 25 Index","1715630945":"Returns the total profit in string format","1715680813":"Your contract will expire at exactly 23:59:59 GMT +0 on your selected expiry date.","1717023554":"Resubmit documents","1717474982":"CFDs on financial and derived instruments via a customisable platform.","1720451994":"We’ll charge a 2% transfer fee or {{minimum_fee}} {{currency}}, whichever is higher, for transfers between your Deriv fiat and Deriv cryptocurrency accounts.","1720968545":"Upload passport photo page from your computer","1722056905":"The document you provided is not supported for your country. Please provide a supported document for your country.","1722888575":"{{mt5_migration_error}}","1723069433":"Your new Wallet","1723390945":"Your demo {{deriv}} {{type}} account is ready.","1723589564":"Represents the maximum number of outstanding contracts in your portfolio. Each line in your portfolio counts for one open position. Once the maximum is reached, you will not be able to open new positions without closing an existing position first.","1724367774":"You can make a funds transfer once the verification of your account is complete.","1724696797":"You are limited to one fiat account only.","1725958461":"Account number","1726472773":"Function with no return value","1726565314":"Close my account","1728183781":"About Tether","1729145421":"Risk warning","1731747596":"The block(s) highlighted in red are missing input values. Please update them and click \"Run bot\".","1732891201":"Sell price","1733711201":"Regulators/external dispute resolution","1734185104":"Balance: %1","1734264460":"Disclaimer","1734521537":"The document you provided appears to be two different types. Please try again or provide another document.","1736292549":"Update postal code","1737352280":"Bot.init is not called","1738094481":"<0>Duration: Ticks 1","1738611950":"About Reverse Martingale","1738681493":"Remove your glasses, if necessary","1739086943":"Wall Street 30","1739384082":"Unemployed","1739668049":"Close your account","1740371444":"Underlying market is not selected","1741006997":"Yesterday","1742256256":"Please upload one of the following documents:","1743448290":"Payment agents","1743679873":"If you select <0>\"Call\", you’ll earn a <1>payout if the <1>final price is above the <1>strike price at <1>expiry. Otherwise, you won’t receive a payout.","1743902050":"Complete your financial assessment","1744509610":"Just drag the XML file from your computer onto the workspace, and your bot will be loaded accordingly. Alternatively, you can hit Import in Bot Builder, and choose to import your bot from your computer or from your Google Drive.","1745523557":"- Square root","1746051371":"Download the app","1746273643":"Moving Average Convergence Divergence","1747501260":"Sell conditions","1747674345":"Please use `.` as a decimal separator for fractional numbers.","1747682136":"Contract was cancelled.","1748754976":"Run","1753082252":"This article explores the strategy integrated into Deriv Bot, a versatile trading bot designed to trade assets such as Forex, Commodities, and Derived Indices. We will delve into the strategy's core parameters, its application, and provide essential takeaways for traders looking to use the bot effectively.","1753183432":"We take all complaints seriously and aim to resolve them as quickly and fairly as possible. If you are unhappy with any aspect of our service, please let us know by submitting a complaint using the guidance below:","1753226544":"remove","1753975551":"Upload passport photo page","1754256229":"Each day, you can make up to {{ allowed_internal }} transfers between your Deriv accounts, up to {{ allowed_mt5 }} transfers between your Deriv and {{platform_name_mt5}} accounts, up to {{ allowed_ctrader }} transfers between your Deriv and {{platform_name_ctrader}} accounts, and up to {{ allowed_dxtrade }} transfers between your Deriv and {{platform_name_dxtrade}} accounts.","1756678453":"break out","1758386013":"Do not get lured to fake \"Deriv\" pages!","1761038852":"Let’s continue with providing proofs of address and identity.","1761254001":"A number","1761762171":"Restart last trade on error (bot ignores the unsuccessful trade): {{ checkbox }}","1762707297":"Phone number","1763123662":"Upload your NIMC slip.","1766212789":"Server maintenance starts at 06:00 GMT every Sunday and may last up to 2 hours. You may experience service disruption during this time.","1766993323":"Only letters, numbers, and underscores are allowed.","1768293340":"Contract value","1768861315":"Minute","1768918213":"Only letters, space, hyphen, period, and apostrophe are allowed.","1769068935":"Choose any of these exchanges to buy cryptocurrencies:","1770041368":"Experience safer logins","1771037549":"Add a Deriv real account","1771592738":"Conditional block","1772396880":"The date of birth on your document doesn’t match your profile.","1777847421":"This is a very common password","1778893716":"Click here","1779144409":"Account verification required","1779519903":"Should be a valid number.","1779801832":"Please update your password accordingly.","1779872677":"Download e-book","1780442963":"Scan the QR code to download {{ platform }}.","1780770384":"This block gives you a random fraction between 0.0 to 1.0.","1782308283":"Quick strategy","1782395995":"Last Digit Prediction","1782690282":"Blocks menu","1782703044":"Sign up","1783526986":"How do I build a trading bot?","1783740125":"Upload your selfie","1785298924":"D’Alembert formula 1","1786644593":"Supported formats: JPEG, JPG, PNG, PDF, and GIF only","1787492950":"Indicators on the chart tab are for indicative purposes only and may vary slightly from the ones on the {{platform_name_dbot}} workspace.","1788515547":"<0/>For more information on submitting a complaint with the Office of the Arbiter for Financial Services, please <1>see their guidance.","1788966083":"01-07-1999","1789273878":"Payout per point","1789497185":"Make sure your passport details are clear to read, with no blur or glare","1791432284":"Search for country","1791971912":"Recent","1792037169":"To avoid delays, enter your <0>name and <0>date of birth exactly as they appear on your {{document_name}}.","1793913365":"To deposit money, please switch to your {{currency_symbol}} account.","1794815502":"Download your transaction history.","1796787905":"Please upload the following document(s).","1798943788":"You can only make deposits.","1801093206":"Get candle list","1801270786":"Ready to automate your trading strategy without writing any code? You’ve come to the right place.","1801927731":"{{platform_name_dxtrade}} accounts","1803338729":"Choose what type of contract you want to trade. For example, for the Rise/Fall trade type you can choose one of three options: Rise, Fall, or Both. Selected option will determine available options for the Purchase block.","1804620701":"Expiration","1804789128":"{{display_value}} Ticks","1806017862":"Max. ticks","1808058682":"Blocks are loaded successfully","1808867555":"This block uses the variable “i” to control the iterations. With each iteration, the value of “i” is determined by the items in a given list.","1810217569":"Please refresh this page to continue.","1811109068":"Jurisdiction","1811138041":"Enter a value from {{ value }} to 9.","1811343027":"2. Select your Martingale multiplier. In this example, it is 2.","1811972349":"Market","1811973475":"Returns a specific character from a given string","1812006199":"Identity verification","1812582011":"Connecting to server","1813700208":"Boom 300 Index","1813958354":"Remove comment","1815034361":"alphabetic","1815905959":"DTrader, DBot, SmartTrader, and Binary Bot","1815995250":"Buying contract","1817006592":"All trade types","1817154864":"This block gives you a random number from within a set range.","1820242322":"e.g. United States","1820332333":"Top up","1821818748":"Enter Driver License Reference number","1823177196":"Most popular","1824193700":"This block gives you the last digit of the latest tick value.","1824292864":"Call","1827607208":"File not uploaded.","1828370654":"Onboarding","1830520348":"{{platform_name_dxtrade}} Password","1831847842":"I confirm that the name and date of birth above match my chosen identity document (see below)","1833499833":"Proof of identity documents upload failed","1836767074":"Search payment agent name","1837533589":"Stop Loss","1837762008":"Please submit your proof of identity and proof of address to verify your account in your account settings to access the cashier.","1839021527":"Please enter a valid account number. Example: CR123456789","1840721160":"Deriv MT5 latest password requirements","1840865068":"set {{ variable }} to Simple Moving Average Array {{ dummy }}","1841788070":"Palladium/USD","1841996888":"Daily loss limit","1842266423":"back","1843336754":"Select document","1843658716":"If you select \"Only Downs\", you win the payout if consecutive ticks fall successively after the entry spot. No payout if any tick rises or is equal to any of the previous ticks.","1845598565":"The second session concludes upon reaching the aim of one unit of potential profit per session, equivalent to 1 USD. If trading continues, a new session will commence again.","1845892898":"(min: {{min_stake}} - max: {{max_payout}})","1846266243":"This feature is not available for demo accounts.","1846587187":"You have not selected your country of residence","1846588117":"Your contract will be closed automatically when your loss reaches {{stop_out_percentage}}% of your stake.","1849484058":"Any unsaved changes will be lost.","1850031313":"- Low: the lowest price","1850132581":"Country not found","1850659345":"- Payout: the payout of the contract","1851052337":"Place of birth is required.","1851776924":"upper","1854480511":"Cashier is locked","1854874899":"Back to list","1854909245":"Multiplier:","1855566768":"List item position","1856485118":"Please <0>resubmit your proof of address to transfer funds between MT5 and Deriv accounts.","1856755117":"Pending action required","1858251701":"minute","1859308030":"Give feedback","1861688160":"Deposit, transfer, trade","1863053247":"Please upload your identity document.","1863731653":"To receive your funds, contact the payment agent","1865525612":"No recent transactions.","1866244589":"The entry spot is the first tick for High/Low Ticks.","1866811212":"Deposit in your local currency via an authorised, independent payment agent in your country.","1867217564":"Index must be a positive integer","1867783237":"High-to-Close","1869315006":"See how we protect your funds to unlock the cashier.","1869486036":"You receive a <0>payout at <0>expiry if the spot price never touches or breaches the <0>barrier during the contract period. If it does, your contract will be terminated early.","1869787212":"Even","1870933427":"Crypto","1871196637":"True if the result of the last trade matches the selection","1871377550":"Do you offer pre-built trading bots on Deriv Bot?","1871664426":"Note","1873376454":"This is a price level that you choose. If this barrier is ever crossed, your contract would be terminated.","1874481756":"Use this block to purchase the specific contract you want. You may add multiple Purchase blocks together with conditional blocks to define your purchase conditions. This block can only be used within the Purchase conditions block.","1874737957":"To trade multipliers, get a Deriv Apps account first.","1874756442":"BVI","1875090343":"Choose a date range","1875702561":"Load or build your bot","1876015808":"Social Security and National Insurance Trust","1876325183":"Minutes","1876333357":"Tax Identification Number is invalid.","1877225775":"Your proof of address is verified","1877832150":"# from end","1878172674":"No, we don't. However, you'll find quick strategies on Deriv Bot that'll help you build your own trading bot for free.","1878189977":"The Martingale strategy involves increasing your stake after each loss to recoup prior losses with a single successful trade.","1879042430":"Appropriateness Test, WARNING:","1879412976":"Profit amount: <0>{{profit}}","1879651964":"<0>Pending verification","1880029566":"Australian Dollar","1880097605":"prompt for {{ string_or_number }} with message {{ input_text }}","1880227067":"Submit passport photo pages","1880377568":"An example of D’Alembert strategy","1880875522":"Create \"get %1\"","1881018702":"hour","1881380263":"Total assets in your account.","1881587673":"Total stake since you last cleared your stats.","1882825238":"Restart trading conditions","1883531976":"Clerks","1885708031":"#","1887257727":"R is the number of rounds a trader can sustain given a specific loss threshold.","1887925280":"The document must be recent and include your name and address:","1889357660":"Enter a value in minutes, up to 60480 minutes (equivalent to 6 weeks).","1890171328":"By clicking Accept below and proceeding with the Account Opening you should note that you may be exposing yourself to risks (which may be significant, including the risk of loss of the entire sum invested) that you may not have the knowledge and experience to properly assess or mitigate.","1890332321":"Returns the number of characters of a given string of text, including numbers, spaces, punctuation marks, and symbols.","1893869876":"(lots)","1894667135":"Please verify your proof of address","1896269665":"CFDs on derived and financial instruments.","1899898605":"Maximum size: 8MB","1902547203":"MetaTrader 5 MacOS app","1903437648":"Blurry photo detected","1904665809":"The Reverse Martingale strategy in trading may offer substantial gains but also comes with significant risks. With your selected strategy, Deriv Bot provides automated trading with risk management measures like setting initial stake, stake size, maximum stake, profit threshold and loss threshold. It's crucial for traders to assess their risk tolerance, practice in a demo account, and understand the strategy before trading with real money.","1905032541":"We're now ready to verify your identity","1905589481":"If you want to change your account currency, please contact us via <0>live chat.","1906213000":"Our system will finish any Deriv Bot trades that are running, and Deriv Bot will not place any new trades.","1906639368":"If this is the first time you try to create a password, or you have forgotten your password, please reset it.","1907423697":"Earn more with Deriv API","1907499654":"Deriv App","1907899646":"Take profit can't be adjusted for ongoing accumulator contracts.","1908023954":"Sorry, an error occurred while processing your request.","1908239019":"Make sure all of the document is in the photo","1908686066":"Appropriateness Test Warning","1909647105":"TRX/USD","1909769048":"median","1910533633":"Get a real account to deposit money and start trading.","1913777654":"Switch account","1914014145":"Today","1914270645":"Default Candle Interval: {{ candle_interval_type }}","1914725623":"Upload the page that contains your photo.","1916129921":"Reverse Martingale","1917178459":"Bank Verification Number","1917523456":"This block sends a message to a Telegram channel. You will need to create your own Telegram bot to use this block.","1918796823":"Please enter a stop loss amount.","1918832194":"No experience","1919030163":"Tips to take a good selfie","1919296368":"2. Select your unit. In this example, it is 2 units or 2 USD.","1919594496":"{{website_name}} is not affiliated with any payment agents. Customers deal with payment agents at their sole risk. Customers are advised to check the credentials of payment agents and the accuracy of any information about payment agents (on {{website_name}} or elsewhere) before using their services.","1919694313":"To start trading, transfer funds from your Deriv account into this account.","1920217537":"Compare","1920468180":"How to use the SMA block","1921914669":"Deposit with Deriv P2P","1922529883":"Boom 1000 Index","1922955556":"Use a longer keyboard pattern with more turns","1924365090":"Maybe later","1924765698":"Place of birth*","1928930389":"GBP/NOK","1929694162":"Compare accounts","1930899934":"Tether","1931659123":"Run on every tick","1931884033":"It seems that your date of birth in the document is not the same as your Deriv profile. Please update your date of birth in the <0>Personal details page to solve this issue.","1934450653":"For <0>Contract type, set it to Both.","1938327673":"Deriv {{platform}} <0>{{is_demo}}","1939014728":"How do I remove blocks from the workspace?","1939902659":"Signal","1940408545":"Delete this token","1941915555":"Try later","1943440862":"Calculates Bollinger Bands (BB) list from a list with a period","1944204227":"This block returns current account balance.","1947527527":"1. This link was sent by you","1948092185":"GBP/CAD","1949719666":"Here are the possible reasons:","1950413928":"Submit identity documents","1955219734":"Town/City*","1957759876":"Upload identity document","1958788790":"This is the amount you’ll receive at expiry for every point of change in the underlying price, if the spot price never touches or breaches the barrier throughout the contract duration.","1958807602":"4. 'Table' takes an array of data, such as a list of candles, and displays it in a table format.","1959678342":"Highs & Lows","1960240336":"first letter","1964165648":"Connection lost","1965916759":"Asian options settle by comparing the last tick with the average spot over the period.","1966023998":"2FA enabled","1966281100":"Console {{ message_type }} value: {{ input_message }}","1966855430":"Account already exists","1968025770":"Bitcoin Cash","1968077724":"Agriculture","1968368585":"Employment status","1970060713":"You’ve successfully deleted a bot.","1971898712":"Add or manage account","1973536221":"You have no open positions yet.","1973910243":"Manage your accounts","1974273865":"This scope will allow third-party apps to view your account activity, settings, limits, balance sheets, trade purchase history, and more.","1978218112":"Google Authenticator","1981940238":"This complaints policy, which may change from time to time, applies to your account(s) registered with {{legal_entity_name_svg}} and {{legal_entity_name_v}}.","1982790875":"Upgrade your <0/><1>{{account_title}} {{platform}} account(s)","1982796981":"Declarations","1982912252":"Relative Strength Index (RSI) from a list with a period","1983001416":"Define your trade options such as multiplier and stake. This block can only be used with the multipliers trade type. If you select another trade type, this block will be replaced with the Trade options block.","1983358602":"This policy, which may change from time to time, applies to your account registered with {{legal_entity_name}}.","1983387308":"Preview","1983480826":"Sign in","1983544897":"P.O. Box is not accepted in address","1983676099":"Please check your email for details.","1984700244":"Request an input","1984742793":"Uploading documents","1985366224":"Each day, you can make up to {{ allowed_internal }} transfers between your Deriv accounts and up to {{ allowed_mt5 }} transfers between your Deriv and {{platform_name_mt5}} accounts.","1985637974":"Any blocks placed within this block will be executed at every tick. If the default candle interval is set to 1 minute in the Trade Parameters root block, the instructions in this block will be executed once every minute. Place this block outside of any root block.","1986322868":"When your loss reaches or exceeds this amount, your trade will be closed automatically.","1986498784":"BTC/LTC","1987080350":"Demo","1987447369":"Your cashier is locked","1988153223":"Email address","1988302483":"Take profit:","1990331072":"Proof of ownership","1990735316":"Rise Equals","1991055223":"View the market price of your favourite assets.","1991448657":"Don't know your tax identification number? Click <0>here to learn more.","1991524207":"Jump 100 Index","1994023526":"The email address you entered had a mistake or typo (happens to the best of us).","1994558521":"The platforms aren’t user-friendly.","1994600896":"This block requires a list of candles as an input parameter.","1995023783":"First line of address*","1996767628":"Please confirm your tax information.","1997138507":"If the last tick is equal to the average of the ticks, you don't win the payout.","1997313835":"Your stake will continue to grow as long as the current spot price remains within a specified <0>range from the <0>previous spot price. Otherwise, you lose your stake and the trade is terminated.","1999213036":"Enhanced security is just a tap away.","1999346412":"For faster verification, input the same address here as in your proof of address document (see section below)","2001222130":"Check your spam or junk folder. If it's not there, try resending the email.","2001361785":"1. Start with the initial stake. Let’s say 1 USD.","2001717886":"Demo Standard","2004052487":"Estimating the lifespan of your trades","2007028410":"market, trade type, contract type","2010759971":"Uploads successful","2010866561":"Returns the total profit/loss","2011609940":"Please input number greater than 0","2011808755":"Purchase Time","2012139674":"Android: Google password manager.","2014536501":"Card number","2014590669":"Variable '{{variable_name}}' has no value. Please set a value for variable '{{variable_name}}' to notify.","2017672013":"Please select the country of document issuance.","2018044371":"Multipliers let you trade with leverage and limit your risk to your stake. <0>Learn more","2019596693":"The document was rejected by the Provider.","2020545256":"Close your account?","2021037737":"Please update your details to continue.","2021161151":"Watch this video to learn how to build a trading bot on Deriv Bot. Also, check out this blog post on building a trading bot.","2023546580":"Your account will be available for trading once the verification of your account is complete.","2023659183":"Student","2023762268":"I prefer another trading website.","2025339348":"Move away from direct light — no glare","2027441253":"Why do we collect this?","2027625329":"Simple Moving Average Array (SMAA)","2027638150":"Upgrade","2027696535":"Tax information","2028163119":"EOS/USD","2029237955":"Labuan","2030018735":"RSI is a technical analysis tool that helps you identify the market trend. It will give you a value from 0 to 100. An RSI value of 70 and above means that the asset is overbought and the current trend may reverse, while a value of 30 and below means that the asset is oversold.","2030045667":"Message","2033648953":"This block gives you the specified candle value for a selected time interval.","2034803607":"You must be 18 years old and above.","2035258293":"Start trading with us","2035925727":"sort {{ sort_type }} {{ sort_direction }} {{ input_list }}","2036578466":"Should be {{value}}","2037665157":"Expand All Blocks","2037906477":"get sub-list from #","2038562422":"TIN is required.","2039198937":"Maximum stake: The maximum amount you are willing to pay to enter a single trade. The stake for your next trade will reset to the initial stake if it exceeds this value. This is an optional risk management parameter.","2042023623":"We’re reviewing your documents. This should take about 5 minutes.","2042050260":"- Purchase price: the purchase price (stake) of the contract","2042115724":"Upload a screenshot of your account and personal details page with your name, account number, phone number, and email address.","2044086432":"The close is the latest tick at or before the end time. If you selected a specific end time, the end time is the selected time.","2046273837":"Last tick","2046577663":"Import or choose your bot","2048110615":"Email address*","2048134463":"File size exceeded.","2049386104":"We need you to submit these in order to get this account:","2050170533":"Tick list","2051558666":"View transaction history","2051596653":"Demo Zero Spread BVI","2052022586":"To enhance your MT5 account security we have upgraded our password policy.","2054889300":"Create \"%1\"","2055317803":"Copy the link to your mobile browser","2056369950":"<0>To complete your Wallet setup, log out and then log in again.","2056526458":"Get real account","2057082550":"Accept our updated <0>terms and conditions","2057419639":"Exit Spot","2059365224":"Yes, you can get started with a pre-built bot using the Quick strategy feature. You’ll find some of the most popular trading strategies here: Martingale, D'Alembert, and Oscar's Grind. Just select the strategy, enter your trade parameters, and your bot will be created for you. You can always tweak the parameters later.","2059753381":"Why did my verification fail?","2060873863":"Your order {{order_id}} is complete","2062912059":"function {{ function_name }} {{ function_params }}","2063812316":"Text Statement","2063815003":"Ready to enable Wallets","2063890788":"Cancelled","2066978677":"{{formatted_opening_time}} (GMT) on {{opening_day}},<0 /> {{opening_date}}.","2067903936":"Driving licence","2070002739":"Don’t accept","2070345146":"When opening a leveraged CFD trade.","2070518923":"Import your bot or tap Quick Strategies to choose from the ready-to-use bot templates.","2070752475":"Regulatory Information","2070858497":"Your document appears to be a screenshot.","2071043849":"Browse","2074207096":"How to create a passkey?","2074235904":"Last name is required.","2074497711":"The Telegram notification could not be sent","2074713563":"4.2. Submission of a complaint","2079925695":"Unit: The number of units that are added in the event of a trade resulting in loss or the number of units removed in the event of a trade resulting in profit. For example, if the unit is set at 2, the stake increases or decreases by two times the initial stake of 1 USD, meaning it changes by 2 USD.","2080553498":"3. Get the chat ID using the Telegram REST API (read more: https://core.telegram.org/bots/api#getupdates)","2080829530":"Sold for: {{sold_for}}","2081622549":"Must be a number higher than {{ min }}","2082533832":"Yes, delete","2084693624":"Converts a string representing a date/time string into seconds since Epoch. Example: 2019-01-01 21:03:45 GMT+0800 will be converted to 1546347825. Time and time zone offset are optional.","2085387371":"Must be numbers, letters, and special characters . , ' -","2085602195":"- Entry value: the value of the first tick of the contract","2086048243":"Certificate of incorporation","2086792088":"Both barriers should be relative or absolute","2088344208":"Forex (standard), stock indices, commodities, cryptocurrencies, stocks, ETFs, synthetic indices, basket indices and derived FX","2088735355":"Your session and login limits","2089087110":"Basket indices","2089395053":"Unit","2089581483":"Expires on","2090650973":"The spot price may change by the time your order reaches our servers. When this happens, your payout may be affected.","2091671594":"Status","2093675079":"- Close: the closing price","2096014107":"Apply","2096456845":"Date of birth*","2097170986":"About Tether (Omni)","2097381850":"Calculates Simple Moving Average line from a list with a period","2097815211":"Number of rounds (R) = 10","2097932389":"Upload 2 separate screenshots from the personal details page and the account page via <0>https://app.astropay.com/profile","2099488590":"Changes to your Deriv MT5 login","2100713124":"account","2100912278":"4. If a trade ends in a loss, the stake for the following trade will be reset to the initial stake amount of 1 USD.","2101972779":"This is the same as the above example, using a tick list.","2102572780":"Length of digit code must be 6 characters.","2104115663":"Last login","2104364680":"Please switch to your demo account to run your Deriv Bot.","2104397115":"Please go to your account settings and complete your personal details to enable deposits and withdrawals.","2107381257":"Scheduled cashier system maintenance","2107882050":"The back of your document appears to be missing. Please include both sides of your identity document.","2110365168":"Maximum number of trades reached","2111015970":"This block helps you check if your contract can be sold. If your contract can be sold, it returns “True”. Otherwise, it returns an empty string.","2111528352":"Creating a variable","2112119013":"Take a selfie showing your face","2112175277":"with delimiter","2113321581":"Add a Deriv Gaming account","2114766645":"Some trade types are unavailable for {{symbol}}.","2115223095":"Loss","2117165122":"1. Create a Telegram bot and get your Telegram API token. Read more on how to create bots in Telegram here: https://core.telegram.org/bots#6-botfather","2117489390":"Auto update in {{ remaining }} seconds","2118292085":"<0>Note: You’ll receive an email when your deposit starts being processed.","2119449126":"Example output of the below example will be:","2119710534":"FAQ","2121227568":"NEO/USD","2122152120":"Assets","2127564856":"Withdrawals are locked","2128919448":"We’ll offer to buy your contract at this price should you choose to sell it before its expiry. This is based on several factors, such as the current spot price. We won’t offer a contract value if the remaining duration is below 15 seconds or if the contract duration is in ticks.","2129807378":"Update profile","2133075559":"This means after 10 rounds of consecutive losses, this trader will lose 100 USD. This reaches the loss threshold of 100 USD, stopping the bot.","2133451414":"Duration","2133470627":"This block returns the potential payout for the selected trade type. This block can be used only in the \"Purchase conditions\" root block.","2135563258":"Forex trading frequency","2136246996":"Selfie uploaded","2136480755":"Some details in your document appear to be invalid, missing, or unclear.","2137901996":"This will clear all data in the summary, transactions, and journal panels. All counters will be reset to zero.","2137993569":"This block compares two values and is used to build a conditional structure.","2138861911":"Scans and photocopies are not accepted","2139171480":"Reset Up/Reset Down","2139362660":"left side","2141055709":"New {{type}} password","2143803283":"Purchase Error","2144609616":"If you select \"Reset-Down”, you win the payout if the exit spot is strictly lower than either the entry spot or the spot at reset time.","2145690912":"Income Earning","2145995536":"Create new account","2146336100":"in text %1 get %2","2146698770":"Pro tip: You can also click and drag out the desired block","2146892766":"Binary options trading experience","2147244655":"How do I import my own trading bot into Deriv Bot?","-931052769":"Submit verification","-1004605898":"Tips","-1938142055":"Documents uploaded","-448090287":"The link only works on mobile devices","-1244287721":"Something's gone wrong","-241258681":"You'll need to restart your verification on your computer","-929254273":"Get secure link","-2021867851":"Check back here to finish the submission","-1547069149":"Open the link and complete the tasks","-1767652006":"Here's how to do it:","-277611959":"You can now return to your computer to continue","-724178625":"Make sure full document is visible","-1519380038":"Glare detected","-1895280620":"Make sure your card details are clear to read, with no blur or glare","-1464447919":"Make sure your permit details are clear to read, with no blur or glare","-1436160506":"Make sure details are clear to read, with no blur or glare","-759124288":"Close","-759118956":"Redo","-753375398":"Enlarge image","-1042933881":"Driver's license","-1503134764":"Face photo page","-1335343167":"Sorry, no mobile phone bills","-699045522":"Documents you can use to verify your identity","-543666102":"It must be an official photo ID","-903877217":"These are the documents most likely to show your current home address","-1356835948":"Choose document","-1364375936":"Select a %{country} document","-401586196":"or upload photo – no scans or photocopies","-3110517":"Take a photo with your phone","-2033894027":"Submit identity card (back)","-20684738":"Submit license (back)","-1359585500":"Submit license (front)","-106779602":"Submit residence permit (back)","-1287247476":"Submit residence permit (front)","-1954762444":"Restart the process on the latest version of Safari","-261174676":"Must be under 10MB.","-685885589":"An error occurred while loading the component","-502539866":"Your face is needed in the selfie","-1377968356":"Please try again","-1226547734":"Try using a JPG or PNG file","-849068301":"Loading...","-1730346712":"Loading","-1849371752":"Check that your number is correct","-309848900":"Copy","-1424436001":"Send link","-1093833557":"How to scan a QR code","-1408210605":"Point your phone’s camera at the QR code","-1773802163":"If it doesn’t work, download a QR code scanner from Google Play or the App Store","-109026565":"Scan QR code","-1644436882":"Get link via SMS","-1667839246":"Enter mobile number","-1533172567":"Enter your mobile number:","-1352094380":"Send this one-time link to your phone","-28974899":"Get your secure link","-359315319":"Continue","-826420669":"Make sure","-1279080293":"2. Your desktop window stays open","-102776692":"Continue with the verification","-89152891":"Take a photo of the back of your card","-1646367396":"Take a photo of the front of your card","-1350855047":"Take a photo of the front of your license","-2119367889":"Take a photo using the basic camera mode instead","-342915396":"Take a photo","-419040068":"Passport photo page","-1354983065":"Refresh","-1925063334":"Recover camera access to continue face verification","-54784207":"Camera access is denied","-1392699864":"Allow camera access","-269477401":"Provide the whole document page for best results","-864639753":"Upload back of card from your computer","-1309771027":"Upload front of license from your computer","-1722060225":"Take photo","-565732905":"Selfie","-1703181240":"Check that it is connected and functional. You can also continue verification on your phone","-2043114239":"Camera not working?","-2029238500":"It may be disconnected. Try using your phone instead.","-468928206":"Make sure your device's camera works","-466246199":"Camera not working","-698978129":"Remember to press stop when you're done. Redo video actions","-538456609":"Looks like you took too long","-781816433":"Photo of your face","-1471336265":"Make sure your selfie clearly shows your face","-1375068556":"Check selfie","-1914530170":"Face forward and make sure your eyes are clearly visible","-776541617":"We'll compare it with your document","-478752991":"Your link will expire in one hour","-1859729380":"Keep this window open while using your mobile","-1283761937":"Resend link","-629011256":"Don't refresh this page","-1005231905":"Once you've finished we'll take you to the next step","-542134805":"Upload photo","-1462975230":"Document example","-1472844935":"The photo should clearly show your document","-1120954663":"First name*","-1659980292":"First name","-962979523":"Your {{ field_name }} as in your identity document","-1416797980":"Please enter your {{ field_name }} as in your official identity documents.","-1466268810":"Please remember that it is your responsibility to keep your answers accurate and up to date. You can update your personal details at any time in your <0>account settings.","-32386760":"Name","-766265812":"first name","-1857534296":"John","-1282749116":"last name","-1485480657":"Other details","-1784741577":"date of birth","-1702919018":"Second line of address (optional)","-1315410953":"State/Province","-2040322967":"Citizenship","-344715612":"Employment status*","-1543016582":"I hereby confirm that the tax information I provided is true and complete. I will also inform {{legal_entity_name}} about any changes to this information.","-946282997":"Additional information","-1315571766":"Place of birth","-789291456":"Tax residence*","-1692219415":"Tax residence","-1903720068":"The country in which you meet the criteria for paying taxes. Usually the country in which you physically reside.","-651516152":"Tax Identification Number","-1387062433":"Account opening reason","-222283483":"Account opening reason*","-307865807":"Risk Tolerance Warning","-690100729":"Yes, I understand the risk.","-2010628430":"CFDs and other financial instruments come with a high risk of losing money rapidly due to leverage. You should consider whether you understand how CFDs and other financial instruments work and whether you can afford to take the high risk of losing your money. <0/><0/> To continue, you must confirm that you understand your capital is at risk.","-863770104":"Please note that by clicking ‘OK’, you may be exposing yourself to risks. You may not have the knowledge or experience to properly assess or mitigate these risks, which may be significant, including the risk of losing the entire sum you have invested.","-684271315":"OK","-1292808093":"Trading Experience","-153346659":"Upload your selfie.","-602131304":"Passport number","-1051213440":"Upload the front and back of your identity card.","-1600807543":"First, enter your identity card number and the expiry date.","-1139923664":"Next, upload the front and back of your identity card.","-783705755":"Upload the front of your identity card.","-566750665":"NIMC slip and proof of age","-1465944279":"NIMC slip number","-429612996":"Next, upload both of the following documents.","-376981174":"Upload your proof of age: birth certificate or age declaration document.","-612174191":"First line of address is required","-242734402":"Only {{max}} characters, please.","-378415317":"State is required","-1784470716":"State is not in a proper format","-1699820408":"Please enter a {{field_name}} under {{max_number}} characters.","-1575567374":"postal/ZIP code","-816263501":"Only letters, numbers, space and hyphen are allowed.","-755626951":"Complete your address details","-1024240099":"Address","-1534917661":"Select your preferred currency","-1027595143":"Less than $25,000","-40491332":"$25,000 - $50,000","-1139806939":"$50,001 - $100,000","-996132458":"Construction","-915003867":"Health","-1430012453":"Information & Communications Technology","-987824916":"Science & Engineering","-146630682":"Social & Cultural","-761306973":"Manufacturing","-1631552645":"Professionals","-474864470":"Personal Care, Sales and Service Workers","-1129355784":"Agricultural, Forestry and Fishery Workers","-1242914994":"Craft, Metal, Electrical and Electronics Workers","-1317824715":"Cleaners and Helpers","-1592729751":"Mining, Construction, Manufacturing and Transport Workers","-1030759620":"Government Officers","-2137323480":"Company Ownership","-1590574533":"Divorce Settlement","-1667683002":"Inheritance","-1237843731":"Investment Income","-777506574":"Sale of Property","-654781670":"Primary","-1717373258":"Secondary","-1156937070":"$500,001 - $1,000,000","-315534569":"Over $1,000,000","-2068544539":"Salaried Employee","-531314998":"Investments & Dividends","-1235114522":"Pension","-1298056749":"State Benefits","-449943381":"Savings & Inheritance","-477761028":"Voter ID","-1466346630":"CPF","-1161338910":"First name is required.","-1629185446":"Enter no more than 50 characters.","-1281693513":"Date of birth is required.","-26599672":"Citizenship is required","-912174487":"Phone is required.","-673765468":"Letters, numbers, spaces, periods, hyphens and forward slashes only.","-212167954":"Tax Identification Number is not properly formatted.","-1823540512":"Personal details","-1227878799":"Speculative","-1174064217":"Mr","-855506127":"Ms","-204765990":"Terms of use","-739367071":"Employed","-626752657":"0-1 year","-532014689":"1-2 years","-1001024004":"Over 3 years","-790513277":"6-10 transactions in the past 12 months","-580085300":"11-39 transactions in the past 12 months","-1116008222":"You should enter 9-35 numbers.","-1995979930":"First line of address is required.","-703454156":"Please enter a Postal/ZIP code under 20 characters.","-2113555886":"Only letters, numbers, space, and hyphen are allowed.","-1103497546":"Tax return","-700600899":"Business proof of address","-1073862586":"Memorandum","-1823328095":"Authorization letter","-397487797":"Enter your full card number","-1376950117":"That file format isn't supported. Please upload .pdf, .png, .jpg, or .jpeg files only.","-612752984":"These are default limits that we apply to your accounts.","-1498206510":"Account limits","-1411635770":"Learn more about account limits","-1340125291":"Done","-1101543580":"Limit","-858297154":"Represents the maximum amount of cash that you may hold in your account. If the maximum is reached, you will be asked to withdraw funds.","-976258774":"Not set","-1182362640":"Represents the maximum aggregate payouts on outstanding contracts in your portfolio. If the maximum is attained, you may not purchase additional contracts without first closing out existing positions.","-1781293089":"Maximum aggregate payouts on open positions","-1412690135":"*Any limits in your Self-exclusion settings will override these default limits.","-1598751496":"Represents the maximum volume of contracts that you may purchase in any given trading day.","-173346300":"Maximum daily turnover","-138380129":"Total withdrawal allowed","-1502578110":"Your account is fully authenticated and your withdrawal limits have been lifted.","-506122621":"Please take a moment to update your information now.","-1106259572":"Don't know your tax identification number? <1 />Click <0>here to learn more.","-252665911":"Place of birth{{required}}","-859814496":"Tax residence{{required}}","-237940902":"Tax Identification number{{required}}","-919191810":"Please fill in tax residence.","-270569590":"Intended use of account{{required}}","-2120290581":"Intended use of account is required.","-594456225":"Second line of address","-1964954030":"Postal/ZIP Code","-1541554430":"Next","-71696502":"Previous","-516397235":"Be careful who you share this token with. Anyone with this token can perform the following actions on your account behalf","-989216986":"Add accounts","-617480265":"Delete token","-316749685":"Are you sure you want to delete this token?","-955038366":"Copy this token","-1668692965":"Hide this token","-1661284324":"Show this token","-1076138910":"Trade","-1666909852":"Payments","-488597603":"Trading information","-605778668":"Never","-1628008897":"Token","-1238499897":"Last Used","-2087317410":"Oops, something went wrong.","-184202848":"Upload file","-370334393":"Click here to browse your files.","-863586176":"Drag and drop a file or click to browse your files.","-723198394":"File size should be 8MB or less","-1948369500":"File uploaded is not supported","-1040865880":"Drop files here..","-1100235269":"Industry of employment","-684388823":"Estimated net worth","-509054266":"Anticipated annual turnover","-1117345066":"Choose the document type","-1634507018":"Enter your {{document_name}}","-1237846864":"Verify again","-39187636":"{{index}}.","-337620257":"Switch to real account","-2120454054":"Add a real account","-38915613":"Unsaved changes","-2137450250":"You have unsaved changes. Are you sure you want to discard changes and leave this page?","-1067082004":"Leave Settings","-1113902570":"Details","-2142540205":"It appears that the address in your document doesn’t match the address in your Deriv profile. Please update your personal details now with the correct address.","-1451334536":"Continue trading","-251603364":"Your document for proof of address is expired. <0/>Please submit again.","-1425489838":"Proof of address verification not required","-1008641170":"Your account does not need address verification at this time. We will inform you if address verification is required in the future.","-60204971":"We could not verify your proof of address","-1944264183":"To continue trading, you must also submit a proof of identity.","-1088324715":"We’ll review your documents and notify you of its status within 1 - 3 working days.","-329713179":"Ok","-2145244263":"This field is required","-1500958859":"Verify","-839094775":"Back","-1813671961":"Your identity verification failed because:","-2097808873":"We were unable to verify your ID with the details you provided. ","-1652371224":"Your profile is updated","-504784172":"Your document has been submitted","-1391934478":"Your ID is verified. You will also need to submit proof of your address.","-118547687":"ID verification passed","-200989771":"Go to personal details","-1358357943":"Please check and update your postal code before submitting proof of identity.","-1401994581":"Your personal details are missing","-2004327866":"Please select a valid country of document issuance.","-1664159494":"Country","-1044962593":"Upload Document","-749870311":"Please contact us via <0>live chat.","-1084991359":"Proof of identity verification not required","-1981334109":"Your account does not need identity verification at this time. We will inform you if identity verification is required in the future.","-182918740":"Your proof of identity submission failed because:","-155705811":"A clear colour photo or scanned image","-246893488":"JPEG, JPG, PNG, PDF, or GIF","-1454880310":"Must be valid for at least 6 months","-1949501500":"First, enter your {{label}}.","-100534371":"Before uploading, please ensure that you’re facing forward in the selfie, your face is within the frame, and your eyes are clearly visible even if you’re wearing glasses.","-1529523673":"Confirm and upload","-705047643":"Sorry, an error occured. Please select another file.","-1664309884":"Tap here to upload","-1725454783":"Failed","-841187054":"Try Again","-856213726":"You must also submit a proof of address.","-552371330":"We were unable to verify your income. <0 /> Please check the email we've sent you for further information.","-978467455":"Limit reached","-361316523":"You have reached the maximum number of allowed attempts for submitting proof of income. <0 /> Please check the email we've sent you for further information.","-1785967427":"We'll review your documents and notify you of its status within 7 working days.","-987011273":"Your proof of ownership isn't required.","-808299796":"You are not required to submit proof of ownership at this time. We will inform you if proof of ownership is required in the future.","-179726573":"We’ve received your proof of ownership.","-813779897":"Proof of ownership verification passed.","-1389323399":"You should enter {{min_number}}-{{max_number}} characters.","-47815161":"Please include at least 1 special character such as ( _ @ ? ! / # ) in your password.","-1313806160":"Please request a new password and check your email for the new token.","-1598167506":"Success","-1077809489":"You have a new {{platform}} password to log in to your {{platform}} accounts on the web and mobile apps.","-2068479232":"{{platform}} password","-507633532":"Your password must contain between 8-16 characters that include uppercase and lowercase letters, and at least one number and special character such as ( _ @ ? ! / # ).","-2005211699":"Create","-1597186502":"Reset {{platform}} password","-638756912":"Black out digits 7 to 12 of the card number that’s shown on the front of your debit/credit card.⁤","-996691262":"We’ve introduced these limits to encourage <0>responsible trading. They are optional, and you can adjust them anytime.","-2079276011":"These limits apply to your multipliers trades only. For example, <0>maximum total loss refers to the losses on your multipliers trades.","-2116570030":"If you want to adjust your limits, <0>contact us via live chat. We’ll make the adjustments within 24 hours.","-1389915983":"You decide how much and how long to trade. You can take a break from trading whenever you want. This break can be from 6 weeks to 5 years. When it’s over, you can extend it or log in to resume trading. If you don’t want to set a specific limit, leave the field empty.","-1031814119":"About trading limits and self-exclusion","-183468698":"Trading limits and self-exclusion","-1088698009":"These self-exclusion limits help you control the amount of money and time you spend trading on {{platform_name_trader}}, {{platform_name_dbot}}, {{platform_name_smarttrader}} and {{platform_name_bbot}} on Deriv. The limits you set here will help you exercise <0>responsible trading.","-933963283":"No, review my limits","-1759860126":"Yes, log me out immediately","-572347855":"{{value}} mins","-313333548":"You’ll be able to adjust these limits at any time. You can reduce your limits from the <0>self-exclusion page. To increase or remove your limits, please contact our <1>Customer Support team.","-1265833982":"Accept","-2123139671":"Your stake and loss limits","-1250802290":"24 hours","-2070080356":"Max. total stake","-1545823544":"7 days","-180147209":"You will be automatically logged out from each session after this time limit.","-374553538":"Your account will be excluded from the website until this date (at least 6 months, up to 5 years).","-2105708790":"Your maximum account balance and open positions","-1960600163":"Once your account balance reaches this amount, you will not be able to deposit funds into your account.","-1073845224":"No. of open position(s)","-288196326":"Your maximum deposit limit","-568749373":"Max. deposit limit","-1617352279":"The email is in your spam folder (Sometimes things get lost there).","-547557964":"We can’t deliver the email to this address (Usually because of firewalls or filtering).","-142444667":"Please click on the link in the email to change your Deriv MT5 password.","-742748008":"Check your email and click the link in the email to proceed.","-84068414":"Still didn't get the email? Please contact us via <0>live chat.","-474419287":"FATCA declaration","-1101737402":"Please select*","-975118358":"Your account will be opened with {{legal_entity_name}}, regulated by the Malta Financial Services Authority (MFSA), and will be subject to the laws of Malta.","-2073934245":"The financial trading services offered on this site are only suitable for customers who accept the possibility of losing all the money they invest and who understand and have experience of the risk involved in the purchase of financial contracts. Transactions in financial contracts carry a high degree of risk. If the contracts you purchased expire as worthless, you will lose all your investment, which includes the contract premium.","-1035494182":"You acknowledge that, subject to the Company's discretion, applicable regulations, and internal checks being fulfilled, we will open an account for you and allow you to deposit funds during the client acceptance procedure. However, until the verification of your account is completed, you will not be able to trade, withdraw or make further deposits. If you do not provide relevant documents within 30-days, we will refund the deposited amount through the same payment method you used to deposit.","-1125193491":"Add account","-2068229627":"I am not a PEP, and I have not been a PEP in the last 12 months.","-1209644365":"I hereby confirm that my request for opening an account with Deriv Investments (Europe) Ltd is made on my own initiative.","-740157281":"Trading Experience Assessment","-1720468017":"In providing our services to you, we are required to obtain information from you in order to assess whether a given product or service is appropriate for you.","-1685104463":"* This is required","-186841084":"Change your login email","-907403572":"To change your email address, you'll first need to unlink your email address from your {{identifier_title}} account.","-1850792730":"Unlink from {{identifier_title}}","-428335668":"You will need to set a password to complete the process.","-1232613003":"<0>Verification failed. <1>Why?","-805775852":"<0>Needs verification.<1>Verify now","-1983989074":"<0>No new positions","-1196936955":"Upload a screenshot of your name and email address from the personal information section.","-1286823855":"Upload your mobile bill statement showing your name and phone number.","-1309548471":"Upload your bank statement showing your name and account details.","-1410396115":"Upload a photo showing your name and the first six and last four digits of your card number. If the card does not display your name, upload the bank statement showing your name and card number in the transaction history.","-3805155":"Upload a screenshot of either of the following to process the transaction:","-1523487566":"- your account profile section on the website","-613062596":"- the Account Information page on the app","-1718304498":"User ID","-609424336":"Upload a screenshot of your name, account number, and email address from the personal details section of the app or profile section of your account on the website.","-1954436643":"Upload a screenshot of your username on the General Information page at <0>https://onlinenaira.com/members/index.htm","-79853954":"Upload a screenshot of your account number and phone number on the Bank Account/Mobile wallet page at <0>https://onlinenaira.com/members/bank.htm","-1192882870":"Upload a screenshot of your name and account number from the personal details section.","-818898181":"Name in document doesn’t match your Deriv profile.","-310316375":"Address in document doesn’t match address you entered above.","-485368404":"Document issued more than 6-months ago.","-91160765":"Document issued more than 12-months ago.","-367016488":"Blurry document. All information must be clear and visible.","-1957076143":"Cropped document. All information must be clear and visible.","-1576856758":"An account with these details already exists. Please make sure the details you entered are correct as only one real account is allowed per client. If this is a mistake, contact us via <0>live chat.","-1792723131":"To avoid delays, enter your <0>date of birth exactly as it appears on your {{document_name}}.","-5605257":"This scope will allow third-party apps to withdraw to payment agents and make inter-account transfers for you.","-1373485333":"This scope will allow third-party apps to view your trading history.","-758221415":"This scope will allow third-party apps to open accounts for you, manage your settings and token usage, and more. ","-1629894615":"I have other financial priorities.","-844051272":"I want to stop myself from trading.","-1113965495":"I’m no longer interested in trading.","-1224285232":"Customer service was unsatisfactory.","-1231402474":"Connected apps are authorised applications associated with your account through your API token or the OAuth authorisation process. They can act on your behalf within the limitations that you have set.","-506083843":"As a user, you are responsible for sharing access and for actions that occur in your account (even if they were initiated by a third-party app on your behalf).","-831752682":"Please note that only third-party apps will be displayed on this page. Official Deriv apps will not appear here.","-915844096":"US citizenship or lawful permanent resident (green card) status","-208714573":"An “in care of” address or a “hold mail” address that is the sole address with respect to the client","-1082633433":"A power of attorney or signatory authority granted to a person with a US address.","-231863107":"No","-1858215754":"The document must be up-to-date and signed by the issuance authority.","-718917527":"Invalid or incomplete documents shall be rejected.","-1526404112":"Utility bill: electricity, water, gas, or landline phone bill.","-537552700":"Home rental agreement: valid and current agreement.","-506510414":"Date and time","-1708927037":"IP address","-189310067":"Account closed","-849320995":"Assessments","-773766766":"Email and passwords","-1144318594":"Passkeys","-1466827732":"Self exclusion","-241588481":"Login history","-966136867":"Connected apps","-213009361":"Two-factor authentication","-526636259":"Error 404","-870902742":"How much knowledge and experience do you have in relation to online trading?","-1929477717":"I have an academic degree, professional certification, and/or work experience related to financial services.","-1540148863":"I have attended seminars, training, and/or workshops related to trading.","-922751756":"Less than a year","-542986255":"None","-1337206552":"In your understanding, CFD trading allows you to","-456863190":"Place a position on the price movement of an asset where the outcome is a fixed return or nothing at all.","-1314683258":"Make a long-term investment for a guaranteed profit.","-1546090184":"How does leverage affect CFD trading?","-1636427115":"Leverage helps to mitigate risk.","-800221491":"Leverage guarantees profits.","-811839563":"Leverage lets you open large positions for a fraction of trade value, which may result in increased profit or loss.","-1185193552":"Close your trade automatically when the loss is equal to or more than a specified amount, as long as there is adequate market liquidity.","-1046354":"Close your trade automatically when the profit is equal to or more than a specified amount, as long as there is adequate market liquidity.","-1842858448":"Make a guaranteed profit on your trade.","-860053164":"When trading multipliers.","-1250327770":"When buying shares of a company.","-1222388581":"All of the above.","-1592318047":"See example","-1694758788":"Enter your document number","-1176889260":"Please select a document type.","-274764613":"Driver License Reference number","-1265050949":"identity document","-2139303636":"You may have followed a broken link, or the page has moved to a new address.","-1448368765":"Error code: {{error_code}} page not found","-254792921":"You can only make deposits at the moment. To enable withdrawals, please complete your financial assessment.","-1437017790":"Financial information","-70342544":"We’re legally obliged to ask for your financial information.","-39038029":"Trading experience","-601903492":"Forex trading experience","-1012699451":"CFD trading experience","-1894668798":"Other trading instruments experience","-1026468600":"Other trading instruments frequency","-1743024217":"Select Language","-136976514":"Country of residence*","-1124948631":"Professional Client","-259515058":"By default, all {{brand_website_name}} clients are retail clients but anyone can request to be treated as a professional client.","-1463348492":"I would like to be treated as a professional client.","-1958764604":"Email preference","-2068064150":"Get updates about Deriv products, services and events.","-1558679249":"Please make sure your information is correct or it may affect your trading experience.","-1822545742":"Ether Classic","-1334641066":"Litecoin","-1214036543":"US Dollar","-1782590355":"No currency has been set for this account","-1171226355":"Length of token name must be between {{MIN_TOKEN}} and {{MAX_TOKEN}} characters.","-1803339710":"Maximum {{MAX_TOKEN}} characters.","-408613988":"Select scopes based on the access you need.","-807767876":"Note:","-1117963487":"Name your token and click on 'Create' to generate your token.","-2116332353":"Please close your positions in the following Deriv account(s):","-2048005267":"{{number_of_positions}} position(s)","-2125635811":"Please withdraw your funds from the following {{platform_name}} account(s):","-577445413":"Please close your positions in the following {{platform_name}} account(s):","-1219849101":"Please select at least one reason","-9323953":"Remaining characters: {{remaining_characters}}","-484540402":"An error occurred","-1911549768":"Inaccessible MT5 account(s)","-1869355019":"Action required","-1030102424":"You can't trade on Deriv.","-448385353":"You can't make transactions.","-1058447223":"Before closing your account:","-912764166":"Withdraw your funds.","-60139953":"We shall delete your personal information as soon as our legal obligations are met, as mentioned in the section on Data Retention in our <0>Security and privacy policy","-2061895474":"Closing your account will automatically log you out. We shall delete your personal information as soon as our legal obligations are met.","-203298452":"Close account","-937707753":"Go Back","-771109503":"Use our powerful, flexible, and free API to build a custom trading platform for yourself or for your business.","-1815044949":"You currently don't have any third-party authorised apps associated with your account.","-1699100421":"What are connected apps?","-536187647":"Confirm revoke access?","-1357606534":"Permission","-570222048":"Revoke access","-1468863262":"{{action}}","-727433417":"{{status}}","-1814836151":"What are passkeys?","-1275937234":"Unlock your account like your phone - with biometrics, face scan or PIN.","-587750445":"Extra security layer.","-642452561":"Shields against unauthorised access and phishing.","-1654043401":"You can create one passkey per device.","-1411242065":"Where are passkeys saved?","-258752017":"What happens if my Deriv account email is changed?","-634268263":"Sign in to Deriv with your existing passkey.","-1700177761":"Create passkey","-1405679241":"Stored on: ","-567193224":"Rename","-1140319320":"Your account is now secured with a passkey.<0/>Manage your passkey through your<0/>Deriv account settings.","-592543249":"Add more passkeys","-331060101":"Passkey setup failed","-1036903080":"We’re experiencing a temporary issue in processing your request. Please try again later.","-713875531":"Enable bluetooth.","-1729774899":"Sign in to your Google or iCloud account.","-684009726":"Edit passkey","-1004529240":"Passkey name","-1728732301":"Effortless login with passkeys","-1708254107":"Enable Bluetooth.","-613368504":"Tips:","-1897886029":"Before using passkey:","-1893497054":"Only 3-30 characters allowed.","-80717068":"Apps you have linked to your <0>Deriv password:","-340060402":"Your Deriv X password is for logging in to your Deriv X accounts on the web and mobile apps.","-619126443":"Use the <0>Deriv password to log in to {{brand_website_name}} and {{platform_name_trader}}.","-623760979":"Use the <0>Deriv password to log in to {{brand_website_name}}, {{platform_name_trader}} and {{platform_name_go}}.","-459147994":"Use the <0>Deriv password to log in to {{brand_website_name}}, {{platform_name_go}}, {{platform_name_trader}}, {{platform_name_smarttrader}}, {{platform_name_dbot}} and {{platform_name_ctrader}}.","-1884902844":"Max. deposit limit per day","-545085253":"Max. deposit limit over 7 days","-1031006762":"Max. deposit limit over 30 days","-1116871438":"Max. total loss over 30 days","-2134714205":"Time limit per session","-1884271702":"Time out until","-1265825026":"Timeout time must be greater than current time.","-1332882202":"Timeout time cannot be more than 6 weeks.","-1635977118":"Exclude time cannot be less than 6 months.","-2131200819":"Disable","-200487676":"Enable","-1840392236":"That's not the right code. Please try again.","-2067796458":"Authentication code","-790444493":"Protect your account with 2FA. Each time you log in to your account, you will need to enter your password and an authentication code generated by a 2FA app on your smartphone.","-752939584":"How to set up 2FA for your Deriv account","-90649785":"Click here to copy key","-206376148":"Key copied!","-368010540":"You have enabled 2FA for your Deriv account.","-403552929":"To disable 2FA, please enter the six-digit authentication code generated by your 2FA app below:","-1043340733":"Proof of address documents upload failed","-890084320":"Save and submit","-30772747":"Your personal details have been saved successfully.","-2021135479":"This field is required.","-1002044401":"Select your document*","-1272489896":"Please complete this field.","-721346138":"The options and multipliers trading platform.","-1874136267":"The ultimate bot trading platform.","-415943890":"The legacy options trading platform.","-673722343":"The legacy bot trading platform.","-2018495421":"The mobile app for trading multipliers and accumulators.","-897826065":"The multipliers trading platform.","-2115275974":"CFDs","-1585707873":"Financial Commission","-199154602":"Vanuatu Financial Services Commission","-191165775":"Malta Financial Services Authority","-194969520":"Counterparty company","-1089385344":"Deriv (SVG) LLC","-2019617323":"Deriv (BVI) Ltd","-112814932":"Deriv (FX) Ltd","-1131400885":"Deriv Investments (Europe) Limited","-1471207907":"All assets","-781132577":"Leverage","-1591882610":"Synthetics","-543177967":"Stock indices","-362324454":"Commodities","-1959484303":"Cryptocurrencies","-1071336803":"Platform","-1879666853":"Deriv MT5","-820028470":"Options & Multipliers","-1210359945":"Transfer funds to your accounts","-1926387364":"We’ve sent your e-book to your email. You can also download it here.","-1057002564":"<0>We’re unable to upgrade you to Wallets at this time and are working to get this fixed as soon as we can. Please <1>try again<0>.","-1424352390":"<0>Wallets<1> — A smarter way to manage your funds","-280236366":"Enable now","-145462920":"Deriv cTrader","-982095728":"Get","-1790089996":"NEW!","-1473281803":"Predict the market, profit if you’re right, risk only what you put in. <0>Learn more","-2134770229":"Total assets in your Deriv Apps and Deriv MT5 CFDs demo account.","-1277942366":"Total assets","-1255879419":"Trader's Hub","-493788773":"Non-EU","-673837884":"EU","-230566990":"The following documents you submitted did not pass our checks:","-846812148":"Proof of address.","-1146027991":"If you’d like to get the {{from_account}} account, resubmit these documents.","-710685402":"No new positions","-1445744852":"You can no longer open new positions with your {{from_account}} account. Please use your {{to_account}} account to open new positions.","-1699909965":"or ","-2127865736":"Your {{from_account}} account will be archived after 30 days of inactivity. You can still access your trade history until the account is archived.","-417529381":"Your current trading account(s)","-1543281897":"Instant transfers between Wallets and trading accounts","-1415400918":"Multiple currency support","-1712363879":"Why Wallets","-348452343":"Your open trading positions will not be affected while we are setting up your wallets.","-2055865877":"Non-EU regulation","-643108528":"Non-EU and EU regulation","-1002556560":"We’re unable to complete with the Wallet upgrade. Please try again later or contact us via live chat.","-1186807402":"Transfer","-744999940":"Deriv account","-766186087":"{{trustScore}} out of 5 based on {{numberOfReviews}} reviews","-1265635180":"The products offered on our website are complex derivative products that carry a significant risk of potential loss. CFDs are complex instruments with a high risk of losing money rapidly due to leverage. 67.28% of retail investor accounts lose money when trading CFDs with this provider. You should consider whether you understand how these products work and whether you can afford to take the high risk of losing your money.","-1870909526":"Our server cannot retrieve an address.","-582721696":"The current allowed withdraw amount is {{format_min_withdraw_amount}} to {{format_max_withdraw_amount}} {{currency}}","-1975494965":"Cashier","-42592103":"Deposit cryptocurrencies","-60779216":"Withdrawals are temporarily unavailable due to system maintenance. You can make your withdrawals when the maintenance is complete.","-520142572":"Cashier is currently down for maintenance","-1552080215":"Please check back in a few minutes.<0>Thank you for your patience.","-215186732":"You’ve not set your country of residence. To access Cashier, please update your country of residence in the Personal details section in your account settings.","-1392897508":"The identification documents you submitted have expired. Please submit valid identity documents to unlock Cashier. ","-954082208":"Your cashier is currently locked. Please contact us via <0>live chat to find out how to unlock it.","-929148387":"Please set your account currency to enable deposits and withdrawals.","-2027907316":"You can make a withdrawal once the verification of your account is complete.","-541392118":"Your account has not been authenticated. Please submit your <0>proof of identity and <1>proof of address to authenticate your account and access your cashier.","-599998434":"You cannot make a fund transfer as your documents are still under review. We will notify you by email within 3 days once your verification is approved.","-247122507":"Your cashier is locked. Please complete the <0>financial assessment to unlock it.","-1443721737":"Your cashier is locked. See <0>how we protect your funds before you proceed.","-901712457":"Your access to Cashier has been temporarily disabled as you have not set your 30-day turnover limit. Please go to <0>Self-exclusion and set your 30-day turnover limit.","-166472881":"Your <0>personal details are incomplete. Please go to your account settings and complete your personal details to enable deposits and withdrawals.","-666905139":"Deposits are locked","-378858101":"Your <0>personal details are incomplete. Please go to your account settings and complete your personal details to enable deposits.","-1318742415":"Your account has not been authenticated. Please submit your <0>proof of identity and <1>proof of address to authenticate your account and request for withdrawals.","-1923809087":"Unfortunately, you can only make deposits. Please contact us via <0>live chat to enable withdrawals.","-172277021":"Cashier is locked for withdrawals","-1624999813":"It seems that you've no commissions to withdraw at the moment. You can make withdrawals once you receive your commissions.","-1077304626":"Amount ({{currency}})","-1559994981":"Approximate value","-1272778997":"We've sent you an email.","-89973258":"Resend email in {{seconds}}s","-1332236294":"Please verify your identity","-1675848843":"Error","-283017497":"Retry","-1294455996":"Deriv P2P unavailable","-1838982691":"UNKNOWN","-532693866":"Something went wrong. Please refresh the page and try again.","-1196049878":"First line of home address","-1326406485":"Postal Code/ZIP","-939625805":"Telephone","-442575534":"Email verification failed","-1459042184":"Update your personal details","-1603543465":"We can't validate your personal details because there is some information missing.","-614516651":"Need help? <0>Contact us.","-203002433":"Deposit now","-720315013":"You have no funds in your {{currency}} account","-2052373215":"Please make a deposit to use this feature.","-379487596":"{{selected_percentage}}% of available balance ({{format_amount}} {{currency__display_code}})","-1957498244":"more","-1059419768":"Notes","-285921910":"Learn more about <0>payment methods.","-190084602":"Transaction","-1995606668":"Amount","-2024290965":"Confirmations","-811190405":"Time","-728508487":"{{currency}} recent transactions","-1984478597":"The details of this transaction is available on CoinsPaid.","-316545835":"Please ensure <0>all details are <0>correct before making your transfer.","-949073402":"I confirm that I have verified the client’s transfer information.","-1752211105":"Transfer now","-1787304306":"Deriv P2P","-174976899":"P2P verification","-1705887186":"Your deposit is successful.","-142361708":"In process","-1582681840":"We’ve received your request and are waiting for more blockchain confirmations.","-1626218538":"You’ve cancelled your withdrawal request.","-1062841150":"Your withdrawal is unsuccessful due to an error on the blockchain. Please <0>contact us via live chat for more info.","-630780094":"We’re awaiting confirmation from the blockchain.","-1525882769":"Your withdrawal is unsuccessful. We've sent you an email with more information.","-298601922":"Your withdrawal is successful.","-922143389":"Deriv P2P is currently unavailable in this currency.","-1310327711":"Deriv P2P is currently unavailable in your country.","-1463156905":"Learn more about payment methods","-972283623":"Deriv P2P-V2","-685073712":"This is your <0>{{currency}} account {{loginid}}.","-1547606079":"We accept the following cryptocurrencies:","-1517325716":"Deposit via the following payment methods:","-639677539":"Buy cryptocurrencies","-1560098002":"Buy cryptocurrencies via fiat onramp","-541870313":"Deposit via payment agents","-197251450":"Don't want to trade in {{currency_code}}? You can open another cryptocurrency account.","-515809216":"Send only {{currency_name}} ({{currency_code}}) to this address.","-748636591":"A minimum deposit value of <0>{{minimum_deposit}} {{currency}} is required. Otherwise, a fee is applied.","-1589407981":"To avoid loss of funds:","-1042704302":"Make sure to copy your Deriv account address correctly into your crypto wallet.","-2108344100":"Looking for a way to buy cryptocurrencies? <0>Try Fiat onramp.","-598073640":"About Tether (Ethereum)","-275902914":"Tether on Ethereum (eUSDT)","-1188009792":"Tether on Omni Layer (USDT)","-1239329687":"Tether was originally created to use the bitcoin network as its transport protocol ‒ specifically, the Omni Layer ‒ to allow transactions of tokenised traditional currency.","-314177745":"Unfortunately, we couldn't get the address since our server was down. Please click Refresh to reload the address or try again later.","-91824739":"Deposit {{currency}}","-523804269":"{{amount}} {{currency}} on {{date}}","-494847428":"Address: <0>{{value}}","-1117977576":"Confirmations: <0>{{value}}","-1935946851":"View more","-1744490898":"Unfortunately, we cannot retrieve the information at this time. ","-338505133":"We do not charge a transfer fee for transfers in the same currency between your Deriv fiat and {{platform_name_mt5}} accounts, between your Deriv fiat and {{platform_name_ctrader}} accounts, and between your Deriv fiat and {{platform_name_dxtrade}} accounts.","-2056016338":"You’ll not be charged a transfer fee for transfers in the same currency between your Deriv fiat and {{platform_name_mt5}} accounts.","-599632330":"We’ll charge a 1% transfer fee for transfers in different currencies between your Deriv fiat and {{platform_name_mt5}} accounts and between your Deriv fiat and {{platform_name_dxtrade}} accounts.","-1196994774":"We’ll charge a 2% transfer fee or {{minimum_fee}} {{currency}}, whichever is higher, for transfers between your Deriv cryptocurrency accounts.","-993556039":"We’ll charge a 2% transfer fee or {{minimum_fee}} {{currency}}, whichever is higher, for transfers between your Deriv cryptocurrency and Deriv MT5 accounts and between your Deriv cryptocurrency and {{platform_name_dxtrade}} accounts.","-1382702462":"We’ll charge a 2% transfer fee or {{minimum_fee}} {{currency}}, whichever is higher, for transfers between your Deriv cryptocurrency and Deriv MT5 accounts.","-1339063554":"You may transfer between your Deriv fiat, cryptocurrency, {{platform_name_mt5}}, {{platform_name_ctrader}}, and {{platform_name_dxtrade}} accounts.","-1151983985":"Transfer limits may vary depending on the exchange rates.","-1747571263":"Please bear in mind that some transfers may not be possible.","-757062699":"Transfers may be unavailable due to high volatility or technical issues and when the exchange markets are closed.","-855721928":"Needs verification","-908402700":"Verification failed","-1866405488":"Deriv cTrader accounts","-1344870129":"Deriv accounts","-1109729546":"You will be able to transfer funds between MT5 accounts and other accounts once your address is verified.","-1593609508":"Transfer between your accounts in Deriv","-1155970854":"You have reached the maximum daily transfers. Please try again tomorrow.","-464965808":"Transfer limits: <0 /> - <1 />","-553249337":"Transfers are locked","-1638172550":"To enable this feature you must complete the following:","-1949883551":"You only have one account","-1149845849":"Back to Trader's Hub","-1232852916":"We’re switching over to your {{currency}} account to view the transaction.","-1632668764":"I accept","-544232635":"Please go to the Deposit page to generate an address. Then come back here to continue with your transaction.","-1161069724":"Please copy the crypto address you see below. You'll need it to deposit your cryptocurrency.","-1388977563":"Copied!","-1962894999":"This address can only be used ONCE. Please copy a new one for your next transaction.","-451858550":"By clicking 'Continue' you will be redirected to {{ service }}, a third-party payment service provider. Please note that {{ website_name }} is not responsible for the content or services provided by {{ service }}. If you encounter any issues related to {{ service }} services, you must contact {{ service }} directly.","-2005265642":"Fiat onramp is a cashier service that allows you to convert fiat currencies to crypto to top up your Deriv crypto accounts. Listed here are third-party crypto exchanges. You’ll need to create an account with them to use their services.","-1593063457":"Select payment channel","-1309258714":"From account number","-1247676678":"To account number","-816476007":"Account holder name","-344403983":"Description","-922432739":"Please enter a valid client login ID.","-1024241603":"Insufficient balance.","-1979554765":"Please enter a valid description.","-1254233806":"You've transferred","-953082600":"Some payment methods may not be listed here but payment agents may still offer them. If you can’t find your favourite method, contact the payment agents directly to check further.","-1491457729":"All payment methods","-142563298":"Contact your preferred payment agent for payment instructions and make your deposit.","-352134412":"Transfer limit","-1023961762":"Commission on deposits","-552873274":"Commission on withdrawal","-880645086":"Withdrawal amount","-118683067":"Withdrawal limits: <0 />-<1 />","-1125090734":"Important notice to receive your funds","-1924707324":"View transaction","-1474202916":"Make a new withdrawal","-511423158":"Enter the payment agent account number","-2059278156":"Note: {{website_name}} does not charge any transfer fees.","-1201279468":"To withdraw your funds, please choose the same payment method you used to make your deposits.","-2004264970":"Your wallet address should have 25 to 64 characters.","-1707299138":"Your {{currency_symbol}} wallet address","-38063175":"{{account_text}} wallet","-705272444":"Upload a proof of identity to verify your identity","-130833284":"Please note that your maximum and minimum withdrawal limits aren’t fixed. They change due to the high volatility of cryptocurrency.","-1531269493":"We'll send you an email once your transaction has been processed.","-1373954791":"Should be a valid number","-1278608332":"Please enter a number between 0 and {{api_max_losses}}.","-287597204":"Enter limits to stop your bot from trading when any of these conditions are met.","-1445989611":"Limits your potential losses for the day across all Deriv platforms.","-152878438":"Maximum number of trades your bot will execute for this run.","-1490942825":"Apply and run","-2067572496":"You’ve just stopped the bot. Any open contracts can be viewed on the Reports page.","-992003496":"Changes you make will not affect your running bot.","-1778025545":"You’ve successfully imported a bot.","-1572746946":"Asian Up","-686840306":"Asian Down","-2141198770":"Higher","-816098265":"Lower","-1646655742":"Spread Up","-668987427":"Spread Down","-912577498":"Matches","-1862940531":"Differs","-808904691":"Odd","-556230215":"Ends Outside","-1268220904":"Ends Between","-703542574":"Up","-1127399675":"Down","-768425113":"No Touch","-1163058241":"Stays Between","-1354485738":"Reset Call","-376148198":"Only Ups","-1337379177":"High Tick","-328036042":"Please enter a stop loss amount that's higher than the current potential loss.","-2127699317":"Invalid stop loss. Stop loss cannot be more than stake.","-179005984":"Save","-610059687":"Exploring the D’Alembert strategy in Deriv Bot","-1226666341":"The D'Alembert strategy involves increasing your stake after a losing trade and reducing it after a successful trade by a predetermined number of units.","-312844882":"Initial stake: The amount that you are willing to place as a stake to enter a trade. This is the starting point for any changes in stake depending on the dynamic of the strategy being used.","-1173302981":"1. Start with the initial stake. In this example, we’ll use 1 USD.","-1540106116":"Profit and loss thresholds","-894905768":"With Deriv Bot, traders can set the profit and loss thresholds to secure potential profits and limit potential losses. This means that the trading bot will automatically stop when either the profit or loss thresholds are reached. It's a form of risk management that can potentially enhance returns. For example, if a trader sets the profit threshold at 100 USD and the strategy exceeds 100 USD of profit from all trades, then the bot will stop running.","-1946134465":"Where:","-248283982":"B is the loss threshold.","-1148521416":"f is the unit increment.","-211800490":"D’Alembert formula 2","-1772692202":"This formula helps you plan your trades by considering the amount of money you have and your comfort level with risk. It involves determining your loss threshold and the initial stake you want to trade with. Then, you use this formula to calculate the number of rounds you can trade. This process provides insight into stake sizing and expectations.","-2107238266":"The D'Alembert system offers more balanced trading through controlled stake progression. With prudent risk management like stake limits, it can be effectively automated in Deriv Bot. However, traders should thoroughly assess their risk appetite, test strategies on a demo account to align with their trading style before trading with real money. This allows optimising the approach and striking a balance between potential gains and losses whilst managing risk.","-500873566":"Disclaimer:","-344769349":"Please be aware that while we may use rounded figures for illustration, a stake of a specific amount does not guarantee an exact amount in successful trades. For example, a 1 USD stake does not necessarily equate to a 1 USD profit in successful trades.","-818800551":"Exploring the Martingale strategy in Deriv Bot","-533490374":"These are the trade parameters used in Deriv Bot with Martingale strategy.","-1507161059":"Multiplier: The multiplier used to increase your stake if you're losing a trade. The value must be greater than 1.","-1333404686":"An example of Martingale strategy","-1755877136":"3. If the first trade ends in a loss, Deriv Bot will automatically double your stake for the next trade to 2 USD. Deriv Bot will continue to double the stake after every losing trade.","-1297651002":"If you're about to start trading and haven't established a Maximum Stake as part of your risk management strategy, you can determine how long your funds will last by employing the Martingale strategy. Simply use this formula.","-46865201":"Martingale formula 1","-116397598":"m is the Martingale multiplier.","-658161609":"Number of rounds, R ≈ 9.965","-288082521":"This means that after 10 rounds of consecutive losses, this trader will lose 1023 USD which exceeds the loss threshold of 1000 USD, stopping the bot.","-770387160":"The Martingale strategy in trading may offer substantial gains but also comes with significant risks. With your selected strategy, Deriv Bot provides automated trading with risk management measures like setting initial stake, stake size, maximum stake, profit threshold and loss threshold. It's crucial for traders to assess their risk tolerance, practice in a demo account, and understand the strategy before trading with real money.","-1901073152":"These are the trade parameters used for Oscar’s Grind strategy in Deriv Bot.","-1575153036":"An example of Oscar’s Grind strategy","-732418614":"The table above demonstrates this principle by showing that when a successful trade occurs and meets the target of one unit of potential profit which is 1 USD in this example, the session ends. If trading continues, a new session will begin.","-106266344":"Principle 3: The stake adjusts to the gap size between current loss and the target profit for the session","-492908094":"In round 7, the stake is adjusted downwards from 2 USD to 1 USD, to meet the target profit of 1 USD.","-90079299":"With Deriv Bot, traders can set the profit and loss thresholds to secure potential profits and limit potential losses. This means that the trading bot will automatically stop when either the profit or loss threshold is reached. This is a form of risk management that can potentially boost successful trades whilst limiting the impact of loss. For example, if a trader sets the profit threshold at 100 USD and the strategy exceeds 100 USD of profit from all trades, then the bot will stop running.","-1549673884":"The Oscar's Grind strategy provides a disciplined approach for incremental gains through systematic stake progression. When integrated into Deriv Bot with proper risk management like profit or loss thresholds, it offers traders a potentially powerful automated trading technique. However, traders should first thoroughly assess their risk tolerance and first try trading on a demo account in order to familiarise with the strategy before trading with real funds.","-655650222":"Exploring the Reverse D’Alembert strategy in Deriv Bot","-1864807973":"The Reverse D'Alembert strategy involves increasing your stake after a successful trade and reducing it after a losing trade by a predetermined number of units.","-809681645":"These are the trade parameters used in Deriv Bot with Reverse D’Alembert strategy.","-1239374257":"An example of Reverse D’Alembert strategy","-309821442":"Please be aware that while we may use rounded figures for illustration, a stake of a specific amount does not guarantee an exact amount in successful trades. For example, a 1 USD stake does not necessarily equate to a 1 USD profit in successful trades.","-1576691912":"This article explores the Reverse Martingale strategy integrated into Deriv Bot, a versatile trading bot designed to trade assets such as forex, commodities, and derived indices. We will delve into the strategy's core parameters, its application, and provide essential takeaways for traders looking to use the bot effectively.","-1934849823":"These are the trade parameters used in Deriv Bot with Reverse Martingale strategy.","-1021919630":"Multiplier: The multiplier used to increase your stake if your trade is successful. The value must be greater than 1.","-760516362":"3. If the first trade is a successful trade, Deriv Bot will automatically double your stake for the next trade to 2 USD. Deriv Bot will continue to double the stake after every successful trade.","-1410950365":"Exploring the 1-3-2-6 strategy in Deriv Bot","-1175255072":"These are the trade parameters used in Deriv Bot with 1-3-2-6 strategy.","-183884527":"An example of 1-3-2-6 strategy","-275617819":"4. However, if any trade results in a loss, your stake will reset back to the initial stake of 1 USD for the next trade. The third trade results in a loss hence the stake resets to the initial stake of 1 USD for the next trade.","-719846465":"5. Upon reaching the initial stake, if the next trade still results in a loss, your stake will remain at the initial stake of 1 USD. This strategy will minimally trade at the initial stake. Refer to the fourth and fifth trade.","-1452746011":"The 1-3-2-6 strategy in trading may offer substantial gains but also comes with significant risks. Each stake is independent, and the strategy does not increase your chances of successful trades in the long run. If you encounter a series of losses, the strategy can lead to significant losses. Therefore, it is crucial for traders to assess their risk tolerance, practice in a demo account, utilise profit and loss thresholds, and fully comprehend the strategy before engaging in real-money trading.","-1016171176":"Asset","-138833194":"The underlying market your bot will trade with this strategy.","-621128676":"Trade type","-399349239":"Your bot will use this trade type for every run","-410856998":"The bot will stop trading if your total profit exceeds this amount.","-447853970":"Loss threshold","-33106112":"The size used to multiply the stake after a successful trade for the next trade.","-1503301801":"The value must be equal or greater than {{ min }}","-1596504046":"Number of unit(s) to be added to the next trade after a successful trade. One unit is equivalent to the amount of initial stake.","-1521098535":"Max stake","-1448426542":"The stake for your next trade will reset to the initial stake if it exceeds this value.","-993953307":"Your prediction of the last digit of the asset price.","-1305281529":"D’Alembert","-1842451303":"Welcome to Deriv Bot!","-1391310674":"Check out these guides and FAQs to learn more about building your bot:","-2066779239":"FAQs","-280324365":"What is Deriv Bot?","-155173714":"Let’s build a bot!","-1919212468":"3. You can also search for the blocks you want using the search bar above the categories.","-1520558271":"For more info, check out this blog post on the basics of building a trading bot.","-980360663":"3. Choose the block you want and drag it to the workspace.","-1493168314":"What is a quick strategy?","-1680391945":"Using a quick strategy","-1177914473":"How do I save my strategy?","-271986909":"In Bot Builder, hit Save on the toolbar at the top to download your bot. Give your bot a name, and choose to download your bot to your device or Google Drive. Your bot will be downloaded as an XML file.","-1149045595":"1. After hitting Import, select Local and click Continue.","-288041546":"2. Select your XML file and hit Open.","-2127548288":"3. Your bot will be loaded accordingly.","-1311297611":"1. After hitting Import, select Google Drive and click Continue.","-1549564044":"How do I reset the workspace?","-1127331928":"In Bot Builder, hit Reset on the toolbar at the top. This will clear the workspace. Please note that any unsaved changes will be lost.","-1720444288":"How do I control my losses with Deriv Bot?","-1142295124":"There are several ways to control your losses with Deriv Bot. Here’s a simple example of how you can implement loss control in your strategy:","-2129119462":"1. Create the following variables and place them under Run once at start:","-1918487001":"Example:","-468926787":"This is how your trade parameters, variables, and trade options should look like:","-1565344891":"Can I run Deriv Bot on multiple tabs in my web browser?","-90192474":"Yes, you can. However, there are limits on your account, such as maximum number of open positions and maximum aggregate payouts on open positions. So, just keep these limits in mind when opening multiple positions. You can find more info about these limits at Settings > Account limits.","-213872712":"No, we don't offer cryptocurrencies on Deriv Bot.","-2147346223":"In which countries is Deriv Bot available?","-352345777":"What are the most popular strategies for automated trading?","-552392096":"Three of the most commonly used strategies in automated trading are Martingale, D'Alembert, and Oscar's Grind — you can find them all ready-made and waiting for you in Deriv Bot.","-1630262763":"About Martingale","-413928457":"About Oscar's Grind","-1497015866":"About Reverse D’Alembert","-437005403":"About 1-3-2-6","-590765322":"Unfortunately, this trading platform is not available for EU Deriv account. Please switch to a non-EU account to continue trading.","-2110207996":"Deriv Bot is unavailable for this account","-971295844":"Switch to another account","-1194079833":"Deriv Bot is not available for EU clients","-746652890":"Notifications","-824109891":"System","-507620484":"Unsaved","-764102808":"Google Drive","-749186458":"Account switching is disabled while your bot is running. Please stop your bot before switching accounts.","-597939268":"Keep my contract","-1322453991":"You need to log in to run the bot.","-236548954":"Contract Update Error","-1428017300":"THE","-1450728048":"OF","-255051108":"YOU","-1845434627":"IS","-931434605":"THIS","-740712821":"A","-1223145005":"Loss amount: {{profit}}","-1206212388":"Welcome back! Your messages have been restored. You are using your {{current_currency}} account.","-1724342053":"You are using your {{current_currency}} account.","-187634388":"This block is mandatory. Here is where you can decide if your bot should continue trading. Only one copy of this block is allowed.","-2105473795":"The only input parameter determines how block output is going to be formatted. In case if the input parameter is \"string\" then the account currency will be added.","-1800436138":"2. for \"number\": 1325.68","-530632460":"This block is used to determine if the market price moves in the selected direction or not. It gives you a value of \"True\" or \"False\".","-1875717842":"Examples:","-890079872":"1. If the selected direction is \"Rise\", and the previous tick value is less than the current tick value, the output will be \"True\". Otherwise, the output will be an empty string.","-489739641":"2. If the selected direction is \"Fall\", and the previous tick value is more than the current tick value, the output will be \"True\". Otherwise, the output will be an empty string.","-2116076360":"There are 4 message types:","-1421941045":"2. 'Warn' displays a message in yellow to highlight something that needs attention.","-277850921":"If \"Win\" is selected, it will return \"True\" if your last trade was successful. Otherwise, it will return an empty string.","-2139916657":"1. In the below example the loop is terminated in case \"x\" is \"False\" even though only one iteration is complete","-1238900333":"2. In the below example the loop jumps to the next iteration without executing below block in case if \"x\" is \"False\"","-1729479576":"You can use \"i\" inside the loop, for example to access list items","-1474636594":"In this example, the loop will repeat three times, as that is the number of items in the given list. During each iteration, the variable \"i\" will be assigned a value from the list. ","-908772734":"This block evaluates a statement and will perform an action only when the statement is true.","-334040831":"2. In this example, the instructions are repeated as long as the value of x is greater than or equal to 10. Once the value of x drops below 10, the loop is terminated.","-444267958":"\"Seconds Since Epoch\" block returns the number of seconds since January 1st, 1970.","-447522129":"You might need it when you want to repeat an actions after certain amount of time.","-1488259879":"The term \"candle\" refers to each bar on the candlestick chart. Each candle represents four market prices for the selected time interval:","-2020693608":"Each candlestick on the chart represents 4 market prices for the selected time interval:","-62728852":"- Open price: the opening price","-1247744334":"- Low price: the lowest price","-1386365697":"- Close price: the closing price","-1498732382":"A black (or red) candle indicates that the open price is higher than the close price. This represents a downward movement of the market price.","-1871864755":"This block gives you the last digit of the latest tick value of the selected market. If the latest tick value is 1410.90, this block will return 0. It’s useful for digit-based contracts such as Even/Odd, Matches/Differs, or Higher/Lower.","-1029671512":"In case if the \"OR\" operation is selected, the block returns \"True\" in case if one or both given values are \"True\"","-210295176":"Available operations:","-1385862125":"- Addition","-983721613":"- Subtraction","-854750243":"- Multiplication","-1394815185":"In case if the given number is less than the lower boundary of the range, the block returns the lower boundary value. Similarly, if the given number is greater than the higher boundary, the block will return the higher boundary value. In case if the given value is between boundaries, the block will return the given value unchanged.","-1034564248":"In the below example the block returns the value of 10 as the given value (5) is less than the lower boundary (10)","-2009817572":"This block performs the following operations to a given number","-671300479":"Available operations are:","-514610724":"- Absolute","-1923861818":"- Euler’s number (2.71) to the power of a given number","-1556344549":"Here’s how:","-1061127827":"- Visit the following URL, make sure to replace with the Telegram API token you created in Step 1: https://api.telegram.org/bot/getUpdates","-311389920":"In this example, the open prices from a list of candles are assigned to a variable called \"cl\".","-1460794449":"This block gives you a list of candles within a selected time interval.","-1634242212":"Used within a function block, this block returns a value when a specific condition is true.","-2012970860":"This block gives you information about your last contract.","-1504783522":"You can choose to see one of the following:","-10612039":"- Profit: the profit you’ve earned","-555996976":"- Entry time: the starting time of the contract","-1391071125":"- Exit time: the contract expiration time","-1961642424":"- Exit value: the value of the last tick of the contract","-111312913":"- Barrier: the barrier value of the contract (applicable to barrier-based trade types such as stays in/out, touch/no touch, etc.)","-674283099":"- Result: the result of the last contract: \"win\" or \"loss\"","-704543890":"This block gives you the selected candle value such as open price, close price, high price, low price, and open time. It requires a candle as an input parameter.","-482281200":"In the example below, the open price is assigned to the variable \"op\".","-364621012":"This block gives you the specified candle value for a selected time interval. You can choose which value you want:","-232477769":"- Open: the opening price","-610736310":"Use this block to sell your contract at the market price. Selling your contract is optional. You may choose to sell if the market trend is unfavourable.","-1307657508":"This block gives you the potential profit or loss if you decide to sell your contract. It can only be used within the \"Sell conditions\" root block.","-1921072225":"In the example below, the contract will only be sold if the potential profit or loss is more than the stake.","-955397705":"SMA adds the market price in a list of ticks or candles for a number of time periods, and divides the sum by that number of time periods.","-1424923010":"where n is the number of periods.","-1835384051":"What SMA tells you","-749487251":"SMA serves as an indicator of the trend. If the SMA points up then the market price is increasing and vice versa. The larger the period number, the smoother SMA line is.","-1996062088":"In this example, each point of the SMA line is an arithmetic average of close prices for the last 10 days.","-1866751721":"Input list accepts a list of ticks or candles, while period is the specified time period.","-1097076512":"You may compare SMA values calculated on every bot run to identify the market trend direction. Alternatively, you may also use a variation of the SMA block, the Simple Moving Average Array block. ","-1254849504":"If a period of 10 is entered, the Simple Moving Average Array block will return a list of SMA values calculated based on period of 10.","-1190046167":"This block displays a dialog box with a customised message. When the dialog box is displayed, your strategy is paused and will only resume after you click \"OK\".","-859028989":"In this example, the date and time will be displayed in a green notification box.","-1452086215":"In this example, a Rise contract will be purchased at midnight on 1 August 2019.","-2078588404":"Select your desired market and asset type. For example, Forex > Major pairs > AUD/JPY","-2037446013":"2. Trade Type","-533927844":"Select your desired trade type. For example, Up/Down > Rise/Fall","-1192411640":"4. Default Candle Interval","-485434772":"8. Trade Options","-1827646586":"This block assigns a given value to a variable, creating the variable if it doesn't already exist.","-254421190":"List: ({{message_length}})","-555886064":"Won","-529060972":"Lost","-1062922595":"Reference ID (buy)","-2068574600":"Reference ID (sell)","-994038153":"Start Time","-1979852400":"Entry Spot","-427802309":"Profit/Loss","-224804428":"Transactions","-287223248":"No transaction or activity yet.","-418247251":"Download your journal.","-2123571162":"Download","-1616649196":"results","-90107030":"No results found","-984140537":"Add","-870004399":"<0>Bought: {{longcode}} (ID: {{transaction_id}})","-1211474415":"Filters","-186972150":"There are no messages to display","-558594655":"The bot is not running","-478946875":"The stats are cleared","-999254545":"All messages are filtered out","-934909826":"Load strategy","-1121028020":"or, if you prefer...","-254025477":"Select an XML file from your device","-1131095838":"Please upload an XML file","-523928088":"Create one or upload one from your local drive or Google Drive.","-1684205190":"Why can't I see my recent bots?","-2050879370":"1. Logged in from a different device","-811857220":"3. Cleared your browser cache","-625024929":"Leaving already?","-584289785":"No, I'll stay","-1435060006":"If you leave, your current contract will be completed, but your bot will stop running immediately.","-783058284":"Total stake","-2077494994":"Total payout","-1073955629":"No. of runs","-1729519074":"Contracts lost","-42436171":"Total profit/loss","-1856204727":"Reset","-1137823888":"Total payout since you last cleared your stats.","-992662695":"The number of times your bot has run since you last cleared your stats. Each run includes the execution of all the root blocks.","-1382491190":"Your total profit/loss since you last cleared your stats. It is the difference between your total payout and your total stake.","-24780060":"When you’re ready to trade, hit ","-2147110353":". You’ll be able to track your bot’s performance here.","-1442034178":"Contract bought","-2020280751":"Bot is stopping","-1436403979":"Contract closed","-411060180":"TradingView Chart","-627895223":"Exit spot","-2140412463":"Buy price","-1299484872":"Account","-2004386410":"Win","-266502731":"Transactions detailed summary","-1711732508":"Reference IDs","-386141434":"(Buy)","-482272687":"(Sell)","-1983189496":"ticks","-694277729":"(High)","-2028564707":"(Low)","-596238067":"Entry/Exit spot","-1823621139":"Quick Strategy","-1782602933":"Choose a template below and set your trade parameters.","-315611205":"Strategy","-1524489375":"(optional)","-150224710":"Yes, continue","-475765963":"Edit the amount","-1349897832":"Do not show this message again.","-984512425":"Minimum duration: {{ value }}","-2084091453":"The value must be equal or greater than {{ value }}","-657364297":"The value must be equal or less than {{ value }}","-1696412885":"Import","-320197558":"Sort blocks","-939764287":"Charts","-1566369363":"Zoom out","-1285759343":"Search","-1291088318":"Purchase conditions","-112876186":"Analysis","-1769584466":"Stats","-1133736197":"Utility","-1682372359":"Text","-907562847":"Lists","-1646497683":"Loops","-251326965":"Miscellaneous","-1692205739":"Import a bot from your computer or Google Drive, build it from scratch, or start with a quick strategy.","-1150390589":"Last modified","-1393876942":"Your bots:","-1545070554":"Delete bot","-1972599670":"Your bot will be permanently deleted when you hit ","-1692956623":"Yes, delete.","-573479616":"Are you sure you want to delete it?","-786915692":"You are connected to Google Drive","-1256971627":"To import your bot from your Google Drive, you'll need to sign in to your Google account.","-1233084347":"To know how Google Drive handles your data, please review Deriv’s <0>Privacy policy.","-1150107517":"Connect","-767342552":"Enter your bot name, choose to save on your computer or Google Drive, and hit ","-1372891985":"Save.","-1003476709":"Save as collection","-636521735":"Save strategy","-1953880747":"Stop my bot","-1899230001":"Stopping the current bot will load the Quick Strategy you just created to the workspace.","-2131847097":"Any open contracts can be viewed on the ","-563774117":"Dashboard","-683790172":"Now, <0>run the bot to test out the strategy.","-1127164953":"Hi! Hit <0>Start for a quick tour.","-358288026":"Note: You can also find this tutorial in the <0>Tutorials tab.","-129587613":"Got it, thanks!","-1793577405":"Build from scratch","-358753028":"Create your bot using our drag-and-drop blocks or click Quick Strategy to choose from the ready-to-use bot templates.","-1212601535":"Monitor the market","-21136101":"See how your bot is doing in real-time.","-631097919":"Click <0>Run when you want to start trading, and click <0>Stop when you want to stop.","-1999747212":"Want to retake the tour?","-782992165":"Step 1 :","-1207872534":"First, set the <0>Trade parameters block.","-1656388044":"First, set <0>Market to Derived > Continuous Indices > Volatility 100 (1s) Index.","-1706298865":"Then, set <0>Trade type to Up/Down > Rise/Fall.","-1834358537":"For <0>Default candle interval, set it to 1 minute","-1940971254":"For <0>Trade options, set it as below:","-512839354":"<0>Stake: USD 10 (min: 0.35 - max: 50000)","-753745278":"Step 2 :","-1056713679":"Then, set the <0>Purchase conditions block.","-245497823":"<0>2. Purchase conditions:","-916770284":"<0>Purchase: Rise","-758077259":"Step 3 :","-677396944":"Step 4 :","-295975118":"Next, go to <0>Utility tab under the Blocks menu. Tap the drop-down arrow and hit <0>Loops.","-698493945":"Step 5 :","-1992994687":"Now, tap the <0>Analysis drop-down arrow and hit <0>Contract.","-1844492873":"Go to the <0>Last trade result block and click + icon to add the <0>Result is Win block to the workspace.","-1547091772":"Then, drag the <0>Result is win into the empty slot next to <0>repeat until block.","-736400802":"Step 6 :","-732067680":"Finally, drag and add the whole <0>Repeat block to the <0>Restart trading conditions block.","-1411787252":"Step 1","-1109392787":"Learn how to build your bot from scratch using a simple strategy.","-1263822623":"You can import a bot from your mobile device or from Google drive, see a preview in the bot builder, and start trading by running the bot.","-563921656":"Bot Builder guide","-1596172043":"Quick strategy guides","-1765276625":"Click the multiplier drop-down menu and choose the multiplier value you want to trade with.","-1872233077":"Your potential profit will be multiplied by the multiplier value you’ve chosen.","-614454953":"To learn more about multipliers, please go to the <0>Multipliers page.","-662836330":"Would you like to keep your current contract or close it? If you decide to keep it running, you can check and close it later on the <0>Reports page.","-1717650468":"Online","-1309011360":"Open positions","-1597214874":"Trade table","-1929724703":"Compare CFD accounts","-883103549":"Account deactivated","-45873457":"NEW","-1190972431":"P2P-V2","-1837059346":"Buy / Sell","-1845037007":"Advertiser's page","-494667560":"Orders","-679691613":"My ads","-821418875":"Trader","-679102561":"Contract Details","-430118939":"Complaints policy","-377375279":"Standard","-1582979384":"Standard Demo","-1212531781":"Standard BVI","-328128497":"Financial","-533935232":"Financial BVI","-565431857":"Financial Labuan","-291535132":"Swap-Free Demo","-499019612":"Zero Spread Demo","-1472945832":"Swap-Free SVG","-144803045":"Only numbers and these special characters are allowed: {{permitted_characters}}","-1450516268":"Only letters, numbers, space, hyphen, period, and apostrophe are allowed.","-1966032552":"The length of token should be 8.","-2128137611":"Should start with letter or number, and may contain hyphen and underscore.","-1590869353":"Up to {{decimal_count}} decimal places are allowed.","-2061307421":"Should be more than {{min_value}}","-1099941162":"Should be less than {{max_value}}","-1528188268":"Straight rows of keys are easy to guess","-1339903234":"Short keyboard patterns are easy to guess","-23980798":"Repeats like \"aaa\" are easy to guess","-235760680":"Avoid repeated words and characters","-1568933154":"Sequences like abc or 6543 are easy to guess","-725663701":"Avoid sequences","-1450768475":"Recent years are easy to guess","-1804838610":"Avoid years that are associated with you","-64849469":"Dates are often easy to guess","-2006915194":"Avoid dates and years that are associated with you","-2124205211":"A word by itself is easy to guess","-1095202689":"All-uppercase is almost as easy to guess as all-lowercase","-2137856661":"Reversed words aren't much harder to guess","-1885413063":"Predictable substitutions like '@' instead of 'a' don't help very much","-369258265":"This password is on the blacklist","-577777971":"You have reached the rate limit of requests per second. Please try later.","-206321775":"Fiat","-522767852":"DEMO","-433761292":"Switching to default account.","-405439829":"Sorry, you can't view this contract because it doesn't belong to this account.","-1590712279":"Gaming","-16448469":"Virtual","-2093768906":"{{name}} has released your funds.
Would you like to give your feedback?","-705744796":"Your demo account balance has reached the maximum limit, and you will not be able to place new trades. Reset your balance to continue trading from your demo account.","-2063700253":"disabled","-1585069798":"Please click the following link to complete your Appropriateness Test.","-1287141934":"Find out more","-367759751":"Your account has not been verified","-596690079":"Enjoy using Deriv?","-265932467":"We’d love to hear your thoughts","-1815573792":"Drop your review on Trustpilot.","-823349637":"Go to Trustpilot","-1204063440":"Set my account currency","-1601813176":"Would you like to increase your daily limits to {{max_daily_buy}} {{currency}} (buy) and {{max_daily_sell}} {{currency}} (sell)?","-1751632759":"Get a faster mobile trading experience with the <0>{{platform_name_go}} app!","-1164554246":"You submitted expired identification documents","-219846634":"Let’s verify your ID","-529038107":"Install","-1738575826":"Please switch to your real account or create one to access the cashier.","-1329329028":"You’ve not set your 30-day turnover limit","-132893998":"Your access to the cashier has been temporarily disabled as you have not set your 30-day turnover limit. Please go to Self-exclusion and set the limit.","-1852207910":"MT5 withdrawal disabled","-764323310":"MT5 withdrawals have been disabled on your account. Please check your email for more details.","-1744163489":"Please verify your proof of income","-382676325":"To continue trading with us, please submit your proof of income.","-1902997828":"Refresh now","-753791937":"A new version of Deriv is available","-1775108444":"This page will automatically refresh in 5 minutes to load the latest version.","-1175685940":"Please contact us via live chat to enable withdrawals.","-493564794":"Please complete your financial assessment.","-1125797291":"Password updated.","-157145612":"Please log in with your updated password.","-1728185398":"Resubmit proof of address","-612396514":"Please resubmit your proof of address.","-1519764694":"Your proof of address is verified.","-1629185222":"Submit now","-1961967032":"Resubmit proof of identity","-117048458":"Please submit your proof of identity.","-1196422502":"Your proof of identity is verified.","-1392958585":"Please check your email.","-136292383":"Your proof of address verification is pending","-386909054":"Your proof of address verification has failed","-430041639":"Your proof of address did not pass our verification checks, and we’ve placed some restrictions on your account. Please resubmit your proof of address.","-87177461":"Please go to your account settings and complete your personal details to enable deposits.","-904632610":"Reset your balance","-470018967":"Reset balance","-156611181":"Please complete the financial assessment in your account settings to unlock it.","-1925176811":"Unable to process withdrawals in the moment","-980696193":"Withdrawals are temporarily unavailable due to system maintenance. You can make withdrawals when the maintenance is complete.","-1647226944":"Unable to process deposit in the moment","-488032975":"Deposits are temporarily unavailable due to system maintenance. You can make deposits when the maintenance is complete.","-2136953532":"Scheduled cashier maintenance","-849587074":"You have not provided your tax identification number","-47462430":"This information is necessary for legal and regulatory requirements. Please go to your account settings, and fill in your latest tax identification number.","-2067423661":"Stronger security for your Deriv account","-1719731099":"With two-factor authentication, you’ll protect your account with both your password and your phone - so only you can access your account, even if someone knows your password.","-949074612":"Please contact us via live chat.","-2087822170":"You are offline","-1669693571":"Check your connection.","-1706642239":"<0>Proof of ownership <1>required","-553262593":"<0><1>Your account is currently locked <2><3>Please upload your proof of <4>ownership to unlock your account. <5>","-1834929362":"Upload my document","-1043638404":"<0>Proof of ownership <1>verification failed","-1766760306":"<0><1>Please upload your document <2>with the correct details. <3>","-8892474":"Start assessment","-1330929685":"Please submit your proof of identity and proof of address to verify your account and continue trading.","-99461057":"Please submit your proof of address to verify your account and continue trading.","-577279362":"Please submit your proof of identity to verify your account and continue trading.","-197134911":"Your proof of identity is expired","-152823394":"Your proof of identity has expired. Please submit a new proof of identity to verify your account and continue trading.","-822813736":"We're unable to complete with the Wallet upgrade. Please try again later or contact us via live chat.","-285366843":"We are going to update the login process for your Deriv MT5 account.","-978414767":"We require additional information for your Deriv MT5 account(s). Please take a moment to update your information now.","-482715448":"Go to Personal details","-2072411961":"Your proof of address has been verified","-384887227":"Update the address in your profile.","-1470677931":"CFDs on financial instruments.","-1595662064":"Zero spread CFDs on financial and derived instruments","-1998049070":"If you agree to our use of cookies, click on Accept. For more information, <0>see our policy.","-402093392":"Add Deriv Account","-1721181859":"You’ll need a {{deriv_account}} account","-1989074395":"Please add a {{deriv_account}} account first before adding a {{dmt5_account}} account. Deposits and withdrawals for your {{dmt5_label}} account are done by transferring funds to and from your {{deriv_label}} account.","-689237734":"Proceed","-1642457320":"Help centre","-1966944392":"Network status: {{status}}","-181484419":"Responsible trading","-650505513":"Full screen","-1823504435":"View notifications","-1954045170":"No currency assigned","-1591792668":"Account Limits","-34495732":"Regulatory information","-1323441180":"I hereby confirm that my request for opening an account with Deriv to trade OTC products issued and offered exclusively outside Brazil was initiated by me. I fully understand that Deriv is not regulated by CVM and by approaching Deriv I intend to set up a relation with a foreign company.","-1396326507":"Unfortunately, {{website_name}} is not available in your country.","-288996254":"Unavailable","-1308346982":"Derived","-1019903756":"Synthetic","-735306327":"Manage accounts","-1813972756":"Account creation paused for 24 hours","-366030582":"Sorry, you're unable to create an account at this time. As you declined our previous risk warnings, we need you to wait for 24 hours after your first account creation attempt before you can proceed.<0/><0/>","-534047566":"Thank you for your understanding. You can create your account on {{real_account_unblock_date}} or later.","-399816343":"Trading Experience Assessment<0/>","-1822498621":"As per our regulatory obligations, we are required to assess your trading knowledge and experience.<0/><0/>Please click ‘OK’ to continue","-71049153":"Keep your account secure with a password","-1861974537":"Strong passwords contain at least 8 characters, combine uppercase and lowercase letters, numbers, and symbols.","-1965920446":"Start trading","-1485242688":"Step {{step}}: {{step_title}} ({{step}} of {{steps}})","-1829842622":"You can open an account for each cryptocurrency.","-987221110":"Choose a currency you would like to trade with.","-1066574182":"Choose a currency","-1146960797":"Fiat currencies","-1914534236":"Choose your currency","-200560194":"Please switch to your {{fiat_currency}} account to change currencies.","-1829493739":"Choose the currency you would like to trade with.","-1814647553":"Add a new","-1269362917":"Add new","-650480777":"crypto account","-175638343":"Choose an account or add a new one","-1768223277":"Your account is ready","-1215717784":"<0>You have successfully changed your currency to {{currency}}.<0>Make a deposit now to start trading.","-1775006840":"Make a deposit now to start trading.","-983734304":"We need proof of your identity and address before you can start trading.","-917733293":"To get trading, please confirm where you live.","-1282628163":"You'll be able to get trading as soon as verification is complete.","-952649119":"Log In","-3815578":"Sign Up","-1456176427":"Set a currency for your real account","-1329687645":"Create a cryptocurrency account","-1429178373":"Create a new account","-1740162250":"Manage account","-1016775979":"Choose an account","-1362081438":"Adding more real accounts has been restricted for your country.","-1602122812":"24-hour Cool Down Warning","-1519791480":"CFDs and other financial instruments come with a high risk of losing money rapidly due to leverage. You should consider whether you understand how CFDs and other financial instruments work and whether you can afford to take the risk of losing your money. <0/><0/>\n As you have declined our previous warning, you would need to wait 24 hours before you can proceed further.","-1010875436":"CFDs and other financial instruments come with a high risk of losing money rapidly due to leverage. You should consider whether you understand how CFDs and other financial instruments work and whether you can afford to take the high risk of losing your money. <0/><0/> To continue, kindly note that you would need to wait 24 hours before you can proceed further.","-1725418054":"By clicking ‘Accept’ and proceeding with the account opening, you should note that you may be exposing yourself to risks. These risks, which may be significant, include the risk of losing the entire sum invested, and you may not have the knowledge and experience to properly assess or mitigate them.","-730377053":"You can’t add another real account","-2100785339":"Invalid inputs","-2061807537":"Something’s not right","-272953725":"Your details match an existing account. If you need help, contact us via <0>live chat.","-1534648620":"Your password has been changed","-596199727":"We will now redirect you to the login page.","-437918412":"No currency assigned to your account","-1193651304":"Country of residence","-707550055":"We need this to make sure our service complies with laws and regulations in your country.","-280139767":"Set residence","-601615681":"Select theme","-1152511291":"Dark","-1428458509":"Light","-1976089791":"Your Deriv account has been unlinked from your {{social_identity_provider}} account. You can now log in to Deriv using your new email address and password.","-505449293":"Enter a new password for your Deriv account.","-243732824":"Take me to Demo account","-1269078299":"I will setup my real account later.","-703818088":"Only log in to your account at this secure link, never elsewhere.","-1235799308":"Fake links often contain the word that looks like \"Deriv\" but look out for these differences.","-2102997229":"Examples","-82488190":"I've read the above carefully.","-97775019":"Do not trust and give away your credentials on fake websites, ads or emails.","-2142491494":"OK, got it","-611136817":"Beware of fake links.","-1342699195":"Total profit/loss:","-1941013000":"This complaints policy, which may change from time to time, applies to your account(s) registered with {{legal_entity_name_svg}}, {{legal_entity_name_fx}}, and {{legal_entity_name_v}}.","-594812204":"This complaints policy, which may change from time to time, applies to your account(s) registered with {{legal_entity_name_svg}}.","-813256361":"We are committed to treating our clients fairly and providing them with excellent service.<0/><1/>We would love to hear from you on how we can improve our services to you. Any information you provide will be treated in the strictest confidence. Rest assured that you will be heard, valued, and always treated fairly.","-1622847732":"If you have an inquiry regarding your trading account with {{legal_entity_name}}, you can contact us through our <0>Help centre or by chatting with a representative via <1>Live Chat.<2/><3/>We are committed to resolving your query in the quickest time possible and appreciate your patience in allowing us time to resolve the matter.<4/><5/>We strive to provide the best possible service and support to our customers. However, in the event that we are unable to resolve your query or if you feel that our response is unsatisfactory, we want to hear from you. We welcome and encourage you to submit an official complaint to us so that we can review your concerns and work towards a resolution.","-1406192787":"If you are not satisfied with the outcome, you can escalate your complaint to the <0>Financial Commission.","-2115348800":"1. Introduction","-744009523":"2. Fair treatment","-866831420":"3.1. Submission of a complaint","-1102904026":"3.2. Handling your complaint","-603378979":"3.3. Resolving your complaint","-697569974":"3.4. Your decision","-1280998762":"4. Complaints","-1886635232":"A complaint is any expression of dissatisfaction by a client regarding our products or services that requires a formal response.<0/><1/>If what you submit does not fall within the scope of a complaint, we may reclassify it as a query and forward it to the relevant department for handling. However, if you believe that your query should be classified as a complaint due to its relevance to the investment services provided by {{legal_entity_name}}, you may request that we reclassify it accordingly.","-1771496016":"To submit a complaint, please send an email to <0>complaints@deriv.com, providing as much detail as possible. To help us investigate and resolve your complaint more efficiently, please include the following information:","-1197243525":"<0>•A clear and detailed description of your complaint, including any relevant dates, times, and transactions","-1795134892":"<0>•Any relevant screenshots or supporting documentation that will assist us in understanding the issue","-2053887036":"4.4. Handling your complaint","-717170429":"Once we have received the details of your complaint, we shall review it carefully and keep you updated on the handling process. We might request further information or clarifications to facilitate the resolution of the complaint.","-1841922393":"4.5. Resolving your complaint","-1327119795":"4.6. Your decision","-2019654103":"If we are unable to resolve your complaint or you are not satisfied with the outcome, you can escalate your complaint to the Office of the Arbiter for Financial Services.<0/><1/><2>Filing complaints with the Office of the Arbiter for Financial Services","-687172857":"<0>•You may file a complaint with the Arbiter for Financial Services only if you are not satisfied with our decision or the decision wasn’t made within 15 business days.","-262934706":"<0>•If the complaint is accepted by the Arbiter, you will receive another email with further details relating to the payment of the €25 complaint fee and the processes that follow.","-993572476":"<0>b.The Financial Commission has 5 days to acknowledge that your complaint was received and 14 days to answer the complaint through our Internal Dispute Resolution (IDR) procedure.","-1769159081":"<0>c.You will be able to file a complaint with the Financial Commission only if you are not satisfied with our decision or the decision wasn’t made within 14 days.","-58307244":"3. Determination phase","-356618087":"<0>b.The DRC may request additional information from you or us, who must then provide the requested information within 7 days.","-945718602":"<0>b.If you agree with a DRC decision, you will need to accept it within 14 days. If you do not respond to the DRC decision within 14 days, the complaint is considered closed.","-1500907666":"<0>d.If the decision is made in our favour, you must provide a release for us within 7 days of when the decision is made, and the complaint will be considered closed.","-429248139":"5. Disclaimer","-818926350":"The Financial Commission accepts appeals for 45 days following the date of the incident and only after the trader has tried to resolve the issue with the company directly.","-1825471709":"A whole new trading experience on a powerful yet easy to use platform.","-981017278":"Automated trading at your fingertips. No coding needed.","-583559763":"Menu","-1685795001":"Demo Wallet","-319395348":"Looking for CFDs? Go to Trader’s Hub","-554054753":"Get started","-1364763296":"No need to remember a password","-1274467503":"Sync across devices","-2036288743":"Enhanced security with biometrics or screen lock ","-143216768":"Learn more about passkeys <0> here.","-778309978":"The link you clicked has expired. Ensure to click the link in the latest email in your inbox. Alternatively, enter your email below and click <0>Resend email for a new link.","-2007055538":"Information updated","-521477049":"We are going to update the login process for your Deriv MT5 account. Here is what you need to do when you want to log in via your MT5 mobile app starting from 7 February:","-749864644":"If you have trouble logging into your Deriv MT5 account, please follow this <0>guide.","-238296389":"Need help? Contact us via <0>live chat to assist you with any login questions.","-941870889":"The cashier is for real accounts only","-352838513":"It looks like you don’t have a real {{regulation}} account. To use the cashier, switch to your {{active_real_regulation}} real account, or get an {{regulation}} real account.","-1858915164":"Ready to deposit and trade for real?","-162753510":"Add real account","-1208519001":"You need a real Deriv account to access the cashier.","-715867914":"Successfully deposited","-1271218821":"Account added","-197631101":"Your funds will be available for trading once the verification of your account is complete.","-835056719":"We’ve received your documents","-55435892":"We’ll need 1 - 3 days to review your documents and notify you by email. You can practice with demo accounts in the meantime.","-1916578937":"<0>Explore the exciting new features that your Wallet offers.","-1724438599":"<0>You're almost there!","-1089300025":"We don’t charge deposit fees! Once your account is verified, you will be able to trade, make additional deposits, or withdraw funds.","-476018343":"Live Chat","-310434518":"The email input should not be empty.","-1471705969":"<0>{{title}}: {{trade_type_name}} on {{symbol}}","-1771117965":"Trade opened","-1856112961":"The URL you requested isn’t available","-304807228":"<0>You’re not logged in, or<0>Our services are unavailable in your country.","-1567989247":"Submit your proof of identity and address","-523602297":"Forex majors","-1303090739":"Up to 1:1500","-19213603":"Metals","-1264604378":"Up to 1:1000","-1728334460":"Up to 1:300","-646902589":"(US_30, US_100, US_500)","-705682181":"Malta","-1835174654":"1:30","-1647612934":"Spreads from","-1912437030":"about required verifications.","-466784048":"Regulator/EDR","-2098459063":"British Virgin Islands","-1326848138":"British Virgin Islands Financial Services Commission (License no. SIBA/L/18/1114)","-1711743223":"Forex (standard/micro), stocks, stock indices, commodities, cryptocurrencies and ETFs","-1372141447":"Straight-through processing","-1969608084":"Forex and Cryptocurrencies","-800771713":"Labuan Financial Services Authority (licence no. MB/18/0024)","-1497128311":"80+","-1689815930":"You will need to submit proof of identity and address once you reach certain thresholds.","-1175785439":"Deriv (SVG) LLC (company no. 273 LLC 2020)","-1344709651":"40+","-139026353":"A selfie of yourself.","-1228847561":"Verification in review.","-618322245":"Verification successful.","-149461870":"Forex: standard/exotic","-1995163270":"ETFs","-1220727671":"Standard - SVG","-865172869":"Financial - BVI","-1851765767":"Financial - Vanuatu","-558597854":"Financial - Labuan","-2052425142":"Swap-Free - SVG","-1192904361":"Deriv X Demo","-283929334":"Deriv cTrader Demo","-1269597956":"MT5 Platform","-1302404116":"Maximum leverage","-239789243":"(License no. SIBA/L/18/1114)","-941636117":"MetaTrader 5 Linux app","-1434036215":"Demo Financial","-659955365":"Swap-Free","-1416247163":"Financial STP","-1637969571":"Demo Swap-Free","-1882063886":"Demo CFDs","-1347908717":"Demo Financial SVG","-1780324582":"SVG","-860609405":"Password","-742647506":"Fund transfer","-712681566":"Peer-to-peer exchange","-1267880283":"{{field_name}} is required","-2084509650":"{{field_name}} is not properly formatted.","-790488576":"Forgot password?","-476558960":"If you don’t have open positions","-1385484963":"Confirm to change your {{platform}} password","-1990902270":"This will change the password to all of your {{platform}} accounts.","-12535938":"*Volatility 250 Index, Volatility 150 Index, Boom 300 and Crash 300 Index","-2104148631":"Commissions apply","-201485855":"Up to","-700260448":"demo","-1769158315":"real","-1922462747":"Trader's hub","-16858060":"You have a new Deriv MT5 password to log in to your Deriv MT5 accounts on the web and mobile apps.","-1868608634":"Current password","-2092058806":"8 to 16 characters","-2051033705":"A special character such as ( _ @ ? ! / # )","-1762249687":"A lowercase letter","-1123437857":"You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).","-535365199":"Enter your {{platform}} password to add a {{platform_name}} {{account}} account.","-184453418":"Enter your {{platform}} password","-393388362":"We’re reviewing your documents. This should take about 1 to 3 days.","-2057918502":"Hint: You may have entered your Deriv password, which is different from your {{platform}} password.","-267598687":"Congratulations, you have successfully created your <0/>{{category}} {{platform}} {{type}} account. To start trading, <1 />transfer funds <2 />from your Deriv account into this account.","-1475660820":"Your Deriv MT5 {{type}} account is ready. ","-1184248732":"Congratulations, you have successfully created your <0/>{{category}} {{platform}} {{type}} account. ","-1928229820":"Reset Deriv X investor password","-1969916895":"Your password must contain between 8-16 characters that include uppercase and lowercase letters, and at least one number and special character ( _ @ ? ! / # ).","-1087845020":"main","-1950683866":"investor","-1874242353":"Fund top up","-89838213":"You can top up your demo account with an additional <0> if your balance is <1> or less.","-1211122723":"{{ platform }} {{ account_title }} account","-78895143":"Current balance","-149993085":"New current balance","-1615126227":"Manage up to {{max_count}} Deriv cTrader accounts. While you can convert any of your Deriv cTrader accounts into a strategy account, please take note of the following:","-1547739386":"To ensure you can always create and manage strategies with fees, <0>keep at least one account free from being a strategy provider. This way, you’ll always have an account ready for collecting fees, allowing you to have up to four strategies where you may impose fees.","-2145356061":"Download Deriv X on your phone to trade with the Deriv X account","-1547458328":"Run cTrader on your browser","-747382643":"Get another cTrader account","-1986258847":"Server maintenance starts at 01:00 GMT every Sunday, and this process may take up to 2 hours to complete. Service may be disrupted during this time.","-499504077":"Choose a cTrader account to transfer","-251202291":"Broker","-678964540":"to","-206829624":"(1:x)","-616293830":"Enjoy dynamic leverage of <0>up to 1:1500 when trading selected instruments in the forex, commodities, cryptocurrencies, and stock indices markets. Our dynamic leverage adjusts automatically to your trading position, based on asset type and trading volume.","-2042845290":"Your investor password has been changed.","-1882295407":"Your password has been changed.","-254497873":"Use this password to grant viewing access to another user. While they may view your trading account, they will not be able to trade or take any other actions.","-161656683":"Current investor password","-374736923":"New investor password","-1793894323":"Create or reset investor password","-21438174":"Add your Deriv cTrader account under Deriv (SVG) LLC (company no. 273 LLC 2020).","-2026018074":"Add your Deriv MT5 <0>{{account_type_name}} account under Deriv (SVG) LLC (company no. 273 LLC 2020).","-162320753":"Add your Deriv MT5 <0>{{account_type_name}} account under Deriv (BVI) Ltd, regulated by the British Virgin Islands Financial Services Commission (License no. SIBA/L/18/1114).","-271828350":"Get more out of Deriv MT5 Financial","-2125860351":"Choose a jurisdiction for your Deriv MT5 CFDs account","-1460321521":"Choose a jurisdiction for your {{account_type}} account","-637537305":"Download {{ platform }} on your phone to trade with the {{ platform }} {{ account }} account","-964130856":"{{existing_account_title}}","-879259635":"Enter your Deriv MT5 password to upgrade your account(s).","-1504907646":"Deriv MT5 password","-361998267":"We've introduced additional password requirements to increase your account security. Your password should:","-996995493":"Be between 8 to 16 characters.","-219163415":"Contain at least one special character.","-1446636186":"By clicking on <0>Next you agree to move your {{platform}} {{type_1}} and {{type_2}} {{from_account}} account(s) under Deriv {{account_to_migrate}} Ltd’s <1>terms and conditions.","-1766387013":"Upgrade your MT5 account(s)","-990927225":"Enter your Deriv MT5 password","-1486399361":"Trade with MT5 mobile app","-301350824":"Note: Don't have the MT5 app? Tap the <0>Trade with MT5 mobile app button to download. Once you have\n installed the app, return to this screen and hit the same button to log in.","-648956272":"Use this password to log in to your Deriv X accounts on the web and mobile apps.","-1814308691":"Please click on the link in the email to change your {{platform}} password.","-2015785957":"Compare CFDs {{demo_title}} accounts","-81650212":"MetaTrader 5 web","-508045656":"Coming soon on IOS","-601303096":"Scan the QR code to download Deriv {{ platform }}.","-1357917360":"Web terminal","-1282933308":"Not {{barrier}}","-968190634":"Equals {{barrier}}","-1747377543":"Under {{barrier}}","-1386326276":"Barrier is a required field.","-1418742026":"Higher barrier must be higher than lower barrier.","-92007689":"Lower barrier must be lower than higher barrier.","-1095538960":"Please enter the start time in the format \"HH:MM\".","-1975910372":"Minute must be between 0 and 59.","-866277689":"Expiry time cannot be in the past.","-1455298001":"Now","-256210543":"Trading is unavailable at this time.","-1150099396":"We’re working to have this available for you soon. If you have another account, switch to that account to continue trading. You may add a Deriv MT5 Financial.","-28115241":"{{platform_name_trader}} is not available for this account","-453920758":"Go to {{platform_name_mt5}} dashboard","-402175529":"History","-1013917510":"The reset time is {{ reset_time }}","-925402280":"Indicative low spot","-1075414250":"High spot","-902712434":"Deal cancellation","-988484646":"Deal cancellation (executed)","-444882676":"Deal cancellation (active)","-13423018":"Reference ID","-1371082433":"Reset barrier","-1402197933":"Reset time","-2035315547":"Low barrier","-1745835713":"Selected tick","-1551639437":"No history","-1214703885":"You have yet to update either take profit or stop loss","-504849554":"It will reopen at","-59803288":"In the meantime, try our synthetic indices. They simulate real-market volatility and are open 24/7.","-1278109940":"See open markets","-694105443":"This market is closed","-104603605":"You cannot trade as your documents are still under review. We will notify you by email once your verification is approved.","-439389714":"We’re working on it","-770929448":"Go to {{platform_name_smarttrader}}","-347156282":"Submit Proof","-138538812":"Log in or create a free account to place a trade.","-2036388794":"Create free account","-1813736037":"No further trading is allowed on this contract type for the current trading session. For more info, refer to our <0>terms and conditions.","-1043795232":"Recent positions","-153220091":"{{display_value}} Tick","-802374032":"Hour","-663862998":"Markets","-1341681145":"When this is active, you can cancel your trade within the chosen time frame. Your stake will be returned without loss.","-2069438609":"No matches found","-97673874":"No closed trades","-1727419550":"Your closed trades will be shown here.","-225500551":"Entry & exit details","-993480898":"Accumulators","-123659792":"Vanillas","-1226595254":"Turbos","-922253974":"Rise/Fall","-1361254291":"Higher/Lower","-330437517":"Matches/Differs","-657360193":"Over/Under","-315741954":"{{amount}} trade types","-232254547":"Custom","-1251526905":"Last 7 days","-1539223392":"Last 90 days","-1913695340":"Order Details","-1882287418":"How do I earn a payout?","-2017825013":"Got it","-725670935":"Take profit and stop loss are unavailable while deal cancellation is enabled.","-1331298683":"Take profit can’t be adjusted for ongoing accumulator contracts.","-99964540":"When your profit reaches or exceeds the set amount, your trade will be closed automatically.","-1052279158":"Your <0>payout is the sum of your initial stake and profit.","-274058583":"<0>Take profit is an additional feature that lets you manage your risk by automatically closing the trade when your profit reaches the target amount. This feature is unavailable for ongoing accumulator contracts.","-1819891401":"You can close your trade anytime. However, be aware of <0>slippage risk.","-231957809":"Win maximum payout if the exit spot is higher than or equal to the upper barrier.","-464144986":"Win maximum payout if the exit spot is lower than or equal to the lower barrier.","-1031456093":"Win up to maximum payout if exit spot is between lower and upper barrier, in proportion to the difference between upper barrier and exit spot.","-968162707":"No payout if exit spot is above or equal to the upper barrier.","-2089488446":"If you select \"Ends Between\", you win the payout if the exit spot is strictly higher than the Low barrier AND strictly lower than the High barrier.","-1876950330":"If you select \"Ends Outside\", you win the payout if the exit spot is EITHER strictly higher than the High barrier, OR strictly lower than the Low barrier.","-546460677":"If the exit spot is equal to either the Low barrier or the High barrier, you don't win the payout.","-1929209278":"If you select \"Even\", you will win the payout if the last digit of the last tick is an even number (i.e., 2, 4, 6, 8, or 0).","-2038865615":"If you select \"Odd\", you will win the payout if the last digit of the last tick is an odd number (i.e., 1, 3, 5, 7, or 9).","-1959473569":"If you select \"Lower\", you win the payout if the exit spot is strictly lower than the barrier.","-1350745673":"If the exit spot is equal to the barrier, you don't win the payout.","-93996528":"By purchasing the \"Close-to-Low\" contract, you'll win the multiplier times the difference between the close and low over the duration of the contract.","-420387848":"The high is the highest point ever reached by the market during the contract period.","-1722190480":"By purchasing the \"High-to-Low\" contract, you'll win the multiplier times the difference between the high and low over the duration of the contract.","-1281286610":"If you select \"Matches\", you will win the payout if the last digit of the last tick is the same as your prediction.","-618782785":"Use multipliers to leverage your potential returns. Predict if the asset price will move upward (bullish) or downward (bearish). We’ll charge a commission when you open a multipliers trade.","-565391674":"If you select \"<0>Up\", your total profit/loss will be the percentage increase in the underlying asset price, times the multiplier and stake, minus commissions.","-1113825265":"Additional features are available to manage your positions: “<0>Take profit” and “<0>Stop loss” allow you to adjust your level of risk aversion.","-1104397398":"Additional features are available to manage your positions: “<0>Take profit”, “<0>Stop loss” and “<0>Deal cancellation” allow you to adjust your level of risk aversion.","-1272255095":"If the exit spot is equal to the barrier or the new barrier (if a reset occurs), you don't win the payout.","-1392065699":"If you select \"Rise\", you win the payout if the exit spot is strictly higher than the entry spot.","-1762566006":"If you select \"Fall\", you win the payout if the exit spot is strictly lower than the entry spot.","-1435306976":"If you select \"Allow equals\", you win the payout if exit spot is higher than or equal to entry spot for \"Rise\". Similarly, you win the payout if exit spot is lower than or equal to entry spot for \"Fall\".","-1812957362":"If you select \"Stays Between\", you win the payout if the market stays between (does not touch) either the High barrier or the Low barrier at any time during the contract period","-220379757":"If you select \"Goes Outside\", you win the payout if the market touches either the High barrier or the Low barrier at any time during the contract period.","-299450697":"If you select \"High Tick\", you win the payout if the selected tick is the highest among the next five ticks.","-1416078023":"If you select \"Touch\", you win the payout if the market touches the barrier at any time during the contract period.","-1565216130":"If you select <0>\"Up\", you’ll earn a payout if the spot price never drops below the barrier.","-1336860323":"If you select <0>\"Down\", you’ll earn a payout if the spot price never rises above the barrier.","-1547935605":"Your payout is equal to the <0>payout per point multiplied by the difference between the <0>final price and the barrier. You will only earn a profit if your payout is higher than your initial stake.","-1307465836":"You may sell the contract up to 15 seconds before expiry. If you do, we’ll pay you the <0>contract value.","-351875097":"Number of ticks","-729830082":"View less","-1649593758":"Trade info","-1382749084":"Go back to trading","-1239477911":"second","-1585766960":"min","-1652791614":"mins","-1977959027":"hours","-442488432":"day","-337314714":"days","-1435392215":"About deal cancellation","-1192773792":"Don't show this again","-471757681":"Risk management","-843831637":"Stop loss","-771725194":"Deal Cancellation","-1669741470":"The payout at expiry is equal to the payout per point multiplied by the difference between the final price and the strike price.","-2131851017":"Growth rate","-1422269966":"You can choose a growth rate with values of 1%, 2%, 3%, 4%, and 5%.","-1186791513":"Payout is the sum of your initial stake and profit.","-1682624802":"It is a percentage of the previous spot price. The percentage rate is based on your choice of the index and the growth rate.","-468501352":"If you select this feature, your trade will be closed automatically at the nearest available asset price when your profit reaches or exceeds the take profit amount. Your profit may be more than the amount you entered depending on the market price at closing.","-1186082278":"Your payout is equal to the payout per point multiplied by the difference between the final price and barrier.","-584445859":"This is when your contract will expire based on the duration or end time you’ve selected. If the duration is more than 24 hours, the cut-off time and expiry date will apply instead.","-1221049974":"Final price","-1247327943":"This is the spot price of the last tick at expiry.","-1890561510":"Cut-off time","-878534036":"If you select \"Call\", you’ll earn a payout if the final price is above the strike price at expiry. Otherwise, you won’t receive a payout.","-1587076792":"If you select \"Put\", you’ll earn a payout if the final price is below the strike price at expiry. Otherwise, you won’t receive a payout.","-1482134885":"We calculate this based on the strike price and duration you’ve selected.","-565990678":"Your contract will expire on this date (in GMT), based on the End time you’ve selected.","-1545819495":"Your trade will be closed automatically at the nearest available asset price when your loss reaches a certain percentage of your stake, but your loss never exceeds your stake. This percentage depends on the chosen underlying asset and the Multiplier.","-477936848":"We use next-tick-execution mechanism, which is the next asset price when the trade opening is processed by our servers.","-1476381873":"The latest asset price when the trade closure is processed by our servers.","-148680560":"Spot price of the last tick upon reaching expiry.","-1123926839":"Contracts will expire at exactly 14:00:00 GMT on your selected expiry date.","-1904828224":"We’ll offer to buy your contract at this price should you choose to sell it before its expiry. This is based on several factors, such as the current spot price, duration, etc. However, we won’t offer a contract value if the remaining duration is below 24 hours.","-127118348":"Choose {{contract_type}}","-543478618":"Try checking your spelling or use a different term","-338707425":"Minimum duration is 1 day","-1003473648":"Duration: {{duration}} day","-700280380":"Deal cancel. fee","-8998663":"Digit: {{last_digit}} ","-718750246":"Your stake will grow at {{growth_rate}}% per tick as long as the current spot price remains within ±{{tick_size_barrier_percentage}} from the previous spot price.","-1358367903":"Stake","-542594338":"Max. payout","-690963898":"Your contract will be automatically closed when your payout reaches this amount.","-511541916":"Your contract will be automatically closed upon reaching this number of ticks.","-438655760":"<0>Note: You can close your trade anytime. Be aware of slippage risk.","-774638412":"Stake must be between {{min_stake}} {{currency}} and {{max_stake}} {{currency}}","-434270664":"Current Price","-1956787775":"Barrier Price:","-1513281069":"Barrier 2","-390994177":"Should be between {{min}} and {{max}}","-1231210510":"Tick","-2055106024":"Toggle between advanced and simple duration settings","-1012793015":"End time","-1804019534":"Expiry: {{date}}","-2037881712":"Your contract will be closed automatically at the next available asset price on <0>.","-629549519":"Commission <0/>","-2131859340":"Stop out <0/>","-1686280757":"<0>{{commission_percentage}}% of (<1/> * {{multiplier}})","-732683018":"When your profit reaches or exceeds this amount, your trade will be closed automatically.","-989393637":"Take profit can't be adjusted after your contract starts.","-339236213":"Multiplier","-1763848396":"Put","-194424366":"above","-857660728":"Strike Prices","-1346404690":"You receive a payout at expiry if the spot price never touches or breaches the barrier throughout the contract duration. Otherwise, your contract will be terminated early.","-1572548510":"Ups & Downs","-71301554":"Ins & Outs","-952298801":"Look Backs","-763273340":"Digits","-2002533437":"Custom function","-215053350":"with:","-1257232389":"Specify a parameter name:","-1885742588":"with: ","-188442606":"function {{ function_name }} {{ function_params }} {{ dummy }}","-313112159":"This block is similar to the one above, except that this returns a value. The returned value can be assigned to a variable of your choice.","-1783320173":"Prematurely returns a value within a function","-1485521724":"Conditional return","-1482801393":"return","-46453136":"get","-1838027177":"first","-1182568049":"Get list item","-1675454867":"This block gives you the value of a specific item in a list, given the position of the item. It can also remove the item from the list.","-381501912":"This block creates a list of items from an existing list, using specific item positions.","-426766796":"Get sub-list","-1679267387":"in list {{ input_list }} find {{ first_or_last }} occurence of item {{ input_value }}","-2087996855":"This block gives you the position of an item in a given list.","-422008824":"Checks if a given list is empty","-1343887675":"This block checks if a given list is empty. It returns “True” if the list is empty, “False” if otherwise.","-1548407578":"length of {{ input_list }}","-1786976254":"This block gives you the total number of items in a given list.","-2113424060":"create list with item {{ input_item }} repeated {{ number }} times","-1955149944":"Repeat an item","-434887204":"set","-197957473":"as","-851591741":"Set list item","-1874774866":"ascending","-1457178757":"Sorts the items in a given list","-350986785":"Sort list","-324118987":"make text from list","-155065324":"This block creates a list from a given string of text, splitting it with the given delimiter. It can also join items in a list into a string of text.","-459051222":"Create list from text","-977241741":"List Statement","-451425933":"{{ break_or_continue }} of loop","-323735484":"continue with next iteration","-1592513697":"Break out/continue","-713658317":"for each item {{ variable }} in list {{ input_list }}","-1825658540":"Iterates through a given list","-952264826":"repeat {{ number }} times","-887757135":"Repeat (2)","-1608672233":"This block is similar to the block above, except that the number of times it repeats is determined by a given variable.","-533154446":"Repeat (1)","-1059826179":"while","-1893063293":"until","-279445533":"Repeat While/Until","-1003706492":"User-defined variable","-359097473":"set {{ variable }} to {{ value }}","-1588521055":"Sets variable value","-980448436":"Set variable","-1538570345":"Get the last trade information and result, then trade again.","-222725327":"Here is where you can decide if your bot should continue trading.","-1638446329":"Result is {{ win_or_loss }}","-1968029988":"Last trade result","-1588406981":"You can check the result of the last trade with this block.","-1459154781":"Contract Details: {{ contract_detail }}","-1652241017":"Reads a selected property from contract details list","-985351204":"Trade again","-2082345383":"These blocks transfer control to the Purchase conditions block.","-172574065":"This block will transfer the control back to the Purchase conditions block, enabling you to purchase another contract.","-403103225":"restart","-837044282":"Ask Price {{ contract_type }}","-1033917049":"This block returns the purchase price for the selected trade type.","-1863737684":"2. Purchase conditions","-228133740":"Specify contract type and purchase conditions.","-1098726473":"This block is mandatory. Only one copy of this block is allowed. You can place the Purchase block (see below) here as well as conditional blocks to define your purchase conditions.","-1777988407":"Payout {{ contract_type }}","-511116341":"This block returns the potential payout for the selected trade type","-1943211857":"Potential payout","-1738427539":"Purchase","-813464969":"buy","-53668380":"True if active contract can be sold before expiration at current market price","-43337012":"Sell profit/loss","-2112866691":"Returns the profit/loss from selling at market price","-2132417588":"This block gives you the potential profit or loss if you decide to sell your contract.","-1360483055":"set {{ variable }} to Bollinger Bands {{ band_type }} {{ dummy }}","-20542296":"Calculates Bollinger Bands (BB) from a list with a period","-1951109427":"Bollinger Bands (BB)","-857226052":"BB is a technical analysis indicator that’s commonly used by traders. The idea behind BB is that the market price stays within the upper and lower bands for 95% of the time. The bands are the standard deviations of the market price, while the line in the middle is a simple moving average line. If the price reaches either the upper or lower band, there’s a possibility of a trend reversal.","-325196350":"set {{ variable }} to Bollinger Bands Array {{ band_type }} {{ dummy }}","-199689794":"Similar to BB. This block gives you a choice of returning the values of either the lower band, higher band, or the SMA line in the middle.","-920690791":"Calculates Exponential Moving Average (EMA) from a list with a period","-960641587":"EMA is a type of moving average that places more significance on the most recent data points. It’s also known as the exponentially weighted moving average. EMA is different from SMA in that it reacts more significantly to recent price changes.","-1557584784":"set {{ variable }} to Exponential Moving Average Array {{ dummy }}","-32333344":"Calculates Moving Average Convergence Divergence (MACD) from a list","-628573413":"MACD is calculated by subtracting the long-term EMA (26 periods) from the short-term EMA (12 periods). If the short-term EMA is greater or lower than the long-term EMA than there’s a possibility of a trend reversal.","-1133676960":"Fast EMA Period {{ input_number }}","-883166598":"Period {{ input_period }}","-450311772":"set {{ variable }} to Relative Strength Index {{ dummy }}","-1861493523":"Calculates Relative Strength Index (RSI) list from a list of values with a period","-880048629":"Calculates Simple Moving Average (SMA) from a list with a period","-1150972084":"Market direction","-276935417":"This block is used to determine if the market price moves in the selected direction or not. It gives you a value of “True” or “False”.","-764931948":"in candle list get # from end {{ input_number }}","-924607337":"Returns the last digit of the latest tick","-560033550":"Returns the list of last digits of 1000 recent tick values","-74062476":"Make a List of {{ candle_property }} values in candles list with interval: {{ candle_interval_type }}","-1556495906":"Returns a list of specific values from a candle list according to selected time interval","-166816850":"Create a list of candle values (1)","-1261436901":"Candles List","-1174859923":"Read the selected candle value","-1972165119":"Read candle value (1)","-1956100732":"You can use this block to analyze the ticks, regardless of your trades","-443243232":"The content of this block is called on every tick. Place this block outside of any root block.","-641399277":"Last Tick","-1628954567":"Returns the value of the last tick","-1332756793":"This block gives you the value of the last tick.","-2134440920":"Last Tick String","-1466340125":"Tick value","-467913286":"Tick value Description","-785831237":"This block gives you a list of the last 1000 tick values.","-1546430304":"Tick List String Description","-1788626968":"Returns \"True\" if the given candle is black","-436010611":"Make a list of {{ candle_property }} values from candles list {{ candle_list }}","-1384340453":"Returns a list of specific values from a given candle list","-584859539":"Create a list of candle values (2)","-2010558323":"Read {{ candle_property }} value in candle {{ input_candle }}","-2846417":"This block gives you the selected candle value.","-1587644990":"Read candle value (2)","-1202212732":"This block returns account balance","-1737837036":"Account balance","-1963883840":"Put your blocks in here to prevent them from being removed","-1284013334":"Use this block if you want some instructions to be ignored when your bot runs. Instructions within this block won’t be executed.","-1217253851":"Log","-1987568069":"Warn","-104925654":"Console","-1956819233":"This block displays messages in the developer's console with an input that can be either a string of text, a number, boolean, or an array of data.","-1450461842":"Load block from URL: {{ input_url }}","-1088614441":"Loads blocks from URL","-1747943728":"Loads from URL","-2105753391":"Notify Telegram {{ dummy }} Access Token: {{ input_access_token }} Chat ID: {{ input_chat_id }} Message: {{ input_message }}","-1008209188":"Sends a message to Telegram","-1218671372":"Displays a notification and optionally play selected sound","-2099284639":"This block gives you the total profit/loss of your trading strategy since your bot started running. You can reset this by clicking “Clear stats” on the Transaction Stats window, or by refreshing this page in your browser.","-683825404":"Total Profit String","-718220730":"Total Profit String Description","-1861858493":"Number of runs","-264195345":"Returns the number of runs","-303451917":"This block gives you the total number of times your bot has run. You can reset this by clicking “Clear stats” on the Transaction Stats window, or by refreshing this page in your browser.","-2132861129":"Conversion Helper Block","-74095551":"Seconds Since Epoch","-15528039":"Returns the number of seconds since January 1st, 1970","-729807788":"This block returns the number of seconds since January 1st, 1970.","-1370107306":"{{ dummy }} {{ stack_input }} Run after {{ number }} second(s)","-558838192":"Delayed run","-1975250999":"This block converts the number of seconds since the Unix Epoch (1 January 1970) into a string of text representing the date and time.","-702370957":"Convert to date/time","-982729677":"Convert to timestamp","-311268215":"This block converts a string of text that represents the date and time into seconds since the Unix Epoch (1 January 1970). The time and time zone offset are optional. Example: 2019-01-01 21:03:45 GMT+0800 will be converted to 1546347825.","-1797602591":"Stop Loss: {{ currency }} {{ stop_loss }}","-1374685318":"Your contract is closed automatically when your loss is more than or equals to this amount. This block can only be used with the multipliers trade type.","-1214929127":"Stop loss must be a positive number.","-780745489":"If the contract type is “Both”, then the Purchase Conditions should include both Rise and Fall using the “Conditional Block\"","-2142851225":"Multiplier trade options","-625636913":"Amount must be a positive number.","-1466383897":"Duration: {{ duration_unit }} {{ duration_value }}","-440702280":"Trade options","-1193894978":"Define your trade options such as duration and stake. Some options are only applicable for certain trade types.","-46523443":"Duration value is not allowed. To run the bot, please enter a value between {{min}} to {{max}}.","-1483427522":"Trade Type: {{ trade_type_category }} > {{ trade_type }}","-323348124":"1. Trade parameters","-1671903503":"Run once at start:","-783173909":"Trade options:","-376956832":"Here is where you define the parameters of your contract.","-1244007240":"if {{ condition }} then","-1577206704":"else if","-33796979":"true","-1434883449":"This is a single block that returns a boolean value, either true or false.","-1946404450":"Compares two values","-979918560":"This block converts the boolean value (true or false) to its opposite.","-2047257743":"Null","-1274387519":"Performs selected logic operation","-766386234":"This block performs the \"AND\" or the \"OR\" logic operation.","-790995537":"test {{ condition }}","-1860211657":"if false {{ return_value }}","-1643760249":"This block tests if a given value is true or false and returns “True” or “False” accordingly.","-1551875333":"Test value","-52486882":"Arithmetical operations","-1010436425":"This block adds the given number to the selected variable","-999773703":"Change variable","-1272091683":"Mathematical constants","-1396629894":"constrain {{ number }} low {{ low_number }} high {{ high_number }}","-425224412":"This block constrains a given number so that it is within a set range.","-2072551067":"Constrain within a range","-43523220":"remainder of {{ number1 }} ÷ {{ number2 }}","-1291857083":"Returns the remainder after a division","-592154850":"Remainder after division","-736665095":"Returns the remainder after the division of the given numbers.","-1266992960":"Math Number Description","-77191651":"{{ number }} is {{ type }}","-817881230":"even","-142319891":"odd","-1000789681":"whole","-1735674752":"Test a number","-1017805068":"This block tests a given number according to the selection and it returns a value of “True” or “False”. Available options: Even, Odd, Prime, Whole, Positive, Negative, Divisible","-1858332062":"Number","-1053492479":"Enter an integer or fractional number into this block. Please use `.` as a decimal separator for fractional numbers.","-927097011":"sum","-1653202295":"max","-1555878023":"average","-1748351061":"mode","-992067330":"Aggregate operations","-1691561447":"This block gives you a random fraction between 0.0 to 1.0","-523625686":"Random fraction number","-933024508":"Rounds a given number to an integer","-1656927862":"This block rounds a given number according to the selection: round, round up, round down.","-1495304618":"absolute","-61210477":"Operations on a given number","-181644914":"This block performs the selected operations to a given number.","-840732999":"to {{ variable }} append text {{ input_text }}","-1469497908":"Appends a given text to a variable","-1851366276":"Text Append","-1666316828":"Appends a given text to a variable.","-1902332770":"Transform {{ input_text }} to {{ transform_type }}","-1489004405":"Title Case","-904432685":"Changes text case accordingly","-882381096":"letter #","-1027605069":"letter # from end","-2066990284":"random letter","-337089610":"in text {{ input_text1 }} find {{ first_or_last }} occurence of text {{ input_text2 }}","-1966694141":"Searches through a string of text for a specific occurrence of a given character or word, and returns the position.","-697543841":"Text join","-141160667":"length of {{ input_text }}","-1133072029":"Text String Length","-1109723338":"print {{ input_text }}","-736668830":"Print","-1631669591":"string","-1768939692":"number","-1821552998":"trim spaces from {{ side }} of {{ input_text }}","-801766026":"right side","-474779821":"Trims spaces","-1687036846":"Download block","-1266781295":"Expand","-894560707":"function","-1867119688":"Duplicate","-610728049":"Rearrange Vertically","-2033146714":"Collapse All Blocks","-958601558":"Delete Block","-1193267384":"Detach Block","-1750478127":"New variable name","-1061878051":"Y","-2047029150":"Unable to load the block file.","-1410769167":"Target must be an XML file","-609157479":"This URL is already loaded","-241945454":"Proposals are not ready","-1087890592":"Maximum loss amount reached","-1030545878":"You are rate limited for: {{ message_type }}, retrying in {{ delay }}s (ID: {{ request }})","-490766438":"You are disconnected, retrying in {{ delay }}s","-1389975609":"unknown","-1900515692":"Duration must be a positive integer","-245297595":"Please login","-1445046468":"Given candle is not valid","-1891622945":"{{hourPast}}h ago","-1919680487":"workspace","-1703118772":"The {{block_type}} block is misplaced from {{missing_space}}.","-1785726890":"purchase conditions","-461955353":"purchase price","-172348735":"profit","-1624674721":"contract type","-1644154369":"entry spot time","-510792478":"entry spot price","-1974651308":"exit spot time","-1600267387":"exit spot price","-514917720":"barrier","-1072292603":"No Change","-795152863":"green","-1640576332":"blue","-804983649":"yellow","-94281841":"red","-1242470654":"Earned money","-841561409":"Put Spread","-1429914047":"Low","-1893628957":"Open Time","-1896106455":"10 minutes","-999492762":"15 minutes","-1978767852":"30 minutes","-293628675":"1 hour","-385604445":"2 hours","-1965813351":"4 hours","-525321833":"1 day","-1691868913":"Touch/No Touch","-151151292":"Asians","-1048378719":"Reset Call/Reset Put","-1282312809":"High/Low Ticks","-1237186896":"Only Ups/Only Downs","-529846150":"Seconds","-1635771697":"middle","-1529389221":"Histogram","-1819860668":"MACD","-1750896349":"D'Alembert","-102980621":"The Oscar's Grind Strategy is a low-risk positive progression strategy that first appeared in 1965. By using this strategy, the size of your contract will increase after successful trades, but remains unchanged after unsuccessful trades.","-462715374":"Untitled Bot","-280147477":"All transactions","-137444201":"Buy","-130601012":"Please select duration","-1577570698":"Start date","-1904030160":"Transaction performed by (App ID: {{app_id}})","-1876891031":"Currency","-513103225":"Transaction time","-2066666313":"Credit/Debit","-1981004241":"Sell time","-1196431745":"Contract cost","-3423966":"Take profit<0 />Stop loss","-1131753095":"The {{trade_type_name}} contract details aren't currently available. We're working on making them available soon.","-360975483":"You've made no transactions of this type during this period.","-335816381":"Ends In/Ends Out","-1789807039":"Asian Up/Asian Down","-558031309":"High Tick/Low Tick","-447037544":"Buy price:","-737348236":"Contract cost:","-1694314813":"Contract value:","-113940416":"Current stake:","-1999539705":"Deal cancel. fee:","-155989831":"Decrement value","-338379841":"Indicative price:","-2027409966":"Initial stake:","-1769852749":"N/A","-726626679":"Potential profit/loss:","-1511825574":"Profit/Loss:","-499175967":"Strike Price","-2082644096":"Current stake","-706219815":"Indicative price","-1669418686":"AUD/CAD","-1548588249":"AUD/CHF","-1552890620":"AUD/JPY","-681231560":"AUD/PLN","-64938413":"AUD/USD","-1430522808":"EUR/AUD","-2020477069":"EUR/CAD","-1201853162":"EUR/CHF","-1318070255":"EUR/GBP","-1197505739":"EUR/JPY","-405907358":"EUR/USD","-1536293064":"NZD/JPY","-79700881":"NZD/USD","-642323838":"USD/CAD","-428199705":"USD/CHF","-424108348":"USD/JPY","-548255282":"USD/NOK","-1834131208":"USD/PLN","-524302516":"Silver/USD","-764731776":"Platinum/USD","-853582174":"France 40","-1096386695":"UK 100","-617646862":"Germany 40","-2077690248":"Japan 225","-512194910":"US Tech 100","-381746202":"US 500","-1935463381":"Swiss 20","-1941767726":"Euro 50","-1925264914":"Volatility 25 Index","-708579504":"Volatility 50 Index","-975255670":"Volatility 75 Index","-1736314513":"Crash 300 Index","-342128411":"Crash 500 Index","-9704319":"Crash 1000 Index","-465860988":"Bull Market Index","-390528194":"Step Index","-280323742":"EUR Basket","-563812039":"Volatility 10 (1s) Index","-82971929":"Volatility 25 (1s) Index","-433962508":"Volatility 75 (1s) Index","-764111252":"Volatility 100 (1s) Index","-816110209":"Volatility 150 (1s) Index","-1374309449":"Volatility 200 (1s) Index","-1288044380":"Volatility 250 (1s) Index","-1164978320":"Jump 10 Index","-575272887":"BCH/USD","-295406873":"BTC/ETH","-1713556301":"ZMR/USD","-2046638412":"XRP/USD","-1263203461":"BTC/USD","-1112522776":"DSH/USD","-460689370":"LTC/USD","-132112961":"Sharkfin","-1715390759":"I want to do this later","-56163366":"I don't have any of these","-175164838":"{{seconds_passed}}s ago","-514136557":"{{minutes_passed}}m ago","-1420737287":"{{hours_passed}}h ago","-2092611555":"Sorry, this app is unavailable in your current location.","-1488537825":"If you have an account, log in to continue.","-1603581277":"minutes","-886317740":"The <0>date of birth on your identity document doesn't match your profile.","-1606307809":"We were unable to verify the identity document with the details provided.","-475787720":"The verification status was empty, rejected for lack of information.","-1627868670":"Your identity document has expired.","-1302288704":"The document’s owner is deceased.","-895884696":"The <0>name and <0>date of birth on your identity document don't match your profile.","-1231856133":"The verification status is not available, provider says: Needs Technical Investigation.","-433687715":"For enhanced security, we need to reverify your identity. Kindly resubmit your proof of identity to unlock your account.","-1637538521":"Your document appears to be invalid.","-876579004":"The name on your document doesn’t match your profile.","-746520172":"Some details on your document appear to be invalid, missing, or unclear.","-2146200521":"The serial number of your document couldn’t be verified.","-1945323197":"Your document appears to be in black and white. Please upload a colour photo of your document.","-631393256":"Your document contains markings or text that should not be on your document.","-609103016":"The image quality of your document is too low. Please provide a hi-res photo of your identity document.","-530935718":"We’re unable to verify the document you provided because some details appear to be missing. Please try again or provide another document.","-1027031626":"We’re unable to verify the document you provided because it appears to be damaged. Please try again or upload another document.","-1671621833":"The front of your document appears to be missing. Please provide both sides of your identity document.","-727588232":"Your document appears to be a scanned copy that contains markings or text that shouldn’t be on your document.","-1435064387":"Your document appears to be a printed copy.","-624316211":"Your document appears to be a photo of a device screen.","-1714959941":"This chart display is not ideal for tick contracts","-1254554534":"Please change the chart duration to tick for a better trading experience.","-1658230823":"Contract was sold for <0 />.","-1905867404":"Contract cancelled"} \ No newline at end of file diff --git a/packages/translations/src/translations/ach.json b/packages/translations/src/translations/ach.json index f9821b922a65..56573ab8eaee 100644 --- a/packages/translations/src/translations/ach.json +++ b/packages/translations/src/translations/ach.json @@ -141,6 +141,7 @@ "151646545": "crwdns1259149:0{{name}}crwdne1259149:0", "152415091": "crwdns1259151:0crwdne1259151:0", "152524253": "crwdns1259153:0crwdne1259153:0", + "153485708": "crwdns5766518:0crwdne5766518:0", "157593038": "crwdns1259155:0{{ start_number }}crwdnd1259155:0{{ end_number }}crwdne1259155:0", "157871994": "crwdns2738409:0crwdne2738409:0", "158355408": "crwdns2783059:0crwdne2783059:0", @@ -293,6 +294,7 @@ "313741895": "crwdns1259391:0crwdne1259391:0", "315306603": "crwdns1259393:0crwdne1259393:0", "316694303": "crwdns1259395:0crwdne1259395:0", + "318705408": "crwdns5766520:0crwdne5766520:0", "318865860": "crwdns1259399:0crwdne1259399:0", "318984807": "crwdns1259401:0crwdne1259401:0", "321457615": "crwdns2783105:0crwdne2783105:0", @@ -320,6 +322,7 @@ "344418897": "crwdns1259441:0{{brand_website_name}}crwdne1259441:0", "345320063": "crwdns1259443:0crwdne1259443:0", "345818851": "crwdns2154555:0crwdne2154555:0", + "346070861": "crwdns5766522:0crwdne5766522:0", "346843343": "crwdns5285608:0crwdne5285608:0", "347029309": "crwdns1259447:0crwdne1259447:0", "347039138": "crwdns1259449:0crwdne1259449:0", @@ -897,7 +900,6 @@ "947758334": "crwdns1260361:0crwdne1260361:0", "947914894": "crwdns1260363:0crwdne1260363:0", "948156236": "crwdns1260365:0{{type}}crwdne1260365:0", - "948176566": "crwdns2886859:0crwdne2886859:0", "949859957": "crwdns1260369:0crwdne1260369:0", "951404247": "crwdns5018722:0crwdne5018722:0", "952927527": "crwdns1260371:0crwdne1260371:0", @@ -921,6 +923,7 @@ "975747761": "crwdns5554036:0crwdne5554036:0", "975950139": "crwdns1260399:0crwdne1260399:0", "977929335": "crwdns1260401:0crwdne1260401:0", + "979713491": "crwdns5766524:0crwdne5766524:0", "980050614": "crwdns3228674:0crwdne3228674:0", "981138557": "crwdns1260403:0crwdne1260403:0", "981568830": "crwdns1774587:0{{exclude_until}}crwdne1774587:0", @@ -1672,6 +1675,7 @@ "1722056905": "crwdns3645026:0crwdne3645026:0", "1722888575": "crwdns4642922:0{{mt5_migration_error}}crwdne4642922:0", "1723069433": "crwdns3172792:0crwdne3172792:0", + "1723390945": "crwdns5766526:0{{deriv}}crwdnd5766526:0{{type}}crwdne5766526:0", "1723589564": "crwdns1261557:0crwdne1261557:0", "1724367774": "crwdns3708364:0crwdne3708364:0", "1724696797": "crwdns1261559:0crwdne1261559:0", @@ -2031,6 +2035,7 @@ "2049386104": "crwdns2154511:0crwdne2154511:0", "2050170533": "crwdns69622:0crwdne69622:0", "2051558666": "crwdns165841:0crwdne165841:0", + "2051596653": "crwdns5766528:0crwdne5766528:0", "2052022586": "crwdns4642902:0crwdne4642902:0", "2054889300": "crwdns89398:0%1crwdne89398:0", "2055317803": "crwdns156510:0crwdne156510:0", @@ -3259,8 +3264,8 @@ "-328128497": "crwdns118044:0crwdne118044:0", "-533935232": "crwdns838638:0crwdne838638:0", "-565431857": "crwdns838640:0crwdne838640:0", - "-659955365": "crwdns2080547:0crwdne2080547:0", "-291535132": "crwdns2080553:0crwdne2080553:0", + "-499019612": "crwdns5766530:0crwdne5766530:0", "-1472945832": "crwdns2080555:0crwdne2080555:0", "-144803045": "crwdns117876:0{{permitted_characters}}crwdne117876:0", "-1450516268": "crwdns81089:0crwdne81089:0", @@ -3366,6 +3371,7 @@ "-2072411961": "crwdns1490913:0crwdne1490913:0", "-384887227": "crwdns1490915:0crwdne1490915:0", "-1470677931": "crwdns5285638:0crwdne5285638:0", + "-1595662064": "crwdns5766532:0crwdne5766532:0", "-1998049070": "crwdns123964:0crwdne123964:0", "-402093392": "crwdns838642:0crwdne838642:0", "-1721181859": "crwdns123966:0{{deriv_account}}crwdne123966:0", @@ -3552,6 +3558,7 @@ "-239789243": "crwdns2886887:0crwdne2886887:0", "-941636117": "crwdns838746:0crwdne838746:0", "-1434036215": "crwdns170790:0crwdne170790:0", + "-659955365": "crwdns2080547:0crwdne2080547:0", "-1416247163": "crwdns118046:0crwdne118046:0", "-1637969571": "crwdns2080559:0crwdne2080559:0", "-1882063886": "crwdns170792:0crwdne170792:0", @@ -3567,6 +3574,7 @@ "-1385484963": "crwdns170828:0{{platform}}crwdne170828:0", "-1990902270": "crwdns170830:0{{platform}}crwdne170830:0", "-12535938": "crwdns3708406:0crwdne3708406:0", + "-2104148631": "crwdns5766534:0crwdne5766534:0", "-201485855": "crwdns3586134:0crwdne3586134:0", "-700260448": "crwdns170852:0crwdne170852:0", "-1769158315": "crwdns170850:0crwdne170850:0", @@ -3576,13 +3584,13 @@ "-2092058806": "crwdns4642914:0crwdne4642914:0", "-2051033705": "crwdns4642916:0crwdne4642916:0", "-1762249687": "crwdns4691442:0crwdne4691442:0", + "-1123437857": "crwdns5766536:0{{platform}}crwdnd5766536:0{{product}}crwdnd5766536:0{{company}}crwdne5766536:0", "-535365199": "crwdns1600259:0{{platform}}crwdnd1600259:0{{platform_name}}crwdnd1600259:0{{account}}crwdne1600259:0", "-184453418": "crwdns170846:0{{platform}}crwdne170846:0", "-393388362": "crwdns1503671:0crwdne1503671:0", "-2057918502": "crwdns170864:0{{platform}}crwdne170864:0", "-267598687": "crwdns5280046:0{{category}}crwdnd5280046:0{{platform}}crwdnd5280046:0{{type}}crwdne5280046:0", "-1475660820": "crwdns5280048:0{{type}}crwdne5280048:0", - "-1710177700": "crwdns5280050:0{{type}}crwdne5280050:0", "-1184248732": "crwdns4626920:0{{category}}crwdnd4626920:0{{platform}}crwdnd4626920:0{{type}}crwdne4626920:0", "-1928229820": "crwdns170868:0crwdne170868:0", "-1969916895": "crwdns4642918:0crwdne4642918:0", diff --git a/packages/translations/src/translations/ar.json b/packages/translations/src/translations/ar.json index 8bf52060b909..76f1c03aae18 100644 --- a/packages/translations/src/translations/ar.json +++ b/packages/translations/src/translations/ar.json @@ -141,6 +141,7 @@ "151646545": "غير قادر على قراءة الملف {{name}}", "152415091": "الرياضيات", "152524253": "تداول في الأسواق العالمية من خلال منصتنا الشهيرة سهلة الاستخدام.", + "153485708": "Zero Spread - BVI", "157593038": "عدد صحيح عشوائي من {{ start_number }} إلى {{ end_number }}", "157871994": "انتهت صلاحية الرابط", "158355408": "قد تكون بعض الخدمات غير متاحة مؤقتًا.", @@ -293,6 +294,7 @@ "313741895": "تُرجع هذه الكتلة «True» إذا كانت الشمعة الأخيرة سوداء. يمكن وضعها في أي مكان على اللوحة باستثناء الكتلة الجذرية لمعايير التجارة.", "315306603": "لديك حساب لم يتم تعيين عملة له. يرجى اختيار عملة للتداول باستخدام هذا الحساب.", "316694303": "هل الشمعة سوداء؟", + "318705408": "Demo Zero Spread", "318865860": "اغلاق", "318984807": "تكرر هذه المجموعة التعليمات الواردة بداخلها لعدد محدد من المرات.", "321457615": "عفوًا، حدث خطأ ما!", @@ -320,6 +322,7 @@ "344418897": "تساعدك حدود التداول والاستبعاد الذاتي هذه على التحكم في مقدار المال والوقت الذي تقضيه على {{brand_website_name}} وممارسة <0>التداول المسؤول.", "345320063": "طابع زمني غير صالح", "345818851": "عذرًا، حدث خطأ داخلي. اضغط على مربع الاختيار أعلاه للمحاولة مرة أخرى.", + "346070861": "Zero Spread", "346843343": "عقود الفروقات على الأدوات المالية والمشتقة مع نسخ التداول.", "347029309": "الفوركس: قياسي/مايكرو", "347039138": "التكرار (2)", @@ -897,7 +900,6 @@ "947758334": "المدينة مطلوبة", "947914894": "اشحن رصيده  <0>", "948156236": "إنشاء {{type}} كلمة مرور", - "948176566": "جديد!", "949859957": "إرسال", "951404247": "استمتع بمعاملات سلسة عبر عملات متعددة وواجهة مستخدم سهلة الاستخدام مع فصل الأموال.", "952927527": "مرخصة من قبل هيئة الخدمات المالية المالطية (MFSA) (رقم الترخيص. (إيه/70156)", @@ -921,6 +923,7 @@ "975747761": "جاري", "975950139": "بلد الإقامة", "977929335": "اذهب إلى إعدادات حسابي", + "979713491": "Zero Spread BVI", "980050614": "قم بالتحديث الآن", "981138557": "إعادة توجيه", "981568830": "لقد اخترت استبعاد نفسك من التداول على موقعنا حتى {{exclude_until}}. إذا لم تتمكن من إجراء صفقة أو إيداع بعد فترة الاستبعاد الذاتي، فيرجى الاتصال بنا عبر <0>دردشة مباشرة .", @@ -1672,6 +1675,7 @@ "1722056905": "المستند الذي قدمته غير مدعوم لبلدك. يرجى تقديم مستند مدعوم لبلدك.", "1722888575": "{{mt5_migration_error}}", "1723069433": "Wallet الجديدة", + "1723390945": "Your demo {{deriv}} {{type}} account is ready.", "1723589564": "يمثل الحد الأقصى لعدد العقود المعلقة في محفظتك. يتم احتساب كل سطر في محفظتك لصفقة واحدة مفتوحة. بمجرد الوصول إلى الحد الأقصى، لن تتمكن من فتح صفقات جديدة دون إغلاق مركز موجود أولاً.", "1724367774": "يمكنك إجراء تحويل الأموال بمجرد اكتمال التحقق من حسابك.", "1724696797": "أنت مقيد بحساب فيات واحد فقط.", @@ -2031,6 +2035,7 @@ "2049386104": "نحتاج منك إرسالها للحصول على هذا الحساب:", "2050170533": "قائمة الاختيار", "2051558666": "عرض سجل المعاملات", + "2051596653": "Demo Zero Spread BVI", "2052022586": "لتعزيز أمان حساب MT5 الخاص بك، قمنا بترقية سياسة كلمة المرور الخاصة بنا.", "2054889300": "قم بإنشاء \"%1»", "2055317803": "انسخ الرابط إلى متصفح الجوال الخاص بك", @@ -3259,8 +3264,8 @@ "-328128497": "المالية", "-533935232": "جزر فيرجن البريطانية المالية", "-565431857": "لابوان المالية", - "-659955365": "خالٍ من المبادلة", "-291535132": "حساب Swap-Free تجريبي", + "-499019612": "Zero Spread Demo", "-1472945832": "SVG خالي من المبادلة", "-144803045": "يُسمح فقط بالأرقام وهذه الأحرف الخاصة: {{permitted_characters}}", "-1450516268": "يُسمح فقط بالحروف والأرقام والمسافة والواصلة والنقطة والفاصلة العليا.", @@ -3366,6 +3371,7 @@ "-2072411961": "تم التحقق من إثبات العنوان الخاص بك", "-384887227": "قم بتحديث العنوان في ملف التعريف الخاص بك.", "-1470677931": "عقود الفروقات على الأدوات المالية.", + "-1595662064": "Zero spread CFDs on financial and derived instruments", "-1998049070": "إذا كنت توافق على استخدامنا لملفات تعريف الارتباط، فانقر فوق قبول. لمزيد من المعلومات، <0>راجع سياستنا.", "-402093392": "إضافة حساب Deriv", "-1721181859": "ستحتاج إلى حساب {{deriv_account}}", @@ -3552,6 +3558,7 @@ "-239789243": "(رقم الترخيص. سيبا/لتر/18/1114)", "-941636117": "تطبيق ميتاتريدر 5 لينوكس", "-1434036215": "حساب Financial تجريبي", + "-659955365": "خالٍ من المبادلة", "-1416247163": "STP المالية", "-1637969571": "حساب Swap-Free تجريبي", "-1882063886": "حساب عقود الفروقات (CFDs) تجريبي", @@ -3567,6 +3574,7 @@ "-1385484963": "قم بالتأكيد لتغيير كلمة المرور {{platform}} الخاصة بك", "-1990902270": "سيؤدي هذا إلى تغيير كلمة المرور لجميع الحسابات {{platform}} الخاصة بك.", "-12535938": "* مؤشر Volatility 250 ومؤشر Volatility 150 ومؤشر Boom 300 ومؤشر Crash 300", + "-2104148631": "Commissions apply", "-201485855": "يصل إلى", "-700260448": "تجريبي", "-1769158315": "حقيقي", @@ -3576,13 +3584,13 @@ "-2092058806": "من 8 إلى 16 حرفاً", "-2051033705": "حرف خاص مثل ( _ @ ? ! / # )", "-1762249687": "حرف صغير", + "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", "-535365199": "أدخل كلمة المرور {{platform}} لإضافة حساب {{platform_name}} {{account}} .", "-184453418": "أدخل كلمة المرور {{platform}} الخاصة بك", "-393388362": "نحن نراجع مستنداتك. يجب أن يستغرق هذا حوالي 1 إلى 3 أيام.", "-2057918502": "تلميح: ربما تكون قد أدخلت كلمة مرور Deriv الخاصة بك، والتي تختلف عن كلمة المرور {{platform}} الخاصة بك.", "-267598687": "تهانينا، لقد نجحت في إنشاء حسابك <0/>{{category}} {{platform}} {{type}}. لبدء التداول، <1 />قم بتحويل الأموال <2 />من حساب Deriv الخاص بك إلى هذا الحساب.", "-1475660820": "حساب Deriv MT5 {{type}} الخاص بك جاهز. ", - "-1710177700": "تم إعداد حسابك التجريبي {{type}}.", "-1184248732": "تهانينا، لقد نجحت في إنشاء حساب <0/>{{category}} {{platform}} {{type}} الخاص بك. ", "-1928229820": "إعادة تعيين كلمة مرور مستثمر Deriv X", "-1969916895": "يجب أن تحتوي كلمة المرور الخاصة بك على ما بين 8-16 حرفًا تتضمن أحرفًا كبيرة وصغيرة، ورقمًا واحدًا على الأقل وحرفًا خاصًا ( _ @ ؟ ! / # ).", diff --git a/packages/translations/src/translations/bn.json b/packages/translations/src/translations/bn.json index 844e5e5be286..60685e00f1ee 100644 --- a/packages/translations/src/translations/bn.json +++ b/packages/translations/src/translations/bn.json @@ -141,6 +141,7 @@ "151646545": "ফাইল পড়তে অক্ষম {{name}}", "152415091": "গণিত", "152524253": "আমাদের জনপ্রিয় ব্যবহারকারী-বন্ধুত্বপূর্ণ প্ল্যাটফর্মের সাথে বিশ্বের বাজারে ট্রেড করুন।", + "153485708": "Zero Spread - BVI", "157593038": "{{ start_number }} থেকে {{ end_number }}র্যান্ডম পূর্ণসংখ্যা পর্যন্ত", "157871994": "লিংকের মেয়াদ শেষ", "158355408": "কিছু পরিষেবা সাময়িকভাবে অনুপলব্ধ হতে পারে।", @@ -293,6 +294,7 @@ "313741895": "শেষ মোমবাতি কালো হলে এই ব্লকটি “True” ফেরত দেয়। এটি ট্রেড প্যারামিটার রুট ব্লক ব্যতীত ক্যানভাসে যে কোন জায়গায় স্থাপন করা যেতে পারে।", "315306603": "আপনার এমন একটি অ্যাকাউন্ট আছে যার কারেন্সি নির্ধারিত নেই। অনুগ্রহ করে এই অ্যাকাউন্টের সাথে ট্রেড করার জন্য একটি মুদ্রা নির্বাচন করুন।", "316694303": "মোমবাতি কি কালো?", + "318705408": "Demo Zero Spread", "318865860": "বন্ধ", "318984807": "এই ব্লক নির্দিষ্ট সংখ্যক সময়ের জন্য অন্তর্ভুক্ত নির্দেশাবলী পুনরাবৃত্তি করে।", "321457615": "ওহো, কিছু একটা ভুল হয়েছে!", @@ -320,6 +322,7 @@ "344418897": "এই ট্রেডিং সীমা এবং স্ব-বর্জন আপনাকে {{brand_website_name}} এ ব্যয় করা অর্থের পরিমাণ নিয়ন্ত্রণ করতে এবং <0>দায়িত্বশীল ট্রেডিং অনুশীলন করতে সহায়তা করে।", "345320063": "অবৈধ টাইমস্ট্যাম্প", "345818851": "দুঃখিত, একটি অভ্যন্তরীণ ত্রুটি ঘটেছে। আবার চেষ্টা করতে উপরের চেকবক্স হিট করুন।", + "346070861": "Zero Spread", "346843343": "কপি ট্রেডিং সহ আর্থিক এবং প্রাপ্ত যন্ত্রের উপর CFD.", "347029309": "ফরেক্স: স্ট্যান্ডার্ড/মাইক্রো", "347039138": "পুনরাবৃত্তি (2)", @@ -897,7 +900,6 @@ "947758334": "শহর প্রয়োজন", "947914894": "টপ আপ  <0>", "948156236": "{{type}} পাসওয়ার্ড তৈরি করুন", - "948176566": "নতুন!", "949859957": "জমা দিন", "951404247": "একাধিক মুদ্রা জুড়ে নির্বিঘ্ন লেনদেন এবং তহবিল পৃথকীকরণ সহ একটি স্বজ্ঞাত ব্যবহারকারী ইন্টারফেস উপভোগ করুন।", "952927527": "মাল্টা ফাইন্যান্সিয়াল সার্ভিসেস অথরিটি (এমএফএসএ) দ্বারা নিয়ন্ত্রিত (লাইসেন্স নং। আইএস/70156)", @@ -921,6 +923,7 @@ "975747761": "চলমান", "975950139": "বসবাসের দেশ", "977929335": "আমার অ্যাকাউন্ট সেটিংসে যান", + "979713491": "Zero Spread BVI", "980050614": "এখন হালনাগাদ করুন", "981138557": "পুনর্নির্দেশ", "981568830": "আপনি {{exclude_until}}পর্যন্ত আমাদের ওয়েবসাইটে ট্রেডিং থেকে নিজেকে বাদ দেওয়া চয়ন করেছেন। যদি আপনি আপনার স্ব-বর্জনের সময়ের পরে কোনও ট্রেড বা ডিপোজিট করতে না পারেন, তাহলে <0>লাইভ চ্যাটের মাধ্যমে আমাদের সাথে যোগাযোগ করুন।", @@ -1672,6 +1675,7 @@ "1722056905": "আপনার দেওয়া নথিটি আপনার দেশের জন্য সমর্থিত নয়। আপনার দেশের জন্য একটি সমর্থিত নথি প্রদান করুন।", "1722888575": "{{mt5_migration_error}}", "1723069433": "আপনার নতুন Wallet", + "1723390945": "Your demo {{deriv}} {{type}} account is ready.", "1723589564": "আপনার পোর্টফোলিও মধ্যে অসামান্য চুক্তি সর্বোচ্চ সংখ্যা প্রতিনিধিত্ব করে। আপনার পোর্টফোলিওর প্রতিটি লাইন এক ওপেন পজিশনের জন্য গণনা করে। সর্বোচ্চ পৌঁছে গেলে, আপনি প্রথমে বিদ্যমান পজিশন বন্ধ না করে নতুন পজিশন খুলতে পারবেন না।", "1724367774": "আপনার অ্যাকাউন্টের যাচাইকরণ সম্পূর্ণ হয়ে গেলে আপনি তহবিল স্থানান্তর করতে পারেন।", "1724696797": "আপনি শুধুমাত্র একটি ফায়াত অ্যাকাউন্টে সীমাবদ্ধ।", @@ -2031,6 +2035,7 @@ "2049386104": "এই অ্যাকাউন্টটি পেতে আপনাকে এগুলি জমা দিতে হবে:", "2050170533": "টিক- এর তালিকা", "2051558666": "লেনদেনের ইতিহাস দেখুন", + "2051596653": "Demo Zero Spread BVI", "2052022586": "আপনার MT5 অ্যাকাউন্টের নিরাপত্তা বাড়াতে আমরা আমাদের পাসওয়ার্ড নীতি আপগ্রেড করেছি।", "2054889300": "তৈরি করুন \"%1”", "2055317803": "আপনার মোবাইল ব্রাউজারে লিঙ্কটি অনুলিপি করুন", @@ -3259,8 +3264,8 @@ "-328128497": "আর্থিক", "-533935232": "আর্থিক BVI", "-565431857": "আর্থিক লাবুয়ান", - "-659955365": "সোয়াপ মুক্ত", "-291535132": "সোয়াপ মুক্ত ডেমো", + "-499019612": "Zero Spread Demo", "-1472945832": "সোয়াপ-মুক্ত SVG", "-144803045": "শুধুমাত্র সংখ্যা এবং এই বিশেষ অক্ষর অনুমোদিত হয়: {{permitted_characters}}", "-1450516268": "শুধুমাত্র অক্ষর, সংখ্যা, স্থান, হাইফেন, পিরিয়ড এবং অ্যাপোস্ট্রফি অনুমোদিত।", @@ -3366,6 +3371,7 @@ "-2072411961": "আপনার ঠিকানা প্রমাণ যাচাই করা হয়েছে", "-384887227": "আপনার প্রোফাইলে ঠিকানা আপডেট করুন।", "-1470677931": "আর্থিক যন্ত্রের উপর CFD।", + "-1595662064": "Zero spread CFDs on financial and derived instruments", "-1998049070": "আপনি যদি আমাদের কুকিজ ব্যবহারে সম্মত হন, তাহলে Accept-এ ক্লিক করুন। আরও তথ্যের জন্য, <0>আমাদের নীতি দেখুন।", "-402093392": "Deriv অ্যাকাউন্ট যোগ করুন", "-1721181859": "আপনি একটি {{deriv_account}} অ্যাকাউন্ট প্রয়োজন হবে", @@ -3552,6 +3558,7 @@ "-239789243": "(লাইসেন্স নং। সিবা/এল/18/1114)", "-941636117": "MetaTrader 5 লিনাক্স অ্যাপ", "-1434036215": "আর্থিক ডেমো", + "-659955365": "সোয়াপ মুক্ত", "-1416247163": "আর্থিক STP", "-1637969571": "ডেমো সোয়াপ মুক্ত", "-1882063886": "ডেমো CFDs", @@ -3567,6 +3574,7 @@ "-1385484963": "আপনার {{platform}} পাসওয়ার্ড পরিবর্তন করতে নিশ্চিত করুন", "-1990902270": "এটি আপনার সমস্ত {{platform}} অ্যাকাউন্টের পাসওয়ার্ড পরিবর্তন করবে।", "-12535938": "* ভোলাটিলিটি 250 সূচক, অস্থিরতা 150 সূচক, বুম 300 এবং ক্র্যাশ 300 স", + "-2104148631": "Commissions apply", "-201485855": "পর্যন্ত", "-700260448": "ডেমো", "-1769158315": "বাস্তব", @@ -3576,13 +3584,13 @@ "-2092058806": "8 থেকে 16 অক্ষর", "-2051033705": "একটি বিশেষ চরিত্র যেমন ( _ @ ? ! / # )", "-1762249687": "একটি ছোট অক্ষর", + "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", "-535365199": "একটি {{platform_name}} {{account}} অ্যাকাউন্ট যোগ করতে আপনার {{platform}} পাসওয়ার্ড লিখুন।", "-184453418": "আপনার {{platform}} পাসওয়ার্ড লিখুন", "-393388362": "আমরা আপনার নথি পর্যালোচনা করছি। এটি প্রায় 1 থেকে 3 দিন সময় নিতে পারে।", "-2057918502": "ইঙ্গিত: আপনার Deriv পাসওয়ার্ড প্রবেশ করিয়েছেন, যা আপনার {{platform}} পাসওয়ার্ড থেকে ভিন্ন।", "-267598687": "অভিনন্দন, আপনি সফলভাবে আপনার <0/>{{category}} {{platform}} {{type}} অ্যাকাউন্ট তৈরি করেছেন৷ ট্রেডিং শুরু করতে, আপনার Deriv account থেকে এই অ্যাকাউন্টে <1 />ফান্ড ট্রান্সফার করুন <2 />।", "-1475660820": "আপনার Deriv MT5 {{type}} অ্যাকাউন্ট প্রস্তুত। ", - "-1710177700": "আপনার ডেমো {{type}} অ্যাকাউন্ট প্রস্তুত।", "-1184248732": "অভিনন্দন, আপনি সফলভাবে আপনার <0/>{{category}} {{platform}} {{type}} অ্যাকাউন্ট তৈরি করেছেন। ", "-1928229820": "Deriv X বিনিয়োগকারী পাসওয়ার্ড রিসেট করুন", "-1969916895": "আপনার পাসওয়ার্ডে অবশ্যই 8-16 অক্ষর থাকতে হবে যার মধ্যে বড় এবং ছোট অক্ষর এবং কমপক্ষে একটি সংখ্যা এবং বিশেষ অক্ষর অন্তর্ভুক্ত থাকে ( _ @ ? ! / # )।", diff --git a/packages/translations/src/translations/de.json b/packages/translations/src/translations/de.json index 9f9c2d46c8fb..5a376eb4b4e0 100644 --- a/packages/translations/src/translations/de.json +++ b/packages/translations/src/translations/de.json @@ -141,6 +141,7 @@ "151646545": "Datei {{name}}kann nicht gelesen werden", "152415091": "Mathematik", "152524253": "Handeln Sie auf den Weltmärkten mit unserer beliebten benutzerfreundlichen Plattform.", + "153485708": "Zero Spread - BVI", "157593038": "zufällige Ganzzahl von {{ start_number }} bis {{ end_number }}", "157871994": "Link abgelaufen", "158355408": "Einige Dienste können vorübergehend nicht verfügbar sein.", @@ -293,6 +294,7 @@ "313741895": "Dieser Block gibt \"True\" zurück, wenn die letzte Kerze schwarz ist. Es kann an einer beliebigen Stelle auf der Leinwand platziert werden, außer im Rootblock der Handelsparameter.", "315306603": "Sie haben ein Konto, dem keine Währung zugewiesen ist. Bitte wählen Sie eine Währung aus, um mit diesem Konto zu handeln.", "316694303": "Ist die Kerze schwarz?", + "318705408": "Demo Zero Spread", "318865860": "nahe", "318984807": "Dieser Block wiederholt die darin enthaltenen Anweisungen für eine bestimmte Anzahl von Malen.", "321457615": "Ups, da ist etwas schief gelaufen!", @@ -320,6 +322,7 @@ "344418897": "Diese Handelslimits und der Selbstausschluss helfen Ihnen dabei, den Geldbetrag und die Zeit, die Sie für {{brand_website_name}} ausgeben, zu kontrollieren und <0>verantwortungsbewusst zu handeln.", "345320063": "Ungültiger Zeitstempel", "345818851": "Entschuldigung, ein interner Fehler ist aufgetreten. Klicken Sie auf das obige Kontrollkästchen, um es erneut zu versuchen.", + "346070861": "Zero Spread", "346843343": "CFDs auf Finanzinstrumente und abgeleitete Instrumente mit Copy-Trading.", "347029309": "Forex: Standard/Mikro", "347039138": "Iterieren (2)", @@ -897,7 +900,6 @@ "947758334": "Stadt ist erforderlich", "947914894": "Nachfüllen  <0>", "948156236": "{{type}} Passwort erstellen", - "948176566": "Neu!", "949859957": "Abschicken", "951404247": "Genießen Sie reibungslose Transaktionen in mehreren Währungen und eine intuitive Benutzeroberfläche mit Fondstrennung.", "952927527": "Reguliert von der Malta Financial Services Authority (MFSA) (Lizenz-Nr. IST/70156)", @@ -921,6 +923,7 @@ "975747761": "Fortlaufend", "975950139": "Land des Wohnsitzes", "977929335": "Gehe zu meinen Kontoeinstellungen", + "979713491": "Zero Spread BVI", "980050614": "Jetzt aktualisieren", "981138557": "Umleiten", "981568830": "Sie haben sich dafür entschieden, sich bis {{exclude_until}}vom Handel auf unserer Website auszuschließen. Wenn Sie nach Ablauf Ihrer Selbstausschlussfrist keinen Handel oder keine Einzahlung tätigen können, kontaktieren Sie uns bitte per <0>Live-Chat.", @@ -1672,6 +1675,7 @@ "1722056905": "Das von Ihnen angegebene Dokument wird für Ihr Land nicht unterstützt. Bitte stellen Sie ein unterstütztes Dokument für Ihr Land zur Verfügung.", "1722888575": "{{mt5_migration_error}}", "1723069433": "Ihr neues Wallet", + "1723390945": "Your demo {{deriv}} {{type}} account is ready.", "1723589564": "Stellt die maximale Anzahl ausstehender Verträge in Ihrem Portfolio dar. Jede Zeile in Ihrem Portfolio zählt für eine offene Position. Sobald das Maximum erreicht ist, können Sie keine neuen Positionen eröffnen, ohne zuerst eine bestehende Position zu schließen.", "1724367774": "Sie können eine Überweisung tätigen, sobald die Überprüfung Ihres Kontos abgeschlossen ist.", "1724696797": "Sie sind auf nur ein Fiat-Konto beschränkt.", @@ -2031,6 +2035,7 @@ "2049386104": "Sie müssen diese einreichen, um dieses Konto zu erhalten:", "2050170533": "Tick liste", "2051558666": "Transaktionshistorie anzeigen", + "2051596653": "Demo Zero Spread BVI", "2052022586": "Um die Sicherheit Ihres MT5-Kontos zu erhöhen, haben wir unsere Passwortpolitik verbessert.", "2054889300": "Erstellen Sie \"%1“", "2055317803": "Kopieren Sie den Link in Ihren mobilen Browser", @@ -3259,8 +3264,8 @@ "-328128497": "Finanziell", "-533935232": "Finanzielles BVI", "-565431857": "Finanzielles Labuan", - "-659955365": "Tauschfrei", "-291535132": "Tauschfreie Demo", + "-499019612": "Zero Spread Demo", "-1472945832": "Tauschfreie SVG", "-144803045": "Nur Zahlen und diese Sonderzeichen sind erlaubt: {{permitted_characters}}", "-1450516268": "Nur Buchstaben, Zahlen, Leerzeichen, Bindestrich, Punkt und Apostroph sind zulässig.", @@ -3366,6 +3371,7 @@ "-2072411961": "Ihr Adressnachweis wurde verifiziert", "-384887227": "Aktualisiere die Adresse in deinem Profil.", "-1470677931": "CFDs auf Finanzinstrumente.", + "-1595662064": "Zero spread CFDs on financial and derived instruments", "-1998049070": "Wenn Sie der Verwendung von Cookies zustimmen, klicken Sie auf Akzeptieren. Weitere Informationen finden <0>Sie in unseren Richtlinien.", "-402093392": "Deriv-Konto hinzufügen", "-1721181859": "Sie benötigen ein {{deriv_account}} Konto", @@ -3552,6 +3558,7 @@ "-239789243": "(Lizenz-Nr. SIBA/L/18/1114)", "-941636117": "MetaTrader 5 Linux-App", "-1434036215": "Demo Finanzwesen", + "-659955365": "Tauschfrei", "-1416247163": "Finanzielles STP", "-1637969571": "Demo Tauschfrei", "-1882063886": "Demo-CFDs", @@ -3567,6 +3574,7 @@ "-1385484963": "Bestätigen Sie, dass Sie Ihr {{platform}} Passwort ändern möchten", "-1990902270": "Dadurch wird das Passwort für alle Ihre {{platform}}-Konten geändert.", "-12535938": "*Volatility 250 Index, Volatility 150 Index, Boom 300 und Crash 300 Index", + "-2104148631": "Commissions apply", "-201485855": "Bis zu", "-700260448": "Demo", "-1769158315": "echt", @@ -3576,13 +3584,13 @@ "-2092058806": "8 bis 16 Zeichen", "-2051033705": "Ein Sonderzeichen wie ( _ @ ? ! / # )", "-1762249687": "Ein Kleinbuchstabe", + "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", "-535365199": "Geben Sie Ihr {{platform}}-Passwort ein, um ein {{platform_name}} {{account}}-Konto hinzuzufügen.", "-184453418": "Geben Sie Ihr {{platform}}-Passwort ein", "-393388362": "Wir überprüfen Ihre Dokumente. Dies sollte etwa 1 bis 3 Tage dauern.", "-2057918502": "Hinweis: Sie haben möglicherweise Ihr Deriv-Passwort eingegeben, das sich von Ihrem {{platform}}-Passwort unterscheidet.", "-267598687": "Herzlichen Glückwunsch, Sie haben Ihr <0/>{{category}} {{platform}} {{type}} Konto erfolgreich eingerichtet. Um mit dem Handel zu beginnen, überweisen Sie <1 />Geldmittel <2 />von Ihrem Deriv-Konto auf dieses Konto.", "-1475660820": "Ihr Deriv Apps {{type}} Konto ist bereit. ", - "-1710177700": "Ihr Demo-Konto {{type}} ist bereit.", "-1184248732": "Herzlichen Glückwunsch, Sie haben Ihr <0/>{{category}} {{platform}} {{type}} Konto erfolgreich erstellt. ", "-1928229820": "Setzen Sie das Deriv X-Investorenpasswort zurück", "-1969916895": "Ihr Passwort muss zwischen 8 und 16 Zeichen enthalten, darunter Groß- und Kleinbuchstaben sowie mindestens eine Zahl und ein Sonderzeichen ( _ @ ? ! / # ).", diff --git a/packages/translations/src/translations/es.json b/packages/translations/src/translations/es.json index 52c815d9ba78..ff80bb421644 100644 --- a/packages/translations/src/translations/es.json +++ b/packages/translations/src/translations/es.json @@ -141,6 +141,7 @@ "151646545": "No fue posible leer el archivo {{name}}", "152415091": "Matemáticas", "152524253": "Opere en los mercados mundiales con nuestra popular plataforma fácil de usar.", + "153485708": "Zero Spread - BVI", "157593038": "número entero aleatorio de {{ start_number }} a {{ end_number }}", "157871994": "Enlace expirado", "158355408": "Algunos servicios pueden no estar disponibles temporalmente.", @@ -293,6 +294,7 @@ "313741895": "Este bloque devuelve un valor booleano de \"verdadero\" si la última vela es negra. Se puede colocar en cualquier lugar del lienzo, excepto dentro del bloque raíz de parámetros de trading.", "315306603": "Tiene una cuenta sin una moneda asignada. Elija una moneda para poder operar con esa cuenta.", "316694303": "¿La vela es negra?", + "318705408": "Demo Zero Spread", "318865860": "cerrar", "318984807": "Este bloque repite las instrucciones que contiene durante un número específico de veces.", "321457615": "¡Ups, algo salió mal!", @@ -320,6 +322,7 @@ "344418897": "Estos límites de trading y la autoexclusión le ayudan a controlar la cantidad de dinero y el tiempo que gasta en {{brand_website_name}} y a ejercer un <0>trading responsable.", "345320063": "Marca temporal inválida", "345818851": "Lo sentimos, se ha producido un error interno. Pulse la casilla de verificación anterior para volver a intentarlo.", + "346070861": "Zero Spread", "346843343": "CFD sobre instrumentos financieros y derived con copy trading.", "347029309": "Forex: estándar/micro", "347039138": "Iterar (2)", @@ -897,7 +900,6 @@ "947758334": "Se requiere la ciudad", "947914894": "Agregar fondos  <0>", "948156236": "Crear contraseña {{type}}", - "948176566": "¡Nuevo!", "949859957": "Enviar", "951404247": "Disfrute de transacciones fluidas con múltiples monedas y de una interfaz de usuario intuitiva con segregación de fondos.", "952927527": "Regulada por la Autoridad de Servicios Financieros de Malta (MFSA) (licencia nº IS/70156)", @@ -921,6 +923,7 @@ "975747761": "En curso", "975950139": "País de residencia", "977929335": "Ir a la configuración de mi cuenta", + "979713491": "Zero Spread BVI", "980050614": "Actualizar ahora", "981138557": "Redirigir", "981568830": "Ha elegido excluirse de las operaciones en nuestro sitio web hasta {{exclude_until}}. Si no puede realizar una operación o un depósito después del período de autoexclusión, contáctenos a través del <0>live chat.", @@ -1672,6 +1675,7 @@ "1722056905": "El documento que proporcionó no es compatible con su país. Proporcione un documento compatible para su país.", "1722888575": "{{mt5_migration_error}}", "1723069433": "Su nueva Wallet", + "1723390945": "Your demo {{deriv}} {{type}} account is ready.", "1723589564": "Representa el número máximo de contratos pendientes en su Wallet. Cada línea de su Wallet cuenta una posición abierta. Una vez que se alcanza el máximo no podrá abrir nuevas posiciones sin cerrar las posiciones existentes primero.", "1724367774": "Podrá realizar una transferencia de fondos una vez finalizada la verificación de su cuenta.", "1724696797": "Está limitado/a a una sola cuenta fiat.", @@ -2031,6 +2035,7 @@ "2049386104": "Necesitamos que nos envíe lo siguiente para obtener esta cuenta:", "2050170533": "Lista de ticks", "2051558666": "Ver el historial de transacciones", + "2051596653": "Demo Zero Spread BVI", "2052022586": "Para mejorar la seguridad de su cuenta MT5 hemos actualizado nuestra política de contraseñas.", "2054889300": "Crear \"%1\"", "2055317803": "Copie el enlace en su navegador móvil", @@ -3259,8 +3264,8 @@ "-328128497": "Financiera", "-533935232": "Financiera BVI", "-565431857": "Financial Labuan", - "-659955365": "Sin swap", "-291535132": "Sin swaps Demo", + "-499019612": "Zero Spread Demo", "-1472945832": "Sin swaps SVG", "-144803045": "Solo se permite el uso de números y los siguientes caracteres especiales: {{permitted_characters}}", "-1450516268": "Solo se permite el uso de letras, números, espacios, guiones, puntos y apóstrofes.", @@ -3366,6 +3371,7 @@ "-2072411961": "Su prueba de domicilio ha sido verificada", "-384887227": "Actualice la dirección en su perfil.", "-1470677931": "CFD sobre instrumentos financieros.", + "-1595662064": "Zero spread CFDs on financial and derived instruments", "-1998049070": "Si acepta nuestro uso de cookies, haga clic en Aceptar. Para obtener más información, <0>consulte nuestra política.", "-402093392": "Añadir cuenta Deriv", "-1721181859": "Necesitará una cuenta de {{deriv_account}}", @@ -3552,6 +3558,7 @@ "-239789243": "(Número de licencia SIBA/L/18/1114)", "-941636117": "App MetaTrader 5 para Linux", "-1434036215": "Financiera demo", + "-659955365": "Sin swap", "-1416247163": "Financiera STP", "-1637969571": "Sin swaps Demo", "-1882063886": "Demo de CFD", @@ -3567,6 +3574,7 @@ "-1385484963": "Confirme el cambio de su contraseña {{platform}}", "-1990902270": "Esto cambiará la contraseña de todas sus cuentas {{platform}}.", "-12535938": "*Índice Volatility 250, Índice Volatility 150, Índice Boom 300 y Crash 300", + "-2104148631": "Commissions apply", "-201485855": "Hasta", "-700260448": "demo", "-1769158315": "real", @@ -3576,13 +3584,13 @@ "-2092058806": "De 8 a 16 caracteres", "-2051033705": "Un carácter especial como ( _ @ ? ! / # )", "-1762249687": "Una letra minúscula", + "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", "-535365199": "Introduzca su contraseña de {{platform}} para añadir una cuenta de {{account}} {{platform_name}}.", "-184453418": "Introduzca su contraseña {{platform}}", "-393388362": "Estamos revisando sus documentos. Esto debería tardar de 1 a 3 días.", "-2057918502": "Sugerencia: Es posible que haya introducido su contraseña de Deriv, que es diferente de su contraseña de {{platform}}.", "-267598687": "Felicidades, ha creado con éxito su cuenta <0/>{{category}} {{platform}} {{type}}. Para empezar a operar, <1 />transfiera fondos <2 />de su cuenta Deriv a esta cuenta.", "-1475660820": "Su cuenta Deriv MT5 {{type}} está lista. ", - "-1710177700": "Su cuenta de demostración {{type}} está lista.", "-1184248732": "Felicidades, ha creado su cuenta con éxito <0/>{{category}} {{platform}} {{type}}. ", "-1928229820": "Restablecer la contraseña de inversor Deriv X", "-1969916895": "Su contraseña debe contener entre 8 y 16 caracteres que incluyan letras mayúsculas y minúsculas, y al menos un número y un carácter especial ( _ @ ? ! / # ).", diff --git a/packages/translations/src/translations/fr.json b/packages/translations/src/translations/fr.json index 78000396f033..dd7ea35b5b8e 100644 --- a/packages/translations/src/translations/fr.json +++ b/packages/translations/src/translations/fr.json @@ -141,6 +141,7 @@ "151646545": "Impossible de lire le fichier {{name}}", "152415091": "Mathématique", "152524253": "Tradez les marchés mondiaux sur notre plateforme simple et renommée.", + "153485708": "Zero Spread - BVI", "157593038": "entier aléatoire de {{ start_number }} à {{ end_number }}", "157871994": "Lien expiré", "158355408": "Certains services peuvent être temporairement indisponibles.", @@ -293,6 +294,7 @@ "313741895": "Ce bloc renvoie «Vrai» si la dernière bougie est noire. Il peut être placé n'importe où sur le canevas, sauf dans le bloc racine des paramètres du Trade.", "315306603": "Vous avez un compte auquel aucune devise n'est affectée. Veuillez choisir une devise pour trader avec ce compte.", "316694303": "La bougie est-elle noire ?", + "318705408": "Demo Zero Spread", "318865860": "clôture", "318984807": "Ce bloc répète les instructions contenues à l'intérieur pour un nombre spécifique de fois.", "321457615": "Oups, un problème est survenu !", @@ -320,6 +322,7 @@ "344418897": "Ces limites de trading et l'auto-exclusion vous aident à contrôler le montant d'argent et le temps que vous passez sur {{brand_website_name}} et à pratiquer un <0>trading responsable.", "345320063": "Horodatage non valide", "345818851": "Désolé, une erreur interne s'est produite. Cliquez sur la case à cocher ci-dessus pour réessayer.", + "346070861": "Zero Spread", "346843343": "CFD sur instruments financiers et dérivés avec trading de copie.", "347029309": "Forex : standard/micro", "347039138": "Itérer (2)", @@ -897,7 +900,6 @@ "947758334": "Ville/Village est requis", "947914894": "Recharger  <0>", "948156236": "Créer le mot de passe {{type}}", - "948176566": "Nouveautés !", "949859957": "Envoyer", "951404247": "Profitez de transactions fluides dans plusieurs devises et d'une interface utilisateur intuitive avec séparation des fonds.", "952927527": "Réglementée par la Malta Financial Services Authority (MFSA) (licence nº IS/70156)", @@ -921,6 +923,7 @@ "975747761": "En cours", "975950139": "Pays de résidence", "977929335": "Allez aux paramètres de mon compte", + "979713491": "Zero Spread BVI", "980050614": "Mettre à jour maintenant", "981138557": "Rediriger", "981568830": "Vous avez choisi de vous exclure du trading sur notre site jusqu'à {{exclude_until}}. Si vous ne parvenez pas à effectuer une transaction ou à effectuer un dépôt après votre période d'auto-exclusion, veuillez nous contacter via <0>le chat en direct.", @@ -1672,6 +1675,7 @@ "1722056905": "Le document que vous avez fourni n'est pas pris en charge pour votre pays. Veuillez fournir un document pris en charge pour votre pays.", "1722888575": "{{mt5_migration_error}}", "1723069433": "Votre nouveau Wallet", + "1723390945": "Your demo {{deriv}} {{type}} account is ready.", "1723589564": "Représente le nombre maximal de contrats en cours dans votre portefeuille. Chaque ligne de votre portefeuille représente une position ouverte. Une fois le maximum atteint, vous ne pourrez plus ouvrir de nouvelle position sans fermer d'abord une position existante.", "1724367774": "Vous pourrez à nouveau effectuer un transfert de fonds une fois que la vérification de votre compte sera terminée.", "1724696797": "Vous êtes limité à un seul compte fiat.", @@ -2031,6 +2035,7 @@ "2049386104": "Nous avons besoin que vous les soumettiez pour obtenir ce compte :", "2050170533": "Liste des ticks", "2051558666": "Voir l'historique de la transaction", + "2051596653": "Demo Zero Spread BVI", "2052022586": "Pour améliorer la sécurité de votre compte MT5, nous avons mis à jour notre politique en matière de mots de passe.", "2054889300": "Créer \"%1\"", "2055317803": "Copiez le lien dans votre navigateur mobile", @@ -3259,8 +3264,8 @@ "-328128497": "Financier", "-533935232": "Financier BVI", "-565431857": "Financier Labuan", - "-659955365": "Sans Swap", "-291535132": "Compte Démo sans swap", + "-499019612": "Zero Spread Demo", "-1472945832": "SVG sans swap", "-144803045": "Seuls les nombres et ces caractères spéciaux sont autorisés: {{permitted_characters}}", "-1450516268": "Seuls les lettres, les chiffres, espace, trait d'union, point et apostrophe sont autorisés.", @@ -3366,6 +3371,7 @@ "-2072411961": "Votre justificatif de domicile a été vérifié", "-384887227": "Mettez à jour l'adresse sur votre profil.", "-1470677931": "CFD sur instruments financiers.", + "-1595662064": "Zero spread CFDs on financial and derived instruments", "-1998049070": "Si vous acceptez notre utilisation des cookies, cliquez sur Accepter. Pour plus d'informations, <0>consultez notre politique.", "-402093392": "Ajouter un compte Deriv", "-1721181859": "Vous aurez besoin d'un compte {{deriv_account}}", @@ -3552,6 +3558,7 @@ "-239789243": "(N° de licence SIBA/L/18/1114)", "-941636117": "Appli Linux MetaTrader 5", "-1434036215": "Demo Financier", + "-659955365": "Sans Swap", "-1416247163": "Financier STP", "-1637969571": "Démo sans swap", "-1882063886": "CFD démo", @@ -3567,6 +3574,7 @@ "-1385484963": "Confirmer le changement de votre mot de passe {{platform}}", "-1990902270": "Cela changera le mot de passe de tous vos comptes {{platform}}.", "-12535938": "*Indice Volatility 250, indice Volatility 150, indice Boom 300 et indice Crash 300", + "-2104148631": "Commissions apply", "-201485855": "Jusqu'à", "-700260448": "démo", "-1769158315": "réel", @@ -3576,13 +3584,13 @@ "-2092058806": "8 à 16 caractères", "-2051033705": "Un caractère spécial tel que ( _ @ ? ! / # )", "-1762249687": "Une lettre minuscule", + "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", "-535365199": "Entrez votre mot de passe {{platform}} pour ajouter un compte {{platform_name}} {{account}}.", "-184453418": "Entrer votre mot de passe {{platform}}", "-393388362": "Nous examinons vos documents. Cela devrait prendre environ 1 à 3 jours.", "-2057918502": "Astuce: vous avez peut-être entré votre mot de passe Deriv, qui est différent de votre mot de passe {{platform}}.", "-267598687": "Félicitations, vous avez créé avec succès votre compte <0/>{{category}} {{platform}} {{type}}. Pour commencer à trader, \n<1 />transférez des fonds <2 />de votre compte Deriv vers ce compte.", "-1475660820": "Votre compte Deriv MT5 {{type}} est prêt. ", - "-1710177700": "Votre compte démo {{type}} est prêt.", "-1184248732": "Félicitations, vous avez correctement créé votre compte <0/>{{category}} {{platform}} {{type}}. ", "-1928229820": "Réinitialiser le mot de passe investisseur de Deriv X", "-1969916895": "Votre mot de passe doit contenir entre 8 et 16 caractères, dont des lettres majuscules et minuscules, et au moins un chiffre et un caractère spécial ( _ @ ? ! / # ).", diff --git a/packages/translations/src/translations/it.json b/packages/translations/src/translations/it.json index 02b003925329..16f6f4730de3 100644 --- a/packages/translations/src/translations/it.json +++ b/packages/translations/src/translations/it.json @@ -141,6 +141,7 @@ "151646545": "Impossibile leggere il file {{name}}", "152415091": "Matematica", "152524253": "Fai trading sui mercati internazionali con la nostra famosa piattaforma dal semplice utilizzo.", + "153485708": "Zero Spread - BVI", "157593038": "numero intero casuale da {{ start_number }} a {{ end_number }}", "157871994": "Link scaduto", "158355408": "Alcuni servizi potrebbero essere temporaneamente non disponibili.", @@ -293,6 +294,7 @@ "313741895": "Questo blocco risulterà nuovamente \"Vero\" se l'ultima candela è nera. Può essere posizionato in qualunque punto dell'area di disegno tranne entro il blocco principale dei parametri di trading.", "315306603": "Al tuo conto non è stata assegnata alcuna valuta. Selezionane una per iniziare il trading con questo conto.", "316694303": "La candela è nera?", + "318705408": "Demo Zero Spread", "318865860": "chiudi", "318984807": "Questo blocco ripete le istruzioni ad esso relative per un numero specifico di volte.", "321457615": "Ops, qualcosa non ha funzionato!", @@ -320,6 +322,7 @@ "344418897": "I limiti sul trading e l'autoesclusione aiutano a controllare il tempo trascorso e il denaro speso su {{brand_website_name}} e a fare <0>trading in modo responsabile.", "345320063": "Timestamp non valido", "345818851": "Spiacente, si è verificato un errore interno. Premere la casella di controllo sopra per riprovare.", + "346070861": "Zero Spread", "346843343": "CFD su strumenti finanziari e derived con copy trading.", "347029309": "Forex: standard/micro", "347039138": "Esegui iterazione (2)", @@ -897,7 +900,6 @@ "947758334": "Città obbligatoria", "947914894": "Carica  <0>", "948156236": "Crea password {{type}}", - "948176566": "Nuovo!", "949859957": "Invia", "951404247": "Goditi transazioni senza interruzioni su più valute e un'interfaccia utente intuitiva con segregazione dei fondi.", "952927527": "Regolamentata dalla Malta Financial Services Authority (MFSA) (licenza n. IS/70156)", @@ -921,6 +923,7 @@ "975747761": "In corso", "975950139": "Paese di residenza", "977929335": "Vai sulle impostazioni del conto", + "979713491": "Zero Spread BVI", "980050614": "Aggiorna", "981138557": "Reindirizza", "981568830": "Hai scelto di escluderti dal trading sul nostro sito Web fino a {{exclude_until}}. Se non riesci a effettuare una transazione o un deposito dopo il periodo di autoesclusione, contattaci tramite <0>chat live.", @@ -1672,6 +1675,7 @@ "1722056905": "Il documento fornito non è valido nel tuo Paese: inviane uno idoneo.", "1722888575": "{{mt5_migration_error}}", "1723069433": "Il suo nuovo Wallet", + "1723390945": "Your demo {{deriv}} {{type}} account is ready.", "1723589564": "Rappresenta il numero massimo di contratti in essere nel tuo Wallet. Ogni riga presente sul tuo Wallet vale una posizione aperta. Una volta raggiunto il valore massimo, non potrai aprire nuove posizioni senza prima chiudere una posizione esistente.", "1724367774": "Puoi effettuare un trasferimento di fondi una volta completata la verifica del tuo account.", "1724696797": "È possibile avere un solo conto fiat.", @@ -2031,6 +2035,7 @@ "2049386104": "Abbiamo bisogno che tu li invii per ottenere questo account:", "2050170533": "Elenco dei tick", "2051558666": "Visualizza cronologia operazioni", + "2051596653": "Demo Zero Spread BVI", "2052022586": "Per migliorare la sicurezza del suo conto MT5, abbiamo aggiornato la nostra politica sulle password.", "2054889300": "Crea \"%1\"", "2055317803": "Copia il link sul browser del tuo smartphone", @@ -3259,8 +3264,8 @@ "-328128497": "Finanziario", "-533935232": "Finanziario BVI", "-565431857": "Finanziaria Labuan", - "-659955365": "Senza swap", "-291535132": "Demo senza swap", + "-499019612": "Zero Spread Demo", "-1472945832": "SVG senza swap", "-144803045": "Sono consentiti solo numeri e questi caratteri speciali: {{permitted_characters}}", "-1450516268": "Sono consentite solo lettere, numeri, spazi, trattini, punti e apostrofi.", @@ -3366,6 +3371,7 @@ "-2072411961": "Il documento di verifica dell'indirizzo è stato verificato", "-384887227": "Aggiorna l'indirizzo nel tuo profilo.", "-1470677931": "CFD su strumenti finanziari.", + "-1595662064": "Zero spread CFDs on financial and derived instruments", "-1998049070": "Se accetti l'uso dei cookies, clicca su Accetto. Per maggiori informazioni, <0>consulta la nostra politica.", "-402093392": "Aggiungi conto Deriv", "-1721181859": "Occorre un conto {{deriv_account}}", @@ -3552,6 +3558,7 @@ "-239789243": "(Licenza n. SIBA/L/18/1114)", "-941636117": "App MetaTrader 5 per Linux", "-1434036215": "Finanziario di prova", + "-659955365": "Senza swap", "-1416247163": "Finanziario STP", "-1637969571": "Demo Swap-Free", "-1882063886": "CFD di prova", @@ -3567,6 +3574,7 @@ "-1385484963": "Conferma per modificare la password {{platform}}", "-1990902270": "Così cambierai la password per tutti i conti {{platform}}.", "-12535938": "*Indice Volatility 250, Indice Volatility 150, Indice Boom 300 e Indice Crash 300", + "-2104148631": "Commissions apply", "-201485855": "Fino a", "-700260448": "demo", "-1769158315": "reale", @@ -3576,13 +3584,13 @@ "-2092058806": "Da 8 a 16 caratteri", "-2051033705": "Un carattere speciale come ( _ @ ? ! / # )", "-1762249687": "Una lettera minuscola", + "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", "-535365199": "Inserisci la password {{platform}} per aggiungere un conto {{account}} {{platform_name}}.", "-184453418": "Inserisci la password {{platform}}", "-393388362": "Stiamo esaminando i tuoi documenti. Questa operazione dovrebbe richiedere 1-3 giorni.", "-2057918502": "Suggerimento: forse hai inserito la password di Deriv, che è diversa dalla password {{platform}}.", "-267598687": "Congratulazioni, hai creato con successo il conto <0/>{{category}} {{platform}} {{type}}. Per iniziare a fare trading, <1 />trasferisci fondi <2 />dal tuo conto Deriv a questo.", "-1475660820": "Il suo conto Deriv MT5 {{type}} è pronto. ", - "-1710177700": "Il suo conto demo {{type}} è pronto.", "-1184248732": "Congratulazioni, hai creato il conto <0/>{{category}} {{platform}} {{type}}. ", "-1928229820": "Reimposta password investitore Deriv X", "-1969916895": "La sua password deve contenere da 8 a 16 caratteri che includano lettere maiuscole e minuscole, e almeno un numero e un carattere speciale ( _ @ ? ! / # ).", diff --git a/packages/translations/src/translations/km.json b/packages/translations/src/translations/km.json index dfcc5bbc7968..73bee715f705 100644 --- a/packages/translations/src/translations/km.json +++ b/packages/translations/src/translations/km.json @@ -141,6 +141,7 @@ "151646545": "មិនអាចអានឯកសារ {{name}} បានទេ", "152415091": "គណនាផលសងគ្រោះជាក់ស្ដែង ។", "152524253": "ផ្លូវលេខនិងទេសចរណ៍គឺមានការងារដោយប្រើកម្មវិធីដែលមានទំហំធំនឹងសកម្មនឹងប្រភេទកិច្ចគោលការក្នុងព្រឹត្តិការណ៍។", + "153485708": "Zero Spread - BVI", "157593038": "​ចំនួនគំរូចនិន្នាទីពី {{ start_number }} ដល់ {{ end_number }}", "157871994": "តោះត្រាតែតៃរក់ទេ។", "158355408": "មនុស្សនេះប្រតេអរម្មចំពោះដូច្នេះមិនអាចប្រើបានរបស់លោកអ្នកប៉ុន្មានពេល។", @@ -293,6 +294,7 @@ "313741895": "ប្រសិនបើក្រោយនេះគឺត្រូវមានថាមពលប្រតិបត្តិនៃក្រុមអាសយដ្ឋានចាស់នេះចូល។ វាអាចត្រូវបានដាក់ត្រឹមត្រូវលើការសម្រេចសង្វាគម្រប់ខាងនៃប្រតិបត្តិបូកបណ្ដោះអាសន្ន។", "315306603": "អ្នកមានគណនីដែលមិនមានរាល់ការបញ្ជាក់ប្រាក់ទេ។ សូមជ្រើសរើសរចនាបថត្រាក្របប្រចា្ចកទេសរបស់អ្នកដើម្បីអាស្រ័យលើគណនីនេះ។", "316694303": "តើវិស័យក្រឡិកមួយមានមួយទេ?", + "318705408": "Demo Zero Spread", "318865860": "close", "318984807": "ប្រសិនបើអ្នកផ្ដោតម្អស់ប្រតិបត្តិយ៉ាងពីរនៅក្ដីប្រតិបត្តិនៃបន្ទប់អ៊ីរ៉ែល។", "321457615": "តើកំហុសមួយមួយពីរ!", @@ -320,6 +322,7 @@ "344418897": "និយាយបានថានៅលើព័ត៌នាមួយ។ អ្នកអាចជ្រើសប្រភេទពណ៌មួយចំនួន៦ដង។", "345320063": "ពេលវេលាខុសហើយ", "345818851": "Sorry, an internal error occurred. Hit the above checkbox to try again.", + "346070861": "Zero Spread", "346843343": "CFDs លើគ្រឿងសម្ភារ និងគណនីនិងកាណ្តារចម្លង។", "347029309": "Forex: standard/micro", "347039138": "Iterate (2)", @@ -897,7 +900,6 @@ "947758334": "ត្រូវការទីក្រុង", "947914894": "បំពេញ  <0>", "948156236": "បង្កើតលេខសំងាត់ {{type}}", - "948176566": "ថ្មី!", "949859957": "ដាក់ស្នើ", "951404247": "រីករាយនឹងការទូទាត់គ្មានរារាំងជាច្រើនរូបិយប័ណ្ណ និងមុខងារអ្នកប្រើប្រាស់មានប្រសិទ្ធិភាពជាមួយការបែងចែកមូលនិធិ។", "952927527": "បានគ្រប់គ្រងដោយ Malta Financial Services Authority (MFSA) (អាជ្ញាប័ណ្ណលេខ IS/70156)", @@ -921,6 +923,7 @@ "975747761": "កំពុងដំណើរការ", "975950139": "ប្រទេសស្នាក់នៅ", "977929335": "ចូលទៅការកំណត់គណនីរបស់ខ្ញុំ", + "979713491": "Zero Spread BVI", "980050614": "ធ្វើបច្ចុប្បន្នភាពឥតឈ្នោះ", "981138557": "បញ្ជួន", "981568830": "អ្នកបានជ្រើសរើសដកខ្លួនអ្នកពីការជួញដូរនៅលើគេហទំព័ររបស់យើងរហូតដល់ {{exclude_until}}។ ប្រសិនបើអ្នកមិនអាចធ្វើការជួញដូរ ឬដាក់ប្រាក់បានទេ បន្ទាប់ពីរយៈពេលដកខ្លួនចេញ សូមទាក់ទងមកយើងខ្ញុំតាមរយៈ <0>ជជែកផ្ទាល់។", @@ -1672,6 +1675,7 @@ "1722056905": "ឯកសារដែលអ្នកបានផ្តល់មិនត្រូវបានគាំទ្រសម្រាប់ប្រទេសរបស់អ្នកទេ។ សូមផ្តល់ឯកសារគាំទ្រសម្រាប់ប្រទេសរបស់អ្នក។", "1722888575": "{{mt5_migration_error}}", "1723069433": "Wallet ថ្មីរបស់អ្នក", + "1723390945": "Your demo {{deriv}} {{type}} account is ready.", "1723589564": "តំណាងនូវចំនួនអតិបរមានៃកុងត្រាដែលនៅសេសសល់នៅក្នុងផ្នែកទាំងឡាយរបស់អ្នក។ បន្ទាត់នីមួយៗនៅក្នុងផ្នែកទាំងឡាយរបស់អ្នកត្រូវបានរាប់ថាជាទីតាំងបើកមួយ។ នៅពេលដែលអតិបរមាត្រូវបានឈានដល់, អ្នកនឹងមិនអាចបើកទីតាំងថ្មីបាន ដោយគ្មានការបិទទីតាំងដែលមានស្រាប់មុន។", "1724367774": "អ្នកអាចធ្វើការដកប្រាក់ងារថ្មីបានកាន់មីជាប់ហើយប៉ុណ្ណោះប្រើប្រាស់របស់អ្នករកនុក្រមចូលដំណើរការ។", "1724696797": "អ្នកត្រូវបានកំណត់ទៅគណនី fiat តែមួយតែប៉ុណ្ណោះ", @@ -2031,6 +2035,7 @@ "2049386104": "We need you to submit these in order to get this account:", "2050170533": "បញ្ជីគំរូដណឺជូន", "2051558666": "មើលប្រវត្តិលទ្ធផលលើអេឡិចត្រូនិច", + "2051596653": "Demo Zero Spread BVI", "2052022586": "ដើម្បីបង្កើនសុវត្ថិភាពគណនី MT5 របស់អ្នក យើងបានធ្វើឱ្យទាន់សម័យនយោបាយពាក្យសម្ងាត់។", "2054889300": "បង្កើត \"%1\"", "2055317803": "ចម្លងតំណរភ្ជាប់ទៅក្នុងកម្មវិធីសារនេះ", @@ -3259,8 +3264,8 @@ "-328128497": "ហិរញ្ញវត្ថុ", "-533935232": "ទីសាធានការ ភូមិសាស្ត្រប៊ីនិងវែកពេជ្រ", "-565431857": "អ្នកចំពោះប្រាក់ប្រចាំកញ្ចប់", - "-659955365": "គ្មានការប្តូរប្រាក់", "-291535132": "គណនីសាកល្បងគ្មានស្វាប់", + "-499019612": "Zero Spread Demo", "-1472945832": "SVG គ្មានស្វាប់", "-144803045": "មានតែនៃលេខ និងតួអក្សរពិសេសទាំងនេះត្រូវបានអនុញ្ញាត៖ {{permitted_characters}}", "-1450516268": "មានតែអក្សរ លេខ ចន្លោះ តិច ចុច និងសញ្ញា​ផ្ទាំងត្រូវបានអនុញ្ញាត។", @@ -3366,6 +3371,7 @@ "-2072411961": "ការបញ្ចូលឯកសាររបស់អ្នកនិងការបញ្ចូលលម្អិតតាមគោលបំណង។", "-384887227": "ធ្វើបច្ចុប្បន្នភាពអាសយដ្ឋានក្រុមហ៊ុនរបស់អ្នក។", "-1470677931": "CFD នៅលើឧបករណ៍ទូទាត់ហិរញ្ញវត្ថុ។", + "-1595662064": "Zero spread CFDs on financial and derived instruments", "-1998049070": "ប្រសិនបើអ្នកយល់ព្រមនឹងការប្រើប្រាស់ខូគីរបស់យើង សូមចុចយល់ព្រម។ សម្រាប់ព័ត៌មានបន្ថែម សូម <0>មើលគោលនយោបាយរបស់យើង។", "-402093392": "បន្ថែមបញ្ចូលគណនី Deriv", "-1721181859": "អ្នកត្រូវការគណនី {{deriv_account}}", @@ -3552,6 +3558,7 @@ "-239789243": "(អាជ្ញាធរដែន SIBA/L/18/1114)", "-941636117": "កម្មវិធី MetaTrader 5 សម្រាប់ប្រព័ន្ធប្រែប្រួលលម្អិត", "-1434036215": "ហើយអ្នកអាចបន្ថែមគណនីពិតប្រាកដតាមសរសេរម៉ាស៊ីនសាស្រ្ត។", + "-659955365": "គ្មានការប្តូរប្រាក់", "-1416247163": "ហិរញ្ញវត្ថុ STP", "-1637969571": "គ្មានស្វាប់សាកល្បង", "-1882063886": "ហើយគឺយើងខ្ញុំអាចបន្ថែមផ្លូវគណនីពិតប្រាកដបាន។", @@ -3567,6 +3574,7 @@ "-1385484963": "បញ្ជាក់ការជ្រើសរើស{{platform}}ពាក្យសម្ងាត់របស់អ្នក", "-1990902270": "វានឹងប្តូរពាក្យសម្ងាត់ទាំងអស់នៃគណនី{{platform}}របស់អ្នក។", "-12535938": "*ស្របច្បាប់តម្រួតលេខ ២៥០, ស្របច្បាប់តម្រួតលេខ ១៥០, ដឺក្រេទីមួយ និងស្របច្បាប់តម្រួតលេខ ៣០០។", + "-2104148631": "Commissions apply", "-201485855": "ដល់", "-700260448": "សាកល្បង", "-1769158315": "ពិត", @@ -3576,13 +3584,13 @@ "-2092058806": "8 ដល់ 16 តួអក្សរ", "-2051033705": "តួអក្សរពិសេសដូចជា ( _ @ ? ! / # )", "-1762249687": "អក្សរតូចមួយ", + "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", "-535365199": "Enter your {{platform}} password to add a {{platform_name}} {{account}} account.", "-184453418": "បញ្ចូលលេខសំងាត់ {{platform}} របស់អ្នក", "-393388362": "យើងកំពុងពិនិត្យឯកសាររបស់អ្នក។ នេះនឹងចំនួនពី១ទៅ៣ថ្ងៃ។", "-2057918502": "Hint: អ្នកអាចបានបញ្ចូលពាក្យសម្ងាត់ Deriv របស់អ្នក ដែលខុសពីពាក្យសម្ងាត់ {{platform}} របស់អ្នក។", "-267598687": "អបអរសាទរ អ្នកបានបង្កើតគណនី{{category}} {{platform}} {{type}} របស់អ្នកដោយជោគជ័យ។ ដើម្បីចាប់ផ្តើមការដំណើរការ សូមផ្ទេរប្រាប់ការប្រាប់ ពីគណនី Deriv រំលឹកនោះទៅក្នុងគណនីនេះ។", "-1475660820": "គណនី Deriv MT5 របស់អ្នកស្រេច។ ", - "-1710177700": "គណនីសាកល្បង {{type}} របស់អ្នកស្រេច។", "-1184248732": "អបអរសាទរ អ្នកបានបង្កើតគណនី <0/>{{category}} {{platform}} {{type}} របស់អ្នកដោយជោគជ័យ។", "-1928229820": "កំណត់លេខសំងាត់វិនិយោគ Deriv X", "-1969916895": "ពាក្យសម្ងាត់របស់អ្នកត្រូវតែមានចន្លោះពី 8-16 តួអក្សរ ដែលរួមបញ្ចូលអក្សរធំ និងអក្សរតូច ហើយយ៉ាងហោចណាស់មានលេខ និងតួអក្សរពិសេសមួយ ( _ @ ? ! / # )។", diff --git a/packages/translations/src/translations/ko.json b/packages/translations/src/translations/ko.json index b560a8071267..794290bc0577 100644 --- a/packages/translations/src/translations/ko.json +++ b/packages/translations/src/translations/ko.json @@ -141,6 +141,7 @@ "151646545": "{{name}} 파일을 읽을 수 없습니다", "152415091": "수학", "152524253": "인기 있으며 사용자 친화적인 저희의 플랫폼을 통해 전 세계 시장에서 거래하세요.", + "153485708": "Zero Spread - BVI", "157593038": "{{ start_number }} 에서 {{ end_number }} 까지 중에서 무작위 정수", "157871994": "링크가 만료되었습니다", "158355408": "일부 서비스는 일시적으로 이용이 불가능할 수 있습니다.", @@ -293,6 +294,7 @@ "313741895": "마지막의 캔들이 검정이었다면 블록은 \"참\"으로 불러옵니다. 이 블록은 Trade 매개변수 루트 블록 내를 제외하고 캔버스의 어느 곳에나 배치될 수 있습니다.", "315306603": "통화가 할당되지 않은 계좌가 있습니다. 이 계좌로 거래하실 통화를 선택해 주시기 바랍니다.", "316694303": "캔들이 검은색인가요?", + "318705408": "Demo Zero Spread", "318865860": "종료", "318984807": "이 블록은 내부에 포함되어 있는 지침들을 특정한 횟수만큼 반복합니다.", "321457615": "문제가 발생했습니다!", @@ -320,6 +322,7 @@ "344418897": "이러한 거래한도 및 자가제한은 귀하께서 {{brand_website_name}} 에서 쓰시는 자금의 금액을 조절하고 <0>책임감 있는 거래를 하실 수 있도록 도와줍니다.", "345320063": "유효하지 않은 타임스탬프", "345818851": "죄송합니다, 내부적인 오류가 발생했습니다. 위의 체크 상자를 클릭하여 다시 시도하세요.", + "346070861": "Zero Spread", "346843343": "카피 트레이딩이 포함된 금융 및 파생 상품에 대한 CFD.", "347029309": "외환: 기준/마이크로", "347039138": "반복 (2)", @@ -897,7 +900,6 @@ "947758334": "도시는 요구되는 항목입니다", "947914894": "가득 충전  <0>", "948156236": "{{type}} 비밀번호 생성하기", - "948176566": "신규!", "949859957": "제출하기", "951404247": "여러 통화에 걸친 원활한 거래와 자금 분리 기능을 갖춘 직관적인 사용자 인터페이스를 즐겨보세요.", "952927527": "몰타 금융 서비스 당국 (MFSA) 에 의해 규제됩니다 (라이센스 번호. IS/70156)", @@ -921,6 +923,7 @@ "975747761": "진행 중", "975950139": "거주 국가", "977929335": "나의 계좌 설정으로 가기", + "979713491": "Zero Spread BVI", "980050614": "지금 업데이트하기", "981138557": "리다이렉트", "981568830": "귀하께서는 {{exclude_until}} 까지 당사의 웹사이트에서 자가제외 하시기로 선택하셨습니다. 만약 귀하의 자가제외 기간 이후에 거래 또는 입금을 진행하실 수 없다면, <0>실시간 채팅을 통해 저희에게 연락해 주시기 바랍니다.", @@ -1672,6 +1675,7 @@ "1722056905": "제공하신 문서는 귀하의 국가에서 지원되지 않습니다. 귀하의 국가에서 지원되는 문서를 제공해 주시기 바랍니다.", "1722888575": "{{mt5_migration_error}}", "1723069433": "새 Wallet", + "1723390945": "Your demo {{deriv}} {{type}} account is ready.", "1723589564": "귀하의 포트폴리오에 있는 처리해야 하는 계약건의 최대 수를 나타냅니다. 귀하의 포트폴리오에서 각각의 줄은 하나의 오픈 포지션을 나타냅니다. 최대 수에 도달되면 귀하께서는 현재 존재하는 포지션을 먼저 닫지 않고서는 새로운 포지션을 열 수 없습니다.", "1724367774": "계정 인증이 완료되면 송금할 수 있습니다.", "1724696797": "귀하께서는 하나의 피아트 통화만 소유하실 수 있습니다.", @@ -2031,6 +2035,7 @@ "2049386104": "이 계정을 받으려면 다음을 제출해야 합니다.", "2050170533": "틱 목록", "2051558666": "거래 내역 확인하기", + "2051596653": "Demo Zero Spread BVI", "2052022586": "MT5 계정 보안을 강화하기 위해 비밀번호 정책을 업그레이드했습니다.", "2054889300": "\"%1\" 생성하기", "2055317803": "해당 링크를 귀하의 모바일 브라우저로 복사해주세요", @@ -3259,8 +3264,8 @@ "-328128497": "금융", "-533935232": "금융 BVI", "-565431857": "금융 라부안", - "-659955365": "스왑 프리", "-291535132": "스왑-프리 데모", + "-499019612": "Zero Spread Demo", "-1472945832": "스왑프리 SVG", "-144803045": "오직 숫자 및 다음의 특수문자들만 허용됩니다: {{permitted_characters}}", "-1450516268": "오직 문자, 숫자, 띄어쓰기, 하이픈, 온점, 및 아포스트로피만 허용됩니다.", @@ -3366,6 +3371,7 @@ "-2072411961": "귀하의 주소 증명이 인증되었습니다", "-384887227": "프로필에서 주소를 업데이트하세요.", "-1470677931": "금융상품 CFD.", + "-1595662064": "Zero spread CFDs on financial and derived instruments", "-1998049070": "귀하께서 저희의 쿠키 활용에 동의하신다면, 동의하기 버튼을 클릭하세요. 더 많은 정보를 위해서는, <0>우리의 정책을 확인해주세요.", "-402093392": "Deriv 계정 추가", "-1721181859": "귀하께서는 {{deriv_account}} 계좌가 필요합니다", @@ -3552,6 +3558,7 @@ "-239789243": "(면허 번호.SIBA/L/18/1114)", "-941636117": "MetaTrader 5 리눅스 앱", "-1434036215": "데모 파이낸셜 (Financial)", + "-659955365": "스왑 프리", "-1416247163": "금융 STP", "-1637969571": "데모 스왑 프리", "-1882063886": "데모 CFD", @@ -3567,6 +3574,7 @@ "-1385484963": "귀하의 {{platform}} 비밀번호 변경 확인", "-1990902270": "이는 귀하의 모든 {{platform}} 계정들의 비밀번호를 바꿀 것입니다.", "-12535938": "*Volatility 250 지수, Volatility 150 지수, Boom 300 지수, Crash 300 지수", + "-2104148631": "Commissions apply", "-201485855": "최대", "-700260448": "데모", "-1769158315": "실제", @@ -3576,13 +3584,13 @@ "-2092058806": "8~16자", "-2051033705": "특수 문자 ( _ @ ? ! / # )와 같은 특수 문자", "-1762249687": "소문자", + "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", "-535365199": "귀하의 {{platform}} 비밀번호를 입력하여 {{platform_name}} {{account}} 계정을 추가하세요.", "-184453418": "귀하의 {{platform}} 비밀번호를 입력하세요", "-393388362": "귀하의 문서를 검토 중입니다.이 작업에는 1~3일 정도 소요됩니다.", "-2057918502": "힌트: 귀하의 {{platform}} 비밀번호와는 다른 Deriv 비밀번호를 입력하셨을 수 있습니다.", "-267598687": "축하드립니다, 귀하께서는 귀하의 <0/>{{category}} {{platform}} {{type}} 계좌를 성공적으로 만드셨습니다. 거래를 시작하려면 <1 />자금을 Deriv 계좌에서 이 계좌로 이체<2 />하세요.", "-1475660820": "귀하의 Deriv MT5 {{type}} 계정이 준비되었습니다. ", - "-1710177700": "데모 {{type}} 계정이 준비되었습니다.", "-1184248732": "축하합니다, <0/>{{category}} {{platform}} {{type}} 계정을 성공적으로 만들었습니다. ", "-1928229820": "Deriv X 투자자 비밀번호 재설정", "-1969916895": "비밀번호는 대문자와 소문자, 숫자 및 특수 문자 ( _ @ ? ! / # ) 하나 이상을 포함하여 8~16자로 구성되어야 합니다.", diff --git a/packages/translations/src/translations/mn.json b/packages/translations/src/translations/mn.json index 4dd103a92125..0f20d17e1919 100644 --- a/packages/translations/src/translations/mn.json +++ b/packages/translations/src/translations/mn.json @@ -141,6 +141,7 @@ "151646545": "{{name}}файлыг унших боломжгүй", "152415091": "Математик", "152524253": "Манай хэрэглэгчид ээлтэй платформоор дэлхийн зах зээл дээр арилжаалаарай.", + "153485708": "Zero Spread - BVI", "157593038": "{{ start_number }} -аас {{ end_number }}хүртэлх санамсаргүй бүхэл тоо", "157871994": "Холбоосын хугацаа дууссан", "158355408": "Зарим үйлчилгээ түр хугацаагаар ашиглах боломжгүй болохыг анхаарна уу. ", @@ -293,6 +294,7 @@ "313741895": "Энэ блок нь сүүлчийн лаа хар өнгөтэй бол “True” -ийг буцаана. Үүнийг Худалдааны параметрүүдийн root блок дотроос бусад зураг дээр хаана ч байрлуулж болно.", "315306603": "Танд валют хуваарилагдаагүй данстай. Энэ дансаар худалдаа хийх валютыг сонгоно уу.", "316694303": "Лаа хар уу?", + "318705408": "Demo Zero Spread", "318865860": "хаах", "318984807": "Энэ блок нь дотор агуулагдсан зааврыг тодорхой хэдэн удаа давтана.", "321457615": "Өө, ямар нэг зүйл буруу болсон!", @@ -320,6 +322,7 @@ "344418897": "Эдгээр арилжааны хязгаар, өөрийгөө гадуурхах нь таныг {{brand_website_name}} дээр зарцуулах мөнгө, цаг хугацааг хянаж, <0>хариуцлагатай арилжаа хийхэд тусалдаг.", "345320063": "Хүчин төгөлдөр бус цагийн тэмдэг", "345818851": "Уучлаарай, дотоод алдаа гарсан. Дахин оролдохын тулд дээрх шалгах хайрцгийг дарна уу.", + "346070861": "Zero Spread", "346843343": "Хуулах арилжаа бүхий санхүүгийн болон гаралтай хэрэгслийн CFD.", "347029309": "Forex: стандарт/микро", "347039138": "Дахин давтах (2)", @@ -897,7 +900,6 @@ "947758334": "Хот шаардлагатай", "947914894": "Доппинг  <0>", "948156236": "{{type}} нууц үг үүсгэх", - "948176566": "Шинэ!", "949859957": "Илгээх", "951404247": "Олон валютаар үл үзэгдэх гүйлгээ, хөрөнгө салан тусгаарлах боломжтой хэрэглэгчийн интерфэйсийг таашаарай.", "952927527": "Мальтын Санхүүгийн Үйлчилгээний Газар (MFSA) -ээр зохицуулагддаг (лицензийн дугаар. НЬ/70156)", @@ -921,6 +923,7 @@ "975747761": "Үргэлжлүүлэн", "975950139": "Оршин суугаа улс", "977929335": "Миний дансны тохиргоо руу очно уу", + "979713491": "Zero Spread BVI", "980050614": "Одоо шинэчлэх", "981138557": "Дахин чиглүүлэх", "981568830": "Та {{exclude_until}}хүртэл манай вэбсайт дээр арилжаалахаас өөрийгөө хасахаар сонгосон. Хэрэв та өөрийгөө хасах хугацааныхаа дараа худалдаа, хадгаламж байршуулах боломжгүй бол шууд чатаар дамжуулан бидэнтэй холбоо бар <0>ина уу.", @@ -1672,6 +1675,7 @@ "1722056905": "Таны өгсөн баримт бичиг танай улсын хувьд дэмжигддэггүй. Өөрийн улсын дэмжлэгтэй баримт бичгийг өгнө үү.", "1722888575": "{{mt5_migration_error}}", "1723069433": "Таны шинэ түрийвч", + "1723390945": "Your demo {{deriv}} {{type}} account is ready.", "1723589564": "Таны багцын үлдэгдэл гэрээний хамгийн их тоог илэрхийлнэ. Таны багцын мөр бүр нэг нээлттэй байрлалд тооцогддог. Хамгийн дээд хэмжээнд хүрсний дараа та одоо байгаа байрлалыг эхлээд хаахгүйгээр шинэ албан тушаалыг нээх боломжгүй болно.", "1724367774": "Та өөрийн дансны баталгаажуулалт дууссаны дараа хөрөнгө шилжүүлэг хийж болно.", "1724696797": "Та зөвхөн нэг фиат дансаар хязгаарлагддаг.", @@ -2031,6 +2035,7 @@ "2049386104": "Энэ дансыг авахын тулд бид эдгээрийг ирүүлэх хэрэгтэй:", "2050170533": "Шалганы жагсаалт", "2051558666": "Гүйлгээний түүхийг харах", + "2051596653": "Demo Zero Spread BVI", "2052022586": "Таны MT5 дансны аюулгүй байдлыг сайжруулахын тулд бид нууц үгийн бодлогоо сайжруулсан.", "2054889300": "“%1” үүсгэх", "2055317803": "Холбоосыг гар утасны хөтөч руугаа хуулна уу", @@ -3259,8 +3264,8 @@ "-328128497": "Санхүүгийн", "-533935232": "Санхүүгийн BVI", "-565431857": "Санхүүгийн Лабуан", - "-659955365": "Өөрчлөлгүй", "-291535132": "Өөрчлөлгүй демо", + "-499019612": "Zero Spread Demo", "-1472945832": "Өөрчлөлгүй SVG", "-144803045": "Зөвхөн тоонууд болон эдгээр тусгай тэмдэгтүүдийг зөвшөөрнө: {{permitted_characters}}", "-1450516268": "Зөвхөн үсэг, тоо, зай, үсэг, хугацаа, апостроф зэргийг зөвшөөрнө.", @@ -3366,6 +3371,7 @@ "-2072411961": "Таны хаягийн нотолгоо баталгаажсан", "-384887227": "Өөрийн профайл дахь хаягийг шинэчилнэ үү.", "-1470677931": "Санхүүгийн хэрэгслийн CFD.", + "-1595662064": "Zero spread CFDs on financial and derived instruments", "-1998049070": "Хэрэв та бидний күүки ашиглахыг зөвшөөрвөл хүлээн зөвшөөрч байгаа бол хүлээн зөвшөөрөх дээр дарна уу. Дэлгэрэнгүй мэдээллийг <0>манай бодлогоос үзнэ үү.", "-402093392": "Дерив данс нэмэх", "-1721181859": "Танд {{deriv_account}} данс хэрэгтэй болно", @@ -3552,6 +3558,7 @@ "-239789243": "(Лицензийн дугаар. SIBA/L/18/1114)", "-941636117": "МетаТрейдер 5 Линукс програм", "-1434036215": "Санхүүгийн демо", + "-659955365": "Өөрчлөлгүй", "-1416247163": "Санхүүгийн STP", "-1637969571": "Демо свопгүй", "-1882063886": "Демо CFD", @@ -3567,6 +3574,7 @@ "-1385484963": "{{platform}} нууц үгээ солихыг баталгаажуулна уу", "-1990902270": "Энэ нь таны бүх {{platform}} дансны нууц үгийг өөрчлөх болно.", "-12535938": "*Тогтмол байдал 250 индекс, хэлбэлзлийн 150 индекс, Boom 300 болон Crash 300 индекс", + "-2104148631": "Commissions apply", "-201485855": "хүртэлх", "-700260448": "демо", "-1769158315": "жинхэнэ", @@ -3576,13 +3584,13 @@ "-2092058806": "8-16 тэмдэгтүүд", "-2051033705": "(_ @? гэх мэт онцгой зан чанар ! /#)", "-1762249687": "Жижиг үсэг", + "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", "-535365199": "{{platform_name}} {{account}} данс нэмэхийн тулд {{platform}} нууц үгээ оруулна уу.", "-184453418": "{{platform}} нууц үгээ оруулна уу", "-393388362": "Бид таны баримт бичгийг хянаж байна. Энэ нь ойролцоогоор 1-3 хоног шаардагдах ёстой.", "-2057918502": "Зөвлөмж: Та {{platform}} нууц үгээсээ өөр өөрийн Deriv нууц үгээ оруулсан байж болох юм.", "-267598687": "Баяр хүргэе, та <0/>{{category}} {{platform}} {{type}} дансаа амжилттай үүсгэлээ. Арилжаа эхлэхийн тулд Deriv дан <2 /> снаасаа хөрөнгөө энэ дансанд <1 /> шилжүүлээрэй.", "-1475660820": "Таны Deriv MT5 {{type}} данс бэлэн боллоо. ", - "-1710177700": "Таны демо {{type}} данс бэлэн боллоо.", "-1184248732": "Баяр хүргэе, та <0/>{{category}} {{platform}} {{type}} дансаа амжилттай үүсгэлээ. ", "-1928229820": "Deriv X хөрөнгө оруулагчийн нууц үгийг дахин тохируулах", "-1969916895": "Таны нууц үг том ба жижиг үсгийг багтаасан 8-16 тэмдэгт хооронд агуулсан байх ёстой бөгөөд дор хаяж нэг тоо болон тусгай тэмдэгт (_ @? ! /#).", diff --git a/packages/translations/src/translations/pl.json b/packages/translations/src/translations/pl.json index a86946538f44..dbf42c380c31 100644 --- a/packages/translations/src/translations/pl.json +++ b/packages/translations/src/translations/pl.json @@ -141,6 +141,7 @@ "151646545": "Nie można odczytać pliku {{name}}", "152415091": "Matematyka", "152524253": "Handluj na światowych rynkach na naszej popularnej i przyjaznej platformie.", + "153485708": "Zero Spread - BVI", "157593038": "losowa liczba całkowita z przedziału od {{ start_number }} do {{ end_number }}", "157871994": "Link wygasł", "158355408": "Niektóre usługi mogą być tymczasowo niedostępne.", @@ -293,6 +294,7 @@ "313741895": "Ten blok zwraca wartość „Prawda”, jeśli ostatnia świeca jest czarna. Można go umieścić w dowolnym miejscu w kanwie z wyjątkiem Parametrów zakładu bloku źródłowego.", "315306603": "Masz konto bez przydzielonej waluty. Wybierz walutę, aby handlować przy użyciu tego konta.", "316694303": "Czy świeca jest czarna?", + "318705408": "Demo Zero Spread", "318865860": "zamknij", "318984807": "Ten blok powtarza instrukcje zawarte w nim określoną liczbę razy.", "321457615": "Ups, coś poszło nie tak!", @@ -320,6 +322,7 @@ "344418897": "Te limity i opcja samodzielnego wykluczenia pomagają kontrolować kwotę pieniędzy inwestowaną na {brand_website_name}} i czas spędzany na platformie i ułatwiają <0>odpowiedzialne inwestowanie.", "345320063": "Nieprawidłowy znacznik czasu", "345818851": "Przepraszamy, wystąpił błąd wewnętrzny. Kliknij powyższe pole wyboru, aby spróbować ponownie.", + "346070861": "Zero Spread", "346843343": "Kontrakty CFD na instrumenty finansowe i instrumenty pochodne z handlem kopiami.", "347029309": "Forex: standardowy/mikro", "347039138": "Iteracja (2)", @@ -897,7 +900,6 @@ "947758334": "Miasto to pole wymagane", "947914894": "Zasil  <0>", "948156236": "Utwórz hasło {{type}}", - "948176566": "Nowy!", "949859957": "Prześlij", "951404247": "Ciesz się płynnymi transakcjami w wielu walutach i intuicyjnym interfejsem użytkownika z segregacją środków.", "952927527": "Podlega pod regulacje instytucji Malta Financial Services Authority (MFSA) (licence no. IS/70156)", @@ -921,6 +923,7 @@ "975747761": "Trwający", "975950139": "Kraj zamieszkania", "977929335": "Przejdź do ustawień swojego konta", + "979713491": "Zero Spread BVI", "980050614": "Aktualizuj teraz", "981138557": "Przekieruj", "981568830": "Zdecydowałeś się wykluczyć się z handlu na naszej stronie internetowej do {{exclude_until}}. Jeśli nie możesz złożyć transakcji lub wpłaty po okresie samowykluczenia, skontaktuj się z nami za pośrednictwem <0>czatu na żywo.", @@ -1672,6 +1675,7 @@ "1722056905": "Dostarczony dokument nie jest akceptowany dla Twojego kraju. Proszę podać dokument akceptowany dla Twojego kraju.", "1722888575": "{{mt5_migration_error}}", "1723069433": "Państwa nowy Wallet", + "1723390945": "Your demo {{deriv}} {{type}} account is ready.", "1723589564": "Pokazuje maksymalną liczbę niezapłaconych kontraktów w Twoim portfolio. Każda linia w Twoim portfolio liczy się jako jedna otwarta pozycja. Po osiągnięciu maksimum nie będziesz mieć możliwości otwierania nowych pozycji bez uprzedniego zamknięcia dotychczasowych pozycji.", "1724367774": "Możesz dokonać przelewu po zakończeniu weryfikacji konta.", "1724696797": "Obowiązuje Cię ograniczenie do jednego konta fiducjarnego.", @@ -2031,6 +2035,7 @@ "2049386104": "Aby uzyskać to konto, musisz je przesłać:", "2050170533": "Lista ticków", "2051558666": "Zobacz historię transakcji", + "2051596653": "Demo Zero Spread BVI", "2052022586": "Aby zwiększyć bezpieczeństwo Twojego konta MT5, zaktualizowaliśmy naszą politykę dotyczącą haseł.", "2054889300": "Utwórz „%1”", "2055317803": "Skopiuj link do przeglądarki na swoim urządzeniu mobilnym", @@ -3259,8 +3264,8 @@ "-328128497": "Finansowe", "-533935232": "Finansowe BVI", "-565431857": "Finansowe Labuan", - "-659955365": "Swap-Free", "-291535132": "Demo bez Swapu", + "-499019612": "Zero Spread Demo", "-1472945832": "SVG bez wymiany", "-144803045": "Dozwolone są tylko liczby i następujące znaki specjalne: {{permitted_characters}}", "-1450516268": "Dozwolone są wyłącznie litery, cyfry, znak spacji, myślnik, kropka i apostrof.", @@ -3366,6 +3371,7 @@ "-2072411961": "Twój dowód adresu został zweryfikowany", "-384887227": "Zaktualizuj adres w swoim profilu.", "-1470677931": "CFD na instrumenty finansowe.", + "-1595662064": "Zero spread CFDs on financial and derived instruments", "-1998049070": "Jeśli zgadzasz się na wykorzystywanie przez nas plików cookies, kliknij Akceptuję. <0>Przeczytaj naszą politykę, aby uzyskać więcej informacji.", "-402093392": "Dodaj konto Deriv", "-1721181859": "Potrzebne Ci będzie konto {{deriv_account}}", @@ -3552,6 +3558,7 @@ "-239789243": "(Licencja nr. SIBA/L/18/1114)", "-941636117": "Aplikacja MetaTrader 5 na Linux", "-1434036215": "Demo finansowe", + "-659955365": "Swap-Free", "-1416247163": "Finansowe STP", "-1637969571": "Demo Swap-Free", "-1882063886": "Demo CFD", @@ -3567,6 +3574,7 @@ "-1385484963": "Potwierdź, aby zmienić swoje hasło {{platform}}", "-1990902270": "Spowoduje to zmianę hasła do wszystkich kont {{platform}}.", "-12535938": "*Indeks Volatility 250, Indeks Volatility 150, Indeks Boom 300 i Crash 300.", + "-2104148631": "Commissions apply", "-201485855": "Do", "-700260448": "demo", "-1769158315": "prawdziwe", @@ -3576,13 +3584,13 @@ "-2092058806": "8 do 16 znaków", "-2051033705": "Znak specjalny, taki jak ( _ @ ? ! / # )", "-1762249687": "Mała litera", + "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", "-535365199": "Wprowadź swoje hasło {{platform}}, aby dodać konto {{platform_name}} {{account}}.", "-184453418": "Wprowadź swoje hasło {{platform}}", "-393388362": "Sprawdzamy Twoje dokumenty. Powinno to zająć około 1-3 dni.", "-2057918502": "Wskazówka: Możliwe, że wprowadzono hasło Deriv, które różni się od hasła {{platform}}.", "-267598687": "Gratulacje, Twoje konto <0/>{{category}} {{platform}} {{type}} zostało utworzone. Aby rozpocząć handel, <1 />przelej środki <2 />ze swojego konta Deriv na to konto.", "-1475660820": "Twoje konto Deriv MT5 {{type}} jest gotowe. ", - "-1710177700": "Twoje konto demo {{type}} jest gotowe.", "-1184248732": "Gratulacje, pomyślnie utworzono konto <0/>{{category}} {{platform}} {{type}}. ", "-1928229820": "Zresetuj hasło inwestora Deriv X", "-1969916895": "Twoje hasło musi zawierać od 8 do 16 znaków zawierających wielkie i małe litery oraz co najmniej jedną cyfrę i znak specjalny ( _ @ ? ! / # ).", diff --git a/packages/translations/src/translations/pt.json b/packages/translations/src/translations/pt.json index c05b3912584b..4b89e8eac877 100644 --- a/packages/translations/src/translations/pt.json +++ b/packages/translations/src/translations/pt.json @@ -141,6 +141,7 @@ "151646545": "Não é possível ler o ficheiro {{name}}", "152415091": "Matemática", "152524253": "Negoceie nos mercados mundiais com a nossa plataforma popular e intuitiva.", + "153485708": "Zero Spread - BVI", "157593038": "número inteiro aleatório de {{ start_number }} a {{ end_number }}", "157871994": "Link expirado", "158355408": "Alguns serviços podem estar temporariamente indisponíveis.", @@ -293,6 +294,7 @@ "313741895": "Este bloco devolve \"True\" se a última vela for preta. Pode ser colocado em qualquer lugar do ecrã, exceto no bloco base dos parâmetros de negociação.", "315306603": "Tem uma conta que não tem uma moeda atribuída. Por favor, escolha uma moeda para negociar com esta conta.", "316694303": "A vela é preta?", + "318705408": "Demo Zero Spread", "318865860": "fechar", "318984807": "Este bloco repete as instruções contidas nele por um número específico de vezes.", "321457615": "Oops, alguma coisa correu mal!", @@ -320,6 +322,7 @@ "344418897": "Estes limites de negociação e autoexclusão ajudam-no a controlar a quantidade de dinheiro e tempo que gasta em {{brand_website_name}} e a exercer a <0>negociação responsável.", "345320063": "Carimbo de data/hora inválido", "345818851": "Desculpe, ocorreu um erro interno. Clique na caixa de seleção acima para tentar novamente.", + "346070861": "Zero Spread", "346843343": "CFDs sobre instrumentos financeiros e derived com \"copy trading\".", "347029309": "Forex: padrão/micro", "347039138": "Iterar (2)", @@ -897,7 +900,6 @@ "947758334": "A cidade é obrigatória", "947914894": "Carregar  <0>", "948156236": "Criar palavra-passe {{type}}", - "948176566": "Novo!", "949859957": "Enviar", "951404247": "Desfrute de transações sem interrupções em diversas moedas e de uma interface de utilizador intuitiva com segregação de fundos.", "952927527": "Regulado pela Malta Financial Services Authority (MFSA) (licença no. IS/70156)", @@ -921,6 +923,7 @@ "975747761": "Em curso", "975950139": "País de residência", "977929335": "Aceder às definições da minha conta", + "979713491": "Zero Spread BVI", "980050614": "Atualizar agora", "981138557": "Reencaminhamento", "981568830": "Optou por excluir-se das negociações no nosso site até {{exclude_until}}. Se não conseguir efetuar uma negociação ou depósito após o período de autoexclusão, contacte-nos via <0>live chat.", @@ -1672,6 +1675,7 @@ "1722056905": "O documento que forneceu não é válido para o seu país. Por favor, forneça um documento válido.", "1722888575": "{{mt5_migration_error}}", "1723069433": "A sua nova Wallet", + "1723390945": "Your demo {{deriv}} {{type}} account is ready.", "1723589564": "Representa o número máximo de contratos pendentes na sua carteira. Cada linha na sua carteira conta para uma posição aberta. Uma vez atingido o máximo, não será possível abrir novas posições sem fechar primeiro uma posição existente.", "1724367774": "Assim que a validação da sua conta estiver concluída, poderá proceder à transferência de fundos.", "1724696797": "Está limitado a uma única conta fiduciária.", @@ -2031,6 +2035,7 @@ "2049386104": "Para obter esta conta, é necessário enviar:", "2050170533": "Lista de Ticks", "2051558666": "Ver o histórico de transacções", + "2051596653": "Demo Zero Spread BVI", "2052022586": "Para reforçar a segurança da sua conta MT5, atualizámos a nossa política de palavras-passe.", "2054889300": "Criar \"%1”", "2055317803": "Copiar a ligação para o browser do telemóvel", @@ -3259,8 +3264,8 @@ "-328128497": "Financeira", "-533935232": "BVI Financeira", "-565431857": "Labuan Financeira", - "-659955365": "Sem swap", "-291535132": "Demo Sem Swap", + "-499019612": "Zero Spread Demo", "-1472945832": "SVG Sem Swap", "-144803045": "Só são permitidos números e estes caracteres especiais: {{permitted_characters}}", "-1450516268": "Só são permitidas letras, números, espaço, hífen, ponto final e apóstrofo.", @@ -3366,6 +3371,7 @@ "-2072411961": "O seu comprovativo de morada foi verificado", "-384887227": "Atualize o endereço no seu perfil.", "-1470677931": "CFDs sobre instrumentos financeiros.", + "-1595662064": "Zero spread CFDs on financial and derived instruments", "-1998049070": "Se concordar com a nossa utilização de cookies, clique em Aceitar. Para mais informações, <0>consulte a nossa política.", "-402093392": "Adicionar conta Deriv", "-1721181859": "É necessária uma conta {{deriv_account}}", @@ -3552,6 +3558,7 @@ "-239789243": "(Licença n.º SIBA/L/18/1114)", "-941636117": "MetaTrader 5 Linux app", "-1434036215": "Demo Financeira", + "-659955365": "Sem swap", "-1416247163": "Financeira STP", "-1637969571": "Demo Sem Swap", "-1882063886": "CFDs demo", @@ -3567,6 +3574,7 @@ "-1385484963": "Confirmar para alterar a sua senha {{platform}}", "-1990902270": "Isto irá alterar a senha de todas as suas contas {{platform}}.", "-12535938": "*Índice Volatility 250, Índice Volatility 150, Índice Boom 300 e Índice Crash 300", + "-2104148631": "Commissions apply", "-201485855": "Até", "-700260448": "demo", "-1769158315": "real", @@ -3576,13 +3584,13 @@ "-2092058806": "8 a 16 caracteres", "-2051033705": "Caracteres especiais como ( _ @ ? ! / # )", "-1762249687": "Letras minúsculas", + "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", "-535365199": "Introduza a sua senha {{platform}} para adicionar uma conta {{platform_name}} {{account}}.", "-184453418": "Insira a sua senha {{platform}}", "-393388362": "Estamos a analisar os seus documentos. Este processo deve demorar cerca de 1 a 3 dias.", "-2057918502": "Sugestão: Pode ter introduzido a sua senha Deriv, que difere da sua senha {{platform}}.", "-267598687": "Parabéns, criou com sucesso a sua conta <0/>{{category}} {{platform}} {{type}}. Para começar a negociar, <1 />transfira fundos <2 />da sua conta Deriv para esta conta.", "-1475660820": "A sua conta Deriv MT5 {{type}} está pronta. ", - "-1710177700": "A sua conta demo {{type}} está pronta.", "-1184248732": "Parabéns, criou com sucesso a sua conta <0/>{{category}} {{platform}} {{type}}. ", "-1928229820": "Redefinir a senha do investidor da Deriv X", "-1969916895": "A sua palavra-passe deve conter entre 8 e 16 caracteres, incluindo letras maiúsculas e minúsculas, e pelo menos um número e um carácter especial ( _ @ ? ! / # ).", diff --git a/packages/translations/src/translations/ru.json b/packages/translations/src/translations/ru.json index 364f9937e626..e33332f3a7dd 100644 --- a/packages/translations/src/translations/ru.json +++ b/packages/translations/src/translations/ru.json @@ -141,6 +141,7 @@ "151646545": "Не удалось прочитать файл {{name}}", "152415091": "Математика", "152524253": "Торгуйте на мировых рынках с нашей популярной и удобной платформы.", + "153485708": "Zero Spread - BVI", "157593038": "случайное целое число от {{ start_number }} до {{ end_number }}", "157871994": "Срок действия ссылки истек", "158355408": "Некоторые сервисы могут быть временно недоступны.", @@ -293,6 +294,7 @@ "313741895": "Этот блок возвращает значение “Верно”, если последняя свеча черная. Блок может быть размещен где угодно, за исключением корневого блока параметров контракта.", "315306603": "У вас есть счет, на котором не выбрана валюта. Пожалуйста, выберите валюту, в которой вы хотите торговать на этом счете.", "316694303": "Свеча чёрная?", + "318705408": "Demo Zero Spread", "318865860": "закрыть", "318984807": "Этот блок повторяет находящиеся в нем инструкции указанное количество раз.", "321457615": "Упс, что-то пошло не так!", @@ -320,6 +322,7 @@ "344418897": "Эти торговые лимиты и самоисключение помогают вам контролировать количество денег и времени, которые вы тратите на {{brand_website_name}}, и практиковать <0>ответственную торговлю.", "345320063": "Неверная временная метка", "345818851": "Извините, произошла внутренняя ошибка. Нажмите флажок выше, чтобы повторить попытку.", + "346070861": "Zero Spread", "346843343": "CFD на Derived и финансовые инструменты с копи-трейдингом.", "347029309": "Форекс: стандартные/микро", "347039138": "Повторить (2)", @@ -897,7 +900,6 @@ "947758334": "Необходимо указать город", "947914894": "Пополнить  <0>", "948156236": "Создать пароль {{type}}", - "948176566": "Новинка!", "949859957": "Подтвердить", "951404247": "Удобные транзакции в нескольких валютах и интуитивно понятный интерфейс с разделением средств.", "952927527": "Регулируется Malta Financial Services Authority (MFSA) (лицензия # IS/70156)", @@ -921,6 +923,7 @@ "975747761": "Продолжение", "975950139": "Страна проживания", "977929335": "Перейти в настройки счета", + "979713491": "Zero Spread BVI", "980050614": "Обновить сейчас", "981138557": "Переадресация", "981568830": "Вы решили исключить себя из торговли на нашем сайте до {{exclude_until}}. Если вы не можете купить контракт или пополнить счет после периода самоисключения, свяжитесь с нами через <0>чат.", @@ -1672,6 +1675,7 @@ "1722056905": "Предоставленный документ не поддерживается для вашей страны. Пожалуйста, предоставьте документ, поддерживаемый для вашей страны.", "1722888575": "{{mt5_migration_error}}", "1723069433": "Ваш новый Wallet", + "1723390945": "Your demo {{deriv}} {{type}} account is ready.", "1723589564": "Представляет собой максимальное количество открытых контрактов в вашем портфеле. Каждая строка в портфеле отображает открытую позицию. Когда вы достигнете лимита, вы не сможете открывать новые контракты, пока не закроете текущие.", "1724367774": "Вы сможете осуществить перевод средств, как только проверка вашего счета будет завершена.", "1724696797": "Вы можете открыть только один фиатный счет.", @@ -2031,6 +2035,7 @@ "2049386104": "Чтобы открыть этот счет, нам понадобится следующее:", "2050170533": "Список тиков", "2051558666": "См. историю транзакций", + "2051596653": "Demo Zero Spread BVI", "2052022586": "Чтобы повысить безопасность вашего счета МТ5, мы обновили нашу политику в отношении паролей.", "2054889300": "Создать \"%1\"", "2055317803": "Скопируйте ссылку в браузер своего телефона", @@ -3259,8 +3264,8 @@ "-328128497": "Financial", "-533935232": "Financial BVI", "-565431857": "Financial Labuan", - "-659955365": "Без свопов", "-291535132": "Демо Swap-Free", + "-499019612": "Zero Spread Demo", "-1472945832": "Swap-Free SVG", "-144803045": "Разрешены только цифры и следующие символы: {{permitted_characters}}", "-1450516268": "Разрешены только буквы, цифры, пробелы, дефисы, точки и апострофы.", @@ -3366,6 +3371,7 @@ "-2072411961": "Ваше подтверждение адреса принято", "-384887227": "Обновите адрес в своем профиле.", "-1470677931": "CFD на финансовые инструменты.", + "-1595662064": "Zero spread CFDs on financial and derived instruments", "-1998049070": "Если вы согласны на использование нами файлов cookie, нажмите Принять. Для получения дополнительной информации <0>см. нашу политику.", "-402093392": "Добавить счет Deriv", "-1721181859": "Вам понадобится счет {{deriv_account}}", @@ -3552,6 +3558,7 @@ "-239789243": "(Лицензия SIBA/L/18/1114)", "-941636117": "Приложение MetaTrader 5 для Linux", "-1434036215": "Демо Financial", + "-659955365": "Без свопов", "-1416247163": "Financial STP", "-1637969571": "Демо Swap-Free", "-1882063886": "Демо CFD", @@ -3567,6 +3574,7 @@ "-1385484963": "Подтвердите изменение пароля {{platform}}", "-1990902270": "Пароль будет изменен для всех ваших счетов {{platform}}.", "-12535938": "* Индекс Volatility 250, индекс Volatility 150, индекс Boom 300 и Crash 300.", + "-2104148631": "Commissions apply", "-201485855": "До", "-700260448": "демо", "-1769158315": "реальный", @@ -3576,13 +3584,13 @@ "-2092058806": "От 8 до 16 символов", "-2051033705": "Специальный символ, такой как ( _ @ ? ! / # )", "-1762249687": "Строчная буква", + "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", "-535365199": "Введите пароль {{platform}}, чтобы добавить {{account}} счет {{platform_name}}.", "-184453418": "Введите пароль {{platform}}", "-393388362": "Мы проверяем ваши документы. Это займет 1-3 дня.", "-2057918502": "Подсказка: возможно, вы ввели свой пароль Deriv, который отличается от вашего пароля {{platform}}.", "-267598687": "Поздравляем, вы успешно открыли счет <0/>{{category}} {{platform}} {{type}}. Чтобы начать торговлю, <1 />переведите средства <2 />с Вашего счета Deriv на этот счет.", "-1475660820": "Ваш аккаунт Deriv MT5 {{type}} готов. ", - "-1710177700": "Ваш демо-счет {{type}} готов.", "-1184248732": "Поздравляем, ваш счет открыт <0/>{{category}} {{platform}} {{type}}. ", "-1928229820": "Сбросить инвесторский пароль Deriv X", "-1969916895": "Ваш пароль должен содержать от 8 до 16 символов, включающих заглавные и строчные буквы, а также хотя бы одну цифру и специальный символ ( _ @ ? ! / # ).", diff --git a/packages/translations/src/translations/si.json b/packages/translations/src/translations/si.json index 00a6740b9738..3f2bcfecdb2c 100644 --- a/packages/translations/src/translations/si.json +++ b/packages/translations/src/translations/si.json @@ -141,6 +141,7 @@ "151646545": "{{name}} ගොනුව කියවීමට නොහැකි විය", "152415091": "ගණිතය", "152524253": "අපගේ ජනප්‍රිය​ පරිශීලක-හිතකාමී වේදිකාව සමඟ ලෝක වෙළඳපල ගනුදෙනු කරන්න.", + "153485708": "Zero Spread - BVI", "157593038": "{{ start_number }} සිට {{ end_number }} දක්වා අහඹු පූර්ණ සංඛ්‍යාවක්", "157871994": "සබැඳිය කල් ඉකුත් විය", "158355408": "සමහර සේවා තාවකාලිකව ලබා ගත නොහැක.", @@ -293,6 +294,7 @@ "313741895": "අවසාන candle එක කළු නම් මෙම කොටසෙන් ලැබෙන අගය 'සත්‍ය' වේ. එය ගනුදෙනු පරාමිති මූල කොටස තුළ හැර කැන්වසය මත ඕනෑම තැනක තැබිය හැකිය.", "315306603": "ඔබට මුදල් පවරා නොමැති ගිණුමක් ඇත. කරුණාකර මෙම ගිණුම සමඟ ගනුදෙනු කිරීමට මුදල් ඒකකයක් තෝරන්න.", "316694303": "Candle කළු ද?", + "318705408": "Demo Zero Spread", "318865860": "වසන්න", "318984807": "මෙම කොටස් නිශ්චිත වාර ගණනක් සඳහා එහි අඩංගු උපදෙස් පුනරාවර්තනය කරයි.", "321457615": "අපොයි, යමක් වැරදී ඇත!", @@ -320,6 +322,7 @@ "344418897": "මෙම ගනුදෙනු සීමා සහ ස්වයං ව්‍යවර්තන මඟින් ඔබ {{brand_website_name}} සඳහා වියදම් කරන මුදල් හා කාලය පාලනය කිරීමට සහ <0>වගකීම්සහගත ලෙස ගනුදෙනු කිරීමට හැකි වේ.", "345320063": "වලංගු නොවන කාල මුද්‍රාව", "345818851": "කණගාටුයි, අභ්‍යන්තර දෝෂයක් සිදු විය. නැවත උත්සාහ කිරීමට ඉහත සලකුණු කොටුව ක්ලික් කරන්න.", + "346070861": "Zero Spread", "346843343": "පිටපත් ගනුදෙනු සමඟ මූල්‍ය සහ ව්‍යුත්පන්න මෙවලම් මත CFD.", "347029309": "Forex: සම්මත/ක්ෂුද්‍ර", "347039138": "පුනරුච්චාරණය කරන්න (2)", @@ -897,7 +900,6 @@ "947758334": "නගරය​ අවශ්‍යයි", "947914894": "Top up කරන්න  <0>", "948156236": "{{type}} මුරපදය සාදන්න", - "948176566": "අලුත්!", "949859957": "ඉදිරිපත් කරන්න", "951404247": "බහුවිධ මුදල් වර්ග හරහා බාධාවකින් තොරව ගනුදෙනු සහ අරමුදල් වෙන් කිරීම සමඟ අවබෝධාත්මක පරිශීලක අතුරු මුහුණතක් භුක්ති විඳින්න.", "952927527": "Malta මූල්‍ය සේවා අධිකාරිය (MFSA) විසින් නියාමනය කරනු ලැබේ (බලපත්‍ර අංක. IS/70156)", @@ -921,6 +923,7 @@ "975747761": "අඛණ්ඩව", "975950139": "පදිංචි රට", "977929335": "මගේ ගිණුම් සැකසීම් වෙත යන්න", + "979713491": "Zero Spread BVI", "980050614": "දැන් යාවත්කාලීන කරන්න", "981138557": "යළි හරවා යැවීම", "981568830": "ඔබ {{exclude_until}} දක්වා අපගේ වෙබ් අඩවියේ ගනුදෙනු කිරීමෙන් ඔබව ව්‍යවර්තනය කිරීමට තෝරාගෙන ඇත. ඔබේ ස්වයං ව්‍යවර්තන කාලයෙන් පසු ඔබට ගනුදෙනුවක් හෝ තැන්පතුවක් කිරීමට නොහැකි නම්, කරුණාකර <0>සජීවී කථාබස් හරහා අප හා සම්බන්ධ වන්න.", @@ -1672,6 +1675,7 @@ "1722056905": "ඔබ ලබා දුන් ලේඛනය ඔබේ රට සඳහා සහාය නොදක්වයි. කරුණාකර ඔබේ රට සඳහා සහාය දක්වන ලේඛනයක් සපයන්න.", "1722888575": "{{mt5_migration_error}}", "1723069433": "ඔබේ නව Wallet", + "1723390945": "Your demo {{deriv}} {{type}} account is ready.", "1723589564": "ඔබේ ආයෝජන කළඹෙහි ඇති උපරිම ගිවිසුම් සංඛ්‍යාව නියෝජනය කරයි. ඔබේ ආයෝජන කළඹෙහි ඇති සෑම පේළියක්ම එක් විවෘත ස්ථානයක් ලෙස සලකනු ලැබේ. උපරිමයට ළඟා වූ පසු, පළමුව පවතින ස්ථානයක් නොවසා ඔබට නව ස්ථාන විවෘත කිරීමට නොහැකි වනු ඇත.", "1724367774": "ඔබේ ගිණුමේ සත්‍යාපනය සම්පූර්ණ වූ පසු ඔබට මුදල් හුවමාරුවක් සිදු කළ හැක.", "1724696797": "ඔබ එක් ෆියට් ගිණුමකට පමණක් සීමා විය යුතුය.", @@ -2031,6 +2035,7 @@ "2049386104": "මෙම ගිණුම ලබා ගැනීම සඳහා අපට ඔබ පහත සඳහන් දේවල් ඉදිරිපත් කළ යුතුය:", "2050170533": "ටික් ලැයිස්තුව", "2051558666": "ගනුදෙනු ඉතිහාසය බලන්න", + "2051596653": "Demo Zero Spread BVI", "2052022586": "ඔබේ MT5 ගිණුමේ ආරක්ෂාව වැඩි දියුණු කිරීම සඳහා අපි අපගේ මුරපද ප්‍රතිපත්තිය උත්ශ්‍රේණි කර ඇත.", "2054889300": "“%1” සාදන්න", "2055317803": "සබැඳිය ඔබේ ජංගම බ්‍රවුසරයට පිටපත් කරන්න", @@ -3259,8 +3264,8 @@ "-328128497": "Financial", "-533935232": "මූල්‍ය BVI", "-565431857": "Financial Labuan", - "-659955365": "නිදහස් හුවමාරු", "-291535132": "Swap-Free ආදර්ශන​", + "-499019612": "Zero Spread Demo", "-1472945832": "නිදහස් හුවමාරු SVG", "-144803045": "අංක සහ මෙම විශේෂ අනුලකුණුවලට පමණක් අවසර ඇත: {{permitted_characters}}", "-1450516268": "අකුරු, ඉලක්කම්, අවකාශ, හයිපන, තිත සහ උඩු කොමා සඳහා පමණක් අවසර ඇත.", @@ -3366,6 +3371,7 @@ "-2072411961": "ඔබගේ ලිපිනය සනාථ කිරීම සත්‍යාපනය කර ඇත", "-384887227": "ඔබගේ පැතිකඩෙහි ලිපිනය යාවත්කාලීන කරන්න.", "-1470677931": "මූල්‍ය මෙවලම් මත CFDs.", + "-1595662064": "Zero spread CFDs on financial and derived instruments", "-1998049070": "ඔබ අපගේ කුකීස් භාවිතයට එකඟ නම්, පිළිගන්න මත ක්ලික් කරන්න. වැඩි විස්තර සඳහා, <0>අපගේ ප්‍රතිපත්තිය බලන්න.", "-402093392": "Deriv ගිණුම එකතු කරන්න", "-1721181859": "ඔබට {{deriv_account}} ගිණුමක් අවශ්‍ය වේ", @@ -3552,6 +3558,7 @@ "-239789243": "(බලපත්‍ර අංකය SIBA/L/18/1114)", "-941636117": "MetaTrader 5 Linux යෙදුම", "-1434036215": "Financial ආදර්ශන", + "-659955365": "නිදහස් හුවමාරු", "-1416247163": "Financial STP", "-1637969571": "නිදහස් හුවමාරු ආදර්ශන​", "-1882063886": "ආදර්ශන CFD", @@ -3567,6 +3574,7 @@ "-1385484963": "ඔබේ {{platform}} මුරපදය වෙනස් කිරීමට තහවුරු කරන්න", "-1990902270": "මෙය ඔබේ සියලුම {{platform}} ගිණුම් සඳහා මුරපදය වෙනස් කරනු ඇත.", "-12535938": "*250 අස්ථායීතා දර්ශකය, 150 අස්ථායීතා දර්ශකය, Boom 300 සහ Crash 300 දර්ශකය", + "-2104148631": "Commissions apply", "-201485855": "දක්වා", "-700260448": "ආදර්ශන​ ගිණුම", "-1769158315": "සැබෑ", @@ -3576,13 +3584,13 @@ "-2092058806": "අක්ෂර 8 සිට 16 දක්වා", "-2051033705": "(_@?! / #) වැනි විශේෂ අනුලකුණක්", "-1762249687": "සිම්පල් අකුරක්", + "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", "-535365199": "{{platform_name}} {{account}} ගිණුමක් එක් කිරීමට ඔබේ {{platform}} මුරපදය ඇතුළත් කරන්න.", "-184453418": "ඔබේ {{platform}} මුරපදය ඇතුළත් කරන්න", "-393388362": "අපි ඔබේ ලේඛන සමාලෝචනය කරමින් සිටිමු. මේ සඳහා දින 1 සිට 3 දක්වා කාලයක් ගත විය හැක.", "-2057918502": "ඉඟිය: ඔබ ඔබේ Deriv මුරපදය ඇතුළත් කර තිබිය හැකි අතර එය ඔබේ {{platform}} මුරපදයට වඩා වෙනස් වේ.", "-267598687": "සුභ පැතුම්, ඔබ ඔබේ <0/>{{category}} {{platform}} {{type}} ගිණුම සාර්ථකව නිර්මාණය කර ඇත. ගනුදෙනු ආරම්භ කිරීමට, ඔබේ Deriv ගිණුමෙන් මෙම ගිණුමට <1 />අරමුදල් මාරු <2 />කරන්න.", "-1475660820": "ඔබේ Deriv MT5 {{type}} ගිණුම සූදානම්. ", - "-1710177700": "ඔබේ ආදර්ශන {{type}} ගිණුම සූදානම්.", "-1184248732": "සුභ පැතුම්, ඔබ ඔබේ <0/>{{category}} {{platform}} {{type}} ගිණුම සාර්ථකව නිර්මාණය කර ඇත. ", "-1928229820": "Deriv X ආයෝජක මුරපදය නැවත සකසන්න", "-1969916895": "ඔබේ මුරපදයේ කැපිටල් සහ සිම්පල් අකුරු සහ අවම වශයෙන් එක් අංකයක් සහ විශේෂ අක්ෂර ( _ @ ? ! / # ) ඇතුළත් විය යුතු අතර, අක්ෂර 8-16 ක් අඩංගු විය යුතුය.", diff --git a/packages/translations/src/translations/sw.json b/packages/translations/src/translations/sw.json index 933c060ff867..15ff294140b0 100644 --- a/packages/translations/src/translations/sw.json +++ b/packages/translations/src/translations/sw.json @@ -141,6 +141,7 @@ "151646545": "Haiwezi kusoma faili {{name}}", "152415091": "Hisabati", "152524253": "Fanya biashara katika masoko ya ulimwengu na majukwaa yetu yaliyo maarufu na rafiki kwa mtumiaji.", + "153485708": "Zero Spread - BVI", "157593038": "jumla ya kawaida kutoka {{ start_number }} hadi {{ end_number }}", "157871994": "Kiunganishi kimeisha muda", "158355408": "Huenda baadhi ya huduma zisipatikane kwa muda.", @@ -293,6 +294,7 @@ "313741895": "Kizuizi hiki kinakuwa “Kweli” ikiwa candle ya mwisho ni nyeusi. Inaweza kuwekwa mahali popote kwenye canvas isipokuwa ndani ya kizuizi cha vigezo vya Biashara.", "315306603": "Una akaunti ambayo haina aina ya sarafu. Tafadhali chagua sarafu ya kufanya biashara na akaunti hii.", "316694303": "Je, candle ni nyeusi?", + "318705408": "Demo Zero Spread", "318865860": "funga", "318984807": "Kizuizi hiki kinarudia maelekezo yaliyomo ndani yake kwa idadi maalum ya muda.", "321457615": "Oops, kuna kitu hakijaenda sawa!", @@ -320,6 +322,7 @@ "344418897": "Ukomo huu wa biashara na kujitenga-binafsi hukusaidia kudhibiti kiasi cha pesa na wakati unaotumia kwenye {{brand_website_name}} na kufanya <0>biashara kistaarabu.", "345320063": "Muda uliowekwa si sahihi", "345818851": "Samahani, hitilafu ya ndani ilitokea. Bonyeza kisanduku hapo juu kujaribu tena.", + "346070861": "Zero Spread", "346843343": "CFDs kwenye vyombo vya kifedha na derived kwa biashara ya kunakili.", "347029309": "Forex: standard/mikro", "347039138": "Rudia (2)", @@ -897,7 +900,6 @@ "947758334": "Jiji linahitajika", "947914894": "Ongeza salio  <0>", "948156236": "Unda nenosiri la {{type}}", - "948176566": "Mpya!", "949859957": "Wasilisha", "951404247": "Furahia miamala isiyo na dosari katika sarafu mbalimbali na kiolesura bora cha utumiaji na utengaji wa fedha.", "952927527": "Imedhibitiwa na Malta Financial Services Authority (MFSA) (leseni na. IS/70156)", @@ -921,6 +923,7 @@ "975747761": "Inaendelea", "975950139": "Nchi ya Makazi", "977929335": "Nenda kwenye mipangilio ya akaunti yangu", + "979713491": "Zero Spread BVI", "980050614": "Sasisha sasa", "981138557": "Inaelekeza kwingine", "981568830": "Umechagua kujitenga binafsi kufanya biashara kwenye wavuti yetu hadi {{exclude_until}}. Ikiwa huwezi kufanya biashara au kuweka pesa baada ya kipindi chako cha kujitenga-binafsi kuisha, tafadhali wasiliana nasi kupitia <0>mazungumzo mubashara.", @@ -1672,6 +1675,7 @@ "1722056905": "Hati uliyotoa haiwezi kutumika kwa nchi yako. Tafadhali toa hati inayoweza kutumika kwa nchi yako.", "1722888575": "{{mt5_migration_error}}", "1723069433": "Wallet yako mpya", + "1723390945": "Your demo {{deriv}} {{type}} account is ready.", "1723589564": "Huwakilisha idadi kubwa ya mikataba bora katika mkoba wako wa kazi. Kila mstari katika mkoba wako wa kazi huhesabiwa kuwa ni nafasi moja iliyo wazi. Mara tu kiwango cha juu kitapofikiwa, hutaweza kufungua nafasi mpya bila kufunga nafasi iliyopo kwanza.", "1724367774": "Unaweza kufanya uhamisho wa fedha mara tu uthibitishaji wa akaunti yako utakapokamilika.", "1724696797": "Umezuiwa kutumia akaunti zaidi ya moja ya fiat.", @@ -2031,6 +2035,7 @@ "2049386104": "Tunahitaji wewe uwasilishe hivi ili kupata akaunti hii:", "2050170533": "Orodha ya tick", "2051558666": "Tazama historia ya muamala", + "2051596653": "Demo Zero Spread BVI", "2052022586": "Ili kuimarisha usalama wa akaunti yako ya MT5 tumeboresha sera yetu ya nenosiri.", "2054889300": "Unda \"%1”", "2055317803": "Nakili kiunganishi kwenye kivinjari chako cha simu", @@ -3259,8 +3264,8 @@ "-328128497": "Financial", "-533935232": "Financial BVI", "-565431857": "Financial Labuan", - "-659955365": "Swap-Free", "-291535132": "Swap-Free Demo", + "-499019612": "Zero Spread Demo", "-1472945832": "Swap-Free SVG", "-144803045": "Nambari tu na herufi hizi maalum zinaruhusiwa: {{permitted_characters}}", "-1450516268": "Herufi pekee, nambari, nafasi, mkato, kipindi, na alama ya kuuliza tu ndizo zinazoruhusiwa.", @@ -3366,6 +3371,7 @@ "-2072411961": "Uthibitisho wako wa anwani umethibitishwa", "-384887227": "Badilisha anwani kwenye wasifu wako.", "-1470677931": "CFDs kwenye vyombo vya kifedha.", + "-1595662064": "Zero spread CFDs on financial and derived instruments", "-1998049070": "Ikiwa unakubali matumizi yetu ya vidakuzi, bonyeza kubali. Kwa maelezo zaidi, tazama <0>sera yetu.", "-402093392": "Ongeza Akaunti ya Deriv", "-1721181859": "Utahitaji akaunti ya {{deriv_account}}", @@ -3552,6 +3558,7 @@ "-239789243": "(Leseni na. SIBA/L/18/1114)", "-941636117": "MetaTrader 5 Linux app", "-1434036215": "Demo Financial", + "-659955365": "Swap-Free", "-1416247163": "Financial STP", "-1637969571": "Demo Swap-Free", "-1882063886": "Demo CFDs", @@ -3567,6 +3574,7 @@ "-1385484963": "Thibitisha kubadilisha nenosiri lako la {{platform}}", "-1990902270": "Hii itabadilisha nenosiri kwa akaunti zako zote za {{platform}} .", "-12535938": "*Volatility 250 Indeksi, Volatility 150 Indeksi, Boom 300 na Crash 300 Indeksi", + "-2104148631": "Commissions apply", "-201485855": "Hadi", "-700260448": "demo", "-1769158315": "halisi", @@ -3576,13 +3584,13 @@ "-2092058806": "8 hadi 16 herufi", "-2051033705": "Alama maalum kama vile ( _ @ ? ! / # )", "-1762249687": "Herufi ndogo", + "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", "-535365199": "Ingiza nenosiri lako la {{platform}} ili kuongeza akaunti ya {{platform_name}} {{account}} .", "-184453418": "Ingiza nenosiri lako la {{platform}}", "-393388362": "Tunakagua hati zako. Hii inapaswa kuchukua siku 1 hadi 3.", "-2057918502": "Kidokezo: Labda umeingiza nenosiri lako la Deriv, ambalo ni tofauti na nenosiri lako la {{platform}}.", "-267598687": "Hongera, umefanikiwa kuunda akaunti ya <0/>{{category}} {{platform}} {{type}}. Ili kuanza biashara, <1 />hamisha fedha <2 /> kutoka kwa akaunti yako ya Deriv kwenda akaunti hii.", "-1475660820": "Akaunti yako ya Deriv MT5 {{type}} iko tayari. ", - "-1710177700": "Akaunti yako ya demo {{type}} iko tayari.", "-1184248732": "Hongera, umefanikiwa kuunda kikamilifu akaunti yako ya <0/>{{category}} {{platform}} {{type}}. ", "-1928229820": "Weka upya nenosiri la mwekezaji la Deriv X", "-1969916895": "Nenosiri lako lazima liwe na kati ya herufi 8-16 zinazojumuisha herufi kubwa na ndogo, na angalau nambari moja na alama maalum ( _ @ ? ! / # ).", diff --git a/packages/translations/src/translations/th.json b/packages/translations/src/translations/th.json index 164fe14bc22e..fda3636d0bc7 100644 --- a/packages/translations/src/translations/th.json +++ b/packages/translations/src/translations/th.json @@ -141,6 +141,7 @@ "151646545": "ไม่สามารถอ่านไฟล์ {{name}}", "152415091": "คณิตศาสตร์", "152524253": "ซื้อขายแลกเปลี่ยนอิงตลาดโลกต่างๆ ด้วยแพลตฟอร์มยอดนิยมและใช้งานง่ายของเรา", + "153485708": "Zero Spread - BVI", "157593038": "เลขจำนวนเต็มที่สุ่มตั้งแต่ {{ start_number }} ถึง {{ end_number }}", "157871994": "ลิงก์หมดอายุ", "158355408": "บริการบางอย่างอาจไม่สามารถใช้งานได้ชั่วคราว", @@ -293,6 +294,7 @@ "313741895": "บล็อกนี้จะส่งคืนค่า “จริง” หากว่าแท่งเทียนสุดท้ายเป็นสีดำ มันสามารถถูกวางที่ใดก็ได้บนผืนผ้าใบ เว้นแต่ภายในบล็อกรูทพารามิเตอร์การเทรด", "315306603": "คุณมีบัญชีที่ไม่มีการกำหนดสกุลเงิน โปรดเลือกสกุลเงินเพื่อจะทำการเทรดด้วยบัญชีนี้", "316694303": "แท่งเทียนเป็นสีดำหรือไม่", + "318705408": "Demo Zero Spread", "318865860": "ปิด", "318984807": "บล็อกนี้จะทำซ้ำตามคำสั่งที่ได้รับจากภายใน และจะทำตามจำนวนครั้งที่ระบุ", "321457615": "อ๊ะ มีบางอย่างผิดปกติ!", @@ -320,6 +322,7 @@ "344418897": "การตั้งขีดจำกัดการเทรดและระบบการกันตนเองนั้นช่วยให้คุณควบคุมจำนวนเงินและเวลาที่ใช้ใน {{brand_website_name}} และเป็นการฝึก <0>การเทรดอย่างมีความรับผิดชอบ", "345320063": "การประทับเวลาไม่ถูกต้อง", "345818851": "ขออภัย เกิดข้อผิดพลาดภายใน กดช่องทำเครื่องหมายด้านบนเพื่อลองอีกครั้ง", + "346070861": "Zero Spread", "346843343": "CFD สำหรับตราสารทางการเงินและตราสาร Derived ซึ่งมาพร้อมกับระบบ Copy Trading", "347029309": "Forex: มาตรฐาน/ไมโคร", "347039138": "กระบวนการทำซ้ำ (2)", @@ -897,7 +900,6 @@ "947758334": "โปรดระบุเมือง", "947914894": "เติมเงิน  <0>", "948156236": "สร้างรหัสผ่าน {{type}}", - "948176566": "ใหม่!", "949859957": "ส่ง", "951404247": "เพลิดเพลินไปกับการทำธุรกรรมที่ราบรื่นในหลายสกุลเงินและระบบยูสเซอร์อินเทอร์เฟซที่ใช้งานง่ายด้วยการแยกเงินทุน", "952927527": "ได้รับการควบคุมดูแลโดยหน่วยงานบริการทางการเงินมอลตา (MFSA) (ใบอนุญาตเลขที่ IS/70156)", @@ -921,6 +923,7 @@ "975747761": "กำลังดำเนินอยู่", "975950139": "ประเทศที่พำนัก", "977929335": "ไปที่การตั้งค่าบัญชีของฉัน", + "979713491": "Zero Spread BVI", "980050614": "อัพเดทตอนนี้", "981138557": "เปลี่ยนเส้นทาง", "981568830": "คุณได้เลือกที่จะกันตัวเองออกจากการเทรดบนเว็บไซต์ของเราจนถึง {{exclude_until}} หากคุณไม่สามารถที่จะทำการเทรดหรือฝากเงินได้หลังจากช่วงระยะเวลาการกันตัวเองสิ้นสุดลงแล้ว โปรดติดต่อเราผ่าน <0>แชทสด", @@ -1672,6 +1675,7 @@ "1722056905": "เอกสารที่คุณยื่นไม่ได้รับการรองรับสําหรับประเทศของคุณ โปรดยื่นเอกสารที่ได้รับการรองรับสําหรับประเทศของคุณ", "1722888575": "{{mt5_migration_error}}", "1723069433": "Wallet ใหม่ของคุณ", + "1723390945": "Your demo {{deriv}} {{type}} account is ready.", "1723589564": "แสดงถึงจำนวนมากที่สุดของสัญญาที่ยังไม่ยุติและยังคงอยู่ในบัญชีของคุณ โดยแต่ละบรรทัดในพอร์ตของคุณจะแสดงถึงหนึ่งตำแหน่งการค้าที่เปิดอยู่ โดยเมื่อมันขึ้นถึงขีดจำนวนสูงสุดแล้วคุณจะไม่สามารถเปิดตำแหน่งใหม่ได้นอกจากจะดำเนินการปิดตำแหน่งที่มีอยู่เสียก่อน", "1724367774": "คุณสามารถทำการโอนเงินได้เมื่อการยืนยันบัญชีของคุณเสร็จสมบูรณ์", "1724696797": "คุณถูกจํากัดให้มีเพียงบัญชีเงินตรารัฐบาลอันเดียวเท่านั้น", @@ -2031,6 +2035,7 @@ "2049386104": "เราต้องการให้คุณส่งข้อมูลเหล่านี้เพื่อที่จะได้รับบัญชีนี้:", "2050170533": "ลิสต์ค่าจุด Tick", "2051558666": "ดูประวัติธุรกรรม", + "2051596653": "Demo Zero Spread BVI", "2052022586": "เพื่อเพิ่มความปลอดภัยของบัญชี MT5 ของคุณ เราได้อัพเกรดนโยบายรหัสผ่านของเรา", "2054889300": "สร้าง \"%1\"", "2055317803": "คัดลอกลิงก์ไปยังเบราว์เซอร์มือถือของคุณ", @@ -3259,8 +3264,8 @@ "-328128497": "บัญชี Financial", "-533935232": "Financial BVI", "-565431857": "ทางการเงิน ลาบวน", - "-659955365": "บัญชี Swap-Free", "-291535132": "บัญชีทดลองปลอดสวอป", + "-499019612": "Zero Spread Demo", "-1472945832": "บัญชี SVG ปลอดสวอป", "-144803045": "อนุญาตเฉพาะตัวเลขและอักขระพิเศษเหล่านี้เท่านั้น: {{permitted_characters}}", "-1450516268": "ใช้ได้เฉพาะตัวอักษร ตัวเลข ช่องว่าง ยัติภังค์ มหัพภาค และเครื่องหมายอัญประกาศเดี่ยวเท่านั้น", @@ -3366,6 +3371,7 @@ "-2072411961": "หลักฐานแสดงที่อยู่ของคุณได้รับการยืนยันแล้ว", "-384887227": "อัพเดทที่อยู่ในโปรไฟล์ของคุณ", "-1470677931": "CFD สำหรับตราสารทางการเงิน", + "-1595662064": "Zero spread CFDs on financial and derived instruments", "-1998049070": "หากคุณยอมรับการใช้งานคุกกี้ของเราให้คลิกที่ยอมรับ สำหรับข้อมูลเพิ่มเติม <0>ดูนโยบายของเรา", "-402093392": "เพิ่มบัญชี Deriv", "-1721181859": "คุณจะต้องมีบัญชี {{deriv_account}}", @@ -3552,6 +3558,7 @@ "-239789243": "(ใบอนุญาตเลขที่ SIBA/L/18/1114)", "-941636117": "แอป MetaTrader 5 ลินุกซ์", "-1434036215": "บัญชีทดลอง Financial", + "-659955365": "บัญชี Swap-Free", "-1416247163": "Financial STP", "-1637969571": "บัญชีทดลองปลอดสวอป", "-1882063886": "บัญชีทดลอง CFD", @@ -3567,6 +3574,7 @@ "-1385484963": "ยืนยันเปลี่ยนรหัสผ่าน {{platform}} ของคุณ", "-1990902270": "การดําเนินการนี้จะเปลี่ยนรหัสผ่านสำหรับบัญชี {{platform}} ของคุณทั้งหมด", "-12535938": "*ดัชนี Volatility 250, ดัชนี Volatility 150, ดัชนี Boom 300 และดัชนี Crash 300", + "-2104148631": "Commissions apply", "-201485855": "ถึง", "-700260448": "ทดลอง", "-1769158315": "จริง", @@ -3576,13 +3584,13 @@ "-2092058806": "8 ถึง 16 อักขระ", "-2051033705": "อักขระพิเศษเช่น ( _ @ ? ! / # )", "-1762249687": "ตัวอักษรตัวพิมพ์เล็ก", + "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", "-535365199": "ใส่รหัสผ่าน {{platform}} ของคุณเพื่อเพิ่มบัญชี {{platform_name}} {{account}}", "-184453418": "ใส่รหัสผ่าน {{platform}} ของคุณ", "-393388362": "เรากำลังทำการตรวจสอบเอกสารของคุณ การดำเนินการนี้จะใช้เวลาประมาณ 1 ถึง 3 วัน", "-2057918502": "คําบอกใบ้: คุณอาจป้อนรหัสผ่าน Deriv ของคุณซึ่งต่างจากรหัสผ่าน {{platform}} ของคุณ", "-267598687": "ขอแสดงความยินดีด้วย คุณได้สร้างบัญชี <0/>{{category}} {{platform}} {{type}} ของคุณสำเร็จแล้ว และเพื่อเริ่มต้นทำการเทรด <1 />โปรดโอนเงิน <2 />จากบัญชี Deriv ของคุณเข้าไปยังบัญชีนี้", "-1475660820": "บัญชี Deriv MT5 {{type}} ของคุณพร้อมแล้ว ", - "-1710177700": "บัญชีทดลอง {{type}} ของคุณพร้อมแล้ว", "-1184248732": "ขอแสดงความยินดี คุณได้สร้างบัญชี <0/>{{category}} {{platform}} {{type}} ของคุณเรียบร้อยแล้ว ", "-1928229820": "ตั้งรหัสผ่านใหม่ของนักลงทุน Deriv X", "-1969916895": "รหัสผ่านของคุณต้องมีอักขระระหว่าง 8-16 ตัวซึ่งรวมถึงอักษรตัวพิมพ์ใหญ่และตัวพิมพ์เล็ก พร้อมด้วยตัวเลขและอักขระพิเศษอย่างน้อยหนึ่งตัว ( _ @ ? ! / # )", diff --git a/packages/translations/src/translations/tr.json b/packages/translations/src/translations/tr.json index 0f5abfceba04..cf9512015084 100644 --- a/packages/translations/src/translations/tr.json +++ b/packages/translations/src/translations/tr.json @@ -141,6 +141,7 @@ "151646545": "{{name}} dosyası okunamıyor", "152415091": "Mat", "152524253": "Popüler kullanıcı dostu platformumuzla dünya pazarlarında ticaret yapın.", + "153485708": "Zero Spread - BVI", "157593038": "{{ start_number }} ile {{ end_number }} arasında rastgele tamsayı", "157871994": "Bağlantının süresi doldu", "158355408": "Bazı hizmetler geçici olarak kullanılamayabilir.", @@ -293,6 +294,7 @@ "313741895": "Bu blok, son mum siyahsa “Doğru” sonucunu verir. Ticari parametreler kök bloğu hariç kanvas üzerinde herhangi bir yere yerleştirilebilir.", "315306603": "Para birimi atanmamış bir hesabınız var. Lütfen bu hesapla işlem yapmak için bir para birimi seçin.", "316694303": "Mum siyah mı?", + "318705408": "Demo Zero Spread", "318865860": "kapanış", "318984807": "Bu blok, içinde bulunan talimatları belirli bir sayıda tekrarlar.", "321457615": "Oops, bir sorun oluştu!", @@ -320,6 +322,7 @@ "344418897": "Bu işlem limitleri ve kendini-dışlama {{brand_website_name}} üzerinde harcadığınız para ve zamanın miktarını kontrol etmenize ve <0>sorumlu ticaret uygulamanıza yardımcı olur.", "345320063": "Geçersiz zaman bilgisi", "345818851": "Üzgünüz, dahili bir hata oluştu. Tekrar denemek için yukarıdaki onay kutusuna basın.", + "346070861": "Zero Spread", "346843343": "Kopya ticareti ile finansal ve derived araçlara ilişkin CFD'ler.", "347029309": "Forex: standart/mikro", "347039138": "Yineleme (2)", @@ -897,7 +900,6 @@ "947758334": "Şehir gereklidir", "947914894": "Tamamlayın  <0>", "948156236": "{{type}} şifresi oluştur", - "948176566": "Yeni!", "949859957": "Gönder", "951404247": "Birden çok para biriminde sorunsuz işlemlerin ve fon ayrımı ile sezgisel bir kullanıcı arayüzünün keyfini çıkarın.", "952927527": "Malta Financial Services Authority (MFSA) tarafından düzenlenir (lisans no. IS/70156)", @@ -921,6 +923,7 @@ "975747761": "Devam Ediyor", "975950139": "İkamet edilen ülke", "977929335": "Hesap ayarlarıma git", + "979713491": "Zero Spread BVI", "980050614": "Şimdi Güncelle", "981138557": "Yeniden yönlendir", "981568830": "{{exclude_until}} Tarihine kadar kendinizi web sitemizden ticaret yapmaya dışlamayı seçtiniz. Eğer kendini-dışlama sürenizden sonra bir ticaret veya para yatırma işlemi yapamazsanız, lütfen <0>canlı sohbet yoluyla bizimle iletişime geçin.", @@ -1672,6 +1675,7 @@ "1722056905": "Sağladığınız belge ülkeniz için desteklenmiyor. Lütfen ülkeniz için desteklenen bir belge sağlayın.", "1722888575": "{{mt5_migration_error}}", "1723069433": "Yeni Wallet'ınız", + "1723390945": "Your demo {{deriv}} {{type}} account is ready.", "1723589564": "Portföyünüzün en fazla bekleyen sözleşme sayısını temsil eder. Portföyünüzün her bir satırı bir açık pozisyon için geçerlidir. Maksimuma ulaşıldığında, mevcut bir konumu kapatmadan yeni pozisyonlar açamayacaksınız.", "1724367774": "Hesabınızın doğrulanması tamamlandıktan sonra para transferi yapabilirsiniz.", "1724696797": "Yalnızca bir fiat hesabıyla sınırlısınız.", @@ -2031,6 +2035,7 @@ "2049386104": "Bu hesabı almak için bunları göndermeniz gerekiyor:", "2050170533": "Tik listesi", "2051558666": "İşlem geçmişini görüntüle", + "2051596653": "Demo Zero Spread BVI", "2052022586": "MT5 hesap güvenliğinizi artırmak için şifre politikamızı yükselttik.", "2054889300": "\"%1\" Oluştur", "2055317803": "Bağlantıyı mobil tarayıcınıza kopyalayın", @@ -3259,8 +3264,8 @@ "-328128497": "Finansal", "-533935232": "Finansal BVI", "-565431857": "Finansal Labuan", - "-659955365": "Swap-Free", "-291535132": "Swap-Free Demo", + "-499019612": "Zero Spread Demo", "-1472945832": "Swap-Free SVG", "-144803045": "Yalnızca rakamlara ve bu özel karakterlere izin verilir: {{permitted_characters}}", "-1450516268": "Yalnızca harfler, sayılar, boşluk, tire, nokta, ve kesme işareti kullanılabilir.", @@ -3366,6 +3371,7 @@ "-2072411961": "Adres kanıtınız doğrulandı", "-384887227": "Profilinizdeki adresi güncelleyin.", "-1470677931": "Finansal araçlara ilişkin CFD'ler.", + "-1595662064": "Zero spread CFDs on financial and derived instruments", "-1998049070": "Çerezleri kullanmayı kabul ediyorsanız Kabul Et'i tıklayın. Daha fazla bilgi için, <0>politikamıza bakın.", "-402093392": "Deriv Hesabı Ekle", "-1721181859": "Bir {{deriv_account}} hesabına ihtiyacınız olacak", @@ -3552,6 +3558,7 @@ "-239789243": "(License no. SİBA/L/18/1114)", "-941636117": "MetaTrader 5 Linux uygulaması", "-1434036215": "Demo Finansal", + "-659955365": "Swap-Free", "-1416247163": "Finansal STP", "-1637969571": "Demo Swap-Free", "-1882063886": "Demo CFD'ler", @@ -3567,6 +3574,7 @@ "-1385484963": "{{platform}} parolanızı değiştirmek için onaylayın", "-1990902270": "Bu işlem, parolayı tüm {{platform}} hesaplarınıza değiştirecektir.", "-12535938": "*Volatility 250 Endeksi, Volatility 150 Endeksi, Boom 300 ve Crash 300 Endeksi", + "-2104148631": "Commissions apply", "-201485855": "Kadar", "-700260448": "demo", "-1769158315": "gerçek", @@ -3576,13 +3584,13 @@ "-2092058806": "8 ila 16 karakter", "-2051033705": "( _ @ ? ! / # ) gibi özel bir karakter", "-1762249687": "Bir küçük harf", + "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", "-535365199": "{{platform}} {{account}} hesabı eklemek için {{platform_name}} şifrenizi girin.", "-184453418": "{{platform}} şifrenizi girin", "-393388362": "Belgelerinizi inceliyoruz. Bu yaklaşık 1 ila 3 gün sürmelidir.", "-2057918502": "İpucu: {{platform}} parolanızdan farklı olan Deriv parolanızı girmiş olabilirsiniz.", "-267598687": "Tebrikler, <0/>{{category}} {{platform}} {{type}} hesabınızı başarıyla oluşturdunuz. Ticarete başlamak için, Deriv hesabınızdan bu hesaba <1 />para aktarın <2 />.", "-1475660820": "Deriv MT5 {{type}} hesabınız hazır. ", - "-1710177700": "Demo {{type}} hesabınız hazır.", "-1184248732": "Tebrikler, <0/>{{category}} {{platform}} {{type}} hesabınızı başarıyla oluşturdunuz. ", "-1928229820": "Deriv X yatırımcı parolasını sıfırla", "-1969916895": "Parolanız, büyük ve küçük harfler ile en az bir sayı ve özel karakter ( _ @ ? ! / # ) içeren 8-16 karakter arasında olmalıdır.", diff --git a/packages/translations/src/translations/uz.json b/packages/translations/src/translations/uz.json index f59a3a22eefd..72af058bd4ea 100644 --- a/packages/translations/src/translations/uz.json +++ b/packages/translations/src/translations/uz.json @@ -141,6 +141,7 @@ "151646545": "Unable to read file {{name}}", "152415091": "Math", "152524253": "Trade the world’s markets with our popular user-friendly platform.", + "153485708": "Zero Spread - BVI", "157593038": "random integer from {{ start_number }} to {{ end_number }}", "157871994": "Link expired", "158355408": "Some services may be temporarily unavailable.", @@ -293,6 +294,7 @@ "313741895": "This block returns “True” if the last candle is black. It can be placed anywhere on the canvas except within the Trade parameters root block.", "315306603": "You have an account that do not have currency assigned. Please choose a currency to trade with this account.", "316694303": "Is candle black?", + "318705408": "Demo Zero Spread", "318865860": "close", "318984807": "This block repeats the instructions contained within for a specific number of times.", "321457615": "Oops, something went wrong!", @@ -320,6 +322,7 @@ "344418897": "These trading limits and self-exclusion help you control the amount of money and time you spend on {{brand_website_name}} and exercise <0>responsible trading.", "345320063": "Invalid timestamp", "345818851": "Sorry, an internal error occurred. Hit the above checkbox to try again.", + "346070861": "Zero Spread", "346843343": "CFDs on financial and derived instruments with copy trading.", "347029309": "Forex: standard/micro", "347039138": "Iterate (2)", @@ -897,7 +900,6 @@ "947758334": "City is required", "947914894": "Top up  <0>", "948156236": "Create {{type}} password", - "948176566": "New!", "949859957": "Submit", "951404247": "Enjoy seamless transactions across multiple currencies and an intuitive user interface with funds segregation.", "952927527": "Regulated by the Malta Financial Services Authority (MFSA) (licence no. IS/70156)", @@ -921,6 +923,7 @@ "975747761": "Ongoing", "975950139": "Country of Residence", "977929335": "Go to my account settings", + "979713491": "Zero Spread BVI", "980050614": "Update now", "981138557": "Redirect", "981568830": "You have chosen to exclude yourself from trading on our website until {{exclude_until}}. If you are unable to place a trade or deposit after your self-exclusion period, please contact us via <0>live chat.", @@ -1672,6 +1675,7 @@ "1722056905": "The document you provided is not supported for your country. Please provide a supported document for your country.", "1722888575": "{{mt5_migration_error}}", "1723069433": "Your new Wallet", + "1723390945": "Your demo {{deriv}} {{type}} account is ready.", "1723589564": "Represents the maximum number of outstanding contracts in your portfolio. Each line in your portfolio counts for one open position. Once the maximum is reached, you will not be able to open new positions without closing an existing position first.", "1724367774": "You can make a funds transfer once the verification of your account is complete.", "1724696797": "You are limited to one fiat account only.", @@ -2031,6 +2035,7 @@ "2049386104": "We need you to submit these in order to get this account:", "2050170533": "Tick list", "2051558666": "View transaction history", + "2051596653": "Demo Zero Spread BVI", "2052022586": "To enhance your MT5 account security we have upgraded our password policy.", "2054889300": "Create \"%1\"", "2055317803": "Copy the link to your mobile browser", @@ -3259,8 +3264,8 @@ "-328128497": "Financial", "-533935232": "Financial BVI", "-565431857": "Financial Labuan", - "-659955365": "Swap-Free", "-291535132": "Swap-Free Demo", + "-499019612": "Zero Spread Demo", "-1472945832": "Swap-Free SVG", "-144803045": "Only numbers and these special characters are allowed: {{permitted_characters}}", "-1450516268": "Only letters, numbers, space, hyphen, period, and apostrophe are allowed.", @@ -3366,6 +3371,7 @@ "-2072411961": "Your proof of address has been verified", "-384887227": "Update the address in your profile.", "-1470677931": "CFDs on financial instruments.", + "-1595662064": "Zero spread CFDs on financial and derived instruments", "-1998049070": "If you agree to our use of cookies, click on Accept. For more information, <0>see our policy.", "-402093392": "Add Deriv Account", "-1721181859": "You’ll need a {{deriv_account}} account", @@ -3552,6 +3558,7 @@ "-239789243": "(License no. SIBA/L/18/1114)", "-941636117": "MetaTrader 5 Linux app", "-1434036215": "Demo Financial", + "-659955365": "Swap-Free", "-1416247163": "Financial STP", "-1637969571": "Demo Swap-Free", "-1882063886": "Demo CFDs", @@ -3567,6 +3574,7 @@ "-1385484963": "Confirm to change your {{platform}} password", "-1990902270": "This will change the password to all of your {{platform}} accounts.", "-12535938": "*Volatility 250 Index, Volatility 150 Index, Boom 300 and Crash 300 Index", + "-2104148631": "Commissions apply", "-201485855": "Up to", "-700260448": "demo", "-1769158315": "real", @@ -3576,13 +3584,13 @@ "-2092058806": "8 to 16 characters", "-2051033705": "A special character such as ( _ @ ? ! / # )", "-1762249687": "A lowercase letter", + "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", "-535365199": "Enter your {{platform}} password to add a {{platform_name}} {{account}} account.", "-184453418": "Enter your {{platform}} password", "-393388362": "We’re reviewing your documents. This should take about 1 to 3 days.", "-2057918502": "Hint: You may have entered your Deriv password, which is different from your {{platform}} password.", "-267598687": "Congratulations, you have successfully created your <0/>{{category}} {{platform}} {{type}} account. To start trading, <1 />transfer funds <2 />from your Deriv account into this account.", "-1475660820": "Your Deriv MT5 {{type}} account is ready. ", - "-1710177700": "Your demo {{type}} account is ready.", "-1184248732": "Congratulations, you have successfully created your <0/>{{category}} {{platform}} {{type}} account. ", "-1928229820": "Reset Deriv X investor password", "-1969916895": "Your password must contain between 8-16 characters that include uppercase and lowercase letters, and at least one number and special character ( _ @ ? ! / # ).", diff --git a/packages/translations/src/translations/vi.json b/packages/translations/src/translations/vi.json index d99cf60d92d9..f92c10b845c7 100644 --- a/packages/translations/src/translations/vi.json +++ b/packages/translations/src/translations/vi.json @@ -141,6 +141,7 @@ "151646545": "Không thể đọc tệp {{name}}", "152415091": "Thuật toán", "152524253": "Giao dịch với các thị trường thế giới trên nền tảng phổ biến và thân thiện với người dùng của chúng tôi.", + "153485708": "Zero Spread - BVI", "157593038": "số nguyên ngẫu nhiên từ {{ start_number }} tới {{ end_number }}", "157871994": "Liên kết đã hết hạn", "158355408": "Một số dịch vụ có thể tạm thời không khả dụng.", @@ -293,6 +294,7 @@ "313741895": "Khung này trả về \"Đúng\" nếu nến cuối cùng có màu đen. Có thể đặt khung ở bất cứ đâu trên biểu đồ, ngoại trừ trong khung tham số Giao dịch gốc.", "315306603": "Bạn có một tài khoản vẫn chưa chọn loại tiền tệ mặc định. Vui lòng chọn một loại tiền tệ để giao dịch với tài khoản này.", "316694303": "Nến màu đen?", + "318705408": "Demo Zero Spread", "318865860": "đóng", "318984807": "Khung này lặp lại một số lần xác định các chỉ dẫn đã có sẵn trong nó.", "321457615": "Đã xảy ra lỗi!", @@ -320,6 +322,7 @@ "344418897": "Các tính năng giới hạn giao dịch và quyền tự ngăn giao dịch giúp bạn kiểm soát số tiền và thời gian bạn dành cho {{brand_website_name}} và thực hiện <0>giao dịch có trách nhiệm.", "345320063": "Mốc thời gian không hợp lệ", "345818851": "Rất tiếc, đã xảy ra lỗi nội bộ. Nhấn vào hộp đánh dấu ở trên để thử lại.", + "346070861": "Zero Spread", "346843343": "CFD trên các công cụ tài chính và có nguồn gốc với giao dịch sao chép.", "347029309": "Forex: Tiêu chuẩn/Micro", "347039138": "Phép lặp (2)", @@ -897,7 +900,6 @@ "947758334": "Phải có thông tin thành phố", "947914894": "Nạp thêm  <0>", "948156236": "Tạo mật khẩu {{type}}", - "948176566": "Mới!", "949859957": "Gửi", "951404247": "Tận hưởng các giao dịch liền mạch trên nhiều loại tiền tệ và giao diện người dùng trực quan với sự phân tách tiền.", "952927527": "Được quản lý bởi Malta Financial Services Authority (MFSA) (giấy phép số IS/70156)", @@ -921,6 +923,7 @@ "975747761": "Đang diễn ra", "975950139": "Quốc gia cư trú", "977929335": "Chuyển tới cài đặt tài khoản của tôi", + "979713491": "Zero Spread BVI", "980050614": "Cập nhật ngay", "981138557": "Chuyển hướng", "981568830": "Bạn đã chọn tự giới hạn mình khỏi giao dịch trên trang web của chúng tôi cho đến {{exclude_until}}. Nếu bạn không thể thực hiện giao dịch hoặc nạp tiền sau thời gian này, vui lòng liên hệ với chúng tôi qua <0>live chat.", @@ -1672,6 +1675,7 @@ "1722056905": "Giấy tờ bạn cung cấp không hợp lệ ở quốc gia bạn. Vui lòng cung cấp giấy tờ hợp lệ.", "1722888575": "{{mt5_migration_error}}", "1723069433": "Wallet mới của bạn", + "1723390945": "Your demo {{deriv}} {{type}} account is ready.", "1723589564": "Trình bày số tối đa của những hợp đồng nổi bật có trong hồ sơ của bạn. Mỗi một dòng trong hồ sơ là một vị thế mở. Khi đã đạt đến mức tối đa, bạn sẽ không thể mở thêm vị thế mới mà không đóng các vị thế đang có trước.", "1724367774": "Bạn có thể thực hiện chuyển tiền sau khi xác minh tài khoản của bạn hoàn tất.", "1724696797": "Bạn bị giới hạn chỉ được có một tài khoản tiền pháp định.", @@ -2031,6 +2035,7 @@ "2049386104": "Chúng tôi cần bạn gửi những thông tin này để tạo được tài khoản:", "2050170533": "Danh sách tick", "2051558666": "Xem lịch sử giao dịch", + "2051596653": "Demo Zero Spread BVI", "2052022586": "Để tăng cường bảo mật tài khoản MT5 của bạn, chúng tôi đã nâng cấp chính sách mật khẩu của chúng tôi.", "2054889300": "Tạo \"%1\"", "2055317803": "Sao chép đường liên kết vào trình duyệt trên điện thoại của bạn", @@ -3259,8 +3264,8 @@ "-328128497": "Tài chính", "-533935232": "BVI tài chính", "-565431857": "Financial Labuan", - "-659955365": "Không phí qua đêm", "-291535132": "Tài khoản thử nghiệm không tính phí qua đêm", + "-499019612": "Zero Spread Demo", "-1472945832": "Tài khoản SVG không tính phí qua đêm", "-144803045": "Chỉ được sử dụng các số và ký tự đặc biệt sau: {{permitted_characters}}", "-1450516268": "Chỉ được dùng chữ cái, số, khoảng trắng, dấu gạch nối, dấu chấm, và dấu gạch ngang.", @@ -3366,6 +3371,7 @@ "-2072411961": "Giấy tờ xác thực địa chỉ của bạn đã được chấp thuận", "-384887227": "Cập nhật địa chỉ trong hồ sơ của bạn.", "-1470677931": "CFD trên các công cụ tài chính.", + "-1595662064": "Zero spread CFDs on financial and derived instruments", "-1998049070": "Nếu bạn đồng ý cho việc sử dụng cookies của chúng tôi, nhấp vào Chấp nhận. Để biết thêm thông tin <0>xem quy định.", "-402093392": "Thêm tài khoản Deriv", "-1721181859": "Bạn cần một tài khoản {{deriv_account}}", @@ -3552,6 +3558,7 @@ "-239789243": "(Giấy phép số. SIBA/L/18/1114)", "-941636117": "Ứng dụng MetaTrader 5 trên Linux", "-1434036215": "Tài khoản tài chính thử nghiệm", + "-659955365": "Không phí qua đêm", "-1416247163": "Tài chính STP", "-1637969571": "Tài khoản thử nghiệm không phí qua đêm", "-1882063886": "Tài khoản CFD thử nghiệm", @@ -3567,6 +3574,7 @@ "-1385484963": "Xác nhận đổi mật khẩu {{platform}} của bạn", "-1990902270": "Thao tác này sẽ thay đổi mật khẩu cho tất cả các tài khoản {{platform}} của bạn.", "-12535938": "* Chỉ số Volatility 250, Chỉ số Volatility 150, Chỉ số Boom 300 và Chỉ số Crash 300", + "-2104148631": "Commissions apply", "-201485855": "Lên đến", "-700260448": "Thử nghiệm", "-1769158315": "thực", @@ -3576,13 +3584,13 @@ "-2092058806": "8 đến 16 ký tự", "-2051033705": "Một ký tự đặc biệt như ( _ @ ? ! / # )", "-1762249687": "Một chữ cái viết thường", + "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", "-535365199": "Nhập mật khẩu {{platform}} của bạn để thêm tài khoản {{platform_name}} {{account}}.", "-184453418": "Nhập mật khẩu {{platform}} của bạn", "-393388362": "Chúng tôi đang xét duyệt giấy tờ của bạn. Quá trình này sẽ mất khoảng từ 1 đến 3 ngày.", "-2057918502": "Gợi ý: Bạn có thể đã nhập mật khẩu tài khoản Deriv của mình, mật khẩu này khác với mật khẩu {{platform}} của bạn.", "-267598687": "Xin chúc mừng, bạn đã tạo thành công tài khoản <0/>{{category}} {{platform}} {{type}} của mình. Để bắt đầu giao dịch, hãy <1 />chuyển tiền<2 />từ tài khoản Deriv của bạn vào tài khoản này.", "-1475660820": "Tài khoản Deriv MT5 {{type}} của bạn đã sẵn sàng. ", - "-1710177700": "Tài khoản demo {{type}} của bạn đã sẵn sàng.", "-1184248732": "Xin chúc mừng, bạn đã tạo thành công tài khoản <0/>{{category}} {{platform}} {{type}} của mình. ", "-1928229820": "Đặt lại mật khẩu nhà đầu tư Deriv X", "-1969916895": "Mật khẩu của bạn phải chứa từ 8-16 ký tự bao gồm chữ hoa và chữ thường, và ít nhất một số và ký tự đặc biệt ( _ @ ? ! / # ).", diff --git a/packages/translations/src/translations/zh_cn.json b/packages/translations/src/translations/zh_cn.json index 9c6558af3772..1c98bcb9e782 100644 --- a/packages/translations/src/translations/zh_cn.json +++ b/packages/translations/src/translations/zh_cn.json @@ -141,6 +141,7 @@ "151646545": "无法读取文件{{name}}", "152415091": "数学", "152524253": "在我们极受欢迎、人性化的平台进行全球市场交易。", + "153485708": "Zero Spread - BVI", "157593038": "从{{ start_number }} 到{{ end_number }} 的随机整数", "157871994": "链接已过期", "158355408": "某些服务可能暂时不可用。", @@ -293,6 +294,7 @@ "313741895": "如上一个烛形线是黑色,此程序块将返回“真”。它能放在画布上任何位置,除了交易参数根块的范围内。", "315306603": "账户还未指定货币种。请选择此账户的交易币种。", "316694303": "黑色的蜡烛图线?", + "318705408": "Demo Zero Spread", "318865860": "收盘", "318984807": "此程序块以指定次数重复其内含的说明。", "321457615": "糟糕,出错了!", @@ -320,6 +322,7 @@ "344418897": "这些交易限制和自我禁止功能可帮助您控制花在 {{brand_website_name}} 的金钱和时间,并执行<0>负责任交易。", "345320063": "无效的时间戳", "345818851": "抱歉,发生了内部错误。点击上面的复选框再试一次。", + "346070861": "Zero Spread", "346843343": "带有跟单交易的金融和 derived 工具差价合约。", "347029309": "外汇:标准/微型手", "347039138": "循环 (2)", @@ -897,7 +900,6 @@ "947758334": "城市为必填项", "947914894": "充值  <0>", "948156236": "创建{{type}} 密码", - "948176566": "新!", "949859957": "提交", "951404247": "享受跨多种货币的无缝交易和具有资金隔离功能的直观用户界面。", "952927527": "由马耳他金融服务管理局(MFSA)监管(牌照编号IS/70156)", @@ -921,6 +923,7 @@ "975747761": "正在进行中", "975950139": "居住国", "977929335": "前往账户设置", + "979713491": "Zero Spread BVI", "980050614": "立即更新", "981138557": "重定向", "981568830": "您已选择禁止自己在网站上交易,直到 {{exclude_until}}。如果在自我禁止期过后仍无法交易或存款,请通过<0>实时聊天联系我们。", @@ -1672,6 +1675,7 @@ "1722056905": "所在的国家/地区不支持提供的文件。请提供所在国家支持的文件。", "1722888575": "{{mt5_migration_error}}", "1723069433": "新 Wallet", + "1723390945": "Your demo {{deriv}} {{type}} account is ready.", "1723589564": "表示投资组合中未平仓合约的最大数量。投资组合中的每一行都算作是一个未平仓头寸。一旦达到该最大值,在开设新头寸之前需要先结束一个现有头寸。", "1724367774": "账户验证完成后,就可以转账。", "1724696797": "只能使用一个法定账户.", @@ -2031,6 +2035,7 @@ "2049386104": "必须提交这些以获得账户:", "2050170533": "跳动点列表", "2051558666": "查看交易历史", + "2051596653": "Demo Zero Spread BVI", "2052022586": "为了提高 MT5 账户的安全性,我们升级了密码政策。", "2054889300": "创建\"%1\"", "2055317803": "复制链接到手机浏览器", @@ -3259,8 +3264,8 @@ "-328128497": "金融", "-533935232": "金融 BVI", "-565431857": "金融纳闽", - "-659955365": "无掉期费", "-291535132": "无掉期费演示", + "-499019612": "Zero Spread Demo", "-1472945832": "无掉期费 SVG", "-144803045": "仅允许数字和这些特殊字符: {{permitted_characters}}", "-1450516268": "只允许使用字母、数字、空格、连字符、句点和省略号。", @@ -3366,6 +3371,7 @@ "-2072411961": "地址证明已通过验证", "-384887227": "更新个人资料中的地址。", "-1470677931": "金融工具差价合约。", + "-1595662064": "Zero spread CFDs on financial and derived instruments", "-1998049070": "如同意我们使用 cookie,请单击“接受”。有关更多信息,请<0>参阅我们的政策。", "-402093392": "添加 Deriv 账户", "-1721181859": "您需要有 {{deriv_account}} 账户", @@ -3552,6 +3558,7 @@ "-239789243": "(许可证编号 SIBA/L/18/1114)", "-941636117": "MetaTrader 5 Linux 应用程序", "-1434036215": "演示金融", + "-659955365": "无掉期费", "-1416247163": "金融 STP", "-1637969571": "无掉期费演示", "-1882063886": "演示差价合约", @@ -3567,6 +3574,7 @@ "-1385484963": "确认更改 {{platform}} 密码", "-1990902270": "这将更改用在所有 {{platform}} 账户的密码。", "-12535938": "* Volatility 250 指数、Volatility 150 指数、Boom 300 指数和 Crash 300 指数", + "-2104148631": "Commissions apply", "-201485855": "高达", "-700260448": "演示", "-1769158315": "真实", @@ -3576,13 +3584,13 @@ "-2092058806": "8 至 16 个字符", "-2051033705": "特殊字符,如 ( _ @ ? ! / # )", "-1762249687": "小写字母", + "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", "-535365199": "输入 {{platform}} 密码以添加 {{platform_name}} {{account}} 账户。", "-184453418": "输入{{platform}} 密码", "-393388362": "正在审核文件。应该需要大约 1 到 3 天。", "-2057918502": "提示:可能您输入了与 {{platform}} 密码不同的 Deriv 密码。", "-267598687": "恭喜,您已成功开立<0/>{{category}} {{platform}} {{type}} 账户。请从 Deriv 账户<1 />转汇资金<2 />入此账户以开始交易。", "-1475660820": "Deriv MT5 {{type}} 账户已准备就绪. ", - "-1710177700": "演示 {{type}} 账户已就诸。", "-1184248732": "恭喜,已成功开立 <0/>{{category}} {{platform}} {{type}} 账户。 ", "-1928229820": "重置Deriv X投资者密码", "-1969916895": "密码必须包含 8-16 个字符,包括大写和小写字母,以及至少一个数字和特殊字符 ( _ @ ? ! / # )。", diff --git a/packages/translations/src/translations/zh_tw.json b/packages/translations/src/translations/zh_tw.json index 814437af8b97..e8e0327fdca6 100644 --- a/packages/translations/src/translations/zh_tw.json +++ b/packages/translations/src/translations/zh_tw.json @@ -141,6 +141,7 @@ "151646545": "無法讀取文檔 {{name}}", "152415091": "數學", "152524253": "在我們極受歡迎、人性化的平台進行全球市場交易。", + "153485708": "Zero Spread - BVI", "157593038": "從 {{ start_number }} 到 {{ end_number }} 的隨機整數", "157871994": "連結已過期", "158355408": "某些服務可能暫時無法使用。", @@ -293,6 +294,7 @@ "313741895": "如上一個燭形線是黑色,此區塊將返回「真」。它能放在畫布上任何位置,除了交易參數根塊的範圍內。", "315306603": "帳戶還未指定貨幣種。請選擇此帳戶的交易幣種。", "316694303": "燭線是黑色的?", + "318705408": "Demo Zero Spread", "318865860": "收盤", "318984807": "此區塊以指定次數重覆其內含的說明。", "321457615": "糟糕,出錯了!", @@ -320,6 +322,7 @@ "344418897": "這些交易限制和自我禁止功能可幫助您控制花在 {{brand_website_name}} 的金錢和時間,並執行<0>負責任交易。", "345320063": "無效的時間戳", "345818851": "抱歉,發生內部錯誤。點選上面的複選框再試一次。", + "346070861": "Zero Spread", "346843343": "具有跟單交易的金融和 derived 工具差價合約。", "347029309": "外匯:標準/微型手", "347039138": "反覆 (2)", @@ -897,7 +900,6 @@ "947758334": "城市為必填欄位", "947914894": "充值  <0>", "948156236": "建立 {{type}} 密碼", - "948176566": "新!", "949859957": "提交", "951404247": "享受跨多種貨幣的連續交易,並具有資金分隔的直觀使用者介面。", "952927527": "由馬爾他金融服務管理局 (MFSA) 監管 (執照編號 IS/70156)", @@ -921,6 +923,7 @@ "975747761": "正在進行", "975950139": "居住國", "977929335": "前往帳戶設定", + "979713491": "Zero Spread BVI", "980050614": "立即更新", "981138557": "重新導向", "981568830": "您已選擇自我禁止在網站交易,直到 {{exclude_until}}。如果在自我禁止期過後無法交易或存款,請通過<0>即時聊天與我們聯繫。", @@ -1672,6 +1675,7 @@ "1722056905": "所在國家/地區不支援所提供的文件。請提供所在國家支援的文件。", "1722888575": "{{mt5_migration_error}}", "1723069433": "新 Wallet", + "1723390945": "Your demo {{deriv}} {{type}} account is ready.", "1723589564": "表示投資組合中未平倉合約的最大數量。投資組合中的每一行都算作是一個未平倉頭寸。一旦達到該最大值,在開設新頭寸之前需要先了結一個現有頭寸。", "1724367774": "可以在帳戶驗證完成後轉帳。", "1724696797": "只能使用一個法定帳戶。", @@ -2031,6 +2035,7 @@ "2049386104": "必須提交這些資料以獲取帳戶:", "2050170533": "Tick 清單", "2051558666": "檢視交易歷史", + "2051596653": "Demo Zero Spread BVI", "2052022586": "為了提高 MT5 帳戶安全性,已升級密碼政策。", "2054889300": "建立「%1」", "2055317803": "複製連結到手機瀏覽器", @@ -3259,8 +3264,8 @@ "-328128497": "金融", "-533935232": "金融 BVI", "-565431857": "金融納閩", - "-659955365": "無掉期費", "-291535132": "無掉期費示範", + "-499019612": "Zero Spread Demo", "-1472945832": "無掉期費 SVG", "-144803045": "僅允許數字和這些特殊字元: {{permitted_characters}}", "-1450516268": "只允許使用字母、數字、空格、連字號、句號和所有格號。", @@ -3366,6 +3371,7 @@ "-2072411961": "地址證明已通過驗證", "-384887227": "更新個人資料中的地址。", "-1470677931": "金融工具差價合約。", + "-1595662064": "Zero spread CFDs on financial and derived instruments", "-1998049070": "如同意我們使用 cookie,請點選「接受」。有關更多資訊,請<0>參閱我們的政策。", "-402093392": "新增 Deriv 帳戶", "-1721181859": "需要有 {{deriv_account}} 帳戶", @@ -3552,6 +3558,7 @@ "-239789243": "(執照編號 SIBA/L/18/1114)", "-941636117": "MetaTrader 5 Linux 應用程式", "-1434036215": "示範金融", + "-659955365": "無掉期費", "-1416247163": "金融 STP", "-1637969571": "無掉期費示範", "-1882063886": "示範差價合約", @@ -3567,6 +3574,7 @@ "-1385484963": "確認更改{{platform}} 密碼", "-1990902270": "這將更改用於所有 {{platform}} 帳戶的密碼。", "-12535938": "* Volatility 250 指數、Volatility 150 指數、Boom 300 指數和 Crash 300 指數", + "-2104148631": "Commissions apply", "-201485855": "高達", "-700260448": "示範", "-1769158315": "真實", @@ -3576,13 +3584,13 @@ "-2092058806": "8 至 16 個字元", "-2051033705": "特殊字元,例如 (_ @?!/#)", "-1762249687": "小寫字母", + "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", "-535365199": "輸入 {{platform}} 密碼以新增 {{platform_name}} {{account}} 帳戶。", "-184453418": "輸入{{platform}} 密碼", "-393388362": "正在審核文件。應該需要大約 1 到 3 天。", "-2057918502": "提示:可能輸入了與 {{platform}} 密碼不同的 Deriv 密碼。", "-267598687": "恭喜,已成功建立了<0/>{{category}} {{platform}} {{type}} 帳戶。請從 Deriv 帳戶<1 />轉匯資金<2 />入此帳戶以開始交易。", "-1475660820": "Deriv MT5 {{type}} 帳戶已準備就緒. ", - "-1710177700": "示範 {{type}} 帳戶已準備就緒.", "-1184248732": "恭喜,已成功建立 <0/>{{category}} {{platform}} {{type}}帳戶。", "-1928229820": "重設Deriv X投資者密碼", "-1969916895": "密碼必須包含 8-16 個字元,包括大寫和小寫字母,以及至少一個數字和特殊字元 (_ @?!/#)。", From 73304e333b502f2bf249b964de94376c643c444b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 25 Jun 2024 16:13:05 +0300 Subject: [PATCH 04/17] =?UTF-8?q?translations:=20=F0=9F=93=9A=20sync=20tra?= =?UTF-8?q?nslations=20with=20crowdin=20(#15783)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: DerivFE --- packages/p2p/src/translations/bn.json | 2 +- packages/p2p/src/translations/pl.json | 2 +- packages/p2p/src/translations/si.json | 2 +- packages/p2p/src/translations/sw.json | 2 +- packages/p2p/src/translations/th.json | 2 +- packages/p2p/src/translations/vi.json | 2 +- packages/p2p/src/translations/zh_cn.json | 2 +- packages/p2p/src/translations/zh_tw.json | 2 +- packages/translations/src/translations/zh_cn.json | 14 +++++++------- packages/translations/src/translations/zh_tw.json | 14 +++++++------- 10 files changed, 22 insertions(+), 22 deletions(-) diff --git a/packages/p2p/src/translations/bn.json b/packages/p2p/src/translations/bn.json index 157cf06ebb7a..163b48b62ee3 100644 --- a/packages/p2p/src/translations/bn.json +++ b/packages/p2p/src/translations/bn.json @@ -80,7 +80,7 @@ "782834680": "বাকি সময়", "783454335": "হ্যাঁ, মুছে ফেলুন", "784839262": "শেয়ার করুন", - "790825518": "This ad is unavailable", + "790825518": "এই বিজ্ঞাপন অনুপলব্ধ", "830703311": "আমার প্রোফাইল", "834075131": "ব্লক করা বিজ্ঞাপনদাতাদের", "838024160": "ব্যাংকের বিস্তারিত বিবরণ", diff --git a/packages/p2p/src/translations/pl.json b/packages/p2p/src/translations/pl.json index d4ef8f87bcb4..dd92c90e533e 100644 --- a/packages/p2p/src/translations/pl.json +++ b/packages/p2p/src/translations/pl.json @@ -80,7 +80,7 @@ "782834680": "Pozostały czas", "783454335": "Tak, usuń", "784839262": "Udział", - "790825518": "This ad is unavailable", + "790825518": "Ta reklama jest niedostępna", "830703311": "Mój profil", "834075131": "Zablokowani ogłoszeniodawcy", "838024160": "Dane banku", diff --git a/packages/p2p/src/translations/si.json b/packages/p2p/src/translations/si.json index f8111497453a..fb5b04859e7a 100644 --- a/packages/p2p/src/translations/si.json +++ b/packages/p2p/src/translations/si.json @@ -80,7 +80,7 @@ "782834680": "ඉතිරිව ඇති කාලය", "783454335": "ඔව්, ඉවත් කරන්න", "784839262": "බෙදා ගන්න", - "790825518": "This ad is unavailable", + "790825518": "මෙම දැන්වීම ලබා ගත නොහැක", "830703311": "මගේ පැතිකඩ", "834075131": "අවහිර කළ දැන්වීම්කරුවන්", "838024160": "බැංකු විස්තර", diff --git a/packages/p2p/src/translations/sw.json b/packages/p2p/src/translations/sw.json index 793660ab5ea7..01c6d1906879 100644 --- a/packages/p2p/src/translations/sw.json +++ b/packages/p2p/src/translations/sw.json @@ -80,7 +80,7 @@ "782834680": "Muda uliobaki", "783454335": "Ndio, ondoa", "784839262": "Sambaza", - "790825518": "This ad is unavailable", + "790825518": "Tangazo hili halipatikani", "830703311": "Wasifu wangu", "834075131": "Watangazaji waliozuiliwa", "838024160": "Taarifa za benki", diff --git a/packages/p2p/src/translations/th.json b/packages/p2p/src/translations/th.json index 4321802d290b..8c1e02df0381 100644 --- a/packages/p2p/src/translations/th.json +++ b/packages/p2p/src/translations/th.json @@ -80,7 +80,7 @@ "782834680": "เหลือเวลาอีก", "783454335": "ใช่ ให้เอาออกไป", "784839262": "แชร์", - "790825518": "This ad is unavailable", + "790825518": "โฆษณานี้ไม่พร้อมใช้งาน", "830703311": "โปรไฟล์ของฉัน", "834075131": "ผู้ลงโฆษณาที่ถูกปิดกั้น", "838024160": "รายละเอียดข้อมูลธนาคาร", diff --git a/packages/p2p/src/translations/vi.json b/packages/p2p/src/translations/vi.json index adfe8d6fe664..b15d70e4b555 100644 --- a/packages/p2p/src/translations/vi.json +++ b/packages/p2p/src/translations/vi.json @@ -80,7 +80,7 @@ "782834680": "Thời gian còn lại", "783454335": "Có, hãy bỏ", "784839262": "Chia sẻ", - "790825518": "This ad is unavailable", + "790825518": "Quảng cáo này không khả dụng", "830703311": "Thông tin của tôi", "834075131": "Nhà quảng cáo bị chặn", "838024160": "Thông tin ngân hàng", diff --git a/packages/p2p/src/translations/zh_cn.json b/packages/p2p/src/translations/zh_cn.json index 2027a91f0ca4..500da53e703a 100644 --- a/packages/p2p/src/translations/zh_cn.json +++ b/packages/p2p/src/translations/zh_cn.json @@ -80,7 +80,7 @@ "782834680": "剩余时间", "783454335": "是,删除", "784839262": "分享", - "790825518": "This ad is unavailable", + "790825518": "此广告不可用", "830703311": "我的个人资料", "834075131": "被封禁的广告商", "838024160": "银行详细信息", diff --git a/packages/p2p/src/translations/zh_tw.json b/packages/p2p/src/translations/zh_tw.json index b174abccfc81..c6b637d75cf9 100644 --- a/packages/p2p/src/translations/zh_tw.json +++ b/packages/p2p/src/translations/zh_tw.json @@ -80,7 +80,7 @@ "782834680": "剩餘時間", "783454335": "是,刪除", "784839262": "共用", - "790825518": "This ad is unavailable", + "790825518": "此廣告無法使用", "830703311": "我的個人資料", "834075131": "被封禁廣告商", "838024160": "銀行詳細資料", diff --git a/packages/translations/src/translations/zh_cn.json b/packages/translations/src/translations/zh_cn.json index 1c98bcb9e782..d3633b7eed23 100644 --- a/packages/translations/src/translations/zh_cn.json +++ b/packages/translations/src/translations/zh_cn.json @@ -294,7 +294,7 @@ "313741895": "如上一个烛形线是黑色,此程序块将返回“真”。它能放在画布上任何位置,除了交易参数根块的范围内。", "315306603": "账户还未指定货币种。请选择此账户的交易币种。", "316694303": "黑色的蜡烛图线?", - "318705408": "Demo Zero Spread", + "318705408": "演示 Zero Spread", "318865860": "收盘", "318984807": "此程序块以指定次数重复其内含的说明。", "321457615": "糟糕,出错了!", @@ -1675,7 +1675,7 @@ "1722056905": "所在的国家/地区不支持提供的文件。请提供所在国家支持的文件。", "1722888575": "{{mt5_migration_error}}", "1723069433": "新 Wallet", - "1723390945": "Your demo {{deriv}} {{type}} account is ready.", + "1723390945": "演示 {{deriv}} {{type}} 账户已准备就绪。", "1723589564": "表示投资组合中未平仓合约的最大数量。投资组合中的每一行都算作是一个未平仓头寸。一旦达到该最大值,在开设新头寸之前需要先结束一个现有头寸。", "1724367774": "账户验证完成后,就可以转账。", "1724696797": "只能使用一个法定账户.", @@ -2035,7 +2035,7 @@ "2049386104": "必须提交这些以获得账户:", "2050170533": "跳动点列表", "2051558666": "查看交易历史", - "2051596653": "Demo Zero Spread BVI", + "2051596653": "演示 Zero Spread BVI", "2052022586": "为了提高 MT5 账户的安全性,我们升级了密码政策。", "2054889300": "创建\"%1\"", "2055317803": "复制链接到手机浏览器", @@ -3265,7 +3265,7 @@ "-533935232": "金融 BVI", "-565431857": "金融纳闽", "-291535132": "无掉期费演示", - "-499019612": "Zero Spread Demo", + "-499019612": "Zero Spread 演示", "-1472945832": "无掉期费 SVG", "-144803045": "仅允许数字和这些特殊字符: {{permitted_characters}}", "-1450516268": "只允许使用字母、数字、空格、连字符、句点和省略号。", @@ -3371,7 +3371,7 @@ "-2072411961": "地址证明已通过验证", "-384887227": "更新个人资料中的地址。", "-1470677931": "金融工具差价合约。", - "-1595662064": "Zero spread CFDs on financial and derived instruments", + "-1595662064": "金融和 derived 工具的 Zero spread 差价合约", "-1998049070": "如同意我们使用 cookie,请单击“接受”。有关更多信息,请<0>参阅我们的政策。", "-402093392": "添加 Deriv 账户", "-1721181859": "您需要有 {{deriv_account}} 账户", @@ -3574,7 +3574,7 @@ "-1385484963": "确认更改 {{platform}} 密码", "-1990902270": "这将更改用在所有 {{platform}} 账户的密码。", "-12535938": "* Volatility 250 指数、Volatility 150 指数、Boom 300 指数和 Crash 300 指数", - "-2104148631": "Commissions apply", + "-2104148631": "需付佣金", "-201485855": "高达", "-700260448": "演示", "-1769158315": "真实", @@ -3584,7 +3584,7 @@ "-2092058806": "8 至 16 个字符", "-2051033705": "特殊字符,如 ( _ @ ? ! / # )", "-1762249687": "小写字母", - "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", + "-1123437857": "通过由英属维尔京群岛金融服务委员会监管的 {{company}}(许可证编号 SIBA/L/18/1114)添加{{platform}} {{product}} 账户。", "-535365199": "输入 {{platform}} 密码以添加 {{platform_name}} {{account}} 账户。", "-184453418": "输入{{platform}} 密码", "-393388362": "正在审核文件。应该需要大约 1 到 3 天。", diff --git a/packages/translations/src/translations/zh_tw.json b/packages/translations/src/translations/zh_tw.json index e8e0327fdca6..227a9a324843 100644 --- a/packages/translations/src/translations/zh_tw.json +++ b/packages/translations/src/translations/zh_tw.json @@ -294,7 +294,7 @@ "313741895": "如上一個燭形線是黑色,此區塊將返回「真」。它能放在畫布上任何位置,除了交易參數根塊的範圍內。", "315306603": "帳戶還未指定貨幣種。請選擇此帳戶的交易幣種。", "316694303": "燭線是黑色的?", - "318705408": "Demo Zero Spread", + "318705408": "示範 Zero Spread", "318865860": "收盤", "318984807": "此區塊以指定次數重覆其內含的說明。", "321457615": "糟糕,出錯了!", @@ -1675,7 +1675,7 @@ "1722056905": "所在國家/地區不支援所提供的文件。請提供所在國家支援的文件。", "1722888575": "{{mt5_migration_error}}", "1723069433": "新 Wallet", - "1723390945": "Your demo {{deriv}} {{type}} account is ready.", + "1723390945": "示範 {{deriv}} {{type}} 帳戶已準備就緒.", "1723589564": "表示投資組合中未平倉合約的最大數量。投資組合中的每一行都算作是一個未平倉頭寸。一旦達到該最大值,在開設新頭寸之前需要先了結一個現有頭寸。", "1724367774": "可以在帳戶驗證完成後轉帳。", "1724696797": "只能使用一個法定帳戶。", @@ -2035,7 +2035,7 @@ "2049386104": "必須提交這些資料以獲取帳戶:", "2050170533": "Tick 清單", "2051558666": "檢視交易歷史", - "2051596653": "Demo Zero Spread BVI", + "2051596653": "示範 Zero Spread BVI", "2052022586": "為了提高 MT5 帳戶安全性,已升級密碼政策。", "2054889300": "建立「%1」", "2055317803": "複製連結到手機瀏覽器", @@ -3265,7 +3265,7 @@ "-533935232": "金融 BVI", "-565431857": "金融納閩", "-291535132": "無掉期費示範", - "-499019612": "Zero Spread Demo", + "-499019612": "Zero Spread 示範", "-1472945832": "無掉期費 SVG", "-144803045": "僅允許數字和這些特殊字元: {{permitted_characters}}", "-1450516268": "只允許使用字母、數字、空格、連字號、句號和所有格號。", @@ -3371,7 +3371,7 @@ "-2072411961": "地址證明已通過驗證", "-384887227": "更新個人資料中的地址。", "-1470677931": "金融工具差價合約。", - "-1595662064": "Zero spread CFDs on financial and derived instruments", + "-1595662064": "金融和 derived 工具的 zero spread 差價合約", "-1998049070": "如同意我們使用 cookie,請點選「接受」。有關更多資訊,請<0>參閱我們的政策。", "-402093392": "新增 Deriv 帳戶", "-1721181859": "需要有 {{deriv_account}} 帳戶", @@ -3574,7 +3574,7 @@ "-1385484963": "確認更改{{platform}} 密碼", "-1990902270": "這將更改用於所有 {{platform}} 帳戶的密碼。", "-12535938": "* Volatility 250 指數、Volatility 150 指數、Boom 300 指數和 Crash 300 指數", - "-2104148631": "Commissions apply", + "-2104148631": "需付佣金", "-201485855": "高達", "-700260448": "示範", "-1769158315": "真實", @@ -3584,7 +3584,7 @@ "-2092058806": "8 至 16 個字元", "-2051033705": "特殊字元,例如 (_ @?!/#)", "-1762249687": "小寫字母", - "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", + "-1123437857": "透過由英屬維爾京群島金融服務委員會監管的 {{company}}(執照編號 SIBA/L/18/1114) 新增 {{platform}}{{product}} 帳戶。", "-535365199": "輸入 {{platform}} 密碼以新增 {{platform_name}} {{account}} 帳戶。", "-184453418": "輸入{{platform}} 密碼", "-393388362": "正在審核文件。應該需要大約 1 到 3 天。", From 3ca4230271999f8378940409aa2228358c875790 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 26 Jun 2024 11:23:28 +0800 Subject: [PATCH 05/17] =?UTF-8?q?translations:=20=F0=9F=93=9A=20sync=20tra?= =?UTF-8?q?nslations=20with=20crowdin=20(#15787)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: DerivFE --- packages/p2p/src/translations/km.json | 508 ++++++++++++++++++ .../translations/src/translations/ar.json | 20 +- .../translations/src/translations/bn.json | 46 +- .../translations/src/translations/de.json | 34 +- .../translations/src/translations/es.json | 10 +- .../translations/src/translations/fr.json | 30 +- .../translations/src/translations/it.json | 30 +- .../translations/src/translations/ko.json | 34 +- .../translations/src/translations/mn.json | 44 +- .../translations/src/translations/pl.json | 16 +- .../translations/src/translations/pt.json | 8 +- .../translations/src/translations/ru.json | 30 +- .../translations/src/translations/si.json | 14 +- .../translations/src/translations/sw.json | 8 +- .../translations/src/translations/th.json | 20 +- .../translations/src/translations/tr.json | 8 +- .../translations/src/translations/vi.json | 14 +- 17 files changed, 691 insertions(+), 183 deletions(-) create mode 100644 packages/p2p/src/translations/km.json diff --git a/packages/p2p/src/translations/km.json b/packages/p2p/src/translations/km.json new file mode 100644 index 000000000000..deed40a53ae9 --- /dev/null +++ b/packages/p2p/src/translations/km.json @@ -0,0 +1,508 @@ +{ + "3215342": "៣០ ថ្ងៃចុងក្រោយ", + "4276410": "ជំហានចុងក្រោយមុនពេលយើងបិទការបញ្ជាទិញនេះ", + "6794664": "ផ្សាយពាណិជ្ជកម្ម​ដែល​ត្រូវគ្នា​ជាមួយ​សមតុល្យ និង​ដែន​កំណត់ Deriv P2P របស់អ្នក។", + "19789721": "គ្មាននរណាម្នាក់បានបិទអ្នកទេ។ Yay!", + "24711354": "ការកម្មង់សរុប <0>៣០ថ្ងៃ<\\/0> | <1>គ្រប់យុគសម័យ<\\/1>", + "50672601": "បានទិញ", + "55916349": "ទាំងអស់", + "68867477": "លេខសម្គាល់កម្មង់ {{ id }}", + "81450871": "យើងមិនអាចស្វែងរកទំព័រនោះបានទេ", + "97214671": "ជំរាបសួរ! ខ្ញុំចង់ប្តូរ {{first_currency}} ជា {{second_currency}} នៅអត្រា {{rate_display}}{{rate_type}} លើ Deriv P2P។ \n\nប្រសិនបើអ្នកចាប់អារម្មណ៍ សូមពិនិត្យការផ្សាយរបស់ខ្ញុំ ដោយចុចតំណរភ្ជាប់។nn{{- advert_url}}\n\nអរគុណ!", + "106063661": "ចែករំលែកការផ្សាយនេះ", + "111718006": "កាលបរិច្ឆេទបញ្ចប់", + "121738739": "ផ្ញើ", + "122280248": "ពេលវេលាដែលដោះលែងមធ្យម <0>៣០ថ្ងៃ<\\/0>", + "134205943": "ពាណិជ្ជកម្មរបស់លោកអ្នកដែលមានអត្រាតំលៃថេរត្រូវបានលុបចោល សូមកំណត់អត្រាតំលៃចរចាពីដំឡើងវាឡើងវិញ។", + "140800401": "អត្រាតំលៃចរចា", + "150156106": "រក្សាទុកការផ្លាស់ប្តូរ", + "159757877": "អ្នកនឹងមិនឃើញផ្សាយពាណិជ្ជកម្មរបស់ {{advertiser_name}} ទៀត ហើយពួកគេនឹងមិនអាចដាក់លំដាប់លើផ្សាយពាណិជ្ជកម្មរបស់អ្នកបានដែរ។", + "170072126": "បានឃើញ {{duration}} ថ្ងៃមុន", + "173939998": "ពេលវេលាដែលទូទាត់មធ្យម <0>៣០ថ្ងៃ<\\/0>", + "179083332": "កាលបរិច្ឆេទ", + "180844799": "អត្រាការបំពេញរបស់អ្នកទាបពេកសម្រាប់ការផ្សព្វផ្សាយនេះ។", + "192859167": "{{avg_buy_time_in_minutes}} នាទី", + "203271702": "ព្យាយាមម្ដងទៀត", + "231473252": "រូបិយប័ណ្ដដែលបានផ្តល់អាទិភាព", + "233677840": "នៃអត្រាសេដ្ឋកិច្ច", + "257637860": "ផ្ទុកឯកសារឡើងដើម្បីផ្ទៀងផ្ទាត់អាសយដ្ឋានរបស់អ្នក។", + "276261353": "ពេលវេលាដែលទូទាត់មធ្យម <0>៣០ថ្ងៃ<\\/0>", + "277542386": "សូមប្រើ <0>ជជែកផ្ទាល់ ដើម្បី​ទាក់ទង​ក្រុមគាំទ្រ​អតិថិជន​របស់​ពួក​យើង​សម្រាប់​ជំនួយ។", + "316725580": "អ្នកគ្មានសិទ្ធិអំពីការវាយតម្លៃបន្ថែមទៀត។", + "323002325": "ដាក់ផ្សាយពាណិជ្ជកម្ម", + "324970564": "ព័ត៌មានទំនាក់ទំនងនៃអ្នកលក់", + "358133589": "ដោះដ្រាយ {{advertiser_name}}?", + "364681129": "ព័ត៌មានទំនាក់ទំនង", + "367579676": "បានរារបាំង", + "390890891": "ត្រីមាសចុងក្រោយ", + "392469164": "អ្នកបានបិទ {{advertiser_name}}។", + "416167062": "អ្នកនឹងទទួលបាន", + "424668491": "ផុតកំណត់", + "450016951": "សួស្តី! នេះគឺជាកន្លែងដែលអ្នកអាចជជែកជាមួយភាគីទទួលខុសត្រូវដើម្បីផ្ទៀងផ្ទាត់ព័ត៌មានលម្អិតអំពីការបញ្ជាទិញ។
កំណត់ចំណាំ៖ ក្នុងករណីមានការជម្លោះ យើងនឹងប្រើជជែកនេះជាចង្អុលបង្ហាញ។", + "452752527": "អត្រា (១ {{ currency }})", + "459886707": "កាប៉ាអេឡិចត្រូនិច", + "460477293": "វាយសារតាមដាន", + "464044457": "ឈ្មោះហៅក្រៅរបស់អ្នកទិញ", + "473688701": "បញ្ចូលចំនួនថ្លៃដែលត្រឹមត្រូវ", + "488150742": "ផ្ញើអ៊ីមែលម្តងទៀត", + "498500965": "ឈ្មោះហៅក្រៅរបស់អ្នកលក់", + "500514593": "លាក់ការផ្សាយពាណិជ្ជកម្មរបស់ខ្ញុំ", + "501523417": "អ្នកមិនមានការបញ្ជាទិញទេ។", + "514948272": "ចម្លងតំណភ្ជាប់", + "517202770": "កំណត់អត្រាតំលៃថេរ", + "523301614": "បញ្ចេញ {{amount}} {{currency}}", + "525380157": "ទិញការកម្ម៉ង់ {{offered_currency}}", + "531912261": "ឈ្មោះធនាគារ លេខគណនី ឈ្មោះអ្នកទទួល", + "554135844": "កែសម្រួល", + "555447610": "អ្នកនឹងមិនអាចផ្លាស់ប្តូរដែនកំណត់ការទិញ និងលក់របស់អ្នកបានទៀតទេបន្ទាប់ពីនេះ។ តើអ្នកចង់បន្តទៀតមែនទេ?", + "560402954": "ការវាយតម្លៃអ្នកប្រើ", + "565060416": "អាត្រាប្តូរប្រាក់", + "574961698": "45 នាទី", + "587882987": "អ្នកដាំផ្សាយ", + "611376642": "ជម្រះ", + "612069973": "តើ​អ្នក​នឹង​ផ្ដល់​អូន​កម្ម​និយម​ទៅ​​អ្នក​ទិញ​នេះ​ដែរ​ឬទេ?", + "625563394": "មានតែភាពគំនិតត្រូវបានអនុញ្ញាត។", + "628581263": "អត្រាតំលៃក្នុងបុណ្យទីផ្សារ {{local_currency}} បានផ្លាស់ប្តូរ។", + "639382772": "សូម​ផ្ទុក​ឯកសារប្រភេទ​ដែលគាំទ្រ។", + "649549724": "ខ្ញុំមិនបានទទួលប្រាក់បង់ទេ។", + "654193846": "តំណភ្ជាប់ស្វែងការណ៍បានរារាំង អ្រុមជាមិនបាន សូមចុចប៊ូតុងខាងក្រោមដើម្បីស្នើរសុំមួយថ្មី", + "655733440": "ផ្សេងទៀត", + "661808069": "ផ្ញើអ៊ីមែលម្តងទៀត {{remaining_time}}", + "662578726": "មានទំនេរ", + "668309975": "អ្នកដទៃនឹងឃើញអ្វីនេះនៅក្នុងប្រវត្តិរូប ការផ្សព្វផ្សាយ និងជជែករបស់អ្នក។", + "683273691": "អត្រា (១ {{ account_currency }})", + "720104538": "អត្រាដូចគ្នា", + "723172934": "កំពុងស្វែងរកដើម្បីទិញ ឬលក់ USD? អ្នកអាចប្រកាសជាផ្នែកផ្សេងៗរបស់អ្នក ដើម្បីអ្នកផ្សេងទៀតឆ្លើយតបបាន។", + "728383001": "ខ្ញុំបានទទួលច្រើនជាងចំនួនតម្លៃដែលបានថ្លែង។", + "733311523": "ប្រតិបត្តិការក្នុងP2Pត្រូវបានចាក់សោ។ មុខងារនេះមិនមានសម្រាប់ភ្នាក់ងារទូទាត់ទេ។", + "752996317": "ជំហានចុងក្រោយ", + "767789372": "រង់ចាំការទូទាត់", + "782834680": "ពេលវេលា និងនៅសល់", + "783454335": "បទល្មើសហួសសមា្ភារៈ", + "784839262": "ចែករំលែក", + "790825518": "ការផ្សព្វផ្សាយនេះមិនមានទៀតទេ", + "830703311": "ប្រវត្តិរូបរបស់ខ្ញុំ", + "834075131": "អ្នកផ្សាយពាណិជ្ជកម្មដែលបានបិទ", + "838024160": "ព័ត៌មានធនាគារ", + "842911528": "កុំ​បង្ហាញសារ​នេះ​ម្ដងទៀត។", + "846659545": "ការផ្សាយពាណិជ្ជកម្មរបស់អ្នកមិនត្រូវបានរាប់បញ្ចូលក្នុង <0> ទិញ / លក់ <\\ 0> ក because នេះដ្បិតថាចំនួនលើសពីដែនកំណត់ប្រចាំថ្ងៃរបស់អ្នក។ <\n 1 \\ 1> អ្នកនៅតែអាចមើលឃើញការផ្សាយពាណិជ្ជកម្មរបស់អ្នកនៅលើ <0> ប្រកាសរបស់ខ្ញុំ <\\ / 0>។ ប្រសិនបើអ្នកចង់បង្កើនដែនកំណត់ប្រចាំថ្ងៃរបស់អ្នក សូមទាក់ទងយើងតាមរយៈ <2> អទ្រាប៊ាំជាតព័ត៌មានសក្រេនទឹក.", + "858027714": "បានឃើញ {{duration}} នាទីមុន", + "873437248": "ការណែនាំ (ជាជម្រើស)", + "875911610": "ប្រទេសដែលផ្ដល់អាទិភាព <0>({{eligible_countries_display}})<\\/0>", + "876086855": "បញ្ចប់សំណុំបែបបទធ្វើការវិភាគហិរញ្ញវត្ថុ", + "881351325": "តើ​អ្នក​នឹង​ផ្ដល់​អូន​កម្ម​និយម​ទៅ​​អ្នកលក់​នេះ​ដែរ​ឬទេ?", + "886126850": "ការផ្សាយពាណិជ្ជកម្មនេះ​មិនត្រូវបាន​បង្ហាញទេ លំនាំថាទីតាំងលើ និងក្រោមមិនមែនសម្រាប់បញ្ជាទិញកម្មវិធី។", + "887667868": "ការកម្ម៉ង់", + "892431976": "ប្រសិនបើអ្នកបោះបង់ការបញ្ជាទិញរបស់អ្នក {{cancellation_limit}} ដងក្នុង {{cancellation_period}} ម៉ោង អ្នកនឹងត្រូវបានរារកេងចរនាមោទនភាពការ Deriv P2P សម្រាប់ {{block_duration}} ម៉ោង។
({{number_of_cancels_remaining}} សូមចាំចំណើទុកដាក់)", + "917359787": "អ្នកមិនបានប្រើ Deriv P2P យ៉ាងយូរពេញលេញសម្រាប់ការផ្សព្វផ្សាយនេះទេ។", + "926446466": "សូមកំណត់គម្លាតបញ្ជាទិញអប្បបរមា និង/ឬអតិបរមាថ្មី។\n\nលំបុកៃមប្រហួតពីការផ្សាយដើមរបស់អ្នក។", + "929967494": "ដាក់ប្រាក់ដែលមិនអាចត្រឡប់មកវិញបានទេ៖ ធនាគារដែលមិនអាចត្រឡប់មកពីវិញពីវិធីទូទាត់ដែលមិនអាចត្រឡប់បាន", + "931661826": "ទាញយក QR code នេះ", + "947389294": "យើងត្រូវការឯកសាររបស់អ្នក", + "949859957": "បញ្ចូល", + "954233511": "បានលក់", + "957807235": "ការរើសធនធានមិនអាចធ្វើបានដោយ {{name}} មិនទេ Deriv P2P ទៀតទេ។", + "988380202": "បទបញ្ជាទេសាច់របស់អ្នក", + "993198283": "ឯកសារដែលអ្នកបានផ្ទុកឡើងមិនត្រូវបានគាំទ្រ។ បញ្ចូលឯកសារញុម។", + "1001160515": "លក់", + "1002264993": "ឈ្មោះពិតរបស់អ្នកលក់", + "1009032439": "គ្រប់ពេល", + "1019151270": "មានតែអ្នកប្រើប្រាស់ដែលផ្គូផ្គងទៅតាមលក្ខខណ្ឌទាំងនេះប៉ុណ្ណោះដែលនឹងមើលឃើញការផ្សព្វផ្សាយរបស់អ្នក។", + "1020552673": "អ្នកកំពុងបង្កើតពាណិជ្ជកម្មដើម្បីទិញ <0>{{ target_amount }} {{ target_currency }}<\\/0>...", + "1030390916": "អ្នក​មាន​ផ្សាយពាណិជ្ជកម្ម​ដល់ជួរនេះរួចហើយ", + "1035893169": "លុបចោល", + "1040596075": "ការផ្ទៀងផ្ទាត់អាសយដ្ឋានបានបរាជ័យ។ សូមសាកល្បងម្តងទៀត។", + "1052094244": "ការថែមមួយចំនួនបំផុត", + "1056821534": "តើអ្នកប្រាកដទេ?", + "1057127276": "{{- avg_release_time_in_minutes}} នាទី", + "1065551550": "កំណត់អត្រាតំលៃចរចា", + "1077515534": "កាលបរិច្ឆេទដល់", + "1080990424": "បញ្ជាក់", + "1089110190": "អ្នកអចេតនាផ្តល់អាសយដ្ឋានអ៊ីមែលផ្សេងទៀត (ជាទូទៅគឺការងារ ឬផ្ទាល់ខ្លួនប្រសិនជាវគឺជាអាសយដ្ឋានដែលអ្នកចង់)។", + "1091533736": "កុំគ្រប់គ្រងមូលនិធិរបស់អ្នកជាមួយប្រាសាទសាច់ប្រាក់ ប្រើប្រាស់លើនិទ្ទេស ឬ e-wallet ពីមានប្រឧូនទៀត។", + "1106073960": "អ្នកបានបង្កើតការផ្សាយពាណិជ្ជកម្មមួយ", + "1106485202": "សមតុល្យ Deriv P2P ដែលអាចប្រើបាន", + "1109217274": "ជោគជ័យ!", + "1119887091": "ការពិនិត្យមើល", + "1121630246": "បិទ", + "1137964885": "អាចមានអក្សរ ខ្ទង់លេខ និងសញ្ញាពិសេស .- _ @.", + "1142686040": "ឈ្មោះហៅក្រៅបានបន្ថែមដោយជោគជ័យ!", + "1151608942": "ចំនួនសរុប", + "1157877436": "{{field_name}} មិនគួរមានចំនួនច្រើនជាងតម្លៃកំណត់", + "1162965175": "អ្នកទិញ", + "1163072833": "<0>ID បានធ្វើអត្តសញ្ញាណ", + "1164771858": "ខ្ញុំបានទទួលការទូទាត់ពីភាគីទី3", + "1168689876": "ការផ្សព្វផ្សាយរបស់អ្នកមិនត្រូវបានបង្ហាញទេ", + "1184609483": "បង្កើតការផ្សព្វផ្សាយដូចគ្នា", + "1191941618": "បញ្ជូលតម្លៃក្នុងចន្លោះ -{{limit}}% ទៅ +{{limit}}%", + "1192337383": "បានឃើញ {{duration}} ម៉ោងមុន", + "1202500203": "បង់ឥឡូវ", + "1228352589": "មិនទាន់បានដាក់ពិន្ទុទេ", + "1229976478": "អ្នកនឹងអាចមើលការផ្សាយពាណិជ្ជកម្មរបស់ {{advertiser_name}} បាន។ ពួកគេនឹងអាចដាក់លំដាប់លើផ្សាយពាណិជ្ជកម្មរបស់អ្នកបានដែរ។", + "1236083813": "ព័ត៌មានការទូទាត់របស់អ្នក", + "1258285343": "អូុយ, មានអ្វីមួយមិនប្រក្រតីហើយ", + "1286797620": "សកម្ម", + "1287051975": "ឈ្មោះហៅក្រៅ​វែងពេក", + "1300767074": "{{name}} គ្មាននៅលើ Deriv P2P ទៀតទេ", + "1303016265": "បាទ", + "1313218101": "វាយតម្លៃប្រតិបត្តិការណ៍នេះ", + "1314266187": "ចូលរួមនៅថ្ងៃនេះ", + "1320670806": "ចាកចេញពីទំព័រ", + "1326475003": "ដាក់ឱ្យដំណើរការ", + "1328352136": "លក់ {{ account_currency }}", + "1330528524": "បានឃើញ {{duration}} ខែមុន", + "1337027601": "អ្នកបានលក់ {{offered_amount}} {{offered_currency}}", + "1347322213": "តើអ្នកនឹងវាយតម្លៃប្រតិបត្តិការណ៍នេះម្ដេច?", + "1347724133": "ខ្ញុំបានបង់ប្រាក់ {{amount}} {{currency}}.", + "1366244749": "ដែនកំណត់", + "1370999551": "អត្រា​ចរចា", + "1371193412": "បោះបង់", + "1376329801": "៦០ ថ្ងៃចុងក្រោយ", + "1378388952": "ជំរុញការផ្សាយរបស់អ្នកដោយចែករំលែក QR code និងតំណភ្ជាប់។", + "1381949324": "<0>អាសយដ្ឋានបានធ្វើអត្តសញ្ញាណ", + "1385570445": "ផ្ទុកឯកសារឡើងដើម្បីផ្ទៀងផ្ទាត់អត្តសញ្ញាណរបស់អ្នក។", + "1398938904": "យើងមិនអាចផ្ញើអ៊ីមែលទៅអាសយដ្ឋាននេះបានទេ (គឺដោយសារការប្រដៅឬច្រោះ)។", + "1404414405": "លក្ខខណ្ឌគូពាណិជ្ជកម្ម", + "1422356389": "គ្មានលទ្ធផលសម្រាប់ \"{{text}}\".", + "1426213515": "ប្រសិនបើអ្នកបានទទួល {{amount}} {{local_currency}} ពី {{name}} ក្នុងគណនីធនាគារ ឬ e-wallet របស់អ្នក សូមចុចប៊ូតុងខាងក្រោមដើម្បីបញ្ចប់ការបញ្ជាទិញ។", + "1430413419": "អតិបរិមា​គឺ {{value}} {{currency}}", + "1438103743": "អត្រាចរចាដែលសម្រាប់ {{local_currency}} បានអនុញ្ញាតិ ការផ្សព្វផ្សាយដែលមានអត្រាតំលៃថេរ នឹងត្រូវបានលុបចោល។ ប្ដូរទៅអត្រាចរចាដោយ {{end_date}}។", + "1448855725": "បន្ថែមវិធីសាស្ត្រទូទាត់", + "1452260922": "ការរក្សាមួយចំនួនមិនបានជោគជ័យ", + "1467483693": "ការកម្មង់ដែលបានកន្លងមក", + "1474532322": "តម្រៀប​តាម", + "1480915523": "រំលង", + "1497156292": "មិនមានការផ្សាយពាណិជ្ជកម្មឡើយដោយរូបិយប័ណ្ណនេះ 😞", + "1505293001": "ដៃគូពាណិជ្ជកម្ម", + "1543377906": "ការផ្សាយនេះមិនបានចុះបញ្ជីលើ ទិញ/លក់ ពីព្រោះអ្នកបានផ្អាកការផ្សាយទាំងអស់របស់អ្នក។", + "1568512719": "ដែនកំណត់ប្រចាំថ្ងៃរបស់អ្នកត្រូវបានបង្កើនទៅ {{daily_buy_limit}} {{currency}} (ទិញ) និង {{daily_sell_limit}} {{currency}} (លក់)។", + "1581886364": "តុល្យធន Deriv P2P របស់អ្នករួមទាំង៖", + "1583335572": "ប្រសិនបើ​ការ​ផ្សាយពាណិជ្ជកម្ម​មិន​ទទួលបាន​បញ្ជា​ទិញ​ប្រមាណ​មួយ {{adverts_archive_period}} ថ្ងៃ វា​ត្រូវ​បាន​រំលាយ​សកម្មភាព។", + "1587250288": "អត្តសញ្ញាណ​ផ្សាយពាណិជ្ជកម្ម {{advert_id}} ", + "1587507924": "ឬចម្លងតំណនេះ", + "1607051458": "ស្វែងរកតាមឈ្មោះហៅក្រៅ", + "1615530713": "មានអ្វីមួយមិនត្រូវហើយ", + "1620858613": "លោកអ្នកកំពុងកែប្រែផ្សាយដើម្បីលក់ <0>{{ target_amount }} {{ target_currency }} សម្រាប់ <0>{{ local_amount }} {{ local_currency }} <1>({{ price_rate }} {{ local_currency }}/{{ target_currency }})", + "1622662457": "កាលបរិច្ឆេទពី", + "1623916605": "ខ្ញុំមិនអាចបង់ប្រាក់ពេញលេញបានទេ។", + "1654365787": "មិនស្គាល់", + "1660278694": "អ្នកផ្សាយពាណិជ្ជកម្មបានផ្លាស់ប្តូរកោះទាក់ទាំងមុនពេលអ្នកបញ្ចាក់ទំនាក់ទំនាក់ការផ្សាយពាណិជ្ជកម្មពិនិត្យ។", + "1671725772": "ប្រសិនបើលោកអ្នកសម្រេចចិត្តលុបចោល សេចក្ដីលម្អិតដែលបានកែប្រែ នឹងបាត់បង់។", + "1675716253": "ដែន​កំណត់​អប្បបរមា", + "1678804253": "ទិញ {{ currency }}", + "1685888862": "មានកំហុសក្នុងប្រព័ន្ធទេ", + "1686592014": "ដើម្បីដាក់ការបញ្ជាទិញ សូមបន្ថែមអ្នកប្រើប្រាស់ចំណូលចិត្តវិធីសាស្ត្រទូទាត់មួយ:", + "1691540875": "កែប្រែវិធីសាស្ត្រទូទាត់", + "1699829275": "មិនអាចផ្ទុកឯកសារនអត់ទៅលើ 5MB", + "1702855414": "ការផ្សាយរបស់អ្នកមិនត្រូវបានចុះបញ្ជីលើ ទិញ/លក់ ដោយសារកត្តា(ៗ)ខាងក្រោមនេះ៖", + "1703154819": "អ្នកកំពុងកែសម្រួលការផ្សាយលក់ <0>{{ target_amount }} {{ target_currency }}<\\/0>...", + "1721422292": "បង្ហាញឈ្មោះពិតរបស់ខ្ញុំ", + "1740434340": "ការបញ្ជាទិញនឹងផុតកំណត់ប្រសិនបើមិនបានបញ្ចប់នៅក្នុងរយៈពេលនេះ។", + "1747523625": "ត្រឡប់ក្រោយ", + "1752096323": "{{field_name}} មិន​គួរ​ត្រូវ​នៅ​ក្រោម​ដែន​កំណត់​អប្បបរមា", + "1767817594": "ការបញ្ចប់ការជាវ <0>៣០ថ្ងៃ<\\/0>", + "1782514544": "ការផ្សាយនេះមិនត្រូវបានចុះបញ្ជីលើ ទិញ/លក់ ពីព្រោះការបញ្ជាទិញអប្បបរមាសមើស {{maximum_order_amount}} {{currency}} ។", + "1784151356": "នៅ", + "1791767028": "កំណត់អត្រាតំលៃថេរសម្រាប់ផ្សាយរបស់អ្នក។", + "1794470010": "ខ្ញុំបានបង់ប្រាក់គ្រប់ចំនួនហើយ ប៉ុន្តែអ្នកលក់នៅមិនទាន់ផ្ញើប្រាក់វិញបានទេ។", + "1794474847": "ខ្ញុំបានទទួលប្រាក់បង់", + "1798116519": "ចំនួនទ្រព្យដែលអាចប្រើបាន", + "1799384587": "អ្នកទិញបានបង់ប្រាក់ដល់អ្នករួចឬនៅ?", + "1809099720": "ពង្រីកទាំងអស់", + "1810217569": "សូមធ្វើឲ្យទំព័រនេះឆ្លងទៀតដើម្បីបន្ត។", + "1842172737": "អ្នកបានទទួល {{offered_amount}} {{offered_currency}}", + "1858251701": "នាទី", + "1859308030": "ផ្តល់យោបល់", + "1874956952": "ចុចប៊ូតុងនៅខាងក្រោមដើម្បីបន្ថែមវិធីសាស្ត្រទូទាត់។", + "1881018702": "ម៉ោង", + "1902229457": "មិនអាចទប់បង្អស់ពីការរាំងចាប់អ្នកផ្សាយពាណិជ្ជកម្ម", + "1908023954": "សុំទោស កំហុសមួយបានកើតឡើងក្នុងពេលដំណើរការសំណើរបស់អ្នក។", + "1914014145": "ថ្ងៃនេះ", + "1919093147": "អត្រាសម្រេចចិត្តច្រើនជាង <0>{{min_completion_rate}}%<\\/0>", + "1923443894": "អសកម្ម", + "1928240840": "លក់ {{ currency }}", + "1929119945": "មិនទាន់មានការផ្សាយពាណិជ្ជកម្មទេ", + "1976156928": "អ្នកនឹងផ្ញើ", + "1992961867": "អត្រា (១ {{currency}})", + "1994023526": "អាសយដ្ឋានអ៊ីមែលដែលអ្នកបានបញ្ចូលមិនត្រឹមត្រូវឬស្តាយ (វាគឺជារឿងកើតឡើងពីពួកយើងគ្រប់គ្នា)។", + "2020104747": "ត្រង", + "2027742762": "ពិនិត្យការកំណត់របស់អ្នក និងបង្កើតការផ្សព្វផ្សាយថ្មី។ ការផ្សព្វផ្សាយគ្រប់គ្នាត្រូវមានការកំណត់វដ្តនិងអត្រាផ្ទាល់ខ្លួន។", + "2029375371": "សេចក្ដីណែនាំពីការទូទាត់", + "2032274854": "បានផ្ដល់អូនក្វីតាមរបស់{{recommended_count}}ជួញដូរ", + "2039361923": "អ្នកកំពុងបង្កើតពាណិជ្ជកម្មដើម្បីលក់...", + "2040110829": "បញ្ចាទ្បា", + "2060873863": "ការបញ្ជាទិញ {{order_id}} របស់អ្នកបានបញ្ចប់", + "2063890788": "បានបោះបង់", + "2064304887": "យើងទទួលយក JPG, PDF, ឬ PNG (ច្រើនឬតិច5MB)", + "2065710341": "អត្រាសម្រេចចិត្តគឺជាភាគរយនៃការបញ្ជាទិញដែលជោគជ័យ។", + "2076240918": "យើងនឹងបង្ហាញការផ្សព្វផ្សាយរបស់អ្នកទៅកាន់មនុស្សដែលបានប្រើប្រាស់ Deriv P2P រយៈពេលបន្ថែមនៃកាលបរិច្ឆេទអ្នកជ្រើសរើស។", + "2091671594": "ស្ថានភាព", + "2096014107": "អនុវត្ត", + "2104905634": "មិន​ទាន់​មាន​នរណា​ធ្វើ​អូន​ក​ម់​​ការ​អ្នកជួញដូរនេះនៅឡើយទេ", + "2121837513": "អប្បបរមា​គឺ {{value}} {{currency}}", + "2142425493": "លេខសម្គាល់ផ្សាយពាណិជ្ជកម្ម", + "2145292295": "ឱ្យពិន្ទុ", + "-1540251249": "ទិញ {{ account_currency }}", + "-1267880283": "{{field_name}} ត្រូវការ", + "-2019083683": "{{field_name}} អាចរួមបញ្ចូលអក្សរ លេខ ចន្លោះ និងនិមិត្តសញ្ញាទាំងនេះប៉ុណ្ណោះ: -+.,'#@():;", + "-222920564": "{{field_name}} មានប្រវែងលើសអតិបរមា", + "-2093768906": "{{name}} បានផ្លង់បានមូលនិធិរបស់អ្នក
តើអ្នកចង់ផ្តល់យោបល់ដែរឬទេ?", + "-1101273282": "ឈ្មោះហៅ​ក្រៅ​ត្រូវ​ការ", + "-919203928": "ឈ្មោះ​ហៅ​ក្រៅ​ខ្លី​ពេក", + "-1907100457": "មិនអាច​ចាប់ផ្តើម បញ្ចប់ ដោយនិមិត្តសញ្ញាពិសេស ​ឬធ្វើម្តងទៀតបានទេ។", + "-270502067": "មិនអាចធ្វើតួអក្សរលានជាង ៤ ដងទេ។", + "-499872405": "អ្នកមានការកម្មង់សំរាប់ការផ្សាយពាណិជ្ជកម្មនេះ។ សូមបំពេញការកម្មង់ទាំងអស់ជាមុនសិន មុននឹងលុបការផ្សាយពាណិជ្ជកម្មនេះ។", + "-2125702445": "ការណែនាំ", + "-1274358564": "ដែន​កំណត់​អតិបរមា", + "-1995606668": "ចំណុះ", + "-1965472924": "អត្រា​ផ្ដាច់", + "-1081775102": "{{field_name}} មិន​គួរ​ត្រូវ​នៅ​ក្រោម​ដែន​កំណត់​អតិបរមា", + "-991345852": "មានត្រឹមតែ 2 លេខក្នុងទេត្រូវបានអនុញ្ញាត។", + "-885044836": "{{field_name}} មិនគួរលើស​ដែន​កំណត់​អតិបរមា", + "-1921077416": "ទាំងអស់ ({{list_value}})", + "-608125128": "បានរារបាំង ({{list_value}})", + "-1764050750": "ព័ត៌មាននៃវិធីបង់ប្រាក់", + "-2021135479": "វាលនេះត្រូវការជានិយម។", + "-2005205076": "{{field_name}} បានការលើបំផុតនៃតួអក្សរចំនួន 200។", + "-1837059346": "ទិញ / លក់", + "-494667560": "ការកម្ម៉ង់", + "-679691613": "ពាណិជ្ជកម្មរបស់ខ្ញុំ", + "-412680608": "បន្ថែមវិធីសាស្ត្រទូទាត់", + "-984140537": "បន្ថែម", + "-1220275347": "អ្នកអាចជ្រើសរើសបានដល់ទៅ ៣ វិធីសាស្ត្រទូទាត់សម្រាប់ការផ្សាយនេះ។", + "-510341549": "ខ្ញុំបានទទួលតិចជាងចំនួនតម្លៃដែលបានអង់ឌាមេ។", + "-650030360": "ខ្ញុំបានបង់ប្រាក់ច្រើនជាងចំនួនតម្លៃដែលបានថ្លែង។", + "-1192446042": "ប្រសិនបើការទិញឬលក់របស់អ្នកមិនមាននៅទីនេះ សូមទាក់ទងក្រុមបដិសណ្ឋារកិច្ចរបស់យើង។", + "-573132778": "បញ្ឈឺរជំនាញ", + "-792338456": "កំពុងបញ្ឈឺរអ្វី?", + "-418870584": "បោះបង់ការកម្ម៉ង់", + "-1392383387": "ខ្ញុំបានទូទាត់", + "-727273667": "ប្តឹង", + "-2016990049": "លក់ការកម្ម៉ង់ {{offered_currency}}", + "-811190405": "ពេលវេលា", + "-961632398": "បិទប្រតិបត្តទាំងអស់", + "-415476028": "មិនទាន់ទទួលការវាយតម្លៃ", + "-26434257": "អ្នកមានរហូតដល់ {{remaining_review_time}} GMT ដើម្បីវាយតម្លៃប្រតិបត្តិនេះ។", + "-768709492": "បទពិសោធន៍ប្រតិបត្តិការរបស់អ្នក", + "-652933704": "បានផ្ដល់អនុសាសន៍", + "-84139378": "មិនផ្ដល់អនុសាសន៍", + "-2139303636": "អ្នកអាចតាមតំណភ្ជាប់បន្លំ ឬទំព័របានផ្លាស់ប្តូរទៅអាសយដ្ឋានថ្មី។", + "-1448368765": "កូដកំហុស: {{error_code}} ទំព័រការចូលអមតីភា", + "-1660552437": "ត្រឡប់ទៅ P2P", + "-137444201": "ទិញ", + "-1306639327": "វិធីសាស្ត្រទូទាត់", + "-904197848": "ដែនកំណត់ {{min_order_amount_limit_display}}-{{max_order_amount_limit_display}} {{currency}}", + "-464361439": "{{- avg_buy_time_in_minutes}} នាទី", + "-2109576323": "ការបញ្ចប់ការលក់ <0>៣០ថ្ងៃ<\\/0>", + "-165392069": "ពេលវេលាដែលដោះលែងមធ្យម <0>៣០ថ្ងៃ<\\/0>", + "-1154208372": "បរិមាណពាណិជ្ជកម្ម <0>៣០ថ្ងៃ<\\/0>", + "-1494028069": "វាត្រូវបានលុបចោល ឬមិនមានសកម្មទៀត។", + "-2017825013": "យល់ឃើញ", + "-1845037007": "គេហទំព័ររបស់អ្នកផ្សព្វផ្សាយ", + "-1070228546": "ចូលរួម {{days_since_joined}}ថ្ងៃ", + "-2015102262": "({{number_of_ratings}} ពិន្ទុ)", + "-1412298133": "({{number_of_ratings}} ពិន្ទុ)", + "-260332243": "{{user_blocked_count}} នាក់បានបិទអ្នក", + "-117094654": "{{user_blocked_count}} នាក់បានបិទអ្នក", + "-329713179": "យល់ព្រម", + "-1689905285": "ដោះដ្រាយ", + "-1148912768": "ប្រសិនបើអត្រាតំលៃក្នុងตลาดផ្លាស់ប្តូរ ពីអត្រាតំលៃសំរាប់ក្នុងមួយនោះ យើងនឹងមិនអាចដំណើរការបញ្ជាទិញរបស់អ្នក។", + "-55126326": "អ្នកលក់", + "-92830427": "បទបញ្ជាទេសាច់របស់អ្នកលក់", + "-1940034707": "បទបញ្ជាទេសាច់របស់អ្នកទិញ", + "-631576120": "ការបញ្ជាទិញត្រូវតែបញ្ចប់ក្នុង", + "-835196958": "ទទួលការទូទាត់ទៅ", + "-1218007718": "អ្នកអាចជ្រើសរើសបានដល់ទៅ ៣ វិធីសាស្ត្រទូទាត់។", + "-1933432699": "បញ្ជូលចំនួន {{transaction_type}}", + "-2021730616": "{{ad_type}}", + "-490637584": "ចំនួនកំណត់: {{min}}–{{max}} {{currency}}", + "-1974067943": "ព័ត៌មានធនាគាររបស់អ្នក", + "-892663026": "ព័ត៌មានទំនាក់ទំនងរបស់អ្នក", + "-1285759343": "ស្វែងរក", + "-1657433201": "គ្មាន​ផ្សាយពាណិជ្ជកម្ម​ដែលត្រូវគ្នា​ទេ។", + "-1862812590": "ដែនកំណត់ {{ min_order }}–{{ max_order }} {{ currency }}", + "-1876891031": "រូបិយប័ណ្ណ", + "-1503997652": "មិនមានការផ្សាយពាណិជ្ជកម្មសម្រាប់រូបិយប័ណ្ដនេះទេ។", + "-1048001140": "មិនមានលទ្ធផលសម្រាប់ \"{{value}}\" ទេ។", + "-254484597": "អ្នកគ្មានការផ្សាយ 😞", + "-1179827369": "បង្កើតពាណិជ្ជកម្មថ្មី", + "-73663931": "បង្កើតការផ្សាយពាណិជ្ជកម្ម", + "-141315849": "មិនមានការផ្សាយពាណិជ្ជកម្មឡើយដោយរូបិយប័ណ្ណនេះនៅពេលនេះ 😞", + "-1889014820": "<0>មិនឃើញវិធីសាស្ត្រទូទាត់របស់អ្នក​ទេ?<\\/0> <1>បន្ថែមថ្មី។<\\/1>", + "-1406830100": "វិធីសាស្ត្រទូទាត់", + "-294043241": "កំណត់ប្រភេទនៃការផ្សព្វផ្សាយ និងចំនួនប្រាក់", + "-311810519": "កំណត់ព័ត៌មាន ការទូទាត់", + "-1149273198": "កំណត់លក្ខខណ្ឌនៃការផ្សព្វផ្សាយ", + "-1282343703": "លោកអ្នកបានបង្កើតទិជ្ជាដើម្បីទិញ <0>{{ target_amount }} {{ target_currency }} សម្រាប់ <0>{{ local_amount }} {{ local_currency }} <1>({{ price_rate }} {{ local_currency }}/{{ target_currency }})", + "-2139632895": "លោកអ្នកបានបង្កើតទិជ្ជាដើម្បីលក់ <0>{{ target_amount }} {{ target_currency }} សម្រាប់ <0>{{ local_amount }} {{ local_currency }} <1>({{ price_rate }} {{ local_currency }}/{{ target_currency }})", + "-40669120": "អ្នកកំពុងបង្កើតពាណិជ្ជកម្មដើម្បីលក់ <0>{{ target_amount }} {{ target_currency }}<\\/0>...", + "-514789442": "អ្នកកំពុងបង្កើតពាណិជ្ជកម្មដើម្បីទិញ...", + "-1914431773": "លោកអ្នកកំពុងកែប្រែផ្សាយដើម្បីទិញ <0>{{ target_amount }} {{ target_currency }} សម្រាប់ <0>{{ local_amount }} {{ local_currency }} <1>({{ price_rate }} {{ local_currency }}/{{ target_currency }})", + "-107996509": "អ្នកកំពុងកែសម្រួលការផ្សាយដើម្បីទិញ <0>{{ target_amount }} {{ target_currency }}<\\/0>...", + "-863580260": "អ្នកកំពុងកែសម្រួលការផ្សាយដើម្បីទិញ...", + "-1396464057": "អ្នកកំពុងកែសម្រួលការផ្សាយដើម្បីលក់...", + "-309848900": "ចម្លង", + "-1318334333": "ឱ្យដំណើរការប្រតិបត្តិ", + "-372210670": "អត្រា (1 {{account_currency}})", + "-87612148": "ការផ្សាយមិនត្រូវបានចុះបញ្ជី។", + "-466964809": "គ្រប់គ្រងការផ្សព្វផ្សាយ", + "-1667041441": "អត្រា (1 {{ offered_currency }})", + "-792015701": "Deriv P2P ទូរទាត់ប្រាក់មិនអាចប្រើបាននៅក្នុងប្រទេសរបស់អ្នក។", + "-1983512566": "ការសន្ទនានេះត្រូវបានបិទរួចរាល់។", + "-283017497": "សាកល្បងម្ដងទៀត", + "-360975483": "អ្នកមិនបានធ្វើប្រតិបត្តិការណ៍ប្រភេទនេះនៅរយៈពេលនេះទេ។", + "-979459594": "ទិញ/លក់", + "-2052184983": "លេខសម្គាល់ការកម្ម៉ង់", + "-2096350108": "ក្រុមហ៊ុនផ្សេងទៀត", + "-1597110099": "ទទួល", + "-750202930": "ការកម្មង់ដែលកំពុងដំណើរការ", + "-1626659964": "ខ្ញុំបានទទួល {{amount}} {{currency}}។", + "-526636259": "កំហុស 404", + "-480724783": "អ្នក​មាន​ផ្សាយពាណិជ្ជកម្ម​ដល់អត្រានេះរួចហើយ", + "-2040406318": "អ្នកមានការផ្សាយជាមួយអត្រាប្តូរប្រាក់ដូចគ្នាសម្រាប់ខ្នាតរូបិយប័ណ្ណនេះ និងប្រភេទការបញ្ជាទិញនេះជាមុនហើយ។\n\nសូមកំណត់អត្រាផ្សេងអំឡុងការផ្សាយរបស់អ្នក។", + "-1117584385": "បានឃើញមុននេះ ៦ខែ", + "-1766199849": "បានឃើញ {{duration}} ខែមុន", + "-591593016": "បានឃើញ {{duration}} ថ្ងៃមុន", + "-1586918919": "បានឃើញ {{duration}} ម៉ោងមុន", + "-664781013": "បានឃើញ {{duration}} នាទីមុន", + "-1717650468": "នៅលើបណ្ដាញ", + "-485338176": "អ្នកផ្សព្វផ្សាយបានកំណត់លក្ខខណ្ឌសម្រាប់ការផ្សព្វផ្សាយនេះដែលអ្នកមិនផ្គូផ្គងទេ។", + "-1887970998": "ការរើសការរាំងចាប់មិនអាចធ្វើបានដោយ {{name}} មិនចូលបានមិនបានទេ Deriv P2P ទៀតទេ", + "-1207312691": "បានសម្រេច", + "-688728873": "ផុតកំណត់", + "-1951641340": "នៅក្នុងវិវាទ", + "-1738697484": "បញ្ជាក់ការទូទាត់", + "-1611857550": "រង់ចាំអ្នកលក់អះអាង", + "-1452684930": "ឈ្មោះពិតរបស់អ្នកទិញ", + "-1875343569": "ព័ត៌មាននៃវិធីបង់ប្រាក់អ្នកលក់", + "-1977959027": "ម៉ោង", + "-1603581277": "នាទី", + "-1792280476": "ជ្រើសរើសវិធីសាស្ត្រទូទាត់របស់អ្នក", + "-520142572": "វិស័យបេឡាកំពុងត្រូវបានថែទាំ", + "-1552080215": "សូមពិនិត្យម្តងទៀតនៅប៉ុន្មាននាទីបន្ទាប់។<0><\\/0>អរគុណសម្រាប់ការអត់ធ្មត់របស់អ្នក។", + "-684271315": "យល់ព្រម", + "-130601012": "សូមជ្រើសរើសរយៈពេល", + "-232254547": "ផ្ទាល់ខ្លួន", + "-1577570698": "កាលបរិច្ឆេទចាប់ផ្តើម", + "-1251526905": "៧ ថ្ងៃចុងក្រោយ", + "-1638172550": "ដើម្បី​បើក​មុខ​ងារ​នេះ​អ្នក​ត្រូវ​បញ្ចប់​រាល់​អំពី​ប្រធានបទ​ដូច​ខាង​ក្រោម:", + "-1086586743": "សូម​ដាក់ស្នើ <0>ភស្តុតាងអាសយដ្ឋាន របស់​អ្នក។ អ្នក​អាច​ប្រើ Deriv P2P ក្រោយ​ពី​យើងបាន​ផ្ទៀងផ្ទាត់​ឯកសាររបស់​អ្នករួចរាល់។", + "-559300364": "Deriv P2P", + "-740038242": "អត្រាសេដ្ឋកិច្ចរបស់អ្នកគឺ", + "-1072444041": "ធ្វើបច្ចុប្បន្នភាព​ការ​ផ្សាយពាណិជ្ជកម្ម", + "-2085839488": "ការផ្សាយនេះមិនត្រូវបានចុះបញ្ជីលើ ទិញ/លក់ ពីព្រោះការបញ្ជាទិញអប្បបរមាសមើសចំនួនទឹកប្រាក់ដែលនៅសល់នៃការផ្សាយ ({{remaining_amount}} {{currency}}) ។", + "-987612578": "ការផ្សាយនេះមិនត្រូវបានចុះបញ្ជីលើ ទិញ/លក់ ពីព្រោះការបញ្ជាទិញអប្បបរមាសមើសសមតុល្យដែលមានសល់លើ Deriv P2P របស់អ្នក ({{balance}} {{currency}}) ។", + "-84644774": "ការផ្សាយនេះមិនត្រូវបានចុះបញ្ជីលើ ទិញ/លក់ ពីព្រោះការបញ្ជាទិញអប្បបរមាសមើសកំណត់ប្រចាំថ្ងៃរបស់អ្នកដែលនៅសល់ ({{remaining_limit}} {{currency}}) ។", + "-452142075": "អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យប្រើប្រាស់ Deriv P2P ដើម្បីផ្សាយ។ សូមទាក់ទងមកយើងខ្ញុំតាមរយៈជជែកផ្ទាល់សម្រាប់ព័ត៌មានបន្ថែម ។", + "-1886565882": "ដំណើរការពាណិជ្ជកម្មរបស់អ្នកដែលមានអត្រាតំលៃថេរត្រូវបានបិទ សូមកំណត់អត្រាតំលៃថេរជាពិសេសអាចដំណើរការវិញបាន។", + "-971817673": "ការផ្សាយពាណិជ្ជកម្មរបស់អ្នកមិនអាចតាមអ្នកផ្សេងទៀត", + "-1735126907": "នេះអាចមានមកពីមូលហេតុដែលបាលងើបក្សានុភាពក្នុងគណនីរបស់អ្នកមិនគ្រប់គ្រាន់ ចំនួនថ្លៃផ្សេងពីដែនកំណត់ប្រចាំថ្ងៃរបស់អ្នក ឬទាំងពីរ។ អ្នកនៅតែអាចមើលឃើញការផ្សាយពាណិជ្ជកម្មរបស់អ្នកនៅលើ <0> ប្រកាសរបស់ខ្ញុំ <\\ 0> ។", + "-674715853": "ផ្សាយពាណិជ្ជកម្មរបស់អ្នកលើសកម្រិតប្រចាំថ្ងៃ", + "-1530773708": "បិទ {{advertiser_name}}?", + "-2035037071": "មូលនិធិ Deriv P2P របស់លោកអ្នកមិនគ្រប់គ្រាន់ទេ សូមបន្ថែមមូលនិធិក្នុងគណនីរបស់លោកអ្នក មុនពេលព្យាយាមម្ដងទៀត។", + "-293182503": "បោះបង់ការបន្ថែមវិធីសាស្ត្រទូទាត់នេះ?", + "-1850127397": "ប្រសិនបើអ្នកជ្រើសរើសចាកចេញ ព័ត៌មានដែលអ្នកបានបញ្ចូលនឹងត្រូវបាត់បង់។", + "-1601971804": "តើលោកអ្នកចង់លុបចោលការកែប្រែរបស់លោកអ្នកមែនទេ?", + "-1571737200": "កុំលុបចោល", + "-146021156": "លុប {{payment_method_name}}?", + "-1846700504": "តើ​អ្នក​ប្រាកដ​ថា​ចង់​លើក​លុប​វិធីបង់ប្រាក់នេះមែនទេ?", + "-231863107": "ទេ", + "-471384801": "សូមម៉្លឹងម៉ាយយើងទំនើងមិនបាច់ក្ដែកដាល់ចាក់ទម្លប់របស់អ្នក​ឆ្លើយនៅពេលនេះទេ។ សូមតម្លប់ដោវ២០១ទៀតបន្តិច។", + "-150224710": "បាទ​, បន្ត", + "-1422779483": "វិធីបង់ប្រាក់នោះមិនអាចត្រូវបានលុប", + "-1088454544": "ទទួលបានតំណភ្ជាបានវិញ", + "-1327607310": "ការចេញប្រាក់មុនការទទួលបានការទូទាត់អាចបណ្តាលឱ្យការបាត់បង់។ ពិនិត្យសារអ៊ីមែលរបស់អ្នក និងអនុវត្តតាមសេចក្តីណែនាំ <0>ក្នុងរយៈពេល ១០ នាទី<\\/0> ដើម្បីចេញប្រាក់។", + "-1632557686": "ខ្ញុំមិនទទួលអ៊ីមែលទេ", + "-142727028": "អ៊ីមែលនៅក្នុងថតសំរាប់ស垃圾រាង (ការ​ដែលម្តងទៅម្តងមកបាត់)។", + "-75934135": "ការផ្សាយដែលផ្គូផ្គងกัน", + "-1856204727": "កំណត់ឡើងវិញ", + "-227512949": "ពិនិត្យការសរសេររបស់អ្នក ឬប្រើពាក្យផ្សេង។", + "-1554938377": "ស្វែងរកវិធីសាស្ត្រទូទាត់", + "-1728351486": "តំណភ្ជាប់បញ្ជាក់មិនត្រឹមត្រូវ", + "-433946201": "ចាកចេញពីទំព័រ?", + "-818345434": "តើ​អ្នក​ប្រាកដ​ថា​ចង់​ចាកចេញពីទំព័រនេះមែនទេ? ការផ្លាស់ប្ដូរ​ដែល​បាន​ធ្វើនឹង​មិនត្រូវ​បាន​រក្សាទុកទេ។", + "-392043307": "អ្នកចង់លុបពាណិជ្ជកម្មនេះទេ?", + "-854930519": "អ្នកនឹង​មិន​អាច​ស្ដារ​វា​រយៈពេលបន្តទេ។", + "-1600783504": "កំណត់អត្រាតំលៃចរចាសម្រាប់ផ្សាយរបស់អ្នក។", + "-2066944925": "Deriv P2P តុល្យធន", + "-172105477": "P2P ដាក់ប្រាក់៖ ទឹកប្រាក់បានទទួលពីការទិញ USD ពីអ្នកប្រើ Deriv P2P ផ្សេងទៀត", + "-271432543": "សម្គាល់ៈ ទឹកប្រាក់ដែលបានដាក់បញ្ចូលបង្កើតដោយការទូទាត់ដែលអាចត្រឡប់ដូចជា iខ្នលួព្កដាឺបាន​គ្រឹ្គតីឡាញុ ជនែ ដែល្ឡីព៍ថានតំ ស្រ្ត ក្វីឡា​នែៈ S ແម្ឆមាZ ៍​ ប្រលួសន់ ZIFQR USIP䞼ចាត់្មារ", + "-268565332": "ឈ្មោះហៅក្រៅរបស់អ្នកជាអ្វី?", + "-532709160": "ឈ្មោះហៅក្រៅរបស់អ្នក", + "-1016461467": "ឈ្មោះហៅក្រៅរបស់អ្នកមិនអាចប្ដូរបានក្រោយមកទេ។", + "-2008992756": "អ្នកចង់លុបការកម្មង់នេះទេ?", + "-1618084450": "ប្រសិនបើអ្នកបោះបង់ការបញ្ជាទិញនេះ អ្នកនឹងទទួលការពិបាកប្រើប្រាស់ Deriv P2P រយៈពេល {{block_duration}} ម៉ោង។", + "-2026176944": "សូម​កុំបោះបង់​ប្រសិនបើអ្នកបានបង់ប្រាក់រួចហើយ។", + "-1989544601": "បោះបង់ការកម្ម៉ង់នេះ", + "-492996224": "កុំបោះបង់", + "-1447732068": "ការបញ្ជាក់ការទូទាត់", + "-1951344681": "សូមធានាថាអ្នកបានបង់ប្រាក់ចំនួន {{amount}} {{currency}} ទៅ {{other_user_name}} ហើយផ្ទុកបង្កាន់​ដៃជាភស្តុតាងនៃការបង់ប្រាក់របស់​អ្នក", + "-637818525": "ការផ្ញើឯកសារក្លែងក្លាយនឹងបណ្តាលឱ្យមានការធ្វើបណ្តេញចេញភ្លាមៗ និងអចិន្រ្តៃ។", + "-670364940": "ផ្ទុកបង្កាន់ដៃនៅទីនេះ", + "-937707753": "ត្រឡប់ក្រោយ", + "-167747987": "ស្វែងរកប្រទេស", + "-1171244939": "គ្មានលទ្ធផលសម្រាប់ \"{{search_value}}\"។", + "-1581516455": "ប្រទេសអនុញ្ញាត", + "-1340125291": "រួចរាល់", + "-1854199094": "{{type}} {{account_currency}}", + "-788469106": "លេខសម្គាល់", + "-574559641": "ស្កេនកូដនេះដើម្បីបញ្ជាទិញតាមរយៈ Deriv P2P", + "-1078665050": "ចែករំលែកតំណភ្ជាប់", + "-354026679": "ចែករំលែកតាម", + "-229543460": "{{- link}}", + "-1388977563": "ដាក់ចម្លងរួចរាល់!", + "-237014436": "បានផ្ដល់អូនក្វីតាម{{recommended_count}}ជួញដូរ", + "-849068301": "កំពុងផ្ទុក...", + "-2061807537": "មានអ្វីមិនត្រឹមត្រូវ", + "-1354983065": "ធ្វើឱ្យស្រស់", + "-2054589794": "អ្នកត្រូវបានចាត់ទោសកាត់បន្ថយកិច្ចការជាច្រើនដ្បិតស្នាក់ពេល។ ព្យាយាមម្តងទៀតបន្ទាប់ពី {{date_time}} GMT", + "-1079963355": "ជួញដូរ", + "-609070622": "ការផ្ទៀងផ្ទាត់អត្តសញ្ញាណកំពុងដំណើរការ។", + "-1269954557": "ការផ្ទៀងផ្ទាត់អត្តសញ្ញាណបានបរាជ័យ។ សូមសាកល្បងម្តងទៀត។", + "-1507102231": "ការផ្ទៀងផ្ទាត់អត្តសញ្ញាណបានបញ្ចប់។", + "-670039668": "ការផ្ទៀងផ្ទាត់អាសយដ្ឋានកំពុងដំណើរការ។", + "-23313647": "ការផ្ទៀងផ្ទាត់អាសយដ្ឋានបានបញ្ចប់។", + "-1483008038": "ផ្ទៀងផ្ទាត់គណនី P2P របស់អ្នក", + "-792476552": "ផ្ទៀងផ្ទាត់អត្តសញ្ញាណនិងអាសយដ្ឋានរបស់អ្នកដើម្បីប្រើប្រាស់ Deriv P2P។", + "-288996254": "មិនមាន", + "-145054222": "លក្ខខណ្ឌគូពាណិជ្ជកម្ម (ស្រេចចិត្ត)", + "-614283799": "ចូលរួមនាងច្រើនជាង", + "-1908785123": "អត្រាសម្រេចចិត្តច្រើនជាង", + "-2049545084": "យើងនឹងបង្ហាញការផ្សព្វផ្សាយរបស់អ្នកទៅមនុស្សដែលមានអត្រាសម្រេចចិត្តខ្ពស់ជាងការជ្រើសរើសរបស់អ្នក។", + "-492290468": "យើងនឹងបង្ហាញការផ្សព្វផ្សាយរបស់អ្នកទៅមនុស្សដែលនៅក្នុងប្រទេសដែលអ្នកបានជ្រើស។", + "-71696502": "មុន", + "-1541554430": "បន្ទាប់", + "-207756259": "អ្នកអាចចុច និងជ្រើសរហូតដល់ ៣ ។", + "-2094684686": "ប្រសិនបើអ្នកជ្រើសរើសឱ្យបោះបង់សារនេះ ព័ត៌មានដែលអ្នកបានបញ្ចូលនឹងបាត់បង់។", + "-1561775203": "ទិញ {{currency}}", + "-1527285935": "លក់ {{currency}}", + "-592818187": "សមតុល្យ Deriv P2P របស់អ្នកគឺ {{ dp2p_balance }}", + "-1654157453": "អត្រាដែលកំណត់ (១ {{currency}})", + "-379708059": "ការកម្ម៉ង់អតិបរមា", + "-1459289144": "ព័ត៌មាននេះនឹងអាចមើលឃើញសម្រាប់អស់អ្នកទាំងអស់គ្នា។", + "-712875121": "{{title}}", + "-1987185760": "បន្ទាប់៖ {{title}}", + "-1281511784": "បោះបង់ការបង្កើតការផ្សព្វផ្សាយ?", + "-2144449586": "ប្រភេទការផ្សព្វផ្សាយ", + "-1307206495": "ការបញ្ជាទិញត្រូវតែបញ្ចប់ក្នុង", + "-1653577295": "ចូលរួមនាងច្រើនជាង <0>{{min_join_days}} ថ្ងៃ<\\/0>", + "-293628675": "1 ម៉ោង", + "-1978767852": "30 នាទី", + "-999492762": "15 នាទី", + "-322185463": "ប្រទេសទាំងអស់", + "-1908692350": "កំណត់តម្យាងដោយ", + "-992568889": "មិនមាននរណាម្នាក់ឆ្លាក់នៅទីនេះទេ", + "-1241719539": "ពេលអ្នករារបាំងនរណាម្នាក់ អ្នកនិងមិនឃើញការផ្សាយពាណិជ្ជកម្មរបស់ពួកគេហើយ នាវចររំកិលរកធ្វើ", + "-1007339977": "មិនមានឈ្មោះដែលត្រូវគ្នា", + "-1298666786": "ភាគីទាំងអស់របស់ខ្ញុំ", + "-179005984": "រក្សាទុក", + "-2059312414": "ព័ត៌មានលម្អិតអំពីការផ្សាយ", + "-1769584466": "ស្ថិតិ", + "-2090878601": "ចំនួនកំណត់ប្រចាំថ្ងៃ", + "-474123616": "ចង់បង្កើនដែនកំណត់ប្រចាំថ្ងៃរបស់អ្នកទៅ <0>{{max_daily_buy}} {{currency}} <\\ / 0> (ទិញ) និង <1>{{max_daily_sell}} {{currency}} <\\ / 1 > (លក់) ឬ?", + "-133982971": "{{avg_release_time_in_minutes}} នាទី", + "-130547447": "ប្រតិបត្តិការជួញដូរ <0>30ថ្ងៃ | <1>រយៈពេលសមុទ្រ", + "-383030149": "អ្នកមិនទាន់បន្ថែមវិធីសាស្ត្រទូទាត់ណាមួយនៅឡើយទេ", + "-1156559889": "ការផ្ទេរតាមធនាគារ", + "-1269362917": "បន្ថែមថ្មី" +} \ No newline at end of file diff --git a/packages/translations/src/translations/ar.json b/packages/translations/src/translations/ar.json index 76f1c03aae18..a83720c2e959 100644 --- a/packages/translations/src/translations/ar.json +++ b/packages/translations/src/translations/ar.json @@ -141,7 +141,7 @@ "151646545": "غير قادر على قراءة الملف {{name}}", "152415091": "الرياضيات", "152524253": "تداول في الأسواق العالمية من خلال منصتنا الشهيرة سهلة الاستخدام.", - "153485708": "Zero Spread - BVI", + "153485708": "حساب Zero Spread - BVI", "157593038": "عدد صحيح عشوائي من {{ start_number }} إلى {{ end_number }}", "157871994": "انتهت صلاحية الرابط", "158355408": "قد تكون بعض الخدمات غير متاحة مؤقتًا.", @@ -294,7 +294,7 @@ "313741895": "تُرجع هذه الكتلة «True» إذا كانت الشمعة الأخيرة سوداء. يمكن وضعها في أي مكان على اللوحة باستثناء الكتلة الجذرية لمعايير التجارة.", "315306603": "لديك حساب لم يتم تعيين عملة له. يرجى اختيار عملة للتداول باستخدام هذا الحساب.", "316694303": "هل الشمعة سوداء؟", - "318705408": "Demo Zero Spread", + "318705408": "حساب Demo Zero Spread", "318865860": "اغلاق", "318984807": "تكرر هذه المجموعة التعليمات الواردة بداخلها لعدد محدد من المرات.", "321457615": "عفوًا، حدث خطأ ما!", @@ -322,7 +322,7 @@ "344418897": "تساعدك حدود التداول والاستبعاد الذاتي هذه على التحكم في مقدار المال والوقت الذي تقضيه على {{brand_website_name}} وممارسة <0>التداول المسؤول.", "345320063": "طابع زمني غير صالح", "345818851": "عذرًا، حدث خطأ داخلي. اضغط على مربع الاختيار أعلاه للمحاولة مرة أخرى.", - "346070861": "Zero Spread", + "346070861": "حساب Zero Spread", "346843343": "عقود الفروقات على الأدوات المالية والمشتقة مع نسخ التداول.", "347029309": "الفوركس: قياسي/مايكرو", "347039138": "التكرار (2)", @@ -923,7 +923,7 @@ "975747761": "جاري", "975950139": "بلد الإقامة", "977929335": "اذهب إلى إعدادات حسابي", - "979713491": "Zero Spread BVI", + "979713491": "حساب Zero Spread BVI", "980050614": "قم بالتحديث الآن", "981138557": "إعادة توجيه", "981568830": "لقد اخترت استبعاد نفسك من التداول على موقعنا حتى {{exclude_until}}. إذا لم تتمكن من إجراء صفقة أو إيداع بعد فترة الاستبعاد الذاتي، فيرجى الاتصال بنا عبر <0>دردشة مباشرة .", @@ -1675,7 +1675,7 @@ "1722056905": "المستند الذي قدمته غير مدعوم لبلدك. يرجى تقديم مستند مدعوم لبلدك.", "1722888575": "{{mt5_migration_error}}", "1723069433": "Wallet الجديدة", - "1723390945": "Your demo {{deriv}} {{type}} account is ready.", + "1723390945": "تم إعداد حسابك التجريبي {{deriv}} {{type}}.", "1723589564": "يمثل الحد الأقصى لعدد العقود المعلقة في محفظتك. يتم احتساب كل سطر في محفظتك لصفقة واحدة مفتوحة. بمجرد الوصول إلى الحد الأقصى، لن تتمكن من فتح صفقات جديدة دون إغلاق مركز موجود أولاً.", "1724367774": "يمكنك إجراء تحويل الأموال بمجرد اكتمال التحقق من حسابك.", "1724696797": "أنت مقيد بحساب فيات واحد فقط.", @@ -2035,7 +2035,7 @@ "2049386104": "نحتاج منك إرسالها للحصول على هذا الحساب:", "2050170533": "قائمة الاختيار", "2051558666": "عرض سجل المعاملات", - "2051596653": "Demo Zero Spread BVI", + "2051596653": "حساب Demo Zero Spread BVI", "2052022586": "لتعزيز أمان حساب MT5 الخاص بك، قمنا بترقية سياسة كلمة المرور الخاصة بنا.", "2054889300": "قم بإنشاء \"%1»", "2055317803": "انسخ الرابط إلى متصفح الجوال الخاص بك", @@ -3265,7 +3265,7 @@ "-533935232": "جزر فيرجن البريطانية المالية", "-565431857": "لابوان المالية", "-291535132": "حساب Swap-Free تجريبي", - "-499019612": "Zero Spread Demo", + "-499019612": "حساب Zero Spread Demo", "-1472945832": "SVG خالي من المبادلة", "-144803045": "يُسمح فقط بالأرقام وهذه الأحرف الخاصة: {{permitted_characters}}", "-1450516268": "يُسمح فقط بالحروف والأرقام والمسافة والواصلة والنقطة والفاصلة العليا.", @@ -3371,7 +3371,7 @@ "-2072411961": "تم التحقق من إثبات العنوان الخاص بك", "-384887227": "قم بتحديث العنوان في ملف التعريف الخاص بك.", "-1470677931": "عقود الفروقات على الأدوات المالية.", - "-1595662064": "Zero spread CFDs on financial and derived instruments", + "-1595662064": "عقود فروقات Zero Spread على أدوات مالية ومشتقة مختارة", "-1998049070": "إذا كنت توافق على استخدامنا لملفات تعريف الارتباط، فانقر فوق قبول. لمزيد من المعلومات، <0>راجع سياستنا.", "-402093392": "إضافة حساب Deriv", "-1721181859": "ستحتاج إلى حساب {{deriv_account}}", @@ -3574,7 +3574,7 @@ "-1385484963": "قم بالتأكيد لتغيير كلمة المرور {{platform}} الخاصة بك", "-1990902270": "سيؤدي هذا إلى تغيير كلمة المرور لجميع الحسابات {{platform}} الخاصة بك.", "-12535938": "* مؤشر Volatility 250 ومؤشر Volatility 150 ومؤشر Boom 300 ومؤشر Crash 300", - "-2104148631": "Commissions apply", + "-2104148631": "تطبق عمولات", "-201485855": "يصل إلى", "-700260448": "تجريبي", "-1769158315": "حقيقي", @@ -3584,7 +3584,7 @@ "-2092058806": "من 8 إلى 16 حرفاً", "-2051033705": "حرف خاص مثل ( _ @ ? ! / # )", "-1762249687": "حرف صغير", - "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", + "-1123437857": "أنت تضيف حسابك {{platform}} {{product}} تحت {{company}}, والتي يتم تنظيمها من قبل لجنة خدمات الأموال في جزر فيرجن البريطانية (رقم الترخيص SIBA/L/18/1114).", "-535365199": "أدخل كلمة المرور {{platform}} لإضافة حساب {{platform_name}} {{account}} .", "-184453418": "أدخل كلمة المرور {{platform}} الخاصة بك", "-393388362": "نحن نراجع مستنداتك. يجب أن يستغرق هذا حوالي 1 إلى 3 أيام.", diff --git a/packages/translations/src/translations/bn.json b/packages/translations/src/translations/bn.json index 60685e00f1ee..df74558b78e4 100644 --- a/packages/translations/src/translations/bn.json +++ b/packages/translations/src/translations/bn.json @@ -11,7 +11,7 @@ "7100308": "ঘণ্টা 0 থেকে 23 এর মধ্যে হতে হবে।", "9488203": "Deriv Bot ট্রেডিং ডিজিটাল অপশনের জন্য একটি ওয়েব ভিত্তিক কৌশল নির্মাতা। এটি একটি প্ল্যাটফর্ম যেখানে আপনি ড্র্যাগ এবং ড্রপ 'ব্লক' ব্যবহার করে আপনার নিজস্ব ট্রেডিং বট তৈরি করতে পারেন।", "9757544": "অনুগ্রহ করে আপনার ঠিকানার প্রমাণ জমা দিন", - "11533428": "Trade bigger positions with less capital on a wide range of global markets. <0>Learn more", + "11533428": "বিস্তৃত বৈশ্বিক বাজারে কম মূলধন সহ বড় অবস্থান ট্রেড করুন। <0>আরও জানুন", "11539750": "আপেক্ষিক স্ট্রেন্থ ইনডেক্স অ্যারে {{ dummy }}এ {{ variable }} সেট করুন", "11706633": "লস থ্রেশহোল্ড: আপনার মোট ক্ষতি এই পরিমাণ ছাড়িয়ে গেলে বট ট্রেডিং বন্ধ করবে।", "11872052": "হ্যাঁ, আমি পরে ফিরে আসবো", @@ -71,7 +71,7 @@ "76916358": "আপনি উইথড্রয়াল লিমিটে<0/> পৌঁছেছেন৷ আপনার উইথড্রয়াল চালিয়ে যাওয়ার জন্য দয়া করে আপনার পরিচয়ের প্রমাণ এবং ঠিকানা আপলোড করুন।", "76925355": "আপনার বটের পারফরম্যান্স পরীক্ষা করুন", "77982950": "Vanilla বিকল্পগুলি আপনাকে “Call” বা “Put” ক্রয় করে অন্তর্নিহিত সম্পত্তির ঊর্ধ্বমুখী (বুলিশ) বা নিম্নগামী (বিয়ারিশ) দিকনির্দেশনা দেয়।", - "81009535": "Potential profit/loss", + "81009535": "সম্ভাব্য মুনাফা/ক্ষতি", "81091424": "আপগ্রেড সম্পূর্ণ করতে, দয়া করে লগ আউট করুন এবং আরও অ্যাকাউন্ট যুক্ত করতে এবং আপনার Wallets গুলির সাথে লেনদেন করতে আবার লগ ইন করুন।", "81450871": "আমরা সেই পৃষ্ঠাটি খুঁজে পাইনি", "82839270": "আপনার পাসপোর্টের পৃষ্ঠাটি আপলোড করুন যাতে আপনার ছবি ধারণ করে।", @@ -141,7 +141,7 @@ "151646545": "ফাইল পড়তে অক্ষম {{name}}", "152415091": "গণিত", "152524253": "আমাদের জনপ্রিয় ব্যবহারকারী-বন্ধুত্বপূর্ণ প্ল্যাটফর্মের সাথে বিশ্বের বাজারে ট্রেড করুন।", - "153485708": "Zero Spread - BVI", + "153485708": "Zero Spread - BVI অ্যাকাউন্ট", "157593038": "{{ start_number }} থেকে {{ end_number }}র্যান্ডম পূর্ণসংখ্যা পর্যন্ত", "157871994": "লিংকের মেয়াদ শেষ", "158355408": "কিছু পরিষেবা সাময়িকভাবে অনুপলব্ধ হতে পারে।", @@ -294,7 +294,7 @@ "313741895": "শেষ মোমবাতি কালো হলে এই ব্লকটি “True” ফেরত দেয়। এটি ট্রেড প্যারামিটার রুট ব্লক ব্যতীত ক্যানভাসে যে কোন জায়গায় স্থাপন করা যেতে পারে।", "315306603": "আপনার এমন একটি অ্যাকাউন্ট আছে যার কারেন্সি নির্ধারিত নেই। অনুগ্রহ করে এই অ্যাকাউন্টের সাথে ট্রেড করার জন্য একটি মুদ্রা নির্বাচন করুন।", "316694303": "মোমবাতি কি কালো?", - "318705408": "Demo Zero Spread", + "318705408": "Demo Zero Spread অ্যাকাউন্ট", "318865860": "বন্ধ", "318984807": "এই ব্লক নির্দিষ্ট সংখ্যক সময়ের জন্য অন্তর্ভুক্ত নির্দেশাবলী পুনরাবৃত্তি করে।", "321457615": "ওহো, কিছু একটা ভুল হয়েছে!", @@ -322,7 +322,7 @@ "344418897": "এই ট্রেডিং সীমা এবং স্ব-বর্জন আপনাকে {{brand_website_name}} এ ব্যয় করা অর্থের পরিমাণ নিয়ন্ত্রণ করতে এবং <0>দায়িত্বশীল ট্রেডিং অনুশীলন করতে সহায়তা করে।", "345320063": "অবৈধ টাইমস্ট্যাম্প", "345818851": "দুঃখিত, একটি অভ্যন্তরীণ ত্রুটি ঘটেছে। আবার চেষ্টা করতে উপরের চেকবক্স হিট করুন।", - "346070861": "Zero Spread", + "346070861": "Zero Spread অ্যাকাউন্ট", "346843343": "কপি ট্রেডিং সহ আর্থিক এবং প্রাপ্ত যন্ত্রের উপর CFD.", "347029309": "ফরেক্স: স্ট্যান্ডার্ড/মাইক্রো", "347039138": "পুনরাবৃত্তি (2)", @@ -388,7 +388,7 @@ "419496000": "আপনার মুনাফা এই পরিমাণের চেয়ে বেশি বা সমান হলে আপনার চুক্তি স্বয়ংক্রিয়ভাবে বন্ধ হয়ে যায়। এই ব্লকটি শুধুমাত্র Multipliers ট্রেড টাইপের সাথে ব্যবহার করা যাবে।", "420072489": "CFD ট্রেডিং ফ্রিকোয়েন্সি", "422055502": "থেকে", - "423682863": "When your loss reaches or exceeds the set amount, your trade will be closed automatically.", + "423682863": "যখন আপনার ক্ষতি সেট পরিমাণ পৌঁছায় বা অতিক্রম করে, তখন আপনার বাণিজ্য স্বয়ংক্রিয়ভাবে বন্ধ হবে।", "424101652": "দ্রুত কৌশল গাইড >", "424272085": "আমরা আপনার আর্থিক সুস্থতা গুরুত্ব সহকারে গ্রহণ করি এবং ট্রেডিং করার আগে আপনি ঝুঁকি সম্পর্কে সম্পূর্ণ সচেতন হন তা নিশ্চিত করতে চাই।<0/><0/>", "424897068": "আপনি বুঝতে পারেন যে আপনি সম্ভাব্য অর্থ আপনি ট্রেড করতে ব্যবহার 100% হারাতে পারে?", @@ -491,7 +491,7 @@ "532724086": "কর্মসংস্থান চুক্তি", "533403953": "আপনার বিদ্যমান <0>{{platform}} {{type}} {{from_account}} অ্যাকাউন্ট(গুলি) অ্যাক্সেসযোগ্য থাকবে।", "535041346": "সর্বোচ্চ। প্রতিদিন মোট ষ্টেক", - "536277802": "TP & SL history", + "536277802": "টিপি এবং এসএল ইতিহাস", "537788407": "অন্যান্য CFD প্লাটফর্ম", "538017420": "0.5 পিপস", "538042340": "নীতি 2: শেয়ার কেবল তখনই বৃদ্ধি পায় যখন কোনও ক্ষতির ট্রেড একটি সফল ট্রেডে অনুসরণ করা হয়", @@ -923,7 +923,7 @@ "975747761": "চলমান", "975950139": "বসবাসের দেশ", "977929335": "আমার অ্যাকাউন্ট সেটিংসে যান", - "979713491": "Zero Spread BVI", + "979713491": "Zero Spread BVI অ্যাকাউন্ট", "980050614": "এখন হালনাগাদ করুন", "981138557": "পুনর্নির্দেশ", "981568830": "আপনি {{exclude_until}}পর্যন্ত আমাদের ওয়েবসাইটে ট্রেডিং থেকে নিজেকে বাদ দেওয়া চয়ন করেছেন। যদি আপনি আপনার স্ব-বর্জনের সময়ের পরে কোনও ট্রেড বা ডিপোজিট করতে না পারেন, তাহলে <0>লাইভ চ্যাটের মাধ্যমে আমাদের সাথে যোগাযোগ করুন।", @@ -1675,7 +1675,7 @@ "1722056905": "আপনার দেওয়া নথিটি আপনার দেশের জন্য সমর্থিত নয়। আপনার দেশের জন্য একটি সমর্থিত নথি প্রদান করুন।", "1722888575": "{{mt5_migration_error}}", "1723069433": "আপনার নতুন Wallet", - "1723390945": "Your demo {{deriv}} {{type}} account is ready.", + "1723390945": "আপনার ডেমো {{deriv}} {{type}} অ্যাকাউন্ট প্রস্তুত।", "1723589564": "আপনার পোর্টফোলিও মধ্যে অসামান্য চুক্তি সর্বোচ্চ সংখ্যা প্রতিনিধিত্ব করে। আপনার পোর্টফোলিওর প্রতিটি লাইন এক ওপেন পজিশনের জন্য গণনা করে। সর্বোচ্চ পৌঁছে গেলে, আপনি প্রথমে বিদ্যমান পজিশন বন্ধ না করে নতুন পজিশন খুলতে পারবেন না।", "1724367774": "আপনার অ্যাকাউন্টের যাচাইকরণ সম্পূর্ণ হয়ে গেলে আপনি তহবিল স্থানান্তর করতে পারেন।", "1724696797": "আপনি শুধুমাত্র একটি ফায়াত অ্যাকাউন্টে সীমাবদ্ধ।", @@ -1798,7 +1798,7 @@ "1831847842": "আমি নিশ্চিত করি যে উপরের নাম এবং জন্ম তারিখ আমার নির্বাচিত পরিচয় দস্তাবেজের সাথে মেলে (নিচে দেখুন)", "1833499833": "পরিচয় দস্তাবেজ আপলোড প্রমাণ ব্যর্থ", "1836767074": "পেমেন্ট এজেন্টের নাম অনুসন্ধান করুন", - "1837533589": "Stop Loss", + "1837533589": "স্টপ লস", "1837762008": "ক্যাশিয়ার অ্যাক্সেস করার জন্য আপনার অ্যাকাউন্ট সেটিংসে আপনার অ্যাকাউন্ট যাচাই করার জন্য আপনার পরিচয় এবং ঠিকানার প্রমাণ জমা দিন।", "1839021527": "অনুগ্রহ করে একটি বৈধ অ্যাকাউন্ট নম্বর লিখুন। উদাহরণ: সিআর 123456789", "1840721160": "Deriv MT5 সর্বশেষ পাসওয়ার্ড প্রয়োজনীয়তা", @@ -2035,7 +2035,7 @@ "2049386104": "এই অ্যাকাউন্টটি পেতে আপনাকে এগুলি জমা দিতে হবে:", "2050170533": "টিক- এর তালিকা", "2051558666": "লেনদেনের ইতিহাস দেখুন", - "2051596653": "Demo Zero Spread BVI", + "2051596653": "Demo Zero Spread BVI অ্যাকাউন্ট", "2052022586": "আপনার MT5 অ্যাকাউন্টের নিরাপত্তা বাড়াতে আমরা আমাদের পাসওয়ার্ড নীতি আপগ্রেড করেছি।", "2054889300": "তৈরি করুন \"%1”", "2055317803": "আপনার মোবাইল ব্রাউজারে লিঙ্কটি অনুলিপি করুন", @@ -2709,7 +2709,7 @@ "-145462920": "Deriv cTrader", "-982095728": "পান", "-1790089996": "নতুন!", - "-1473281803": "Predict the market, profit if you’re right, risk only what you put in. <0>Learn more", + "-1473281803": "বাজারের ভবিষ্যদ্বাণী করুন, আপনি সঠিক থাকলে লাভ করুন, আপনি যা রাখেন তা কেবল ঝুঁকি নিন। <0>আরও জানুন", "-2134770229": "আপনার ডেরিভ অ্যাপস এবং ডেরিভ এমটি 5 CFD ডেমো অ্যাকাউন্টে মোট সম্পদ।", "-1277942366": "মোট সম্পদ", "-1255879419": "ট্রেডার'স হাব", @@ -3265,7 +3265,7 @@ "-533935232": "আর্থিক BVI", "-565431857": "আর্থিক লাবুয়ান", "-291535132": "সোয়াপ মুক্ত ডেমো", - "-499019612": "Zero Spread Demo", + "-499019612": "Zero Spread ডেমো", "-1472945832": "সোয়াপ-মুক্ত SVG", "-144803045": "শুধুমাত্র সংখ্যা এবং এই বিশেষ অক্ষর অনুমোদিত হয়: {{permitted_characters}}", "-1450516268": "শুধুমাত্র অক্ষর, সংখ্যা, স্থান, হাইফেন, পিরিয়ড এবং অ্যাপোস্ট্রফি অনুমোদিত।", @@ -3371,7 +3371,7 @@ "-2072411961": "আপনার ঠিকানা প্রমাণ যাচাই করা হয়েছে", "-384887227": "আপনার প্রোফাইলে ঠিকানা আপডেট করুন।", "-1470677931": "আর্থিক যন্ত্রের উপর CFD।", - "-1595662064": "Zero spread CFDs on financial and derived instruments", + "-1595662064": "Zero Spread আর্থিক এবং প্রাপ্ত উপকরণের উপর CFD", "-1998049070": "আপনি যদি আমাদের কুকিজ ব্যবহারে সম্মত হন, তাহলে Accept-এ ক্লিক করুন। আরও তথ্যের জন্য, <0>আমাদের নীতি দেখুন।", "-402093392": "Deriv অ্যাকাউন্ট যোগ করুন", "-1721181859": "আপনি একটি {{deriv_account}} অ্যাকাউন্ট প্রয়োজন হবে", @@ -3574,7 +3574,7 @@ "-1385484963": "আপনার {{platform}} পাসওয়ার্ড পরিবর্তন করতে নিশ্চিত করুন", "-1990902270": "এটি আপনার সমস্ত {{platform}} অ্যাকাউন্টের পাসওয়ার্ড পরিবর্তন করবে।", "-12535938": "* ভোলাটিলিটি 250 সূচক, অস্থিরতা 150 সূচক, বুম 300 এবং ক্র্যাশ 300 স", - "-2104148631": "Commissions apply", + "-2104148631": "কমিশন প্রযোগ করা হয়", "-201485855": "পর্যন্ত", "-700260448": "ডেমো", "-1769158315": "বাস্তব", @@ -3584,7 +3584,7 @@ "-2092058806": "8 থেকে 16 অক্ষর", "-2051033705": "একটি বিশেষ চরিত্র যেমন ( _ @ ? ! / # )", "-1762249687": "একটি ছোট অক্ষর", - "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", + "-1123437857": "আপনি আপনার {{platform}} {{product}} অ্যাকাউন্ট যুক্ত করছেন {{company}}, যা ব্রিটিশ ভার্জিন আইল্যান্ডস ফিন্যান্সিয়াল সার্ভিসেস কমিশন (লাইসেন্স নং. SIBA/L/18/1114) দ্বারা নিয়ন্ত্রিত।", "-535365199": "একটি {{platform_name}} {{account}} অ্যাকাউন্ট যোগ করতে আপনার {{platform}} পাসওয়ার্ড লিখুন।", "-184453418": "আপনার {{platform}} পাসওয়ার্ড লিখুন", "-393388362": "আমরা আপনার নথি পর্যালোচনা করছি। এটি প্রায় 1 থেকে 3 দিন সময় নিতে পারে।", @@ -3690,7 +3690,7 @@ "-2069438609": "কোন ম্যাচ পাওয়া যায়নি", "-97673874": "কোনও বন্ধ ট্রেড নেই", "-1727419550": "আপনার বন্ধ ট্রেডগুলি এখানে দেখানো হবে।", - "-225500551": "Entry & exit details", + "-225500551": "এন্ট্রি এবং প্রস্থানের বিবরণ", "-993480898": "Accumulators", "-123659792": "Vanillas", "-1226595254": "Turbos", @@ -3702,12 +3702,12 @@ "-232254547": "কাস্টম", "-1251526905": "গত 7 দিন", "-1539223392": "গত 90 দিন", - "-1913695340": "Order Details", - "-1882287418": "How do I earn a payout?", + "-1913695340": "অর্ডার বিবরণ", + "-1882287418": "আমি কিভাবে পেআউট উপার্জন করব?", "-2017825013": "পেয়েছি এটা।", - "-725670935": "Take profit and stop loss are unavailable while deal cancellation is enabled.", - "-1331298683": "Take profit can’t be adjusted for ongoing accumulator contracts.", - "-99964540": "When your profit reaches or exceeds the set amount, your trade will be closed automatically.", + "-725670935": "টেক মুনাফা এবং স্টপ লস উপলব্ধ নয় যখন চুক্তি বাতিল সক্রিয়।", + "-1331298683": "মুনাফা গ্রহণ চলমান Accumulator চুক্তির জন্য সামঞ্জস্য করা যাবে না।", + "-99964540": "যখন আপনার লাভ সেট পরিমাণ পৌঁছায় বা অতিক্রম করে, তখন আপনার বাণিজ্য স্বয়ংক্রিয়ভাবে বন্ধ হবে।", "-1052279158": "আপনার <0>পেআউট হল আপনার প্রাথমিক ষ্টেক এবং লাভের যোগফল।", "-274058583": "<0>মুনাফা গ্রহণ হল একটি অতিরিক্ত বৈশিষ্ট্য যা আপনার লাভের লক্ষ্যমাত্রার পরিমাণে পৌঁছে গেলে স্বয়ংক্রিয়ভাবে ট্রেড বন্ধ করে আপনার ঝুঁকি পরিচালনা করতে দেয়। এই বৈশিষ্ট্যটি চলমান Accumulator চুক্তিগুলির জন্য অনুপলব্ধ৷", "-1819891401": "আপনি যেকোনো সময় আপনার ট্রেড বন্ধ করতে পারেন। যাইহোক, <0>স্লিপেজ ঝুঁকি সম্পর্কে সচেতন থাকুন।", @@ -4132,7 +4132,7 @@ "-1769852749": "অপ্রযোজ্য ", "-726626679": "সম্ভাব্য মুনাফা/ক্ষতি:", "-1511825574": "মুনাফা/ক্ষতি:", - "-499175967": "Strike Price", + "-499175967": "স্ট্রাইক দাম", "-2082644096": "বর্তমান স্টেক ", "-706219815": "ইঙ্গিতপূর্ণ মূল্য", "-1669418686": "AUD/CAD", diff --git a/packages/translations/src/translations/de.json b/packages/translations/src/translations/de.json index 5a376eb4b4e0..5c2bbf7aa3f6 100644 --- a/packages/translations/src/translations/de.json +++ b/packages/translations/src/translations/de.json @@ -11,7 +11,7 @@ "7100308": "Die Stunde muss zwischen 0 und 23 liegen.", "9488203": "Deriv Bot ist ein webbasierter Strategie-Builder für den Handel mit digitalen Optionen. Es ist eine Plattform, auf der Sie mithilfe von Drag-and-Drop-Blöcken Ihren eigenen automatisierten Handels-Bot erstellen können.", "9757544": "Bitte reichen Sie Ihren Adressnachweis ein", - "11533428": "Trade bigger positions with less capital on a wide range of global markets. <0>Learn more", + "11533428": "Handeln Sie größere Positionen mit weniger Kapital auf einer Vielzahl von weltweiten Märkten. <0>Weitere Informationen", "11539750": "setzen Sie {{ variable }} auf Array {{ dummy }}für den Relativen Stärkeindex", "11706633": "Verlustschwelle: Der Bot stellt den Handel ein, wenn Ihr Gesamtverlust diesen Betrag überschreitet.", "11872052": "Ja, ich komme später wieder", @@ -71,7 +71,7 @@ "76916358": "Sie haben das Auszahlungslimit erreicht.<0/> Bitte laden Sie Ihren Identitäts- und Adressnachweis hoch, um das Limit aufzuheben und Ihre Auszahlung fortzusetzen.", "76925355": "Überprüfen Sie die Leistung Ihres Bots", "77982950": "Mit Vanilla-Optionen können Sie eine Aufwärts- (bullish) oder Abwärtsbewegung (bearish) des Basiswerts vorhersagen, indem Sie einen \"Call\" oder einen \"Put\" kaufen.", - "81009535": "Potential profit/loss", + "81009535": "Potenzieller Gewinn/Verlust", "81091424": "Um das Upgrade abzuschließen, loggen Sie sich bitte aus und melden Sie sich erneut an, um weitere Konten hinzuzufügen und Transaktionen mit Ihren Wallets durchzuführen.", "81450871": "Wir konnten diese Seite nicht finden", "82839270": "Laden Sie die Seite Ihres Reisepasses hoch, die Ihr Foto enthält.", @@ -388,7 +388,7 @@ "419496000": "Ihr Kontrakt wird automatisch geschlossen, wenn Ihr Gewinn diesen Betrag übersteigt oder ihm entspricht. Dieser Block kann nur mit der Handelsart Multipliers verwendet werden.", "420072489": "Häufigkeit des CFD-Handels", "422055502": "Von", - "423682863": "When your loss reaches or exceeds the set amount, your trade will be closed automatically.", + "423682863": "Wenn Ihr Verlust den festgelegten Betrag erreicht oder überschreitet, wird Ihr Handel automatisch geschlossen.", "424101652": "Schnelle Strategieanleitungen >", "424272085": "Wir nehmen Ihr finanzielles Wohlergehen ernst und möchten sicherstellen, dass Sie sich der Risiken vor dem Handel voll bewusst sind.<0/><0/>", "424897068": "Verstehen Sie, dass Sie möglicherweise 100% des Geldes, das Sie für den Handel verwenden, verlieren könnten?", @@ -491,7 +491,7 @@ "532724086": "Arbeitsvertrag", "533403953": "Ihr bestehendes <0>{{platform}} {{type}} {{from_account}} Konto (Konten) bleiben zugänglich.", "535041346": "Maximaler Gesamteinsatz pro Tag", - "536277802": "TP & SL history", + "536277802": "TP & SL Geschichte", "537788407": "Andere CFD-Plattform", "538017420": "0,5 Pips", "538042340": "Prinzip 2: Der Einsatz erhöht sich nur, wenn auf einen Verlusthandel ein erfolgreicher Handel folgt", @@ -1675,7 +1675,7 @@ "1722056905": "Das von Ihnen angegebene Dokument wird für Ihr Land nicht unterstützt. Bitte stellen Sie ein unterstütztes Dokument für Ihr Land zur Verfügung.", "1722888575": "{{mt5_migration_error}}", "1723069433": "Ihr neues Wallet", - "1723390945": "Your demo {{deriv}} {{type}} account is ready.", + "1723390945": "Ihr Demo-Konto {{deriv}} {{type}} ist bereit.", "1723589564": "Stellt die maximale Anzahl ausstehender Verträge in Ihrem Portfolio dar. Jede Zeile in Ihrem Portfolio zählt für eine offene Position. Sobald das Maximum erreicht ist, können Sie keine neuen Positionen eröffnen, ohne zuerst eine bestehende Position zu schließen.", "1724367774": "Sie können eine Überweisung tätigen, sobald die Überprüfung Ihres Kontos abgeschlossen ist.", "1724696797": "Sie sind auf nur ein Fiat-Konto beschränkt.", @@ -1798,7 +1798,7 @@ "1831847842": "Ich bestätige, dass der oben angegebene Name und das Geburtsdatum mit dem von mir gewählten Ausweis übereinstimmen (siehe unten)", "1833499833": "Das Hochladen der Ausweisdokumente ist fehlgeschlagen", "1836767074": "Suchen Sie nach dem Namen des Zahlungsagenten", - "1837533589": "Stop Loss", + "1837533589": "Stop-loss", "1837762008": "Bitte reichen Sie Ihren Identitäts- und Adressnachweis ein, um Ihr Konto in Ihren Kontoeinstellungen zu verifizieren und auf den Kassenbereich zuzugreifen.", "1839021527": "Bitte geben Sie eine gültige Kontonummer ein. Beispiel: CR123456789", "1840721160": "Derin MT5 neueste Passwortanforderungen", @@ -2709,7 +2709,7 @@ "-145462920": "Deriv cTrader", "-982095728": "Holen", "-1790089996": "NEU!", - "-1473281803": "Predict the market, profit if you’re right, risk only what you put in. <0>Learn more", + "-1473281803": "Sagen Sie den Markt voraus, profitieren Sie, wenn Sie richtig liegen, und riskieren Sie nur das, was Sie eingesetzt haben. <0>Mehr erfahren", "-2134770229": "Gesamtes Vermögen auf Ihrem Deriv Apps und Deriv MT5 CFDs Demokonto.", "-1277942366": "Aktiva insgesamt", "-1255879419": "Trader's Hub", @@ -3371,7 +3371,7 @@ "-2072411961": "Ihr Adressnachweis wurde verifiziert", "-384887227": "Aktualisiere die Adresse in deinem Profil.", "-1470677931": "CFDs auf Finanzinstrumente.", - "-1595662064": "Zero spread CFDs on financial and derived instruments", + "-1595662064": "Zero spread CFDs auf ausgewählte Finanzinstrumente und Derived Instrumente", "-1998049070": "Wenn Sie der Verwendung von Cookies zustimmen, klicken Sie auf Akzeptieren. Weitere Informationen finden <0>Sie in unseren Richtlinien.", "-402093392": "Deriv-Konto hinzufügen", "-1721181859": "Sie benötigen ein {{deriv_account}} Konto", @@ -3574,7 +3574,7 @@ "-1385484963": "Bestätigen Sie, dass Sie Ihr {{platform}} Passwort ändern möchten", "-1990902270": "Dadurch wird das Passwort für alle Ihre {{platform}}-Konten geändert.", "-12535938": "*Volatility 250 Index, Volatility 150 Index, Boom 300 und Crash 300 Index", - "-2104148631": "Commissions apply", + "-2104148631": "Kommissionen gelten", "-201485855": "Bis zu", "-700260448": "Demo", "-1769158315": "echt", @@ -3584,7 +3584,7 @@ "-2092058806": "8 bis 16 Zeichen", "-2051033705": "Ein Sonderzeichen wie ( _ @ ? ! / # )", "-1762249687": "Ein Kleinbuchstabe", - "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", + "-1123437857": "Sie fügen Ihr Deriv {{platform}} {{product}} Konto unter {{company}} hinzu, reguliert durch die British Virgin Islands Financial Services Commission (Lizenz Nr. SIBA/L/18/1114).", "-535365199": "Geben Sie Ihr {{platform}}-Passwort ein, um ein {{platform_name}} {{account}}-Konto hinzuzufügen.", "-184453418": "Geben Sie Ihr {{platform}}-Passwort ein", "-393388362": "Wir überprüfen Ihre Dokumente. Dies sollte etwa 1 bis 3 Tage dauern.", @@ -3690,7 +3690,7 @@ "-2069438609": "Keine Treffer gefunden", "-97673874": "Keine geschlossenen Handelsgeschäfte", "-1727419550": "Ihre geschlossenen Geschäfte werden hier angezeigt.", - "-225500551": "Entry & exit details", + "-225500551": "Details zur Ein- und Ausreise", "-993480898": "Accumulators", "-123659792": "Vanillas", "-1226595254": "Turbos", @@ -3702,12 +3702,12 @@ "-232254547": "Benutzerdefiniert", "-1251526905": "Letzte 7 Tage", "-1539223392": "Letzte 90 Tage", - "-1913695340": "Order Details", - "-1882287418": "How do I earn a payout?", + "-1913695340": "Bestelldetails", + "-1882287418": "Wie kann ich eine Auszahlung erhalten?", "-2017825013": "Ich hab's", - "-725670935": "Take profit and stop loss are unavailable while deal cancellation is enabled.", - "-1331298683": "Take profit can’t be adjusted for ongoing accumulator contracts.", - "-99964540": "When your profit reaches or exceeds the set amount, your trade will be closed automatically.", + "-725670935": "Take Profit und Stop-Loss sind nicht verfügbar, solange die Deal-Storno aktiv ist.", + "-1331298683": "Der Take Profit kann bei laufenden Accumulator-Verträgen nicht angepasst werden.", + "-99964540": "Wenn Ihr Gewinn den festgelegten Betrag erreicht oder überschreitet, wird Ihr Handel automatisch geschlossen.", "-1052279158": "Ihre <0>Auszahlung ist die Summe aus Ihrem ursprünglichen Einsatz und Ihrem Gewinn.", "-274058583": "<0>Take profit ist ein zusätzliches Feature, das es Ihnen ermöglicht, Ihr Risiko zu verwalten, indem der Handel automatisch geschlossen wird, wenn Ihr Gewinn den Zielbetrag erreicht. Dieses Feature ist nicht verfügbar für laufende Accumulator-Verträge.", "-1819891401": "Sie können Ihren Handel jederzeit schließen. Achten Sie jedoch auf das <0>Slippage-Risiko.", @@ -4132,7 +4132,7 @@ "-1769852749": "N/A", "-726626679": "Potenzieller Gewinn/Verlust:", "-1511825574": "Gewinn/Verlust:", - "-499175967": "Strike Price", + "-499175967": "Basispreis", "-2082644096": "Aktueller Anteil", "-706219815": "Richtpreis", "-1669418686": "AUD/CAD", diff --git a/packages/translations/src/translations/es.json b/packages/translations/src/translations/es.json index ff80bb421644..161129f32422 100644 --- a/packages/translations/src/translations/es.json +++ b/packages/translations/src/translations/es.json @@ -1675,7 +1675,7 @@ "1722056905": "El documento que proporcionó no es compatible con su país. Proporcione un documento compatible para su país.", "1722888575": "{{mt5_migration_error}}", "1723069433": "Su nueva Wallet", - "1723390945": "Your demo {{deriv}} {{type}} account is ready.", + "1723390945": "Su cuenta de demostración {{deriv}} {{type}} está lista.", "1723589564": "Representa el número máximo de contratos pendientes en su Wallet. Cada línea de su Wallet cuenta una posición abierta. Una vez que se alcanza el máximo no podrá abrir nuevas posiciones sin cerrar las posiciones existentes primero.", "1724367774": "Podrá realizar una transferencia de fondos una vez finalizada la verificación de su cuenta.", "1724696797": "Está limitado/a a una sola cuenta fiat.", @@ -3265,7 +3265,7 @@ "-533935232": "Financiera BVI", "-565431857": "Financial Labuan", "-291535132": "Sin swaps Demo", - "-499019612": "Zero Spread Demo", + "-499019612": "Demo Zero Spread", "-1472945832": "Sin swaps SVG", "-144803045": "Solo se permite el uso de números y los siguientes caracteres especiales: {{permitted_characters}}", "-1450516268": "Solo se permite el uso de letras, números, espacios, guiones, puntos y apóstrofes.", @@ -3371,7 +3371,7 @@ "-2072411961": "Su prueba de domicilio ha sido verificada", "-384887227": "Actualice la dirección en su perfil.", "-1470677931": "CFD sobre instrumentos financieros.", - "-1595662064": "Zero spread CFDs on financial and derived instruments", + "-1595662064": "CFD Zero Spread sobre instrumentos financieros y derived", "-1998049070": "Si acepta nuestro uso de cookies, haga clic en Aceptar. Para obtener más información, <0>consulte nuestra política.", "-402093392": "Añadir cuenta Deriv", "-1721181859": "Necesitará una cuenta de {{deriv_account}}", @@ -3574,7 +3574,7 @@ "-1385484963": "Confirme el cambio de su contraseña {{platform}}", "-1990902270": "Esto cambiará la contraseña de todas sus cuentas {{platform}}.", "-12535938": "*Índice Volatility 250, Índice Volatility 150, Índice Boom 300 y Crash 300", - "-2104148631": "Commissions apply", + "-2104148631": "Se aplican comisiones", "-201485855": "Hasta", "-700260448": "demo", "-1769158315": "real", @@ -3584,7 +3584,7 @@ "-2092058806": "De 8 a 16 caracteres", "-2051033705": "Un carácter especial como ( _ @ ? ! / # )", "-1762249687": "Una letra minúscula", - "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", + "-1123437857": "Está añadiendo su cuenta {{product}} {{platform}} en {{company}}, regulada por la British Virgin\n Islands Financial Services Commission (número de licencia SIBA/L/18/1114).", "-535365199": "Introduzca su contraseña de {{platform}} para añadir una cuenta de {{account}} {{platform_name}}.", "-184453418": "Introduzca su contraseña {{platform}}", "-393388362": "Estamos revisando sus documentos. Esto debería tardar de 1 a 3 días.", diff --git a/packages/translations/src/translations/fr.json b/packages/translations/src/translations/fr.json index dd7ea35b5b8e..d689cf686727 100644 --- a/packages/translations/src/translations/fr.json +++ b/packages/translations/src/translations/fr.json @@ -11,7 +11,7 @@ "7100308": "L'horaire doit se situer entre 0 et 23.", "9488203": "Deriv Bot est un outil de création de stratégies basé sur le Web pour le trading d'options numériques. Il s'agit d'une plateforme sur laquelle vous pouvez créer votre propre robot de trading automatisé à l'aide des « blocs » glisser-déposer.", "9757544": "Veuillez envoyer votre justificatif de domicile", - "11533428": "Trade bigger positions with less capital on a wide range of global markets. <0>Learn more", + "11533428": "Négociez des positions plus importantes avec moins de capital sur une large gamme de marchés mondiaux. <0>En savoir plus", "11539750": "définir {{ variable }} sur le tableau d'index de force relative {{ dummy }}", "11706633": "Seuil de perte : Le robot arrêtera le trading si votre perte totale dépasse ce montant.", "11872052": "Oui, je reviendrai plus tard", @@ -388,7 +388,7 @@ "419496000": "Votre contrat est fermé automatiquement lorsque votre profit est supérieur ou égal à ce montant. Ce bloc ne peut être utilisé qu'avec le type de transaction Multiplier.", "420072489": "Fréquence de trading CFD", "422055502": "De", - "423682863": "When your loss reaches or exceeds the set amount, your trade will be closed automatically.", + "423682863": "Lorsque votre perte atteint ou dépasse le montant défini, votre contrat est automatiquement clôturé.", "424101652": "Guides de stratégie rapide >", "424272085": "Nous prenons votre bien-être financier au sérieux et voulons nous assurer que vous êtes pleinement conscient des risques avant de trader.<0/><0/>", "424897068": "Savez-vous que vous pourriez potentiellement perdre la totalité de l'argent que vous investissez dans le trading ?", @@ -491,7 +491,7 @@ "532724086": "Contrat de travail", "533403953": "Votre ou vos comptes <0>{{platform}} {{type}} {{from_account}} existants resteront accessibles.", "535041346": "Max. mise totale par jour", - "536277802": "TP & SL history", + "536277802": "Historique TP & SL", "537788407": "Autres plateformes de CFD", "538017420": "0,5 pips", "538042340": "Principe 2 : la mise n'augmente que lorsqu'une transaction à perte est suivie d'une transaction fructueuse", @@ -1675,7 +1675,7 @@ "1722056905": "Le document que vous avez fourni n'est pas pris en charge pour votre pays. Veuillez fournir un document pris en charge pour votre pays.", "1722888575": "{{mt5_migration_error}}", "1723069433": "Votre nouveau Wallet", - "1723390945": "Your demo {{deriv}} {{type}} account is ready.", + "1723390945": "Votre compte démo {{deriv}} {{type}} est prêt.", "1723589564": "Représente le nombre maximal de contrats en cours dans votre portefeuille. Chaque ligne de votre portefeuille représente une position ouverte. Une fois le maximum atteint, vous ne pourrez plus ouvrir de nouvelle position sans fermer d'abord une position existante.", "1724367774": "Vous pourrez à nouveau effectuer un transfert de fonds une fois que la vérification de votre compte sera terminée.", "1724696797": "Vous êtes limité à un seul compte fiat.", @@ -2709,7 +2709,7 @@ "-145462920": "Deriv cTrader", "-982095728": "Obtenir", "-1790089996": "NOUVEAU!", - "-1473281803": "Predict the market, profit if you’re right, risk only what you put in. <0>Learn more", + "-1473281803": "Prédisez le marché, profitez si vous avez raison, ne risquez que ce que vous investissez. <0>En savoir plus", "-2134770229": "Total des actifs sur vos applications Deriv et votre compte démo de CFD Deriv MT5.", "-1277942366": "Total des actifs", "-1255879419": "Trader's Hub", @@ -3371,7 +3371,7 @@ "-2072411961": "Votre justificatif de domicile a été vérifié", "-384887227": "Mettez à jour l'adresse sur votre profil.", "-1470677931": "CFD sur instruments financiers.", - "-1595662064": "Zero spread CFDs on financial and derived instruments", + "-1595662064": "Zero spread CFD sur une sélection d'instruments financiers et derived", "-1998049070": "Si vous acceptez notre utilisation des cookies, cliquez sur Accepter. Pour plus d'informations, <0>consultez notre politique.", "-402093392": "Ajouter un compte Deriv", "-1721181859": "Vous aurez besoin d'un compte {{deriv_account}}", @@ -3574,7 +3574,7 @@ "-1385484963": "Confirmer le changement de votre mot de passe {{platform}}", "-1990902270": "Cela changera le mot de passe de tous vos comptes {{platform}}.", "-12535938": "*Indice Volatility 250, indice Volatility 150, indice Boom 300 et indice Crash 300", - "-2104148631": "Commissions apply", + "-2104148631": "Les commissions s'appliquent", "-201485855": "Jusqu'à", "-700260448": "démo", "-1769158315": "réel", @@ -3584,7 +3584,7 @@ "-2092058806": "8 à 16 caractères", "-2051033705": "Un caractère spécial tel que ( _ @ ? ! / # )", "-1762249687": "Une lettre minuscule", - "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", + "-1123437857": "Vous ajoutez votre compte {{product}} {{platform}} sous {{company}}, réglementé par la British Virgin\n Islands Financial Services Commission (Licence nº SIBA/L/18/1114).", "-535365199": "Entrez votre mot de passe {{platform}} pour ajouter un compte {{platform_name}} {{account}}.", "-184453418": "Entrer votre mot de passe {{platform}}", "-393388362": "Nous examinons vos documents. Cela devrait prendre environ 1 à 3 jours.", @@ -3690,7 +3690,7 @@ "-2069438609": "Aucune correspondance trouvée", "-97673874": "Aucun contrat fermé", "-1727419550": "Vos trades fermés seront affichés ici.", - "-225500551": "Entry & exit details", + "-225500551": "Données d'entrée et de sortie", "-993480898": "Accumulators", "-123659792": "Vanillas", "-1226595254": "Turbos", @@ -3702,12 +3702,12 @@ "-232254547": "Régler", "-1251526905": "7 derniers jours", "-1539223392": "Les 90 derniers jours", - "-1913695340": "Order Details", - "-1882287418": "How do I earn a payout?", + "-1913695340": "Détails de la commande", + "-1882287418": "Comment puis-je obtenir un paiement ?", "-2017825013": "C'est compris", - "-725670935": "Take profit and stop loss are unavailable while deal cancellation is enabled.", - "-1331298683": "Take profit can’t be adjusted for ongoing accumulator contracts.", - "-99964540": "When your profit reaches or exceeds the set amount, your trade will be closed automatically.", + "-725670935": "Take profit et stop loss ne sont pas disponibles tant que l'option annulation est activée.", + "-1331298683": "Le Take Profit ne peut pas être ajusté pour les contrats d'accumulateur en cours.", + "-99964540": "Lorsque votre profit atteint ou dépasse le montant fixé, votre contrat est automatiquement clôturé.", "-1052279158": "Votre <0>gain correspond à la somme de votre mise initiale et de votre profit.", "-274058583": "La <0>Take profit est une fonction supplémentaire qui vous permet de gérer votre risque en clôturant automatiquement la transaction lorsque votre profit atteint le montant cible. Cette fonction n'est pas disponible pour les contrats d'Accumulator en cours.", "-1819891401": "Vous pouvez clôturer votre contrat à tout moment. Cependant, soyez conscient du <0>risque de dérapage.", @@ -4132,7 +4132,7 @@ "-1769852749": "N/A", "-726626679": "Bénéfice/Perte Potentielle:", "-1511825574": "Profits/pertes:", - "-499175967": "Strike Price", + "-499175967": "Le prix d'exercice", "-2082644096": "Mise actuelle", "-706219815": "Prix indicatif", "-1669418686": "AUD/CAD", diff --git a/packages/translations/src/translations/it.json b/packages/translations/src/translations/it.json index 16f6f4730de3..0f409f026f85 100644 --- a/packages/translations/src/translations/it.json +++ b/packages/translations/src/translations/it.json @@ -11,7 +11,7 @@ "7100308": "L'orario deve essere incluso tra le 00 e le 23.", "9488203": "Basato sul web, Deriv Bot crea strategie per il trading di opzioni digitali. Si tratta di una piattaforma in cui puoi costruire il tuo bot di trading automatizzato attraverso 'blocchi'.", "9757544": "Invia il documento di verifica dell'indirizzo", - "11533428": "Trade bigger positions with less capital on a wide range of global markets. <0>Learn more", + "11533428": "Negoziare posizioni più grandi con meno capitale su un'ampia gamma di mercati globali. <0>Per saperne di più", "11539750": "stabilisci {{ variable }} per serie di indici di forza relativa {{ dummy }}", "11706633": "Soglia di perdita: il bot interromperà il trading se la tua perdita totale supera questo importo.", "11872052": "Sì, tornerò più tardi", @@ -388,7 +388,7 @@ "419496000": "Il suo contratto viene chiuso automaticamente quando il suo profitto è superiore o uguale a questo importo. Questo blocco può essere utilizzato solo con il tipo di trade Multiplier.", "420072489": "Frequenza del trading di CFD", "422055502": "Da", - "423682863": "When your loss reaches or exceeds the set amount, your trade will be closed automatically.", + "423682863": "Quando la tua perdita raggiunge o supera l'importo stabilito, il tuo trade verrà chiuso automaticamente.", "424101652": "Guide strategiche rapide >", "424272085": "Prendiamo sul serio il tuo benessere finanziario e vogliamo assicurarci che tu sia pienamente consapevole dei rischi prima di fare trading.<0/><0/>", "424897068": "Hai compreso che potresti potenzialmente perdere il 100% del denaro che usi per fare trading?", @@ -491,7 +491,7 @@ "532724086": "Contratto di lavoro", "533403953": "I tuoi account <0>{{platform}} {{type}} {{from_account}} esistenti rimarranno accessibili.", "535041346": "Puntata massima totale giornaliera", - "536277802": "TP & SL history", + "536277802": "Storia di TP e SL", "537788407": "Piattaforma di altri CFD", "538017420": "0,5 pips", "538042340": "Principio 2: la puntata aumenta solo quando un'operazione in perdita è seguita da un'operazione di successo", @@ -1675,7 +1675,7 @@ "1722056905": "Il documento fornito non è valido nel tuo Paese: inviane uno idoneo.", "1722888575": "{{mt5_migration_error}}", "1723069433": "Il suo nuovo Wallet", - "1723390945": "Your demo {{deriv}} {{type}} account is ready.", + "1723390945": "Il suo conto demo {{deriv}} {{type}} è pronto.", "1723589564": "Rappresenta il numero massimo di contratti in essere nel tuo Wallet. Ogni riga presente sul tuo Wallet vale una posizione aperta. Una volta raggiunto il valore massimo, non potrai aprire nuove posizioni senza prima chiudere una posizione esistente.", "1724367774": "Puoi effettuare un trasferimento di fondi una volta completata la verifica del tuo account.", "1724696797": "È possibile avere un solo conto fiat.", @@ -2709,7 +2709,7 @@ "-145462920": "Deriv cTrader", "-982095728": "Vai", "-1790089996": "NUOVO!", - "-1473281803": "Predict the market, profit if you’re right, risk only what you put in. <0>Learn more", + "-1473281803": "Preveda il mercato, tragga profitto se ha ragione, rischiando solo quello che ha investito. <0>Per saperne di più", "-2134770229": "Patrimonio totale nel suo conto demo Deriv Apps e Deriv MT5 CFDs.", "-1277942366": "Asset totali", "-1255879419": "Trader's Hub", @@ -3371,7 +3371,7 @@ "-2072411961": "Il documento di verifica dell'indirizzo è stato verificato", "-384887227": "Aggiorna l'indirizzo nel tuo profilo.", "-1470677931": "CFD su strumenti finanziari.", - "-1595662064": "Zero spread CFDs on financial and derived instruments", + "-1595662064": "Zero spread CFD su strumenti finanziari e derived selezionati", "-1998049070": "Se accetti l'uso dei cookies, clicca su Accetto. Per maggiori informazioni, <0>consulta la nostra politica.", "-402093392": "Aggiungi conto Deriv", "-1721181859": "Occorre un conto {{deriv_account}}", @@ -3574,7 +3574,7 @@ "-1385484963": "Conferma per modificare la password {{platform}}", "-1990902270": "Così cambierai la password per tutti i conti {{platform}}.", "-12535938": "*Indice Volatility 250, Indice Volatility 150, Indice Boom 300 e Indice Crash 300", - "-2104148631": "Commissions apply", + "-2104148631": "Commissioni si applicano", "-201485855": "Fino a", "-700260448": "demo", "-1769158315": "reale", @@ -3584,7 +3584,7 @@ "-2092058806": "Da 8 a 16 caratteri", "-2051033705": "Un carattere speciale come ( _ @ ? ! / # )", "-1762249687": "Una lettera minuscola", - "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", + "-1123437857": "Stai aggiungendo il tuo conto {{product}} {{platform}} sotto {{company}}, regolamentato dalla British Virgin Islands Financial Services Commission (licenza n. SIBA/L/18/1114).", "-535365199": "Inserisci la password {{platform}} per aggiungere un conto {{account}} {{platform_name}}.", "-184453418": "Inserisci la password {{platform}}", "-393388362": "Stiamo esaminando i tuoi documenti. Questa operazione dovrebbe richiedere 1-3 giorni.", @@ -3690,7 +3690,7 @@ "-2069438609": "Nessuna corrispondenza trovata", "-97673874": "Nessuna negoziazione chiusa", "-1727419550": "Le sue transazioni chiuse saranno visualizzate qui.", - "-225500551": "Entry & exit details", + "-225500551": "Dettagli di entrata e uscita", "-993480898": "Accumulators", "-123659792": "Vanillas", "-1226595254": "Turbos", @@ -3702,12 +3702,12 @@ "-232254547": "Personalizza", "-1251526905": "Ultimi 7 giorni", "-1539223392": "Ultimi 90 giorni", - "-1913695340": "Order Details", - "-1882287418": "How do I earn a payout?", + "-1913695340": "Dettagli dell'ordine", + "-1882287418": "Come posso guadagnare un pagamento?", "-2017825013": "Capito", - "-725670935": "Take profit and stop loss are unavailable while deal cancellation is enabled.", - "-1331298683": "Take profit can’t be adjusted for ongoing accumulator contracts.", - "-99964540": "When your profit reaches or exceeds the set amount, your trade will be closed automatically.", + "-725670935": "Take profit e stop loss non sono disponibili mentre è attiva la cancellazione.", + "-1331298683": "Il take profit non può essere regolato per i contratti di accumulo in corso.", + "-99964540": "Quando il tuo profitto raggiunge o supera l'importo stabilito, il tuo trade verrà chiuso automaticamente.", "-1052279158": "La sua <0>payout è la somma della puntata iniziale e del profitto.", "-274058583": "Il <0>Take profit è una funzione aggiuntiva che le consente di gestire il rischio chiudendo automaticamente l'operazione quando il suo profitto raggiunge l'importo target. Questa funzione non è disponibile per i contratti di Accumulator in corso.", "-1819891401": "Può chiudere l'operazione in qualsiasi momento. Tuttavia, faccia attenzione al <0>rischio di slippage.", @@ -4132,7 +4132,7 @@ "-1769852749": "N/A", "-726626679": "Profitto/perdita potenziale:", "-1511825574": "Profitto/Perdita:", - "-499175967": "Strike Price", + "-499175967": "Prezzo d'esercizio", "-2082644096": "Puntata attuale", "-706219815": "Prezzo indicativo", "-1669418686": "AUD/CAD", diff --git a/packages/translations/src/translations/ko.json b/packages/translations/src/translations/ko.json index 794290bc0577..fae4cb376314 100644 --- a/packages/translations/src/translations/ko.json +++ b/packages/translations/src/translations/ko.json @@ -11,7 +11,7 @@ "7100308": "시간은 반드시 0과 23 사이여야 합니다.", "9488203": "Deriv 봇은 디지털 옵션 거래를 위한 웹 기반 전략 구축기입니다. 드래그 앤 드롭 방식의 '블록'을 사용하여 귀하만의 자동 거래 봇을 구축할 수 있는 플랫폼입니다.", "9757544": "귀하의 주소증명을 제출하시기 바랍니다", - "11533428": "Trade bigger positions with less capital on a wide range of global markets. <0>Learn more", + "11533428": "다양한 글로벌 시장에서 더 적은 자본으로 더 큰 포지션을 거래하세요. <0>자세히 알아보기", "11539750": "상대강도지수 배열 {{ dummy }} 을 {{ variable }} 으로 설정하세요", "11706633": "손실 임계값: 총 손실이 이 금액을 초과하면 봇이 거래를 중지합니다.", "11872052": "네, 나중에 다시 돌아오겠습니다", @@ -71,7 +71,7 @@ "76916358": "귀하의 인출 금액이 한도에 도달했습니다. <0/>인출을 진행하기 위해서는 귀하의 신분증과 주소증명을 업로드하여 한도를 해제 하시기 바랍니다.", "76925355": "봇 성능 확인하기", "77982950": "Vanilla 옵션을 사용하면 \"Call\" 또는 \"Put\"을 매수하여 기초자산의 상승(강세) 또는 하락(약세) 방향을 예측할 수 있습니다.", - "81009535": "Potential profit/loss", + "81009535": "잠재적인 이윤/손실", "81091424": "업그레이드를 완료하려면, 로그아웃한 후 다시 로그인하여 계정을 추가하고 귀하의 지갑을 통해 거래하세요.", "81450871": "해당 페이지를 찾을 수 없었습니다", "82839270": "귀하의 사진이 포함되어 있는 여권 페이지를 업로드하세요.", @@ -388,7 +388,7 @@ "419496000": "수익이 이 금액 이상이면 계약이 자동으로 청산됩니다. 이 블록은 Multipliers 거래 유형에서만 사용할 수 있습니다.", "420072489": "CFD 거래 빈도", "422055502": "보낸 사람", - "423682863": "When your loss reaches or exceeds the set amount, your trade will be closed automatically.", + "423682863": "당신의 손실이 설정한 금액에 도달하거나 초과하는 경우 거래가 자동으로 종료됩니다.", "424101652": "빠른 전략 가이드 >", "424272085": "당사는 귀하의 재정적 안녕을 중요하게 생각하며 귀하께서 거래를 진행하기 전에 위험을 충분히 인지하고 있는지를 확인하고자 합니다.<0/><0/>", "424897068": "귀하께서는 거래에 사용한 자금의 100%를 잠재적으로 잃을 수 있다는 사실을 이해하고 계신가요?", @@ -491,7 +491,7 @@ "532724086": "고용 계약", "533403953": "기존 <0>{{platform}} {{type}} {{from_account}} 계정은 계속 액세스할 수 있습니다.", "535041346": "일일 최대 총 지분", - "536277802": "TP & SL history", + "536277802": "TP 및 SL 기록", "537788407": "기타 CFD 플랫폼", "538017420": "0.5 핍", "538042340": "원칙 2: 손실 거래 후 성공 거래가 이어질 때만 지분이 증가합니다", @@ -1675,7 +1675,7 @@ "1722056905": "제공하신 문서는 귀하의 국가에서 지원되지 않습니다. 귀하의 국가에서 지원되는 문서를 제공해 주시기 바랍니다.", "1722888575": "{{mt5_migration_error}}", "1723069433": "새 Wallet", - "1723390945": "Your demo {{deriv}} {{type}} account is ready.", + "1723390945": "데모 {{deriv}} {{type}} 계정이 준비되었습니다.", "1723589564": "귀하의 포트폴리오에 있는 처리해야 하는 계약건의 최대 수를 나타냅니다. 귀하의 포트폴리오에서 각각의 줄은 하나의 오픈 포지션을 나타냅니다. 최대 수에 도달되면 귀하께서는 현재 존재하는 포지션을 먼저 닫지 않고서는 새로운 포지션을 열 수 없습니다.", "1724367774": "계정 인증이 완료되면 송금할 수 있습니다.", "1724696797": "귀하께서는 하나의 피아트 통화만 소유하실 수 있습니다.", @@ -1798,7 +1798,7 @@ "1831847842": "본인은 위의 이름과 생년월일이 본인이 선택한 신분 증명서와 일치함을 확인합니다(아래 참조).", "1833499833": "신분 증명 문서 업로드가 실패되었습니다", "1836767074": "결제 에이전트 이름 검색", - "1837533589": "Stop Loss", + "1837533589": "스톱로스", "1837762008": "캐셔로 접근하시기 위해 귀하의 계좌 설정에서 귀하의 계좌를 검증하기 위한 신분증 및 주소증명을 제출해 주시기 바랍니다.", "1839021527": "유효환 계좌번호를 입력해주시기 바랍니다. 예: CR123456789", "1840721160": "MT5 최신 비밀번호 요구 사항 도출", @@ -2709,7 +2709,7 @@ "-145462920": "Deriv cTrader", "-982095728": "받기", "-1790089996": "새롭습니다!", - "-1473281803": "Predict the market, profit if you’re right, risk only what you put in. <0>Learn more", + "-1473281803": "시장을 예측하고, 맞으면 이윤을 올리고, 투입한 것만 손해를 본다. <0>더 알아보기", "-2134770229": "파생 앱 및 파생 MT5 CFD 데모 계좌의 총 자산.", "-1277942366": "총 자산", "-1255879419": "Trader's Hub", @@ -3371,7 +3371,7 @@ "-2072411961": "귀하의 주소 증명이 인증되었습니다", "-384887227": "프로필에서 주소를 업데이트하세요.", "-1470677931": "금융상품 CFD.", - "-1595662064": "Zero spread CFDs on financial and derived instruments", + "-1595662064": "금융 및 Derived 상품에 대한 제로 Zero Spread CFD", "-1998049070": "귀하께서 저희의 쿠키 활용에 동의하신다면, 동의하기 버튼을 클릭하세요. 더 많은 정보를 위해서는, <0>우리의 정책을 확인해주세요.", "-402093392": "Deriv 계정 추가", "-1721181859": "귀하께서는 {{deriv_account}} 계좌가 필요합니다", @@ -3574,7 +3574,7 @@ "-1385484963": "귀하의 {{platform}} 비밀번호 변경 확인", "-1990902270": "이는 귀하의 모든 {{platform}} 계정들의 비밀번호를 바꿀 것입니다.", "-12535938": "*Volatility 250 지수, Volatility 150 지수, Boom 300 지수, Crash 300 지수", - "-2104148631": "Commissions apply", + "-2104148631": "수수료 적용", "-201485855": "최대", "-700260448": "데모", "-1769158315": "실제", @@ -3584,7 +3584,7 @@ "-2092058806": "8~16자", "-2051033705": "특수 문자 ( _ @ ? ! / # )와 같은 특수 문자", "-1762249687": "소문자", - "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", + "-1123437857": "귀하는 British Virgin Islands Financial Services Commission (라이선스 번호 SIBA/L/18/1114) 의 \n 규제를 받는 {{company}} 에 귀하의 {{platform}} {{product}} 계정을 추가하려고 합니다.", "-535365199": "귀하의 {{platform}} 비밀번호를 입력하여 {{platform_name}} {{account}} 계정을 추가하세요.", "-184453418": "귀하의 {{platform}} 비밀번호를 입력하세요", "-393388362": "귀하의 문서를 검토 중입니다.이 작업에는 1~3일 정도 소요됩니다.", @@ -3690,7 +3690,7 @@ "-2069438609": "일치하는 항목이 없습니다.", "-97673874": "비공개 거래 없음", "-1727419550": "마감된 거래가 여기에 표시됩니다.", - "-225500551": "Entry & exit details", + "-225500551": "입국 및 출국 세부 정보", "-993480898": "Accumulators", "-123659792": "Vanillas", "-1226595254": "Turbos", @@ -3702,12 +3702,12 @@ "-232254547": "맞춤형", "-1251526905": "지난 7일", "-1539223392": "지난 90일", - "-1913695340": "Order Details", - "-1882287418": "How do I earn a payout?", + "-1913695340": "주문 세부정보", + "-1882287418": "어떻게 지급을 받을 수 있나요?", "-2017825013": "알겠습니다", - "-725670935": "Take profit and stop loss are unavailable while deal cancellation is enabled.", - "-1331298683": "Take profit can’t be adjusted for ongoing accumulator contracts.", - "-99964540": "When your profit reaches or exceeds the set amount, your trade will be closed automatically.", + "-725670935": "거래 취소가 활성화되어 있는동안에는 이윤 취득 및 손실 취하기는 적용되지 않습니다.", + "-1331298683": "이익 실현은 진행 중인 누적 계약에 대해 조정할 수 없습니다.", + "-99964540": "당신의 이익이 설정한 금액에 도달하거나 초과하는 경우 거래가 자동으로 종료됩니다.", "-1052279158": "<0>지급금은 초기 지분과 수익의 합계입니다.", "-274058583": "<0>이익 실현은 이익이 목표 금액에 도달했을 때 거래를 자동으로 종료하여 리스크를 관리하는 추가 기능입니다. 이 기능은 진행 중인 Accumulator 계약에는 사용할 수 없습니다.", "-1819891401": "언제든지 거래를 청산할 수 있습니다. 하지만 <0>슬리피지 위험에 유의하세요.", @@ -4132,7 +4132,7 @@ "-1769852749": "해당없음", "-726626679": "잠재적인 이윤/손실:", "-1511825574": "이윤/손실:", - "-499175967": "Strike Price", + "-499175967": "행사 가격", "-2082644096": "현재 지분", "-706219815": "참고 가격", "-1669418686": "AUD/CAD", diff --git a/packages/translations/src/translations/mn.json b/packages/translations/src/translations/mn.json index 0f20d17e1919..43b0c6deddc3 100644 --- a/packages/translations/src/translations/mn.json +++ b/packages/translations/src/translations/mn.json @@ -11,7 +11,7 @@ "7100308": "00-ээс 23-н цагийн хооронд байх ёстой.", "9488203": "Deriv Bot бол дижитал options-г арилжаалах вэб дээр суурилсан стратеги юм. Drag-and-drop 'блокууд' ашиглан өөрийн автоматжуулсан арилжааны ботыг бүтээх боломжтой платформ юм.", "9757544": "Оршин суугаа хаягын нотлогоог илгээнэ үү.", - "11533428": "Trade bigger positions with less capital on a wide range of global markets. <0>Learn more", + "11533428": "Дэлхийн олон төрлийн зах зээл дээр бага капиталаар илүү том байр сууриа арилжаалаарай <0>Илүү ихийг мэдэ ж аваарай", "11539750": "{{ variable }} -ийг харьцангуй хүч чадлын индексийн массив {{ dummy }}болгон тохируулна уу", "11706633": "Loss threshold: Таны нийт алдагдал энэ хэмжээнээс давсан тохиолдолд бот арилжаагаа зогсооно.", "11872052": "Тэгье, би дараа дахиж оролдоё", @@ -71,7 +71,7 @@ "76916358": "Таны татган авалтын лимит хэтэрсэн байна. <0/> таны татан авалтын лимитээ нэмж үргэлжлүүлэхийн тулд өөрийн ID болон оршин суугаа хаягийг нотлох баримтаа байршуулна уу.", "76925355": "Өөрийн ботын гүйцэтгэлийг шалгана уу", "77982950": "Vanilla options нь “Call” эсвэл “Put” худалдан авах замаар үндсэн хөрөнгийн дээшээ (bullish) эсвэл доошоо (bearish) чиглэлийг урьдчилан таамаглах боломжийг олгодог.", - "81009535": "Potential profit/loss", + "81009535": "Боломжит ашиг/алдагдал", "81091424": "Шинэчлэлтийг дуусгахын тулд илүү их данс нэмэх, Түрийвчтэйгээ гүйлгээ хийхийн тулд нэвтэрч, дахин нэвтэрнэ үү.", "81450871": "Бид тэр хуудсыг олж чадсангүй", "82839270": "Таны зургийг агуулсан паспортынхаа хуудсыг байршуулна уу.", @@ -294,7 +294,7 @@ "313741895": "Энэ блок нь сүүлчийн лаа хар өнгөтэй бол “True” -ийг буцаана. Үүнийг Худалдааны параметрүүдийн root блок дотроос бусад зураг дээр хаана ч байрлуулж болно.", "315306603": "Танд валют хуваарилагдаагүй данстай. Энэ дансаар худалдаа хийх валютыг сонгоно уу.", "316694303": "Лаа хар уу?", - "318705408": "Demo Zero Spread", + "318705408": "Демо Zero Spread", "318865860": "хаах", "318984807": "Энэ блок нь дотор агуулагдсан зааврыг тодорхой хэдэн удаа давтана.", "321457615": "Өө, ямар нэг зүйл буруу болсон!", @@ -388,7 +388,7 @@ "419496000": "Таны ашиг энэ хэмжээнээс илүү буюу түүнтэй тэнцэх үед таны гэрээ автоматаар хаагддаг. Энэ блокыг зөвхөн үржүүлэгчийн худалдааны төрлөөр ашиглах боломжтой.", "420072489": "CFD арилжааны давтамж", "422055502": "-аас", - "423682863": "When your loss reaches or exceeds the set amount, your trade will be closed automatically.", + "423682863": "Таны алдагдал тогтоосон хэмжээгээр хүрэх эсвэл түүнээс хэтэрсэн тохиолдолд таны худалдаа автоматаар хаагдах болно.", "424101652": "Стратегийн түргэн гарын авлага >", "424272085": "Бид таны санхүүгийн сайн сайханд нухацтай хандаж, арилжаа хийхээсээ өмнө эрсдэлийг бүрэн мэдэж байхыг хүсч байна. <0/> <0/>", "424897068": "Худалдаа хийхэд ашигладаг мөнгөнийхээ 100% -ийг алдаж болзошгүй гэж та ойлгож байна уу?", @@ -491,7 +491,7 @@ "532724086": "Хөдөлмөрийн гэрээ", "533403953": "Таны одоо байгаа <0>{{platform}} {{type}} {{from_account}} данс (ууд) нь хүртээмжтэй хэвээр байх болно.", "535041346": "Өдөрт Макс. нийт хувьцаа", - "536277802": "TP & SL history", + "536277802": "TP & SL түүх", "537788407": "Бусад CFD-ийн платформ", "538017420": "0.5 пипс", "538042340": "зарчим 2: Алдагдалтай арилжаа хийхэд л хувьцаа нэмэгддэгамжилттай арилжаа хийхэд л нэмэгдэнэ", @@ -1022,7 +1022,7 @@ "1057216772": "текст {{ input_text }} хоосон байна", "1057519018": "4. Хэрэв арилжаа нь ашгаар дуусвал дараах арилжааны хувьцааг анхны хувьцааны хэмжээ 1 ам.доллар болгон дахин тогтооно.", "1057749183": "Хоёр хүчин зүйлийн танилт (2FA)", - "1057765448": "Stop out level", + "1057765448": "Түвшинг Stop Out", "1057904606": "D'Alembert Стратегийн үзэл баримтлал нь алдагдлын дараа гэрээний хэмжээгээ нэмэгдүүлэх болно Martingale Стратегитэй төстэй гэж ярьдаг. D'Alembert Стратегийн тусламжтайгаар та мөн амжилттай худалдаа хийсний дараа гэрээний хэмжээгээ багасгах болно.", "1058804653": "Хугацаа дуусах", "1058905535": "Зааварчилгаа", @@ -1675,7 +1675,7 @@ "1722056905": "Таны өгсөн баримт бичиг танай улсын хувьд дэмжигддэггүй. Өөрийн улсын дэмжлэгтэй баримт бичгийг өгнө үү.", "1722888575": "{{mt5_migration_error}}", "1723069433": "Таны шинэ түрийвч", - "1723390945": "Your demo {{deriv}} {{type}} account is ready.", + "1723390945": "Таны демо {{deriv}} {{type}} данс бэлэн боллоо.", "1723589564": "Таны багцын үлдэгдэл гэрээний хамгийн их тоог илэрхийлнэ. Таны багцын мөр бүр нэг нээлттэй байрлалд тооцогддог. Хамгийн дээд хэмжээнд хүрсний дараа та одоо байгаа байрлалыг эхлээд хаахгүйгээр шинэ албан тушаалыг нээх боломжгүй болно.", "1724367774": "Та өөрийн дансны баталгаажуулалт дууссаны дараа хөрөнгө шилжүүлэг хийж болно.", "1724696797": "Та зөвхөн нэг фиат дансаар хязгаарлагддаг.", @@ -1685,7 +1685,7 @@ "1728183781": "Тетерийн тухай", "1729145421": "Эрсдэлийн анхааруулга", "1731747596": "Улаан өнгөөр тодруулсан блок (ууд) нь оролтын утгууд алга байна. Тэдгээрийг шинэчилж, “Run bot” дээр дарна уу.", - "1732891201": "Sell price", + "1732891201": "Худалдах үнэ", "1733711201": "Зохицуулагч/Гадаад маргаан шийдвэрлэх", "1734185104": "Тэнцэл: %1", "1734264460": "Санамж", @@ -2035,7 +2035,7 @@ "2049386104": "Энэ дансыг авахын тулд бид эдгээрийг ирүүлэх хэрэгтэй:", "2050170533": "Шалганы жагсаалт", "2051558666": "Гүйлгээний түүхийг харах", - "2051596653": "Demo Zero Spread BVI", + "2051596653": "Демо Zero Spread BVI", "2052022586": "Таны MT5 дансны аюулгүй байдлыг сайжруулахын тулд бид нууц үгийн бодлогоо сайжруулсан.", "2054889300": "“%1” үүсгэх", "2055317803": "Холбоосыг гар утасны хөтөч руугаа хуулна уу", @@ -2709,7 +2709,7 @@ "-145462920": "Deriv cTrader", "-982095728": "авах", "-1790089996": "ШИНЭ!", - "-1473281803": "Predict the market, profit if you’re right, risk only what you put in. <0>Learn more", + "-1473281803": "Зах зээлийг урьдчилан таамаглах, зөв бол ашиг олох, оруулсан зүйлээ л эрсдэлтэй. <0>Илүү ихийг мэдэ ж аваарай", "-2134770229": "Таны Deriv Apps болон Deriv MT5 CFDs демо дансны нийт хөрөнгө.", "-1277942366": "Нийт хөрөнгө", "-1255879419": "Арилжаачдын төв", @@ -3265,7 +3265,7 @@ "-533935232": "Санхүүгийн BVI", "-565431857": "Санхүүгийн Лабуан", "-291535132": "Өөрчлөлгүй демо", - "-499019612": "Zero Spread Demo", + "-499019612": "Zero Spread демо", "-1472945832": "Өөрчлөлгүй SVG", "-144803045": "Зөвхөн тоонууд болон эдгээр тусгай тэмдэгтүүдийг зөвшөөрнө: {{permitted_characters}}", "-1450516268": "Зөвхөн үсэг, тоо, зай, үсэг, хугацаа, апостроф зэргийг зөвшөөрнө.", @@ -3371,7 +3371,7 @@ "-2072411961": "Таны хаягийн нотолгоо баталгаажсан", "-384887227": "Өөрийн профайл дахь хаягийг шинэчилнэ үү.", "-1470677931": "Санхүүгийн хэрэгслийн CFD.", - "-1595662064": "Zero spread CFDs on financial and derived instruments", + "-1595662064": "Санхүүгийн болон Derived хэрэгслийн Zero Spread CFD", "-1998049070": "Хэрэв та бидний күүки ашиглахыг зөвшөөрвөл хүлээн зөвшөөрч байгаа бол хүлээн зөвшөөрөх дээр дарна уу. Дэлгэрэнгүй мэдээллийг <0>манай бодлогоос үзнэ үү.", "-402093392": "Дерив данс нэмэх", "-1721181859": "Танд {{deriv_account}} данс хэрэгтэй болно", @@ -3574,7 +3574,7 @@ "-1385484963": "{{platform}} нууц үгээ солихыг баталгаажуулна уу", "-1990902270": "Энэ нь таны бүх {{platform}} дансны нууц үгийг өөрчлөх болно.", "-12535938": "*Тогтмол байдал 250 индекс, хэлбэлзлийн 150 индекс, Boom 300 болон Crash 300 индекс", - "-2104148631": "Commissions apply", + "-2104148631": "Комиссууд хамаарна", "-201485855": "хүртэлх", "-700260448": "демо", "-1769158315": "жинхэнэ", @@ -3584,7 +3584,7 @@ "-2092058806": "8-16 тэмдэгтүүд", "-2051033705": "(_ @? гэх мэт онцгой зан чанар ! /#)", "-1762249687": "Жижиг үсэг", - "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", + "-1123437857": "Та таны {{platform}} {{product}} дансаа {{company}}-д нэмж байна, Британи Виржинийн ариун хуулийн\n комисс (Гишүүнчлэлийн дугаар SIBA/L/18/1114)-аар зохион байна.", "-535365199": "{{platform_name}} {{account}} данс нэмэхийн тулд {{platform}} нууц үгээ оруулна уу.", "-184453418": "{{platform}} нууц үгээ оруулна уу", "-393388362": "Бид таны баримт бичгийг хянаж байна. Энэ нь ойролцоогоор 1-3 хоног шаардагдах ёстой.", @@ -3690,7 +3690,7 @@ "-2069438609": "Тоглолт олдсонгүй", "-97673874": "Хаалттай арилжаа байхгүй", "-1727419550": "Таны хаалттай арилжааг энд харуулах болно.", - "-225500551": "Entry & exit details", + "-225500551": "Орох ба гарах мэдээллүүд", "-993480898": "Accumulators", "-123659792": "Vanillas", "-1226595254": "Turbos", @@ -3702,12 +3702,12 @@ "-232254547": "Гаалийн", "-1251526905": "Сүүлийн 7 хоног", "-1539223392": "Сүүлийн 90 хоног", - "-1913695340": "Order Details", - "-1882287418": "How do I earn a payout?", + "-1913695340": "Захиалгын дэлгэрэнгүй", + "-1882287418": "Би яаж төлбөр авах вэ?", "-2017825013": "Үүнийг олж авлаа", - "-725670935": "Take profit and stop loss are unavailable while deal cancellation is enabled.", - "-1331298683": "Take profit can’t be adjusted for ongoing accumulator contracts.", - "-99964540": "When your profit reaches or exceeds the set amount, your trade will be closed automatically.", + "-725670935": "Хэлэлцээрийг цуцлах боломжтой үед Take Profit болон Stop Loss боломжгүй.", + "-1331298683": "Take Profit-ыг одоо байгаа аккумляторын гэрээнд тохируулах боломжгүй.", + "-99964540": "Таны ашиг тогтоосон хэмжээгээр хүрэх эсвэл түүнээс хэтэрсэн тохиолдолд таны худалдаа автоматаар хаагдах болно.", "-1052279158": "Таны <0>төлбөр нь таны анхны хувьцаа болон ашгийн нийлбэр юм.", "-274058583": "<0>Ашиг авах нь таны ашиг зорилтот хэмжээндээ хүрэх үед худалдааг автоматаар хаах замаар эрсдэлийг удирдах боломжийг олгодог нэмэлт боломж юм. Энэ функц нь үргэлжилж буй аккумуляторын гэрээнд ашиглах боломжгүй юм.", "-1819891401": "Та хэзээ ч худалдаагаа хааж болно. Гэсэн хэдий ч гулсалтын эрсдэл <0>ийг анхаараарай.", @@ -4133,8 +4133,8 @@ "-726626679": "Боломжит ашиг/алдагдал:", "-1511825574": "Аш/Алдагдал:", "-499175967": "Strike Price", - "-2082644096": "Current stake", - "-706219815": "Indicative price", + "-2082644096": "Одоогийн хувьцаа", + "-706219815": "Үндсэн үнэ", "-1669418686": "AUD/CAD", "-1548588249": "AUD/CHF", "-1552890620": "AUD/JPY", diff --git a/packages/translations/src/translations/pl.json b/packages/translations/src/translations/pl.json index dbf42c380c31..099be849fc4b 100644 --- a/packages/translations/src/translations/pl.json +++ b/packages/translations/src/translations/pl.json @@ -11,7 +11,7 @@ "7100308": "Godzina musi być wartością od 0 do 23.", "9488203": "Deriv Bot to internetowy kreator strategii do handlu opcjami cyfrowymi. Jest to platforma, na której można zbudować własnego automatycznego bota handlowego za pomocą \"bloków\" typu \"przeciągnij i upuść\".", "9757544": "Proszę dostarczyć dokument potwierdzający adres", - "11533428": "Trade bigger positions with less capital on a wide range of global markets. <0>Learn more", + "11533428": "Handluj większymi pozycjami przy mniejszym kapitale na wielu rynkach światowych. <0>Dowiedz się więcej", "11539750": "ustaw {{ variable }} jako ciąg Wskaźnika względnej siły {{ dummy }}", "11706633": "Próg straty: Bot przestanie handlować, jeśli całkowita strata przekroczy tę kwotę.", "11872052": "Tak, wrócę później", @@ -388,7 +388,7 @@ "419496000": "Państwa kontrakt zostanie zamknięty automatycznie, gdy zysk będzie większy lub równy tej kwocie. Ten blok może być używany tylko z typem transakcji Multipliers.", "420072489": "Częstotliwość handlowania kontraktami na różnice kursowe (CFD)", "422055502": "Od", - "423682863": "When your loss reaches or exceeds the set amount, your trade will be closed automatically.", + "423682863": "Gdy twoja strata osiągnie lub przekroczy ustaloną kwotę, transakcja zostanie zamknięta automatycznie.", "424101652": "Przewodniki strategii >", "424272085": "Poważnie podchodzimy do Twojego dobrobytu finansowego i chcemy mieć pewność, że jesteś w pełni świadomy ryzyka przed rozpoczęciem handlu.<0/><0/>", "424897068": "Czy rozumiesz, że możesz potencjalnie stracić 100% zainwestowanych pieniędzy?", @@ -491,7 +491,7 @@ "532724086": "Umowa o pracę", "533403953": "Twoje istniejące konta <0>{{platform}} {{type}} {{from_account}} pozostaną dostępne.", "535041346": "Całkowita maks. stawka na dzień", - "536277802": "TP & SL history", + "536277802": "Historia TP & SL", "537788407": "Inne platformy CFD", "538017420": "0,5 pipsa", "538042340": "Zasada 2: Stawka wzrasta tylko wtedy, gdy po transakcji stratowej następuje udana transakcja", @@ -1675,7 +1675,7 @@ "1722056905": "Dostarczony dokument nie jest akceptowany dla Twojego kraju. Proszę podać dokument akceptowany dla Twojego kraju.", "1722888575": "{{mt5_migration_error}}", "1723069433": "Państwa nowy Wallet", - "1723390945": "Your demo {{deriv}} {{type}} account is ready.", + "1723390945": "Twoje konto demo {{deriv}} {{type}} jest gotowe.", "1723589564": "Pokazuje maksymalną liczbę niezapłaconych kontraktów w Twoim portfolio. Każda linia w Twoim portfolio liczy się jako jedna otwarta pozycja. Po osiągnięciu maksimum nie będziesz mieć możliwości otwierania nowych pozycji bez uprzedniego zamknięcia dotychczasowych pozycji.", "1724367774": "Możesz dokonać przelewu po zakończeniu weryfikacji konta.", "1724696797": "Obowiązuje Cię ograniczenie do jednego konta fiducjarnego.", @@ -3265,7 +3265,7 @@ "-533935232": "Finansowe BVI", "-565431857": "Finansowe Labuan", "-291535132": "Demo bez Swapu", - "-499019612": "Zero Spread Demo", + "-499019612": "Demo Zero Spread", "-1472945832": "SVG bez wymiany", "-144803045": "Dozwolone są tylko liczby i następujące znaki specjalne: {{permitted_characters}}", "-1450516268": "Dozwolone są wyłącznie litery, cyfry, znak spacji, myślnik, kropka i apostrof.", @@ -3371,7 +3371,7 @@ "-2072411961": "Twój dowód adresu został zweryfikowany", "-384887227": "Zaktualizuj adres w swoim profilu.", "-1470677931": "CFD na instrumenty finansowe.", - "-1595662064": "Zero spread CFDs on financial and derived instruments", + "-1595662064": "Zero Spread CFDs na instrumenty finansowe i pochodne", "-1998049070": "Jeśli zgadzasz się na wykorzystywanie przez nas plików cookies, kliknij Akceptuję. <0>Przeczytaj naszą politykę, aby uzyskać więcej informacji.", "-402093392": "Dodaj konto Deriv", "-1721181859": "Potrzebne Ci będzie konto {{deriv_account}}", @@ -3574,7 +3574,7 @@ "-1385484963": "Potwierdź, aby zmienić swoje hasło {{platform}}", "-1990902270": "Spowoduje to zmianę hasła do wszystkich kont {{platform}}.", "-12535938": "*Indeks Volatility 250, Indeks Volatility 150, Indeks Boom 300 i Crash 300.", - "-2104148631": "Commissions apply", + "-2104148631": "Prowizje stosuje się", "-201485855": "Do", "-700260448": "demo", "-1769158315": "prawdziwe", @@ -3584,7 +3584,7 @@ "-2092058806": "8 do 16 znaków", "-2051033705": "Znak specjalny, taki jak ( _ @ ? ! / # )", "-1762249687": "Mała litera", - "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", + "-1123437857": "Dodajesz swoje konto {{platform}} {{product}} w ramach {{company}}, regulowanego przez British Virgin\n Financial Services Commission (nr licencji. SIBA/L/18/1114).", "-535365199": "Wprowadź swoje hasło {{platform}}, aby dodać konto {{platform_name}} {{account}}.", "-184453418": "Wprowadź swoje hasło {{platform}}", "-393388362": "Sprawdzamy Twoje dokumenty. Powinno to zająć około 1-3 dni.", diff --git a/packages/translations/src/translations/pt.json b/packages/translations/src/translations/pt.json index 4b89e8eac877..79326dc87f8c 100644 --- a/packages/translations/src/translations/pt.json +++ b/packages/translations/src/translations/pt.json @@ -1675,7 +1675,7 @@ "1722056905": "O documento que forneceu não é válido para o seu país. Por favor, forneça um documento válido.", "1722888575": "{{mt5_migration_error}}", "1723069433": "A sua nova Wallet", - "1723390945": "Your demo {{deriv}} {{type}} account is ready.", + "1723390945": "A sua conta demo {{deriv}} {{type}} está pronta.", "1723589564": "Representa o número máximo de contratos pendentes na sua carteira. Cada linha na sua carteira conta para uma posição aberta. Uma vez atingido o máximo, não será possível abrir novas posições sem fechar primeiro uma posição existente.", "1724367774": "Assim que a validação da sua conta estiver concluída, poderá proceder à transferência de fundos.", "1724696797": "Está limitado a uma única conta fiduciária.", @@ -3371,7 +3371,7 @@ "-2072411961": "O seu comprovativo de morada foi verificado", "-384887227": "Atualize o endereço no seu perfil.", "-1470677931": "CFDs sobre instrumentos financeiros.", - "-1595662064": "Zero spread CFDs on financial and derived instruments", + "-1595662064": "CFDs Zero Spread em instrumentos financeiros e derived específicos", "-1998049070": "Se concordar com a nossa utilização de cookies, clique em Aceitar. Para mais informações, <0>consulte a nossa política.", "-402093392": "Adicionar conta Deriv", "-1721181859": "É necessária uma conta {{deriv_account}}", @@ -3574,7 +3574,7 @@ "-1385484963": "Confirmar para alterar a sua senha {{platform}}", "-1990902270": "Isto irá alterar a senha de todas as suas contas {{platform}}.", "-12535938": "*Índice Volatility 250, Índice Volatility 150, Índice Boom 300 e Índice Crash 300", - "-2104148631": "Commissions apply", + "-2104148631": "Comissões aplicam", "-201485855": "Até", "-700260448": "demo", "-1769158315": "real", @@ -3584,7 +3584,7 @@ "-2092058806": "8 a 16 caracteres", "-2051033705": "Caracteres especiais como ( _ @ ? ! / # )", "-1762249687": "Letras minúsculas", - "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", + "-1123437857": "Está a adicionar a sua conta {{platform}} {{product}} em {{company}}, regulada pela British Virgin\n Islands Financial Services Commission (licença nº SIBA/L/18/1114).", "-535365199": "Introduza a sua senha {{platform}} para adicionar uma conta {{platform_name}} {{account}}.", "-184453418": "Insira a sua senha {{platform}}", "-393388362": "Estamos a analisar os seus documentos. Este processo deve demorar cerca de 1 a 3 dias.", diff --git a/packages/translations/src/translations/ru.json b/packages/translations/src/translations/ru.json index e33332f3a7dd..5afdc1f90244 100644 --- a/packages/translations/src/translations/ru.json +++ b/packages/translations/src/translations/ru.json @@ -11,7 +11,7 @@ "7100308": "\"Часы\" должны быть от 0 до 23.", "9488203": "Deriv Bot — это веб-конструктор стратегий для торговли цифровыми опционами. На этой платформе можно собрать собственного автоматизированного торгового бота из готовых блоков.", "9757544": "Пожалуйста, предоставьте подтверждение адреса", - "11533428": "Trade bigger positions with less capital on a wide range of global markets. <0>Learn more", + "11533428": "Торгуйте более крупными позициями с меньшим капиталом на широком спектре мировых рынков. <0>Подробнее", "11539750": "установить {{ variable }} в массив индекса относительной силы {{ dummy }}", "11706633": "Порог потерь: Бот прекратит торговлю, если Ваш общий убыток превысит эту сумму.", "11872052": "Да, я вернусь позже", @@ -294,7 +294,7 @@ "313741895": "Этот блок возвращает значение “Верно”, если последняя свеча черная. Блок может быть размещен где угодно, за исключением корневого блока параметров контракта.", "315306603": "У вас есть счет, на котором не выбрана валюта. Пожалуйста, выберите валюту, в которой вы хотите торговать на этом счете.", "316694303": "Свеча чёрная?", - "318705408": "Demo Zero Spread", + "318705408": "Демо Zero Spread", "318865860": "закрыть", "318984807": "Этот блок повторяет находящиеся в нем инструкции указанное количество раз.", "321457615": "Упс, что-то пошло не так!", @@ -388,7 +388,7 @@ "419496000": "Ваш контракт закроется автоматически, когда прибыль будет больше или равна этой сумме. Этот блок можно использовать только в контрактах с multipliers.", "420072489": "Частота торговли CFD", "422055502": "От", - "423682863": "When your loss reaches or exceeds the set amount, your trade will be closed automatically.", + "423682863": "Когда убыток достигнет или превысит установленную сумму, контракт будет закрыт автоматически.", "424101652": "Руководства по быстрым стратегиям >", "424272085": "Мы серьезно относимся к вашему финансовому благополучию и хотим убедиться, что вы полностью осведомлены о торговых рисках.<0/><0/>", "424897068": "Понимаете ли вы, что можете потерять 100% внесенного торгового депозита?", @@ -491,7 +491,7 @@ "532724086": "Трудовой договор", "533403953": "Ваша существующая <0>{{platform}} {{type}} {{from_account}} Ваш счет (счета) останется доступным.", "535041346": "Макс. общая ставка в день", - "536277802": "TP & SL history", + "536277802": "История ТП и СЛ", "537788407": "Другие платформы CFD", "538017420": "0.5 пипсов", "538042340": "Принцип 2: Ставка увеличивается только тогда, когда за убыточной сделкой следует успешная.", @@ -1675,7 +1675,7 @@ "1722056905": "Предоставленный документ не поддерживается для вашей страны. Пожалуйста, предоставьте документ, поддерживаемый для вашей страны.", "1722888575": "{{mt5_migration_error}}", "1723069433": "Ваш новый Wallet", - "1723390945": "Your demo {{deriv}} {{type}} account is ready.", + "1723390945": "Ваш демо-счет {{deriv}} {{type}} готов.", "1723589564": "Представляет собой максимальное количество открытых контрактов в вашем портфеле. Каждая строка в портфеле отображает открытую позицию. Когда вы достигнете лимита, вы не сможете открывать новые контракты, пока не закроете текущие.", "1724367774": "Вы сможете осуществить перевод средств, как только проверка вашего счета будет завершена.", "1724696797": "Вы можете открыть только один фиатный счет.", @@ -1798,7 +1798,7 @@ "1831847842": "Я подтверждаю, что указанные выше имя и дата рождения соответствуют выбранному удостоверению личности (см. ниже)", "1833499833": "Не удалось загрузить документы, удостоверяющие личность", "1836767074": "Поиск по имени платежного агента", - "1837533589": "Stop Loss", + "1837533589": "Стоп лосс", "1837762008": "Пожалуйста, предоставьте удостоверение личности и подтверждение адреса в настройках счета, чтобы подтвердить свой счет и получить доступ к кассе.", "1839021527": "Введите действительный номер счета. Пример: CR123456789", "1840721160": "Последние требования к паролю Deriv MT5", @@ -2035,7 +2035,7 @@ "2049386104": "Чтобы открыть этот счет, нам понадобится следующее:", "2050170533": "Список тиков", "2051558666": "См. историю транзакций", - "2051596653": "Demo Zero Spread BVI", + "2051596653": "Демо Zero Spread BVI", "2052022586": "Чтобы повысить безопасность вашего счета МТ5, мы обновили нашу политику в отношении паролей.", "2054889300": "Создать \"%1\"", "2055317803": "Скопируйте ссылку в браузер своего телефона", @@ -3265,7 +3265,7 @@ "-533935232": "Financial BVI", "-565431857": "Financial Labuan", "-291535132": "Демо Swap-Free", - "-499019612": "Zero Spread Demo", + "-499019612": "Демо Zero Spread", "-1472945832": "Swap-Free SVG", "-144803045": "Разрешены только цифры и следующие символы: {{permitted_characters}}", "-1450516268": "Разрешены только буквы, цифры, пробелы, дефисы, точки и апострофы.", @@ -3371,7 +3371,7 @@ "-2072411961": "Ваше подтверждение адреса принято", "-384887227": "Обновите адрес в своем профиле.", "-1470677931": "CFD на финансовые инструменты.", - "-1595662064": "Zero spread CFDs on financial and derived instruments", + "-1595662064": "CFD с Zero Spread на финансовые и Derived инструменты", "-1998049070": "Если вы согласны на использование нами файлов cookie, нажмите Принять. Для получения дополнительной информации <0>см. нашу политику.", "-402093392": "Добавить счет Deriv", "-1721181859": "Вам понадобится счет {{deriv_account}}", @@ -3574,7 +3574,7 @@ "-1385484963": "Подтвердите изменение пароля {{platform}}", "-1990902270": "Пароль будет изменен для всех ваших счетов {{platform}}.", "-12535938": "* Индекс Volatility 250, индекс Volatility 150, индекс Boom 300 и Crash 300.", - "-2104148631": "Commissions apply", + "-2104148631": "Применяются комиссии", "-201485855": "До", "-700260448": "демо", "-1769158315": "реальный", @@ -3584,7 +3584,7 @@ "-2092058806": "От 8 до 16 символов", "-2051033705": "Специальный символ, такой как ( _ @ ? ! / # )", "-1762249687": "Строчная буква", - "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", + "-1123437857": "Вы добавляете счет {{platform}} {{product}} в {{company}}, регулируемой British Virgin\n Islands Financial Services Commission (лицензия # SIBA/L/18/1114).", "-535365199": "Введите пароль {{platform}}, чтобы добавить {{account}} счет {{platform_name}}.", "-184453418": "Введите пароль {{platform}}", "-393388362": "Мы проверяем ваши документы. Это займет 1-3 дня.", @@ -3690,7 +3690,7 @@ "-2069438609": "Соответствий не найдено", "-97673874": "Никаких закрытых сделок", "-1727419550": "Здесь будут показаны Ваши закрытые сделки.", - "-225500551": "Entry & exit details", + "-225500551": "Данные входа и выхода", "-993480898": "Accumulators", "-123659792": "Vanillas", "-1226595254": "Turbos", @@ -3702,8 +3702,8 @@ "-232254547": "Пользовательские", "-1251526905": "Последние 7 дн.", "-1539223392": "Последние 90 дн.", - "-1913695340": "Order Details", - "-1882287418": "How do I earn a payout?", + "-1913695340": "Детали ордера", + "-1882287418": "Как получить выплату?", "-2017825013": "Понятно", "-725670935": "Take profit and stop loss are unavailable while deal cancellation is enabled.", "-1331298683": "Take profit can’t be adjusted for ongoing accumulator contracts.", @@ -4132,7 +4132,7 @@ "-1769852749": "Н/Д", "-726626679": "Потенциальная прибыль/убыток:", "-1511825574": "Прибыль/убыток:", - "-499175967": "Strike Price", + "-499175967": "Цена исполнения", "-2082644096": "Текущая ставка", "-706219815": "Ориентировочная цена", "-1669418686": "AUD/CAD", diff --git a/packages/translations/src/translations/si.json b/packages/translations/src/translations/si.json index 3f2bcfecdb2c..fa2f79ec0d8e 100644 --- a/packages/translations/src/translations/si.json +++ b/packages/translations/src/translations/si.json @@ -294,7 +294,7 @@ "313741895": "අවසාන candle එක කළු නම් මෙම කොටසෙන් ලැබෙන අගය 'සත්‍ය' වේ. එය ගනුදෙනු පරාමිති මූල කොටස තුළ හැර කැන්වසය මත ඕනෑම තැනක තැබිය හැකිය.", "315306603": "ඔබට මුදල් පවරා නොමැති ගිණුමක් ඇත. කරුණාකර මෙම ගිණුම සමඟ ගනුදෙනු කිරීමට මුදල් ඒකකයක් තෝරන්න.", "316694303": "Candle කළු ද?", - "318705408": "Demo Zero Spread", + "318705408": "ඩෙමෝ Zero Spread", "318865860": "වසන්න", "318984807": "මෙම කොටස් නිශ්චිත වාර ගණනක් සඳහා එහි අඩංගු උපදෙස් පුනරාවර්තනය කරයි.", "321457615": "අපොයි, යමක් වැරදී ඇත!", @@ -1675,7 +1675,7 @@ "1722056905": "ඔබ ලබා දුන් ලේඛනය ඔබේ රට සඳහා සහාය නොදක්වයි. කරුණාකර ඔබේ රට සඳහා සහාය දක්වන ලේඛනයක් සපයන්න.", "1722888575": "{{mt5_migration_error}}", "1723069433": "ඔබේ නව Wallet", - "1723390945": "Your demo {{deriv}} {{type}} account is ready.", + "1723390945": "ඔබේ ආදර්ශන {{deriv}} {{type}} ගිණුම සූදානම්.", "1723589564": "ඔබේ ආයෝජන කළඹෙහි ඇති උපරිම ගිවිසුම් සංඛ්‍යාව නියෝජනය කරයි. ඔබේ ආයෝජන කළඹෙහි ඇති සෑම පේළියක්ම එක් විවෘත ස්ථානයක් ලෙස සලකනු ලැබේ. උපරිමයට ළඟා වූ පසු, පළමුව පවතින ස්ථානයක් නොවසා ඔබට නව ස්ථාන විවෘත කිරීමට නොහැකි වනු ඇත.", "1724367774": "ඔබේ ගිණුමේ සත්‍යාපනය සම්පූර්ණ වූ පසු ඔබට මුදල් හුවමාරුවක් සිදු කළ හැක.", "1724696797": "ඔබ එක් ෆියට් ගිණුමකට පමණක් සීමා විය යුතුය.", @@ -2035,7 +2035,7 @@ "2049386104": "මෙම ගිණුම ලබා ගැනීම සඳහා අපට ඔබ පහත සඳහන් දේවල් ඉදිරිපත් කළ යුතුය:", "2050170533": "ටික් ලැයිස්තුව", "2051558666": "ගනුදෙනු ඉතිහාසය බලන්න", - "2051596653": "Demo Zero Spread BVI", + "2051596653": "ඩෙමෝ Zero Spread BVI", "2052022586": "ඔබේ MT5 ගිණුමේ ආරක්ෂාව වැඩි දියුණු කිරීම සඳහා අපි අපගේ මුරපද ප්‍රතිපත්තිය උත්ශ්‍රේණි කර ඇත.", "2054889300": "“%1” සාදන්න", "2055317803": "සබැඳිය ඔබේ ජංගම බ්‍රවුසරයට පිටපත් කරන්න", @@ -3265,7 +3265,7 @@ "-533935232": "මූල්‍ය BVI", "-565431857": "Financial Labuan", "-291535132": "Swap-Free ආදර්ශන​", - "-499019612": "Zero Spread Demo", + "-499019612": "ඩෙමෝ Zero Spread", "-1472945832": "නිදහස් හුවමාරු SVG", "-144803045": "අංක සහ මෙම විශේෂ අනුලකුණුවලට පමණක් අවසර ඇත: {{permitted_characters}}", "-1450516268": "අකුරු, ඉලක්කම්, අවකාශ, හයිපන, තිත සහ උඩු කොමා සඳහා පමණක් අවසර ඇත.", @@ -3371,7 +3371,7 @@ "-2072411961": "ඔබගේ ලිපිනය සනාථ කිරීම සත්‍යාපනය කර ඇත", "-384887227": "ඔබගේ පැතිකඩෙහි ලිපිනය යාවත්කාලීන කරන්න.", "-1470677931": "මූල්‍ය මෙවලම් මත CFDs.", - "-1595662064": "Zero spread CFDs on financial and derived instruments", + "-1595662064": "Zero spread CFD මූල්‍ය සහ Derived උපකරණ මත", "-1998049070": "ඔබ අපගේ කුකීස් භාවිතයට එකඟ නම්, පිළිගන්න මත ක්ලික් කරන්න. වැඩි විස්තර සඳහා, <0>අපගේ ප්‍රතිපත්තිය බලන්න.", "-402093392": "Deriv ගිණුම එකතු කරන්න", "-1721181859": "ඔබට {{deriv_account}} ගිණුමක් අවශ්‍ය වේ", @@ -3574,7 +3574,7 @@ "-1385484963": "ඔබේ {{platform}} මුරපදය වෙනස් කිරීමට තහවුරු කරන්න", "-1990902270": "මෙය ඔබේ සියලුම {{platform}} ගිණුම් සඳහා මුරපදය වෙනස් කරනු ඇත.", "-12535938": "*250 අස්ථායීතා දර්ශකය, 150 අස්ථායීතා දර්ශකය, Boom 300 සහ Crash 300 දර්ශකය", - "-2104148631": "Commissions apply", + "-2104148631": "කොමිස් අදාල වේ", "-201485855": "දක්වා", "-700260448": "ආදර්ශන​ ගිණුම", "-1769158315": "සැබෑ", @@ -3584,7 +3584,7 @@ "-2092058806": "අක්ෂර 8 සිට 16 දක්වා", "-2051033705": "(_@?! / #) වැනි විශේෂ අනුලකුණක්", "-1762249687": "සිම්පල් අකුරක්", - "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", + "-1123437857": "ඔබ ඔබේ {{platform}} {{product}} ගිණුම එකතු කරන්නේ {{company}} යටතේ, British Virgin\n Islands Financial Services Commission නියාමනය කරනු ලබන (බලපත්ර අංක. SIBA/L/18/1114).", "-535365199": "{{platform_name}} {{account}} ගිණුමක් එක් කිරීමට ඔබේ {{platform}} මුරපදය ඇතුළත් කරන්න.", "-184453418": "ඔබේ {{platform}} මුරපදය ඇතුළත් කරන්න", "-393388362": "අපි ඔබේ ලේඛන සමාලෝචනය කරමින් සිටිමු. මේ සඳහා දින 1 සිට 3 දක්වා කාලයක් ගත විය හැක.", diff --git a/packages/translations/src/translations/sw.json b/packages/translations/src/translations/sw.json index 15ff294140b0..4b31d9fed5c9 100644 --- a/packages/translations/src/translations/sw.json +++ b/packages/translations/src/translations/sw.json @@ -1675,7 +1675,7 @@ "1722056905": "Hati uliyotoa haiwezi kutumika kwa nchi yako. Tafadhali toa hati inayoweza kutumika kwa nchi yako.", "1722888575": "{{mt5_migration_error}}", "1723069433": "Wallet yako mpya", - "1723390945": "Your demo {{deriv}} {{type}} account is ready.", + "1723390945": "Akaunti yako ya demo {{deriv}} {{type}} iko tayari.", "1723589564": "Huwakilisha idadi kubwa ya mikataba bora katika mkoba wako wa kazi. Kila mstari katika mkoba wako wa kazi huhesabiwa kuwa ni nafasi moja iliyo wazi. Mara tu kiwango cha juu kitapofikiwa, hutaweza kufungua nafasi mpya bila kufunga nafasi iliyopo kwanza.", "1724367774": "Unaweza kufanya uhamisho wa fedha mara tu uthibitishaji wa akaunti yako utakapokamilika.", "1724696797": "Umezuiwa kutumia akaunti zaidi ya moja ya fiat.", @@ -3371,7 +3371,7 @@ "-2072411961": "Uthibitisho wako wa anwani umethibitishwa", "-384887227": "Badilisha anwani kwenye wasifu wako.", "-1470677931": "CFDs kwenye vyombo vya kifedha.", - "-1595662064": "Zero spread CFDs on financial and derived instruments", + "-1595662064": "Zero spread CFDs kwenye vyombo vilivyochaguliwa vya kifedha na derived", "-1998049070": "Ikiwa unakubali matumizi yetu ya vidakuzi, bonyeza kubali. Kwa maelezo zaidi, tazama <0>sera yetu.", "-402093392": "Ongeza Akaunti ya Deriv", "-1721181859": "Utahitaji akaunti ya {{deriv_account}}", @@ -3574,7 +3574,7 @@ "-1385484963": "Thibitisha kubadilisha nenosiri lako la {{platform}}", "-1990902270": "Hii itabadilisha nenosiri kwa akaunti zako zote za {{platform}} .", "-12535938": "*Volatility 250 Indeksi, Volatility 150 Indeksi, Boom 300 na Crash 300 Indeksi", - "-2104148631": "Commissions apply", + "-2104148631": "Tume zinatumika", "-201485855": "Hadi", "-700260448": "demo", "-1769158315": "halisi", @@ -3584,7 +3584,7 @@ "-2092058806": "8 hadi 16 herufi", "-2051033705": "Alama maalum kama vile ( _ @ ? ! / # )", "-1762249687": "Herufi ndogo", - "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", + "-1123437857": "Unaongeza akaunti yako ya {{platform}} {{product}} chini ya {{company}}, iliyodhibitiwa na British Virgin\n Islands Financial Services Commission (leseni no. SIBA/L/18/1114).", "-535365199": "Ingiza nenosiri lako la {{platform}} ili kuongeza akaunti ya {{platform_name}} {{account}} .", "-184453418": "Ingiza nenosiri lako la {{platform}}", "-393388362": "Tunakagua hati zako. Hii inapaswa kuchukua siku 1 hadi 3.", diff --git a/packages/translations/src/translations/th.json b/packages/translations/src/translations/th.json index fda3636d0bc7..6c4e678fdde6 100644 --- a/packages/translations/src/translations/th.json +++ b/packages/translations/src/translations/th.json @@ -141,7 +141,7 @@ "151646545": "ไม่สามารถอ่านไฟล์ {{name}}", "152415091": "คณิตศาสตร์", "152524253": "ซื้อขายแลกเปลี่ยนอิงตลาดโลกต่างๆ ด้วยแพลตฟอร์มยอดนิยมและใช้งานง่ายของเรา", - "153485708": "Zero Spread - BVI", + "153485708": "บัญชี Zero Spread - BVI", "157593038": "เลขจำนวนเต็มที่สุ่มตั้งแต่ {{ start_number }} ถึง {{ end_number }}", "157871994": "ลิงก์หมดอายุ", "158355408": "บริการบางอย่างอาจไม่สามารถใช้งานได้ชั่วคราว", @@ -294,7 +294,7 @@ "313741895": "บล็อกนี้จะส่งคืนค่า “จริง” หากว่าแท่งเทียนสุดท้ายเป็นสีดำ มันสามารถถูกวางที่ใดก็ได้บนผืนผ้าใบ เว้นแต่ภายในบล็อกรูทพารามิเตอร์การเทรด", "315306603": "คุณมีบัญชีที่ไม่มีการกำหนดสกุลเงิน โปรดเลือกสกุลเงินเพื่อจะทำการเทรดด้วยบัญชีนี้", "316694303": "แท่งเทียนเป็นสีดำหรือไม่", - "318705408": "Demo Zero Spread", + "318705408": "บัญชีทดลอง Zero Spread", "318865860": "ปิด", "318984807": "บล็อกนี้จะทำซ้ำตามคำสั่งที่ได้รับจากภายใน และจะทำตามจำนวนครั้งที่ระบุ", "321457615": "อ๊ะ มีบางอย่างผิดปกติ!", @@ -322,7 +322,7 @@ "344418897": "การตั้งขีดจำกัดการเทรดและระบบการกันตนเองนั้นช่วยให้คุณควบคุมจำนวนเงินและเวลาที่ใช้ใน {{brand_website_name}} และเป็นการฝึก <0>การเทรดอย่างมีความรับผิดชอบ", "345320063": "การประทับเวลาไม่ถูกต้อง", "345818851": "ขออภัย เกิดข้อผิดพลาดภายใน กดช่องทำเครื่องหมายด้านบนเพื่อลองอีกครั้ง", - "346070861": "Zero Spread", + "346070861": "บัญชี Zero Spread", "346843343": "CFD สำหรับตราสารทางการเงินและตราสาร Derived ซึ่งมาพร้อมกับระบบ Copy Trading", "347029309": "Forex: มาตรฐาน/ไมโคร", "347039138": "กระบวนการทำซ้ำ (2)", @@ -923,7 +923,7 @@ "975747761": "กำลังดำเนินอยู่", "975950139": "ประเทศที่พำนัก", "977929335": "ไปที่การตั้งค่าบัญชีของฉัน", - "979713491": "Zero Spread BVI", + "979713491": "บัญชี Zero Spread BVI", "980050614": "อัพเดทตอนนี้", "981138557": "เปลี่ยนเส้นทาง", "981568830": "คุณได้เลือกที่จะกันตัวเองออกจากการเทรดบนเว็บไซต์ของเราจนถึง {{exclude_until}} หากคุณไม่สามารถที่จะทำการเทรดหรือฝากเงินได้หลังจากช่วงระยะเวลาการกันตัวเองสิ้นสุดลงแล้ว โปรดติดต่อเราผ่าน <0>แชทสด", @@ -1675,7 +1675,7 @@ "1722056905": "เอกสารที่คุณยื่นไม่ได้รับการรองรับสําหรับประเทศของคุณ โปรดยื่นเอกสารที่ได้รับการรองรับสําหรับประเทศของคุณ", "1722888575": "{{mt5_migration_error}}", "1723069433": "Wallet ใหม่ของคุณ", - "1723390945": "Your demo {{deriv}} {{type}} account is ready.", + "1723390945": "บัญชีทดลอง {{deriv}} {{type}} ของคุณพร้อมแล้ว", "1723589564": "แสดงถึงจำนวนมากที่สุดของสัญญาที่ยังไม่ยุติและยังคงอยู่ในบัญชีของคุณ โดยแต่ละบรรทัดในพอร์ตของคุณจะแสดงถึงหนึ่งตำแหน่งการค้าที่เปิดอยู่ โดยเมื่อมันขึ้นถึงขีดจำนวนสูงสุดแล้วคุณจะไม่สามารถเปิดตำแหน่งใหม่ได้นอกจากจะดำเนินการปิดตำแหน่งที่มีอยู่เสียก่อน", "1724367774": "คุณสามารถทำการโอนเงินได้เมื่อการยืนยันบัญชีของคุณเสร็จสมบูรณ์", "1724696797": "คุณถูกจํากัดให้มีเพียงบัญชีเงินตรารัฐบาลอันเดียวเท่านั้น", @@ -2035,7 +2035,7 @@ "2049386104": "เราต้องการให้คุณส่งข้อมูลเหล่านี้เพื่อที่จะได้รับบัญชีนี้:", "2050170533": "ลิสต์ค่าจุด Tick", "2051558666": "ดูประวัติธุรกรรม", - "2051596653": "Demo Zero Spread BVI", + "2051596653": "บัญชีทดลอง Zero Spread BVI", "2052022586": "เพื่อเพิ่มความปลอดภัยของบัญชี MT5 ของคุณ เราได้อัพเกรดนโยบายรหัสผ่านของเรา", "2054889300": "สร้าง \"%1\"", "2055317803": "คัดลอกลิงก์ไปยังเบราว์เซอร์มือถือของคุณ", @@ -3265,7 +3265,7 @@ "-533935232": "Financial BVI", "-565431857": "ทางการเงิน ลาบวน", "-291535132": "บัญชีทดลองปลอดสวอป", - "-499019612": "Zero Spread Demo", + "-499019612": "บัญชีทดลอง Zero Spread", "-1472945832": "บัญชี SVG ปลอดสวอป", "-144803045": "อนุญาตเฉพาะตัวเลขและอักขระพิเศษเหล่านี้เท่านั้น: {{permitted_characters}}", "-1450516268": "ใช้ได้เฉพาะตัวอักษร ตัวเลข ช่องว่าง ยัติภังค์ มหัพภาค และเครื่องหมายอัญประกาศเดี่ยวเท่านั้น", @@ -3371,7 +3371,7 @@ "-2072411961": "หลักฐานแสดงที่อยู่ของคุณได้รับการยืนยันแล้ว", "-384887227": "อัพเดทที่อยู่ในโปรไฟล์ของคุณ", "-1470677931": "CFD สำหรับตราสารทางการเงิน", - "-1595662064": "Zero spread CFDs on financial and derived instruments", + "-1595662064": "เทรด CFD แบบไม่มีค่าสเปรดสำหรับตราสารทางการเงินและตราสาร Derived", "-1998049070": "หากคุณยอมรับการใช้งานคุกกี้ของเราให้คลิกที่ยอมรับ สำหรับข้อมูลเพิ่มเติม <0>ดูนโยบายของเรา", "-402093392": "เพิ่มบัญชี Deriv", "-1721181859": "คุณจะต้องมีบัญชี {{deriv_account}}", @@ -3574,7 +3574,7 @@ "-1385484963": "ยืนยันเปลี่ยนรหัสผ่าน {{platform}} ของคุณ", "-1990902270": "การดําเนินการนี้จะเปลี่ยนรหัสผ่านสำหรับบัญชี {{platform}} ของคุณทั้งหมด", "-12535938": "*ดัชนี Volatility 250, ดัชนี Volatility 150, ดัชนี Boom 300 และดัชนี Crash 300", - "-2104148631": "Commissions apply", + "-2104148631": "มีการคิดค่าคอมมิชชั่น", "-201485855": "ถึง", "-700260448": "ทดลอง", "-1769158315": "จริง", @@ -3584,7 +3584,7 @@ "-2092058806": "8 ถึง 16 อักขระ", "-2051033705": "อักขระพิเศษเช่น ( _ @ ? ! / # )", "-1762249687": "ตัวอักษรตัวพิมพ์เล็ก", - "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", + "-1123437857": "คุณกำลังเพิ่มบัญชี {{platform}} {{product}} ภายใต้ {{company}} ซึ่งได้รับการควบคุมโดย British Virgin\n Islands Financial Services Commission (หมายเลขใบอนุญาต SIBA/L/18/1114)", "-535365199": "ใส่รหัสผ่าน {{platform}} ของคุณเพื่อเพิ่มบัญชี {{platform_name}} {{account}}", "-184453418": "ใส่รหัสผ่าน {{platform}} ของคุณ", "-393388362": "เรากำลังทำการตรวจสอบเอกสารของคุณ การดำเนินการนี้จะใช้เวลาประมาณ 1 ถึง 3 วัน", diff --git a/packages/translations/src/translations/tr.json b/packages/translations/src/translations/tr.json index cf9512015084..1ce2b399bd01 100644 --- a/packages/translations/src/translations/tr.json +++ b/packages/translations/src/translations/tr.json @@ -1675,7 +1675,7 @@ "1722056905": "Sağladığınız belge ülkeniz için desteklenmiyor. Lütfen ülkeniz için desteklenen bir belge sağlayın.", "1722888575": "{{mt5_migration_error}}", "1723069433": "Yeni Wallet'ınız", - "1723390945": "Your demo {{deriv}} {{type}} account is ready.", + "1723390945": "Demo {{deriv}} {{type}} hesabınız hazır.", "1723589564": "Portföyünüzün en fazla bekleyen sözleşme sayısını temsil eder. Portföyünüzün her bir satırı bir açık pozisyon için geçerlidir. Maksimuma ulaşıldığında, mevcut bir konumu kapatmadan yeni pozisyonlar açamayacaksınız.", "1724367774": "Hesabınızın doğrulanması tamamlandıktan sonra para transferi yapabilirsiniz.", "1724696797": "Yalnızca bir fiat hesabıyla sınırlısınız.", @@ -3371,7 +3371,7 @@ "-2072411961": "Adres kanıtınız doğrulandı", "-384887227": "Profilinizdeki adresi güncelleyin.", "-1470677931": "Finansal araçlara ilişkin CFD'ler.", - "-1595662064": "Zero spread CFDs on financial and derived instruments", + "-1595662064": "Finansal ve derived araçlarda Zero Spread CFD'ler", "-1998049070": "Çerezleri kullanmayı kabul ediyorsanız Kabul Et'i tıklayın. Daha fazla bilgi için, <0>politikamıza bakın.", "-402093392": "Deriv Hesabı Ekle", "-1721181859": "Bir {{deriv_account}} hesabına ihtiyacınız olacak", @@ -3574,7 +3574,7 @@ "-1385484963": "{{platform}} parolanızı değiştirmek için onaylayın", "-1990902270": "Bu işlem, parolayı tüm {{platform}} hesaplarınıza değiştirecektir.", "-12535938": "*Volatility 250 Endeksi, Volatility 150 Endeksi, Boom 300 ve Crash 300 Endeksi", - "-2104148631": "Commissions apply", + "-2104148631": "Komisyonlar geçerlidir", "-201485855": "Kadar", "-700260448": "demo", "-1769158315": "gerçek", @@ -3584,7 +3584,7 @@ "-2092058806": "8 ila 16 karakter", "-2051033705": "( _ @ ? ! / # ) gibi özel bir karakter", "-1762249687": "Bir küçük harf", - "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", + "-1123437857": "{{platform}} {{product}} hesabınızı, British Virgin Islands Financial Services Commission\n tarafından düzenlenen {{company}} altına ekliyorsunuz (lisans no. SIBA/L/18/1114).", "-535365199": "{{platform}} {{account}} hesabı eklemek için {{platform_name}} şifrenizi girin.", "-184453418": "{{platform}} şifrenizi girin", "-393388362": "Belgelerinizi inceliyoruz. Bu yaklaşık 1 ila 3 gün sürmelidir.", diff --git a/packages/translations/src/translations/vi.json b/packages/translations/src/translations/vi.json index f92c10b845c7..8767571c9c8d 100644 --- a/packages/translations/src/translations/vi.json +++ b/packages/translations/src/translations/vi.json @@ -294,7 +294,7 @@ "313741895": "Khung này trả về \"Đúng\" nếu nến cuối cùng có màu đen. Có thể đặt khung ở bất cứ đâu trên biểu đồ, ngoại trừ trong khung tham số Giao dịch gốc.", "315306603": "Bạn có một tài khoản vẫn chưa chọn loại tiền tệ mặc định. Vui lòng chọn một loại tiền tệ để giao dịch với tài khoản này.", "316694303": "Nến màu đen?", - "318705408": "Demo Zero Spread", + "318705408": "Bản demo Zero Spread", "318865860": "đóng", "318984807": "Khung này lặp lại một số lần xác định các chỉ dẫn đã có sẵn trong nó.", "321457615": "Đã xảy ra lỗi!", @@ -1675,7 +1675,7 @@ "1722056905": "Giấy tờ bạn cung cấp không hợp lệ ở quốc gia bạn. Vui lòng cung cấp giấy tờ hợp lệ.", "1722888575": "{{mt5_migration_error}}", "1723069433": "Wallet mới của bạn", - "1723390945": "Your demo {{deriv}} {{type}} account is ready.", + "1723390945": "Tài khoản demo {{deriv}} {{type}} của bạn đã sẵn sàng.", "1723589564": "Trình bày số tối đa của những hợp đồng nổi bật có trong hồ sơ của bạn. Mỗi một dòng trong hồ sơ là một vị thế mở. Khi đã đạt đến mức tối đa, bạn sẽ không thể mở thêm vị thế mới mà không đóng các vị thế đang có trước.", "1724367774": "Bạn có thể thực hiện chuyển tiền sau khi xác minh tài khoản của bạn hoàn tất.", "1724696797": "Bạn bị giới hạn chỉ được có một tài khoản tiền pháp định.", @@ -2035,7 +2035,7 @@ "2049386104": "Chúng tôi cần bạn gửi những thông tin này để tạo được tài khoản:", "2050170533": "Danh sách tick", "2051558666": "Xem lịch sử giao dịch", - "2051596653": "Demo Zero Spread BVI", + "2051596653": "Bản demo Zero Spread BVI", "2052022586": "Để tăng cường bảo mật tài khoản MT5 của bạn, chúng tôi đã nâng cấp chính sách mật khẩu của chúng tôi.", "2054889300": "Tạo \"%1\"", "2055317803": "Sao chép đường liên kết vào trình duyệt trên điện thoại của bạn", @@ -3265,7 +3265,7 @@ "-533935232": "BVI tài chính", "-565431857": "Financial Labuan", "-291535132": "Tài khoản thử nghiệm không tính phí qua đêm", - "-499019612": "Zero Spread Demo", + "-499019612": "Bản Demo Spread Zero", "-1472945832": "Tài khoản SVG không tính phí qua đêm", "-144803045": "Chỉ được sử dụng các số và ký tự đặc biệt sau: {{permitted_characters}}", "-1450516268": "Chỉ được dùng chữ cái, số, khoảng trắng, dấu gạch nối, dấu chấm, và dấu gạch ngang.", @@ -3371,7 +3371,7 @@ "-2072411961": "Giấy tờ xác thực địa chỉ của bạn đã được chấp thuận", "-384887227": "Cập nhật địa chỉ trong hồ sơ của bạn.", "-1470677931": "CFD trên các công cụ tài chính.", - "-1595662064": "Zero spread CFDs on financial and derived instruments", + "-1595662064": "Zero spread CFDs trên các công cụ tài chính và Derived chính phái sinh", "-1998049070": "Nếu bạn đồng ý cho việc sử dụng cookies của chúng tôi, nhấp vào Chấp nhận. Để biết thêm thông tin <0>xem quy định.", "-402093392": "Thêm tài khoản Deriv", "-1721181859": "Bạn cần một tài khoản {{deriv_account}}", @@ -3574,7 +3574,7 @@ "-1385484963": "Xác nhận đổi mật khẩu {{platform}} của bạn", "-1990902270": "Thao tác này sẽ thay đổi mật khẩu cho tất cả các tài khoản {{platform}} của bạn.", "-12535938": "* Chỉ số Volatility 250, Chỉ số Volatility 150, Chỉ số Boom 300 và Chỉ số Crash 300", - "-2104148631": "Commissions apply", + "-2104148631": "Hoa hồng áp dụng", "-201485855": "Lên đến", "-700260448": "Thử nghiệm", "-1769158315": "thực", @@ -3584,7 +3584,7 @@ "-2092058806": "8 đến 16 ký tự", "-2051033705": "Một ký tự đặc biệt như ( _ @ ? ! / # )", "-1762249687": "Một chữ cái viết thường", - "-1123437857": "You are adding your {{platform}} {{product}} account under {{company}}, regulated by the British Virgin\n Islands Financial Services Commission (licence no. SIBA/L/18/1114).", + "-1123437857": "Bạn đang thêm tài khoản {{product}} {{platform}} của bạn dưới {{company}}, được quy định bởi British Virgin\n Islands Financial Services Commission (giấy phép số SIBA/L/18/1114).", "-535365199": "Nhập mật khẩu {{platform}} của bạn để thêm tài khoản {{platform_name}} {{account}}.", "-184453418": "Nhập mật khẩu {{platform}} của bạn", "-393388362": "Chúng tôi đang xét duyệt giấy tờ của bạn. Quá trình này sẽ mất khoảng từ 1 đến 3 ngày.", From 4030e33149443f16856787c0644a0f366f545708 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 26 Jun 2024 09:15:25 +0400 Subject: [PATCH 06/17] =?UTF-8?q?translations:=20=F0=9F=93=9A=20sync=20tra?= =?UTF-8?q?nslations=20with=20crowdin=20(#15790)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: DerivFE --- packages/p2p/src/translations/km.json | 4 +-- .../translations/src/translations/bn.json | 4 +-- .../translations/src/translations/es.json | 22 +++++++-------- .../translations/src/translations/pl.json | 18 ++++++------ .../translations/src/translations/pt.json | 22 +++++++-------- .../translations/src/translations/ru.json | 8 +++--- .../translations/src/translations/si.json | 24 ++++++++-------- .../translations/src/translations/sw.json | 28 +++++++++---------- .../translations/src/translations/tr.json | 26 ++++++++--------- .../translations/src/translations/vi.json | 24 ++++++++-------- 10 files changed, 90 insertions(+), 90 deletions(-) diff --git a/packages/p2p/src/translations/km.json b/packages/p2p/src/translations/km.json index deed40a53ae9..cf2ddb11a709 100644 --- a/packages/p2p/src/translations/km.json +++ b/packages/p2p/src/translations/km.json @@ -63,7 +63,7 @@ "612069973": "តើ​អ្នក​នឹង​ផ្ដល់​អូន​កម្ម​និយម​ទៅ​​អ្នក​ទិញ​នេះ​ដែរ​ឬទេ?", "625563394": "មានតែភាពគំនិតត្រូវបានអនុញ្ញាត។", "628581263": "អត្រាតំលៃក្នុងបុណ្យទីផ្សារ {{local_currency}} បានផ្លាស់ប្តូរ។", - "639382772": "សូម​ផ្ទុក​ឯកសារប្រភេទ​ដែលគាំទ្រ។", + "639382772": "សូមបង្ហោះប្រភេទឯកសារដែលគាំទ្រ។", "649549724": "ខ្ញុំមិនបានទទួលប្រាក់បង់ទេ។", "654193846": "តំណភ្ជាប់ស្វែងការណ៍បានរារាំង អ្រុមជាមិនបាន សូមចុចប៊ូតុងខាងក្រោមដើម្បីស្នើរសុំមួយថ្មី", "655733440": "ផ្សេងទៀត", @@ -77,7 +77,7 @@ "733311523": "ប្រតិបត្តិការក្នុងP2Pត្រូវបានចាក់សោ។ មុខងារនេះមិនមានសម្រាប់ភ្នាក់ងារទូទាត់ទេ។", "752996317": "ជំហានចុងក្រោយ", "767789372": "រង់ចាំការទូទាត់", - "782834680": "ពេលវេលា និងនៅសល់", + "782834680": "ពេលវេលានៅសល់", "783454335": "បទល្មើសហួសសមា្ភារៈ", "784839262": "ចែករំលែក", "790825518": "ការផ្សព្វផ្សាយនេះមិនមានទៀតទេ", diff --git a/packages/translations/src/translations/bn.json b/packages/translations/src/translations/bn.json index df74558b78e4..da74d9717f1e 100644 --- a/packages/translations/src/translations/bn.json +++ b/packages/translations/src/translations/bn.json @@ -1253,7 +1253,7 @@ "1286094280": "প্রত্যাহার", "1286507651": "পরিচয় যাচাইকরণ পর্দা বন্ধ", "1288965214": "পাসপোর্ট", - "1289146554": "ব্রিটিশ ভার্জিন দ্বীপপুঞ্জ আর্থিক সেবা কমিশন", + "1289146554": "British Virgin Islands Financial Services Commission", "1289650867": "অস্কারের গ্রাইন্ড কৌশলটি প্রতিটি ট্রেডিং সেশনে সম্ভাব্য পরিমিত কিন্তু স্থির লাভ অর্জনের জন্য ডিজাইন করা হয়েছে। এই কৌশলটি ট্রেডগুলি সেশনে বিভক্ত করে এবং এর তিনটি নীতি রয়েছে।", "1290525720": "উদাহরণ: ", "1291997417": "আপনার নির্বাচিত মেয়াদ শেষ হওয়ার তারিখে ঠিক 23:59:59 GMT-এ চুক্তির মেয়াদ শেষ হবে।", @@ -3584,7 +3584,7 @@ "-2092058806": "8 থেকে 16 অক্ষর", "-2051033705": "একটি বিশেষ চরিত্র যেমন ( _ @ ? ! / # )", "-1762249687": "একটি ছোট অক্ষর", - "-1123437857": "আপনি আপনার {{platform}} {{product}} অ্যাকাউন্ট যুক্ত করছেন {{company}}, যা ব্রিটিশ ভার্জিন আইল্যান্ডস ফিন্যান্সিয়াল সার্ভিসেস কমিশন (লাইসেন্স নং. SIBA/L/18/1114) দ্বারা নিয়ন্ত্রিত।", + "-1123437857": "আপনি আপনার {{platform}} {{product}} অ্যাকাউন্ট যুক্ত করছেন {{company}}, British Virgin\n Islands Financial Services Commission (লাইসেন্স নং. SIBA/L/18/1114) দ্বারা নিয়ন্ত্রিত।", "-535365199": "একটি {{platform_name}} {{account}} অ্যাকাউন্ট যোগ করতে আপনার {{platform}} পাসওয়ার্ড লিখুন।", "-184453418": "আপনার {{platform}} পাসওয়ার্ড লিখুন", "-393388362": "আমরা আপনার নথি পর্যালোচনা করছি। এটি প্রায় 1 থেকে 3 দিন সময় নিতে পারে।", diff --git a/packages/translations/src/translations/es.json b/packages/translations/src/translations/es.json index 161129f32422..a33cd77df15b 100644 --- a/packages/translations/src/translations/es.json +++ b/packages/translations/src/translations/es.json @@ -11,7 +11,7 @@ "7100308": "La hora debe ser entre 0 y 23.", "9488203": "Deriv Bot es un constructor de estrategias basado en la web para la negociación de opciones digitales. Es una plataforma donde usted puede construir su propio bot de trading automatizado usando 'bloques' de arrastrar y soltar.", "9757544": "Por favor, envíe su comprobante de domicilio", - "11533428": "Trade bigger positions with less capital on a wide range of global markets. <0>Learn more", + "11533428": "Negocie posiciones más grandes con menos capital en una amplia gama de mercados globales. <0>Más información", "11539750": "ajuste {{ variable }} a Conjunto de Índice de Fuerza Relativa {{ dummy }}", "11706633": "Umbral de pérdidas: El bot dejará de operar si su pérdida total supera esta cantidad.", "11872052": "Sí, volveré más tarde", @@ -388,7 +388,7 @@ "419496000": "Su contrato se cierra automáticamente cuando su ganancia es superior o igual a esta cantidad. Este bloque solo puede utilizarse con el tipo de operación de multipliers.", "420072489": "Frecuencia del trading con CFD", "422055502": "De", - "423682863": "When your loss reaches or exceeds the set amount, your trade will be closed automatically.", + "423682863": "Cuando su pérdida alcance o supere esta cantidad fijada, su operación se cerrará automáticamente.", "424101652": "Guías sobre estrategias rápidas >", "424272085": "Nos tomamos muy en serio su bienestar financiero y queremos asegurarnos de que conoce plenamente los riesgos antes de operar.<0/><0/>", "424897068": "¿Entiende que podría perder el 100% del dinero que utiliza para operar?", @@ -491,7 +491,7 @@ "532724086": "Contrato de trabajo", "533403953": "Su(s) <0>{{platform}} {{type}} {{from_account}} cuenta(s) existentes seguirán siendo accesibles.", "535041346": "Inversión máx. total por día", - "536277802": "TP & SL history", + "536277802": "Historia de TP y SL", "537788407": "Otra plataforma de CFD", "538017420": "0.5 pips", "538042340": "Principio 2: La inversión solo aumenta cuando a una operación con pérdidas le sigue una operación con éxito", @@ -2709,7 +2709,7 @@ "-145462920": "Deriv cTrader", "-982095728": "Obtener", "-1790089996": "NUEVO!", - "-1473281803": "Predict the market, profit if you’re right, risk only what you put in. <0>Learn more", + "-1473281803": "Prediga el mercado, gane si acierta, arriesgue sólo lo que pone. <0>Más información", "-2134770229": "Activos totales en su cuenta Deriv MT5 CFD demo y aplicaciones Deriv.", "-1277942366": "Total de activos", "-1255879419": "Trader's Hub", @@ -3690,7 +3690,7 @@ "-2069438609": "No se han encontrado coincidencias", "-97673874": "No hay operaciones cerradas", "-1727419550": "Sus operaciones cerradas se mostrarán aquí.", - "-225500551": "Entry & exit details", + "-225500551": "Detalles de entrada y salida", "-993480898": "Accumulators", "-123659792": "Vanillas", "-1226595254": "Turbos", @@ -3702,12 +3702,12 @@ "-232254547": "Personalizar", "-1251526905": "Últimos 7 días", "-1539223392": "Últimos 90 días", - "-1913695340": "Order Details", - "-1882287418": "How do I earn a payout?", + "-1913695340": "Detalles del pedido", + "-1882287418": "¿Cómo obtengo un pago?", "-2017825013": "Entendido", - "-725670935": "Take profit and stop loss are unavailable while deal cancellation is enabled.", - "-1331298683": "Take profit can’t be adjusted for ongoing accumulator contracts.", - "-99964540": "When your profit reaches or exceeds the set amount, your trade will be closed automatically.", + "-725670935": "Take Profit y Stop Loss no están disponibles mientras la cancelación de contrato está activa.", + "-1331298683": "La toma de beneficios no puede ajustarse para los contratos de accumulator en curso.", + "-99964540": "Cuando su beneficio alcance o supere esta cantidad fijada, su operación se cerrará automáticamente.", "-1052279158": "Su <0>pago es la suma de su inversión inicial y su ganancia.", "-274058583": "La <0>Take profit es una función adicional que le permite gestionar el riesgo cerrando automáticamente la operación cuando el beneficio alcanza el importe objetivo. Esta función no está disponible para los contratos Accumulator en curso.", "-1819891401": "Puede cerrar su operación en cualquier momento. Sin embargo, tenga en cuenta el <0>riesgo de deslizamiento.", @@ -4132,7 +4132,7 @@ "-1769852749": "N/A", "-726626679": "Ganancia/pérdida potencial:", "-1511825574": "Ganancia/Pérdida:", - "-499175967": "Strike Price", + "-499175967": "Precio de ejecución", "-2082644096": "Inversión actual", "-706219815": "Precio indicativo", "-1669418686": "AUD/CAD", diff --git a/packages/translations/src/translations/pl.json b/packages/translations/src/translations/pl.json index 099be849fc4b..327c95108875 100644 --- a/packages/translations/src/translations/pl.json +++ b/packages/translations/src/translations/pl.json @@ -1798,7 +1798,7 @@ "1831847842": "Potwierdzam, że powyższe imię i nazwisko oraz data urodzenia są zgodne z wybranym przeze mnie dokumentem tożsamości (patrz poniżej)", "1833499833": "Nie udało się przesłać dowodu tożsamości", "1836767074": "Wyszukaj nazwę agenta płatności", - "1837533589": "Stop Loss", + "1837533589": "Stop stratom", "1837762008": "Prześlij potwierdzenie tożsamości i danych adresowych, aby zweryfikować swoje konto w jego ustawieniach i uzyskać dostęp do sekcji Kasjer.", "1839021527": "Wprowadź prawidłowy numer konta. Na przykład: CR123456789", "1840721160": "Najnowsze wymagania dotyczące hasła Deriv MT5", @@ -2709,7 +2709,7 @@ "-145462920": "Deriv cTrader", "-982095728": "Dostać", "-1790089996": "NOWOŚĆ!", - "-1473281803": "Predict the market, profit if you’re right, risk only what you put in. <0>Learn more", + "-1473281803": "Przewiduj rynek, zysk, jeśli masz rację, ryzykuj tylko to, co włożysz. <0>Dowiedz się więcej", "-2134770229": "Suma aktywów na koncie demo Deriv Apps i Deriv MT5 CFD.", "-1277942366": "Całkowite aktywa", "-1255879419": "Trader's Hub", @@ -3690,7 +3690,7 @@ "-2069438609": "Nie znaleziono dopasowań", "-97673874": "Brak zamkniętych transakcji", "-1727419550": "Twoje zamknięte transakcje zostaną pokazane tutaj.", - "-225500551": "Entry & exit details", + "-225500551": "Szczegóły wejścia i wyjścia", "-993480898": "Accumulators", "-123659792": "Vanillas", "-1226595254": "Turbos", @@ -3702,12 +3702,12 @@ "-232254547": "Niestandardowy", "-1251526905": "Ostatnie 7 dni", "-1539223392": "Ostatnie 90 dni", - "-1913695340": "Order Details", - "-1882287418": "How do I earn a payout?", + "-1913695340": "Szczegóły zamówienia", + "-1882287418": "Jak zarobić wypłatę?", "-2017825013": "Rozumiem", - "-725670935": "Take profit and stop loss are unavailable while deal cancellation is enabled.", - "-1331298683": "Take profit can’t be adjusted for ongoing accumulator contracts.", - "-99964540": "When your profit reaches or exceeds the set amount, your trade will be closed automatically.", + "-725670935": "Opcje Uzyskaj zysk i Stop stratom nie są dostępne, gdy anulowanie transakcji jest aktywne.", + "-1331298683": "Take profit nie może być dostosowany do bieżących umów Accumulator.", + "-99964540": "Gdy twój zysk osiągnie lub przekroczy ustaloną kwotę, transakcja zostanie zamknięta automatycznie.", "-1052279158": "Twoja <0>wypłata to suma początkowej stawki i zysku.", "-274058583": "<0>Take profit to dodatkowa funkcja, która pozwala zarządzać ryzykiem poprzez automatyczne zamykanie transakcji, gdy zysk osiągnie docelową kwotę. Ta funkcja jest niedostępna w przypadku trwających umów akumulatorów.", "-1819891401": "Mogą Państwo zamknąć transakcję w dowolnym momencie. Proszę jednak pamiętać o <0>ryzyku poślizgu.", @@ -4132,7 +4132,7 @@ "-1769852749": "ND", "-726626679": "Potencjalny zysk/strata:", "-1511825574": "Zysk/strata:", - "-499175967": "Strike Price", + "-499175967": "Cena uderzeniowa", "-2082644096": "Obecna stawka", "-706219815": "Cena orientacyjna", "-1669418686": "AUD/CAD", diff --git a/packages/translations/src/translations/pt.json b/packages/translations/src/translations/pt.json index 79326dc87f8c..ae79d93f66cd 100644 --- a/packages/translations/src/translations/pt.json +++ b/packages/translations/src/translations/pt.json @@ -11,7 +11,7 @@ "7100308": "A hora deve situar-se entre 0 e 23.", "9488203": "A Deriv Bot é um criador de estratégias baseado na Web para negociar \"Digital Options\". É uma plataforma onde pode construir o seu próprio bot de negociação utilizando \"blocos\" de arrastar e soltar.", "9757544": "Por favor, submeta o seu comprovativo de morada", - "11533428": "Trade bigger positions with less capital on a wide range of global markets. <0>Learn more", + "11533428": "Negoceie posições maiores com menos capital numa vasta gama de mercados globais. <0>Aprenda mais", "11539750": "definir {{ variable }} para a matriz do Índice de Força Relativa {{ dummy }}", "11706633": "Limite de perdas (Loss threshold): O bot irá parar de negociar se a sua perda total exceder este montante.", "11872052": "Sim, volto mais tarde", @@ -388,7 +388,7 @@ "419496000": "O seu contrato é fechado automaticamente quando o seu lucro é superior ou igual a este montante. Este bloco só pode ser utilizado com o tipo de negociação \"Multipliers\".", "420072489": "Frequência de negociação de CFDs", "422055502": "De", - "423682863": "When your loss reaches or exceeds the set amount, your trade will be closed automatically.", + "423682863": "Quando as suas perdas atingirem ou excederem este montante definido, a sua negociação será encerrada automaticamente.", "424101652": "Guias de estratégias rápidas >", "424272085": "Levamos a sério o seu bem-estar financeiro e queremos garantir que está plenamente consciente dos riscos antes de negociar.<0/><0/>", "424897068": "Compreende que pode potencialmente perder 100% do dinheiro que usa para negociar?", @@ -491,7 +491,7 @@ "532724086": "Contrato de trabalho", "533403953": "A sua conta <0>{{platform}} {{type}} {{from_account}} irá permanecer acessível.", "535041346": "Entrada total máxima por dia", - "536277802": "TP & SL history", + "536277802": "História da TP e da SL", "537788407": "Outra Plataforma de CFDs", "538017420": "0.5 pips", "538042340": "Princípio 2: O montante da entrada só aumenta quando uma negociação com perdas é seguida de uma negociação bem sucedida", @@ -2709,7 +2709,7 @@ "-145462920": "Deriv cTrader", "-982095728": "Criar", "-1790089996": "NOVO!", - "-1473281803": "Predict the market, profit if you’re right, risk only what you put in. <0>Learn more", + "-1473281803": "Preveja o mercado, lucre se estiver certo, arrisque apenas o que investiu. <0>Aprenda mais", "-2134770229": "Total de ativos nas suas contas demo na Deriv Apps e Deriv MT5 de CFDs.", "-1277942366": "Total de ativos", "-1255879419": "Trader's Hub", @@ -3690,7 +3690,7 @@ "-2069438609": "Nenhum resultado encontrado", "-97673874": "Não existem negociações fechadas", "-1727419550": "As suas negociações já fechadas serão apresentadas aqui.", - "-225500551": "Entry & exit details", + "-225500551": "Detalhes de entrada e saída", "-993480898": "Accumulators", "-123659792": "Vanillas", "-1226595254": "Turbos", @@ -3702,12 +3702,12 @@ "-232254547": "Personalizado", "-1251526905": "Últimos 7 dias", "-1539223392": "Últimos 90 dias", - "-1913695340": "Order Details", - "-1882287418": "How do I earn a payout?", + "-1913695340": "Detalhes da encomenda", + "-1882287418": "Como é que recebo um pagamento?", "-2017825013": "Entendi", - "-725670935": "Take profit and stop loss are unavailable while deal cancellation is enabled.", - "-1331298683": "Take profit can’t be adjusted for ongoing accumulator contracts.", - "-99964540": "When your profit reaches or exceeds the set amount, your trade will be closed automatically.", + "-725670935": "O take profit e o stop loss não estão disponíveis enquanto o cancelamento do negócio estiver ativado.", + "-1331298683": "O \"take profit\" não pode ser ajustado para contratos de accumulator em andamento.", + "-99964540": "Quando o seu lucro atingir ou exceder este montante definido, a sua transação será fechada automaticamente.", "-1052279158": "O <0>pagamento<0> é a soma da entrada inicial e do lucro.", "-274058583": "<0>Take profit é uma funcionalidade adicional que lhe permite gerir o seu risco ao fechar automaticamente a negociação quando o seu lucro atinge o montante alvo. Esta funcionalidade não está disponível para contratos \"accumulator\" em curso.", "-1819891401": "Pode fechar a sua negociação em qualquer altura. No entanto, esteja ciente do <0>risco de derrapagem.", @@ -4132,7 +4132,7 @@ "-1769852749": "N/A", "-726626679": "Lucros/perdas possíveis:", "-1511825574": "Lucro/perda:", - "-499175967": "Strike Price", + "-499175967": "Preços de Exercício", "-2082644096": "Entrada atual", "-706219815": "Preço indicativo", "-1669418686": "AUD/CAD", diff --git a/packages/translations/src/translations/ru.json b/packages/translations/src/translations/ru.json index 5afdc1f90244..00e0be1bd7b0 100644 --- a/packages/translations/src/translations/ru.json +++ b/packages/translations/src/translations/ru.json @@ -2709,7 +2709,7 @@ "-145462920": "Deriv cTrader", "-982095728": "Открыть", "-1790089996": "НОВИНКА!", - "-1473281803": "Predict the market, profit if you’re right, risk only what you put in. <0>Learn more", + "-1473281803": "Предсказать рынок, получить прибыль, если вы правы, рисковать только тем, что вы вложили. <0>Узнать больше", "-2134770229": "Общая сумма активов на вашем демо-счете Deriv Apps и Deriv MT5 CFD.", "-1277942366": "Всего активов", "-1255879419": "Trader's Hub", @@ -3705,9 +3705,9 @@ "-1913695340": "Детали ордера", "-1882287418": "Как получить выплату?", "-2017825013": "Понятно", - "-725670935": "Take profit and stop loss are unavailable while deal cancellation is enabled.", - "-1331298683": "Take profit can’t be adjusted for ongoing accumulator contracts.", - "-99964540": "When your profit reaches or exceeds the set amount, your trade will be closed automatically.", + "-725670935": "Тейк профит и стоп лосс недоступны, пока активна отмена сделки.", + "-1331298683": "Нельзя изменить тейк профит в текущих контрактах Accumulator.", + "-99964540": "Когда ваша прибыль достигнет или превысит установленную сумму, ваша сделка будет автоматически закрыта.", "-1052279158": "Ваша <0>выплата – это сумма первоначальной ставки и прибыли.", "-274058583": "<0>Тейк профит — это дополнительная функция управления риском. Она автоматически закрывает контракт, когда прибыль достигает определенной суммы. Функция недоступна для действующих контрактов Accumulator.", "-1819891401": "Вы можете закрыть свою сделку в любое время. Однако помните о <0>риске проскальзывания.", diff --git a/packages/translations/src/translations/si.json b/packages/translations/src/translations/si.json index fa2f79ec0d8e..bf40123c81ea 100644 --- a/packages/translations/src/translations/si.json +++ b/packages/translations/src/translations/si.json @@ -11,7 +11,7 @@ "7100308": "පැය 0 ත් 23 ත් අතර විය යුතුය.", "9488203": "Deriv බොට් යනු ඩිජිටල් විකල්ප ගනුදෙනු කිරීම සඳහා වන​ වෙබ් පාදක උපාය මාර්ග සාදන්නෙකි. එය ඔබට drag සහ​ drop 'කොටස්' භාවිතයෙන් ඔබේම ස්වයංක්‍රීය ගනුදෙනු බොට් එකක් ගොඩනගා ගත හැකි වේදිකාවකි.", "9757544": "කරුණාකර ඔබේ ලිපිනය පිළිබඳ සාක්ෂි ඉදිරිපත් කරන්න", - "11533428": "Trade bigger positions with less capital on a wide range of global markets. <0>Learn more", + "11533428": "පුළුල් පරාසයක ගෝලීය වෙළඳපොලවල අඩු ප්රාග්ධනයක් සමඟ විශාල තනතුරු වෙළඳාම් කරන්න. <0>වැඩි විස්තර දැනගන්න", "11539750": "Relative Strength Index Array {{ dummy }} {{ variable }} ලෙස සකසන්න", "11706633": "අලාභ සීමාව: ඔබේ සම්පූර්ණ අලාභය මෙම ප්‍රමාණය ඉක්මවා ගියහොත් බොට් විසින් ගනුදෙනුව නවත්වනු ඇත.", "11872052": "ඔව්, මම පසුව නැවත එමි", @@ -71,7 +71,7 @@ "76916358": "ඔබ මුදල් ආපසු ගැනීමේ සීමාවට පැමිණ ඇත.<0/>දිගටම මුදල් ආපසු ගැනීම සඳහා සීමාව ඉවත් කිරීමට ඔබේ අනන්‍යතාවය සහ ලිපිනය පිළිබඳ සාක්ෂි උඩුගත කරන්න.", "76925355": "ඔබේ බොට්ගේ කාර්ය සාධනය පරීක්ෂා කරන්න", "77982950": "Vanilla විකල්ප ඔබට \"Call\" හෝ \"Put\" මිල දී ගැනීමෙන් පාදක වත්කමේ උඩුකුරු (bullish) හෝ යටිකුරු (bearish) දිශාවක් පුරෝකථනය කිරීමට ඉඩ සලසයි.", - "81009535": "Potential profit/loss", + "81009535": "විභව ලාභය/අලාභය", "81091424": "උත්ශ්‍රේණි කිරීම සම්පූර්ණ කිරීමට, කරුණාකර ගිණුමෙන් ඉවත් වී තවත් ගිණුම් එක් කිරීමට සහ ඔබේ Wallet සමඟ ගනුදෙනු කිරීමට නැවත පුරනය වන්න.", "81450871": "අපට එම පිටුව සොයාගත නොහැක", "82839270": "ඔබේ විදේශ ගමන් බලපත්‍ර​යේ ඔබේ ඡායාරූපය අඩංගු පිටුව උඩුගත කරන්න.", @@ -388,7 +388,7 @@ "419496000": "ඔබේ ලාභය මෙම මුදලට වඩා වැඩි හෝ සමාන වන විට ඔබේ ගිවිසුම​ ස්වයංක්‍රීය​ව වැසී ඇත. මෙම කොටස භාවිත කළ හැක්කේ multipliers ගනුදෙනු වර්ගය සමඟ පමණි.", "420072489": "CFD ගනුදෙනු සංඛ්‍යාතය", "422055502": "සිට", - "423682863": "When your loss reaches or exceeds the set amount, your trade will be closed automatically.", + "423682863": "ඔබේ පාඩුව නියමිත ප්රමාණය ළඟා වූ විට හෝ ඉක්මවා ගිය විට, ඔබේ වෙළඳාම ස්වයංක්රීයව වසා දමනු ඇත.", "424101652": "ඉක්මන් උපාය මාර්ගෝපදේශ >", "424272085": "අපි ඔබේ මූල්‍ය යහපැවැත්ම බැරෑරුම් ලෙස සලකන අතර ගනුදෙනුවට පෙර අවදානම් පිළිබඳව ඔබ සම්පූර්ණයෙන් දැනුවත් වී ඇති බව සහතික කර ගැනීමට අවශ්‍ය වේ.<0/><0/>", "424897068": "ඔබ ගනුදෙනු කිරීමට භාවිත කරන මුදලින් 100%ක් ඔබට අහිමි විය හැකි බව ඔබට වැටහෙනවා ද?", @@ -491,7 +491,7 @@ "532724086": "රැකියා ගිවිසුම", "533403953": "ඔබේ පවතින <0>{{platform}} {{type}} {{from_account}} ගිණුම(ම්) ප්‍රවේශ විය හැකි ලෙස පවතිනු ඇත.", "535041346": "දිනකට උපරිම මුළු කොටස", - "536277802": "TP & SL history", + "536277802": "ටීපී සහ එස්එල් ඉතිහාසය", "537788407": "වෙනත් CFD වේදිකා", "538017420": "ලක්ෂ්‍යයේ ප්‍රතිශත (pips) 0.5", "538042340": "මූලධර්මය 2: අලාභ ලබන ගනුදෙනුවකට පසු සාර්ථක ගනුදෙනුවක් සිදු වුවහොත් පමණක් කොටස් වැඩි වේ", @@ -2709,7 +2709,7 @@ "-145462920": "Deriv cTrader", "-982095728": "ලබා ගන්න", "-1790089996": "අලුත්!", - "-1473281803": "Predict the market, profit if you’re right, risk only what you put in. <0>Learn more", + "-1473281803": "කාලය අනාගත කරන්න, නිසා ඔබ සාධාර කිරීමේදී උපයන්න, ඔබ ඇතුල් කොටසක් වෙනස් දක්වනවිට වරක් කරන්න. <0>තවත්", "-2134770229": "ඔබේ Deriv යෙදුම් සහ Deriv MT5 CFD ආදර්ශන​ ගිණුමේ ඇති මුළු වත්කමයි.", "-1277942366": "මුළු වත්කම්", "-1255879419": "Trader's Hub", @@ -3690,7 +3690,7 @@ "-2069438609": "ගැළපීම් හමු නොවුණි", "-97673874": "වසා දැමූ ගනුදෙනු නැත", "-1727419550": "ඔබේ සංවෘත ගනුදෙනු මෙහි පෙන්වනු ඇත.", - "-225500551": "Entry & exit details", + "-225500551": "ඇතුල් වීමේ සහ පිටවීමේ විස්තර", "-993480898": "Accumulators", "-123659792": "Vanillas", "-1226595254": "Turbos", @@ -3702,12 +3702,12 @@ "-232254547": "අභිරුචිය", "-1251526905": "අවසන් දින 7", "-1539223392": "අවසන් දින 90", - "-1913695340": "Order Details", - "-1882287418": "How do I earn a payout?", + "-1913695340": "ඇණවුම් විස්තර", + "-1882287418": "මම ගෙවීමක් උපයා ගන්නේ කෙසේද?", "-2017825013": "තේරුම් ගත්තා", - "-725670935": "Take profit and stop loss are unavailable while deal cancellation is enabled.", - "-1331298683": "Take profit can’t be adjusted for ongoing accumulator contracts.", - "-99964540": "When your profit reaches or exceeds the set amount, your trade will be closed automatically.", + "-725670935": "ගනුදෙනු අවලංගු කිරීම සක්‍රියව පවතින අතරතුර take profit සහ stop loss ලබා ගත නොහැක.", + "-1331298683": "පවතින Accumulator ගිවිසුම් සඳහා Take Profit ගැළපිය නොහැක.", + "-99964540": "ඔබේ ලාභය මෙම ප්‍රමාණයට ළඟා වූ විට හෝ එය ඉක්මවා ගිය විට, ඔබේ ගනුදෙනුව ස්වයංක්‍රීයව වසා දමනු ඇත.", "-1052279158": "ඔබේ <0>ගෙවීම ඔබේ ආරම්භක කොටස්වල හා ලාභයේ එකතුවයි.", "-274058583": "<0>Take profit යනු ඔබේ ලාභය ඉලක්කගත මුදලට ළඟා වූ විට ගනුදෙනුව ස්වයංක්‍රීයව වසා දැමීමෙන් ඔබේ අවදානම කළමනාකරණය කිරීමට ඔබට ඉඩ සලසන අතිරේක විශේෂාංගයකි. පවතින Accumulator ගිවිසුම් සඳහා මෙම විශේෂාංගය ලබා ගත නොහැක.", "-1819891401": "ඔබට ඕනෑම වේලාවක ඔබේ ගනුදෙනුව වසා දැමිය හැක. කෙසේ වෙතත්, <0>ලිස්සුම් අවදානම පිළිබඳව දැනුවත් වන්න.", @@ -4132,7 +4132,7 @@ "-1769852749": "අදාළ නොවේ", "-726626679": "විභව ලාභය/අලාභය:", "-1511825574": "ලාභය/අලාභය:", - "-499175967": "Strike Price", + "-499175967": "වර්ජන මිල", "-2082644096": "වත්මන් කොටස්", "-706219815": "ප්‍රතීයමාන මිල", "-1669418686": "AUD/CAD", diff --git a/packages/translations/src/translations/sw.json b/packages/translations/src/translations/sw.json index 4b31d9fed5c9..53333d72f83a 100644 --- a/packages/translations/src/translations/sw.json +++ b/packages/translations/src/translations/sw.json @@ -11,7 +11,7 @@ "7100308": "Saa lazima iwe kati ya 0 na 23.", "9488203": "Deriv Bot ni mjenzi wa mkakati wa wavuti wa biashara ya chaguzi digitali. Ni jukwaa ambalo unaweza kujenga bot yako mwenyewe otomatiki ya biashara ukitumia 'vizuzi' vya drag-na-drop.", "9757544": "Tafadhali wasilisha uthibisho wako wa anwani", - "11533428": "Trade bigger positions with less capital on a wide range of global markets. <0>Learn more", + "11533428": "Fanya biashara ya nafasi kubwa kwa mtaji mdogo katika masoko ya ulimwengu kote. <0>Jifunze zaidi", "11539750": "weka {{ variable }} kwa Shirika la Kiashiria cha Nguvu wa Relay {{ dummy }}", "11706633": "Kizingiti cha upotezaji: Bot itaacha kufanya biashara ikiwa jumla ya hasara zako zinazidi kiasi hiki.", "11872052": "Ndio, nitarudi baadaye", @@ -71,7 +71,7 @@ "76916358": "Umefikia kikomo cha utoaji pesa. <0/> Tafadhali pakia uthibitisho wako wa utambulisho na anwani ili kuondoa kikomo ili kuendelea na utoaji wako pesa.", "76925355": "Angalia utendaji wa bot yako", "77982950": "Chaguzi Vanilla hukuruhusu kutabiri mwelekeo wa juu (bullish) au chini (bearish) wa mali ya msingi kwa kununua “Call” au “Put”.", - "81009535": "Potential profit/loss", + "81009535": "Faida/hasara inayowezekana", "81091424": "Ili kukamilisha uboreshaji, tafadhali toka na uingie tena ili kuongeza akaunti zaidi na kufanya miamala kwa Wallets zako.", "81450871": "Hatukuweza kupata ukurasa huo", "82839270": "Pakia ukurasa wa pasipoti yako ambao una picha yako.", @@ -388,7 +388,7 @@ "419496000": "Mkataba wako umefungwa moja kwa moja wakati faida yako ni zaidi au sawa na kiasi hiki. Kizuizi hiki kinaweza kutumika tu na aina ya biashara ya viongezeka.", "420072489": "Mzunguko wa biashara ya CFD", "422055502": "Kutoka", - "423682863": "When your loss reaches or exceeds the set amount, your trade will be closed automatically.", + "423682863": "Wakati hasara yako inapofikia au kuzidi kiasi kilichowekwa, biashara yako itafungwa otomatiki.", "424101652": "Miongozo ya mkakati wa haraka >", "424272085": "Tunachukulia kwa uzito mkubwa ustawi wako wa kifedha na tunataka kuhakikisha kuwa unafahamu kikamilifu hatari kabla ya kufanya biashara. <0/> <0/>", "424897068": "Je, unaelewa kuwa unaweza kupoteza 100% ya pesa unazotumia kufanya biashara?", @@ -491,7 +491,7 @@ "532724086": "Mkataba wa ajira", "533403953": "Akaunti zako zilizopo <0>{{platform}} {{type}} {{from_account}} zitaendelea kupatikana.", "535041346": "Max. jumla ya hisa kwa siku", - "536277802": "TP & SL history", + "536277802": "Historia ya TP & SL", "537788407": "Jukwaa lingine la CFDs", "538017420": "0.5 pips", "538042340": "Kanuni ya 2: Dau huongezeka tu wakati biashara iliyopata hasara inafuatiwa na biashara iliyofanikiwa", @@ -1022,7 +1022,7 @@ "1057216772": "maandishi {{ input_text }} ni tupu", "1057519018": "4. Ikiwa biashara inaisha kwa faida, dau la biashara ifuatayo litarejeshwa kuwa kiasi cha dau la awali la USD 1.", "1057749183": "Uthibitishaji wa hatua mbili (2FA)", - "1057765448": "Stop out level", + "1057765448": "Kiwango cha Stop Out", "1057904606": "Dhana ya Mkakati wa D'Alembert inasemekana kuwa sawa na Mkakati wa Martingale ambapo utaongeza ukubwa wa mkataba wako baada ya hasara. Ukiwa na Mkakati wa D'Alembert, utapunguza pia ukubwa wa mkataba wako baada ya biashara iliyofanikiwa.", "1058804653": "Mwisho wa matumizi", "1058905535": "Mafunzo", @@ -1798,7 +1798,7 @@ "1831847842": "Ninathibitisha kuwa jina na tarehe ya kuzaliwa hapo juu vinafanana na hati yangu ya kitambulisho nilichochagua (angalia hapa chini)", "1833499833": "Uthibitisho wa kupakia hati za utambulisho haukufaulu", "1836767074": "Tafuta jina la wakala wa malipo", - "1837533589": "Stop Loss", + "1837533589": "Kuzuia hasara", "1837762008": "Tafadhali wasilisha uthibitisho wako wa utambulisho na uthibitisho wa anwani ili kuthibitisha akaunti yako katika mipangilio ya akaunti yako ili kufikia keshia.", "1839021527": "Tafadhali ingiza nambari halali ya akaunti. Mfano: CR123456789", "1840721160": "Deriv MT5 mahitaji ya nenosiri la hivi karibuni", @@ -2709,7 +2709,7 @@ "-145462920": "Deriv cTrader", "-982095728": "Pata", "-1790089996": "MPYA!", - "-1473281803": "Predict the market, profit if you’re right, risk only what you put in. <0>Learn more", + "-1473281803": "Bashiri soko, pata faida ikiwa una haki, chukua hatari pekee ya unachoweka. <0>Jifunze zaidi", "-2134770229": "Jumla ya mali katika Deriv Apps na Deriv MT5 CFDs demo akaunti.", "-1277942366": "Jumla ya mali", "-1255879419": "Trader's Hub", @@ -3690,7 +3690,7 @@ "-2069438609": "Hakuna kinachofanania kilichopatikana", "-97673874": "Hakuna biashara zilizofungwa", "-1727419550": "Biashara zako zilizofungwa zitaonyeshwa hapa.", - "-225500551": "Entry & exit details", + "-225500551": "Maelezo ya kuingia na kutoka", "-993480898": "Accumulators", "-123659792": "Vanilla", "-1226595254": "Turbo", @@ -3702,12 +3702,12 @@ "-232254547": "desturi", "-1251526905": "Siku 7 zilizopita", "-1539223392": "Siku 90 zilizopita", - "-1913695340": "Order Details", - "-1882287418": "How do I earn a payout?", + "-1913695340": "Maelezo ya Agizo", + "-1882287418": "Ninawezaje kupata malipo?", "-2017825013": "Nilipata", - "-725670935": "Take profit and stop loss are unavailable while deal cancellation is enabled.", - "-1331298683": "Take profit can’t be adjusted for ongoing accumulator contracts.", - "-99964540": "When your profit reaches or exceeds the set amount, your trade will be closed automatically.", + "-725670935": "Kuchukua faida na kuzuia hasara hakupatikani wakati kughairi mpango kunafanya kazi.", + "-1331298683": "Kuchukua faida hakuwezi kurekebishwa kwa mikataba inayoendelea ya accumulator.", + "-99964540": "Wakati faida yako inapofikia au kuzidi kiasi kilichowekwa, biashara yako itafungwa otomatiki.", "-1052279158": "<0>Malipo yako ni jumla ya dau lako la awali na faida.", "-274058583": "<0>Chukua fai da ni huduma ya ziada ambayo hukuruhusu kudhibiti hatari yako kwa kufunga biashara moja kwa moja wakati faida yako inafikia kiasi kilicholengwa. Kipengele hiki haipatikani kwa mikataba inayoendelea ya ukusanyaji.", "-1819891401": "Unaweza kufunga biashara yako wakati wowote. Walakini, fahamu <0>hatari ya kuteleza.", @@ -4132,7 +4132,7 @@ "-1769852749": "N/A", "-726626679": "Faida/hasara inayowezekana:", "-1511825574": "Faida/Hasara:", - "-499175967": "Strike Price", + "-499175967": "Bei za Ushindani", "-2082644096": "Dau la sasa", "-706219815": "Bei ya kiashiria", "-1669418686": "AUD/CAD", diff --git a/packages/translations/src/translations/tr.json b/packages/translations/src/translations/tr.json index 1ce2b399bd01..88fecf5e8445 100644 --- a/packages/translations/src/translations/tr.json +++ b/packages/translations/src/translations/tr.json @@ -11,7 +11,7 @@ "7100308": "Saat 0 ile 23 arasında olmalıdır.", "9488203": "Deriv Bot, dijital opsiyon ticareti için web tabanlı bir strateji oluşturucudur. Sürükle ve bırak 'bloklarını' kullanarak kendi otomatik ticaret botunuzu oluşturabileceğiniz bir platformdur.", "9757544": "Lütfen adres kanıtınızı gönderin", - "11533428": "Trade bigger positions with less capital on a wide range of global markets. <0>Learn more", + "11533428": "Çeşitli küresel piyasalarda daha az sermaye ile daha büyük pozisyonlar alın. <0>Daha fazla bilgi edinin", "11539750": "{{ variable }} ögesini Göreli Kuvvet Endeks Dizisi {{ dummy }} olarak ayarlayın", "11706633": "Kayıp eşiği: Toplam kaybınız bu miktarı aşarsa bot ticareti durduracaktır.", "11872052": "Evet, daha sonra tekrar geleceğim", @@ -71,7 +71,7 @@ "76916358": "Para çekme sınırına ulaştınız. <0/>Para çekme işleminize devam etmek ve sınırı yükseltmek için lütfen kimlik kanıtınızı ve adresinizi yükleyin.", "76925355": "Botunuzun performansını kontrol edin", "77982950": "Vanillaopsiyonlar, bir \"Call\" veya \"Put\" satın alarak dayanak varlığın yukarı (bullish) veya aşağı (bearish) yönünü tahmin etmenizi sağlar.", - "81009535": "Potential profit/loss", + "81009535": "Potansiyel kar/zarar", "81091424": "Yükseltmeyi tamamlamak için lütfen oturumu kapatın ve daha fazla hesap eklemek ve sizin Wallets ile işlem yapmak için tekrar oturum açın.", "81450871": "Bu sayfayı bulamadık", "82839270": "Pasaportunuzun fotoğrafınızı içeren sayfasını yükleyin.", @@ -388,7 +388,7 @@ "419496000": "Kârınız bu tutardan fazla veya bu tutara eşit olduğunda sözleşmeniz otomatik olarak kapatılır. Bu blok yalnızca multipliers işlem türü ile kullanılabilir.", "420072489": "CFD işlem sıklığı", "422055502": "Den", - "423682863": "When your loss reaches or exceeds the set amount, your trade will be closed automatically.", + "423682863": "Zararınız belirlenen tutara ulaştığında veya bu tutarı aştığında, işleminiz otomatik olarak kapatılacaktır.", "424101652": "Hızlı strateji kılavuzları >", "424272085": "Finansal refahınızı ciddiye alıyoruz ve işlem yapmadan önce risklerin tam olarak farkında olmanızı sağlamak istiyoruz.<0/><0/>", "424897068": "Ticaret yapmak için kullandığınız paranın potansiyel olarak %100'ünü kaybedebileceğinizi anlıyor musunuz?", @@ -491,7 +491,7 @@ "532724086": "İş sözleşmesi", "533403953": "Mevcut <0>{{platform}} {{type}} {{from_account}} hesap(lar)ınız erişilebilir olmaya devam edecek.", "535041346": "Günlük maksimum toplam bahis", - "536277802": "TP & SL history", + "536277802": "TP & SL geçmişi", "537788407": "Diğer CFD Platformu", "538017420": "0.5 pips", "538042340": "İlke 2: Bahis miktarı yalnızca bir kayıp işlemini başarılı bir işlem izlediğinde artar", @@ -1798,7 +1798,7 @@ "1831847842": "Yukarıdaki isim ve doğum tarihinin seçtiğim kimlik belgesine uyduğunu onaylıyorum (aşağıya bakınız)", "1833499833": "Kimlik kanıtı belgelerinin yüklenmesi başarısız oldu", "1836767074": "Ödeme aracısı adını ara", - "1837533589": "Stop Loss", + "1837533589": "Zarar Durdur", "1837762008": "Kasiyere erişmek için lütfen hesap ayarlarınızda hesabınızı doğrulamak üzere kimlik kanıtınızı ve adres kanıtınızı sunun.", "1839021527": "Lütfen geçerli bir hesap numarası girin. Örnek: CR123456789", "1840721160": "Deriv MT5 en son şifre gereksinimleri", @@ -2709,7 +2709,7 @@ "-145462920": "Deriv cTrader", "-982095728": "Edin", "-1790089996": "YENİ!", - "-1473281803": "Predict the market, profit if you’re right, risk only what you put in. <0>Learn more", + "-1473281803": "Piyasayı tahmin et, doğruysan kar et, riske sadece koyduğunuzu katıl. <0>Daha fazla bilgi edinin", "-2134770229": "Deriv Apps ve Deriv MT5 CFD demo hesabınızdaki toplam varlıklar.", "-1277942366": "Toplam varlıklar", "-1255879419": "Trader's Hub", @@ -3690,7 +3690,7 @@ "-2069438609": "Eşleşme bulunamadı", "-97673874": "Kapanmamış işlemler", "-1727419550": "Kapalı işlemleriniz burada gösterilecektir.", - "-225500551": "Entry & exit details", + "-225500551": "Giriş ve çıkış detayları", "-993480898": "Accumulators", "-123659792": "Vanillas", "-1226595254": "Turbos", @@ -3702,12 +3702,12 @@ "-232254547": "Özel", "-1251526905": "Son 7 Gün", "-1539223392": "Son 90 Gün", - "-1913695340": "Order Details", - "-1882287418": "How do I earn a payout?", + "-1913695340": "Sipariş Detayları", + "-1882287418": "Nasıl ödeme alabilirim?", "-2017825013": "Anlaşıldı", - "-725670935": "Take profit and stop loss are unavailable while deal cancellation is enabled.", - "-1331298683": "Take profit can’t be adjusted for ongoing accumulator contracts.", - "-99964540": "When your profit reaches or exceeds the set amount, your trade will be closed automatically.", + "-725670935": "Anlaşma iptali etkinken kar al ve zarar durdur seçeneği kullanılamaz.", + "-1331298683": "Devam eden accumulator sözleşmeleri için Kar Al ayarı yapılamaz.", + "-99964540": "Kârınız belirlenen miktara ulaştığında veya aştığında, işleminiz otomatik olarak kapatılacaktır.", "-1052279158": "<0>Ödemeniz başlangıçtaki bahisinizin ve kârınızın toplamıdır.", "-274058583": "<0>Kar Al, karınız hedef tutara ulaştığında işlemi otomatik olarak kapatarak riskinizi yönetmenizi sağlayan ek bir özelliktir. Bu özellik, devam eden Accumulator sözleşmeleri için kullanılamaz.", "-1819891401": "İşleminizi istediğiniz zaman kapatabilirsiniz. Ancak, <0>kayma riskinin farkında olun.", @@ -4132,7 +4132,7 @@ "-1769852749": "N/A", "-726626679": "Potansiyel kar/zarar:", "-1511825574": "Kar/Zarar:", - "-499175967": "Strike Price", + "-499175967": "Strike Fiyatları", "-2082644096": "Mevcut bahis", "-706219815": "Gösterge fiyatı", "-1669418686": "AUD/CAD", diff --git a/packages/translations/src/translations/vi.json b/packages/translations/src/translations/vi.json index 8767571c9c8d..aab17cc9a413 100644 --- a/packages/translations/src/translations/vi.json +++ b/packages/translations/src/translations/vi.json @@ -11,7 +11,7 @@ "7100308": "Số giờ phải từ 0 đến 23.", "9488203": "Deriv Bot là một nền tảng xây dựng chiến lược trên trang web cho các giao dịch quyền chọn kỹ thuật số. Đây là nền tảng mà bạn có thể xây dựng bot giao dịch cho riêng mình bằng cách sử dụng các khối kéo và thả.", "9757544": "Vui lòng nộp giấy tờ xác thực địa chỉ của bạn", - "11533428": "Trade bigger positions with less capital on a wide range of global markets. <0>Learn more", + "11533428": "Giao dịch các vị thế lớn hơn với ít vốn hơn trên nhiều thị trường toàn cầu. <0>Hiểu thêm", "11539750": "đặt {{ variable }} thành Mảng Chỉ số sức mạnh tương đối (Relative Strength Index Array) {{ dummy }}", "11706633": "Ngưỡng lỗ: Bot sẽ ngừng giao dịch nếu tổng khoản lỗ của bạn vượt quá số tiền này.", "11872052": "Được, tôi sẽ quay lại sau", @@ -388,7 +388,7 @@ "419496000": "Hợp đồng của bạn sẽ tự động đóng khi lợi nhuận kiếm được lớn hơn hoặc bằng số tiền này. Khung này chỉ có thể sử dụng với giao dịch multiplier.", "420072489": "Tần suất giao dịch CFD", "422055502": "Từ", - "423682863": "When your loss reaches or exceeds the set amount, your trade will be closed automatically.", + "423682863": "Khi mức lỗ của bạn đạt hoặc vượt quá số tiền được đặt, giao dịch của bạn sẽ tự động đóng.", "424101652": "Hướng dẫn chiến lược nhanh >", "424272085": "Chúng tôi luôn chú trọng bảo đảm tình trạng sức khỏe tài chính của bạn và muốn bạn hiểu rõ về các rủi ro trước khi trading.<0/><0/>", "424897068": "Bạn có biết bạn có khả năng mất 100% số tiền bạn sử dụng để giao dịch?", @@ -491,7 +491,7 @@ "532724086": "Hợp đồng lao động", "533403953": "(Các) tài khoản <0>{{platform}} {{type}} {{from_account}} hiện tại của bạn sẽ vẫn có thể truy cập được.", "535041346": "Tổng tiền cược tối đa mỗi ngày", - "536277802": "TP & SL history", + "536277802": "Lịch sử TP & SL", "537788407": "Các nền tảng CFD khác", "538017420": "0,5 pip", "538042340": "Nguyên tắc 2: Cổ phần chỉ tăng khi giao dịch thua lỗ được theo sau bởi giao dịch thành công", @@ -1798,7 +1798,7 @@ "1831847842": "Tôi xác nhận rằng tên và ngày sinh ở trên khớp với giấy tờ tùy thân đã chọn của tôi (xem bên dưới)", "1833499833": "Giấy tờ tùy thân tải lên không thành công", "1836767074": "Tìm tên đại lý thanh toán", - "1837533589": "Stop Loss", + "1837533589": "Cắt Lỗ", "1837762008": "Để truy cập vào cổng thanh toán, vui lòng gửi giấy tờ xác thực danh tính và địa chỉ để xác minh tài khoản của bạn trong phần cài đặt tài khoản.", "1839021527": "Vui lòng nhập số tài khoản hợp lệ. Ví dụ: CR123456789", "1840721160": "Yêu cầu mật khẩu mới nhất của Deriv MT5", @@ -2709,7 +2709,7 @@ "-145462920": "Deriv cTrader", "-982095728": "Tạo", "-1790089996": "MỚI!", - "-1473281803": "Predict the market, profit if you’re right, risk only what you put in. <0>Learn more", + "-1473281803": "Dự đoán thị trường, lợi nhuận nếu bạn đúng, chỉ mạo hiểm những gì bạn đưa vào. <0>Hiểu thêm", "-2134770229": "Tổng tài sản trong tài khoản Deriv Apps và Deriv MT5 CFD thử nghiệm của bạn.", "-1277942366": "Tổng tài sản", "-1255879419": "Trader's Hub", @@ -3690,7 +3690,7 @@ "-2069438609": "Không tìm thấy kết quả nào", "-97673874": "Không có giao dịch đã đóng", "-1727419550": "Các giao dịch đã đóng của bạn sẽ được hiển thị ở đây.", - "-225500551": "Entry & exit details", + "-225500551": "Chi tiết về nhập cảnh và xuất cảnh", "-993480898": "Accumulators", "-123659792": "Vanillas", "-1226595254": "Turbos", @@ -3702,12 +3702,12 @@ "-232254547": "Tùy chỉnh", "-1251526905": "7 ngày trước", "-1539223392": "90 ngày trước", - "-1913695340": "Order Details", - "-1882287418": "How do I earn a payout?", + "-1913695340": "Chi tiết đặt hàng", + "-1882287418": "Làm thế nào để tôi kiếm được tiền thanh toán?", "-2017825013": "Đã hiểu", - "-725670935": "Take profit and stop loss are unavailable while deal cancellation is enabled.", - "-1331298683": "Take profit can’t be adjusted for ongoing accumulator contracts.", - "-99964540": "When your profit reaches or exceeds the set amount, your trade will be closed automatically.", + "-725670935": "Chốt lời và cắt lỗ không khả dụng khi chức năng hủy giao dịch đang hoạt động.", + "-1331298683": "Lợi nhuận không thể được điều chỉnh cho các hợp đồng accumulator đang diễn ra.", + "-99964540": "Khi lợi nhuận của bạn đạt hoặc vượt quá số tiền được đặt, giao dịch của bạn sẽ tự động đóng.", "-1052279158": "<0>Khoản chi trả là tổng số tiền đầu tư ban đầu và lợi nhuận của bạn.", "-274058583": "<0>Take profit là một tính năng bổ sung cho phép bạn quản lý rủi ro của mình bằng cách tự động đóng giao dịch khi lợi nhuận của bạn đạt đến số tiền mục tiêu. Tính năng này không khả dụng cho các hợp đồng tích lũy đang diễn ra.", "-1819891401": "Bạn có thể đóng giao dịch bất cứ lúc nào. Tuy nhiên, hãy lưu ý về <0>rủi ro trượt giá..", @@ -4132,7 +4132,7 @@ "-1769852749": "Không khả dụng", "-726626679": "Lời/lỗ tiềm năng:", "-1511825574": "Lời/Lỗ:", - "-499175967": "Strike Price", + "-499175967": "Giá thực hiện", "-2082644096": "Mức cược hiện tại", "-706219815": "Giá biểu thị", "-1669418686": "AUD/CAD", From 249894cde8e17620d449fa0638a032154314f5b7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 26 Jun 2024 14:11:09 +0800 Subject: [PATCH 07/17] =?UTF-8?q?translations:=20=F0=9F=93=9A=20sync=20tra?= =?UTF-8?q?nslations=20with=20crowdin=20(#15793)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: DerivFE --- packages/translations/src/translations/ar.json | 2 +- packages/translations/src/translations/bn.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/translations/src/translations/ar.json b/packages/translations/src/translations/ar.json index a83720c2e959..fa4b41529f92 100644 --- a/packages/translations/src/translations/ar.json +++ b/packages/translations/src/translations/ar.json @@ -11,7 +11,7 @@ "7100308": "يجب أن تكون الساعة بين 0 و 23.", "9488203": "Deriv Bot عبارة عن أداة إنشاء إستراتيجية قائمة على الويب لتداول الخيارات الرقمية. إنها منصة يمكنك من خلالها إنشاء روبوت التداول الخاص بك باستخدام «الكتل» بالسحب والإفلات.", "9757544": "يرجى تقديم إثبات العنوان الخاص بك", - "11533428": "Trade bigger positions with less capital on a wide range of global markets. <0>Learn more", + "11533428": "تداول على صفقات أكبر برأس مال أقل في مجموعة واسعة من الأسواق العالمية. <0>اعرف المزيد", "11539750": "قم بتعيين {{ variable }} إلى قيمة مصفوفة مؤشر القوة النسبية (RSI) {{ dummy }}", "11706633": "حد الخسارة: سيتوقف الروبوت عن التداول إذا تجاوز إجمالي خسارتك هذا المبلغ.", "11872052": "نعم، سأعود في وقت لاحق", diff --git a/packages/translations/src/translations/bn.json b/packages/translations/src/translations/bn.json index da74d9717f1e..49cfdad205ed 100644 --- a/packages/translations/src/translations/bn.json +++ b/packages/translations/src/translations/bn.json @@ -3584,7 +3584,7 @@ "-2092058806": "8 থেকে 16 অক্ষর", "-2051033705": "একটি বিশেষ চরিত্র যেমন ( _ @ ? ! / # )", "-1762249687": "একটি ছোট অক্ষর", - "-1123437857": "আপনি আপনার {{platform}} {{product}} অ্যাকাউন্ট যুক্ত করছেন {{company}}, British Virgin\n Islands Financial Services Commission (লাইসেন্স নং. SIBA/L/18/1114) দ্বারা নিয়ন্ত্রিত।", + "-1123437857": "আপনি আপনার {{platform}} {{product}} অ্যাকাউন্ট যুক্ত করছেন {{company}}, British Virgin Islands Financial Services Commission (লাইসেন্স নং. SIBA/L/18/1114) দ্বারা নিয়ন্ত্রিত।", "-535365199": "একটি {{platform_name}} {{account}} অ্যাকাউন্ট যোগ করতে আপনার {{platform}} পাসওয়ার্ড লিখুন।", "-184453418": "আপনার {{platform}} পাসওয়ার্ড লিখুন", "-393388362": "আমরা আপনার নথি পর্যালোচনা করছি। এটি প্রায় 1 থেকে 3 দিন সময় নিতে পারে।", @@ -3620,7 +3620,7 @@ "-1793894323": "বিনিয়োগকারী পাসওয়ার্ড তৈরি বা রিসেট করুন", "-21438174": "Deriv (SVG) LLC (কোম্পানি নং 273 LLC 2020) এর অধীনে আপনার Deriv cTrader অ্যাকাউন্ট যোগ করুন।", "-2026018074": "Deriv (SVG) LLC (কোম্পানি নং 273 LLC 2020) এর অধীনে আপনার Deriv MT5 <0>{{account_type_name}} অ্যাকাউন্ট যোগ করুন।", - "-162320753": "আপনার Deriv MT5 <0>{{account_type_name}} অ্যাকাউন্ট যুক্ত করুন Deriv (BVI) Ltd এর অধীনে, ব্রিটিশ ভার্জিন আইল্যান্ডস ফিনান্সিয়াল সার্ভিসেস কমিশন (লাইসেন্স নং. SIBA/L/18/1114) দ্বারা নিয়ন্ত্রিত।", + "-162320753": "আপনার Deriv MT5 <0>{{account_type_name}} অ্যাকাউন্ট যুক্ত করুন Deriv (BVI) Ltd এর অধীনে, British Virgin Islands Financial Services Commission (লাইসেন্স নং. SIBA/L/18/1114) দ্বারা নিয়ন্ত্রিত।", "-271828350": "Deriv MT5 ফাইন্যান্সিয়াল থেকে আরও কিছু পান", "-2125860351": "আপনার Deriv MT5 CFD অ্যাকাউন্টের জন্য একটি এখতিয়ার চয়ন করুন", "-1460321521": "আপনার {{account_type}} অ্যাকাউন্টের জন্য একটি এখতিয়ার বেছে নিন", From 9765c270fde004539b1ae689a9f1dafb6704a14a Mon Sep 17 00:00:00 2001 From: Habib Deriv <88178645+habib-deriv@users.noreply.github.com> Date: Wed, 26 Jun 2024 17:22:31 +0800 Subject: [PATCH 08/17] [FEQ-2166]/Tablet view - Reports, Dtrader, Tradershub (#15011) * [DTRA] Farhan/DTRA-945/Dtrader's Tablet View (#14346) * feat: tablet view * revert: trade params test cases * chore: remove unused imports * chore: added test case for usedevice * fix: height * fix: accumulators stats * fix: layout * fix: test * refactor: update test * refactor: change mixins names * fix: platform switcher * refactor: remove shared isnewmobile and fix styles in contract page * fix: blocker showing in different page besides dtrader, comments * fix: comments * revert: unneded changes * fix: test failed * fix: breaking designs because of rtl * feat: empty * fix: account switcher * fix: account switcher and add blocker on portrait * chore: update test case * refactor: replace with hook from deriv-com/ui * fix: failing test cases * chore: update deriv-com/ui and remove redundant hook * fix: useonclickoutside * [TRAH] Sergei / TRAH - 2761 / Trader's hub tablet view (#13396) * feat: update to deriv-com/ui * feat: delete landscape blocker * feat: add some mixins * feat: complete with mixins * feat: modify traders hub main page * feat: modify main title * feat: modify asset-summary * feat: modify asset-summary styles * feat: modify listing-container and currency-switcher styles * feat: modify header * feat: get back package-lock.json * fix: add some our library to ignore patterns for jest * chore: empty commit * feat: get back landscape_blocker * feat: better to update it in base.config intead of writing it in both files * feat: update package.json * feat: create hook to hide landscape_blocker * feat: move landscape blocker to the react compnent * feat: add routes to LandscapeBlocker * feat: add mock for deriv-com/ui in globals.js * fix: fix one test * feat: remove jest deriv-com/ui from globals * fix: trying to fix tests again * fix: fix again and again * fix: fix test case again * feat: add isDesktop check for cfds-listing * feat: override some styles * feat: change breakpoints for footer * fix: change package version * feat: update mixins based on Farhan PR * fix: fix lint issue * feat: delete useEffect in App of trader package and style for landscape blocker * feat: modify footer * chore: made decision to delete unreachable code * feat: get changes back for app component in trader package * feat: remove routes.root from disable blocker array * feat: change condition to else * feat: implement review suggestions and fix mixin * feat: rename sccs file * feat: get changes back for trading.scss * feat: implemet review suggestions * [TRAH] Sergei / TRAH-2762, TRAH-2763 / Tablet view for Jurisdiction Modal and Compare CFDs Accounts modal (#14799) * feat: modify regulators compare modal component * feat: add correct mixins for cfd-compare-accounts modal * fix: add resolver for react/jsx-runtime * fix: mock deriv-com/ui useDevice hook * feat: implement review suggestions * Farhan/DTRA-1195/Reports's tablet view (#14772) * chore: reports pages tablet view * style: update width as per figma design * refactor: landscape cloker component * fix: comments * chore: use bitwise to avoid nan value * fix: comments * fix: import * chore: update function * Farhan/Lock Dtrader Tablet View on Landscape Mode (#14781) * chore: lock landscape mode on tablet view * chore: only show tablet view on real tablet * fix: notification * chore: change implementation * fix: change root * refactor: comments * fix: comments * fix: height * fix: rtl language * refactor: remove extra property * fix: positions modal height based on figma * chore: add loader before rotating the screen * fix: failing test * chore: add timeout before hiding loader * style: move styles * chore: another ref for loader timeout cleanup * fix: hide footer for dtrader * DTRA / Kate / FEQ-2212 / Hide footer navigation links popovers (#15176) * fix: add check for desktop * refactor: add custom check for tablet os * refactor: revert changes from endpoint note and server time * refactor: device detection * fix: style and update function for detection tablet os * chore: remove empty space * chore: remove used type * DTRA / Kate / FEQ-2213 + FEQ-2205 / Made popover optional (#15197) * fix: add check for purchase button popover for tablet * fix: make popover optional for header * refactor: add condition for wallets header * [DTRA] Farhan/Dtrader Tablet Subtasks (#15123) * chore: lock landscape mode on tablet view * chore: only show tablet view on real tablet * fix: notification * chore: change implementation * fix: change root * refactor: comments * fix: comments * fix: height * fix: rtl language * refactor: remove extra property * fix: positions modal height based on figma * chore: add loader before rotating the screen * fix: failing test * chore: add timeout before hiding loader * style: move styles * chore: another ref for loader timeout cleanup * fix: hide footer for dtrader * chore: update os detect * fix: failing tests * fix: height issue * fix: android device issue and toolbar widgets * fix: reports height * fix: test failing * fix: position drawer on ios * refactor: remove unused prop * fix: route for contract --------- Co-authored-by: balakrishna-deriv <56330681+balakrishna-deriv@users.noreply.github.com> * chore: update @deriv/deriv-charts to 2.1.16 (#15212) Co-authored-by: balakrishna-deriv * [DTRA] Farhan/Fix test failing (#15216) * chore: lock landscape mode on tablet view * chore: only show tablet view on real tablet * fix: notification * chore: change implementation * fix: change root * refactor: comments * fix: comments * fix: height * fix: rtl language * refactor: remove extra property * fix: positions modal height based on figma * chore: add loader before rotating the screen * fix: failing test * chore: add timeout before hiding loader * style: move styles * chore: another ref for loader timeout cleanup * fix: hide footer for dtrader * chore: update os detect * fix: failing tests * fix: height issue * fix: android device issue and toolbar widgets * fix: reports height * fix: test failing * fix: position drawer on ios * refactor: remove unused prop * fix: route for contract * fix: failing test and ts * fix: miseed ts errors --------- Co-authored-by: balakrishna-deriv <56330681+balakrishna-deriv@users.noreply.github.com> * feat: get changes back and just delete mixin for tablet (#15182) * [FEQ] Sergei / FEQ-2200, FEQ-2201 / Add a real MT5 account, Identity verification, Choose a jurisdiction popup for tablet (#15205) * feat: change styles for mt5 jurisdiction modal * feat: change styles for adding a real mt5 account modal * feat: change more styles * fix: add mock for useDevice hook from deriv-com/ui * [DTRA] Farhan/FEQ-2208/Hide indicators and drawing tools toolbar widgets on tablet (#15224) * chore: lock landscape mode on tablet view * chore: only show tablet view on real tablet * fix: notification * chore: change implementation * fix: change root * refactor: comments * fix: comments * fix: height * fix: rtl language * refactor: remove extra property * fix: positions modal height based on figma * chore: add loader before rotating the screen * fix: failing test * chore: add timeout before hiding loader * style: move styles * chore: another ref for loader timeout cleanup * fix: hide footer for dtrader * chore: update os detect * fix: failing tests * fix: height issue * fix: android device issue and toolbar widgets * fix: reports height * fix: test failing * fix: position drawer on ios * refactor: remove unused prop * fix: route for contract * fix: failing test and ts * fix: miseed ts errors * fix: hide indicators and drawing tools for tablet view * fix: test case * fix: height reports --------- Co-authored-by: balakrishna-deriv <56330681+balakrishna-deriv@users.noreply.github.com> * [DTRA] Farhan/FEQ-2205/Header notification icon and account settings links are not working as expected (#15275) * fix: hide popover on traders hub header * fix: account switcher width * fix: comments * feat: change mixins and add isTablet for datepicker (#15349) * feat: change 2 desktop mixins (#15362) * [DTRA] Farhan/Tablet view subtasks (#15376) * fix: subtasks 2 * fix: failing tests * [DTRA] Farhan/FEQ-2280/tablet subtasks (#15404) * fix: subtasks 2 * fix: failing tests * fix: positions toggle icon * refactor: digit breakpoint * fix: drawer moving when coming back from reports * fix: tablet tooltip * fix: hide download widget for tablet * fix: report open position footer * fix: double sell button * fix: digit container * fix: failing tests * fix: tests --------- Co-authored-by: Farhan Ahmad Nurzi * FEQ-2313 / Kate / Android tablet- Long code message content is showing in smaller size (#15474) * fix: css for link * fix: css * chore: get back line height * refactor: add tablet os check and revert style changes * Fix tablet view issues (#15469) * fix: jest test trader * fix: alignment issues * fix: test cases * fix: contract type dialog height (#15476) * Ahmad/Fix Strike Icon color on firefox (#15481) * chore: strike icon * fix: revert all * fix: tablet issues (#15497) * chore: remove unused hook * [FEX] Sergei / FEQ - 2310, 2311, 2319, 2320, 2344 / Tablet view issues #3 (#15522) * fix: change isDisabledLandscapeBlockerRoute because traders hub route now is the root route * feat: make logged out version of TH accesable for tablet view * feat: add styles for mt5 password modal * feat: fix notifications styles * Ahmad/Strike Icon Svg fix on Firefox (#15578) * chore: strike icon * fix: revert all * chore: add important * Ahmad/ Fiix Strike Icon in firefox and update Deriv UI Package (#15609) * chore: strike icon * fix: revert all * chore: add important * fix: update packages and remove temp fix * fix: creation banner and adding mt5 account (#15659) * Revert "fix: creation banner and adding mt5 account (#15659)" (#15661) This reverts commit ef2dddb98eefb29b387713bbf4714aa5e4a42124. * [FEQ] Sergei / FEQ - 2374, 2375, 2376 / Tablet view issues 4 (2) (#15666) * fix: creation banner and adding mt5 account * feat: add deriv-com/ui to account package json * fix: add react/jsx-runtime to webpack resolvers because i have added deriv-com/ui to package json * [FEQ] Sergei / FEQ - 2376 / "Get real account" button for DIEL (#15690) * feat: tablet view suggestion * feat: implement new design for tablet * chore: fix test cases * chore: add observer --------- Co-authored-by: Farhan Ahmad Nurzi <125247833+farhan-nurzi-deriv@users.noreply.github.com> Co-authored-by: Sergei Baranovski <120570511+sergei-deriv@users.noreply.github.com> Co-authored-by: balakrishna-binary Co-authored-by: kate-deriv <121025168+kate-deriv@users.noreply.github.com> Co-authored-by: balakrishna-deriv <56330681+balakrishna-deriv@users.noreply.github.com> Co-authored-by: DerivFE <80095553+DerivFE@users.noreply.github.com> Co-authored-by: balakrishna-deriv Co-authored-by: Farhan Ahmad Nurzi Co-authored-by: Akmal Djumakhodjaev Co-authored-by: ahmadtaimoor-deriv <129935294+ahmadtaimoor-deriv@users.noreply.github.com> --- .stylelintrc.js | 2 +- __mocks__/globals.js | 20 ++ jest.config.base.js | 2 +- jest.config.js | 4 +- package-lock.json | 8 +- packages/account/build/constants.js | 1 + packages/account/jest.config.js | 1 + packages/account/package.json | 1 + .../common-mistake-examples.scss | 10 +- .../card-details/card-details.scss | 8 +- .../ProofOfAddress/proof-of-address-form.tsx | 15 +- packages/account/src/Styles/account.scss | 154 +++++++------- packages/appstore/jest.config.js | 1 + .../appstore/src/components/app-content.tsx | 1 + packages/appstore/src/components/app.scss | 8 +- .../cfds-listing/__tests__/index.spec.tsx | 7 + .../components/cfds-listing/cfds-listing.scss | 167 ++++++++------- .../src/components/cfds-listing/index.tsx | 9 +- .../currency-switcher-container.scss | 8 +- .../containers/listing-container.scss | 10 +- .../elements/cfds-title/cfds-title.tsx | 15 +- .../elements/options-title/options-title.tsx | 11 +- .../get-started-trading-banner.scss | 8 +- .../get-started-trading-banner.tsx | 15 +- .../optionsAndMultipliers.scss | 2 +- .../main-title-bar/__tests__/index.spec.tsx | 8 + .../main-title-bar/asset-summary.scss | 9 +- .../main-title-bar/asset-summary.tsx | 7 +- .../src/components/main-title-bar/index.tsx | 91 +++++---- .../regulators-compare-modal.scss | 2 +- .../regulators-compare-modal.tsx | 11 +- .../options-multipliers-listing/index.tsx | 6 +- .../regulations-switcher-loader.tsx | 37 ++-- .../pre-loader/total-assets-loader.tsx | 29 ++- .../real-account-creation-banner.scss | 21 +- .../real-account-creation-banner.tsx | 12 +- .../src/components/temporary-overrides.scss | 21 ++ .../trustpilot-widget/trustpilot-widget.tsx | 13 +- .../traders-hub-logged-out.scss | 5 +- .../traders-hub-logged-out.tsx | 24 ++- .../traders-hub/__tests__/index.spec.tsx | 8 + .../src/modules/traders-hub/index.tsx | 78 +++---- .../src/modules/traders-hub/traders-hub.scss | 17 +- packages/bot-skeleton/jest.config.js | 1 + packages/bot-web-ui/jest.config.js | 1 + packages/cashier-v2/package.json | 2 +- packages/cashier/jest.config.js | 1 + packages/cfd/build/constants.js | 1 + packages/cfd/jest.config.js | 1 + packages/cfd/package.json | 1 + .../__tests__/cfd-compare-accounts.spec.tsx | 5 + .../cfd-compare-accounts.scss | 63 +++++- .../cfd-compare-accounts.tsx | 112 +++++------ .../src/Containers/cfd-dbvi-onboarding.tsx | 21 +- .../cfd-financial-stp-real-account-signup.tsx | 6 +- .../cfd/src/Containers/cfd-password-modal.tsx | 91 ++++----- .../__test__/jurisdiction-modal.spec.tsx | 6 +- .../jurisdiction-modal-title.tsx | 6 +- .../jurisdiction-modal/jurisdiction-modal.tsx | 11 +- .../real-account-signup-verifications.tsx | 6 +- packages/cfd/src/sass/cfd-dashboard.scss | 126 ++++++------ packages/cfd/src/sass/cfd.scss | 28 +-- packages/components/jest.config.js | 2 + packages/components/package.json | 1 + .../__tests__/contract-update-form.spec.tsx | 11 +- .../__tests__/toggle-card-dialog.spec.tsx | 9 +- .../contract-card-sell.tsx | 2 +- .../contract-update-form.tsx | 16 +- .../sass/contract-card-dialog.scss | 15 +- .../toggle-card-dialog.tsx | 51 +++-- .../contract-card/contract-card.scss | 9 +- .../components/date-picker/date-picker.scss | 4 +- .../components/date-picker/date-picker.tsx | 104 +++++----- .../src/components/dropdown/dropdown.scss | 6 +- .../filter-dropdown/filter-dropdown.tsx | 26 +-- .../form-submit-button.scss | 2 +- .../input-with-checkbox.tsx | 14 +- .../src/components/modal/modal.scss | 12 +- .../components/page-overlay/page-overlay.scss | 16 +- .../popover/__tests__/popover.spec.tsx | 8 +- .../src/components/popover/popover.tsx | 7 +- .../components/vertical-tab/vertical-tab.scss | 4 +- packages/core/jest.config.js | 1 + packages/core/package.json | 1 + packages/core/src/App/AppContent.tsx | 7 +- .../Elements/LandscapeBlocker/index.ts | 3 + .../Elements/LandscapeBlocker/index.tsx | 3 + .../LandscapeBlocker/landscape-blocker.scss | 47 +++++ .../LandscapeBlocker/landscape-blocker.tsx | 32 +++ .../Elements/LiveChat/live-chat.tsx | 26 ++- .../Components/Elements/WhatsApp/whatsapp.tsx | 15 +- .../__tests__/toggle-fullscreen.spec.tsx | 2 +- .../Layout/Footer/account-limits.jsx | 10 +- .../Components/Layout/Footer/help-centre.jsx | 15 +- .../Layout/Footer/regulatory-information.jsx | 19 +- .../Layout/Footer/responsible-trading.jsx | 10 +- .../Layout/Footer/toggle-fullscreen.jsx | 36 ++-- .../Footer/toggle-language-settings.tsx | 36 ++-- .../Layout/Footer/toggle-settings.jsx | 18 +- .../Header/__tests__/menu-link.spec.tsx | 8 + .../Layout/Header/account-actions.jsx | 97 +++++---- .../Components/Layout/Header/account-info.jsx | 34 ++-- .../Components/Layout/Header/menu-links.jsx | 9 +- .../Layout/Header/platform-dropdown.jsx | 16 +- .../Layout/Header/toggle-notifications.jsx | 32 ++- .../wallets/account-actions-wallets.tsx | 33 +-- .../App/Containers/Layout/app-contents.jsx | 25 ++- .../core/src/App/Containers/Layout/footer.jsx | 29 ++- .../header/__tests__/default-header.spec.tsx | 11 +- .../header/__tests__/dtrader-header.spec.tsx | 11 +- .../Layout/header/__tests__/header.spec.tsx | 7 + .../__tests__/show-notifications.spec.tsx | 8 + .../__tests__/traders-hub-header.spec.tsx | 16 +- .../__tests__/traders-hub-onboarding.spec.tsx | 1 - .../Layout/header/default-header.tsx | 9 +- .../Layout/header/dtrader-header.tsx | 20 +- .../Layout/header/show-notifications.tsx | 2 + .../header/traders-hub-header-wallets.tsx | 32 +-- .../Layout/header/traders-hub-header.tsx | 44 ++-- .../Layout/header/traders-hub-onboarding.tsx | 37 ++-- .../Containers/Layout/trading-hub-footer.jsx | 40 ++-- .../__tests__/notifications-dialog.spec.tsx | 11 +- .../notifications-dialog.tsx | 57 +++--- .../RealAccountSignup/add-crypto-currency.jsx | 6 +- .../RealAccountSignup/currency-selector.scss | 16 +- .../settings/landscape-blocker.svg | 1 + packages/core/src/index.html | 31 --- packages/core/src/sass/account-wizard.scss | 40 ++-- .../_common/components/account-common.scss | 116 +++++------ .../_common/components/account-switcher.scss | 23 ++- .../sass/app/_common/components/cfd-poa.scss | 2 +- .../_common/components/platform-dropdown.scss | 6 +- .../sass/app/_common/layout/app-layouts.scss | 79 ++------ .../src/sass/app/_common/layout/footer.scss | 2 +- .../src/sass/app/_common/layout/header.scss | 3 +- .../_common/layout/traders-hub-header.scss | 22 +- .../app/modules/notifications-dialog.scss | 12 +- packages/core/src/sass/details-form.scss | 30 +-- .../core/src/sass/real-account-signup.scss | 30 +-- packages/hooks/package.json | 1 + packages/p2p-v2/package.json | 2 +- packages/p2p/jest.config.js | 3 +- packages/reports/build/constants.js | 1 + packages/reports/jest.config.js | 1 + packages/reports/package.json | 1 + .../CompositeCalendar/composite-calendar.tsx | 32 +-- .../src/Components/indicative-cell.tsx | 26 +-- .../__tests__/data-table-constants.spec.tsx | 2 +- .../__tests__/routes-config.spec.tsx | 20 +- .../src/Constants/data-table-constants.tsx | 39 ++-- .../__tests__/open-positions-table.spec.tsx | 9 +- .../src/Containers/__tests__/reports.spec.tsx | 21 +- .../Containers/__tests__/statement.spec.tsx | 12 +- .../reports/src/Containers/open-positions.tsx | 133 ++++++------ .../reports/src/Containers/profit-table.tsx | 13 +- packages/reports/src/Containers/reports.tsx | 20 +- packages/reports/src/Containers/statement.tsx | 13 +- .../components/composite-calendar.scss | 8 +- .../components/market-symbol-icon.scss | 2 +- .../app/_common/layout/trader-layouts.scss | 56 +++--- .../reports/src/sass/app/modules/reports.scss | 139 +++++++++---- packages/shared/jest.config.js | 5 +- packages/shared/src/styles/devices.scss | 34 ++++ .../shared/src/utils/contract/contract.tsx | 22 +- packages/shared/src/utils/os/os_detect.ts | 5 + packages/shared/src/utils/routes/routes.ts | 15 ++ packages/stores/src/mockStore.ts | 1 + packages/stores/types.ts | 1 + packages/trader/build/constants.js | 1 + packages/trader/jest.config.js | 4 +- packages/trader/package.json | 1 + .../Elements/ContentLoader/trade-params.tsx | 45 +++-- .../ContractAudit/contract-details.tsx | 5 +- .../__tests__/contract-drawer.spec.tsx | 20 +- .../ContractDrawer/contract-drawer-card.tsx | 25 +-- .../ContractDrawer/contract-drawer.tsx | 62 +++--- .../toggle-positions-mobile.tsx | 8 +- .../trade-footer-extensions.spec.tsx | 5 + .../trade-header-extensions.spec.tsx | 10 + .../Containers/trade-header-extensions.tsx | 24 ++- packages/trader/src/App/app.tsx | 1 + .../__tests__/accumulators-stats.spec.tsx | 25 +-- .../AccumulatorsStats/accumulators-stats.tsx | 42 ++-- .../Digits/__tests__/digits.spec.tsx | 16 +- .../Contract/Components/Digits/digits.tsx | 94 ++++----- .../Components/InfoBox/info-box-longcode.tsx | 3 +- .../__tests__/contract-replay.spec.tsx | 14 +- .../Contract/Containers/contract-replay.tsx | 108 +++++----- .../Contract/Containers/replay-chart.tsx | 21 +- .../__tests__/toolbar-widgets.spec.tsx | 15 +- .../SmartChart/Components/toolbar-widgets.tsx | 20 +- .../SmartChart/Components/top-widgets.tsx | 4 +- .../__tests__/purchase-button.spec.tsx | 13 +- .../__tests__/purchase-fieldset.spec.tsx | 14 +- .../Components/Elements/purchase-button.tsx | 99 ++++----- .../Components/Elements/purchase-fieldset.tsx | 29 +-- .../__tests__/contract-type-dialog.spec.tsx | 11 +- .../ContractType/contract-type-dialog.tsx | 57 +++--- .../ContractType/contract-type-display.tsx | 13 +- .../Purchase/__tests__/contract-info.spec.tsx | 9 +- .../Form/Purchase/contract-info.tsx | 58 +++--- .../TradeParams/Turbos/barrier-selector.tsx | 75 +++---- .../TradeParams/__tests__/strike.spec.tsx | 18 +- .../Components/Form/TradeParams/strike.tsx | 190 +++++++++--------- .../Form/__tests__/form-layout.spec.tsx | 15 +- .../Trading/Components/Form/form-layout.tsx | 32 +-- .../__tests__/strike-param-modal.spec.tsx | 5 + .../Containers/__tests__/trade.spec.tsx | 29 ++- .../Trading/Containers/chart-widgets.tsx | 6 +- .../Trading/Containers/trade-chart.tsx | 33 ++- .../src/Modules/Trading/Containers/trade.tsx | 141 ++++++++----- .../src/Stores/Modules/Trading/trade-store.ts | 8 +- .../components/contract-type-dialog.scss | 1 + .../components/contract-type-widget.scss | 8 +- .../_common/components/number-selector.scss | 2 +- .../_common/components/positions-toggle.scss | 11 +- .../_common/components/purchase-button.scss | 16 +- .../app/_common/drawer/contract-drawer.scss | 6 +- .../app/_common/drawer/positions-drawer.scss | 2 +- .../app/_common/layout/trader-layouts.scss | 86 ++++---- .../trader/src/sass/app/modules/contract.scss | 2 +- .../modules/contract/accumulators-stats.scss | 22 +- .../src/sass/app/modules/contract/digits.scss | 28 ++- .../src/sass/app/modules/trading-mobile.scss | 2 +- .../trader/src/sass/app/modules/trading.scss | 59 ++++-- 225 files changed, 3016 insertions(+), 2278 deletions(-) create mode 100644 packages/appstore/src/components/temporary-overrides.scss create mode 100644 packages/core/src/App/Components/Elements/LandscapeBlocker/index.ts create mode 100644 packages/core/src/App/Components/Elements/LandscapeBlocker/index.tsx create mode 100644 packages/core/src/App/Components/Elements/LandscapeBlocker/landscape-blocker.scss create mode 100644 packages/core/src/App/Components/Elements/LandscapeBlocker/landscape-blocker.tsx create mode 100644 packages/core/src/Assets/SvgComponents/settings/landscape-blocker.svg diff --git a/.stylelintrc.js b/.stylelintrc.js index e610dc6269d2..e7727f58da5d 100644 --- a/.stylelintrc.js +++ b/.stylelintrc.js @@ -36,7 +36,7 @@ module.exports = { 'shorthand-property-no-redundant-values': true, 'string-no-newline': true, 'time-min-milliseconds': 100, - 'unit-allowed-list': ['fr', 'px', 'em', 'rem', '%', 'svh', 'vw', 'vh', 'deg', 'ms', 's', 'dpcm'], + 'unit-allowed-list': ['fr', 'px', 'em', 'rem', '%', 'svh', 'svw', 'vw', 'vh', 'deg', 'ms', 's', 'dpcm'], 'value-keyword-case': 'lower', }, extends: [ diff --git a/__mocks__/globals.js b/__mocks__/globals.js index 8fa59529a33e..53318ea21cf7 100644 --- a/__mocks__/globals.js +++ b/__mocks__/globals.js @@ -20,6 +20,26 @@ jest.mock('@deriv-com/analytics', () => ({ }, })); +// default breakpoint to desktop +jest.mock('@deriv-com/ui', () => ({ + ...jest.requireActual('@deriv-com/ui'), + useDevice: () => ({ isDesktop: true }), +})); + +Object.defineProperty(window, 'matchMedia', { + writable: true, + value: jest.fn().mockImplementation(query => ({ + matches: false, + media: query, + onchange: null, + addListener: jest.fn(), // Deprecated + removeListener: jest.fn(), // Deprecated + addEventListener: jest.fn(), + removeEventListener: jest.fn(), + dispatchEvent: jest.fn(), + })), +}); + const mock_onfido = { init: jest.fn().mockResolvedValue({}), }; diff --git a/jest.config.base.js b/jest.config.base.js index df4d68805d21..ad0a19be28cf 100644 --- a/jest.config.base.js +++ b/jest.config.base.js @@ -16,7 +16,7 @@ module.exports = { testRegex: '(/__tests__/.*|(\\.)(test|spec))\\.(js|jsx|tsx|ts)?$', // This is needed to transform es modules imported from node_modules of the target component. transformIgnorePatterns: [ - '/node_modules/(?!(@enykeev/react-virtualized|@simplewebauthn/browser|@deriv-com/translations)).+\\.js$', + '/node_modules/(?!(@enykeev/react-virtualized|@simplewebauthn/browser|@deriv/quill-design|@deriv/quill-icons|@deriv-com/ui|@deriv-com/translations)).+\\.js$', ], setupFiles: ['/../../jest.setup.js'], setupFilesAfterEnv: ['/../../setupTests.js'], diff --git a/jest.config.js b/jest.config.js index da5d1f35c404..ceb9daa8fe7b 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,3 +1,5 @@ +const baseConfig = require('./jest.config.base'); + module.exports = { collectCoverage: false, collectCoverageFrom: [ @@ -17,6 +19,6 @@ module.exports = { '^.+\\.(ts|tsx)?$': 'ts-jest', }, testRegex: '(/__tests__/.*|(\\.)(test|spec))\\.(js|jsx|tsx|ts)?$', - transformIgnorePatterns: ['/node_modules/(?!(@enykeev/react-virtualized|@simplewebauthn/browser)).+\\.js$'], + transformIgnorePatterns: baseConfig.transformIgnorePatterns, testPathIgnorePatterns: ['/integration-tests/'], }; diff --git a/package-lock.json b/package-lock.json index d52a24be66b6..9cbdbf7ed1e4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -18,7 +18,7 @@ "@deriv-com/quill-tokens": "^2.0.4", "@deriv-com/quill-ui": "^1.10.19", "@deriv-com/translations": "^1.3.2", - "@deriv-com/ui": "^1.14.5", + "@deriv-com/ui": "^1.28.1", "@deriv-com/utils": "^0.0.25", "@deriv/api-types": "1.0.172", "@deriv/deriv-api": "^1.0.15", @@ -3148,9 +3148,9 @@ } }, "node_modules/@deriv-com/ui": { - "version": "1.27.9", - "resolved": "https://registry.npmjs.org/@deriv-com/ui/-/ui-1.27.9.tgz", - "integrity": "sha512-zsNJ/ShXFjNp39VX1f87W9dnh3DSYUl77p3GJ9nyyDem7F43gXJK8MyVFLd0eP5eXlKNkoUttU0CvIIvQxFgDA==", + "version": "1.28.1", + "resolved": "https://registry.npmjs.org/@deriv-com/ui/-/ui-1.28.1.tgz", + "integrity": "sha512-S1Ao+hJgrrYPxOLFEAXMCaomHMAZtvu+8r28Cp8zCPRDyXqlRPKC9OALwLnRTgyynVtWDQRbv0xHLBrBzhmwIg==", "dependencies": { "@types/react-modal": "^3.16.3", "react-tiny-popover": "^8.0.4" diff --git a/packages/account/build/constants.js b/packages/account/build/constants.js index ecd32451b9d0..13739e5c4c1e 100644 --- a/packages/account/build/constants.js +++ b/packages/account/build/constants.js @@ -17,6 +17,7 @@ const { } = require('./loaders-config'); const ALIASES = { + 'react/jsx-runtime': 'react/jsx-runtime.js', Assets: path.resolve(__dirname, '../src/Assets'), Components: path.resolve(__dirname, '../src/Components'), Configs: path.resolve(__dirname, '../src/Configs'), diff --git a/packages/account/jest.config.js b/packages/account/jest.config.js index 83aa365d02eb..ee7834a92264 100644 --- a/packages/account/jest.config.js +++ b/packages/account/jest.config.js @@ -4,6 +4,7 @@ module.exports = { ...baseConfigForPackages, preset: 'ts-jest', moduleNameMapper: { + '\\.css$': '/../../__mocks__/styleMock.js', '\\.s(c|a)ss$': '/../../__mocks__/styleMock.js', '^.+\\.svg$': '/../../__mocks__/styleMock.js', '@deriv-com/translations': '/../../__mocks__/translation.mock.js', diff --git a/packages/account/package.json b/packages/account/package.json index 46505a8ceccb..27687ea3c839 100644 --- a/packages/account/package.json +++ b/packages/account/package.json @@ -33,6 +33,7 @@ "@deriv-com/analytics": "1.5.9", "@deriv-com/translations": "^1.3.2", "@deriv-com/utils": "^0.0.25", + "@deriv-com/ui": "^1.28.1", "@deriv/api": "^1.0.0", "@deriv/components": "^1.0.0", "@deriv/hooks": "^1.0.0", diff --git a/packages/account/src/Components/poa/common-mistakes/common-mistake-examples.scss b/packages/account/src/Components/poa/common-mistakes/common-mistake-examples.scss index 2336f29e78e4..5edc9aa93c05 100644 --- a/packages/account/src/Components/poa/common-mistakes/common-mistake-examples.scss +++ b/packages/account/src/Components/poa/common-mistakes/common-mistake-examples.scss @@ -7,11 +7,17 @@ row-gap: 1.6rem; margin-bottom: 2.4rem; - @include desktop { + @include tablet-screen { + grid-template-columns: repeat(2, 1fr); + row-gap: 3.2rem; + } + + @include desktop-screen { grid-template-columns: repeat(3, 1fr); column-gap: calc((100% - 23.7rem * 3) / 2); row-gap: 3.2rem; } + &-layout { background-color: var(--transparent-danger); gap: 1.6rem; @@ -25,7 +31,7 @@ width: 23.7rem; height: 21.8rem; - @include mobile { + @include mobile-or-tablet-screen { margin-inline: auto; } } diff --git a/packages/account/src/Components/poi/status/unsupported/card-details/card-details.scss b/packages/account/src/Components/poi/status/unsupported/card-details/card-details.scss index 35ec54b498ce..64274e07391b 100644 --- a/packages/account/src/Components/poi/status/unsupported/card-details/card-details.scss +++ b/packages/account/src/Components/poi/status/unsupported/card-details/card-details.scss @@ -32,9 +32,13 @@ .dc-datepicker { margin-left: 2.4rem; + + @include mobile-or-tablet-screen { + margin-left: unset; + } } - @include mobile { + @include mobile-or-tablet-screen { .dc-input { margin-bottom: 2rem; } @@ -188,7 +192,7 @@ .dc-btn:not(:last-of-type) { margin-right: 0.8rem; } - @include mobile { + @include mobile-or-tablet-screen { height: auto; padding-bottom: unset; diff --git a/packages/account/src/Sections/Verification/ProofOfAddress/proof-of-address-form.tsx b/packages/account/src/Sections/Verification/ProofOfAddress/proof-of-address-form.tsx index 1fc8049743a9..87e4709c15db 100644 --- a/packages/account/src/Sections/Verification/ProofOfAddress/proof-of-address-form.tsx +++ b/packages/account/src/Sections/Verification/ProofOfAddress/proof-of-address-form.tsx @@ -1,5 +1,6 @@ import React from 'react'; import { Formik, FormikErrors, FormikHelpers, FormikValues } from 'formik'; +import { useDevice } from '@deriv-com/ui'; import { Loading, Button, Text, ThemedScrollbars, FormSubmitButton, Modal, HintBox } from '@deriv/components'; import { useFileUploader } from '@deriv/hooks'; import { validAddress, validPostCode, validLetterSymbol, validLength, getLocation, WS } from '@deriv/shared'; @@ -37,7 +38,8 @@ type TFormState = Record<'is_btn_loading' | 'is_submit_success' | 'should_allow_ const ProofOfAddressForm = observer( ({ is_resubmit, is_for_cfd_modal, onSubmit, onSubmitForCFDModal, className }: Partial) => { - const { client, notifications, ui } = useStore(); + const { isDesktop } = useDevice(); + const { client, notifications } = useStore(); const { account_settings, fetchResidenceList, fetchStatesList, getChangeableFields, states_list, is_eu } = client; const { @@ -45,7 +47,6 @@ const ProofOfAddressForm = observer( removeNotificationMessage, removeNotificationByKey, } = notifications; - const { is_mobile } = ui; const [document_files, setDocumentFiles] = React.useState([]); const [file_selection_error, setFileSelectionError] = React.useState(null); const [is_loading, setIsLoading] = React.useState(true); @@ -272,7 +273,7 @@ const ProofOfAddressForm = observer( } const setOffset = (status: { msg: string }) => { const mobile_scroll_offset = status?.msg ? '200px' : '154px'; - return is_mobile && !is_for_cfd_modal ? mobile_scroll_offset : '80px'; + return !isDesktop && !is_for_cfd_modal ? mobile_scroll_offset : '80px'; }; return ( @@ -284,12 +285,12 @@ const ProofOfAddressForm = observer( > {({ status, handleSubmit, isSubmitting, isValid }) => ( <> - + {form_state.should_show_form && (
@@ -298,7 +299,7 @@ const ProofOfAddressForm = observer( className='account-form_poa-submit-error' icon='IcAlertDanger' message={ - + {!status?.msg && is_resubmit && ( )} @@ -343,7 +344,7 @@ const ProofOfAddressForm = observer( !!file_selection_error } label={localize('Continue')} - is_absolute={is_mobile} + is_absolute={!isDesktop} is_loading={isSubmitting} /> diff --git a/packages/account/src/Styles/account.scss b/packages/account/src/Styles/account.scss index ea754d80524e..a0aa110fe395 100644 --- a/packages/account/src/Styles/account.scss +++ b/packages/account/src/Styles/account.scss @@ -8,7 +8,7 @@ $MIN_HEIGHT_FLOATING: calc( margin: 0 16px; .dc-page-overlay__content { - @include mobile { + @include mobile-or-tablet-screen { overflow-x: hidden; overflow-y: auto; } @@ -162,7 +162,7 @@ $MIN_HEIGHT_FLOATING: calc( } } - @include desktop { + @include desktop-screen { & .da-self-exclusion__wrapper { width: calc(100vw - 33rem); } @@ -172,7 +172,7 @@ $MIN_HEIGHT_FLOATING: calc( } } - @include desktop { + @include desktop-screen { grid-template-rows: 5.2rem calc(100vh - 4.8rem - 3.6rem - 5.2rem); overflow: hidden; } @@ -205,7 +205,7 @@ $MIN_HEIGHT_FLOATING: calc( height: 100%; width: 100%; - @include desktop { + @include desktop-screen { &__financial-assessment { .account-form__fieldset { margin-top: 0.8rem; @@ -235,7 +235,7 @@ $MIN_HEIGHT_FLOATING: calc( width: 100%; margin-top: 0.3rem; - @include mobile { + @include mobile-or-tablet-screen { border-top-color: var(--general-disabled); } } @@ -269,7 +269,7 @@ $MIN_HEIGHT_FLOATING: calc( margin-bottom: 1.6rem; max-width: 67.2rem; - @include mobile { + @include mobile-or-tablet-screen { margin-bottom: 2.4rem; } } @@ -338,7 +338,7 @@ $MIN_HEIGHT_FLOATING: calc( top: 1rem; } - @include mobile { + @include mobile-or-tablet-screen { .dc-checkbox { &__box, & .dc-icon { @@ -377,14 +377,14 @@ $MIN_HEIGHT_FLOATING: calc( } &__personal-details { - @include desktop { + @include desktop-screen { .account__scrollbars_container { padding-top: 2.4rem; padding-bottom: 2.4rem; } } - @include mobile { + @include mobile-or-tablet-screen { .account__scrollbars_container { &--grid-layout { display: flex; @@ -423,13 +423,13 @@ $MIN_HEIGHT_FLOATING: calc( .account__scrollbars_container { &--grid-layout { - @include mobile { + @include mobile-or-tablet-screen { display: flex; flex-direction: column; } } - @include desktop { + @include desktop-screen { padding-bottom: 0; } } @@ -464,7 +464,7 @@ $MIN_HEIGHT_FLOATING: calc( flex-wrap: wrap; } - @include mobile { + @include mobile-or-tablet-screen { flex-wrap: wrap; margin-bottom: 2.4rem; } @@ -496,7 +496,7 @@ $MIN_HEIGHT_FLOATING: calc( } } - @include mobile { + @include mobile-or-tablet-screen { width: 100%; margin-right: unset; margin-bottom: 2.4rem; @@ -535,7 +535,7 @@ $MIN_HEIGHT_FLOATING: calc( } } - @include mobile { + @include mobile-or-tablet-screen { height: fit-content; width: 100%; padding: 2.4rem 1.8rem 2rem; @@ -550,13 +550,13 @@ $MIN_HEIGHT_FLOATING: calc( display: flex; grid-column-gap: 0.8rem; - @include mobile { + @include mobile-or-tablet-screen { margin-bottom: 2.4rem; flex-direction: column; } &__fieldset { - @include mobile { + @include mobile-or-tablet-screen { width: inherit; max-width: 40rem; @@ -586,7 +586,7 @@ $MIN_HEIGHT_FLOATING: calc( &__password-wrapper { & .account__scrollbars_container--grid-layout { - @include mobile { + @include mobile-or-tablet-screen { display: flex; flex-direction: column; } @@ -652,7 +652,7 @@ $MIN_HEIGHT_FLOATING: calc( height: 4rem; margin-top: 3.2rem; - @include mobile { + @include mobile-or-tablet-screen { margin: 1.6rem 0; padding: 1.6rem; } @@ -663,7 +663,7 @@ $MIN_HEIGHT_FLOATING: calc( width: 12.8rem; height: 12.8rem; - @include desktop { + @include desktop-screen { margin-top: 8rem; } } @@ -689,18 +689,18 @@ $MIN_HEIGHT_FLOATING: calc( &-full-width { width: calc(100vw - 33rem); - @include mobile { + @include mobile-or-tablet-screen { width: 100%; } } - @include mobile { + @include mobile-or-tablet-screen { overflow-x: hidden; overflow-y: auto; } } - @include mobile { + @include mobile-or-tablet-screen { line-height: 2rem; text-align: center; } @@ -731,14 +731,14 @@ $MIN_HEIGHT_FLOATING: calc( &-leave-confirm, &-submit-success { - @include desktop { + @include desktop-screen { .dc-btn--primary { width: 13rem; margin-left: 0.8rem; } } - @include mobile { + @include mobile-or-tablet-screen { flex-direction: column; width: 100%; margin-top: 1.2rem; @@ -764,7 +764,7 @@ $MIN_HEIGHT_FLOATING: calc( @include typeface(--paragraph-left-bold-black, none); color: var(--text-prominent); - @include mobile { + @include mobile-or-tablet-screen { font-size: 1.2rem; color: var(--text-general); } @@ -782,7 +782,7 @@ $MIN_HEIGHT_FLOATING: calc( width: 5rem; margin: 0 0.6rem; - @include mobile { + @include mobile-or-tablet-screen { margin: 1.1rem 0; } } @@ -795,12 +795,12 @@ $MIN_HEIGHT_FLOATING: calc( margin-left: 0.8rem; } - @include mobile { + @include mobile-or-tablet-screen { margin-left: unset; } } - @include desktop { + @include desktop-screen { max-width: 54.6rem; } } @@ -809,7 +809,7 @@ $MIN_HEIGHT_FLOATING: calc( .dashboard__message-content { margin-top: 8rem; - @include mobile { + @include mobile-or-tablet-screen { margin-top: 4rem; } } @@ -845,7 +845,7 @@ $MIN_HEIGHT_FLOATING: calc( height: 100%; } - @include mobile { + @include mobile-or-tablet-screen { flex-direction: column; overflow-y: auto; overflow-x: hidden; @@ -856,7 +856,7 @@ $MIN_HEIGHT_FLOATING: calc( margin-bottom: 1.5rem; margin-left: 1.2rem; - @include mobile { + @include mobile-or-tablet-screen { margin-right: 1.2rem; } } @@ -866,7 +866,7 @@ $MIN_HEIGHT_FLOATING: calc( width: 40rem; margin: 2.7rem auto 0; - @include mobile { + @include mobile-or-tablet-screen { width: 100%; max-width: 40rem; } @@ -891,7 +891,7 @@ $MIN_HEIGHT_FLOATING: calc( &__timeline { padding: 0 1.4rem; - @include mobile { + @include mobile-or-tablet-screen { margin-left: 1.2rem; } } @@ -972,7 +972,7 @@ $MIN_HEIGHT_FLOATING: calc( } } - @include mobile { + @include mobile-or-tablet-screen { &__list { width: 90%; margin: 1rem auto; @@ -1021,7 +1021,7 @@ $MIN_HEIGHT_FLOATING: calc( } .leave-confirm { - @include mobile { + @include mobile-or-tablet-screen { &__message-icon { width: 93px; } @@ -1039,7 +1039,7 @@ $MIN_HEIGHT_FLOATING: calc( .submit-success { margin-top: 100px; - @include mobile { + @include mobile-or-tablet-screen { &__message-icon { width: 96px; height: 90px; @@ -1072,7 +1072,7 @@ $MIN_HEIGHT_FLOATING: calc( overflow-y: hidden; } - @include mobile { + @include mobile-or-tablet-screen { height: 100%; } } @@ -1109,7 +1109,7 @@ $MIN_HEIGHT_FLOATING: calc( } } - @include mobile { + @include mobile-or-tablet-screen { height: 100%; margin: 0; } @@ -1143,7 +1143,7 @@ $MIN_HEIGHT_FLOATING: calc( &-dashboard { width: calc(100vw - 33rem); - @include mobile { + @include mobile-or-tablet-screen { width: 100%; button { @@ -1157,7 +1157,7 @@ $MIN_HEIGHT_FLOATING: calc( margin-top: 2.4rem; align-self: center; - @include mobile { + @include mobile-or-tablet-screen { width: 100%; } } @@ -1178,7 +1178,7 @@ $MIN_HEIGHT_FLOATING: calc( margin-right: 0.5em; flex: 1; - @include mobile { + @include mobile-or-tablet-screen { margin-bottom: 2.4rem; } } @@ -1192,7 +1192,7 @@ $MIN_HEIGHT_FLOATING: calc( margin-bottom: 4em; // The gap for the error message is dependent on the font-size, better to be `em` instead of `rem` } - @include mobile { + @include mobile-or-tablet-screen { min-width: 100%; } } @@ -1389,7 +1389,7 @@ $MIN_HEIGHT_FLOATING: calc( font-weight: bold; } - @include mobile { + @include mobile-or-tablet-screen { &:not(:first-child):not(:last-child) { margin: 0; } @@ -1405,7 +1405,7 @@ $MIN_HEIGHT_FLOATING: calc( } } - @include mobile { + @include mobile-or-tablet-screen { display: grid; grid-gap: 2.4rem; grid-template-columns: 1fr 1fr 1fr; @@ -1453,7 +1453,7 @@ $MIN_HEIGHT_FLOATING: calc( } .dc-modal__container_sent-email__modal { - @include mobile { + @include mobile-or-tablet-screen { height: 42rem !important; overflow-y: scroll !important; } @@ -1511,7 +1511,7 @@ $MIN_HEIGHT_FLOATING: calc( @include typeface(--paragraph-center-bold-red, none); } - @include mobile { + @include mobile-or-tablet-screen { width: 300px; height: 272px; } @@ -1536,7 +1536,7 @@ $MIN_HEIGHT_FLOATING: calc( &-field { margin-bottom: 3.2rem; - @include mobile { + @include mobile-or-tablet-screen { margin-bottom: 2.4rem; } @@ -1561,7 +1561,7 @@ $MIN_HEIGHT_FLOATING: calc( margin: 0.5rem 0 0.8rem; } - @include mobile { + @include mobile-or-tablet-screen { &:first-child { & > p { padding-top: 2.4rem; @@ -1579,7 +1579,7 @@ $MIN_HEIGHT_FLOATING: calc( padding-left: 3%; list-style-type: disc; - @include mobile { + @include mobile-or-tablet-screen { padding-left: 5%; } @@ -1608,7 +1608,7 @@ $MIN_HEIGHT_FLOATING: calc( align-self: flex-end; background-color: transparent; - @include mobile { + @include mobile-or-tablet-screen { align-self: center; } } @@ -1619,7 +1619,7 @@ $MIN_HEIGHT_FLOATING: calc( margin-inline-end: 10px; float: right; - @include mobile { + @include mobile-or-tablet-screen { margin-top: -8px; margin-inline-end: 10px; float: right; @@ -1630,7 +1630,7 @@ $MIN_HEIGHT_FLOATING: calc( margin-top: 2.4rem; float: right; - @include mobile { + @include mobile-or-tablet-screen { float: none; margin: 2.4rem auto 3.2rem; } @@ -1675,7 +1675,7 @@ $MIN_HEIGHT_FLOATING: calc( margin-top: 0.8rem; &-wrapper { - @include mobile { + @include mobile-or-tablet-screen { margin-bottom: 5.6rem; } } @@ -1692,7 +1692,7 @@ $MIN_HEIGHT_FLOATING: calc( } } - @include mobile { + @include mobile-or-tablet-screen { width: calc(100% - 3rem); margin: 0 auto; @@ -1705,7 +1705,7 @@ $MIN_HEIGHT_FLOATING: calc( margin: 0.8rem 0; background-color: var(--general-main-1); - @include mobile { + @include mobile-or-tablet-screen { position: fixed; bottom: 0; left: 0; @@ -1729,7 +1729,7 @@ $MIN_HEIGHT_FLOATING: calc( /* stylelint-disable */ .dc-modal__container_closing-account-reasons { - @include mobile { + @include mobile-or-tablet-screen { max-height: 70vh; } @@ -1747,7 +1747,7 @@ $MIN_HEIGHT_FLOATING: calc( padding: 3.2rem; width: 440px; - @include mobile { + @include mobile-or-tablet-screen { width: unset; } @@ -1759,7 +1759,7 @@ $MIN_HEIGHT_FLOATING: calc( width: 10.3rem; } - @include mobile { + @include mobile-or-tablet-screen { background: unset; } } @@ -1845,7 +1845,7 @@ $MIN_HEIGHT_FLOATING: calc( margin: 1.6rem 2.4rem; } - @include mobile { + @include mobile-or-tablet-screen { &__button { margin: 1.6rem; } @@ -1865,7 +1865,7 @@ $MIN_HEIGHT_FLOATING: calc( position: absolute; width: 87%; - @include mobile { + @include mobile-or-tablet-screen { width: 70%; } } @@ -1876,7 +1876,7 @@ $MIN_HEIGHT_FLOATING: calc( width: 100%; overflow: hidden; - @include mobile { + @include mobile-or-tablet-screen { margin-top: 2.4rem; } @@ -1887,14 +1887,14 @@ $MIN_HEIGHT_FLOATING: calc( display: flex; flex-direction: column; - @include mobile { + @include mobile-or-tablet-screen { width: 100%; flex-direction: column; padding: 1.6rem; margin-bottom: 0.8rem; } - @include desktop { + @include desktop-screen { width: 80%; padding: 2.4rem; } @@ -1943,7 +1943,7 @@ $MIN_HEIGHT_FLOATING: calc( align-items: center; margin-top: 3rem; - @include mobile { + @include mobile-or-tablet-screen { display: flex; } @@ -1953,7 +1953,7 @@ $MIN_HEIGHT_FLOATING: calc( width: 100%; flex-grow: 4; - @include mobile { + @include mobile-or-tablet-screen { width: 100%; } } @@ -1964,7 +1964,7 @@ $MIN_HEIGHT_FLOATING: calc( align-self: flex-start; flex-grow: 1; - @include mobile { + @include mobile-or-tablet-screen { width: 100%; } } @@ -1974,19 +1974,19 @@ $MIN_HEIGHT_FLOATING: calc( -webkit-text-fill-color: var(--text-loss-danger); } - @include desktop { + @include desktop-screen { .dc-input { width: unset; } } - @include mobile { + @include mobile-or-tablet-screen { .dc-input { margin-bottom: 1rem; } } - @include mobile { + @include mobile-or-tablet-screen { flex-direction: column; padding-bottom: 1rem; } @@ -2000,7 +2000,7 @@ $MIN_HEIGHT_FLOATING: calc( color: var(--text-less-prominent); -webkit-text-fill-color: var(--text-less-prominent); - @include mobile { + @include mobile-or-tablet-screen { width: 100%; } } @@ -2008,13 +2008,13 @@ $MIN_HEIGHT_FLOATING: calc( &-photo { margin-bottom: 35px; - @include mobile { + @include mobile-or-tablet-screen { width: 100%; margin-left: 0; margin-top: 1.6rem; } - @include desktop { + @include desktop-screen { .dc-input { flex-grow: 8; } @@ -2049,7 +2049,7 @@ $MIN_HEIGHT_FLOATING: calc( margin-right: 25px; overflow: visible; - @include mobile { + @include mobile-or-tablet-screen { margin-right: 8px; } @@ -2081,7 +2081,7 @@ $MIN_HEIGHT_FLOATING: calc( padding: 2rem auto !important; width: 72%; - @include mobile { + @include mobile-or-tablet-screen { width: 100%; } @@ -2109,7 +2109,7 @@ $MIN_HEIGHT_FLOATING: calc( } & .account__scrollbars_container--grid-layout { - @include mobile { + @include mobile-or-tablet-screen { display: flex; flex-direction: column; } @@ -2124,7 +2124,7 @@ $MIN_HEIGHT_FLOATING: calc( &-img { padding: 2.4rem 0; - @include mobile { + @include mobile-or-tablet-screen { width: 100%; height: auto; } @@ -2158,7 +2158,7 @@ $MIN_HEIGHT_FLOATING: calc( position: relaitve; background-color: var(--status-warning-transparent); - @include mobile { + @include mobile-or-tablet-screen { width: 32.8rem; margin: 1rem; } diff --git a/packages/appstore/jest.config.js b/packages/appstore/jest.config.js index badf6cf9ad07..cdd6b376ffd1 100644 --- a/packages/appstore/jest.config.js +++ b/packages/appstore/jest.config.js @@ -3,6 +3,7 @@ const baseConfigForPackages = require('../../jest.config.base'); module.exports = { ...baseConfigForPackages, moduleNameMapper: { + '\\.css$': '/../../__mocks__/styleMock.js', '\\.s(c|a)ss$': '/../../__mocks__/styleMock.js', '^.+\\.svg$': '/../../__mocks__/fileMock.js', '@deriv-com/translations': '/../../__mocks__/translation.mock.js', diff --git a/packages/appstore/src/components/app-content.tsx b/packages/appstore/src/components/app-content.tsx index e5d406f91ae7..2b1acd225114 100644 --- a/packages/appstore/src/components/app-content.tsx +++ b/packages/appstore/src/components/app-content.tsx @@ -5,6 +5,7 @@ import { Analytics } from '@deriv-com/analytics'; import Routes from 'Components/routes/routes'; import classNames from 'classnames'; import './app.scss'; +import './temporary-overrides.scss'; const AppContent: React.FC = observer(() => { const { ui, traders_hub } = useStore(); diff --git a/packages/appstore/src/components/app.scss b/packages/appstore/src/components/app.scss index 802f4bbc66f4..e35fda25eefd 100644 --- a/packages/appstore/src/components/app.scss +++ b/packages/appstore/src/components/app.scss @@ -1,17 +1,17 @@ .dashboard { - @include desktop { + @include desktop-screen { height: calc(100vh - #{$HEADER_HEIGHT} - #{$FOOTER_HEIGHT}); } - @include mobile { + @include mobile-or-tablet-screen { height: calc(100vh - #{$MOBILE_HEADER_HEIGHT}); } } .dashboard-onboarding { - @include desktop { + @include desktop-screen { height: inherit; } - @include mobile { + @include mobile-or-tablet-screen { height: calc(100vh - #{$MOBILE_HEADER_HEIGHT}); } } diff --git a/packages/appstore/src/components/cfds-listing/__tests__/index.spec.tsx b/packages/appstore/src/components/cfds-listing/__tests__/index.spec.tsx index ca6cac2aa4bc..d02781ea45f5 100644 --- a/packages/appstore/src/components/cfds-listing/__tests__/index.spec.tsx +++ b/packages/appstore/src/components/cfds-listing/__tests__/index.spec.tsx @@ -6,6 +6,13 @@ import CFDsListing from '../index'; jest.mock('Components/containers/listing-container', () => jest.fn(({ children }) =>
{children}
) ); +jest.mock('@deriv-com/ui', () => ({ + useDevice: jest.fn(() => ({ + isDesktop: true, + isMobile: false, + isTablet: false, + })), +})); describe('CFDsListing', () => { const mock = mockStore({ diff --git a/packages/appstore/src/components/cfds-listing/cfds-listing.scss b/packages/appstore/src/components/cfds-listing/cfds-listing.scss index 061fb05cd823..702398b81fcd 100644 --- a/packages/appstore/src/components/cfds-listing/cfds-listing.scss +++ b/packages/appstore/src/components/cfds-listing/cfds-listing.scss @@ -23,12 +23,14 @@ backface-visibility: hidden; transition: transform 0.6s ease; transform: rotateY(0deg); - height: 100%; + @include mobile-or-tablet-screen { + height: 100%; + } } &__footer-content { background-color: var(--general-main-1); - @include mobile { + @include mobile-or-tablet-screen { position: sticky; bottom: 0; } @@ -37,11 +39,11 @@ background-color: var(--general-main-1); button { height: 4rem; - @include mobile { + @include mobile-or-tablet-screen { width: 100%; } } - @include mobile { + @include mobile-or-tablet-screen { position: sticky; bottom: 0; } @@ -56,7 +58,7 @@ overflow-y: scroll; perspective: 100rem; - @include mobile { + @include mobile-or-tablet-screen { display: flex; flex-direction: column; justify-content: space-between; @@ -64,7 +66,7 @@ } } &__flipped { - @include desktop { + @include desktop-screen { height: 70rem; overflow: scroll; } @@ -75,6 +77,10 @@ transition: transform 1.5s ease; transform: rotateY(-180deg); visibility: hidden; + + @include mobile-or-tablet-screen { + height: 100%; + } } } @@ -117,11 +123,11 @@ &__wrapper { margin: 3rem 5rem 1rem; display: flex; - @include desktop { + @include desktop-screen { justify-content: center; } gap: 1.6rem; - @include mobile { + @include mobile-or-tablet-screen { margin: 0; padding: 4rem; gap: 4rem; @@ -152,7 +158,7 @@ &-blank { height: 4rem; border-radius: 1.4rem; - @include mobile { + @include mobile-or-tablet-screen { height: 2rem; } } @@ -185,7 +191,7 @@ &__h2-header { min-height: 5rem; margin: 1rem 2rem; - @include mobile { + @include mobile-or-tablet-screen { margin-bottom: 2rem; min-height: auto; } @@ -195,7 +201,7 @@ display: flex; flex-direction: column; justify-content: space-between; - @include mobile { + @include mobile-or-tablet-screen { min-height: auto; width: 100%; } @@ -207,10 +213,10 @@ gap: 1rem; margin: 1rem; - @include desktop { + @include desktop-screen { min-height: 7.6rem; } - @include mobile { + @include mobile-or-tablet-screen { gap: 0; margin: 0; } @@ -219,7 +225,7 @@ &__footnote { display: flex; justify-content: center; - @include mobile { + @include mobile-or-tablet-screen { margin: unset; padding: 1.6rem 0.8rem; box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.08); @@ -232,7 +238,7 @@ &__jurisdiction-checkbox { display: flex; justify-content: center; - @include mobile { + @include mobile-or-tablet-screen { margin-bottom: 1rem; padding: 0.8rem; } @@ -258,7 +264,7 @@ .cfd-jurisdiction-card--financial { &__footnotes-container { - @include desktop { + @include desktop-screen { gap: 1rem; min-height: 7.6rem; margin: 1rem; @@ -278,7 +284,7 @@ &-perspective { -webkit-perspective: 100rem; perspective: 100rem; - @include mobile { + @include mobile-or-tablet-screen { width: 100%; } } @@ -295,7 +301,7 @@ &.financial { min-height: 55rem; } - @include mobile { + @include mobile-or-tablet-screen { height: 48rem; width: 100%; } @@ -362,7 +368,7 @@ } } &-description-height { - @include desktop { + @include desktop-screen { &-assets { min-height: 3.4rem; } @@ -589,7 +595,7 @@ &-text { padding: 0.5rem; - @include mobile { + @include mobile-or-tablet-screen { padding-right: 0.5rem; white-space: nowrap; } @@ -688,7 +694,7 @@ display: flex; flex-direction: column; margin: 4rem 1.6rem 6rem; - @include mobile { + @include mobile-or-tablet-screen { margin-top: 5rem; margin-bottom: 0; } @@ -755,7 +761,7 @@ gap: 0.8rem; } - @include mobile { + @include mobile-or-tablet-screen { margin-left: 0; margin-right: unset; } @@ -780,7 +786,7 @@ line-height: 1.5; margin-left: 2.1rem; margin-bottom: 4.2rem; - @include desktop { + @include desktop-screen { margin-left: 0; text-align: center; } @@ -788,7 +794,7 @@ &--hint { margin-top: 1.6rem; } - @include mobile { + @include mobile-or-tablet-screen { margin-bottom: 1.6rem; } } @@ -851,7 +857,7 @@ & .dc-input__label { top: 0.9rem; } - @include mobile { + @include mobile-or-tablet-screen { padding-bottom: 12rem; } } @@ -866,7 +872,7 @@ max-width: 300px; margin: 2.4em auto 0; - @include mobile { + @include mobile-or-tablet-screen { max-width: unset; } } @@ -884,7 +890,7 @@ &--button { margin-top: 1.6rem; - @include mobile { + @include mobile-or-tablet-screen { width: 100%; margin-top: 0.8rem; max-width: 30rem; @@ -903,7 +909,7 @@ margin-top: 3.2rem; width: 6.4rem; - @include mobile { + @include mobile-or-tablet-screen { width: 100%; max-width: 30rem; } @@ -915,10 +921,10 @@ .multi-step__component { text-align: center; } - @include desktop { + @include desktop-screen { max-width: calc(450px + 1rem); // needs extra padding for the scrollbar, otherwise it will cover the words } - @include mobile { + @include mobile-or-tablet-screen { padding: 0 1.6rem; margin-top: 2.4rem; @@ -942,7 +948,7 @@ backface-visibility: hidden; transition: transform 0.6s ease; - @include mobile { + @include mobile-or-tablet-screen { margin: 1.5rem 2.4rem 2.4rem; } @@ -952,7 +958,7 @@ grid-template-columns: 1fr 1fr; margin: 0 10rem; - @include mobile { + @include mobile-or-tablet-screen { grid-template-columns: 1fr; margin: 0 6.5rem 3rem; } @@ -1026,7 +1032,7 @@ } .upload-layout { - @include desktop { + @include desktop-screen { height: 100%; } } @@ -1034,7 +1040,7 @@ .account-form__poi-confirm-example { gap: 1.6rem; - @include mobile { + @include mobile-or-tablet-screen { gap: 0; } } @@ -1061,7 +1067,7 @@ &-details { max-width: 68rem; margin: auto; - @include mobile { + @include mobile-or-tablet-screen { overflow-y: scroll; } @@ -1098,7 +1104,7 @@ } } - @include desktop() { + @include desktop-screen { .onfido-container { padding-top: 1.6rem; } @@ -1130,14 +1136,14 @@ flex: 1; } } - @include desktop { + @include desktop-screen { overflow: hidden; & .details-form__description { width: 100%; } } - @include mobile { + @include mobile-or-tablet-screen { overflow: initial; grid-template-rows: 7rem minmax(10rem, 1fr); &__heading { @@ -1162,7 +1168,7 @@ height: auto; padding: 0 3rem; padding-bottom: 7rem; - @include mobile { + @include mobile-or-tablet-screen { overflow-y: auto; } } @@ -1228,7 +1234,7 @@ width: 45%; margin: 1.2rem auto; - @include mobile { + @include mobile-or-tablet-screen { width: 95%; } } @@ -1271,7 +1277,7 @@ align-items: center; height: 100%; - @include mobile { + @include mobile-or-tablet-screen { display: unset; position: relative; } @@ -1298,7 +1304,7 @@ align-items: unset; flex-direction: unset; - @include mobile { + @include mobile-or-tablet-screen { width: 95%; margin-top: 8px; } @@ -1315,7 +1321,7 @@ width: 45%; justify-content: unset; - @include mobile { + @include mobile-or-tablet-screen { width: 100%; padding: 0 1.2rem; overflow-y: unset; @@ -1387,7 +1393,7 @@ &__fieldset { width: 100%; - @include mobile { + @include mobile-or-tablet-screen { margin: 0 0 1.8rem; } @@ -1409,7 +1415,7 @@ &__submit-button { margin-left: 0.8rem; - @include mobile { + @include mobile-or-tablet-screen { margin-right: unset; } } @@ -1424,11 +1430,11 @@ height: 100%; position: relative; - @include mobile { + @include mobile-or-tablet-screen { max-height: calc(100% - 1rem); } } - @include mobile { + @include mobile-or-tablet-screen { overflow: hidden; } } @@ -1458,7 +1464,7 @@ .dc-modal__container_cfd-financial-stp-signup-modal { max-height: calc(100vh - 102px) !important; - @include desktop { + @include desktop-screen { display: grid; grid-template-rows: 6rem minmax(20rem, 1fr); } @@ -1489,7 +1495,7 @@ margin-inline-start: 0; } } - @include mobile { + @include mobile-or-tablet-screen { padding: 0.8rem 1.6rem 1.6rem; display: flex; grid-gap: 0.6rem; @@ -1525,7 +1531,7 @@ } &__inline-msg { margin: 2.4rem 2.4rem 0; - @include mobile { + @include mobile-or-tablet-screen { margin: 2.4rem 0; } } @@ -1542,13 +1548,13 @@ margin: 0.8rem auto; &__desc { - @include mobile { + @include mobile-or-tablet-screen { padding: 0 3.8rem; } } } &-footer { - @include mobile { + @include mobile-or-tablet-screen { position: absolute; bottom: 3.6rem; width: 100%; @@ -1572,7 +1578,7 @@ left: 7.6rem; top: 7.6rem; - @include mobile { + @include mobile-or-tablet-screen { left: 7.8rem; top: 5.8rem; } @@ -1591,7 +1597,7 @@ display: flex; flex-direction: column; gap: 1.2rem; - @include mobile { + @include mobile-or-tablet-screen { gap: 0.8rem; } } @@ -1604,7 +1610,7 @@ padding: 1.6rem 0 0.8rem; width: fit-content; } - @include mobile { + @include mobile-or-tablet-screen { font-size: 1.4rem; } } @@ -1615,7 +1621,7 @@ } .cfd-personal-details-form-error { @include typeface(--paragraph-left-normal-red); - @include desktop { + @include desktop-screen { white-space: nowrap; display: flex; align-items: flex-end; @@ -1638,7 +1644,7 @@ &--restricted { grid-template-columns: 1fr 2fr 1fr; } - @include mobile { + @include mobile-or-tablet-screen { width: 116vw; height: unset; } @@ -1650,7 +1656,7 @@ grid-template-columns: repeat($column_count, 1fr); } @else if $column_count == 5 { grid-template-columns: repeat($column_count - 1, 1fr); - @include mobile { + @include mobile-or-tablet-screen { grid-template-columns: repeat($column_count, 1fr); } } @@ -1843,7 +1849,7 @@ margin-top: 2.4rem; } } - @include mobile { + @include mobile-or-tablet-screen { height: 100%; font-size: 1.2rem; @@ -1937,6 +1943,13 @@ } } +.dc-mobile-dialog__content.dc-mobile-dialog__content--is-full-height:has(.dc-mobile-dialog__cfd-password-modal) { + @include mobile-or-tablet-screen { + display: flex; + justify-content: center; + } +} + .dc-modal__container_cfd-password-modal, .dc-mobile-dialog__cfd-password-modal { display: flex; @@ -1952,7 +1965,7 @@ justify-content: space-between; padding: 0 2.4rem 1.2rem; - @include mobile { + @include mobile-or-tablet-screen { padding: 0; } } @@ -1978,7 +1991,7 @@ .dc-input { &__label { top: 1.2rem; - @include mobile { + @include mobile-or-tablet-screen { top: 0.9rem; background-color: var(--fill-normal); } @@ -1987,7 +2000,7 @@ .dc-password-meter { &__bg { background: var(--general-section-2); - @include mobile { + @include mobile-or-tablet-screen { background: var(--fill-disabled); } } @@ -1996,7 +2009,7 @@ margin-top: 3em; } .cfd-password-reset { - @include mobile { + @include mobile-or-tablet-screen { flex: 1; } } @@ -2004,7 +2017,7 @@ flex-grow: 1; margin: auto; - @include mobile { + @include mobile-or-tablet-screen { width: calc(100vw - 4.8rem); max-width: 30rem; } @@ -2016,7 +2029,7 @@ .input-element { width: 100%; } - @include mobile { + @include mobile-or-tablet-screen { .cfd-password-modal__content { overflow-y: auto; overflow-x: hidden; @@ -2100,7 +2113,7 @@ flex-direction: column; max-width: 30rem; - @include desktop { + @include desktop-screen { margin-top: -2.5rem; } @@ -2213,7 +2226,7 @@ gap: 4rem; padding: 2.4rem 0; - @include mobile { + @include mobile-or-tablet-screen { min-height: 24rem; width: calc(100vw - 3.2rem); } @@ -2235,10 +2248,10 @@ } } &__password-area { - @include desktop { + @include desktop-screen { width: calc(min(34rem, 100vw)); } - @include mobile { + @include mobile-or-tablet-screen { width: 100%; max-width: calc(100% - 2.4rem); } @@ -2274,12 +2287,12 @@ justify-content: space-around; padding: 2.4rem 0 2rem; - @include mobile { + @include mobile-or-tablet-screen { width: calc(100vw - 3.2rem); height: 100%; } } - @include mobile { + @include mobile-or-tablet-screen { & .dc-form-submit-button { all: unset; } @@ -2308,7 +2321,7 @@ margin-top: 8px; font-weight: bold; } - @include mobile { + @include mobile-or-tablet-screen { &:not(:first-child):not(:last-child) { margin: 0; } @@ -2326,7 +2339,7 @@ } } } - @include mobile { + @include mobile-or-tablet-screen { display: grid; grid-gap: 2.4rem; grid-template-columns: 1fr 1fr 1fr; @@ -2387,7 +2400,7 @@ &-modal { &-description { margin: 1.5rem 0 2rem; - @include mobile { + @include mobile-or-tablet-screen { margin: 1rem 1rem 2rem; &--button { display: flex; @@ -2414,14 +2427,14 @@ justify-content: center; align-items: center; - @include mobile { + @include mobile-or-tablet-screen { padding: 1.4rem 1.6rem 2.4rem; } } &__icon { // to adjust the icon to the center margin: 0 0 2rem 2.4rem; - @include mobile { + @include mobile-or-tablet-screen { margin: 0 0 2.4rem 2.4rem; } } @@ -2431,7 +2444,7 @@ &__subtext { margin-bottom: 1.6rem; } - @include desktop { + @include desktop-screen { &__footer { &-button { padding: 0 1rem 1rem 0; diff --git a/packages/appstore/src/components/cfds-listing/index.tsx b/packages/appstore/src/components/cfds-listing/index.tsx index 11230da412fe..ef00a646526b 100644 --- a/packages/appstore/src/components/cfds-listing/index.tsx +++ b/packages/appstore/src/components/cfds-listing/index.tsx @@ -2,7 +2,6 @@ import React, { Fragment, useEffect } from 'react'; import { observer, useStore } from '@deriv/stores'; import { Loading, Text, StaticUrl } from '@deriv/components'; import { - isMobile, formatMoney, getAuthenticationStatusInfo, Jurisdiction, @@ -11,6 +10,7 @@ import { moduleLoader, setPerformanceValue, } from '@deriv/shared'; +import { useDevice } from '@deriv-com/ui'; import { localize, Localize } from '@deriv/translations'; import { Analytics } from '@deriv-com/analytics'; import ListingContainer from 'Components/containers/listing-container'; @@ -35,6 +35,7 @@ const MigrationBanner = makeLazyLoader( )(); const CFDsListing = observer(() => { + const { isDesktop } = useDevice(); const { client, modules: { cfd }, @@ -186,18 +187,18 @@ const CFDsListing = observer(() => { return ( {localize('CFDs')} - +
) } description={} > - {isMobile() && } + {!isDesktop && }
diff --git a/packages/appstore/src/components/containers/currency-switcher-container.scss b/packages/appstore/src/components/containers/currency-switcher-container.scss index 805482942ba9..77177aea312d 100644 --- a/packages/appstore/src/components/containers/currency-switcher-container.scss +++ b/packages/appstore/src/components/containers/currency-switcher-container.scss @@ -5,7 +5,7 @@ } } &__button { - @include desktop { + @include desktop-screen { margin-inline-end: 1rem; } } @@ -30,7 +30,7 @@ } } - @include mobile { + @include mobile-or-tablet-screen { width: 100%; } @@ -46,7 +46,7 @@ } &__arrow { - @include mobile { + @include mobile-or-tablet-screen { margin-inline-start: 1.5rem; } @@ -62,7 +62,7 @@ display: inline-flex; align-items: center; - @include mobile { + @include mobile-or-tablet-screen { .currency-switcher__button { white-space: unset; height: 4rem; diff --git a/packages/appstore/src/components/containers/listing-container.scss b/packages/appstore/src/components/containers/listing-container.scss index c9d2763ee6d7..877c6563c18c 100644 --- a/packages/appstore/src/components/containers/listing-container.scss +++ b/packages/appstore/src/components/containers/listing-container.scss @@ -5,7 +5,7 @@ padding: 2.4rem; border-radius: 2.4rem; - @include mobile { + @include mobile-or-tablet-screen { border: none; padding: 2.4rem 0; } @@ -14,7 +14,7 @@ display: inline-flex; width: 100%; - @include mobile { + @include mobile-or-tablet-screen { display: block; width: 100%; } @@ -36,7 +36,7 @@ align-items: center; } - @include mobile { + @include mobile-or-tablet-screen { display: flex; flex-direction: row; margin-inline-end: 0; @@ -51,7 +51,7 @@ gap: 1.6rem 4.8rem; padding-top: 2rem; - @include mobile { + @include mobile-or-tablet-screen { display: flex; flex-direction: column; } @@ -71,7 +71,7 @@ grid-column: 1 / span 3; gap: 1.6rem 4.8rem; - @include mobile { + @include mobile-or-tablet-screen { display: block; width: 100%; } diff --git a/packages/appstore/src/components/elements/cfds-title/cfds-title.tsx b/packages/appstore/src/components/elements/cfds-title/cfds-title.tsx index 969b3c10d4bc..628590c0d432 100644 --- a/packages/appstore/src/components/elements/cfds-title/cfds-title.tsx +++ b/packages/appstore/src/components/elements/cfds-title/cfds-title.tsx @@ -1,21 +1,20 @@ import React from 'react'; +import { useDevice } from '@deriv-com/ui'; import { Text } from '@deriv/components'; -import { observer, useStore } from '@deriv/stores'; -import { localize } from '@deriv/translations'; +import { Localize } from '@deriv/translations'; import './cfds-title.scss'; -const CFDsTitle = observer(() => { - const { ui } = useStore(); - const { is_mobile } = ui; +const CFDsTitle = () => { + const { isDesktop } = useDevice(); - if (is_mobile) return null; + if (!isDesktop) return null; return (
- {localize('CFDs')} +
); -}); +}; export default CFDsTitle; diff --git a/packages/appstore/src/components/elements/options-title/options-title.tsx b/packages/appstore/src/components/elements/options-title/options-title.tsx index 42ed13befff2..65256ba1f036 100644 --- a/packages/appstore/src/components/elements/options-title/options-title.tsx +++ b/packages/appstore/src/components/elements/options-title/options-title.tsx @@ -1,17 +1,16 @@ import React from 'react'; +import { useDevice } from '@deriv-com/ui'; import { Text } from '@deriv/components'; -import { observer, useStore } from '@deriv/stores'; import { Localize } from '@deriv/translations'; type TOptionsTitle = { is_eu_user: boolean; }; -const OptionsTitle = observer(({ is_eu_user }: TOptionsTitle) => { - const { ui } = useStore(); - const { is_mobile } = ui; +const OptionsTitle = ({ is_eu_user }: TOptionsTitle) => { + const { isDesktop } = useDevice(); - if (is_mobile) return null; + if (!isDesktop) return null; return is_eu_user ? ( @@ -21,6 +20,6 @@ const OptionsTitle = observer(({ is_eu_user }: TOptionsTitle) => { ); -}); +}; export default OptionsTitle; diff --git a/packages/appstore/src/components/get-started-trading-banner/get-started-trading-banner.scss b/packages/appstore/src/components/get-started-trading-banner/get-started-trading-banner.scss index 6489f169e5d4..e44fcf86cf70 100644 --- a/packages/appstore/src/components/get-started-trading-banner/get-started-trading-banner.scss +++ b/packages/appstore/src/components/get-started-trading-banner/get-started-trading-banner.scss @@ -13,7 +13,7 @@ background-image: url('./../../public/images/traders-hub-logged-out-banner-bg-desktop.svg'); background-repeat: no-repeat; - @include mobile { + @include mobile-or-tablet-screen { height: 14.4rem; background-image: url('./../../public/images/traders-hub-logged-out-banner-bg-responsive.svg'); background-repeat: no-repeat; @@ -32,7 +32,7 @@ font-weight: 500; } - @include mobile { + @include mobile-or-tablet-screen { margin-inline-start: 1.6rem; } } @@ -46,7 +46,7 @@ font-size: 1.6rem; } - @include mobile { + @include mobile-or-tablet-screen { min-width: 6.4rem; padding: 0.5rem 1.2rem; } @@ -62,7 +62,7 @@ transform: scaleX(-1); } - @include mobile { + @include mobile-or-tablet-screen { margin-inline-end: 0; align-self: flex-end; } diff --git a/packages/appstore/src/components/get-started-trading-banner/get-started-trading-banner.tsx b/packages/appstore/src/components/get-started-trading-banner/get-started-trading-banner.tsx index 0a0b92c244f6..65216e54d386 100644 --- a/packages/appstore/src/components/get-started-trading-banner/get-started-trading-banner.tsx +++ b/packages/appstore/src/components/get-started-trading-banner/get-started-trading-banner.tsx @@ -1,4 +1,5 @@ import React from 'react'; +import { useDevice } from '@deriv-com/ui'; import { getLanguage, Localize, localize } from '@deriv/translations'; import { Button, Text, Icon } from '@deriv/components'; import { useStore, observer } from '@deriv/stores'; @@ -7,8 +8,8 @@ import TrustpilotWidget from 'Components/trustpilot-widget'; import './get-started-trading-banner.scss'; const GetStartedTradingBanner = observer(() => { - const { ui, traders_hub } = useStore(); - const { is_mobile } = ui; + const { isDesktop } = useDevice(); + const { traders_hub } = useStore(); const { is_eu_user } = traders_hub; const desktopWidth = is_eu_user ? 326 : 445; @@ -20,7 +21,7 @@ const GetStartedTradingBanner = observer(() => {
- +
diff --git a/packages/appstore/src/components/loader/options-and-multipliers-skeleton/optionsAndMultipliers.scss b/packages/appstore/src/components/loader/options-and-multipliers-skeleton/optionsAndMultipliers.scss index db17f592396f..cbb4010b5895 100644 --- a/packages/appstore/src/components/loader/options-and-multipliers-skeleton/optionsAndMultipliers.scss +++ b/packages/appstore/src/components/loader/options-and-multipliers-skeleton/optionsAndMultipliers.scss @@ -5,7 +5,7 @@ justify-content: space-between; gap: 4.8rem; - @include mobile { + @include mobile-or-tablet-screen { display: none; } &__left { diff --git a/packages/appstore/src/components/main-title-bar/__tests__/index.spec.tsx b/packages/appstore/src/components/main-title-bar/__tests__/index.spec.tsx index d074a3e03c34..0b7624759789 100644 --- a/packages/appstore/src/components/main-title-bar/__tests__/index.spec.tsx +++ b/packages/appstore/src/components/main-title-bar/__tests__/index.spec.tsx @@ -5,6 +5,14 @@ import MainTitleBar from '..'; jest.mock('Components/banners/wallets-banner', () => jest.fn(() => 'WalletsBanner')); +jest.mock('@deriv-com/ui', () => ({ + useDevice: jest.fn(() => ({ + isDesktop: true, + isMobile: false, + isTablet: false, + })), +})); + describe('MainTitleBar', () => { const mock_store = mockStore({ modules: { diff --git a/packages/appstore/src/components/main-title-bar/asset-summary.scss b/packages/appstore/src/components/main-title-bar/asset-summary.scss index c4f58600259c..c6acce5db47f 100644 --- a/packages/appstore/src/components/main-title-bar/asset-summary.scss +++ b/packages/appstore/src/components/main-title-bar/asset-summary.scss @@ -3,7 +3,7 @@ flex-direction: column; margin-inline-start: auto; - @include mobile { + @include mobile-or-tablet-screen { align-items: center; } @@ -16,8 +16,9 @@ width: unset; } - @include mobile { - width: 23rem; + @include mobile-or-tablet-screen { + margin-inline: auto; + width: 10rem; } } @@ -25,7 +26,7 @@ display: flex; border-bottom: 4px dotted var(--checkbox-disabled-grey); - @include mobile { + @include mobile-or-tablet-screen { margin-top: 3rem; } } diff --git a/packages/appstore/src/components/main-title-bar/asset-summary.tsx b/packages/appstore/src/components/main-title-bar/asset-summary.tsx index ccabe152485a..4b9d590f5e6c 100644 --- a/packages/appstore/src/components/main-title-bar/asset-summary.tsx +++ b/packages/appstore/src/components/main-title-bar/asset-summary.tsx @@ -1,7 +1,7 @@ import React from 'react'; import { Text, Popover } from '@deriv/components'; import { localize } from '@deriv/translations'; -import { isMobile } from '@deriv/shared'; +import { useDevice } from '@deriv-com/ui'; import BalanceText from 'Components/elements/text/balance-text'; import { observer, useStore } from '@deriv/stores'; import './asset-summary.scss'; @@ -16,6 +16,7 @@ import { import { isRatesLoaded } from '../../helpers'; const AssetSummary = observer(() => { + const { isDesktop } = useDevice(); const { traders_hub, client, common, modules } = useStore(); const { selected_account_type, is_eu_user, no_CR_account, no_MF_account } = traders_hub; const { is_logging_in, is_switching, default_currency, is_landing_company_loaded, is_mt5_allowed } = client; @@ -66,13 +67,13 @@ const AssetSummary = observer(() => {
{has_active_related_deriv_account || selected_account_type === 'demo' ? ( - {!isMobile() ? ( + {isDesktop ? ( {localize('Total assets')} ) : null} { + const { isDesktop } = useDevice(); const { traders_hub, client } = useStore(); const { is_landing_company_loaded, is_switching, has_maltainvest_account } = client; const { state: wallet_migration_state } = useWalletMigration(); @@ -42,7 +44,7 @@ const MainTitleBar = () => { {show_wallets_banner && } - + {isDesktop ? (
@@ -55,49 +57,50 @@ const MainTitleBar = () => { )}
- - - - - -
-
- -
- {is_low_risk_cr_real_account && has_maltainvest_account && is_landing_company_loaded ? ( -
- {!is_switching ? ( - <> -
toggleRegulatorsCompareModal()} - > - -
- { - setActiveIndex(index); - handleTabItemClick(index); - }} - top - is_scrollable - is_overflow_hidden - > -
-
- - - ) : ( -
- -
- )} + ) : ( + + + + +
+
+
- ) : null} -
- - + {is_low_risk_cr_real_account && has_maltainvest_account && is_landing_company_loaded ? ( +
+ {!is_switching ? ( + <> +
toggleRegulatorsCompareModal()} + > + +
+ { + setActiveIndex(index); + handleTabItemClick(index); + }} + top + is_scrollable + is_overflow_hidden + > +
+
+ + + ) : ( +
+ +
+ )} +
+ ) : null} +
+ + + )} ); }; diff --git a/packages/appstore/src/components/modals/regulators-compare-modal/regulators-compare-modal.scss b/packages/appstore/src/components/modals/regulators-compare-modal/regulators-compare-modal.scss index 212acecd2726..13851e77c405 100644 --- a/packages/appstore/src/components/modals/regulators-compare-modal/regulators-compare-modal.scss +++ b/packages/appstore/src/components/modals/regulators-compare-modal/regulators-compare-modal.scss @@ -41,7 +41,7 @@ padding: 1rem 0.8rem; } } - @include mobile { + @include mobile-screen { .dc-table { height: 100%; margin: 1.6rem 1.7rem; diff --git a/packages/appstore/src/components/modals/regulators-compare-modal/regulators-compare-modal.tsx b/packages/appstore/src/components/modals/regulators-compare-modal/regulators-compare-modal.tsx index c183fe98ffa8..bacaa2634476 100644 --- a/packages/appstore/src/components/modals/regulators-compare-modal/regulators-compare-modal.tsx +++ b/packages/appstore/src/components/modals/regulators-compare-modal/regulators-compare-modal.tsx @@ -1,11 +1,13 @@ import React from 'react'; +import { useDevice } from '@deriv-com/ui'; import { observer, useStore } from '@deriv/stores'; import { localize } from '@deriv/translations'; +import { Modal, MobileDialog, UILoader } from '@deriv/components'; import RegulatorsCompareModalContent from './regulators-compare-modal-content'; -import { Modal, DesktopWrapper, MobileDialog, MobileWrapper, UILoader } from '@deriv/components'; import './regulators-compare-modal.scss'; const RegulatorsCompareModal = () => { + const { isDesktop } = useDevice(); const { traders_hub, ui } = useStore(); const { is_regulators_compare_modal_visible, toggleRegulatorsCompareModal } = traders_hub; const { disableApp, enableApp } = ui; @@ -15,7 +17,7 @@ const RegulatorsCompareModal = () => { return ( }> - + {isDesktop ? ( { > - - + ) : ( { > - + )} ); }; diff --git a/packages/appstore/src/components/options-multipliers-listing/index.tsx b/packages/appstore/src/components/options-multipliers-listing/index.tsx index 72f2a3bff8c9..5f724b28a73b 100644 --- a/packages/appstore/src/components/options-multipliers-listing/index.tsx +++ b/packages/appstore/src/components/options-multipliers-listing/index.tsx @@ -4,6 +4,7 @@ import { Text, StaticUrl } from '@deriv/components'; import { ContentFlag, setPerformanceValue } from '@deriv/shared'; import { useStore } from '@deriv/stores'; import { Localize, localize } from '@deriv/translations'; +import { useDevice } from '@deriv-com/ui'; import ListingContainer from 'Components/containers/listing-container'; import TradingAppCard from 'Components/containers/trading-app-card'; import { BrandConfig } from 'Constants/platform-config'; @@ -13,6 +14,7 @@ import PlatformLoader from 'Components/pre-loader/platform-loader'; import OptionsDescription from 'Components/elements/options-description'; const OptionsAndMultipliersListing = observer(() => { + const { isDesktop } = useDevice(); const { traders_hub, client, ui } = useStore(); const { available_platforms, @@ -26,7 +28,7 @@ const OptionsAndMultipliersListing = observer(() => { } = traders_hub; const { is_landing_company_loaded, is_eu, has_maltainvest_account, real_account_creation_unlock_date } = client; - const { setShouldShowCooldownModal, openRealAccountSignup, is_mobile } = ui; + const { setShouldShowCooldownModal, openRealAccountSignup } = ui; const low_risk_cr_non_eu = content_flag === ContentFlag.LOW_RISK_CR_NON_EU; @@ -37,7 +39,7 @@ const OptionsAndMultipliersListing = observer(() => { const cr_demo = content_flag === ContentFlag.CR_DEMO; const OptionsTitle = () => { - if (is_mobile) return null; + if (!isDesktop) return null; if (low_risk_cr_non_eu || high_risk_cr || cr_demo) { return ( diff --git a/packages/appstore/src/components/pre-loader/regulations-switcher-loader.tsx b/packages/appstore/src/components/pre-loader/regulations-switcher-loader.tsx index e0ac0315bf70..2757728008f5 100644 --- a/packages/appstore/src/components/pre-loader/regulations-switcher-loader.tsx +++ b/packages/appstore/src/components/pre-loader/regulations-switcher-loader.tsx @@ -1,21 +1,24 @@ -import ContentLoader from 'react-content-loader'; import React from 'react'; -import { DesktopWrapper, MobileWrapper } from '@deriv/components'; +import ContentLoader from 'react-content-loader'; +import { useDevice } from '@deriv-com/ui'; + +const RegulationsSwitcherLoader = () => { + const { isDesktop } = useDevice(); -const RegulationsSwitcherLoader = () => ( - - - - - - - - -); + return ( + + {isDesktop ? ( + + ) : ( + + )} + + ); +}; export default RegulationsSwitcherLoader; diff --git a/packages/appstore/src/components/pre-loader/total-assets-loader.tsx b/packages/appstore/src/components/pre-loader/total-assets-loader.tsx index 20aba49d3495..afe4b4e3c2ef 100644 --- a/packages/appstore/src/components/pre-loader/total-assets-loader.tsx +++ b/packages/appstore/src/components/pre-loader/total-assets-loader.tsx @@ -1,16 +1,23 @@ import ContentLoader from 'react-content-loader'; import React from 'react'; -import { DesktopWrapper, MobileWrapper } from '@deriv/components'; +import { useDevice } from '@deriv-com/ui'; -const TotalAssetsLoader = () => ( - - - - - - - - -); +const TotalAssetsLoader = () => { + const { isDesktop } = useDevice(); + + return ( + + {isDesktop ? ( + + ) : ( + + )} + + ); +}; export default TotalAssetsLoader; diff --git a/packages/appstore/src/components/real-account-creation-banner/real-account-creation-banner.scss b/packages/appstore/src/components/real-account-creation-banner/real-account-creation-banner.scss index 785498651f19..06ff3fe36ad2 100644 --- a/packages/appstore/src/components/real-account-creation-banner/real-account-creation-banner.scss +++ b/packages/appstore/src/components/real-account-creation-banner/real-account-creation-banner.scss @@ -4,17 +4,16 @@ margin-bottom: 2.4rem; display: flex; + @include mobile-or-tablet-screen { + align-items: center; + } + img { width: 100%; object-fit: contain; } &__content { - @include mobile { - padding: 1.4rem 1.6rem; - width: 25rem; - } - display: flex; flex-direction: column; align-items: flex-start; @@ -25,5 +24,17 @@ z-index: 1; padding: 3rem 4.8rem; width: 50rem; + + @include mobile-screen { + padding: 1.4rem 1.6rem; + width: 25rem; + top: auto; + } + + @include tablet-screen { + padding: 2.4rem 1.6rem; + width: 27rem; + top: auto; + } } } diff --git a/packages/appstore/src/components/real-account-creation-banner/real-account-creation-banner.tsx b/packages/appstore/src/components/real-account-creation-banner/real-account-creation-banner.tsx index 5d7496054639..6743a00a2995 100644 --- a/packages/appstore/src/components/real-account-creation-banner/real-account-creation-banner.tsx +++ b/packages/appstore/src/components/real-account-creation-banner/real-account-creation-banner.tsx @@ -1,19 +1,17 @@ import React, { useEffect } from 'react'; -import './real-account-creation-banner.scss'; +import { useDevice } from '@deriv-com/ui'; import { getUrlBase, Jurisdiction } from '@deriv/shared'; import { Analytics } from '@deriv-com/analytics'; import { Localize } from '@deriv/translations'; import { Text, Button } from '@deriv/components'; import { observer, useStore } from '@deriv/stores'; +import './real-account-creation-banner.scss'; const RealAccountCreationBanner = observer(() => { - const { - ui: { is_mobile }, - } = useStore(); - + const { isDesktop } = useDevice(); const { ui } = useStore(); const { openRealAccountSignup, is_dark_mode_on } = ui; - const device = is_mobile ? 'mobile' : 'desktop'; + const device = !isDesktop ? 'mobile' : 'desktop'; const handleClick = () => { Analytics.trackEvent('ce_tradershub_banner', { @@ -42,7 +40,7 @@ const RealAccountCreationBanner = observer(() => { />
- +