diff --git a/package-lock.json b/package-lock.json index 19d8386f7059..a78d8bd06a42 100644 --- a/package-lock.json +++ b/package-lock.json @@ -15,11 +15,11 @@ "@datadog/browser-logs": "^5.11.0", "@datadog/browser-rum": "^5.11.0", "@deriv-com/analytics": "1.4.13", - "@deriv-com/ui": "^1.14.1", - "@deriv-com/utils": "^0.0.14", + "@deriv-com/ui": "^1.14.5", + "@deriv-com/utils": "^0.0.20", "@deriv/api-types": "^1.0.172", "@deriv/deriv-api": "^1.0.15", - "@deriv/deriv-charts": "^2.1.13", + "@deriv/deriv-charts": "^2.1.14", "@deriv/js-interpreter": "^3.0.0", "@deriv/quill-design": "^1.3.2", "@deriv/quill-icons": "^1.22.4", @@ -2962,9 +2962,9 @@ } }, "node_modules/@deriv-com/ui": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@deriv-com/ui/-/ui-1.14.1.tgz", - "integrity": "sha512-gaLopXyvYQrB0DLT/fpbU4JNd5R9u6XDnKvBqrsyRgidSPmth/Q3ar6M4qe5Q2GBisbOkcMawPmIkHJkZ71kfQ==", + "version": "1.14.5", + "resolved": "https://registry.npmjs.org/@deriv-com/ui/-/ui-1.14.5.tgz", + "integrity": "sha512-GzRIzl9ZIGCzqjKcNm9/pam8Ef7gkYfow/pgsk5lHaU0Vkxi4kpStKIvmAVVy85K4bSkRxJuWKwYIaEkyoCOqw==", "dependencies": { "@types/react-modal": "^3.16.3" }, @@ -2973,9 +2973,9 @@ } }, "node_modules/@deriv-com/utils": { - "version": "0.0.14", - "resolved": "https://registry.npmjs.org/@deriv-com/utils/-/utils-0.0.14.tgz", - "integrity": "sha512-zpgi8b1mBCZJIKQeipMydj7SMONjQFfmdR5Jp4IffXp/9Z/I+jfsRHpP5D5eDrsFEnD5/NK9gHFg36u8hu1kww==" + "version": "0.0.20", + "resolved": "https://registry.npmjs.org/@deriv-com/utils/-/utils-0.0.20.tgz", + "integrity": "sha512-cd5acg5dYPacll1h4G07QSGSdG3raQnQSjxnvZgXNFjqNa+Ihv9gutjVWeMU+JPhaRZM7Sk7p/mpz0KYVeTd4A==" }, "node_modules/@deriv/api-types": { "version": "1.0.172", @@ -2993,9 +2993,9 @@ } }, "node_modules/@deriv/deriv-charts": { - "version": "2.1.13", - "resolved": "https://registry.npmjs.org/@deriv/deriv-charts/-/deriv-charts-2.1.13.tgz", - "integrity": "sha512-TFTl7WxW+6Drms3W00mBQU81X/6nNeNns9+bdOgqD8dGNuGUHvF6v56Lp/F/JeJ8ppm0yT/kMdLbPrxg5BVeKQ==", + "version": "2.1.14", + "resolved": "https://registry.npmjs.org/@deriv/deriv-charts/-/deriv-charts-2.1.14.tgz", + "integrity": "sha512-ECEJ7C0+Bnq4ZCnGGeS6kWke2Jse6IzKT+sGJIGDguwW8zFcW52Q5iF8UouQizP6Ekdrsh8sClz60zn01iuxnQ==", "dependencies": { "@types/lodash.set": "^4.3.7", "@welldone-software/why-did-you-render": "^3.3.8", diff --git a/packages/account-v2/package.json b/packages/account-v2/package.json index a8805a879a3f..606c3156bce1 100644 --- a/packages/account-v2/package.json +++ b/packages/account-v2/package.json @@ -12,8 +12,8 @@ "start": "rimraf dist && npm run test && npm run serve" }, "dependencies": { - "@deriv-com/ui": "^1.14.1", - "@deriv-com/utils": "^0.0.14", + "@deriv-com/ui": "^1.14.5", + "@deriv-com/utils": "^0.0.20", "@deriv/api-types": "^1.0.172", "@deriv/api-v2": "^1.0.0", "@deriv/quill-icons": "^1.22.4", diff --git a/packages/account-v2/src/components/LinkText/LinkText.tsx b/packages/account-v2/src/components/LinkText/LinkText.tsx new file mode 100644 index 000000000000..30919b017f94 --- /dev/null +++ b/packages/account-v2/src/components/LinkText/LinkText.tsx @@ -0,0 +1,8 @@ +import React, { ComponentProps } from 'react'; +import { Text } from '@deriv-com/ui'; + +export const LinkText = ({ children, ...rest }: ComponentProps) => ( + + {children} + +); diff --git a/packages/account-v2/src/components/LinkText/__tests__/LinkText.spec.tsx b/packages/account-v2/src/components/LinkText/__tests__/LinkText.spec.tsx new file mode 100644 index 000000000000..9caa6e7c9e58 --- /dev/null +++ b/packages/account-v2/src/components/LinkText/__tests__/LinkText.spec.tsx @@ -0,0 +1,11 @@ +import React from 'react'; +import { render, screen } from '@testing-library/react'; +import { LinkText } from '../LinkText'; + +describe('LinkText', () => { + it('should render a link text', () => { + render(Link Text); + const linkText = screen.getByRole('link', { name: /Link Text/i }); + expect(linkText).toBeInTheDocument(); + }); +}); diff --git a/packages/account-v2/src/components/Timeline/Timeline.tsx b/packages/account-v2/src/components/Timeline/Timeline.tsx index bacad7050676..f4558bf7ac6f 100644 --- a/packages/account-v2/src/components/Timeline/Timeline.tsx +++ b/packages/account-v2/src/components/Timeline/Timeline.tsx @@ -2,10 +2,10 @@ import React, { ComponentProps, HTMLAttributes, PropsWithChildren, ReactElement import { twMerge } from 'tailwind-merge'; import { Text } from '@deriv-com/ui'; -type TTimelineItemProps = HTMLAttributes & { itemTitle: React.ReactNode }; +type TTimelineItemProps = HTMLAttributes & { itemTitle?: React.ReactNode }; type TTimelineProps = HTMLAttributes & { - children: ReactElement[]; + children: ReactElement | ReactElement[]; lineHeight?: ComponentProps['lineHeight']; }; @@ -22,6 +22,7 @@ const Marker = ({ label }: { label: number }) => { ); }; + /** * @deprecated TODO: Replace this component with the one from @deriv-com/ui is implemented. */ @@ -37,10 +38,18 @@ export const Timeline = ({ children, className, lineHeight }: TTimelineProps) => >
- - {child.props.itemTitle} - -
{child}
+ {child.props.itemTitle && ( + + {child.props.itemTitle} + + )} +
{child}
); diff --git a/packages/account-v2/src/constants/manualFormConstants.tsx b/packages/account-v2/src/constants/manualFormConstants.tsx index 4a8444a36034..cd7ca029668e 100644 --- a/packages/account-v2/src/constants/manualFormConstants.tsx +++ b/packages/account-v2/src/constants/manualFormConstants.tsx @@ -20,6 +20,22 @@ export const MANUAL_DOCUMENT_TYPES = Object.freeze({ selfieWithID: 'selfie_with_id', }); +export const UPLOAD_FILE_TYPE = Object.freeze({ + amlglobalcheck: 'amlglobalcheck', + bankstatement: 'bankstatement', + docverification: 'docverification', + driverslicense: 'driverslicense', + driving_licence: 'driving_licence', + national_identity_card: 'national_identity_card', + other: 'other', + passport: 'passport', + powerOfAttorney: 'power_of_attorney', + proofaddress: 'proofaddress', + proofid: 'proofid', + proofOfOwnership: 'proof_of_ownership', + utilityBill: 'utility_bill', +}); + export const MANUAL_FORM_PAGE_TYPES = Object.freeze({ back: 'back', front: 'front', diff --git a/packages/account-v2/src/constants/paymentMethodsConfig.ts b/packages/account-v2/src/constants/paymentMethodsConfig.ts index a957caa4f16e..b6b1620ec49d 100644 --- a/packages/account-v2/src/constants/paymentMethodsConfig.ts +++ b/packages/account-v2/src/constants/paymentMethodsConfig.ts @@ -99,7 +99,7 @@ export const getPaymentMethodsConfig = () => ({ type TPaymentMethodIcon = Record; -export const getPaymentMethodIcon: TPaymentMethodIcon = { +export const getPaymentMethodIcon = (): TPaymentMethodIcon => ({ advcash: { dark: PaymentMethodAdvcashBrandDarkIcon, light: PaymentMethodAdvcashBrandIcon, @@ -164,4 +164,11 @@ export const getPaymentMethodIcon: TPaymentMethodIcon = { dark: DerivLightWalletIcon, light: DerivLightWalletIcon, }, +}); + +export const CARD_NUMBER = { + maxLength: 19, + minLength: 16, }; + +export const MAX_FILE_SIZE = 8000; // 8MB diff --git a/packages/account-v2/src/containers/AccountLimitsContainer/AccountLimitsTable.tsx b/packages/account-v2/src/containers/AccountLimitsContainer/AccountLimitsTable.tsx index 7231b9421713..b87f0d011769 100644 --- a/packages/account-v2/src/containers/AccountLimitsContainer/AccountLimitsTable.tsx +++ b/packages/account-v2/src/containers/AccountLimitsContainer/AccountLimitsTable.tsx @@ -16,7 +16,11 @@ const HintInfo = ({ description }: TPopoverProps) => ( const PopoverMessage = ({ description }: TPopoverProps) => ( } position='right'> - + ); diff --git a/packages/account-v2/src/containers/AccountLimitsContainer/__tests__/AccountLimitsSideNote.spec.tsx b/packages/account-v2/src/containers/AccountLimitsContainer/__tests__/AccountLimitsSideNote.spec.tsx new file mode 100644 index 000000000000..5ae858b761e2 --- /dev/null +++ b/packages/account-v2/src/containers/AccountLimitsContainer/__tests__/AccountLimitsSideNote.spec.tsx @@ -0,0 +1,11 @@ +import React from 'react'; +import { render, screen } from '@testing-library/react'; +import { AccountLimitsSideNote } from '../AccountLimitsSideNote'; + +describe('AccountLimitsSideNote', () => { + it('should render the side note component with the correct title and text', () => { + render(); + expect(screen.getByText('Account limits')).toBeInTheDocument(); + expect(screen.getByText('These are default limits that we apply to your accounts')).toBeInTheDocument(); + }); +}); diff --git a/packages/account-v2/src/containers/AccountLimitsContainer/__tests__/AccountLimitsTable.spec.tsx b/packages/account-v2/src/containers/AccountLimitsContainer/__tests__/AccountLimitsTable.spec.tsx new file mode 100644 index 000000000000..03d365e19e42 --- /dev/null +++ b/packages/account-v2/src/containers/AccountLimitsContainer/__tests__/AccountLimitsTable.spec.tsx @@ -0,0 +1,49 @@ +import React from 'react'; +import { useDevice } from '@deriv-com/ui'; +import { render, screen } from '@testing-library/react'; +import userEvent from '@testing-library/user-event'; +import { mockFormattedAccountsLimits } from '../../../mocks/accountLimitsResponse.mock'; +import { AccountLimitsTable } from '../AccountLimitsTable'; + +jest.mock('@deriv-com/ui', () => ({ + ...jest.requireActual('@deriv-com/ui'), + useDevice: jest.fn(() => ({ isMobile: false })), +})); + +describe('AccountLimitsTable', () => { + it('should render the table with correct data', () => { + render(); + expect(screen.getByText('Trading limits')).toBeInTheDocument(); + expect(screen.getByText('*Maximum number of open positions')).toBeInTheDocument(); + expect(screen.getByText('100')).toBeInTheDocument(); + expect(screen.getByText('*Maximum account cash balance')).toBeInTheDocument(); + }); + + it('should render the hintInfo with Popover icon in desktop', () => { + render(); + expect(screen.getAllByTestId('dt_account_limits_table_info_icon')).toHaveLength(4); + }); + + it('should render the Popover message when icon is hovered in desktop', () => { + render(); + const infoIcon = screen.queryAllByTestId('dt_account_limits_table_info_icon')[0]; + expect(infoIcon).toBeInTheDocument(); + userEvent.hover(infoIcon); + expect( + screen.getByText( + '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.' + ) + ).toBeInTheDocument(); + }); + + it('should render the hintInfo as description in mobile', () => { + (useDevice as jest.Mock).mockReturnValue({ isMobile: true }); + render(); + expect(screen.queryByTestId('dt_account_limits_table_info_icon')).not.toBeInTheDocument(); + expect( + screen.getByText( + '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.' + ) + ).toBeInTheDocument(); + }); +}); diff --git a/packages/account-v2/src/containers/MaskCardModal/MaskCardModal.tsx b/packages/account-v2/src/containers/MaskCardModal/MaskCardModal.tsx index 1b767a7b0255..f741dc2438e1 100644 --- a/packages/account-v2/src/containers/MaskCardModal/MaskCardModal.tsx +++ b/packages/account-v2/src/containers/MaskCardModal/MaskCardModal.tsx @@ -9,7 +9,7 @@ type TMaskCardModal = { export const MaskCardModal = ({ isOpen, onClose }: TMaskCardModal) => { return ( - + How to mask your card? @@ -19,7 +19,7 @@ export const MaskCardModal = ({ isOpen, onClose }: TMaskCardModal) => { Black out digits 7 to 12 of the card number that’s shown on the front of your debit/credit card.⁤ - + ); diff --git a/packages/account-v2/src/containers/POOForm/FileUploadField.tsx b/packages/account-v2/src/containers/POOForm/FileUploadField.tsx new file mode 100644 index 000000000000..8dbe3a7f717a --- /dev/null +++ b/packages/account-v2/src/containers/POOForm/FileUploadField.tsx @@ -0,0 +1,149 @@ +import React, { ChangeEvent, MouseEvent, SyntheticEvent, useRef, useState } from 'react'; +import clsx from 'clsx'; +import { Field, FormikErrors, useFormikContext } from 'formik'; +import { StandaloneXmarkBoldIcon } from '@deriv/quill-icons'; +import { Button, Input } from '@deriv-com/ui'; +import { ImageUtils } from '@deriv-com/utils'; +import { TFile, TPaymentMethod, TProofOfOwnershipFormValue } from 'src/types'; + +type TFileUploadFieldProps = { + methodId: number; + paymentMethod: TPaymentMethod; + subIndex: number; +}; + +export const FileUploaderField = ({ methodId, paymentMethod, subIndex }: TFileUploadFieldProps) => { + const formik = useFormikContext(); + const { errors, setFieldError, setFieldValue, values } = formik; + const [showBrowseButton, setShowBrowseButton] = useState( + !values[paymentMethod]?.[methodId]?.files?.[subIndex]?.name + ); + + if (!formik) { + throw new Error('FileUploaderField must be used within a Formik component'); + } + + // Create a reference to the hidden file input element + const hiddenInputFieldRef = useRef(null); + + const preventEventBubble = (e: SyntheticEvent) => { + e.nativeEvent.preventDefault(); + e.nativeEvent.stopPropagation(); + e.nativeEvent.stopImmediatePropagation(); + }; + + const handleChange = async (event: ChangeEvent) => { + preventEventBubble(event); + // Check if files exist before proceeding + if (!event.target.files || event.target.files.length === 0) { + return; + } + const fileToUpload = await ImageUtils.compressImageFile(event.target.files[0]); + const paymentFileData = [...(values[paymentMethod]?.[methodId]?.files ?? [])]; + paymentFileData[subIndex] = fileToUpload as TFile; + const selectedPaymentMethod = values?.[paymentMethod]; + if (!selectedPaymentMethod) { + return; + } + selectedPaymentMethod[methodId] = { + ...selectedPaymentMethod[methodId], + files: paymentFileData ?? [], + }; + await setFieldValue(paymentMethod, { ...selectedPaymentMethod }); + setShowBrowseButton(!fileToUpload); + }; + + const handleClick = (event: MouseEvent) => { + preventEventBubble(event); + hiddenInputFieldRef?.current?.click(); + }; + + const updateError = () => { + const paymentMethodError = errors?.[paymentMethod] ?? {}; + const paymentMethodFileError = (paymentMethodError?.[methodId]?.files as FormikErrors[]) ?? {}; + + delete paymentMethodFileError?.[subIndex]; + paymentMethodError[methodId] = { + ...(paymentMethodError[methodId] ?? {}), + files: paymentMethodFileError, + }; + + // [TODO] - Need to check the logic for removing the paymentMethodIdentifier + if (Object.keys(paymentMethodError[methodId]?.files as object).length === 0) { + delete paymentMethodError[methodId]?.paymentMethodIdentifier; + } + // @ts-expect-error Error is an array + setFieldError(paymentMethod, { ...paymentMethodFileError }); + }; + + const handleIconClick = async (e: React.MouseEvent) => { + e.nativeEvent.preventDefault(); + e.nativeEvent.stopPropagation(); + e.nativeEvent.stopImmediatePropagation(); + + if (hiddenInputFieldRef.current && 'value' in hiddenInputFieldRef.current) { + hiddenInputFieldRef.current.value = ''; + } + const paymentFileData = values[paymentMethod]?.[methodId]?.files ?? []; + const filteredFileData = paymentFileData.filter((_, i) => i !== subIndex); + const selectedPaymentMethod = values?.[paymentMethod]; + if (!selectedPaymentMethod) { + return; + } + selectedPaymentMethod[methodId] = { + ...selectedPaymentMethod[methodId], + files: filteredFileData, + }; + await setFieldValue(paymentMethod, { ...selectedPaymentMethod }); + setShowBrowseButton(prevState => !prevState); + updateError(); + }; + + return ( + + {() => { + const errorMessage = errors?.[paymentMethod]?.[methodId]?.files?.[subIndex]; + return ( +
+ + + + + } + type='text' + value={values[paymentMethod]?.[methodId]?.files?.[subIndex]?.name ?? ''} + /> + +
+ ); + }} +
+ ); +}; diff --git a/packages/account-v2/src/containers/POOForm/POOFom.tsx b/packages/account-v2/src/containers/POOForm/POOFom.tsx new file mode 100644 index 000000000000..24138c6478fc --- /dev/null +++ b/packages/account-v2/src/containers/POOForm/POOFom.tsx @@ -0,0 +1,66 @@ +import React, { useEffect, useRef } from 'react'; +import { Form, Formik, FormikProps } from 'formik'; +import { useSettings } from '@deriv/api-v2'; +import { Accordion, Button, Divider, Loader } from '@deriv-com/ui'; +import { Timeline } from 'src/components/Timeline'; +import { TPaymentMethod, TPaymentMethodData, TProofOfOwnershipFormValue } from 'src/types'; +import { generatePOOInitialValues } from 'src/utils'; +import { PaymentMethodForm, PaymentMethodTitle } from '../PaymentMethods'; + +type TPOOFormProps = { + paymentMethodData: TPaymentMethodData; +}; + +export const POOForm = ({ paymentMethodData }: TPOOFormProps) => { + const { isLoading } = useSettings(); + const formRef = useRef>(null); + const paymentMethods = Object.keys(paymentMethodData) as TPaymentMethod[]; + + useEffect(() => { + if (formRef.current) { + formRef.current.resetForm(); + } + }, [paymentMethods]); + + if (isLoading) { + return ; + } + + const initialFormValues = generatePOOInitialValues(paymentMethodData); + + return ( + { + //TODO: Implement onSubmit + }} + > + {({ dirty, isSubmitting, isValid }) => ( +
+ + {paymentMethods.map((type, index) => ( + + } + variant='bordered' + > + + + + ))} + +
+ +
+ +
+
+
+ )} +
+ ); +}; diff --git a/packages/account-v2/src/containers/PaymentMethods/ExampleLink.tsx b/packages/account-v2/src/containers/PaymentMethods/ExampleLink.tsx new file mode 100644 index 000000000000..970c38cea83f --- /dev/null +++ b/packages/account-v2/src/containers/PaymentMethods/ExampleLink.tsx @@ -0,0 +1,16 @@ +import React, { Fragment, useState } from 'react'; +import { Text } from '@deriv-com/ui'; +import { MaskCardModal } from '../MaskCardModal/MaskCardModal'; + +export const ExampleLink = () => { + const [isSampleModalOpen, setIsSampleModalOpen] = useState(false); + + return ( + + setIsSampleModalOpen(true)} size='sm'> + See example + + setIsSampleModalOpen(false)} /> + + ); +}; diff --git a/packages/account-v2/src/containers/PaymentMethods/PaymentMethodField.tsx b/packages/account-v2/src/containers/PaymentMethods/PaymentMethodField.tsx new file mode 100644 index 000000000000..5f9affa3f2f6 --- /dev/null +++ b/packages/account-v2/src/containers/PaymentMethods/PaymentMethodField.tsx @@ -0,0 +1,78 @@ +import React from 'react'; +import { useFormikContext } from 'formik'; +import { Input } from '@deriv-com/ui'; +import { TPaymentMethod, TPaymentMethodIdentifier, TPaymentMethodInfo, TProofOfOwnershipFormValue } from 'src/types'; +import { formatIdentifier } from 'src/utils'; +import { FileUploaderField } from '../POOForm/FileUploadField'; + +type TPaymentMethodFieldProps = { + identifier: TPaymentMethodIdentifier; + inputLabel: string; + paymentMethod: TPaymentMethod; + paymentMethodDetailItem: Exclude[number]; +}; + +export const PaymentMethodField = ({ + identifier, + inputLabel, + paymentMethod, + paymentMethodDetailItem, +}: TPaymentMethodFieldProps) => { + const formik = useFormikContext(); + + if (!formik) { + throw new Error('PaymentMethodField must be used within a Formik component'); + } + + const { errors, setFieldValue, values } = formik; + + const controlsToShow = [...Array(paymentMethodDetailItem.documents_required).keys()]; + const paymentID = paymentMethodDetailItem.id as number; + const errorMessage = errors[paymentMethod]?.[paymentID]?.paymentMethodIdentifier ?? ''; + + const handleBlur = ( + identifierType: TPaymentMethodIdentifier, + paymentID: number, + paymentMethodIdentifier?: string + ) => { + handleIdentifierChange(formatIdentifier(identifierType, paymentMethodIdentifier), paymentID); + }; + + const handleIdentifierChange = (paymentMethodIdentifier: string, paymentID: number) => { + const selectedPaymentMethod = values[paymentMethod] || {}; + + selectedPaymentMethod[paymentID] = { + ...selectedPaymentMethod[paymentID], + paymentMethodIdentifier, + }; + + setFieldValue(paymentMethod, { ...selectedPaymentMethod }); + }; + + return ( +
+ handleBlur(identifier, paymentID, e.target.value.trim())} + onChange={e => handleIdentifierChange(e.target.value, paymentID)} + type='text' + value={values[paymentMethod]?.[paymentID]?.paymentMethodIdentifier} + /> +
+ {controlsToShow.map((_, idx) => { + return ( + + ); + })} +
+
+ ); +}; diff --git a/packages/account-v2/src/containers/PaymentMethods/PaymentMethodForm.tsx b/packages/account-v2/src/containers/PaymentMethods/PaymentMethodForm.tsx new file mode 100644 index 000000000000..7431a8b93f97 --- /dev/null +++ b/packages/account-v2/src/containers/PaymentMethods/PaymentMethodForm.tsx @@ -0,0 +1,29 @@ +import React from 'react'; +import { TPaymentMethod, TPaymentMethodIdentifier, TPaymentMethodInfo } from 'src/types'; +import { PaymentMethodField } from './PaymentMethodField'; +import { PaymentMethodInstructions } from './PaymentMethodInstructions'; + +type TPaymentMethodFormProps = { + paymentMethodDetail: TPaymentMethodInfo; +}; + +export const PaymentMethodForm = ({ paymentMethodDetail }: TPaymentMethodFormProps) => { + const paymentMethod = paymentMethodDetail.paymentMethod.toLowerCase() as TPaymentMethod; + + return ( +
+ +
+ {paymentMethodDetail?.items?.map(item => ( + + ))} +
+
+ ); +}; diff --git a/packages/account-v2/src/containers/PaymentMethods/PaymentMethodInstructions.tsx b/packages/account-v2/src/containers/PaymentMethods/PaymentMethodInstructions.tsx index a919ca29d819..7eacaf531d55 100644 --- a/packages/account-v2/src/containers/PaymentMethods/PaymentMethodInstructions.tsx +++ b/packages/account-v2/src/containers/PaymentMethods/PaymentMethodInstructions.tsx @@ -1,7 +1,9 @@ import React from 'react'; import { Text } from '@deriv-com/ui'; +import { LinkText } from 'src/components/LinkText/LinkText'; import { EXTERNAL_LINKS } from 'src/constants'; import { TPaymentMethod } from 'src/types'; +import { ExampleLink } from './ExampleLink'; type TPaymentMethodInstructionsProps = { paymentMethod: TPaymentMethod }; @@ -10,45 +12,38 @@ export const PaymentMethodInstructions = ({ paymentMethod }: TPaymentMethodInstr case 'advcash': case 'neteller': { return ( - + Upload a screenshot of your name and email address from the personal information section. ); } case 'astropay': { return ( -
- - Upload 2 separate screenshots from the personal details page and the account page via{' '} - - - {EXTERNAL_LINKS.astroPayURL} - -
+ + Upload 2 separate screenshots from the personal details page and the account page via + + {EXTERNAL_LINKS.astroPayURL} + + ); } case 'beyonic': { return ( - + Upload your mobile bill statement showing your name and phone number. ); } case 'boleto (d24 voucher)': { return ( - + Upload your bank statement showing your name and account details. ); } case 'jeton': { return ( - + Upload a screenshot of your name and account number from the personal details section. ); @@ -56,40 +51,30 @@ export const PaymentMethodInstructions = ({ paymentMethod }: TPaymentMethodInstr case 'mastercard': case 'visa': { return ( - + 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. + transaction history. ); } case 'onlinenaira': { return (
    - + Upload a screenshot of your account profile section on the website. - + {EXTERNAL_LINKS.onlinenairaProfileURL} - + - + Upload a screenshot of your account number and phone number on the Bank Account/Mobile wallet page at - + {EXTERNAL_LINKS.onlinenairaBankURL} - +
); @@ -97,16 +82,16 @@ export const PaymentMethodInstructions = ({ paymentMethod }: TPaymentMethodInstr case 'pix': { return (
- + Upload a screenshot of either of the following to process the transaction: - + - your account profile section on the website - + - the Account Information page on the app - + - your account details of the bank linked to your account
@@ -114,7 +99,7 @@ export const PaymentMethodInstructions = ({ paymentMethod }: TPaymentMethodInstr } case 'skrill': { return ( - + 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. @@ -122,14 +107,14 @@ export const PaymentMethodInstructions = ({ paymentMethod }: TPaymentMethodInstr } case 'sticpay': { return ( - + Upload a screenshot of your name and email address from the personal details section. ); } case 'webmoney': { return ( - + Upload a screenshot of your account and personal details page with your name, account number, phone number, and email address. @@ -137,14 +122,14 @@ export const PaymentMethodInstructions = ({ paymentMethod }: TPaymentMethodInstr } case 'zingpay': { return ( - + Upload your bank statement showing your name, account number, and transaction history. ); } default: { return ( - + Upload a document showing your name and bank account number or account details. ); diff --git a/packages/account-v2/src/containers/PaymentMethods/PaymentMethodTitle.tsx b/packages/account-v2/src/containers/PaymentMethods/PaymentMethodTitle.tsx new file mode 100644 index 000000000000..ad7d9abe9572 --- /dev/null +++ b/packages/account-v2/src/containers/PaymentMethods/PaymentMethodTitle.tsx @@ -0,0 +1,23 @@ +import React from 'react'; +import { Text } from '@deriv-com/ui'; +import { getPaymentMethodIcon } from 'src/constants'; +import { TPaymentMethod } from 'src/types'; + +type TPaymentMethodTitleProps = { + paymentMethod: string; +}; + +export const PaymentMethodTitle = ({ paymentMethod }: TPaymentMethodTitleProps) => { + const iconConfig = getPaymentMethodIcon(); + + const Icon = iconConfig[paymentMethod.toLowerCase() as TPaymentMethod].light ?? iconConfig.other.dark; + + return ( +
+ + + {paymentMethod} + +
+ ); +}; diff --git a/packages/account-v2/src/containers/PaymentMethods/__tests__/ExampleLink.spec.tsx b/packages/account-v2/src/containers/PaymentMethods/__tests__/ExampleLink.spec.tsx new file mode 100644 index 000000000000..01d5cb231241 --- /dev/null +++ b/packages/account-v2/src/containers/PaymentMethods/__tests__/ExampleLink.spec.tsx @@ -0,0 +1,44 @@ +import React from 'react'; +import { render, screen } from '@testing-library/react'; +import userEvent from '@testing-library/user-event'; +import { ACCOUNT_MODAL_REF } from 'src/constants'; +import { ExampleLink } from '../ExampleLink'; + +describe('ExampleLink', () => { + let elModalRoot: HTMLElement; + beforeAll(() => { + elModalRoot = document.createElement('div'); + elModalRoot.setAttribute('id', ACCOUNT_MODAL_REF.replace('#', '')); + document.body.appendChild(elModalRoot); + }); + + afterAll(() => { + document.body.removeChild(elModalRoot); + }); + + const linkText = 'See example'; + + it('should render component', () => { + render(); + + expect(screen.getByText(linkText)).toBeVisible(); + }); + + it('should open modal when clicked', () => { + render(); + + userEvent.click(screen.getByText(linkText)); + + expect(screen.getByRole('dialog')).toBeVisible(); + }); + + it('should close modal when clicked', () => { + render(); + + userEvent.click(screen.getByText(linkText)); + expect(screen.getByRole('dialog')).toBeVisible(); + + userEvent.click(screen.getByTestId('dt-close-icon')); + expect(screen.queryByRole('dialog')).not.toBeInTheDocument(); + }); +}); diff --git a/packages/account-v2/src/containers/PaymentMethods/__tests__/PaymentMethodTitle.spec.tsx b/packages/account-v2/src/containers/PaymentMethods/__tests__/PaymentMethodTitle.spec.tsx new file mode 100644 index 000000000000..655a69cf9a51 --- /dev/null +++ b/packages/account-v2/src/containers/PaymentMethods/__tests__/PaymentMethodTitle.spec.tsx @@ -0,0 +1,12 @@ +import React from 'react'; +import { render, screen } from '@testing-library/react'; +import { PaymentMethodTitle } from '../PaymentMethodTitle'; + +describe('PaymentMethodTitle', () => { + it('should render Icon and title for provided payment method', () => { + render(); + + expect(screen.getByRole('img')).toBeInTheDocument(); + expect(screen.getByText('VISA')).toBeInTheDocument(); + }); +}); diff --git a/packages/account-v2/src/containers/PaymentMethods/index.ts b/packages/account-v2/src/containers/PaymentMethods/index.ts new file mode 100644 index 000000000000..d0ea6964089d --- /dev/null +++ b/packages/account-v2/src/containers/PaymentMethods/index.ts @@ -0,0 +1,4 @@ +export { PaymentMethodField } from './PaymentMethodField'; +export { PaymentMethodForm } from './PaymentMethodForm'; +export { PaymentMethodInstructions } from './PaymentMethodInstructions'; +export { PaymentMethodTitle } from './PaymentMethodTitle'; diff --git a/packages/account-v2/src/containers/index.ts b/packages/account-v2/src/containers/index.ts index ba2367363f84..64a787ea0f7c 100644 --- a/packages/account-v2/src/containers/index.ts +++ b/packages/account-v2/src/containers/index.ts @@ -5,9 +5,10 @@ export { LoginHistoryTable } from './LoginHistoryTable/LoginHistoryTable'; export { LoginHistoryTableCard } from './LoginHistoryTable/LoginHistoryTableCard'; export { MaskCardModal } from './MaskCardModal/MaskCardModal'; export { OnfidoView } from './Onfido/OnfidoView'; -export { PaymentMethodInstructions } from './PaymentMethods/PaymentMethodInstructions'; +export { PaymentMethodForm, PaymentMethodTitle } from './PaymentMethods'; export { PersonalDetailsFormWithExample } from './PersonalDetailsFormWithExample/PersonalDetailsFormWithExample'; export { POICountrySelector } from './POICountrySelector/POICountrySelector'; export { POIFlowContainer } from './POIFlowContainer/POIFlowContainer'; +export { POOForm } from './POOForm/POOFom'; export { ProofOfIncomeForm } from './ProofOfIncome/ProofOfIncomeForm'; export { ErrorList, VerificationStatus } from './VerificationStatus'; diff --git a/packages/account-v2/src/hooks/__tests__/useAccountLimitsData.spec.ts b/packages/account-v2/src/hooks/__tests__/useAccountLimitsData.spec.ts new file mode 100644 index 000000000000..5a759637f82d --- /dev/null +++ b/packages/account-v2/src/hooks/__tests__/useAccountLimitsData.spec.ts @@ -0,0 +1,113 @@ +import { useAccountLimits, useAccountStatus, useActiveAccount } from '@deriv/api-v2'; +import { renderHook } from '@testing-library/react-hooks'; +import { getAccountLimitValues } from '../../utils/accountLimitsUtils'; +import { useAccountLimitsData } from '../useAccountLimitsData'; + +jest.mock('@deriv/api-v2', () => ({ + ...jest.requireActual('@deriv/api-v2'), + useAccountLimits: jest.fn(), + useAccountStatus: jest.fn(), + useActiveAccount: jest.fn(), +})); + +jest.mock('../../utils/accountLimitsUtils', () => ({ + getAccountLimitValues: jest.fn(), +})); + +const mockAccountLimitsResponse = { + data: { + account_balance: 300000000, + open_positions: 100, + payout: 50000, + remainder: 9350.86, + }, + isLoading: false, +}; + +const mockAccountStatusResponse = { + data: { is_authenticated: true }, + isLoading: false, +}; + +const mockActiveAccountResponse = { + data: { + currency: 'USD', + is_virtual: false, + }, + isLoading: false, +}; + +beforeEach(() => { + jest.clearAllMocks(); +}); + +describe('useAccountLimitsData', () => { + it('should return isLoading true if useAccountLimits is loading', () => { + (useAccountLimits as jest.Mock).mockReturnValue({ + data: undefined, + isLoading: true, + }); + (useAccountStatus as jest.Mock).mockReturnValue(mockAccountStatusResponse); + (useActiveAccount as jest.Mock).mockReturnValue(mockActiveAccountResponse); + + const { result } = renderHook(() => useAccountLimitsData()); + const { isLoading } = result.current; + expect(isLoading).toBeTruthy(); + expect(getAccountLimitValues).not.toHaveBeenCalled(); + }); + + it('should return isLoading true if useAccountStatus is loading', () => { + (useAccountLimits as jest.Mock).mockReturnValue(mockAccountLimitsResponse); + (useAccountStatus as jest.Mock).mockReturnValue({ data: undefined, isLoading: true }); + (useActiveAccount as jest.Mock).mockReturnValue(mockActiveAccountResponse); + + const { result } = renderHook(() => useAccountLimitsData()); + const { isLoading } = result.current; + expect(isLoading).toBeTruthy(); + expect(getAccountLimitValues).not.toHaveBeenCalled(); + }); + + it('should return isLoading true if useActiveAccount is loading', () => { + (useAccountLimits as jest.Mock).mockReturnValue(mockAccountLimitsResponse); + (useAccountStatus as jest.Mock).mockReturnValue(mockAccountStatusResponse); + (useActiveAccount as jest.Mock).mockReturnValue({ data: undefined, isLoading: true }); + + const { result } = renderHook(() => useAccountLimitsData()); + const { isLoading } = result.current; + expect(isLoading).toBeTruthy(); + expect(getAccountLimitValues).not.toHaveBeenCalled(); + }); + + it('should return isVirtual true if useActiveAccount is demo account', () => { + (useAccountLimits as jest.Mock).mockReturnValue({ data: {}, isLoading: false }); + (useAccountStatus as jest.Mock).mockReturnValue(mockAccountStatusResponse); + (useActiveAccount as jest.Mock).mockReturnValue({ data: { is_virtual: true }, isLoading: true }); + + const { result } = renderHook(() => useAccountLimitsData()); + const { isVirtual } = result.current; + expect(isVirtual).toBeTruthy(); + expect(getAccountLimitValues).not.toHaveBeenCalled(); + }); + + it('should return empty array if account limits is undefined', () => { + (useAccountLimits as jest.Mock).mockReturnValue({ data: undefined, isLoading: false }); + (useAccountStatus as jest.Mock).mockReturnValue(mockAccountStatusResponse); + (useActiveAccount as jest.Mock).mockReturnValue(mockActiveAccountResponse); + + const { result } = renderHook(() => useAccountLimitsData()); + const { accountLimits } = result.current; + expect(accountLimits).toEqual([]); + expect(getAccountLimitValues).not.toHaveBeenCalled(); + }); + it('should call getAccountLimitValues with the correct arguments', () => { + (useAccountLimits as jest.Mock).mockReturnValue(mockAccountLimitsResponse); + (useAccountStatus as jest.Mock).mockReturnValue(mockAccountStatusResponse); + (useActiveAccount as jest.Mock).mockReturnValue(mockActiveAccountResponse); + renderHook(() => useAccountLimitsData()); + expect(getAccountLimitValues).toBeCalledWith( + mockAccountLimitsResponse.data, + mockActiveAccountResponse.data.currency, + mockAccountStatusResponse.data.is_authenticated + ); + }); +}); diff --git a/packages/account-v2/src/hooks/index.ts b/packages/account-v2/src/hooks/index.ts index 5ce379ce676d..a54226d97d72 100644 --- a/packages/account-v2/src/hooks/index.ts +++ b/packages/account-v2/src/hooks/index.ts @@ -1,4 +1,4 @@ -export { useAccountLimitsData } from './useAccountLimits'; +export { useAccountLimitsData } from './useAccountLimitsData'; export { useManualForm } from './useManualForm'; export { usePaymentMethodDetails } from './usePaymentMethodDetails'; export { usePOAInfo } from './usePOAInfo'; diff --git a/packages/account-v2/src/hooks/useAccountLimits.ts b/packages/account-v2/src/hooks/useAccountLimitsData.ts similarity index 89% rename from packages/account-v2/src/hooks/useAccountLimits.ts rename to packages/account-v2/src/hooks/useAccountLimitsData.ts index ba2813c09c71..de6b0d848b6e 100644 --- a/packages/account-v2/src/hooks/useAccountLimits.ts +++ b/packages/account-v2/src/hooks/useAccountLimitsData.ts @@ -5,19 +5,19 @@ import { getAccountLimitValues } from '../utils/accountLimitsUtils'; export const useAccountLimitsData = () => { const { data: accountLimits, isLoading: isAccountLimitsLoading } = useAccountLimits(); - const { data: activeAccount, isLoading: isActiveAccountLoading } = useActiveAccount(); const { data: accountStatus, isLoading: isAccountStatusLoading } = useAccountStatus(); + const { data: activeAccount, isLoading: isActiveAccountLoading } = useActiveAccount(); + const { is_authenticated: isAuthenticated } = accountStatus || {}; const currency = (activeAccount?.currency as TCurrency) ?? 'USD'; const isVirtual = activeAccount?.is_virtual; - const { is_authenticated: isAuthenticated } = accountStatus || {}; const isDataLoading = isAccountLimitsLoading || isActiveAccountLoading || isAccountStatusLoading; const formattedAccountLimits = useMemo(() => { - if (!accountLimits) return []; + if (!accountLimits || isDataLoading) return []; return getAccountLimitValues(accountLimits, currency, isAuthenticated); - }, [accountLimits, currency, isAuthenticated]); + }, [accountLimits, currency, isAuthenticated, isDataLoading]); return { accountLimits: formattedAccountLimits, diff --git a/packages/account-v2/src/hooks/usePaymentMethodDetails.ts b/packages/account-v2/src/hooks/usePaymentMethodDetails.ts index cc201e23a33b..d15155ef6ae3 100644 --- a/packages/account-v2/src/hooks/usePaymentMethodDetails.ts +++ b/packages/account-v2/src/hooks/usePaymentMethodDetails.ts @@ -10,7 +10,7 @@ export const usePaymentMethodDetails = () => { const ownershipStatus = ownership?.status?.toLowerCase(); const paymentMethodData = useMemo(() => { - const groups: Partial = {}; + const groups = {} as TPaymentMethodData; const paymentMethodConfig = getPaymentMethodsConfig(); ownership?.requests?.forEach(request => { const paymentMethod = request?.payment_method?.toLowerCase() as TPaymentMethod; diff --git a/packages/account-v2/src/mocks/accountLimitsResponse.mock.ts b/packages/account-v2/src/mocks/accountLimitsResponse.mock.ts new file mode 100644 index 000000000000..3c8fddaa6eea --- /dev/null +++ b/packages/account-v2/src/mocks/accountLimitsResponse.mock.ts @@ -0,0 +1,74 @@ +export const mockAccountLimits = { + account_balance: null, + lifetime_limit: 99999999, + market_specific: { + commodities: [ + { + level: 'market', + name: 'Commodities', + payout_limit: 5000, + profile_name: 'moderate_risk', + turnover_limit: 50000, + }, + ], + forex: [ + { + level: 'submarket', + name: 'Minor Pairs', + payout_limit: 5000, + profile_name: 'moderate_risk', + turnover_limit: 50000, + }, + ], + }, + num_of_days: 30, + num_of_days_limit: 99999999, + open_positions: 100, + payout: 50000, + remainder: 99999999, + withdrawal_for_x_days_monetary: 0, + withdrawal_since_inception_monetary: 0, +}; + +export const mockFormattedAccountsLimits = [ + { category: 'header', title: 'Trading limits', value: 'Limit' }, + { + hintInfo: + '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.', + title: '*Maximum number of open positions', + value: 100, + }, + { + hintInfo: + '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.', + title: '*Maximum account cash balance', + value: 'Not set', + }, + { + hintInfo: + '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.', + title: 'Maximum aggregate payouts on open positions', + value: '50,000.00', + }, + { + category: 'footer', + title: '*Any limits in your Self-exclusion settings will override these default limits.', + }, + { + category: 'header', + hintInfo: 'Represents the maximum volume of contracts that you may purchase in any given trading day.', + title: 'Maximum daily turnover', + value: 'Limit', + }, + { category: 'market', title: 'Commodities', value: '50,000.00' }, + { category: 'submarket', title: 'Minor Pairs', value: '50,000.00' }, + { category: 'header', title: 'Withdrawal limits', value: 'Limit' }, + { title: 'Total withdrawal allowed', value: '99,999,999.00' }, + { title: 'Total withdrawn', value: '0.00' }, + { title: 'Maximum withdrawal remaining', value: '99,999,999.00' }, + { + category: 'footer', + isLessProminent: true, + title: 'Stated limits are subject to change without prior notice.', + }, +]; diff --git a/packages/account-v2/src/modules/package.json b/packages/account-v2/src/modules/package.json index 3b8d41d3bcbb..793cc25ec763 100644 --- a/packages/account-v2/src/modules/package.json +++ b/packages/account-v2/src/modules/package.json @@ -26,7 +26,7 @@ "README.md" ], "peerDependencies": { - "@deriv-com/ui": "~1.14.1", + "@deriv-com/ui": "~1.14.5", "@deriv/quill-icons": "~1.22.4", "@deriv/api-v2": "1.0.0", "yup": "^0.32.11", diff --git a/packages/account-v2/src/pages/AccountLimits/AccountLimits.tsx b/packages/account-v2/src/pages/AccountLimits/AccountLimits.tsx index 1fb97a7a3481..6b8bc590d421 100644 --- a/packages/account-v2/src/pages/AccountLimits/AccountLimits.tsx +++ b/packages/account-v2/src/pages/AccountLimits/AccountLimits.tsx @@ -3,7 +3,7 @@ import { Loader } from '@deriv-com/ui'; import { AccountLimitsSideNote } from 'src/containers'; import { AccountLimitsTable } from 'src/containers/AccountLimitsContainer/AccountLimitsTable'; import { DemoMessage } from '../../components/DemoMessage'; -import { useAccountLimitsData } from '../../hooks/useAccountLimits'; +import { useAccountLimitsData } from '../../hooks'; export const AccountLimits = () => { const { accountLimits, isLoading, isVirtual } = useAccountLimitsData(); @@ -13,7 +13,7 @@ export const AccountLimits = () => { return ; } - if (accountLimits.length) { + if (accountLimits?.length) { return (
diff --git a/packages/account-v2/src/pages/AccountLimits/__test__/AccountLimits.spec.tsx b/packages/account-v2/src/pages/AccountLimits/__test__/AccountLimits.spec.tsx new file mode 100644 index 000000000000..35423997ee9d --- /dev/null +++ b/packages/account-v2/src/pages/AccountLimits/__test__/AccountLimits.spec.tsx @@ -0,0 +1,69 @@ +import React from 'react'; +import { render, screen } from '@testing-library/react'; +import { useAccountLimitsData } from '../../../hooks'; +import { AccountLimits } from '../AccountLimits'; + +jest.mock('../../../hooks/useAccountLimitsData', () => ({ + useAccountLimitsData: jest.fn(), +})); + +jest.mock('@deriv-com/ui', () => ({ + ...jest.requireActual('@deriv-com/ui'), + Loader: jest.fn(() =>
Loading...
), + useDevice: jest.fn(() => ({ + isMobile: false, + })), +})); + +jest.mock('../../../components/DemoMessage', () => ({ + DemoMessage: () =>
DemoMessage
, +})); + +const sampleAccountlimits = [ + { + category: 'header', + title: 'Trading limits', + value: 'Limit', + }, +]; + +describe('AccountLimits', () => { + it('should render loader when isLoading is true', () => { + (useAccountLimitsData as jest.Mock).mockReturnValue({ + isLoading: true, + }); + + render(); + expect(screen.getByText('Loading...')).toBeInTheDocument(); + }); + + it('should render DemoMessage when isVirtual is true', () => { + (useAccountLimitsData as jest.Mock).mockReturnValue({ + isLoading: false, + isVirtual: true, + }); + render(); + expect(screen.getByText('DemoMessage')).toBeInTheDocument(); + }); + + it('should render AccountLimitsTable and AccountLimitsSideNote when accountLimits is not empty', () => { + (useAccountLimitsData as jest.Mock).mockReturnValue({ + accountLimits: sampleAccountlimits, + isLoading: false, + isVirtual: false, + }); + render(); + expect(screen.getByText('Account limits')).toBeInTheDocument(); + expect(screen.getByText('These are default limits that we apply to your accounts')).toBeInTheDocument(); + }); + + it('should return null when accountLimits is empty', () => { + (useAccountLimitsData as jest.Mock).mockReturnValue({ + accountLimits: [], + isLoading: false, + isVirtual: false, + }); + render(); + expect(screen.queryByText('Account limits')).not.toBeInTheDocument(); + }); +}); diff --git a/packages/account-v2/src/pages/ProofOfOwnership/ProofOfOwnership.tsx b/packages/account-v2/src/pages/ProofOfOwnership/ProofOfOwnership.tsx index 8b1491e24d98..9e5735b4d024 100644 --- a/packages/account-v2/src/pages/ProofOfOwnership/ProofOfOwnership.tsx +++ b/packages/account-v2/src/pages/ProofOfOwnership/ProofOfOwnership.tsx @@ -3,6 +3,7 @@ import { DerivLightWaitingPoaIcon } from '@deriv/quill-icons'; import { Button, Loader, Text } from '@deriv-com/ui'; import { IconWithMessage } from 'src/components'; import { AUTH_STATUS_CODES } from 'src/constants'; +import { POOForm } from 'src/containers'; import { usePaymentMethodDetails } from 'src/hooks'; import { TAuthStatusCodes } from 'src/types'; @@ -20,7 +21,7 @@ export const ProofOfOwnership = () => { } if (Object.keys(paymentMethodData)?.length && status !== AUTH_STATUS_CODES.REJECTED) { - return
ProofOfOwnership
; + return ; } switch (status) { diff --git a/packages/account-v2/src/types.ts b/packages/account-v2/src/types.ts index a6ae569bb39a..bbbfb49ef14e 100644 --- a/packages/account-v2/src/types.ts +++ b/packages/account-v2/src/types.ts @@ -29,11 +29,13 @@ export type TAuthStatusCodes = typeof AUTH_STATUS_CODES[keyof typeof AUTH_STATUS export type TPaymentMethod = keyof ReturnType; -export type TPaymentMethodIdentifier = typeof PAYMENT_METHOD_IDENTIFIER[keyof typeof PAYMENT_METHOD_IDENTIFIER]; +export type TPaymentMethodIdentifier = + | typeof PAYMENT_METHOD_IDENTIFIER[keyof typeof PAYMENT_METHOD_IDENTIFIER] + | 'none'; export type TPaymentMethodInfo = { documentsRequired?: number; - identifier: TPaymentMethodIdentifier | 'none'; + identifier: TPaymentMethodIdentifier; inputLabel: string | null; isGenericPM: boolean; items: Exclude< @@ -73,3 +75,5 @@ export type TAccountLimitValues = { }; export type TCurrency = CurrencyConstants.Currency; + +export type TProofOfOwnershipErrors = Record; diff --git a/packages/account-v2/src/utils/__tests__/accountLimitsUtils.spec.ts b/packages/account-v2/src/utils/__tests__/accountLimitsUtils.spec.ts new file mode 100644 index 000000000000..de2dd37b5d0d --- /dev/null +++ b/packages/account-v2/src/utils/__tests__/accountLimitsUtils.spec.ts @@ -0,0 +1,55 @@ +import { mockAccountLimits, mockFormattedAccountsLimits } from '../../mocks/accountLimitsResponse.mock'; +import { getAccountLimitValues } from '../accountLimitsUtils'; + +const currency = 'EUR'; + +describe('getAccountLimitValues', () => { + it('should return trading limits table data', () => { + const result = getAccountLimitValues(mockAccountLimits, currency); + expect(result).toEqual(mockFormattedAccountsLimits); + }); + + it('should return correct trading limits table data when user authenticated', () => { + const newAccountLimits = { ...mockAccountLimits, account_balance: 1000 }; + const result = getAccountLimitValues(newAccountLimits, currency, true); + expect(result).toEqual([ + { category: 'header', title: 'Trading limits', value: 'Limit' }, + { + hintInfo: + '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.', + title: '*Maximum number of open positions', + value: 100, + }, + { + hintInfo: + '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.', + title: '*Maximum account cash balance', + value: '1,000.00', + }, + { + hintInfo: + '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.', + title: 'Maximum aggregate payouts on open positions', + value: '50,000.00', + }, + { + category: 'footer', + title: '*Any limits in your Self-exclusion settings will override these default limits.', + }, + { + category: 'header', + hintInfo: 'Represents the maximum volume of contracts that you may purchase in any given trading day.', + title: 'Maximum daily turnover', + value: 'Limit', + }, + { category: 'market', title: 'Commodities', value: '50,000.00' }, + { category: 'submarket', title: 'Minor Pairs', value: '50,000.00' }, + { category: 'header', title: 'Withdrawal limits', value: 'Limit' }, + { + category: 'footer', + isLessProminent: true, + title: 'Your account is fully authenticated and your withdrawal limits have been lifted', + }, + ]); + }); +}); diff --git a/packages/account-v2/src/utils/accountLimitsUtils.ts b/packages/account-v2/src/utils/accountLimitsUtils.ts index c26e4811d8cc..5d318e4eb33e 100644 --- a/packages/account-v2/src/utils/accountLimitsUtils.ts +++ b/packages/account-v2/src/utils/accountLimitsUtils.ts @@ -117,7 +117,6 @@ export const getAccountLimitValues = (accountLimits: GetLimits, currency: TCurre remainder, withdrawal_since_inception_monetary: withdrawalSinceInceptionMonetary, } = accountLimits; - return [ ...getTradingLimitsTableData(currency, payout, openPositions, accountBalance), ...getMaximumDailyLimiitsTableData(marketSpecific, currency), diff --git a/packages/account-v2/src/utils/pooUtils.ts b/packages/account-v2/src/utils/pooUtils.ts index efe6ef61a73e..f8d5ac8b1cf7 100644 --- a/packages/account-v2/src/utils/pooUtils.ts +++ b/packages/account-v2/src/utils/pooUtils.ts @@ -1,4 +1,13 @@ -import { TPaymentMethod, TPaymentMethodData, TProofOfOwnershipData, TProofOfOwnershipFormValue } from 'src/types'; +import { ValidationConstants } from '@deriv-com/utils'; +import { CARD_NUMBER, MAX_FILE_SIZE, PAYMENT_METHOD_IDENTIFIER } from 'src/constants'; +import { + TPaymentMethod, + TPaymentMethodData, + TPaymentMethodIdentifier, + TProofOfOwnershipData, + TProofOfOwnershipErrors, + TProofOfOwnershipFormValue, +} from 'src/types'; const defaultValue: TProofOfOwnershipData = { documentsRequired: 0, @@ -30,3 +39,178 @@ export const generatePOOInitialValues = (paymentMethodData: TPaymentMethodData) return acc; }, {} as TProofOfOwnershipFormValue); }; + +const maskCardNumber = (cardNumber: string) => { + if ( + cardNumber.length !== CARD_NUMBER.minLength || + (cardNumber.length === CARD_NUMBER.minLength && + ValidationConstants.patterns.invalidFormattedCardNumberCharacters.test(cardNumber)) + ) { + return cardNumber; + } + return `${cardNumber.substring(0, 6)}XXXXXX${cardNumber.substring(12)}`; +}; + +export const formatIdentifier = (identifierType: TPaymentMethodIdentifier, paymentMethodIdentifier?: string) => { + let formattedId = paymentMethodIdentifier?.replace(/\s/g, '') ?? ''; + if (identifierType === PAYMENT_METHOD_IDENTIFIER.cardNumber) { + formattedId = maskCardNumber(formattedId); + } else if ( + PAYMENT_METHOD_IDENTIFIER.email === identifierType || + PAYMENT_METHOD_IDENTIFIER.userID === identifierType + ) { + return formattedId; + } + return formattedId.replace(/(\w{4})/g, '$1 ').trim(); +}; + +const isValidPaymentMethodIdentifier = (paymentMethodIdentifier: string, identifierType: TPaymentMethodIdentifier) => { + const defaultErrorMessage = 'Enter your full card number'; + if (identifierType === PAYMENT_METHOD_IDENTIFIER.cardNumber) { + if (paymentMethodIdentifier.length < CARD_NUMBER.minLength) { + return defaultErrorMessage; + } else if (paymentMethodIdentifier.length === CARD_NUMBER.minLength) { + return !ValidationConstants.patterns.invalidFormattedCardNumberCharacters.test(paymentMethodIdentifier) + ? null + : defaultErrorMessage; + } else if ( + paymentMethodIdentifier.length !== CARD_NUMBER.minLength || + paymentMethodIdentifier.length > CARD_NUMBER.maxLength + ) { + return ValidationConstants.patterns.formattedCardNumber.test(paymentMethodIdentifier) + ? null + : defaultErrorMessage; + } + return null; + } + return null; +}; + +const isValidFile = (file: File) => { + if (!ValidationConstants.patterns.fileType.test(file?.type)) { + return "That file format isn't supported. Please upload .pdf, .png, .jpg, or .jpeg files only."; + } else if (file?.size / 1024 > MAX_FILE_SIZE) { + return 'That file is too big (only up to 8MB allowed). Please upload another file.'; + } + return null; +}; + +type TVerifyPaymentMethodIdentifierPayload = { + errors: TProofOfOwnershipErrors; + paymentMethod: TPaymentMethod; + paymentMethodData: TProofOfOwnershipData; + paymentMethodIndex: number; +}; + +const verifyPaymentMethodIdentifier = ({ + errors, + paymentMethod, + paymentMethodData, + paymentMethodIndex, +}: TVerifyPaymentMethodIdentifierPayload) => { + const verifyPaymentMethodIdentifier = isValidPaymentMethodIdentifier( + paymentMethodData.paymentMethodIdentifier.trim(), + paymentMethodData.identifierType + ); + if (verifyPaymentMethodIdentifier) { + errors[paymentMethod as TPaymentMethod] = { + ...(errors[paymentMethod as TPaymentMethod] ?? {}), + [paymentMethodIndex]: { + ...(errors[paymentMethod as TPaymentMethod]?.[paymentMethodIndex] ?? {}), + paymentMethodIdentifier: verifyPaymentMethodIdentifier, + }, + }; + } else { + delete errors[paymentMethod as TPaymentMethod]?.[paymentMethodIndex]?.paymentMethodIdentifier; + } +}; + +type TVerifyPaymentMethodFilesUploadedPayload = { + errors: TProofOfOwnershipErrors; + file: File; + fileIndex: number; + paymentMethod: TPaymentMethod; + paymentMethodIndex: number; +}; + +const verifyPaymentMethodFilesUploaded = ({ + errors, + file, + fileIndex, + paymentMethod, + paymentMethodIndex, +}: TVerifyPaymentMethodFilesUploadedPayload) => { + if (!file?.name) { + return; + } + const verifyFile = isValidFile(file); + if (verifyFile) { + errors[paymentMethod as TPaymentMethod] = { + ...(errors[paymentMethod as TPaymentMethod] ?? {}), + + [paymentMethodIndex]: { + ...(errors[paymentMethod as TPaymentMethod]?.[paymentMethodIndex] ?? {}), + files: { + ...(errors[paymentMethod as TPaymentMethod]?.[paymentMethodIndex]?.files ?? []), + [fileIndex]: verifyFile, + }, + }, + }; + } else { + delete errors?.[paymentMethod as TPaymentMethod]?.[paymentMethodIndex]?.files?.[fileIndex]; + } +}; + +export const validatePaymentMethods = (values: TProofOfOwnershipFormValue) => { + const errors = {} as TProofOfOwnershipErrors; + + Object.keys(values).forEach(paymentMethod => { + const paymentMethodData = values[paymentMethod as TPaymentMethod]; + Object.keys(paymentMethodData).forEach(id => { + const item = paymentMethodData[id]; + + const isPaymentMethodIdentifierProvided = + item.isGenericPM || !!item?.paymentMethodIdentifier?.trim().length; + const areFilesUploaded = item?.files?.filter(file => file?.name).length === item.documentsRequired; + if (areFilesUploaded && !isPaymentMethodIdentifierProvided) { + errors[paymentMethod as TPaymentMethod] = { + ...(errors[paymentMethod as TPaymentMethod] ?? {}), + [id]: { + ...(errors[paymentMethod as TPaymentMethod]?.[id as unknown as number] ?? {}), + paymentMethodIdentifier: 'Please complete this field', + }, + }; + } else { + delete errors[paymentMethod as TPaymentMethod]?.[id as unknown as number]?.paymentMethodIdentifier; + } + + if (isPaymentMethodIdentifierProvided) { + verifyPaymentMethodIdentifier({ + errors, + paymentMethod: paymentMethod as TPaymentMethod, + paymentMethodData: item, + paymentMethodIndex: id as unknown as number, + }); + if (!areFilesUploaded) { + errors[paymentMethod as TPaymentMethod] = { + ...(errors[paymentMethod as TPaymentMethod] ?? {}), + [id]: { + ...(errors[paymentMethod as TPaymentMethod]?.[id as unknown as number] ?? {}), + files: {}, + }, + }; + } + } + item?.files?.forEach((file, fileIndex) => + verifyPaymentMethodFilesUploaded({ + errors, + file, + fileIndex, + paymentMethod: paymentMethod as TPaymentMethod, + paymentMethodIndex: id as unknown as number, + }) + ); + }); + }); + return errors; +}; diff --git a/packages/account/src/Sections/Profile/PersonalDetails/personal-details-form.tsx b/packages/account/src/Sections/Profile/PersonalDetails/personal-details-form.tsx index ceb28767559c..7a5e8f4ac877 100644 --- a/packages/account/src/Sections/Profile/PersonalDetails/personal-details-form.tsx +++ b/packages/account/src/Sections/Profile/PersonalDetails/personal-details-form.tsx @@ -66,7 +66,6 @@ export const PersonalDetailsForm = observer(({ history }: { history: BrowserHist has_residence, current_landing_company, updateAccountStatus, - is_social_signup, } = client; const { @@ -114,7 +113,7 @@ export const PersonalDetailsForm = observer(({ history }: { history: BrowserHist getSettings(); } setIsLoading(false); - }, [account_settings, is_eu, is_social_signup]); + }, [account_settings, is_eu]); const onSubmit = async (values: GetSettings, { setStatus, setSubmitting }: FormikHelpers) => { setStatus({ msg: '' }); @@ -215,12 +214,7 @@ export const PersonalDetailsForm = observer(({ history }: { history: BrowserHist const PersonalDetailSchema = getPersonalDetailsValidationSchema(is_eu); - const initialValues = getPersonalDetailsInitialValues( - account_settings, - residence_list, - states_list, - is_social_signup - ); + const initialValues = getPersonalDetailsInitialValues(account_settings, residence_list, states_list); return ( )} - -
- -
- {is_social_signup && ( -
- -
- )} -
+
+ +
{!is_virtual && (
localize('Only letters, space, hyphen, period, and apostrophe are allowed.') ), address_postcode: Yup.string() - .max(20, localize('Please enter a Postal/ZIP code under 20 chatacters.')) + .max(20, localize('Please enter a Postal/ZIP code under 20 characters.')) .matches(/^[A-Za-z0-9][A-Za-z0-9\s-]*$/, localize('Only letters, numbers, space, and hyphen are allowed.')), }); export const getPersonalDetailsInitialValues = ( account_settings: GetSettings, residence_list: ResidenceList, - states_list: StatesList, - is_social_signup: boolean + states_list: StatesList ) => { const initialValues: GetSettings = { first_name: account_settings.first_name, @@ -92,10 +91,6 @@ export const getPersonalDetailsInitialValues = ( } }); - if (is_social_signup) { - initialValues.email = account_settings.email; - } - if (account_settings.address_state) { initialValues.address_state = states_list.length ? getLocation(states_list, account_settings.address_state, 'text') @@ -123,7 +118,6 @@ export const makeSettingsRequest = ( const request = settings; if (request.residence) delete request.residence; - if (request.email) delete request.email; if (request.first_name) { request.first_name = request.first_name.trim(); } diff --git a/packages/account/src/Sections/Security/Passkeys/__tests__/passkeys.spec.tsx b/packages/account/src/Sections/Security/Passkeys/__tests__/passkeys.spec.tsx index 566fb723fb89..f69903c0d20d 100644 --- a/packages/account/src/Sections/Security/Passkeys/__tests__/passkeys.spec.tsx +++ b/packages/account/src/Sections/Security/Passkeys/__tests__/passkeys.spec.tsx @@ -62,6 +62,8 @@ jest.mock('@deriv/shared', () => ({ describe('Passkeys', () => { let mock_store: ReturnType, modal_root_el: HTMLElement; const create_passkey = 'Create passkey'; + const error_message = 'We’re experiencing a temporary issue in processing your request. Please try again later.'; + const error_title = 'Unable to process your request'; const tracking_event = 'ce_passkey_account_settings_form'; const getAnalyticsParams = ( @@ -297,9 +299,8 @@ describe('Passkeys', () => { }); it('renders passkeys registration error modal and triggers closing', async () => { - const mock_error = 'registration test error'; (useRegisterPasskey as jest.Mock).mockReturnValue({ - passkey_registration_error: { message: mock_error }, + passkey_registration_error: { message: 'error' }, clearPasskeyRegistrationError: mockClearPasskeyRegistrationError, }); @@ -309,23 +310,23 @@ describe('Passkeys', () => { ); - const try_again_button = screen.getByRole('button', { name: /try again/i }); - expect(screen.getByText(mock_error)).toBeInTheDocument(); - userEvent.click(try_again_button); + const ok_button = screen.getByRole('button', { name: /ok/i }); + expect(screen.getByText(error_message)).toBeInTheDocument(); + expect(screen.getByText(error_title)).toBeInTheDocument(); + userEvent.click(ok_button); await waitFor(() => { expect(mockClearPasskeyRegistrationError).toBeCalledTimes(1); + expect(mockHistoryPush).toHaveBeenCalledWith(routes.traders_hub); }); }); it('renders passkeys list error modal and triggers closing', async () => { - const mock_error = 'list test error'; - (useRegisterPasskey as jest.Mock).mockReturnValue({ passkey_registration_error: null, }); (useGetPasskeysList as jest.Mock).mockReturnValue({ - passkeys_list_error: { message: mock_error }, + passkeys_list_error: { message: 'error' }, reloadPasskeysList: mockReloadPasskeysList, }); @@ -335,11 +336,10 @@ describe('Passkeys', () => { ); - const try_again_button = screen.getByRole('button', { name: /try again/i }); - expect(screen.getByText(mock_error)).toBeInTheDocument(); - userEvent.click(try_again_button); - await waitFor(() => { - expect(mockReloadPasskeysList).toBeCalledTimes(1); - }); + const ok_button = screen.getByRole('button', { name: /ok/i }); + expect(screen.getByText(error_message)).toBeInTheDocument(); + expect(screen.getByText(error_title)).toBeInTheDocument(); + userEvent.click(ok_button); + expect(mockHistoryPush).toHaveBeenCalledWith(routes.traders_hub); }); }); diff --git a/packages/account/src/Sections/Security/Passkeys/passkeys-configs.tsx b/packages/account/src/Sections/Security/Passkeys/passkeys-configs.tsx index 804e4f7c9b84..b02d05da8cd7 100644 --- a/packages/account/src/Sections/Security/Passkeys/passkeys-configs.tsx +++ b/packages/account/src/Sections/Security/Passkeys/passkeys-configs.tsx @@ -121,15 +121,17 @@ export const getModalContent = ({ error, is_passkey_registration_started }: TGet const error_message = isNotSupportedError(error as TServerError) ? ( ) : ( - (error as TServerError)?.message - ); - const button_text = ( - + ); + const button_text = ; const error_message_header = ( - + {isNotSupportedError(error as TServerError) ? ( + + ) : ( + + )} ); diff --git a/packages/account/src/Sections/Security/Passkeys/passkeys.tsx b/packages/account/src/Sections/Security/Passkeys/passkeys.tsx index 6a649e4d0876..1244b92debfd 100644 --- a/packages/account/src/Sections/Security/Passkeys/passkeys.tsx +++ b/packages/account/src/Sections/Security/Passkeys/passkeys.tsx @@ -85,9 +85,6 @@ const Passkeys = observer(() => { }; const onCloseError = () => { - if (passkeys_list_error) { - reloadPasskeysList(); - } if (passkey_registration_error) { clearPasskeyRegistrationError(); } @@ -95,9 +92,7 @@ const Passkeys = observer(() => { const onModalButtonClick = () => { if (error) { onCloseModal(onCloseError); - if ((error as TServerError).name === NOT_SUPPORTED_ERROR_NAME) { - history.push(routes.traders_hub); - } + history.push(routes.traders_hub); } else { passkeysMenuActionEventTrack('create_passkey_reminder_passed'); createPasskey(); diff --git a/packages/api/src/remote_config.json b/packages/api/src/remote_config.json index da9f0f9676b5..0394748ca812 100644 --- a/packages/api/src/remote_config.json +++ b/packages/api/src/remote_config.json @@ -1 +1 @@ -{"cs_chat_livechat":true,"cs_chat_whatsapp":true,"marketing_growthbook":true,"tracking_GTM":true,"tracking_datadog":true,"tracking_hotjar":true,"tracking_rudderstack": true} \ No newline at end of file +{"cs_chat_livechat":true,"cs_chat_whatsapp":true,"marketing_growthbook":true,"passkeys":true,"tracking_GTM":true,"tracking_datadog":true,"tracking_hotjar":true,"tracking_rudderstack":true} \ No newline at end of file diff --git a/packages/appstore/src/components/banners/book-banner/banner-template.tsx b/packages/appstore/src/components/banners/book-banner/banner-template.tsx new file mode 100644 index 000000000000..97f4298e4e83 --- /dev/null +++ b/packages/appstore/src/components/banners/book-banner/banner-template.tsx @@ -0,0 +1,85 @@ +import React from 'react'; +import { useStore } from '@deriv/stores'; +import { Analytics } from '@deriv-com/analytics'; +import { SessionStore } from '@deriv/shared'; +import { getAllowedLanguages, Localize } from '@deriv/translations'; +import { LabelPairedCircleChevronDownXlBoldIcon, LabelPairedXmarkLgBoldIcon } from '@deriv/quill-icons'; +import { TEbooksUrl } from 'Components/banners/book-banner/book-banner'; + +type TBookBannerTemplate = { + e_book_show_way: string; + e_books_url: TEbooksUrl; + e_book_from_landing: keyof TEbooksUrl; + lang: ReturnType; +}; + +const BookBannerTemplate = ({ e_book_show_way, e_books_url, e_book_from_landing, lang }: TBookBannerTemplate) => { + const [is_banner_shows, setIsBannerShows] = React.useState(true); + const { traders_hub, ui } = useStore(); + const { selected_account_type } = traders_hub; + const analytics_data: Parameters[1] = { + banner_name: e_book_from_landing, + account_mode: selected_account_type, + }; + + React.useEffect(() => { + Analytics.trackEvent('ce_tradershub_banner', { + action: 'open', + ...analytics_data, + }); + }, []); + + return ( + + {is_banner_shows ? ( +
+
+ + {e_book_show_way === 'banner-with-link' ? ( + + ) : ( +
+ +
+ )} +
+ { + Analytics.trackEvent('ce_tradershub_banner', { + action: 'close', + ...analytics_data, + }); + SessionStore.remove('show_book'); + setIsBannerShows(false); + }} + /> +
+ ) : null} +
+ ); +}; + +export default BookBannerTemplate; diff --git a/packages/appstore/src/components/banners/book-banner/book-banner.scss b/packages/appstore/src/components/banners/book-banner/book-banner.scss new file mode 100644 index 000000000000..3055294f0e96 --- /dev/null +++ b/packages/appstore/src/components/banners/book-banner/book-banner.scss @@ -0,0 +1,43 @@ +.book-banner-template { + display: flex; + flex-direction: row; + justify-content: space-between; + padding: 1.6rem; + margin-block-end: 2.4rem; + border-radius: 0.8rem; + background: rgba(0, 136, 50, 0.08); + + &__cancel { + cursor: pointer; + } + &__left { + display: flex; + flex-direction: row; + } + &__content { + display: flex; + flex-direction: row; + font-size: 1.4rem; + line-height: 2.2rem; + + label { + padding-inline: 0.8rem; + color: var(--text-prominent); + } + a { + font-weight: bold; + text-decoration-line: underline; + color: var(--text-prominent); + } + @include mobile { + flex-direction: column; + align-content: start; + font-size: 1.2rem; + line-height: 1.8rem; + + label { + margin-block-end: 1.6rem; + } + } + } +} diff --git a/packages/appstore/src/components/banners/book-banner/book-banner.tsx b/packages/appstore/src/components/banners/book-banner/book-banner.tsx new file mode 100644 index 000000000000..210c7b99d841 --- /dev/null +++ b/packages/appstore/src/components/banners/book-banner/book-banner.tsx @@ -0,0 +1,65 @@ +import React from 'react'; +import { SessionStore } from '@deriv/shared'; +import { getAllowedLanguages, getLanguage } from '@deriv/translations'; +import { Analytics } from '@deriv-com/analytics'; +import BookBannerTemplate from 'Components/banners/book-banner/banner-template'; + +type TEbooks = 'forex-ebook' | 'stock-ebook' | 'cryptocurrencies-ebook' | 'synthetic-indices-ebook' | 'chart-patterns'; +export type TEbooksUrl = { [B in TEbooks]: Record, string> }; + +const e_books_url: TEbooksUrl = { + 'forex-ebook': { + EN: 'https://deriv.link/ebook-forex-en-lq', + FR: 'https://deriv.link/ebook-forex-fr-lq', + PT: 'https://deriv.link/ebook-forex-pt-lq', + ES: 'https://deriv.link/ebook-forex-sp-lq', + VI: 'https://deriv.link/ebook-forex-vn-lq', + }, + 'stock-ebook': { + EN: 'https://deriv.link/ebook-stocks-en-lq', + FR: 'https://deriv.link/ebook-stocks-fr-lq', + PT: 'https://deriv.link/ebook-stocks-pt-lq', + ES: 'https://deriv.link/ebook-stocks-sp-lq', + }, + 'cryptocurrencies-ebook': { + EN: 'https://deriv.link/ebook-crypto-en-lq', + FR: 'https://deriv.link/ebook-crypto-fr-lq', + PT: 'https://deriv.link/ebook-crypto-pt-lq', + ES: 'https://deriv.link/ebook-crypto-fr-lq', + }, + 'synthetic-indices-ebook': { + EN: 'https://deriv.link/ebook-synthetics-en-lq', + FR: 'https://deriv.link/ebook-synthetics-fr-lq', + PT: 'https://deriv.link/ebook-synthetics-pt-lq', + ES: 'https://deriv.link/ebook-synthetics-sp-lq', + VI: 'https://deriv.link/ebook-synthetics-vn-lq', + }, + 'chart-patterns': { + EN: 'https://deriv.link/ebook-10chart-en-lq', + FR: 'https://deriv.link/ebook-10charts-fr-lq', + PT: 'https://deriv.link/ebook-10charts-pt-lq', + ES: 'https://deriv.link/ebook-10charts-sp-lq', + }, +}; +const e_book_show_way: string = Analytics.getFeatureValue('e_book', 'inactive'); + +const BookBanner = () => { + const e_book_from_landing: TEbooks = SessionStore.get('show_book'); + const lang = getLanguage(); + + if (e_book_from_landing && e_book_show_way?.includes('banner')) { + return ( + + ); + } + // Will be a part of upcoming a/b experiment + // if (e_book && e_book_show_way === 'popup') return ( ) + return null; +}; + +export default BookBanner; diff --git a/packages/appstore/src/components/banners/book-banner/index.ts b/packages/appstore/src/components/banners/book-banner/index.ts new file mode 100644 index 000000000000..16b1e0e36906 --- /dev/null +++ b/packages/appstore/src/components/banners/book-banner/index.ts @@ -0,0 +1,4 @@ +import BookBanner from './book-banner'; +import './book-banner.scss'; + +export default BookBanner; diff --git a/packages/appstore/src/components/wallets-banner/__tests__/wallets-banner.spec.tsx b/packages/appstore/src/components/banners/wallets-banner/__tests__/wallets-banner.spec.tsx similarity index 100% rename from packages/appstore/src/components/wallets-banner/__tests__/wallets-banner.spec.tsx rename to packages/appstore/src/components/banners/wallets-banner/__tests__/wallets-banner.spec.tsx diff --git a/packages/appstore/src/components/wallets-banner/index.ts b/packages/appstore/src/components/banners/wallets-banner/index.ts similarity index 100% rename from packages/appstore/src/components/wallets-banner/index.ts rename to packages/appstore/src/components/banners/wallets-banner/index.ts diff --git a/packages/appstore/src/components/wallets-banner/wallets-banner-unsuccessful.tsx b/packages/appstore/src/components/banners/wallets-banner/wallets-banner-unsuccessful.tsx similarity index 100% rename from packages/appstore/src/components/wallets-banner/wallets-banner-unsuccessful.tsx rename to packages/appstore/src/components/banners/wallets-banner/wallets-banner-unsuccessful.tsx diff --git a/packages/appstore/src/components/wallets-banner/wallets-banner-upgrade.tsx b/packages/appstore/src/components/banners/wallets-banner/wallets-banner-upgrade.tsx similarity index 100% rename from packages/appstore/src/components/wallets-banner/wallets-banner-upgrade.tsx rename to packages/appstore/src/components/banners/wallets-banner/wallets-banner-upgrade.tsx diff --git a/packages/appstore/src/components/wallets-banner/wallets-banner-upgrading.tsx b/packages/appstore/src/components/banners/wallets-banner/wallets-banner-upgrading.tsx similarity index 100% rename from packages/appstore/src/components/wallets-banner/wallets-banner-upgrading.tsx rename to packages/appstore/src/components/banners/wallets-banner/wallets-banner-upgrading.tsx diff --git a/packages/appstore/src/components/wallets-banner/wallets-banner.scss b/packages/appstore/src/components/banners/wallets-banner/wallets-banner.scss similarity index 100% rename from packages/appstore/src/components/wallets-banner/wallets-banner.scss rename to packages/appstore/src/components/banners/wallets-banner/wallets-banner.scss diff --git a/packages/appstore/src/components/wallets-banner/wallets-banner.tsx b/packages/appstore/src/components/banners/wallets-banner/wallets-banner.tsx similarity index 100% rename from packages/appstore/src/components/wallets-banner/wallets-banner.tsx rename to packages/appstore/src/components/banners/wallets-banner/wallets-banner.tsx 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 1e5baa2e9ffa..d074a3e03c34 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 @@ -3,7 +3,7 @@ import { render, screen } from '@testing-library/react'; import { StoreProvider, mockStore } from '@deriv/stores'; import MainTitleBar from '..'; -jest.mock('Components/wallets-banner', () => jest.fn(() => 'WalletsBanner')); +jest.mock('Components/banners/wallets-banner', () => jest.fn(() => 'WalletsBanner')); describe('MainTitleBar', () => { const mock_store = mockStore({ diff --git a/packages/appstore/src/components/main-title-bar/index.tsx b/packages/appstore/src/components/main-title-bar/index.tsx index e73672c65ed2..afda0527277e 100644 --- a/packages/appstore/src/components/main-title-bar/index.tsx +++ b/packages/appstore/src/components/main-title-bar/index.tsx @@ -1,17 +1,21 @@ import React from 'react'; -import { Text, DesktopWrapper, Loading, MobileWrapper, Tabs, Icon } from '@deriv/components'; +import { Text, DesktopWrapper, MobileWrapper, Tabs, Icon, Loading } from '@deriv/components'; import { ContentFlag, makeLazyLoader, moduleLoader } from '@deriv/shared'; import { observer, useStore } from '@deriv/stores'; import { Localize, localize } from '@deriv/translations'; import { useWalletMigration } from '@deriv/hooks'; import RegulationsSwitcherLoader from 'Components/pre-loader/regulations-switcher-loader'; +import BookBanner from 'Components/banners/book-banner'; import AccountTypeDropdown from './account-type-dropdown'; import AssetSummary from './asset-summary'; import RegulatorSwitcher from './regulators-switcher'; import './main-title-bar.scss'; const WalletsBanner = makeLazyLoader( - () => moduleLoader(() => import(/* webpackChunkName: "Components_wallets-banner" */ 'Components/wallets-banner')), + () => + moduleLoader( + () => import(/* webpackChunkName: "Components_wallets-banner" */ 'Components/banners/wallets-banner') + ), () => )(); @@ -31,6 +35,7 @@ const MainTitleBar = () => { return ( + {show_wallets_banner && }
diff --git a/packages/bot-skeleton/src/scratch/hooks/workspace_svg.js b/packages/bot-skeleton/src/scratch/hooks/workspace_svg.js index daff04eb8c6b..8a8097f13ea2 100644 --- a/packages/bot-skeleton/src/scratch/hooks/workspace_svg.js +++ b/packages/bot-skeleton/src/scratch/hooks/workspace_svg.js @@ -204,6 +204,10 @@ Blockly.WorkspaceSvg.prototype.cleanUp = function (x = 0, y = 0, blocks_to_clean const filtered_top_blocks = top_blocks.filter(block => !block.isMainBlock()); filtered_top_blocks.forEach(block => { + if (this.RTL && block.comment) { + block.RTL = true; + block.comment.needsAutoPositioning_ = true; + } const xy = block.getRelativeToSurfaceXY(); const cursor_x = is_import ? x : -xy.x; const cursor_y = original_cursor_y - (is_import ? 0 : xy.y); diff --git a/packages/bot-skeleton/src/scratch/utils/index.js b/packages/bot-skeleton/src/scratch/utils/index.js index ffe891d56718..e707f1ed769e 100644 --- a/packages/bot-skeleton/src/scratch/utils/index.js +++ b/packages/bot-skeleton/src/scratch/utils/index.js @@ -445,6 +445,23 @@ export const scrollWorkspace = (workspace, scroll_amount, is_horizontal, is_chro if (block_canvas_rect_top > toolbox_top) { scroll_y = delta_y; } + + /* NOTE: This was done for mobile view since + when we try to calculate the scroll amount for RTL, + we need to realign the scroll to(0, 0) for the workspace. + Then, from the width of the canvas, we need to subtract the width of the block. + To Make the block visible in the view width + */ + + if (window.innerWidth < 768) { + workspace.scrollbar.set(0, scroll_y); + const calc_scroll = + Blockly.derivWorkspace.svgBlockCanvas_?.getBoundingClientRect().width - + Blockly.derivWorkspace.svgBlockCanvas_?.getBoundingClientRect().left + + 60; + workspace.scrollbar.set(calc_scroll, scroll_y); + return; + } } workspace.scrollbar.set(scroll_x, scroll_y); }; diff --git a/packages/bot-web-ui/package.json b/packages/bot-web-ui/package.json index acde5bbbd54a..26c845a0f6ca 100644 --- a/packages/bot-web-ui/package.json +++ b/packages/bot-web-ui/package.json @@ -75,7 +75,7 @@ "@deriv/api-types": "^1.0.172", "@deriv/bot-skeleton": "^1.0.0", "@deriv/components": "^1.0.0", - "@deriv/deriv-charts": "^2.1.13", + "@deriv/deriv-charts": "^2.1.14", "@deriv/shared": "^1.0.0", "@deriv/stores": "^1.0.0", "@deriv/translations": "^1.0.0", diff --git a/packages/bot-web-ui/src/components/bot-notification/bot-notification-utils.ts b/packages/bot-web-ui/src/components/bot-notification/bot-notification-utils.ts index ba335b4182d0..4fea10f2bf16 100644 --- a/packages/bot-web-ui/src/components/bot-notification/bot-notification-utils.ts +++ b/packages/bot-web-ui/src/components/bot-notification/bot-notification-utils.ts @@ -1,5 +1,12 @@ import { toast, ToastPosition, TypeOptions } from 'react-toastify'; import { localize } from '@deriv/translations'; +import { isDbotRTL } from '@deriv/bot-skeleton/src/utils/workspace'; + +const getToastPosition = () => { + const is_RTL = isDbotRTL(); + if (is_RTL) return toast.POSITION.BOTTOM_RIGHT; + return toast.POSITION.BOTTOM_LEFT; +}; export type TNotificationContent = { message: string; @@ -37,7 +44,7 @@ export const notification_message = { export const notification_style = { type: toast.TYPE.DEFAULT, - position: toast.POSITION.BOTTOM_LEFT, + position: getToastPosition(), autoClose: 6000, hideProgressBar: true, closeOnClick: false, diff --git a/packages/bot-web-ui/src/stores/load-modal-store.ts b/packages/bot-web-ui/src/stores/load-modal-store.ts index 69a2e9b5cec0..7809db58fb24 100644 --- a/packages/bot-web-ui/src/stores/load-modal-store.ts +++ b/packages/bot-web-ui/src/stores/load-modal-store.ts @@ -244,7 +244,6 @@ export default class LoadModalStore implements ILoadModalStore { if (this.recent_workspace) { (this.recent_workspace as any).RTL = isDbotRTL(); } - await load({ block_string: this.selected_strategy?.xml, drop_event: {}, @@ -270,7 +269,7 @@ export default class LoadModalStore implements ILoadModalStore { removeExistingWorkspace(this.selected_strategy.id); await load({ - block_string: this.selected_strategy.xml, + block_string: this.selected_strategy?.xml, strategy_id: this.selected_strategy.id, file_name: this.selected_strategy.name, workspace: window.Blockly.derivWorkspace, @@ -293,7 +292,6 @@ export default class LoadModalStore implements ILoadModalStore { if (this.loaded_local_file) { this.readFile(false, {} as DragEvent, this.loaded_local_file); } - this.is_open_button_loading = false; }; onActiveIndexChange = (): void => { @@ -532,6 +530,7 @@ export default class LoadModalStore implements ILoadModalStore { load_options.file_name = file_name; } await load(load_options); + this.is_open_button_loading = false; }); reader.readAsText(file); }; diff --git a/packages/bot-web-ui/src/stores/toolbox-store.js b/packages/bot-web-ui/src/stores/toolbox-store.js index 02f842774b26..9319e815cc6c 100644 --- a/packages/bot-web-ui/src/stores/toolbox-store.js +++ b/packages/bot-web-ui/src/stores/toolbox-store.js @@ -38,6 +38,7 @@ export default class ToolboxStore { sub_category_index = []; toolbox_dom = null; toolbox_examples = null; + is_workspace_scroll_adjusted = false; onMount(toolbox_ref) { this.adjustWorkspace(); @@ -49,7 +50,7 @@ export default class ToolboxStore { () => this.is_toolbox_open, is_toolbox_open => { if (is_toolbox_open) { - this.adjustWorkspace(); + //this.adjustWorkspace(); // Emit event to GTM const { gtm } = this.core; gtm.pushDataLayer({ event: 'dbot_toolbox_visible', value: true }); @@ -91,18 +92,36 @@ export default class ToolboxStore { } // eslint-disable-next-line class-methods-use-this adjustWorkspace() { - setTimeout(() => { + // NOTE: added this load modal open check to prevent scroll when load modal is open + if (!this.is_workspace_scroll_adjusted && !this.root_store.load_modal.is_load_modal_open) { const workspace = Blockly.derivWorkspace; - const toolbox_width = document.getElementById('gtm-toolbox')?.getBoundingClientRect().width || 0; - const block_canvas_rect = workspace.svgBlockCanvas_?.getBoundingClientRect(); // eslint-disable-line - - if (Math.round(block_canvas_rect?.left) <= toolbox_width) { - const scroll_distance = this.core.ui.is_mobile - ? toolbox_width - block_canvas_rect.left + 50 - : toolbox_width - block_canvas_rect.left + 36; - scrollWorkspace(workspace, scroll_distance, true, false); - } - }, 300); + this.is_workspace_scroll_adjusted = true; + + setTimeout(() => { + const toolbox_width = document.getElementById('gtm-toolbox')?.getBoundingClientRect().width || 0; + const toolbar_width = document.querySelector('.toolbar__group-btn')?.getBoundingClientRect().width || 0; + const block_canvas_rect = workspace.svgBlockCanvas_?.getBoundingClientRect(); // eslint-disable-line + + // Need to set the direction right if the workspace is RTL + const is_workspace_LTR = !workspace.RTL; + let canvas_direction = block_canvas_rect.left; + if (!is_workspace_LTR && window.innerWidth < 768) canvas_direction = block_canvas_rect.right; + + // Need to set the scroll distance based on the device + const scroll_distance_mobile = toolbox_width + toolbar_width - canvas_direction + 20; + const scroll_distance_desktop = toolbox_width - canvas_direction + 36; + const scroll_distance = this.core.ui.is_mobile ? scroll_distance_mobile : scroll_distance_desktop; + + // Scroll the workspace if the toolbox is overlapping the workspace + if (Math.round(block_canvas_rect?.left) <= toolbox_width) { + scrollWorkspace(workspace, scroll_distance, true, false); + } else if (window.innerWidth < 768 && workspace.RTL) { + scrollWorkspace(workspace, scroll_distance, true, false); + } + + this.is_workspace_scroll_adjusted = false; + }, 300); + } } toggleDrawer() { diff --git a/packages/cashier-v2/package.json b/packages/cashier-v2/package.json index 3c218f638adf..cb20db352836 100644 --- a/packages/cashier-v2/package.json +++ b/packages/cashier-v2/package.json @@ -13,8 +13,8 @@ "start": "rimraf dist && npm run test && npm run serve" }, "dependencies": { - "@deriv-com/ui": "^1.14.1", - "@deriv-com/utils": "^0.0.14", + "@deriv-com/ui": "^1.14.5", + "@deriv-com/utils": "^0.0.20", "@deriv/api-v2": "^1.0.0", "@deriv/integration": "^1.0.0", "@deriv/quill-icons": "^1.22.4", diff --git a/packages/cfd/package.json b/packages/cfd/package.json index cd3cce44850d..656e7bd02366 100644 --- a/packages/cfd/package.json +++ b/packages/cfd/package.json @@ -84,7 +84,7 @@ }, "dependencies": { "@deriv-com/analytics": "1.4.13", - "@deriv-com/utils": "^0.0.14", + "@deriv-com/utils": "^0.0.20", "@deriv/account": "^1.0.0", "@deriv/api": "^1.0.0", "@deriv/api-types": "^1.0.172", diff --git a/packages/cfd/src/Containers/__tests__/cfd-financial-stp-real-account-signup.spec.js b/packages/cfd/src/Containers/__tests__/cfd-financial-stp-real-account-signup.spec.js index 17aef42a47cc..d98092f8f6e8 100644 --- a/packages/cfd/src/Containers/__tests__/cfd-financial-stp-real-account-signup.spec.js +++ b/packages/cfd/src/Containers/__tests__/cfd-financial-stp-real-account-signup.spec.js @@ -84,7 +84,7 @@ describe('', () => { jest.clearAllMocks(); }); - const authenticated_with_idv = { + const verified_jurisdiction = { bvi: 1, labuan: 1, maltainvest: 0, @@ -138,7 +138,7 @@ describe('', () => { account_status: { authentication: { document: { - authenticated_with_idv, + verified_jurisdiction, status: 'none', }, attempts: { @@ -256,7 +256,7 @@ describe('', () => { }); it('should check for POA status when Jurisdiction is Labuan and resubmit status is set to true', () => { - const authenticated_with_idv = { + const verified_jurisdiction = { bvi: 1, labuan: 0, maltainvest: 0, @@ -271,7 +271,7 @@ describe('', () => { account_status: { authentication: { document: { - authenticated_with_idv, + verified_jurisdiction, status: 'none', }, attempts: { diff --git a/packages/cfd/src/Containers/cfd-compare-accounts/__tests__/cfd-compare-accounts-button.spec.tsx b/packages/cfd/src/Containers/cfd-compare-accounts/__tests__/cfd-compare-accounts-button.spec.tsx deleted file mode 100644 index a7395b64d0d6..000000000000 --- a/packages/cfd/src/Containers/cfd-compare-accounts/__tests__/cfd-compare-accounts-button.spec.tsx +++ /dev/null @@ -1,273 +0,0 @@ -import React from 'react'; -import { MemoryRouter } from 'react-router-dom'; -import { render, screen, waitFor } from '@testing-library/react'; -import userEvent from '@testing-library/user-event'; -import { StoreProvider, mockStore } from '@deriv/stores'; -import CFDCompareAccountsButton from '../cfd-compare-accounts-button'; - -jest.mock('react-router-dom', () => ({ - ...jest.requireActual('react-router-dom'), - useHistory: () => ({ - push: jest.fn(), - }), -})); - -jest.mock('@deriv/components/src/components/cfd-compare-accounts-carousel/cfd-compare-accounts-carousel', () => - jest.fn(() =>
CFD Carousel
) -); - -const cfd_store_mock = { - current_list: {}, - setAccountType: jest.fn(), - setJurisdictionSelectedShortcode: jest.fn(), - enableCFDPasswordModal: jest.fn(), - toggleCFDVerificationModal: jest.fn(), -}; - -describe('', () => { - const mocked_props = { - trading_platforms: { - platform: 'mt5', - shortcode: 'svg', - market_type: 'gaming', - }, - is_demo: false, - }; - - it('should render the component with correct mocked_props', () => { - const mock = mockStore({ - client: { - account_status: { cashier_validation: ['system_maintenance'] }, - current_currency_type: 'crypto', - is_logged_in: true, - }, - modules: { cfd: cfd_store_mock }, - traders_hub: { - getAccount: jest.fn(), - }, - }); - - const wrapper = ({ children }: { children: JSX.Element }) => ( - {children} - ); - - render(, { - wrapper, - }); - - const buttonElement = screen.getByRole('button'); - - expect(buttonElement).toBeInTheDocument(); - expect(buttonElement).toHaveClass('compare-cfd-account__button'); - expect(buttonElement).toHaveTextContent('Add'); - expect(buttonElement).toBeEnabled(); - }); - - it('should open the account creation modal', async () => { - jest.mock('@deriv/shared', () => ({ - getAuthenticationStatusInfo: jest.fn(() => ({ - poi_or_poa_not_submitted: false, - poi_acknowledged_for_vanuatu_maltainvest: true, - poi_acknowledged_for_bvi_labuan: true, - poa_acknowledged: true, - poa_pending: false, - })), - })); - - const mock = mockStore({ - client: { - account_status: { cashier_validation: ['system_maintenance'] }, - current_currency_type: 'crypto', - is_logged_in: true, - should_restrict_bvi_account_creation: false, - should_restrict_vanuatu_account_creation: false, - }, - modules: { - cfd: { - ...cfd_store_mock, - current_list: {}, - }, - }, - traders_hub: { - getAccount: jest.fn(), - }, - }); - - const wrapper = ({ children }: { children: JSX.Element }) => ( - {children} - ); - render( - - - , - { - wrapper, - } - ); - - const buttonElement = screen.getByRole('button', { name: /Add/i }); - - userEvent.click(buttonElement); - await waitFor(() => { - expect(cfd_store_mock.setAccountType).toHaveBeenCalledTimes(1); - expect(mock.common.setAppstorePlatform).toHaveBeenCalledWith('mt5'); - expect(mock.modules.cfd.setJurisdictionSelectedShortcode).toHaveBeenCalled(); - expect(mock.modules.cfd.toggleCFDVerificationModal).toHaveBeenCalledTimes(0); - }); - }); - - it('should open account verification modal for unauthorized account', async () => { - jest.mock('@deriv/shared', () => ({ - getAuthenticationStatusInfo: jest.fn(() => ({ - poi_or_poa_not_submitted: true, - poi_acknowledged_for_vanuatu_maltainvest: false, - poi_acknowledged_for_bvi_labuan: false, - poa_acknowledged: false, - poa_pending: true, - })), - })); - - const mock = mockStore({ - client: { - account_status: { cashier_validation: ['system_maintenance'] }, - current_currency_type: 'crypto', - is_logged_in: true, - should_restrict_bvi_account_creation: false, - should_restrict_vanuatu_account_creation: false, - }, - modules: { - cfd: { - ...cfd_store_mock, - current_list: {}, - }, - }, - traders_hub: { - getAccount: jest.fn(), - }, - }); - - const wrapper = ({ children }: { children: JSX.Element }) => ( - {children} - ); - render( - - - , - { - wrapper, - } - ); - - const buttonElement = screen.getByRole('button', { name: /Add/i }); - - userEvent.click(buttonElement); - await waitFor(() => { - expect(mock.common.setAppstorePlatform).toHaveBeenCalledWith('mt5'); - expect(mock.modules.cfd.setJurisdictionSelectedShortcode).toHaveBeenCalled(); - expect(mock.modules.cfd.toggleCFDVerificationModal).toHaveBeenCalledTimes(1); - }); - }); - - it('should open account creation modal for dxtrade account', async () => { - jest.mock('@deriv/shared', () => ({ - getAuthenticationStatusInfo: jest.fn(() => ({ - poi_or_poa_not_submitted: true, - poi_acknowledged_for_vanuatu_maltainvest: false, - poi_acknowledged_for_bvi_labuan: false, - poa_acknowledged: false, - poa_pending: true, - })), - })); - - const mock = mockStore({ - client: { - account_status: { cashier_validation: ['system_maintenance'] }, - current_currency_type: 'crypto', - is_logged_in: true, - should_restrict_bvi_account_creation: false, - should_restrict_vanuatu_account_creation: false, - }, - modules: { - cfd: { - ...cfd_store_mock, - current_list: {}, - }, - }, - traders_hub: { - getAccount: jest.fn(), - }, - }); - - const wrapper = ({ children }: { children: JSX.Element }) => ( - {children} - ); - render( - - - , - { - wrapper, - } - ); - - const buttonElement = screen.getByRole('button', { name: /Add/i }); - - userEvent.click(buttonElement); - await waitFor(() => { - expect(mock.common.setAppstorePlatform).toHaveBeenCalledWith('dxtrade'); - expect(mock.traders_hub.getAccount).toHaveBeenCalled(); - }); - }); - - it('should disable the button and display "Added" text when account is already added', () => { - const mock = mockStore({ - client: { - account_status: { cashier_validation: ['system_maintenance'] }, - current_currency_type: 'crypto', - is_logged_in: true, - }, - modules: { - cfd: { - current_list: { - 'mt5.real.synthetic_svg@p01_ts03': { - landing_company_short: 'svg', - account_type: 'real', - market_type: 'synthetic', - }, - }, - }, - }, - }); - - const wrapper = ({ children }: { children: JSX.Element }) => ( - {children} - ); - render( - - - , - { - wrapper, - } - ); - - const buttonElement = screen.getByRole('button'); - - expect(buttonElement).toBeDisabled(); - expect(buttonElement).toHaveTextContent('Added'); - }); -}); diff --git a/packages/cfd/src/Containers/cfd-compare-accounts/__tests__/cfd-compare-accounts-card.spec.tsx b/packages/cfd/src/Containers/cfd-compare-accounts/__tests__/cfd-compare-accounts-card.spec.tsx index 42747313cc72..ae757c4bd6bb 100644 --- a/packages/cfd/src/Containers/cfd-compare-accounts/__tests__/cfd-compare-accounts-card.spec.tsx +++ b/packages/cfd/src/Containers/cfd-compare-accounts/__tests__/cfd-compare-accounts-card.spec.tsx @@ -47,11 +47,6 @@ describe('', () => { render(, { wrapper }); - const buttonElement = screen.getByRole('button', { name: /Add/i }); - expect(buttonElement).toBeInTheDocument(); - expect(buttonElement).toHaveClass('compare-cfd-account__button'); - expect(buttonElement).toBeEnabled(); - expect(screen.queryByText(/New!/i)).not.toBeInTheDocument(); }); @@ -79,11 +74,6 @@ describe('', () => { render(, { wrapper }); - const buttonElement = screen.getByRole('button', { name: /Add/i }); - expect(buttonElement).toBeInTheDocument(); - expect(buttonElement).toHaveClass('compare-cfd-account__button'); - expect(buttonElement).toBeEnabled(); - expect(screen.queryByText(/New!/i)).not.toBeInTheDocument(); }); diff --git a/packages/cfd/src/Containers/cfd-compare-accounts/cfd-compare-accounts-button.tsx b/packages/cfd/src/Containers/cfd-compare-accounts/cfd-compare-accounts-button.tsx deleted file mode 100644 index 692a3d51e338..000000000000 --- a/packages/cfd/src/Containers/cfd-compare-accounts/cfd-compare-accounts-button.tsx +++ /dev/null @@ -1,124 +0,0 @@ -import React from 'react'; -import { getAuthenticationStatusInfo, WS } from '@deriv/shared'; -import { Button } from '@deriv/components'; -import { localize } from '@deriv/translations'; -import { observer, useStore } from '@deriv/stores'; -import { GetSettings, GetAccountSettingsResponse } from '@deriv/api-types'; -import { TCompareAccountsCard } from 'Components/props.types'; -import { - getMarketType, - getAccountVerficationStatus, - isMt5AccountAdded, - isDxtradeAccountAdded, - isCTraderAccountAdded, -} from '../../Helpers/compare-accounts-config'; -import { CATEGORY, CFD_PLATFORMS } from '../../Helpers/cfd-config'; -import useCompareAccountsButtonHandler from '../../hooks/useCompareAccountsButtonHandler'; - -const CFDCompareAccountsButton = observer(({ trading_platforms, is_demo }: TCompareAccountsCard) => { - const market_type = getMarketType(trading_platforms); - const market_type_shortcode = market_type.concat('_', trading_platforms.shortcode ?? ''); - const { - modules: { cfd }, - client, - } = useStore(); - - const { current_list } = cfd; - - const { - account_status, - account_settings, - should_restrict_bvi_account_creation, - should_restrict_vanuatu_account_creation, - is_logged_in, - is_virtual, - setAccountSettings, - updateMT5Status, - } = client; - - const { - poi_or_poa_not_submitted, - poi_acknowledged_for_maltainvest, - poi_acknowledged_for_bvi_labuan_vanuatu, - poa_resubmit_for_labuan, - poa_acknowledged, - } = getAuthenticationStatusInfo(account_status); - - const type_of_account = { - category: is_demo ? CATEGORY.DEMO : CATEGORY.REAL, - type: market_type, - }; - - const [has_submitted_personal_details, setHasSubmittedPersonalDetails] = React.useState(false); - let is_account_added = false; - - if (trading_platforms.platform === CFD_PLATFORMS.MT5) { - is_account_added = isMt5AccountAdded(current_list, market_type_shortcode, is_demo); - } else if (trading_platforms.platform === CFD_PLATFORMS.DXTRADE) { - is_account_added = isDxtradeAccountAdded(current_list, is_demo); - } else if (trading_platforms.platform === CFD_PLATFORMS.CTRADER) { - is_account_added = isCTraderAccountAdded(current_list, is_demo); - } - - React.useEffect(() => { - if (is_logged_in && !is_virtual) { - updateMT5Status(); - } - if (!has_submitted_personal_details) { - let get_settings_response: GetSettings = {}; - if (!account_settings) { - WS.authorized.storage.getSettings().then((response: GetAccountSettingsResponse) => { - get_settings_response = response.get_settings as GetSettings; - setAccountSettings(response.get_settings as GetSettings); - }); - } else { - get_settings_response = account_settings; - } - const { citizen, place_of_birth, tax_residence, tax_identification_number, account_opening_reason } = - get_settings_response; - if (citizen && place_of_birth && tax_residence && tax_identification_number && account_opening_reason) { - setHasSubmittedPersonalDetails(true); - } - } - }, [ - account_settings, - has_submitted_personal_details, - is_logged_in, - is_virtual, - setAccountSettings, - updateMT5Status, - ]); - - const is_account_status_verified = getAccountVerficationStatus( - market_type_shortcode, - poi_or_poa_not_submitted, - poi_acknowledged_for_maltainvest, - poi_acknowledged_for_bvi_labuan_vanuatu, - poa_acknowledged, - poa_resubmit_for_labuan, - has_submitted_personal_details, - should_restrict_bvi_account_creation, - should_restrict_vanuatu_account_creation, - is_demo - ); - - const { onClickAdd } = useCompareAccountsButtonHandler( - trading_platforms, - is_account_status_verified, - type_of_account - ); - - return ( - - ); -}); - -export default CFDCompareAccountsButton; 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 75e779fefa26..43bc741a695e 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 @@ -5,7 +5,6 @@ import { CFD_PLATFORMS } from '@deriv/shared'; import { Localize } from '@deriv/translations'; import { TCompareAccountsCard } from 'Components/props.types'; -import CFDCompareAccountsButton from './cfd-compare-accounts-button'; import CFDCompareAccountsDescription from './cfd-compare-accounts-description'; import CFDCompareAccountsPlatformLabel from './cfd-compare-accounts-platform-label'; import CFDCompareAccountsTitleIcon from './cfd-compare-accounts-title-icon'; @@ -40,7 +39,6 @@ const CFDCompareAccountsCard = ({ trading_platforms, is_eu_user, is_demo }: TCom
)} -
); 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 abb0c661f0e0..1e3e20153a7e 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 @@ -49,6 +49,7 @@ width: 27rem; border: 1px solid var(--general-hover); border-radius: 2.4rem; + padding-bottom: 1.6rem; &:hover { box-shadow: 0 2px 8px 0 var(--shadow-menu); } @@ -83,7 +84,7 @@ padding: 4rem 2.4rem 0; border-radius: 2.4rem; @include mobile { - padding: 7rem 1.5rem 0; + padding: 7rem 1.5rem 1.5rem; } } &-text-container { diff --git a/packages/cfd/src/Containers/ctrader-derivx-trade-modal.tsx b/packages/cfd/src/Containers/ctrader-derivx-trade-modal.tsx index 9a4bc5816558..3d060cf4443b 100644 --- a/packages/cfd/src/Containers/ctrader-derivx-trade-modal.tsx +++ b/packages/cfd/src/Containers/ctrader-derivx-trade-modal.tsx @@ -216,7 +216,11 @@ const CTraderDerivXTradeModal = ({ weight='bold' > -
+
{has_derived_and_financial_mt5 ? ( { - switch (market_type_shortcode) { - case MARKET_TYPE_SHORTCODE.ALL_SVG: - case MARKET_TYPE_SHORTCODE.SYNTHETIC_SVG: - case MARKET_TYPE_SHORTCODE.FINANCIAL_SVG: - return true; - case MARKET_TYPE_SHORTCODE.SYNTHETIC_BVI: - case MARKET_TYPE_SHORTCODE.FINANCIAL_BVI: - if ( - poi_acknowledged_for_bvi_labuan_vanuatu && - !poi_or_poa_not_submitted && - !should_restrict_bvi_account_creation && - has_submitted_personal_details && - poa_acknowledged - ) { - return true; - } - return false; - case MARKET_TYPE_SHORTCODE.SYNTHETIC_VANUATU: - case MARKET_TYPE_SHORTCODE.FINANCIAL_VANUATU: - if ( - poi_acknowledged_for_bvi_labuan_vanuatu && - !poi_or_poa_not_submitted && - !should_restrict_vanuatu_account_creation && - has_submitted_personal_details && - poa_acknowledged - ) { - return true; - } - return false; - - case MARKET_TYPE_SHORTCODE.FINANCIAL_LABUAN: - if ( - poi_acknowledged_for_bvi_labuan_vanuatu && - poa_acknowledged && - has_submitted_personal_details && - !poa_resubmit_for_labuan - ) { - return true; - } - return false; - - case MARKET_TYPE_SHORTCODE.FINANCIAL_MALTA_INVEST: - if ((poi_acknowledged_for_maltainvest && poa_acknowledged) || is_demo) { - return true; - } - return false; - default: - return false; - } -}; - -// Check what MT5 accounts are added based on jurisdisction -const isMt5AccountAdded = (current_list: Record, item: string, is_demo?: boolean) => - Object.entries(current_list).some(([key, value]) => { - const [market, type] = item.split('_'); - const current_account_type = is_demo ? CATEGORY.DEMO : CATEGORY.REAL; - return ( - value.market_type === market && - value.landing_company_short === type && - value.account_type === current_account_type && - key.includes(CFD_PLATFORMS.MT5) - ); - }); - -const isDxtradeAccountAdded = (current_list: Record, is_demo?: boolean) => - Object.entries(current_list).some(([key, value]) => { - const current_account_type = is_demo ? CATEGORY.DEMO : CATEGORY.REAL; - return value.account_type === current_account_type && key.includes(CFD_PLATFORMS.DXTRADE); - }); - -const isCTraderAccountAdded = (current_list: Record, is_demo?: boolean) => - Object.entries(current_list).some(([key, value]) => { - const current_account_type = is_demo ? CATEGORY.DEMO : CATEGORY.REAL; - return value.account_type === current_account_type && key.includes(CFD_PLATFORMS.CTRADER); - }); - // Get the MT5 demo accounts of the user const getMT5DemoData = (available_accounts: TModifiedTradingPlatformAvailableAccount[]) => { const swap_free_demo_accounts = available_accounts.filter( @@ -464,10 +371,6 @@ export { ctrader_data, getHeaderColor, platformsHeaderLabel, - getAccountVerficationStatus, - isMt5AccountAdded, - isDxtradeAccountAdded, - isCTraderAccountAdded, getMT5DemoData, getDxtradeDemoData, getCtraderDemoData, diff --git a/packages/cfd/src/features/Containers/__tests__/real-account-signup-verifications.spec.js b/packages/cfd/src/features/Containers/__tests__/real-account-signup-verifications.spec.js index 14aa9a3509e7..6dbfc1ec9e8e 100644 --- a/packages/cfd/src/features/Containers/__tests__/real-account-signup-verifications.spec.js +++ b/packages/cfd/src/features/Containers/__tests__/real-account-signup-verifications.spec.js @@ -84,7 +84,7 @@ describe('', () => { jest.clearAllMocks(); }); - const authenticated_with_idv = { + const verified_jurisdiction = { bvi: 1, labuan: 1, maltainvest: 0, @@ -138,7 +138,7 @@ describe('', () => { account_status: { authentication: { document: { - authenticated_with_idv, + verified_jurisdiction, status: 'none', }, attempts: { @@ -256,7 +256,7 @@ describe('', () => { }); it('should check for POA status when Jurisdiction is Labuan and resubmit status is set to true', () => { - const authenticated_with_idv = { + const verified_jurisdiction = { bvi: 1, labuan: 0, maltainvest: 0, @@ -271,7 +271,7 @@ describe('', () => { account_status: { authentication: { document: { - authenticated_with_idv, + verified_jurisdiction, status: 'none', }, attempts: { diff --git a/packages/cfd/src/hooks/useCompareAccountsButtonHandler.ts b/packages/cfd/src/hooks/useCompareAccountsButtonHandler.ts deleted file mode 100644 index 942ee6f5a992..000000000000 --- a/packages/cfd/src/hooks/useCompareAccountsButtonHandler.ts +++ /dev/null @@ -1,72 +0,0 @@ -import { useStore } from '@deriv/stores'; -import { useHistory } from 'react-router-dom'; -import { routes } from '@deriv/shared'; -import { CFD_PLATFORMS } from '../Helpers/cfd-config'; -import { TCompareAccountsCard } from '../Components/props.types'; -import { TAccountCategory, TMarketType } from '../types/market-type.types'; - -type TTypeOfAccount = { - category: TAccountCategory; - type: TMarketType; -}; - -/** - * This hook is used to handle the onClick event of the "Add" button in the CompareAccountsCard component. - * @param trading_platforms - trading platforms available for the user - * @param is_account_status_verified - account status of the user - * @param type_of_account - type of account - * @returns onClickAdd function - * @example - * const { onClickAdd } = useCompareAccountsButtonHandler(trading_platforms, is_account_status_verified, type_of_account); - */ - -const useCompareAccountsButtonHandler = ( - trading_platforms: TCompareAccountsCard['trading_platforms'], - is_account_status_verified: boolean, - type_of_account: TTypeOfAccount -) => { - const history = useHistory(); - - const { - traders_hub, - ui, - common, - modules: { cfd }, - } = useStore(); - - const { getAccount, no_CR_account, no_MF_account, is_real, is_eu_user } = traders_hub; - const { openDerivRealAccountNeededModal } = ui; - const { setAppstorePlatform } = common; - const { setJurisdictionSelectedShortcode, setAccountType, enableCFDPasswordModal, toggleCFDVerificationModal } = - cfd; - - const no_real_mf_account_eu_regulator = no_MF_account && is_eu_user && is_real; - - const no_real_cr_non_eu_regulator = no_CR_account && !is_eu_user && is_real; - - const onClickAdd = () => { - if (no_real_cr_non_eu_regulator || no_real_mf_account_eu_regulator) { - history.push(routes.traders_hub); - openDerivRealAccountNeededModal(); - } else { - setAppstorePlatform(trading_platforms.platform as string); - if (trading_platforms.platform === CFD_PLATFORMS.MT5) { - setJurisdictionSelectedShortcode(trading_platforms.shortcode); - if (is_account_status_verified) { - setAccountType(type_of_account); - enableCFDPasswordModal(); - } else { - toggleCFDVerificationModal(); - } - } else { - setAccountType(type_of_account); - getAccount(); - } - history.push(routes.traders_hub); - } - }; - - return { onClickAdd }; -}; - -export default useCompareAccountsButtonHandler; diff --git a/packages/core/package.json b/packages/core/package.json index e66c07fcf4fd..0500752b299a 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -95,7 +95,7 @@ "@babel/polyfill": "^7.4.4", "@datadog/browser-rum": "^5.11.0", "@deriv-com/analytics": "1.4.13", - "@deriv-com/utils": "^0.0.14", + "@deriv-com/utils": "^0.0.20", "@deriv/account": "^1.0.0", "@deriv/account-v2": "^1.0.0", "@deriv/api": "^1.0.0", @@ -106,7 +106,7 @@ "@deriv/cfd": "^1.0.0", "@deriv/components": "^1.0.0", "@deriv/deriv-api": "^1.0.15", - "@deriv/deriv-charts": "^2.1.13", + "@deriv/deriv-charts": "^2.1.14", "@deriv/hooks": "^1.0.0", "@deriv/p2p": "^0.7.3", "@deriv/p2p-v2": "^1.0.0", diff --git a/packages/core/src/App/AppContent.tsx b/packages/core/src/App/AppContent.tsx index 49da72935cde..af9fafbd7145 100644 --- a/packages/core/src/App/AppContent.tsx +++ b/packages/core/src/App/AppContent.tsx @@ -7,6 +7,7 @@ import { getAppId, LocalStore, useIsMounted } from '@deriv/shared'; import { observer, useStore } from '@deriv/stores'; import { getLanguage } from '@deriv/translations'; import { Analytics } from '@deriv-com/analytics'; +import { browserSupportsWebAuthn } from '@simplewebauthn/browser'; import BinaryBotIFrame from 'Modules/BinaryBotIFrame'; import SmartTraderIFrame from 'Modules/SmartTraderIFrame'; @@ -29,7 +30,12 @@ const AppContent: React.FC<{ passthrough: unknown }> = observer(({ passthrough } const isMounted = useIsMounted(); const { data } = useRemoteConfig(isMounted()); - const { marketing_growthbook, tracking_datadog, tracking_rudderstack } = data; + const { marketing_growthbook, tracking_datadog, tracking_rudderstack, passkeys } = data; + const is_passkeys_supported = browserSupportsWebAuthn(); + + const account_type = LocalStore?.get('active_loginid') + ?.match(/[a-zA-Z]+/g) + ?.join(''); React.useEffect(() => { if (process.env.RUDDERSTACK_KEY && tracking_rudderstack) { @@ -48,16 +54,14 @@ const AppContent: React.FC<{ passthrough: unknown }> = observer(({ passthrough } utm_content: 'no content', } : Cookies.getJSON('utm_data'); - const account_type = LocalStore?.get('active_loginid') - ?.match(/[a-zA-Z]+/g) - ?.join(''); + Analytics.setAttributes({ account_type: account_type === 'null' ? 'unlogged' : account_type, app_id: String(getAppId()), device_type: store?.ui?.is_mobile ? 'mobile' : 'desktop', device_language: navigator?.language || 'en-EN', user_language: getLanguage().toLowerCase(), - country: Cookies.get('clients_country') || Cookies?.getJSON('website_status'), + country: Cookies.get('clients_country') || Cookies?.getJSON('website_status')?.clients_country, utm_source: ppc_campaign_cookies?.utm_source, utm_medium: ppc_campaign_cookies?.utm_medium, utm_campaign: ppc_campaign_cookies?.utm_campaign, @@ -67,6 +71,10 @@ const AppContent: React.FC<{ passthrough: unknown }> = observer(({ passthrough } // eslint-disable-next-line react-hooks/exhaustive-deps }, [data.marketing_growthbook, tracking_rudderstack]); + React.useEffect(() => { + store.client.setIsPasskeySupported(is_passkeys_supported && passkeys); + }, [passkeys, is_passkeys_supported, store.client]); + React.useEffect(() => { initDatadog(tracking_datadog); }, [tracking_datadog]); diff --git a/packages/core/src/App/Containers/Modals/app-modals.jsx b/packages/core/src/App/Containers/Modals/app-modals.jsx index 0cbc99b0a98e..b6c3f02d890f 100644 --- a/packages/core/src/App/Containers/Modals/app-modals.jsx +++ b/packages/core/src/App/Containers/Modals/app-modals.jsx @@ -144,7 +144,10 @@ const AppModals = observer(() => { }); } }, [is_logged_in, is_authorize]); - if (temp_session_signup_params && window.location.href.includes(routes.onboarding)) { + + const is_onboarding = window.location.href.includes(routes.onboarding); + + if (temp_session_signup_params && is_onboarding) { toggleAccountSignupModal(true); } else { SessionStore.remove('signup_query_param'); @@ -215,7 +218,7 @@ const AppModals = observer(() => { ComponentToLoad = ; } - if (should_show_effortless_login_modal && !is_tour_open && !is_from_derivgo) { + if (should_show_effortless_login_modal && !is_tour_open && !is_from_derivgo && !is_onboarding) { ComponentToLoad = ; } diff --git a/packages/core/src/App/Containers/Redirect/redirect.jsx b/packages/core/src/App/Containers/Redirect/redirect.jsx index 043c581d6626..a08b37472597 100644 --- a/packages/core/src/App/Containers/Redirect/redirect.jsx +++ b/packages/core/src/App/Containers/Redirect/redirect.jsx @@ -48,6 +48,9 @@ const Redirect = observer(() => { email: url_params.get('email'), }); } + if (url_params?.get('utm_content')) { + SessionStore.set('show_book', url_params?.get('utm_content')); + } SessionStore.set('signup_query_param', url_query_string); history.push({ pathname: routes.onboarding, diff --git a/packages/core/src/App/Containers/app-notification-messages.jsx b/packages/core/src/App/Containers/app-notification-messages.jsx index 298f4e22b862..54e48c95bd6f 100644 --- a/packages/core/src/App/Containers/app-notification-messages.jsx +++ b/packages/core/src/App/Containers/app-notification-messages.jsx @@ -96,7 +96,6 @@ const AppNotificationMessages = observer( 'deriv_go', 'document_needs_action', 'dp2p', - 'flutter_chart', 'contract_sold', 'has_changed_two_fa', 'identity', diff --git a/packages/core/src/Stores/client-store.js b/packages/core/src/Stores/client-store.js index 04c3677379b5..e6ac33cf134d 100644 --- a/packages/core/src/Stores/client-store.js +++ b/packages/core/src/Stores/client-store.js @@ -1,7 +1,6 @@ import Cookies from 'js-cookie'; import { action, computed, makeObservable, observable, reaction, runInAction, toJS, when } from 'mobx'; import moment from 'moment'; -import { browserSupportsWebAuthn } from '@simplewebauthn/browser'; import { CFD_PLATFORMS, @@ -446,6 +445,15 @@ export default class ClientStore extends BaseStore { } ); + reaction( + () => [this.is_logged_in, this.is_passkey_supported], + () => { + if (this.is_logged_in && this.is_passkey_supported) { + this.fetchShouldShowEffortlessLoginModal(); + } + } + ); + when( () => !this.is_logged_in && this.root_store.ui && this.root_store.ui.is_real_acc_signup_on, () => this.root_store.ui.closeRealAccountSignup() @@ -1668,8 +1676,6 @@ export default class ClientStore extends BaseStore { await this.fetchResidenceList(); await this.getTwoFAStatus(); - await this.setIsPasskeySupported(); - await this.fetchShouldShowEffortlessLoginModal(); if (this.account_settings && !this.account_settings.residence) { this.root_store.ui.toggleSetResidenceModal(true); } @@ -2700,17 +2706,8 @@ export default class ClientStore extends BaseStore { this.real_account_signup_form_step = step; } - async setIsPasskeySupported() { - try { - // TODO: replace later "Analytics?.isFeatureOn()" to "Analytics?.getFeatureValue()" - const is_passkeys_enabled = Analytics?.isFeatureOn('web_passkeys'); - const is_passkeys_enabled_on_be = Analytics?.isFeatureOn('service_passkeys'); - // "browserSupportsWebAuthn" does not consider, if platform authenticator is available (unlike "platformAuthenticatorIsAvailable()") - const is_supported_by_browser = await browserSupportsWebAuthn(); - this.is_passkey_supported = is_passkeys_enabled && is_supported_by_browser && is_passkeys_enabled_on_be; - } catch (e) { - //error handling needed - } + setIsPasskeySupported(is_passkey_supported = false) { + this.is_passkey_supported = is_passkey_supported; } setShouldShowEffortlessLoginModal(should_show_effortless_login_modal = true) { @@ -2725,7 +2722,7 @@ export default class ClientStore extends BaseStore { localStorage.setItem('show_effortless_login_modal', JSON.stringify(true)); } - const data = await WS.send({ passkeys_list: 1 }); + const data = await WS.authorized.send({ passkeys_list: 1 }); if (data?.passkeys_list) { const should_show_effortless_login_modal = @@ -2781,7 +2778,7 @@ export default class ClientStore extends BaseStore { return { key, subscription }; } catch (error) { // eslint-disable-next-line no-console - console.warn(`Error: code = ${error?.error?.code}, message = ${error?.error?.message}`); + console.log(`Something wrong: code = ${error?.error?.code}, message = ${error?.error?.message}`); return {}; } }; @@ -2794,7 +2791,7 @@ export default class ClientStore extends BaseStore { delete this.subscriptions?.[name]?.[key]; } catch (error) { // eslint-disable-next-line no-console - console.warn(`Error: code = ${error?.error?.code}, message = ${error?.error?.message}`); + console.log(`Something wrong: code = ${error?.error?.code}, message = ${error?.error?.message}`); } } }; @@ -2826,7 +2823,7 @@ export default class ClientStore extends BaseStore { }, error => { // eslint-disable-next-line no-console - console.warn(`Error: code = ${error?.error?.code}, message = ${error?.error?.message}`); + console.log(`Something wrong: code = ${error?.error?.code}, message = ${error?.error?.message}`); } ); }; diff --git a/packages/core/src/Stores/notification-store.js b/packages/core/src/Stores/notification-store.js index 86d7dad42490..4e2a2a6cec4e 100644 --- a/packages/core/src/Stores/notification-store.js +++ b/packages/core/src/Stores/notification-store.js @@ -338,9 +338,6 @@ export default class NotificationStore extends BaseStore { const has_trustpilot = LocalStore.getObject('notification_messages')[loginid]?.includes( this.client_notifications.trustpilot?.key ); - const has_flutter_chart_notification = LocalStore.getObject('notification_messages')[loginid]?.includes( - this.client_notifications.flutter_chart?.key - ); let has_missing_required_field; @@ -371,9 +368,7 @@ export default class NotificationStore extends BaseStore { } = getStatusValidations(status || []); this.handlePOAAddressMismatchNotifications(); - if (!has_flutter_chart_notification) { - this.addNotificationMessage(this.client_notifications.flutter_chart); - } + if (status?.includes('mt5_additional_kyc_required')) this.addNotificationMessage(this.client_notifications.additional_kyc_info); @@ -930,18 +925,6 @@ export default class NotificationStore extends BaseStore { img_alt: 'Deriv P2P', type: 'news', }, - flutter_chart: { - key: 'flutter_chart', - header: localize('Trade Smarter with Deriv Trader Chart v2.0:'), - message: localize('Get real-time data, advanced charting tools, and customisable views.'), - action: { - onClick: () => { - window.open('https://blog.deriv.com/posts/new-charts-on-the-deriv-trader-app/', '_blank'); - }, - text: localize('Learn more'), - }, - type: 'announce', - }, identity: { key: 'identity', header: localize('Let’s verify your ID'), diff --git a/packages/core/src/public/.well-known/assetslinks.json b/packages/core/src/public/.well-known/assetslinks.json index 0a873cf06d02..8006ccc07913 100644 --- a/packages/core/src/public/.well-known/assetslinks.json +++ b/packages/core/src/public/.well-known/assetslinks.json @@ -46,7 +46,8 @@ }, { "relation": [ - "delegate_permission/common.handle_all_urls" + "delegate_permission/common.handle_all_urls", + "delegate_permission/common.get_login_creds" ], "target": { "namespace": "android_app", diff --git a/packages/hooks/src/__tests__/useGetPasskeysList.spec.tsx b/packages/hooks/src/__tests__/useGetPasskeysList.spec.tsx index 764ed33192f2..4b0d1364bd94 100644 --- a/packages/hooks/src/__tests__/useGetPasskeysList.spec.tsx +++ b/packages/hooks/src/__tests__/useGetPasskeysList.spec.tsx @@ -1,21 +1,24 @@ import React from 'react'; import { renderHook } from '@testing-library/react-hooks'; import { useQuery } from '@deriv/api'; -import useGetPasskeysList from '../useGetPasskeysList'; import { mockStore, StoreProvider } from '@deriv/stores'; +import useGetPasskeysList from '../useGetPasskeysList'; +import useAuthorize from '../useAuthorize'; jest.mock('@deriv/api', () => ({ ...jest.requireActual('@deriv/api'), useQuery: jest.fn(), })); +jest.mock('../useAuthorize', () => jest.fn(() => ({ isSuccess: true }))); + describe('useGetPasskeysList', () => { beforeEach(() => { jest.clearAllMocks(); }); const mock = mockStore({ - client: { is_passkey_supported: true, is_logged_in: true }, + client: { is_passkey_supported: true }, }); const wrapper = ({ children }: { children: JSX.Element }) => {children}; @@ -25,26 +28,27 @@ describe('useGetPasskeysList', () => { const { result } = renderHook(() => useGetPasskeysList(), { wrapper }); - expect(useQuery).toHaveBeenCalledWith('passkeys_list', { options: { enabled: true } }); + expect(useQuery).toHaveBeenCalledWith('passkeys_list', { options: { enabled: true, retry: 0 } }); expect(result.current.passkeys_list).toEqual([]); }); + it('calls useQuery with enabled set to false when is_logged_in is false', () => { (useQuery as jest.Mock).mockReturnValue({ data: { passkeys_list: undefined } }); - mock.client.is_logged_in = false; + (useAuthorize as jest.Mock).mockReturnValueOnce({ isSuccess: false }); const { result } = renderHook(() => useGetPasskeysList(), { wrapper }); - expect(useQuery).toHaveBeenCalledWith('passkeys_list', { options: { enabled: false } }); + expect(useQuery).toHaveBeenCalledWith('passkeys_list', { options: { enabled: false, retry: 0 } }); expect(result.current.passkeys_list).toEqual(undefined); }); + it('calls useQuery with enabled set to false when is_passkey_supported is false', () => { (useQuery as jest.Mock).mockReturnValue({ data: { passkeys_list: undefined } }); mock.client.is_passkey_supported = false; - mock.client.is_logged_in = true; const { result } = renderHook(() => useGetPasskeysList(), { wrapper }); - expect(useQuery).toHaveBeenCalledWith('passkeys_list', { options: { enabled: false } }); + expect(useQuery).toHaveBeenCalledWith('passkeys_list', { options: { enabled: false, retry: 0 } }); expect(result.current.passkeys_list).toEqual(undefined); }); }); diff --git a/packages/hooks/src/useGetPasskeysList.ts b/packages/hooks/src/useGetPasskeysList.ts index 5d00a3417c52..4f932031f348 100644 --- a/packages/hooks/src/useGetPasskeysList.ts +++ b/packages/hooks/src/useGetPasskeysList.ts @@ -2,15 +2,18 @@ import { useQuery } from '@deriv/api'; import { useStore } from '@deriv/stores'; import { useEffect } from 'react'; import { Analytics } from '@deriv-com/analytics'; -import { mobileOSDetect } from '@deriv/shared'; +import { getOSNameWithUAParser } from '@deriv/shared'; +import useAuthorize from './useAuthorize'; const useGetPasskeysList = () => { const { client } = useStore(); - const { is_passkey_supported, is_logged_in } = client; + const { isSuccess } = useAuthorize(); + const { is_passkey_supported } = client; const { data, error, isLoading, refetch, ...rest } = useQuery('passkeys_list', { options: { - enabled: is_passkey_supported && is_logged_in, + enabled: is_passkey_supported && isSuccess, + retry: 0, }, }); @@ -22,7 +25,7 @@ const useGetPasskeysList = () => { Analytics.trackEvent('ce_passkey_account_settings_form', { action: 'error', form_name: 'ce_passkey_account_settings_form', - operating_system: mobileOSDetect(), + operating_system: getOSNameWithUAParser(), // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore error_message: error?.message, diff --git a/packages/p2p-v2/package.json b/packages/p2p-v2/package.json index 11300779eaeb..5ca74e8a4b84 100644 --- a/packages/p2p-v2/package.json +++ b/packages/p2p-v2/package.json @@ -13,8 +13,8 @@ "start": "rimraf dist && npm run test && npm run serve" }, "dependencies": { - "@deriv-com/ui": "^1.14.1", - "@deriv-com/utils": "^0.0.14", + "@deriv-com/ui": "^1.14.5", + "@deriv-com/utils": "^0.0.20", "@deriv/api-v2": "^1.0.0", "@deriv/integration": "^1.0.0", "@deriv/quill-icons": "^1.22.4", diff --git a/packages/p2p/package.json b/packages/p2p/package.json index 9d4b3cc13a87..e737406d15cb 100644 --- a/packages/p2p/package.json +++ b/packages/p2p/package.json @@ -31,7 +31,7 @@ "author": "", "license": "ISC", "dependencies": { - "@deriv-com/utils": "^0.0.14", + "@deriv-com/utils": "^0.0.20", "@deriv/api": "^1.0.0", "@deriv/api-types": "^1.0.172", "@deriv/components": "^1.0.0", diff --git a/packages/p2p/src/components/modal-manager/modals/buy-sell-modal/buy-sell-modal.tsx b/packages/p2p/src/components/modal-manager/modals/buy-sell-modal/buy-sell-modal.tsx index 508bea759abf..590a67d391ac 100644 --- a/packages/p2p/src/components/modal-manager/modals/buy-sell-modal/buy-sell-modal.tsx +++ b/packages/p2p/src/components/modal-manager/modals/buy-sell-modal/buy-sell-modal.tsx @@ -18,7 +18,7 @@ import BuySellModalError from './buy-sell-modal-error'; const BuySellModal = () => { const { hideModal, is_modal_open, showModal } = useModalManagerContext(); const { buy_sell_store, general_store, my_profile_store, order_store } = useStores(); - const { is_buy_advert, selected_ad_state } = buy_sell_store; + const { is_buy_advert, selected_ad_state, submitForm } = buy_sell_store; const { account_currency } = selected_ad_state; const { balance } = general_store; const { should_show_add_payment_method_form } = my_profile_store; @@ -29,12 +29,9 @@ const BuySellModal = () => { const [error_message, setErrorMessage] = React.useState(''); const [is_submit_disabled, setIsSubmitDisabled] = React.useState(false); const [is_account_balance_low, setIsAccountBalanceLow] = React.useState(false); - const submitForm = React.useRef<(() => void) | null>(null); const show_low_balance_message = !is_buy_advert && is_account_balance_low; - const setSubmitForm = (submitFormFn: () => void) => (submitForm.current = submitFormFn); - const onCancel = () => { if (should_show_add_payment_method_form) { if (general_store.is_form_modified) { @@ -158,13 +155,12 @@ const BuySellModal = () => { handleConfirm={onConfirmClick} setIsSubmitDisabled={setIsSubmitDisabled} setErrorMessage={setErrorMessage} - setSubmitForm={setSubmitForm} /> )} @@ -204,7 +200,6 @@ const BuySellModal = () => { handleConfirm={onConfirmClick} setIsSubmitDisabled={setIsSubmitDisabled} setErrorMessage={setErrorMessage} - setSubmitForm={setSubmitForm} /> )} @@ -214,7 +209,7 @@ const BuySellModal = () => { )} diff --git a/packages/p2p/src/components/modal-manager/modals/email-link-verified-modal/__tests__/email-link-verified-modal.spec.tsx b/packages/p2p/src/components/modal-manager/modals/email-link-verified-modal/__tests__/email-link-verified-modal.spec.tsx index 815eb6cc0f24..b526acc22f62 100644 --- a/packages/p2p/src/components/modal-manager/modals/email-link-verified-modal/__tests__/email-link-verified-modal.spec.tsx +++ b/packages/p2p/src/components/modal-manager/modals/email-link-verified-modal/__tests__/email-link-verified-modal.spec.tsx @@ -27,6 +27,8 @@ const mock_store: DeepPartial> = { rate: 1.2, }, confirmOrder: jest.fn(), + setActionParam: jest.fn(), + setVerificationCode: jest.fn(), }, }; @@ -64,5 +66,7 @@ describe('', () => { userEvent.click(confirm_button); expect(mock_modal_manager.hideModal).toHaveBeenCalledWith({ should_hide_all_modals: true }); expect(mock_store.order_store.confirmOrder).toHaveBeenCalledWith(true); + expect(mock_store.order_store.setVerificationCode).toHaveBeenCalledWith(''); + expect(mock_store.order_store.setActionParam).toHaveBeenCalledWith(null); }); }); diff --git a/packages/p2p/src/components/modal-manager/modals/email-link-verified-modal/email-link-verified-modal.tsx b/packages/p2p/src/components/modal-manager/modals/email-link-verified-modal/email-link-verified-modal.tsx index 6bc4a1e20300..555cf20e74cc 100644 --- a/packages/p2p/src/components/modal-manager/modals/email-link-verified-modal/email-link-verified-modal.tsx +++ b/packages/p2p/src/components/modal-manager/modals/email-link-verified-modal/email-link-verified-modal.tsx @@ -19,7 +19,16 @@ const EmailLinkVerifiedModal = () => { return ( {order_store.order_information && ( - <>} toggleModal={hideModal} width='440px'> + <>} + toggleModal={() => { + order_store.setVerificationCode(''); + order_store.setActionParam(null); + hideModal(); + }} + width='440px' + > { onClick={() => { hideModal({ should_hide_all_modals: true }); order_store.confirmOrder(is_buy_order_for_user); + order_store.setVerificationCode(''); + order_store.setActionParam(null); }} > diff --git a/packages/p2p/src/pages/app.jsx b/packages/p2p/src/pages/app.jsx index 7d3a8eb39fb1..bef63075b130 100644 --- a/packages/p2p/src/pages/app.jsx +++ b/packages/p2p/src/pages/app.jsx @@ -160,6 +160,7 @@ const App = () => { let passed_order_id; setActionParam(url_params.get('action')); + if (is_mobile) { setCodeParam(localStorage.getItem('verification_code.p2p_order_confirm')); } else if (!code_param) { @@ -258,14 +259,11 @@ const App = () => { }, [balance]); React.useEffect(() => { - if (code_param) { + if (action_param && code_param) { // We need an extra state since we delete the code from the query params. // Do not remove. order_store.setVerificationCode(code_param); - } - if (action_param && code_param) { - general_store.showModal({ key: 'LoadingModal', props: {} }); - order_store.verifyEmailVerificationCode(action_param, code_param); + order_store.setActionParam(action_param); } // eslint-disable-next-line react-hooks/exhaustive-deps diff --git a/packages/p2p/src/pages/buy-sell/buy-sell-form.jsx b/packages/p2p/src/pages/buy-sell/buy-sell-form.jsx index 71bebb5dac26..cd1eec218962 100755 --- a/packages/p2p/src/pages/buy-sell/buy-sell-form.jsx +++ b/packages/p2p/src/pages/buy-sell/buy-sell-form.jsx @@ -179,8 +179,8 @@ const BuySellForm = props => { ]); React.useEffect(() => { - buy_sell_store.form_props.setSubmitForm(submitForm); - }, [submitForm, buy_sell_store.form_props]); + buy_sell_store.setSubmitForm(submitForm); + }, [submitForm]); return ( diff --git a/packages/p2p/src/pages/orders/__test__/orders.spec.js b/packages/p2p/src/pages/orders/__test__/orders.spec.js deleted file mode 100644 index f6fa3044e29d..000000000000 --- a/packages/p2p/src/pages/orders/__test__/orders.spec.js +++ /dev/null @@ -1,61 +0,0 @@ -import React from 'react'; -import { render, screen } from '@testing-library/react'; -import { useStores } from 'Stores'; -import { useSafeState } from '@deriv/components'; -import Orders from '../orders.jsx'; - -const mock_store = { - general_store: { - active_index: 2, - setActiveIndex: jest.fn(), - }, - order_store: { - order_id: null, - order_information: '', - orders: [], - onOrderIdUpdate: jest.fn(), - onOrdersUpdate: jest.fn(), - onUnmount: jest.fn(), - setForceRerenderOrders: jest.fn(), - }, -}; - -jest.mock('Stores', () => ({ - ...jest.requireActual('Stores'), - useStores: jest.fn(() => mock_store), -})); - -jest.mock('@deriv/components', () => ({ - ...jest.requireActual('@deriv/components'), - useSafeState: jest.fn().mockReturnValue([{}, jest.fn()]), -})); - -jest.mock('Pages/orders/order-table/order-table.jsx', () => jest.fn(() =>
Order Table
)); - -jest.mock('Components/order-details/order-details.jsx', () => jest.fn(() =>
Order Details
)); - -describe('', () => { - it('should invoke setup methods on component load', () => { - const { order_store } = useStores(); - const [, forceRerender] = useSafeState(); - render(); - - expect(order_store.setForceRerenderOrders).toHaveBeenCalledWith(forceRerender); - expect(order_store.onOrderIdUpdate).toHaveBeenCalled(); - expect(order_store.onOrdersUpdate).toHaveBeenCalled(); - }); - - it('should list all orders via Order table component', () => { - render(); - - expect(screen.getByText('Order Table')).toBeInTheDocument(); - }); - - it('should display the order details for a particular ', () => { - mock_store.order_store.order_information = 'test'; - - render(); - - expect(screen.getByText('Order Details')).toBeInTheDocument(); - }); -}); diff --git a/packages/p2p/src/pages/orders/__tests__/orders.spec.js b/packages/p2p/src/pages/orders/__tests__/orders.spec.js index f6fa3044e29d..88925dd179d3 100644 --- a/packages/p2p/src/pages/orders/__tests__/orders.spec.js +++ b/packages/p2p/src/pages/orders/__tests__/orders.spec.js @@ -10,16 +10,23 @@ const mock_store = { setActiveIndex: jest.fn(), }, order_store: { + action_param: 'p2p_order_confirm', order_id: null, order_information: '', orders: [], + verification_code: '123456', onOrderIdUpdate: jest.fn(), onOrdersUpdate: jest.fn(), onUnmount: jest.fn(), setForceRerenderOrders: jest.fn(), + verifyEmailVerificationCode: jest.fn(), }, }; +const mock_modal_manager = { + showModal: jest.fn(), +}; + jest.mock('Stores', () => ({ ...jest.requireActual('Stores'), useStores: jest.fn(() => mock_store), @@ -30,6 +37,11 @@ jest.mock('@deriv/components', () => ({ useSafeState: jest.fn().mockReturnValue([{}, jest.fn()]), })); +jest.mock('Components/modal-manager/modal-manager-context', () => ({ + ...jest.requireActual('Components/modal-manager/modal-manager-context'), + useModalManagerContext: jest.fn(() => mock_modal_manager), +})); + jest.mock('Pages/orders/order-table/order-table.jsx', () => jest.fn(() =>
Order Table
)); jest.mock('Components/order-details/order-details.jsx', () => jest.fn(() =>
Order Details
)); @@ -58,4 +70,11 @@ describe('', () => { expect(screen.getByText('Order Details')).toBeInTheDocument(); }); + + it('should call showModal and verifyEmailVerification when verification code and action_param is present', () => { + render(); + + expect(mock_modal_manager.showModal).toHaveBeenCalledWith({ key: 'LoadingModal', props: {} }); + expect(mock_store.order_store.verifyEmailVerificationCode).toHaveBeenCalledWith('p2p_order_confirm', '123456'); + }); }); diff --git a/packages/p2p/src/pages/orders/orders.jsx b/packages/p2p/src/pages/orders/orders.jsx index 0fbbef6d0c84..2e6477ec7f58 100644 --- a/packages/p2p/src/pages/orders/orders.jsx +++ b/packages/p2p/src/pages/orders/orders.jsx @@ -3,11 +3,13 @@ import { useSafeState } from '@deriv/components'; import { reaction } from 'mobx'; import { observer } from '@deriv/stores'; import OrderDetails from 'Components/order-details/order-details.jsx'; +import { useModalManagerContext } from 'Components/modal-manager/modal-manager-context'; import { useStores } from 'Stores'; import OrderTable from './order-table/order-table.jsx'; const Orders = observer(() => { const { order_store, general_store } = useStores(); + const { showModal } = useModalManagerContext(); // This is a bit hacky, but it allows us to force re-render this // component when the timer expired. This is created due to BE @@ -32,9 +34,21 @@ const Orders = observer(() => { { fireImmediately: true } ); + const disposeOrderVerificationReaction = reaction( + () => order_store.verification_code, + () => { + if (order_store.action_param && order_store.verification_code) { + showModal({ key: 'LoadingModal', props: {} }); + order_store.verifyEmailVerificationCode(order_store.action_param, order_store.verification_code); + } + }, + { fireImmediately: true } + ); + return () => { disposeOrderIdReaction(); disposeOrdersUpdateReaction(); + disposeOrderVerificationReaction(); order_store.onUnmount(); }; diff --git a/packages/p2p/src/stores/buy-sell-store.js b/packages/p2p/src/stores/buy-sell-store.js index fd4c39e3086b..0e858c4cbb85 100644 --- a/packages/p2p/src/stores/buy-sell-store.js +++ b/packages/p2p/src/stores/buy-sell-store.js @@ -32,6 +32,7 @@ export default class BuySellStore extends BaseStore { show_advertiser_page = false; show_filter_payment_methods = false; sort_by = 'rate'; + submitForm = null; table_type = buy_sell.BUY; form_props = {}; is_create_order_subscribed = false; @@ -71,6 +72,7 @@ export default class BuySellStore extends BaseStore { show_advertiser_page: observable, show_filter_payment_methods: observable, sort_by: observable, + submitForm: observable, table_type: observable, form_props: observable, is_create_order_subscribed: observable, @@ -114,6 +116,7 @@ export default class BuySellStore extends BaseStore { setShowAdvertiserPage: action.bound, setShowFilterPaymentMethods: action.bound, setSortBy: action.bound, + setSubmitForm: action.bound, setTableType: action.bound, setSelectedAdvert: action.bound, showAdvertiserPage: action.bound, @@ -362,6 +365,10 @@ export default class BuySellStore extends BaseStore { this.sort_by = sort_by; } + setSubmitForm(submitForm) { + this.submitForm = submitForm; + } + setTableType(table_type) { this.table_type = table_type; } diff --git a/packages/p2p/src/stores/order-store.js b/packages/p2p/src/stores/order-store.js index f72bd2825315..b2bfc03db1b9 100644 --- a/packages/p2p/src/stores/order-store.js +++ b/packages/p2p/src/stores/order-store.js @@ -8,6 +8,7 @@ import { api_error_codes } from '../constants/api-error-codes'; export default class OrderStore { constructor(root_store) { makeObservable(this, { + action_param: observable, active_order: observable, api_error_message: observable, date_from: observable, @@ -44,6 +45,7 @@ export default class OrderStore { onOrdersUpdate: action.bound, onPageReturn: action.bound, onUnmount: action.bound, + setActionParam: action.bound, setActiveOrder: action.bound, setDateTo: action.bound, setForceRerenderOrders: action.bound, @@ -83,6 +85,7 @@ export default class OrderStore { ); } + action_param = null; active_order = null; api_error_message = ''; date_from = null; @@ -168,6 +171,8 @@ export default class OrderStore { } localStorage.removeItem('verification_code.p2p_order_confirm'); + this.setVerificationCode(''); + this.setActionParam(null); } }); } @@ -514,7 +519,7 @@ export default class OrderStore { }, 750); } else if ( code === api_error_codes.EXCESSIVE_VERIFICATION_FAILURES && - !order_store?.order_information.is_buy_order_for_user + !order_store?.order_information?.is_buy_order_for_user ) { if (general_store.isCurrentModal('InvalidVerificationLinkModal')) { general_store.hideModal(); @@ -527,6 +532,8 @@ export default class OrderStore { }, }); } + this.setVerificationCode(''); + this.setActionParam(null); } localStorage.removeItem('verification_code.p2p_order_confirm'); } @@ -534,6 +541,10 @@ export default class OrderStore { } } + setActionParam(action_param) { + this.action_param = action_param; + } + setApiErrorMessage(api_error_message) { this.api_error_message = api_error_message; } diff --git a/packages/p2p/src/translations/sw.json b/packages/p2p/src/translations/sw.json index 85b37576fa58..703d9807f02a 100644 --- a/packages/p2p/src/translations/sw.json +++ b/packages/p2p/src/translations/sw.json @@ -1,9 +1,9 @@ { "3215342": "Siku 30 zilizopita", - "4276410": "Hatua moja ya mwisho kabla ya kufunga oda hii", + "4276410": "Hatua moja ya mwisho kabla hatujafunga oda hii", "6794664": "Matangazo yanayolingana na salio lako la Deriv P2P na kikomo.", "19789721": "Hakuna mtu aliyekuzuia. Ndio!", - "24711354": "Jumla ya oda <0>30d | <1>maisha", + "24711354": "Jumla ya oda <0>30d | <1>muda wote", "47573834": "Kiwango kisichobadilika (1 {{account_currency}})", "50672601": "Kununuliwa", "55916349": "Wote", @@ -14,7 +14,7 @@ "111718006": "Tarehe ya mwisho", "121738739": "Tuma", "122280248": "Wastani wa muda wa kuachiliwa malipo <0>30d", - "134205943": "Matangazo yako yenye viwango vya kudumu yamezimwa. Weka viwango vipya ili kuyaamsha tena.", + "134205943": "Matangazo yako yenye viwango vya kudumu yamezimwa. Weka viwango vya kiasi ili kuyaamsha tena.", "140800401": "Kiasi", "150156106": "Hifadhi mabadiliko", "159757877": "Hautaona matangazo ya {{advertiser_name}} tena na hawataweza kuweka oda kwenye matangazo yako.", @@ -26,7 +26,7 @@ "203271702": "Jaribu tena", "231473252": "Sarafu unayopendelea", "233677840": "ya kiwango cha soko", - "257637860": "Pakia nyaraka ili kuthibitisha anwani yako.", + "257637860": "Pakia hati ili kuthibitisha anwani yako.", "276261353": "Wastani wa muda wa malipo <0>30d", "277542386": "Tafadhali tumia <0>gumzo la moja kwa moja kuwasiliana na timu yetu ya Msaada wa Wateja kwa msaada", "316725580": "Huwezi tena kupima muamala huu.", @@ -96,7 +96,7 @@ "892431976": "Ukighairi muda wa oda yako {{cancellation_limit}} katika masaa {{cancellation_period}}, utazuiliwa kutumia Deriv P2P kwa {{block_duration}} masaa.
({{number_of_cancels_remaining}} ughairishaji unabaki)", "926446466": "Tafadhali weka tofauti kati ya kiwango cha chini na/au cha juu ya kikomo cha oda. nnAina ya tangazo lako haipaswi kufanana na matangazo yako yoyote yanayotangazwa kwa sasa.", "931661826": "Pakua msimbo huu wa QR", - "947389294": "Tunahitaji nyaraka zako", + "947389294": "Tunahitaji hati zako", "949859957": "Wasilisha", "954233511": "Imeuzwa", "957807235": "Kuzuia hakuwezekani kwani {{name}} hatumii Deriv P2P tena.", @@ -113,7 +113,7 @@ "1052094244": "Oda ya juu", "1056821534": "Una uhakika?", "1057127276": "{{- avg_release_time_in_minutes}} dakika", - "1065551550": "Weka kiwango cha kuelea", + "1065551550": "Weka kiwango cha kiasi", "1077515534": "Hadi tarehe", "1080990424": "Thibitisha", "1089110190": "Kwa bahati mbaya ulitupa anwani nyingine ya barua pepe (huenda ni ya kazi au ya kibinafsi badala ya ile uliyokusudia).", @@ -128,7 +128,7 @@ "1151608942": "Jumla ya kiasi", "1157877436": "{{field_name}} haipaswi kuzidi Kiasi", "1162965175": "Mnunuzi", - "1163072833": "<0>Kitambulisho kimethibishwa", + "1163072833": "<0>ID imethibitishwa", "1164771858": "Nimepokea malipo kutoka kwa mhusika mwingine.", "1168689876": "Tangazo lako halijaorodheshwa", "1184609483": "Unda tangazo linalofanana", @@ -153,17 +153,17 @@ "1347322213": "Je, unaupa kiwango gani cha ukadiriaji muamala huu?", "1347724133": "Nimelipa {{amount}} {{currency}}.", "1366244749": "Kikomo", - "1370999551": "Kiwango kinachobadilika", + "1370999551": "Kiwango cha kiasi", "1371193412": "Ghairi", "1376329801": "Siku 60 zilizopita", "1378388952": "Tangaza tangazo lako kwa kushiriki msimbo wa QR na kiungo.", "1381949324": "<0>Anwani imethibitishwa", - "1385570445": "Pakia nyaraka ili kuthibitisha utambulisho wako.", + "1385570445": "Pakia hati ili kuthibitisha utambulisho wako.", "1398938904": "Hatuwezi kutuma barua pepe kwenye anwani hii (kawaida kwa sababu ya firewalls au mchujo).", "1422356389": "Hakuna matokeo ya \"{{text}}”.", "1426213515": "Ikiwa umepokea {{amount}} {{local_currency}} kutoka {{name}} kwenye akaunti yako ya benki au e-wallet, bofya kitufe kilicho hapa chini ili kukamilisha oda.", "1430413419": "Kiwango cha juu ni {{value}} {{currency}}", - "1438103743": "Viwango vya kuelea vimewezeshwa kwa {{local_currency}}. Matangazo yenye viwango vya kudumu yatazimwa. Badilisha viwango vya kuelea kwa {{end_date}}.", + "1438103743": "Viwango vya kiasi vimewezeshwa kwa {{local_currency}}. Matangazo yenye viwango vya kudumu yatazimwa. Badilisha viwango vya kiasi kabla ya {{end_date}}.", "1448855725": "Ongeza njia za malipo", "1452260922": "Majaribio mengi sana yaliyofeli", "1467483693": "Oda za zamani", @@ -174,7 +174,7 @@ "1543377906": "Tangazo hili halijaorodheshwa kwenye Kununu/Kuuza kwa sababu umesitisha matangazo yako yote.", "1568512719": "Vikomo vyako vya kila siku vimeongezeka hadi {{daily_buy_limit}} {{currency}} (kununua) na {{daily_sell_limit}} {{currency}} (kuuza).", "1583335572": "Ikiwa tangazo halitapokea oda kwa siku {{adverts_archive_period}} , litazimwa.", - "1587250288": "Kitambulisho cha tangazo {{advert_id}} ", + "1587250288": "ID ya tangazo {{advert_id}} ", "1587507924": "Au nakili kiungo hiki", "1607051458": "Tafuta kwa jina la utani", "1615530713": "Kuna kitu sio sawa", @@ -223,7 +223,7 @@ "1992961867": "Kiwango (1 {{currency}})", "1994023526": "Anwani ya barua pepe uliyoingiza ilikuwa na kosa au makosa ya kiuandishi (hutokea kwa ubora kwetu sote).", "2020104747": "Kichujio", - "2027742762": "Pigia mipangilio yako na uunda tangazo jipya. Kila tangazo lazima iwe na mipaka na viwango vya kipekee.", + "2027742762": "Kagua mipangilio yako na unda tangazo jipya. Kila tangazo lazima liwe na ukomo na viwango vya kipekee.", "2029375371": "Maelekezo ya malipo", "2032274854": "Inapendekezwa na wafanyabiashara {{recommended_count}}", "2039361923": "Unaunda tangazo la kuuza...", @@ -235,7 +235,7 @@ "2096014107": "Omba", "2104905634": "Hakuna mtu aliyependekeza mfanyabiashara huyu", "2121837513": "Kiwango cha chini ni {{value}} {{currency}}", - "2142425493": "Utambulisho wa tangazo", + "2142425493": "ID ya tangazo", "2145292295": "Kiwango", "-1540251249": "Nunua {{ account_currency }}", "-1267880283": "{{field_name}} linahitajika", @@ -350,12 +350,12 @@ "-87612148": "Tangazo halijaorodheshwa", "-466964809": "Dhibiti tangazo", "-1667041441": "Kiwango (1 {{ offered_currency }})", - "-792015701": "Deriv P2P cashier haipatikani katika nchi yako.", + "-792015701": "Deriv P2P keshia haipatikani katika nchi yako.", "-1983512566": "Mazungumzo hayo yamefungwa.", "-283017497": "Jaribu tena", "-360975483": "Hujafanya muamala wa aina hii katika kipindi hiki.", - "-979459594": "Nunua/Uza", - "-2052184983": "Kitambulisho cha Oda", + "-979459594": "Kununu/Kuuza", + "-2052184983": "Oda ID", "-2096350108": "Mshirika", "-1597110099": "Pokea", "-750202930": "Oda hai", @@ -380,7 +380,7 @@ "-1977959027": "saa", "-1603581277": "dakika", "-1792280476": "Chagua njia yako ya malipo", - "-520142572": "Mfumo wa cashier upo kwenye matengenezo kwa sasa", + "-520142572": "Mfumo wa keshia upo kwenye matengenezo kwa sasa", "-1552080215": "Tafadhali angalia tena baada ya dakika chache.<0> Asante kwa uvumilivu wako.", "-684271315": "SAWA", "-130601012": "Tafadhali chagua muda", @@ -388,15 +388,15 @@ "-1577570698": "Tarehe ya kuanza", "-1251526905": "Siku 7 zilizopita", "-1638172550": "Ili kuwezesha huduma hii lazima ukamilishe yafuatayo:", - "-1086586743": "Tafadhali wasilisha <0>uthibitisho wako wa anwani. Unaweza kutumia Deriv P2P baada ya kuthibitisha nyaraka zako.", - "-559300364": "Mfumo wako wa Deriv P2P cashier umefungwa", + "-1086586743": "Tafadhali wasilisha <0>uthibitisho wako wa anwani. Unaweza kutumia Deriv P2P baada ya kuthibitisha hati zako.", + "-559300364": "Deriv P2P keshia yako imezuiwa", "-740038242": "Kiwango chako ni", "-1072444041": "Sasisha tangazo", "-2085839488": "Tangazo hili halijaorodheshwa kwenye Kununu/Kuuza kwa sababu oda ya chini ni kubwa kuliko kiasi cha tangazo lililobaki ({{remaining_amount}} {{currency}}).", "-987612578": "Tangazo hili halijaorodheshwa kwenye Kununu/Kuuza kwa sababu oda yake ya chini ni kubwa kuliko salio lako la Deriv P2P linalopatikana ({{balance}} {{currency}}).", "-84644774": "Tangazo hili halijaorodheshwa kwenye Kununu/Kuuza kwa sababu oda yake ya chini ni kubwa kuliko kikomo chako cha kila siku kilichobaki ({{remaining_limit}} {{currency}}).", "-452142075": "Hauruhusiwi kutumia Deriv P2P kutangaza. Tafadhali wasiliana nasi kupitia mazungumzo mubashara kwa maelezo zaidi.", - "-1886565882": "Matangazo yako yenye viwango vya kuelea yamezimwa. Weka viwango vya kudumu ili kuziamsha tena.", + "-1886565882": "Matangazo yako yenye viwango vya kiasi yamezimwa. Weka viwango vya kudumu ili kuziamsha tena.", "-971817673": "Tangazo lako halionekani kwa wengine", "-1735126907": "Hii inaweza kuwa kwa sababu salio la akaunti yako halitoshi, au kiasi chako cha tangazo kinazidi kikomo chako cha kila siku, au sababu zote mbili. Bado unaweza kuona tangazo lako kwenye <0>Matangazo yangu.", "-674715853": "Tangazo lako linazidi kikomo cha kila siku", @@ -428,7 +428,7 @@ "-818345434": "Je, una uhakika unataka kutoka kwenye ukurasa huu? Mabadiliko yaliyofanywa hayatahifadhiwa.", "-392043307": "Je, unataka kufuta tangazo hili?", "-854930519": "Hutakuwa na uwezo wa kuirejesha.", - "-1600783504": "Weka kiwango kinachoelea kwa tangazo lako.", + "-1600783504": "Weka kiwango cha kiasi kwa ajili ya tangazo lako.", "-1907448242": "Salio la Deriv P2P linalopatikana", "-268565332": "Jina lako la utani ni nani?", "-532709160": "Jina lako la utani", @@ -440,7 +440,7 @@ "-492996224": "Usighairi", "-1447732068": "Uthibitisho wa malipo", "-1951344681": "Tafadhali hakikisha kuwa umelipa {{amount}} {{currency}} kwa {{other_user_name}}, na pakia risiti kama uthibitisho wa malipo yako", - "-637818525": "Kutuma nyaraka za uwongo kutasababisha upigwe marufuku ya kudumu mara moja.", + "-637818525": "Kutuma hati za uwongo kutasababisha upigwe marufuku ya kudumu mara moja.", "-670364940": "Pakia risiti hapa", "-937707753": "Rudi nyuma", "-1340125291": "Imekamilika", @@ -458,7 +458,7 @@ "-2054589794": "Umepigwa marufuku kwa muda kutumia huduma zetu kwa sababu ya majaribio kadhaa ya kughairi. Jaribu tena baada ya {{date_time}} GMT.", "-1079963355": "biashara", "-609070622": "Uthibitishaji wa utambulisho unaendelea.", - "-1269954557": "Uthibitishaji wa kitambulisho umeshindikana. Tafadhali jaribu tena.", + "-1269954557": "Uthibitishaji wa utambulisho haukufaulu. Tafadhali jaribu tena.", "-1507102231": "Uhakiki wa utambulisho umekamilika.", "-670039668": "Uthibitishaji wa anwani unashughulikiwa.", "-23313647": "Uthibitishaji wa anwani umekamilika.", @@ -482,7 +482,7 @@ "-2090878601": "Kikomo cha kila siku", "-474123616": "Unataka kuongeza kikomo chako cha kila siku <0>hadi {{max_daily_buy}} {{currency}} (kununua) na <1>{{max_daily_sell}} {{currency}} (kuuza)?", "-133982971": "{{avg_release_time_in_minutes}} dakika", - "-130547447": "Kiasi cha biashara <0>30d | <1>maisha", + "-130547447": "Kiasi cha biashara <0>30d | <1>muda wote", "-383030149": "Hujaweka njia zozote za malipo bado", "-1156559889": "Uhamisho wa Benki", "-1269362917": "Ongeza mpya" diff --git a/packages/shared/src/utils/cfd/cfd.ts b/packages/shared/src/utils/cfd/cfd.ts index 6952be6c6f39..124f1ee22e4f 100644 --- a/packages/shared/src/utils/cfd/cfd.ts +++ b/packages/shared/src/utils/cfd/cfd.ts @@ -1,8 +1,7 @@ import { DetailsOfEachMT5Loginid, GetAccountStatus, LandingCompany } from '@deriv/api-types'; import { localize } from '@deriv/translations'; - import { CFD_PLATFORMS } from '../platform'; -import { Jurisdiction, JURISDICTION_MARKET_TYPES } from '../constants/jurisdictions-config'; +import { AUTH_STATUS_CODES, Jurisdiction, JURISDICTION_MARKET_TYPES } from '../constants'; let CFD_text_translated: { [key: string]: () => void }; @@ -513,15 +512,10 @@ export const getMT5AccountTitle = ({ account_type, jurisdiction }: TGetMT5Accoun }; export const isPOARequiredForMT5 = (account_status: GetAccountStatus, jurisdiction_shortcode: string) => { - const { authentication } = account_status || {}; - - if (authentication?.attempts?.latest?.service === 'idv') { - if (authentication?.document?.status === 'pending') { - return false; - } - // @ts-expect-error as the prop authenticated_with_idv is not yet present in GetAccountStatus - return !authentication?.document?.authenticated_with_idv[jurisdiction_shortcode]; + const { document } = account_status?.authentication || {}; + if (document?.status === AUTH_STATUS_CODES.PENDING) { + return false; } - - return !['pending', 'verified'].includes(authentication?.document?.status ?? ''); + // @ts-expect-error as the prop verified_jurisdiction is not yet present in GetAccountStatu + return !document?.verified_jurisdiction[jurisdiction_shortcode]; }; diff --git a/packages/trader/package.json b/packages/trader/package.json index 6141d8d3ac90..c7621976eb8b 100644 --- a/packages/trader/package.json +++ b/packages/trader/package.json @@ -88,11 +88,11 @@ "dependencies": { "@cloudflare/stream-react": "^1.9.1", "@deriv-com/analytics": "1.4.13", - "@deriv-com/utils": "^0.0.14", + "@deriv-com/utils": "^0.0.20", "@deriv/api-types": "^1.0.172", "@deriv/components": "^1.0.0", "@deriv/deriv-api": "^1.0.15", - "@deriv/deriv-charts": "^2.1.13", + "@deriv/deriv-charts": "^2.1.14", "@deriv/hooks": "^1.0.0", "@deriv/reports": "^1.0.0", "@deriv/shared": "^1.0.0", diff --git a/packages/tradershub/package.json b/packages/tradershub/package.json index c07134e7239a..0c57606bf89b 100644 --- a/packages/tradershub/package.json +++ b/packages/tradershub/package.json @@ -17,8 +17,8 @@ "@deriv/api-v2": "^1.0.0", "@deriv-lib/account-v2-lib": "1.0.0", "@deriv/quill-icons": "^1.22.4", - "@deriv-com/ui": "^1.14.1", - "@deriv-com/utils": "^0.0.14", + "@deriv-com/ui": "^1.14.5", + "@deriv-com/utils": "^0.0.20", "@deriv/react-joyride": "^2.6.2", "class-variance-authority": "^0.7.0", "embla-carousel-react": "8.0.0-rc12", diff --git a/packages/tradershub/src/components/Tooltip/Tooltip.classnames.ts b/packages/tradershub/src/components/Tooltip/Tooltip.classnames.ts index eed1bf7e3511..45dde72b5189 100644 --- a/packages/tradershub/src/components/Tooltip/Tooltip.classnames.ts +++ b/packages/tradershub/src/components/Tooltip/Tooltip.classnames.ts @@ -1,9 +1,9 @@ import { cva, VariantProps } from 'class-variance-authority'; -export const TooltipClass = cva('z-1 absolute invisible flex flex-col group-hover:visible', { +export const TooltipClass = cva('z-10 absolute invisible flex flex-col peer-hover:visible', { variants: { alignment: { - bottom: 'top-full transform -translate-x-1/2', + bottom: 'top-full right-0', left: 'right-full top-1/2 transform -translate-y-1/2', right: 'left-full top-1/2 transform -translate-y-1/2', top: 'bottom-full transform -translate-x-1/2', diff --git a/packages/tradershub/src/components/Tooltip/Tooltip.tsx b/packages/tradershub/src/components/Tooltip/Tooltip.tsx index a35d30a1ec39..8a305564df92 100644 --- a/packages/tradershub/src/components/Tooltip/Tooltip.tsx +++ b/packages/tradershub/src/components/Tooltip/Tooltip.tsx @@ -33,8 +33,8 @@ type TTooltipProps = { */ const Tooltip = ({ alignment = 'bottom', children, className, message }: TTooltipProps) => { return ( -
-
{children}
+
+
{children}
diff --git a/packages/translations/crowdin/messages.json b/packages/translations/crowdin/messages.json index ec572854dc88..72d81cc8658e 100644 --- a/packages/translations/crowdin/messages.json +++ b/packages/translations/crowdin/messages.json @@ -1 +1 @@ -{"1014140":"You may also call <0>+447723580049 to place your complaint.","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","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","77945356":"Trade on the go with our mobile app.","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\".","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?","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","112152170":"Your passkey is successfully removed. To avoid sign-in prompts, also remove the passkey from your password manager. ","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.","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.","178413314":"First name should be between 2 and 50 characters.","179083332":"Date","179737767":"Our legacy options trading platform.","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","195136585":"Trading View Chart","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.","215975531":"This account offers CFDs on a highly customisable CFD trading platform.","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","220232017":"demo CFDs","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","224929714":"Virtual events based bets in the UK and the Isle of Man are offered by {{legal_entity_name}}, Millennium House, Level 1, Victoria Road, Douglas IM2 4RW, Isle of Man, licensed and regulated in Great Britain by the Gambling Commission under <0>account no. 39172 and by the Gambling Supervision Commission in the Isle of Man (<1>view licence).","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","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","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","276639155":"Please enter a Postal/ZIP code under 20 chatacters.","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","283986166":"Self-exclusion on the website only applies to your {{brand_website_name}} account and does not include other companies or websites.","284527272":"antimode","284772879":"Contract","284809500":"Financial Demo","287934290":"Are you sure you want to cancel this transaction?","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.","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.","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","362946954":"Our legacy automated trading platform.","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","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:","404743411":"Total deposits","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.","418265501":"Demo Derived","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","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","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","510815408":"Letters, numbers, spaces, hyphens only","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","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","530864956":"Deriv Apps","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","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","545476424":"Total withdrawals","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","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?","588609216":"Repeat tour","592087722":"Employment status is required.","592381383":"Passkey successfully removed","593459109":"Try a different currency","594937260":"Derived - BVI","595080994":"Example: CR123456789","595136687":"Save Strategy","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.","636219153":"To start trading, <0/>transfer funds from your Deriv account into this account.","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 }}","648035589":"Other CFD Platforms","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.","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.","680478881":"Total withdrawal limit","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 }}","685391401":"If you're having trouble signing in, let us know via <0>chat","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","706448499":"We'll send you a secure link to verify your request. Tap on it to confirm you want to remove the passkey. This protects your account from unauthorised requests.","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","724203548":"You can send your complaint to the <0>European Commission's Online Dispute Resolution (ODR) platform. This is not applicable to UK clients.","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","759783233":"For more information and assistance to counselling and support services, please visit <0>begambleaware.org.","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","770171141":"Go to {{hostname}}","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","854178118":"Verify your request","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","898457777":"You have added a Deriv Financial account.","898904393":"Barrier:","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.","934932936":"PERSONAL","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","975668699":"I confirm and accept {{company}} 's <0>Terms and Conditions","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)","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.","1113221217":"MT5 Swap-free","1113292761":"Less than 8MB","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.","1130744117":"We shall try to resolve your complaint within 10 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.","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.","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","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.","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","1202494002":"Get real-time data, advanced charting tools, and customisable views.","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","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","1264842111":"You can switch between real and demo accounts.","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.","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","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","1304788377":"<0/><1/>If your complaint relates to our data processing practices, you can submit a formal complaint to the <2>Information and Data Protection Commissioner (Malta) on their website or make a complaint to any supervisory authority within the European Union.","1305217290":"Upload the back of your identity card.","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","1336052175":"Switch accounts","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.","1347037687":"Trader’s Hub V2","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.","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","1357010670":"I acknowledge and confirm that I would like to upgrade to Wallets.","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.","1364045306":"Account V2","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.","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","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).","1446742608":"Click here if you ever need to repeat this tour.","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.","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.","1506251760":"Wallets","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","1519124277":"Derived SVG","1520332426":"Net annual income","1524636363":"Authentication failed","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","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","1549645155":"Your passkey is successfully removed. To avoid sign-in prompts, also remove the passkey from your iCloud keychain. ","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.","1557426040":"Demo Derived SVG","1557682012":"Account Settings","1558972889":"set {{ variable }} to Simple Moving Average {{ dummy }}","1559220089":"Options and multipliers trading platform.","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.","1567076540":"Only use an address for which you have proof of residence - ","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","1579839386":"Appstore","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.","1596378630":"You have added a real Gaming account.<0/>Make a deposit now to start trading.","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.","1645315784":"{{display_currency_code}} Wallet","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","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\".","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","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.","1767429330":"Add a Derived account","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.","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","1787135187":"Postal/ZIP code is required","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","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","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","1850663784":"Submit proofs","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.","1866836018":"<0/><1/>If your complaint relates to our data processing practices, you can submit a formal complaint to your local supervisory authority.","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.","1873838570":"Please verify your address","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.","1874756442":"BVI","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","1907884620":"Add a real Deriv Gaming account","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","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","1921634159":"A few personal details","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","1948044825":"MT5 Derived","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 }}","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.","1974903951":"If you hit Yes, the info you entered will be lost.","1977724653":"This account offers CFDs on financial instruments.","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.","2004052487":"Estimating the lifespan of your trades","2004792696":"If you are a UK resident, to self-exclude from all online gambling companies licensed in Great Britain, go to <0>www.gamstop.co.uk.","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.","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.","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","2086742952":"You have added a real Options account.<0/>Make a deposit now to start trading.","2086792088":"Both barriers should be relative or absolute","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*","2096603244":"Derived - Vanuatu","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*","-583925597":"For verification purposes as required by regulation. It’s your responsibility to provide accurate and complete answers. You can update personal details at any time in your account settings.","-1113902570":"Details","-71696502":"Previous","-1541554430":"Next","-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.","-1497654315":"Our accounts and services are unavailable for the Jersey postal code.","-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.","-1161818065":"Last name should be between 2 and 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","-189310067":"Account closed","-849320995":"Assessments","-773766766":"Email and passwords","-1144318594":"Passkeys","-1466827732":"Self exclusion","-1498206510":"Account limits","-241588481":"Login history","-966136867":"Connected apps","-213009361":"Two-factor authentication","-526636259":"Error 404","-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","-1458676679":"You should enter 2-50 characters.","-1116008222":"You should enter 9-35 numbers.","-1995979930":"First line of address is required.","-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.","-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","-854023608":"To increase limit please verify your identity","-1500958859":"Verify","-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.","-1662154767":"a recent utility bill (e.g. electricity, water, gas, landline, or internet), bank statement, or government-issued letter with your name and this address.","-594456225":"Second line of address","-1964954030":"Postal/ZIP Code","-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","-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.","-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. ","-807767876":"Note:","-1117963487":"Name your token and click on 'Create' to generate your token.","-2005211699":"Create","-1652683689":"Please note that you can only have 1 fiat account.","-1146960797":"Fiat currencies","-1959484303":"Cryptocurrencies","-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","-1982432743":"It appears that the address in your document doesn’t match the address\n in your Deriv profile. Please update your personal details now with the\n 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","-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","-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.","-841187054":"Try Again","-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.","-1108813179":"You can use this password for all your Deriv MT5 accounts.","-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 ( _ @ ? ! / # ).","-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).","-2121421686":"To self-exclude from all online gambling companies licensed in Great Britain, go to <0>www.gamstop.co.uk.","-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}}.","-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","-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.","-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","-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.","-1405679241":"Stored on: ","-1700177761":"Create passkey","-1729774899":"Sign in to your Google or iCloud account.","-1708254107":"Enable Bluetooth.","-613368504":"Tips:","-1897886029":"Before using passkey:","-592543249":"Add more passkeys","-585339315":"Your passkey is successfully removed. To avoid sign-in prompts, also remove the passkey from your Google password manager. ","-1728732301":"Effortless login with passkeys","-684009726":"Edit passkey","-1140319320":"Your account is now secured with a passkey.<0/>Manage your passkey through your<0/>Deriv account settings.","-331060101":"Passkey setup failed","-713875531":"Enable bluetooth.","-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:","-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.","-1107320163":"Automate your trading, no coding needed.","-829643221":"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","-1071336803":"Platform","-1879666853":"Deriv MT5","-820028470":"Options & Multipliers","-1186807402":"Transfer","-224804428":"Transactions","-470018967":"Reset balance","-693105141":"MT5 Financial","-145462920":"Deriv cTrader","-1210359945":"Transfer funds to your accounts","-81256466":"You need a Deriv account to create a CFD account.","-699372497":"Trade with leverage and tight spreads for better returns on successful trades. <0>Learn more","-982095728":"Get","-1790089996":"NEW!","-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.","-280236366":"Enable now","-2051096382":"Earn a range of payouts by correctly predicting market movements with <0>options, or get the\n upside of CFDs without risking more than your initial stake with <1>multipliers.","-1638358352":"Get the upside of CFDs without risking more than your initial stake with <0>Multipliers.","-744999940":"Deriv account","-749129977":"Get a real Deriv account, start trading and manage your funds.","-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","-2146691203":"Choice of regulation","-249184528":"You can create real accounts under EU or non-EU regulation. Click the <0><0/> icon to learn more about these accounts.","-1505234170":"Trader's Hub tour","-1901718278":"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. 70.1% 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","-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.","-759000391":"We were unable to verify your information automatically. To enable this function, you must complete the following:","-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.","-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.","-1428017300":"THE","-1450728048":"OF","-255051108":"YOU","-1845434627":"IS","-931434605":"THIS","-740712821":"A","-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.","-1918487001":"Example:","-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.","-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.","-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}})","-1616649196":"results","-90107030":"No results found","-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.","-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:","-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","-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.","-555886064":"Won","-529060972":"Lost","-1062922595":"Reference ID (buy)","-2068574600":"Reference ID (sell)","-994038153":"Start Time","-1979852400":"Entry Spot","-427802309":"Profit/Loss","-287223248":"No transaction or activity yet.","-418247251":"Download your journal.","-2123571162":"Download","-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.","-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","-1150390589":"Last modified","-1393876942":"Your bots:","-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","-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","-568280383":"Deriv Gaming","-1308346982":"Derived","-579984289":"Derived Demo","-1596515467":"Derived BVI","-222394569":"Derived Vanuatu","-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","-1090244963":"Trade Smarter with Deriv Trader Chart v2.0:","-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","-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.","-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.","-482715448":"Go to Personal details","-2072411961":"Your proof of address has been verified","-384887227":"Update the address in your profile.","-1779268418":"Trade swap-free CFDs on MT5 with forex, stocks, stock indices, commodities cryptocurrencies, ETFs and synthetic indices.","-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}}","-594209315":"Synthetic indices in the EU are offered by {{legal_entity_name}}, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, licensed and regulated by the Malta Gaming Authority (<0>licence no. MGA/B2C/102/2000) and by the Revenue Commissioners for clients in Ireland (<2>licence no. 1010285).","-181484419":"Responsible trading","-650505513":"Full screen","-1823504435":"View notifications","-1954045170":"No currency assigned","-1591792668":"Account Limits","-34495732":"Regulatory information","-1496158755":"Go to Deriv.com","-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.","-1019903756":"Synthetic","-288996254":"Unavailable","-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","-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.","-786091297":"Trade on demo","-228099749":"Please verify your identity and address","-1041852744":"We're processing your personal information","-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","-1557011219":"Add a real Deriv Options account","-241733171":"Add a Deriv Financial 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.","-1369294608":"Already signed up?","-730377053":"You can’t add another real account","-2100785339":"Invalid inputs","-2061807537":"Something’s not right","-617844567":"An account with your details already exists.","-1534648620":"Your password has been changed","-596199727":"We will now redirect you to the login page.","-310434518":"The email input should not be empty.","-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.","-1728963310":"Stop creating an account?","-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:","-943710774":"This complaints policy, which may change from time to time, applies to your account registered with {{legal_entity_name}}, having its registered office address at First Floor, Millennium House, Victoria Road, Douglas, Isle of Man, IM2 4RW, licensed and regulated respectively by (1) the Gambling Supervision Commission in the Isle of Man (current <0>licence issued on 31 August 2017) and (2) the Gambling Commission in the UK (<1>licence no. 39172).","-255056078":"This complaints policy, which may change from time to time, applies to your account(s) registered with {{legal_entity_name}}, having its registered office address at W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033, Malta, licensed and regulated by the Malta Gaming Authority in Malta for gambling products only, <0>licence no. MGA/B2C/102/2000, and for clients residing in the UK by the UK Gambling Commission (account number 39495).","-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.","-1639808836":"If you are not satisfied with the outcome, you can escalate your complaint to the <0>Independent Betting Adjudication Service (IBAS) by filling the IBAS adjudication form. Please note that IBAS only deals with disputes that result from transactions.","-1505742956":"<0/><1/>You can also refer your dispute to the Malta Gaming Authority via the <2>Player Support Unit.","-1406192787":"If you are not satisfied with the outcome, you can escalate your complaint to the <0>Financial Commission.","-1776547326":"<0/><1/>If you reside in the UK and you are unhappy with our response you may escalate your complaint to the <2>Financial Ombudsman Service.","-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","-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","-1587894214":"about verifications needed.","-466784048":"Regulator/EDR","-2098459063":"British Virgin Islands","-1005069157":"Synthetic indices, basket indices, and derived FX","-1344709651":"40+","-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+","-1501230046":"0.6 pips","-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)","-139026353":"A selfie of yourself.","-1228847561":"Verification in review.","-618322245":"Verification successful.","-149461870":"Forex: standard/exotic","-1995163270":"ETFs","-651501076":"Derived - 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.","-510908328":"To start trading, <0 />transfer funds <1 />from your Deriv account into this account.","-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","-1052279158":"Your <0>payout is the sum of your initial stake and profit.","-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","-2017825013":"Got it","-1192773792":"Don't show this again","-1341681145":"When this is active, you can cancel your trade within the chosen time frame. Your stake will be returned without loss.","-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.","-993480898":"Accumulators","-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.","-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.","-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.","-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.","-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","-538215347":"Net deposits","-280147477":"All transactions","-137444201":"Buy","-130601012":"Please select duration","-232254547":"Custom","-1577570698":"Start date","-1251526905":"Last 7 days","-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.","-561436679":"This account offers CFDs on derived instruments.","-1173266642":"This account offers CFDs on a feature-rich trading platform.","-1226595254":"Turbos","-922253974":"Rise/Fall","-1361254291":"Higher/Lower","-335816381":"Ends In/Ends Out","-1789807039":"Asian Up/Asian Down","-330437517":"Matches/Differs","-657360193":"Over/Under","-558031309":"High Tick/Low Tick","-123659792":"Vanillas","-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:","-1167474366":"Tick ","-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 +{"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","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","77945356":"Trade on the go with our mobile app.","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\".","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?","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","112152170":"Your passkey is successfully removed. To avoid sign-in prompts, also remove the passkey from your password manager. ","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.","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.","178413314":"First name should be between 2 and 50 characters.","179083332":"Date","179737767":"Our legacy options trading platform.","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","195136585":"Trading View Chart","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.","215975531":"This account offers CFDs on a highly customisable CFD trading platform.","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","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","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?","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.","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.","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","362946954":"Our legacy automated trading platform.","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","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.","418265501":"Demo Derived","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","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","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","530864956":"Deriv Apps","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","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","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","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?","588609216":"Repeat tour","592087722":"Employment status is required.","592381383":"Passkey successfully removed","593459109":"Try a different currency","594937260":"Derived - BVI","595080994":"Example: CR123456789","595136687":"Save Strategy","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.","636219153":"To start trading, <0/>transfer funds from your Deriv account into this account.","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 }}","648035589":"Other CFD Platforms","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.","680478881":"Total withdrawal limit","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 }}","685391401":"If you're having trouble signing in, let us know via <0>chat","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","706448499":"We'll send you a secure link to verify your request. Tap on it to confirm you want to remove the passkey. This protects your account from unauthorised requests.","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","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","770171141":"Go to {{hostname}}","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","854178118":"Verify your request","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","898457777":"You have added a Deriv Financial account.","898904393":"Barrier:","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.","934932936":"PERSONAL","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","975668699":"I confirm and accept {{company}} 's <0>Terms and Conditions","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)","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.","1113221217":"MT5 Swap-free","1113292761":"Less than 8MB","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.","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","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.","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","1202494002":"Get real-time data, advanced charting tools, and customisable views.","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","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","1264842111":"You can switch between real and demo accounts.","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.","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","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.","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","1336052175":"Switch accounts","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.","1347037687":"Trader’s Hub V2","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.","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","1357010670":"I acknowledge and confirm that I would like to upgrade to Wallets.","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.","1364045306":"Account V2","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.","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","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).","1446742608":"Click here if you ever need to repeat this tour.","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.","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.","1506251760":"Wallets","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","1519124277":"Derived SVG","1520332426":"Net annual income","1524636363":"Authentication failed","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","1549645155":"Your passkey is successfully removed. To avoid sign-in prompts, also remove the passkey from your iCloud keychain. ","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.","1557426040":"Demo Derived SVG","1557682012":"Account Settings","1558972889":"set {{ variable }} to Simple Moving Average {{ dummy }}","1559220089":"Options and multipliers trading platform.","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.","1567076540":"Only use an address for which you have proof of residence - ","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","1579839386":"Appstore","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.","1645315784":"{{display_currency_code}} Wallet","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","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\".","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","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","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","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.","1874756442":"BVI","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","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","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","1921634159":"A few personal details","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","1948044825":"MT5 Derived","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 }}","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.","1974903951":"If you hit Yes, the info you entered will be lost.","1977724653":"This account offers CFDs on financial instruments.","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.","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.","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.","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","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*","2096603244":"Derived - Vanuatu","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*","-583925597":"For verification purposes as required by regulation. It’s your responsibility to provide accurate and complete answers. You can update personal details at any time in your account settings.","-1113902570":"Details","-71696502":"Previous","-1541554430":"Next","-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.","-1161818065":"Last name should be between 2 and 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","-189310067":"Account closed","-849320995":"Assessments","-773766766":"Email and passwords","-1144318594":"Passkeys","-1466827732":"Self exclusion","-1498206510":"Account limits","-241588481":"Login history","-966136867":"Connected apps","-213009361":"Two-factor authentication","-526636259":"Error 404","-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","-1458676679":"You should enter 2-50 characters.","-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.","-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","-854023608":"To increase limit please verify your identity","-1500958859":"Verify","-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.","-1662154767":"a recent utility bill (e.g. electricity, water, gas, landline, or internet), bank statement, or government-issued letter with your name and this address.","-594456225":"Second line of address","-1964954030":"Postal/ZIP Code","-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","-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.","-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. ","-807767876":"Note:","-1117963487":"Name your token and click on 'Create' to generate your token.","-2005211699":"Create","-1652683689":"Please note that you can only have 1 fiat account.","-1146960797":"Fiat currencies","-1959484303":"Cryptocurrencies","-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","-1982432743":"It appears that the address in your document doesn’t match the address\n in your Deriv profile. Please update your personal details now with the\n 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","-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","-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.","-841187054":"Try Again","-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.","-1108813179":"You can use this password for all your Deriv MT5 accounts.","-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 ( _ @ ? ! / # ).","-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}}.","-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","-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.","-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","-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.","-1405679241":"Stored on: ","-1700177761":"Create passkey","-1729774899":"Sign in to your Google or iCloud account.","-1708254107":"Enable Bluetooth.","-613368504":"Tips:","-1897886029":"Before using passkey:","-592543249":"Add more passkeys","-585339315":"Your passkey is successfully removed. To avoid sign-in prompts, also remove the passkey from your Google password manager. ","-1728732301":"Effortless login with passkeys","-684009726":"Edit passkey","-1140319320":"Your account is now secured with a passkey.<0/>Manage your passkey through your<0/>Deriv account settings.","-1036903080":"We’re experiencing a temporary issue in processing your request. Please try again later.","-331060101":"Passkey setup failed","-713875531":"Enable bluetooth.","-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:","-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.","-1107320163":"Automate your trading, no coding needed.","-829643221":"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","-1071336803":"Platform","-1879666853":"Deriv MT5","-820028470":"Options & Multipliers","-1186807402":"Transfer","-224804428":"Transactions","-470018967":"Reset balance","-693105141":"MT5 Financial","-145462920":"Deriv cTrader","-1210359945":"Transfer funds to your accounts","-81256466":"You need a Deriv account to create a CFD account.","-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","-699372497":"Trade with leverage and tight spreads for better returns on successful trades. <0>Learn more","-982095728":"Get","-1790089996":"NEW!","-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.","-2051096382":"Earn a range of payouts by correctly predicting market movements with <0>options, or get the\n upside of CFDs without risking more than your initial stake with <1>multipliers.","-1638358352":"Get the upside of CFDs without risking more than your initial stake with <0>Multipliers.","-744999940":"Deriv account","-749129977":"Get a real Deriv account, start trading and manage your funds.","-2146691203":"Choice of regulation","-249184528":"You can create real accounts under EU or non-EU regulation. Click the <0><0/> icon to learn more about these accounts.","-1505234170":"Trader's Hub tour","-1901718278":"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. 70.1% 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","-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.","-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.","-1428017300":"THE","-1450728048":"OF","-255051108":"YOU","-1845434627":"IS","-931434605":"THIS","-740712821":"A","-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.","-1918487001":"Example:","-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.","-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.","-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}})","-1616649196":"results","-90107030":"No results found","-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.","-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:","-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","-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.","-555886064":"Won","-529060972":"Lost","-1062922595":"Reference ID (buy)","-2068574600":"Reference ID (sell)","-994038153":"Start Time","-1979852400":"Entry Spot","-427802309":"Profit/Loss","-287223248":"No transaction or activity yet.","-418247251":"Download your journal.","-2123571162":"Download","-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.","-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","-1150390589":"Last modified","-1393876942":"Your bots:","-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","-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","-1308346982":"Derived","-579984289":"Derived Demo","-1596515467":"Derived BVI","-222394569":"Derived Vanuatu","-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","-1090244963":"Trade Smarter with Deriv Trader Chart v2.0:","-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","-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.","-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.","-482715448":"Go to Personal details","-2072411961":"Your proof of address has been verified","-384887227":"Update the address in your profile.","-1779268418":"Trade swap-free CFDs on MT5 with forex, stocks, stock indices, commodities cryptocurrencies, ETFs and synthetic indices.","-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","-1496158755":"Go to Deriv.com","-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","-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","-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","-241733171":"Add a Deriv Financial 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.","-1369294608":"Already signed up?","-730377053":"You can’t add another real account","-2100785339":"Invalid inputs","-2061807537":"Something’s not right","-617844567":"An account with your details already exists.","-1534648620":"Your password has been changed","-596199727":"We will now redirect you to the login page.","-310434518":"The email input should not be empty.","-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.","-1728963310":"Stop creating an account?","-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.","-1776547326":"<0/><1/>If you reside in the UK and you are unhappy with our response you may escalate your complaint to the <2>Financial Ombudsman Service.","-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","-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","-1587894214":"about verifications needed.","-466784048":"Regulator/EDR","-2098459063":"British Virgin Islands","-1005069157":"Synthetic indices, basket indices, and derived FX","-1344709651":"40+","-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)","-139026353":"A selfie of yourself.","-1228847561":"Verification in review.","-618322245":"Verification successful.","-149461870":"Forex: standard/exotic","-1995163270":"ETFs","-651501076":"Derived - 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.","-510908328":"To start trading, <0 />transfer funds <1 />from your Deriv account into this account.","-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","-1052279158":"Your <0>payout is the sum of your initial stake and profit.","-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","-2017825013":"Got it","-1192773792":"Don't show this again","-1341681145":"When this is active, you can cancel your trade within the chosen time frame. Your stake will be returned without loss.","-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.","-993480898":"Accumulators","-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.","-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.","-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.","-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.","-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","-232254547":"Custom","-1577570698":"Start date","-1251526905":"Last 7 days","-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.","-561436679":"This account offers CFDs on derived instruments.","-1173266642":"This account offers CFDs on a feature-rich trading platform.","-1226595254":"Turbos","-922253974":"Rise/Fall","-1361254291":"Higher/Lower","-335816381":"Ends In/Ends Out","-1789807039":"Asian Up/Asian Down","-330437517":"Matches/Differs","-657360193":"Over/Under","-558031309":"High Tick/Low Tick","-123659792":"Vanillas","-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:","-1167474366":"Tick ","-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 573864fd47a8..5ce1c0fdc093 100644 --- a/packages/translations/src/translations/ach.json +++ b/packages/translations/src/translations/ach.json @@ -1,5 +1,4 @@ { - "1014140": "crwdns1258947:0crwdne1258947:0", "1485191": "crwdns2154485:0crwdne2154485:0", "2082741": "crwdns3537464:0crwdne3537464:0", "2091451": "crwdns2301427:0crwdne2301427:0", @@ -205,12 +204,10 @@ "218441288": "crwdns1259243:0crwdne1259243:0", "220014242": "crwdns1259245:0crwdne1259245:0", "220186645": "crwdns1259247:0crwdne1259247:0", - "220232017": "crwdns1259249:0crwdne1259249:0", "221261209": "crwdns2981013:0crwdne2981013:0", "223120514": "crwdns1259253:0crwdne1259253:0", "223607908": "crwdns1259255:0{{underlying_name}}crwdne1259255:0", "224650827": "crwdns1259257:0crwdne1259257:0", - "224929714": "crwdns1259259:0{{legal_entity_name}}crwdne1259259:0", "225887649": "crwdns1259261:0crwdne1259261:0", "227591929": "crwdns1259263:0{{ input_datetime }}crwdnd1259263:0{{ dummy }}crwdne1259263:0", "227903202": "crwdns1259265:0{{platform_name_mt5}}crwdne1259265:0", @@ -262,7 +259,6 @@ "273728315": "crwdns1259341:0crwdne1259341:0", "274268819": "crwdns1259343:0crwdne1259343:0", "275116637": "crwdns1259345:0crwdne1259345:0", - "276639155": "crwdns4154294:0crwdne4154294:0", "276770377": "crwdns3526818:0{{to_account}}crwdne3526818:0", "277469417": "crwdns1259347:0crwdne1259347:0", "278684544": "crwdns1259349:0crwdne1259349:0", @@ -271,7 +267,6 @@ "282319001": "crwdns1259351:0crwdne1259351:0", "282564053": "crwdns1259353:0crwdne1259353:0", "283830551": "crwdns1490889:0crwdne1490889:0", - "283986166": "crwdns1259355:0{{brand_website_name}}crwdne1259355:0", "284527272": "crwdns1259357:0crwdne1259357:0", "284772879": "crwdns1259359:0crwdne1259359:0", "284809500": "crwdns2080539:0crwdne2080539:0", @@ -376,7 +371,6 @@ "401339495": "crwdns1259535:0crwdne1259535:0", "401345454": "crwdns2925309:0crwdne2925309:0", "403456289": "crwdns1259539:0crwdne1259539:0", - "404743411": "crwdns1259541:0crwdne1259541:0", "406359555": "crwdns1259543:0crwdne1259543:0", "406497323": "crwdns1259545:0crwdne1259545:0", "411482865": "crwdns1259547:0{{deriv_account}}crwdne1259547:0", @@ -468,11 +462,11 @@ "502041595": "crwdns1259683:0crwdne1259683:0", "505793554": "crwdns1259687:0crwdne1259687:0", "508390614": "crwdns1259689:0crwdne1259689:0", - "510815408": "crwdns1259691:0crwdne1259691:0", "511679687": "crwdns2311045:0crwdne2311045:0", "514031715": "crwdns1259693:0{{ input_list }}crwdne1259693:0", "514776243": "crwdns1259695:0{{account_type}}crwdne1259695:0", "514948272": "crwdns1259697:0crwdne1259697:0", + "517631043": "crwdns5274394:0crwdne5274394:0", "517833647": "crwdns3264406:0crwdne3264406:0", "518955798": "crwdns1259699:0crwdne1259699:0", "519205761": "crwdns3526822:0crwdne3526822:0", @@ -499,7 +493,6 @@ "542038694": "crwdns1259731:0{{label}}crwdne1259731:0", "542305026": "crwdns1259733:0crwdne1259733:0", "543413346": "crwdns1259735:0crwdne1259735:0", - "545476424": "crwdns1259739:0crwdne1259739:0", "547029855": "crwdns3286884:0crwdne3286884:0", "549479175": "crwdns1259743:0crwdne1259743:0", "549799607": "crwdns3172732:0crwdne3172732:0", @@ -628,6 +621,7 @@ "665777772": "crwdns1259935:0crwdne1259935:0", "665872465": "crwdns1259937:0crwdne1259937:0", "666724936": "crwdns1419881:0crwdne1419881:0", + "669494711": "crwdns5249824:0crwdne5249824:0", "671630762": "crwdns4395364:0{{expiry_in_months}}crwdne4395364:0", "672008428": "crwdns1259941:0crwdne1259941:0", "673915530": "crwdns1259943:0crwdne1259943:0", @@ -693,7 +687,6 @@ "721011817": "crwdns1260019:0crwdne1260019:0", "723045653": "crwdns1260021:0crwdne1260021:0", "723961296": "crwdns1260023:0crwdne1260023:0", - "724203548": "crwdns1260025:0crwdne1260025:0", "724526379": "crwdns2925313:0crwdne2925313:0", "728042840": "crwdns1260027:0crwdne1260027:0", "728824018": "crwdns1260029:0crwdne1260029:0", @@ -726,7 +719,6 @@ "755138488": "crwdns3645010:0crwdne3645010:0", "756152377": "crwdns1260065:0crwdne1260065:0", "758003269": "crwdns1260067:0crwdne1260067:0", - "759783233": "crwdns1260069:0crwdne1260069:0", "760528514": "crwdns1260071:0crwdne1260071:0", "761576760": "crwdns1260073:0crwdne1260073:0", "762926186": "crwdns2301437:0crwdne2301437:0", @@ -1105,7 +1097,6 @@ "1128404172": "crwdns1260639:0crwdne1260639:0", "1129124569": "crwdns1260641:0crwdne1260641:0", "1129842439": "crwdns1260643:0crwdne1260643:0", - "1130744117": "crwdns1260645:0crwdne1260645:0", "1130791706": "crwdns1260647:0crwdne1260647:0", "1133651559": "crwdns1260649:0crwdne1260649:0", "1134879544": "crwdns1260651:0crwdne1260651:0", @@ -1274,7 +1265,6 @@ "1304083330": "crwdns1260907:0crwdne1260907:0", "1304272843": "crwdns1260909:0crwdne1260909:0", "1304620236": "crwdns1260911:0crwdne1260911:0", - "1304788377": "crwdns1260913:0crwdne1260913:0", "1305217290": "crwdns1260915:0crwdne1260915:0", "1308625834": "crwdns1260917:0crwdne1260917:0", "1309017029": "crwdns1260919:0crwdne1260919:0", @@ -1512,6 +1502,7 @@ "1531017969": "crwdns1261291:0crwdne1261291:0", "1533177906": "crwdns1261293:0crwdne1261293:0", "1534796105": "crwdns1261297:0crwdne1261297:0", + "1537192641": "crwdns5274390:0crwdne5274390:0", "1537711064": "crwdns1261299:0crwdne1261299:0", "1540585098": "crwdns1261303:0crwdne1261303:0", "1541508606": "crwdns1925313:0crwdne1925313:0", @@ -1562,7 +1553,6 @@ "1594147169": "crwdns1261369:0crwdne1261369:0", "1594322503": "crwdns1261371:0crwdne1261371:0", "1595295238": "crwdns3478622:0crwdne3478622:0", - "1596378630": "crwdns1261373:0crwdne1261373:0", "1597672660": "crwdns1261375:0crwdne1261375:0", "1598009247": "crwdns1261377:0crwdne1261377:0", "1598386296": "crwdns4150452:0crwdne4150452:0", @@ -1730,7 +1720,6 @@ "1763123662": "crwdns1261635:0crwdne1261635:0", "1766212789": "crwdns1261637:0crwdne1261637:0", "1766993323": "crwdns1261639:0crwdne1261639:0", - "1767429330": "crwdns1261641:0crwdne1261641:0", "1768293340": "crwdns2301209:0crwdne2301209:0", "1768861315": "crwdns1261643:0crwdne1261643:0", "1768918213": "crwdns1261645:0crwdne1261645:0", @@ -1744,6 +1733,7 @@ "1779144409": "crwdns1555143:0crwdne1555143:0", "1779519903": "crwdns1261659:0crwdne1261659:0", "1779801832": "crwdns4642898:0crwdne4642898:0", + "1779872677": "crwdns5274396:0crwdne5274396:0", "1780442963": "crwdns1781139:0{{ platform }}crwdne1781139:0", "1780770384": "crwdns1261661:0crwdne1261661:0", "1782308283": "crwdns1261663:0crwdne1261663:0", @@ -1754,7 +1744,6 @@ "1783740125": "crwdns1261671:0crwdne1261671:0", "1785298924": "crwdns4122056:0crwdne4122056:0", "1786644593": "crwdns3698886:0crwdne3698886:0", - "1787135187": "crwdns1261673:0crwdne1261673:0", "1787492950": "crwdns1261675:0{{platform_name_dbot}}crwdne1261675:0", "1788515547": "crwdns1990201:0crwdne1990201:0", "1788966083": "crwdns1261677:0crwdne1261677:0", @@ -1820,7 +1809,6 @@ "1850031313": "crwdns1261779:0crwdne1261779:0", "1850132581": "crwdns1261781:0crwdne1261781:0", "1850659345": "crwdns1261783:0crwdne1261783:0", - "1850663784": "crwdns1261785:0crwdne1261785:0", "1851052337": "crwdns1261787:0crwdne1261787:0", "1851776924": "crwdns1261789:0crwdne1261789:0", "1854480511": "crwdns1261793:0crwdne1261793:0", @@ -1837,7 +1825,6 @@ "1865525612": "crwdns2439023:0crwdne2439023:0", "1866244589": "crwdns4184224:0crwdne4184224:0", "1866811212": "crwdns1261809:0crwdne1261809:0", - "1866836018": "crwdns1261811:0crwdne1261811:0", "1867217564": "crwdns1261813:0crwdne1261813:0", "1867783237": "crwdns1261815:0crwdne1261815:0", "1869315006": "crwdns1261817:0crwdne1261817:0", @@ -1848,7 +1835,6 @@ "1871377550": "crwdns2301453:0crwdne2301453:0", "1871664426": "crwdns1261825:0crwdne1261825:0", "1873376454": "crwdns3264390:0crwdne3264390:0", - "1873838570": "crwdns1261829:0crwdne1261829:0", "1874481756": "crwdns1261831:0crwdne1261831:0", "1874756442": "crwdns1261833:0crwdne1261833:0", "1875702561": "crwdns2101851:0crwdne2101851:0", @@ -1890,7 +1876,6 @@ "1906213000": "crwdns2301457:0crwdne2301457:0", "1906639368": "crwdns1261883:0crwdne1261883:0", "1907423697": "crwdns3478662:0crwdne3478662:0", - "1907884620": "crwdns1261885:0crwdne1261885:0", "1908023954": "crwdns3031421:0crwdne3031421:0", "1908239019": "crwdns1261887:0crwdne1261887:0", "1908686066": "crwdns1335151:0crwdne1335151:0", @@ -1993,7 +1978,6 @@ "2001222130": "crwdns1262055:0crwdne1262055:0", "2001361785": "crwdns3859832:0crwdne3859832:0", "2004052487": "crwdns4122060:0crwdne4122060:0", - "2004792696": "crwdns123868:0crwdne123868:0", "2007028410": "crwdns121792:0crwdne121792:0", "2010759971": "crwdns156502:0crwdne156502:0", "2010866561": "crwdns69608:0crwdne69608:0", @@ -2073,7 +2057,6 @@ "2085387371": "crwdns164955:0crwdne164955:0", "2085602195": "crwdns85003:0crwdne85003:0", "2086048243": "crwdns3698894:0crwdne3698894:0", - "2086742952": "crwdns167521:0crwdne167521:0", "2086792088": "crwdns80777:0crwdne80777:0", "2088735355": "crwdns123880:0crwdne123880:0", "2089087110": "crwdns3586124:0crwdne3586124:0", @@ -2281,7 +2264,6 @@ "-1699820408": "crwdns120990:0{{field_name}}crwdnd120990:0{{max_number}}crwdne120990:0", "-1575567374": "crwdns120992:0crwdne120992:0", "-816263501": "crwdns4259420:0crwdne4259420:0", - "-1497654315": "crwdns169125:0crwdne169125:0", "-755626951": "crwdns81603:0crwdne81603:0", "-1024240099": "crwdns81219:0crwdne81219:0", "-1534917661": "crwdns4642592:0crwdne4642592:0", @@ -2348,6 +2330,7 @@ "-1458676679": "crwdns81199:0crwdne81199:0", "-1116008222": "crwdns4150456:0crwdne4150456:0", "-1995979930": "crwdns4150458:0crwdne4150458:0", + "-703454156": "crwdns5259538:0crwdne5259538:0", "-2113555886": "crwdns81101:0crwdne81101:0", "-1103497546": "crwdns3698896:0crwdne3698896:0", "-700600899": "crwdns3698898:0crwdne3698898:0", @@ -2499,7 +2482,6 @@ "-1545823544": "crwdns124190:0crwdne124190:0", "-180147209": "crwdns124192:0crwdne124192:0", "-374553538": "crwdns124194:0crwdne124194:0", - "-2121421686": "crwdns124196:0crwdne124196:0", "-2105708790": "crwdns124198:0crwdne124198:0", "-1960600163": "crwdns124200:0crwdne124200:0", "-1073845224": "crwdns166249:0crwdne166249:0", @@ -2653,6 +2635,7 @@ "-1728732301": "crwdns4944804:0crwdne4944804:0", "-684009726": "crwdns4944806:0crwdne4944806:0", "-1140319320": "crwdns4944808:0crwdne4944808:0", + "-1036903080": "crwdns5274392:0crwdne5274392:0", "-331060101": "crwdns5219286:0crwdne5219286:0", "-713875531": "crwdns5141378:0crwdne5141378:0", "-80717068": "crwdns1220181:0crwdne1220181:0", @@ -2710,6 +2693,10 @@ "-145462920": "crwdns2981031:0crwdne2981031:0", "-1210359945": "crwdns1719469:0crwdne1719469:0", "-81256466": "crwdns1719471:0crwdne1719471:0", + "-1926387364": "crwdns5274398:0crwdne5274398:0", + "-1057002564": "crwdns5018748:0crwdne5018748:0", + "-1424352390": "crwdns4308490:0crwdne4308490:0", + "-280236366": "crwdns5018746:0crwdne5018746:0", "-699372497": "crwdns1719473:0crwdne1719473:0", "-982095728": "crwdns1719467:0crwdne1719467:0", "-1790089996": "crwdns89532:0crwdne89532:0", @@ -2733,13 +2720,10 @@ "-2055865877": "crwdns1719495:0crwdne1719495:0", "-643108528": "crwdns1719497:0crwdne1719497:0", "-1002556560": "crwdns3172838:0crwdne3172838:0", - "-280236366": "crwdns5018746:0crwdne5018746:0", "-2051096382": "crwdns2925233:0crwdne2925233:0", "-1638358352": "crwdns1719501:0crwdne1719501:0", "-744999940": "crwdns118062:0crwdne118062:0", "-749129977": "crwdns1719509:0crwdne1719509:0", - "-1057002564": "crwdns5018748:0crwdne5018748:0", - "-1424352390": "crwdns4308490:0crwdne4308490:0", "-2146691203": "crwdns1719525:0crwdne1719525:0", "-249184528": "crwdns1719527:0crwdne1719527:0", "-1505234170": "crwdns1925319:0crwdne1925319:0", @@ -2860,7 +2844,6 @@ "-1949883551": "crwdns1855989:0crwdne1855989:0", "-1149845849": "crwdns1925321:0crwdne1925321:0", "-1232852916": "crwdns165867:0{{currency}}crwdne165867:0", - "-759000391": "crwdns160442:0crwdne160442:0", "-1632668764": "crwdns81465:0crwdne81465:0", "-544232635": "crwdns160510:0crwdne160510:0", "-1161069724": "crwdns160512:0crwdne160512:0", @@ -3267,7 +3250,6 @@ "-821418875": "crwdns81433:0crwdne81433:0", "-679102561": "crwdns80823:0crwdne80823:0", "-430118939": "crwdns123914:0crwdne123914:0", - "-568280383": "crwdns167499:0crwdne167499:0", "-1308346982": "crwdns1060504:0crwdne1060504:0", "-579984289": "crwdns2080551:0crwdne2080551:0", "-1596515467": "crwdns1060506:0crwdne1060506:0", @@ -3390,7 +3372,6 @@ "-689237734": "crwdns123970:0crwdne123970:0", "-1642457320": "crwdns117302:0crwdne117302:0", "-1966944392": "crwdns117906:0{{status}}crwdne117906:0", - "-594209315": "crwdns496920:0{{legal_entity_name}}crwdne496920:0", "-181484419": "crwdns123976:0crwdne123976:0", "-650505513": "crwdns123978:0crwdne123978:0", "-1823504435": "crwdns81485:0crwdne81485:0", @@ -3400,8 +3381,8 @@ "-1496158755": "crwdns1361675:0crwdne1361675:0", "-1323441180": "crwdns2781963:0crwdne2781963:0", "-1396326507": "crwdns117908:0{{website_name}}crwdne117908:0", - "-1019903756": "crwdns118042:0crwdne118042:0", "-288996254": "crwdns159000:0crwdne159000:0", + "-1019903756": "crwdns118042:0crwdne118042:0", "-735306327": "crwdns1719325:0crwdne1719325:0", "-1813972756": "crwdns1774605:0crwdne1774605:0", "-366030582": "crwdns1774607:0crwdne1774607:0", @@ -3424,9 +3405,6 @@ "-175638343": "crwdns167725:0crwdne167725:0", "-1768223277": "crwdns124024:0crwdne124024:0", "-1215717784": "crwdns120692:0{{currency}}crwdne120692:0", - "-786091297": "crwdns160038:0crwdne160038:0", - "-228099749": "crwdns160040:0crwdne160040:0", - "-1041852744": "crwdns160042:0crwdne160042:0", "-1775006840": "crwdns164408:0crwdne164408:0", "-983734304": "crwdns167529:0crwdne167529:0", "-917733293": "crwdns160044:0crwdne160044:0", @@ -3434,7 +3412,6 @@ "-952649119": "crwdns160144:0crwdne160144:0", "-3815578": "crwdns160146:0crwdne160146:0", "-1456176427": "crwdns124044:0crwdne124044:0", - "-1557011219": "crwdns167531:0crwdne167531:0", "-241733171": "crwdns124048:0crwdne124048:0", "-1329687645": "crwdns167727:0crwdne167727:0", "-1429178373": "crwdns167729:0crwdne167729:0", @@ -3471,14 +3448,10 @@ "-2142491494": "crwdns1047670:0crwdne1047670:0", "-611136817": "crwdns1047672:0crwdne1047672:0", "-1342699195": "crwdns121912:0crwdne121912:0", - "-943710774": "crwdns496930:0{{legal_entity_name}}crwdne496930:0", - "-255056078": "crwdns496932:0{{legal_entity_name}}crwdne496932:0", "-1941013000": "crwdns496934:0{{legal_entity_name_svg}}crwdnd496934:0{{legal_entity_name_fx}}crwdnd496934:0{{legal_entity_name_v}}crwdne496934:0", "-594812204": "crwdns496936:0{{legal_entity_name_svg}}crwdne496936:0", "-813256361": "crwdns1990159:0crwdne1990159:0", "-1622847732": "crwdns1990161:0{{legal_entity_name}}crwdne1990161:0", - "-1639808836": "crwdns124398:0crwdne124398:0", - "-1505742956": "crwdns124402:0crwdne124402:0", "-1406192787": "crwdns124100:0crwdne124100:0", "-1776547326": "crwdns158854:0crwdne158854:0", "-2115348800": "crwdns124086:0crwdne124086:0", @@ -3561,7 +3534,6 @@ "-1969608084": "crwdns2154527:0crwdne2154527:0", "-800771713": "crwdns2154529:0crwdne2154529:0", "-1497128311": "crwdns2154531:0crwdne2154531:0", - "-1501230046": "crwdns2154533:0crwdne2154533:0", "-1689815930": "crwdns2154535:0crwdne2154535:0", "-1175785439": "crwdns2154537:0crwdne2154537:0", "-139026353": "crwdns2154541:0crwdne2154541:0", @@ -4102,7 +4074,6 @@ "-1750896349": "crwdns158252:0crwdne158252:0", "-102980621": "crwdns117220:0crwdne117220:0", "-462715374": "crwdns70260:0crwdne70260:0", - "-538215347": "crwdns123902:0crwdne123902:0", "-280147477": "crwdns159412:0crwdne159412:0", "-137444201": "crwdns81645:0crwdne81645:0", "-130601012": "crwdns89564:0crwdne89564:0", diff --git a/packages/translations/src/translations/ar.json b/packages/translations/src/translations/ar.json index e6d16a6a6c07..98cd0cef042f 100644 --- a/packages/translations/src/translations/ar.json +++ b/packages/translations/src/translations/ar.json @@ -1,5 +1,4 @@ { - "1014140": "يمكنك أيضًا الاتصال على <0>+447723580049 لتقديم شكواك.", "1485191": "1:1000", "2082741": "رقم المستند الإضافي", "2091451": "Deriv Bot - شريكك الالي في التداول", @@ -205,12 +204,10 @@ "218441288": "رقم بطاقة الهوية", "220014242": "قم بتحميل صورة شخصية من جهاز الكمبيوتر الخاص بك", "220186645": "النص فارغ", - "220232017": "العقود مقابل الفروقات التجريبية", "221261209": "سيسمح لك حساب Deriv بتمويل (وسحب) حساب (حسابات) CFDs الخاص بك.", "223120514": "في هذا المثال، تمثل كل نقطة من خط SMA متوسطًا حسابيًا لأسعار الإغلاق في آخر 50 يومًا.", "223607908": "إحصائيات الرقم الأخير لأحدث 1000 علامة لـ {{underlying_name}}", "224650827": "إنترنت الأشياء مقابل الدولار", - "224929714": "يتم تقديم الرهانات القائمة على الأحداث الافتراضية في المملكة المتحدة وجزيرة مان من قبل {{legal_entity_name}}، Millennium House، Level 1، Victoria Road، Douglas IM2 4RW، Isle of Man، المرخصة والمنظمة في بريطانيا العظمى من قبل لجنة المقامرة بموجب <0>الحساب رقم 39172 ومن قبل لجنة الإشراف على المقامرة في جزيرة مان (<1>عرض الترخيص).", "225887649": "هذه الكتلة إلزامية. تتم إضافتها إلى استراتيجيتك افتراضيًا عند إنشاء استراتيجية جديدة. لا يمكنك إضافة أكثر من نسخة واحدة من هذه الكتلة إلى اللوحة.", "227591929": "إلى الطابع الزمني {{ input_datetime }} {{ dummy }}", "227903202": "سنقوم بفرض رسوم تحويل بنسبة 1٪ للتحويلات بعملات مختلفة بين حسابات Deriv الورقية الخاصة بك و {{platform_name_mt5}} حساب.", @@ -262,7 +259,6 @@ "273728315": "يجب ألا تكون 0 أو فارغة", "274268819": "مؤشر التقلب 100", "275116637": "Deriv X", - "276639155": "يرجى إدخال الرمز البريدي/البريدي تحت 20 حرفًا.", "276770377": "سيتم إنشاء حساب (حسابات) MT5 جديدة ضمن {{to_account}} للتداولات الجديدة.", "277469417": "لا يمكن أن يكون وقت الاستبعاد لأكثر من خمس سنوات.", "278684544": "احصل على قائمة فرعية من # من النهاية", @@ -271,7 +267,6 @@ "282319001": "تحقق من صورتك", "282564053": "بعد ذلك، سنحتاج إلى إثبات العنوان الخاص بك.", "283830551": "عنوانك لا يتطابق مع ملف التعريف الخاص بك", - "283986166": "الاستبعاد الذاتي على موقع الويب ينطبق فقط على حساب {{brand_website_name}} الخاص بك ولا يشمل الشركات أو مواقع الويب الأخرى.", "284527272": "مضاد للوضع", "284772879": "عقد", "284809500": "حساب مالي تجريبي", @@ -376,7 +371,6 @@ "401339495": "تحقق من العنوان", "401345454": "انتقل إلى علامة تبويب البرامج التعليمية للقيام بذلك.", "403456289": "صيغة SMA هي:", - "404743411": "إجمالي الودائع", "406359555": "تفاصيل العقد", "406497323": "قم ببيع عقدك النشط إذا لزم الأمر (اختياري)", "411482865": "إضافة {{deriv_account}} حساب", @@ -468,11 +462,11 @@ "502041595": "تمنحك هذه الكتلة شمعة محددة من خلال الفترة الزمنية المحددة.", "505793554": "الحرف الأخير", "508390614": "الإصدار التجريبي من برنامج STP المالي", - "510815408": "الحروف والأرقام والمسافات والواصلات فقط", "511679687": "تسمح لك Accumulators بالتعبير عن وجهة نظرك بشأن نطاق حركة المؤشر وتنمية حصتك بشكل كبير <0>بمعدل نمو ثابت.", "514031715": "القائمة {{ input_list }} فارغة", "514776243": "تم تغيير كلمة المرور {{account_type}} الخاصة بك.", "514948272": "انسخ الرابط", + "517631043": "لقد أرسلنا الكتاب الاليكتروني الخاص بك. تحقق من بريدك الإلكتروني لتنزيله.", "517833647": "مؤشر التقلب 50 (1 ثانية)", "518955798": "7. قم بالتشغيل مرة واحدة في البداية", "519205761": "لم يعد بإمكانك فتح صفقات جديدة باستخدام هذا الحساب.", @@ -499,7 +493,6 @@ "542038694": "يُسمح فقط بالأحرف والأرقام والمسافة والتسطير السفلي والواصلة بـ {{label}}.", "542305026": "يجب عليك أيضًا تقديم إثبات الهوية.", "543413346": "ليس لديك صفقات مفتوحة لهذا الأصل. لعرض المراكز المفتوحة الأخرى، انقر فوق الانتقال إلى التقارير", - "545476424": "إجمالي عمليات السحب", "547029855": "إذا قمت بتحديد هذه الميزة، يمكنك إلغاء تداولك ضمن إطار زمني محدد إذا تحرك سعر الأصل عكس صالحك. سوف تستعيد حصتك دون ربح/خسارة. نحن نفرض رسومًا صغيرة مقابل ذلك. يتم تعطيل جني الأرباح وإيقاف الخسارة عندما يكون إلغاء الصفقة نشطًا.", "549479175": "المضاعفات من Deriv", "549799607": "انتقل إلى الدردشة الحية", @@ -628,6 +621,7 @@ "665777772": "XLM/دولار أمريكي", "665872465": "في المثال أدناه، يتم تحديد سعر الافتتاح، والذي يتم تعيينه بعد ذلك لمتغير يسمى «op».", "666724936": "يرجى إدخال رقم هوية صالح.", + "669494711": "1.4 نقطة", "671630762": "نحن نقبل فقط هذه الأنواع من المستندات كدليل على عنوانك. يجب أن يكون المستند حديثًا (تم إصداره خلال {{expiry_in_months}} شهرًا الماضية) وأن يتضمن اسمك وعنوانك:", "672008428": "Zcach/دولار أمريكي", "673915530": "السلطة القضائية واختيار القانون", @@ -693,7 +687,6 @@ "721011817": "- ارفع الرقم الأول إلى قوة الرقم الثاني", "723045653": "ستقوم بتسجيل الدخول إلى حساب Deriv الخاص بك باستخدام عنوان البريد الإلكتروني هذا.", "723961296": "إدارة كلمة المرور", - "724203548": "يمكنك إرسال شكواك إلى <0>حل النزاعات عبر الإنترنت (ODR) التابعة للمفوضية الأوروبية. هذا لا ينطبق على عملاء المملكة المتحدة.", "724526379": "تعرف على المزيد من خلال برامجنا التعليمية", "728042840": "لمواصلة التداول معنا، يرجى تأكيد المكان الذي تعيش فيه.", "728824018": "المؤشر الإسباني", @@ -726,7 +719,6 @@ "755138488": "يتعذر علينا التحقق من المستند الذي قدمته لأنه يحتوي على علامات أو نص لا ينبغي أن يكون موجودا في المستند. يرجى تقديم صورة واضحة أو مسح ضوئي لوثيقة الهوية الأصلية الخاصة بك.", "756152377": "يضع SMA وزنًا متساويًا لتوزيع القيم بالكامل.", "758003269": "قم بعمل قائمة من النص", - "759783233": "لمزيد من المعلومات والمساعدة في خدمات الاستشارة والدعم، يرجى زيارة <0>begambleaware.org.", "760528514": "يرجى ملاحظة أن تغيير قيمة «i» لن يغير قيمة العنصر الأصلي في القائمة", "761576760": "قم بتمويل حسابك لبدء التداول.", "762926186": "الإستراتيجية السريعة هي استراتيجية جاهزة يمكنك استخدامها في Deriv Bot. هناك 3 استراتيجيات سريعة يمكنك الاختيار من بينها: مارتينجال وداليمبيرت وأوسكار جريند.", @@ -1105,7 +1097,6 @@ "1128404172": "تراجع", "1129124569": "إذا اخترت «Under»، ستربح بالعائد إذا كان الرقم الأخير من العلامة الأخيرة أقل من توقعاتك.", "1129842439": "يرجى إدخال المبلغ الذي سيتم فيه جني الأرباح.", - "1130744117": "سنحاول حل شكواك خلال 10 أيام عمل. سنبلغك بالنتيجة مع شرح لموقفنا ونقترح أي تدابير علاجية نعتزم اتخاذها.", "1130791706": "ن", "1133651559": "دردشة مباشرة", "1134879544": "مثال لوثيقة ذات وهج", @@ -1274,7 +1265,6 @@ "1304083330": "نسخ", "1304272843": "يرجى تقديم إثبات العنوان الخاص بك.", "1304620236": "تفعيل الكاميرا", - "1304788377": "<0/><1/>إذا كانت شكواك تتعلق بممارسات معالجة البيانات لدينا، فيمكنك تقديم شكوى رسمية إلى <2>مفوض حماية المعلومات والبيانات (مالطا) على موقع الويب الخاص بهم أو تقديم شكوى إلى أي سلطة إشرافية داخل الاتحاد الأوروبي.", "1305217290": "قم بتحميل الجزء الخلفي من بطاقة الهوية الخاصة بك.", "1308625834": "يضبط الفاصل الزمني الافتراضي للكتل التي تقرأ قائمة الشموع.", "1309017029": "يتيح لك تمكين ذلك حفظ الكتل الخاصة بك كمجموعة واحدة يمكن دمجها بسهولة في برامج الروبوت الأخرى.", @@ -1512,6 +1502,7 @@ "1531017969": "يقوم بإنشاء سلسلة نصية واحدة من خلال دمج القيمة النصية لكل عنصر مرفق، بدون مسافات بينهما. يمكن إضافة عدد العناصر وفقًا لذلك.", "1533177906": "Fall", "1534796105": "يحصل على قيمة متغيرة", + "1537192641": "غير قادر على معالجة طلبك", "1537711064": "تحتاج إلى إجراء تحقق سريع من الهوية قبل أن تتمكن من الوصول إلى Cashier. يرجى الانتقال إلى إعدادات حسابك لإرسال إثبات الهوية الخاص بك.", "1540585098": "تراجع", "1541508606": "هل تبحث عن عقود الفروقات؟ انتقل إلى Trader's Hub", @@ -1562,7 +1553,6 @@ "1594147169": "يرجى العودة", "1594322503": "البيع متاح", "1595295238": "3. استخدم كتلة منطقية للتحقق مما إذا كان إجمالي الربح/الخسارة أكبر من مبلغ حد إيقاف الخسارة. يمكنك العثور على متغير إجمالي الربح/الخسارة ضمن التحليل > الإحصائيات في قائمة الكتل على اليسار. سيستمر الروبوت الخاص بك في شراء عقود جديدة حتى يتجاوز إجمالي مبلغ الربح/الخسارة مبلغ حد إيقاف الخسارة.", - "1596378630": "لقد قمت بإضافة حساب ألعاب حقيقي.<0/> قم بالإيداع الآن لبدء التداول.", "1597672660": "كلمة المرور ل Deriv MT5", "1598009247": "<0>أ- يمكنك تقديم شكوى إلى الهيئة المالية حتى 45 يومًا بعد وقوع الحادث.", "1598386296": "المدينة/المدينة مطلوبة.", @@ -1730,7 +1720,6 @@ "1763123662": "قم بتحميل قسيمة NIMC الخاصة بك.", "1766212789": "تبدأ صيانة الخادم/السيرفر في الساعة 06:00 بتوقيت جرينتش كل يوم أحد وقد تستمر حتى ساعتين. قد تواجه انقطاعًا في الخدمة خلال هذا الوقت.", "1766993323": "يُسمح فقط بالحروف والأرقام والشرطات السفلية.", - "1767429330": "إضافة حساب دريف", "1768293340": "قيمة العقد", "1768861315": "دقيقة", "1768918213": "يُسمح فقط بالحروف والمسافة والواصلة والنقطة والفاصلة العليا.", @@ -1744,6 +1733,7 @@ "1779144409": "التحقق من الحساب مطلوب", "1779519903": "يجب أن يكون رقمًا صالحًا.", "1779801832": "يرجى تحديث كلمة المرور الخاصة بك وفقًا لذلك.", + "1779872677": "تحميل الكتاب الإلكتروني", "1780442963": "امسح رمز QR لتنزيل {{ platform }}.", "1780770384": "تمنحك هذه المجموعة كسرًا عشوائيًا بين 0.0 إلى 1.0.", "1782308283": "استراتيجية سريعة", @@ -1754,7 +1744,6 @@ "1783740125": "قم بتحميل صورتك الذاتية", "1785298924": "فورمولا دالمبرت 1", "1786644593": "التنسيقات المدعومة: JPEG وJPG وPNG وPDF وGIF فقط", - "1787135187": "الرمز البريدي/البريدي مطلوب", "1787492950": "المؤشرات الموجودة في علامة تبويب المخطط هي لأغراض إرشادية فقط وقد تختلف قليلاً عن تلك الموجودة في مساحة العمل {{platform_name_dbot}} .", "1788515547": "<0/>لمزيد من المعلومات حول تقديم شكوى إلى مكتب الحكم للخدمات المالية، يرجى <1>الاطلاع على إرشاداتهم.", "1788966083": "01-07-1999", @@ -1820,7 +1809,6 @@ "1850031313": "- منخفض: أدنى سعر", "1850132581": "لم يتم العثور على البلد", "1850659345": "- الدفع: دفع العقد", - "1850663784": "إرسال الاثباتات", "1851052337": "مكان الميلاد مطلوب.", "1851776924": "أعلى", "1854480511": "الكايشر مغلق", @@ -1837,7 +1825,6 @@ "1865525612": "لا توجد معاملات حديثة.", "1866244589": "نقطة الدخول هي العلامة الأولى High/Low Ticks.", "1866811212": "قم بالإيداع بعملتك المحلية عبر وكيل دفع معتمد ومستقل في بلدك.", - "1866836018": "<0/><1/>إذا كانت شكواك تتعلق بممارسات معالجة البيانات لدينا، يمكنك تقديم شكوى رسمية إلى السلطة الإشرافية المحلية.", "1867217564": "يجب أن يكون الفهرس عددًا صحيحًا موجبًا", "1867783237": "من الأعلى إلى الإغلاق", "1869315006": "شاهد كيف نحمي أموالك لفتح حساب الصراف.", @@ -1848,7 +1835,6 @@ "1871377550": "هل تقدمون روبوتات تداول مبنية مسبقًا على Deriv Bot؟", "1871664426": "ملاحظة", "1873376454": "هذا هو مستوى السعر الذي تختاره. إذا تم تجاوز هذا الحاجز في أي وقت، فسيتم إنهاء العقد الخاص بك.", - "1873838570": "يرجى التحقق من عنوانك", "1874481756": "استخدم هذه المجموعة لشراء العقد المحدد الذي تريده. يمكنك إضافة كتل شراء متعددة مع كتل شرطية لتحديد شروط الشراء الخاصة بك. لا يمكن استخدام هذه الكتلة إلا ضمن مجموعة شروط الشراء.", "1874756442": "جزر فيرجن البريطانية", "1875702561": "قم بتحميل أو بناء الروبوت الخاص بك", @@ -1890,7 +1876,6 @@ "1906213000": "سيقوم نظامنا بإنهاء أي صفقات Deriv Bot قيد التشغيل، ولن يقوم Deriv Bot بوضع أي صفقات جديدة.", "1906639368": "إذا كانت هذه هي المرة الأولى التي تحاول فيها إنشاء كلمة مرور، أو نسيت كلمة المرور الخاصة بك، فيرجى إعادة تعيينها.", "1907423697": "اربح المزيد باستخدام Deriv API", - "1907884620": "أضف حساب Deriv Gaming الحقيقي", "1908023954": "عذرًا، حدث خطأ أثناء معالجة طلبك.", "1908239019": "تأكد من وجود كل المستند في الصورة", "1908686066": "تحذير اختبار الملاءمة", @@ -1993,7 +1978,6 @@ "2001222130": "تحقق من مجلد البريد العشوائي أو البريد غير الهام. إذا لم يكن موجودًا، فحاول إعادة إرسال البريد الإلكتروني.", "2001361785": "1. ابدأ بالحصة الأولية. دعنا نقول 1 USD.", "2004052487": "تقدير عمر تداولاتك", - "2004792696": "إذا كنت مقيمًا في المملكة المتحدة، للاستبعاد الذاتي من جميع شركات المقامرة عبر الإنترنت المرخصة في بريطانيا العظمى، انتقل إلى <0>www.gamstop.co.uk.", "2007028410": "السوق، نوع التداول، نوع العقد", "2010759971": "تم التحميلات بنجاح", "2010866561": "يُرجع إجمالي الربح/الخسارة", @@ -2073,7 +2057,6 @@ "2085387371": "يجب أن تكون الأرقام والحروف والأحرف الخاصة., '-", "2085602195": "- قيمة الإدخال: قيمة العلامة الأولى من العقد", "2086048243": "شهادة التأسيس", - "2086742952": "لقد قمت بإضافة حساب خيارات حقيقي.<0/> قم بالإيداع الآن لبدء التداول.", "2086792088": "يجب أن يكون كلا الحاجزين نسبيًا أو مطلقًا", "2088735355": "حدود الجلسة وتسجيل الدخول", "2089087110": "مؤشرات السلة", @@ -2281,7 +2264,6 @@ "-1699820408": "يرجى إدخال {{field_name}} أقل من {{max_number}} حرف.", "-1575567374": "الرمز البريدي/البريدي", "-816263501": "يُسمح فقط بالأحرف والأرقام والمسافة والواصلة.", - "-1497654315": "حساباتنا وخدماتنا غير متوفرة للرمز البريدي لجيرسي.", "-755626951": "أكمل تفاصيل عنوانك", "-1024240099": "عنوان", "-1534917661": "اختر عملتك المفضلة", @@ -2348,6 +2330,7 @@ "-1458676679": "يجب إدخال 2-50 حرفًا.", "-1116008222": "يجب إدخال 9-35 رقمًا.", "-1995979930": "السطر الأول من العنوان مطلوب.", + "-703454156": "يرجى إدخال الرمز البريدي/البريدي تحت 20 حرفًا.", "-2113555886": "يُسمح فقط بالحروف والأرقام والمسافة والواصلة.", "-1103497546": "الإقرار الضريبي", "-700600899": "إثبات العنوان التجاري", @@ -2499,7 +2482,6 @@ "-1545823544": "7 أيام", "-180147209": "سيتم تسجيل خروجك تلقائيًا من كل جلسة بعد هذا الحد الزمني.", "-374553538": "سيتم استبعاد حسابك من موقع الويب حتى هذا التاريخ (6 أشهر على الأقل، حتى 5 سنوات).", - "-2121421686": "للاستبعاد الذاتي من جميع شركات المقامرة عبر الإنترنت المرخصة في بريطانيا العظمى، انتقل إلى <0>www.gamstop.co.uk.", "-2105708790": "الحد الأقصى لرصيد الحساب والمراكز المفتوحة", "-1960600163": "بمجرد وصول رصيد حسابك إلى هذا المبلغ، لن تتمكن من إيداع الأموال في حسابك.", "-1073845224": "عدد المراكز المفتوحة", @@ -2653,6 +2635,7 @@ "-1728732301": "تسجيل الدخول بسهولة باستخدام Passkeys", "-684009726": "تحرير Passkey", "-1140319320": "تم تأمين حسابك الآن باستخدام Passkey. <0/> قم بإدارة Passkey الخاص بك من خلال إعدادات حساب <0/> Deriv الخاص بك.", + "-1036903080": "نحن نواجه مشكلة مؤقتة في معالجة طلبك. يرجى المحاولة مرة أخرى في وقت لاحق.", "-331060101": "فشل إعداد Passkey", "-713875531": "تمكين البلوتوث.", "-80717068": "التطبيقات التي ربطتها <0>بكلمة مرور Deriv الخاصة بك:", @@ -2710,6 +2693,10 @@ "-145462920": "Deriv cTrader", "-1210359945": "تحويل الأموال إلى حساباتك", "-81256466": "تحتاج إلى حساب Deriv لإنشاء حساب CFD.", + "-1926387364": "لقد أرسلنا الكتاب الاليكتروني الخاص بك إلى البريد الإلكتروني الخاص بك. يمكنك أيضًا تنزيله هنا.", + "-1057002564": "<0>نحن غير قادرين على ترقيتك إلى Wallets في الوقت الحالي ونعمل على إصلاح هذا الأمر في أقرب وقت ممكن. يرجى <1>المحاولة مرة أخرى<0>.", + "-1424352390": "<0>Wallets <1>- طريقة أكثر ذكاءً لإدارة أموالك", + "-280236366": "التمكين الآن", "-699372497": "تداول برافعة مالية وفروق أسعار ضيقة للحصول على عوائد أفضل على الصفقات الناجحة. <0>تعرف على المزيد", "-982095728": "احصل على", "-1790089996": "جديد!", @@ -2733,13 +2720,10 @@ "-2055865877": "تنظيم خارج الاتحاد الأوروبي", "-643108528": "تنظيم خارج الاتحاد الأوروبي والاتحاد الأوروبي", "-1002556560": "لا يمكننا إكمال ترقية Wallet. يرجى المحاولة مرة أخرى لاحقًا أو الاتصال بنا عبر الدردشة الحية.", - "-280236366": "التمكين الآن", "-2051096382": "اربح مجموعة من العوائد من خلال التنبؤ بشكل صحيح بحركات السوق باستخدام <0>الخيارات، أو احصل على الجانب\n الإيجابي من العقود مقابل الفروقات دون المخاطرة بأكثر من حصتك الأولية مع <1>المضاعفات.", "-1638358352": "احصل على الجانب الإيجابي من العقود مقابل الفروقات دون المخاطرة بأكثر من حصتك الأولية مع <0>Multipliers.", "-744999940": "حساب مشتق", "-749129977": "احصل على حساب Deriv حقيقي وابدأ التداول وقم بإدارة أموالك.", - "-1057002564": "<0>نحن غير قادرين على ترقيتك إلى Wallets في الوقت الحالي ونعمل على إصلاح هذا الأمر في أقرب وقت ممكن. يرجى <1>المحاولة مرة أخرى<0>.", - "-1424352390": "<0>Wallets <1>- طريقة أكثر ذكاءً لإدارة أموالك", "-2146691203": "اختيار التنظيم", "-249184528": "يمكنك إنشاء حسابات حقيقية بموجب لوائح الاتحاد الأوروبي أو خارج الاتحاد الأوروبي. انقر فوق <0><0/>الرمز لمعرفة المزيد حول هذه الحسابات.", "-1505234170": "جولة Trader's Hub", @@ -2860,7 +2844,6 @@ "-1949883551": "لديك حساب واحد فقط", "-1149845849": "العودة إلى Trader's Hub", "-1232852916": "سننتقل إلى حساب {{currency}} الخاص بك لعرض المعاملة.", - "-759000391": "لم نتمكن من التحقق من معلوماتك تلقائيًا. لتمكين هذه الوظيفة، يجب إكمال ما يلي:", "-1632668764": "أنا أقبل", "-544232635": "يرجى الانتقال إلى صفحة الإيداع لإنشاء عنوان. ثم عد إلى هنا لمتابعة معاملتك.", "-1161069724": "يرجى نسخ عنوان التشفير الذي تراه أدناه. ستحتاج إليها لإيداع عملتك المشفرة.", @@ -3267,7 +3250,6 @@ "-821418875": "Trader", "-679102561": "تفاصيل العقد", "-430118939": "سياسة الشكاوى", - "-568280383": "ألعاب Deriv", "-1308346982": "مشتقة", "-579984289": "عرض تجريبي مشتق", "-1596515467": "جزر فيرجن البريطانية المشتقة", @@ -3390,7 +3372,6 @@ "-689237734": "تقدم", "-1642457320": "مركز المساعدة", "-1966944392": "حالة الشبكة: {{status}}", - "-594209315": "يتم تقديم المؤشرات الاصطناعية في الاتحاد الأوروبي من قبل {{legal_entity_name}}، W Business Center، المستوى 3، Triq Dun Karm، Birkirkara BKR 9033، مالطا، المرخصة والمنظمة من قبل هيئة مالطا للألعاب (<0>الترخيص رقم. MGA/B2C/102/2000) ومن قبل مفوضي الإيرادات للعملاء في أيرلندا (<2>الترخيص رقم 1010285).", "-181484419": "التداول المسؤول", "-650505513": "شاشة كاملة", "-1823504435": "عرض الإشعارات", @@ -3400,8 +3381,8 @@ "-1496158755": "انتقل إلى Deriv.com", "-1323441180": "أؤكد بموجب هذا أن طلبي لفتح حساب مع Deriv لتداول منتجات OTC الصادرة والمعروضة حصريًا خارج البرازيل قد بدأته. أفهم تمامًا أن Deriv لا يخضع للتنظيم من قبل CVM ومن خلال الاتصال بـ Deriv أعتزم إقامة علاقة مع شركة أجنبية.", "-1396326507": "للأسف، لا يتوفر {{website_name}} في بلدك.", - "-1019903756": "مادة اصطناعية", "-288996254": "غير متاح", + "-1019903756": "مادة اصطناعية", "-735306327": "إدارة الحسابات", "-1813972756": "تم إيقاف إنشاء الحساب مؤقتًا لمدة 24 ساعة", "-366030582": "عذرًا، لا يمكنك إنشاء حساب في هذا الوقت. نظرًا لأنك رفضت تحذيرات المخاطر السابقة، نحتاج منك الانتظار لمدة 24 ساعة بعد محاولة إنشاء الحساب الأولى قبل أن تتمكن من المتابعة.<0/><0/>", @@ -3424,9 +3405,6 @@ "-175638343": "اختر حسابًا أو أضف حسابًا جديدًا", "-1768223277": "حسابك جاهز", "-1215717784": "<0>لقد نجحت في تغيير عملتك إلى {{currency}}. <0>قم بالإيداع الآن لبدء التداول.", - "-786091297": "تداول على الحساب التجريبي", - "-228099749": "يرجى التحقق من هويتك وعنوانك", - "-1041852744": "نحن نعالج معلوماتك الشخصية", "-1775006840": "قم بالإيداع الآن لبدء التداول.", "-983734304": "نحتاج إلى إثبات هويتك وعنوانك قبل أن تتمكن من بدء التداول.", "-917733293": "لبدء التداول، يرجى تأكيد المكان الذي تعيش فيه.", @@ -3434,7 +3412,6 @@ "-952649119": "تسجيل الدخول", "-3815578": "قم بالتسجيل", "-1456176427": "حدد عملة لحسابك الحقيقي", - "-1557011219": "إضافة حساب خيارات Deriv حقيقي", "-241733171": "إضافة حساب ديريف فاينانشال", "-1329687645": "قم بإنشاء حساب عملة مشفرة", "-1429178373": "إنشاء حساب جديد", @@ -3471,14 +3448,10 @@ "-2142491494": "حسنا، فهمت", "-611136817": "احذر من الروابط المزيفة.", "-1342699195": "إجمالي الربح/الخسارة:", - "-943710774": "تنطبق سياسة الشكاوى هذه، التي قد تتغير من وقت لآخر، على حسابك المسجل بالرقم {{legal_entity_name}}، والذي يوجد عنوان مكتبه المسجل في الطابق الأول، ميلينيوم هاوس، طريق فيكتوريا، دوغلاس، آيل أوف مان، IM2 4RW، المرخص والمنظم على التوالي من قبل (1) لجنة الإشراف على المقامرة في جزيرة مان (<0>الترخيص الحالي الصادر في 31 أغسطس 2017) و (2) لجنة المقامرة في المملكة المتحدة (<1>الترخيص رقم 39172).", - "-255056078": "تنطبق سياسة الشكاوى هذه، التي قد تتغير من وقت لآخر، على حسابك (حساباتك) المسجل بالرقم {{legal_entity_name}}، والذي يوجد عنوان مكتبه المسجل في مركز دبليو للأعمال، المستوى 3، Triq Dun Karm، Birkirkara، BKR 9033، مالطا، والمرخص والمنظم من قبل هيئة مالطا للألعاب في مالطا لمنتجات المقامرة فقط، <0>رقم الترخيص. MGA/B2C/102/2000، وللعملاء المقيمين في المملكة المتحدة من قبل لجنة المقامرة بالمملكة المتحدة (رقم الحساب 39495).", "-1941013000": "تنطبق سياسة الشكاوى هذه، التي قد تتغير من وقت لآخر، على حسابك (حساباتك) المسجل بـ {{legal_entity_name_svg}}و {{legal_entity_name_fx}}و {{legal_entity_name_v}}.", "-594812204": "تنطبق سياسة الشكاوى هذه، والتي قد تتغير من وقت لآخر، على حسابك (حساباتك) المسجل بـ {{legal_entity_name_svg}}.", "-813256361": "نحن ملتزمون بمعاملة عملائنا بإنصاف وتقديم خدمة ممتازة لهم. <0/> <1/> نود أن نسمع منك كيف يمكننا تحسين خدماتنا لك. سيتم التعامل مع أي معلومات تقدمها بسرية تامة. كن مطمئنًا أنه سيتم الاستماع إليك وتقديرك ومعاملتك دائمًا بشكل عادل.", "-1622847732": "إذا كان لديك استفسار بخصوص حساب التداول الخاص بك مع {{legal_entity_name}}، يمكنك الاتصال بنا من خلال <0>مركز المساعدة الخاص بنا أو عن طريق <1>الدردشة مع أحد الممثلين عبر الدردشة الحية. <2/> <3/> نحن ملتزمون بحل استفسارك في أسرع وقت ممكن ونقدر سعة صدرك في إتاحة الوقت لنا لحل المشكلة. <4/> <5/> نحن نسعى جاهدين لتقديم أفضل خدمة ودعم ممكنين لعملائنا. ومع ذلك، في حالة عدم قدرتنا على حل استفسارك أو إذا شعرت أن ردنا غير مرض، فإننا نريد أن نسمع منك. نرحب بك ونشجعك على تقديم شكوى رسمية إلينا حتى نتمكن من مراجعة مخاوفك والعمل على إيجاد حل.", - "-1639808836": "إذا لم تكن راضيًا عن النتيجة، يمكنك تصعيد شكواك إلى <0>خدمة التحكيم المستقلة للمراهنات (IBAS) عن طريق ملء نموذج التحكيم الخاص بـ IBAS. يرجى ملاحظة أن IBAS يتعامل فقط مع النزاعات التي تنتج عن المعاملات.", - "-1505742956": "<0/><1/>يمكنك أيضًا إحالة نزاعك إلى هيئة مالطا للألعاب عبر <2>وحدة دعم اللاعبين.", "-1406192787": "إذا لم تكن راضيًا عن النتيجة، يمكنك تصعيد شكواك إلى <0>اللجنة المالية.", "-1776547326": "<0/><1/>إذا كنت مقيمًا في المملكة المتحدة ولم تكن راضيًا عن ردنا، فيمكنك تصعيد شكواك إلى <2>خدمة أمين المظالم المالية.", "-2115348800": "1. مقدمة", @@ -3561,7 +3534,6 @@ "-1969608084": "الفوركس والعملات المشفرة", "-800771713": "Labuan Financial Services Authority (رقم الترخيص. ميجابايت/18/0024)", "-1497128311": "80+", - "-1501230046": "0.6 نقطة", "-1689815930": "ستحتاج إلى تقديم إثبات الهوية والعنوان بمجرد وصولك إلى حدود معينة.", "-1175785439": "Deriv (SVG) LLC (الشركة رقم 273 LLC 2020)", "-139026353": "صورة شخصية لنفسك.", @@ -4102,7 +4074,6 @@ "-1750896349": "داليمبيرت", "-102980621": "استراتيجية Oscar's Grind هي استراتيجية تقدم إيجابية منخفضة المخاطر ظهرت لأول مرة في عام 1965. باستخدام هذه الاستراتيجية، سيزداد حجم العقد الخاص بك بعد الصفقات الناجحة، ولكن يبقى دون تغيير بعد الصفقات غير الناجحة.", "-462715374": "بوت بدون عنوان", - "-538215347": "إجمالي الودائع", "-280147477": "جميع المعاملات", "-137444201": "شراء", "-130601012": "يرجى تحديد المدة", diff --git a/packages/translations/src/translations/bn.json b/packages/translations/src/translations/bn.json index c9250b5a1eb1..831cc5af2f0f 100644 --- a/packages/translations/src/translations/bn.json +++ b/packages/translations/src/translations/bn.json @@ -1,5 +1,4 @@ { - "1014140": "আপনি আপনার অভিযোগ স্থাপন করতে <0>+447723580049 এ কল করতে পারেন।", "1485191": "1:1000", "2082741": "অতিরিক্ত নথি নাম্বার", "2091451": "Deriv Bot - আপনার স্বয়ংক্রিয় ট্রেডিং অংশীদার", @@ -205,12 +204,10 @@ "218441288": "পরিচয়পত্র নাম্বার", "220014242": "আপনার কম্পিউটার থেকে একটি সেলফি আপলোড করুন", "220186645": "ফাঁকা টেক্সট ", - "220232017": "ডেমো সিএফডি", "221261209": "একটি Deriv অ্যাকাউন্ট আপনাকে আপনার CFD অ্যাকাউন্ট (গুলি) তহবিল (এবং থেকে উত্তোলন) করার অনুমতি দেবে।", "223120514": "এই উদাহরণে, এসএমএ লাইনের প্রতিটি বিন্দু গত 50 দিনের জন্য বন্ধ দামের একটি গাণিতিক গড়।", "223607908": "{{underlying_name}}এর জন্য সর্বশেষ 1000 টিকের সর্বশেষ অঙ্কের পরিসংখ্যান", "224650827": "IOT/USD", - "224929714": "ইউকে এবং আইল অফ ম্যানের ভার্চুয়াল ইভেন্টগুলি ভিত্তিক বিট {{legal_entity_name}}, মিলেনিয়াম হাউস, লেভেল 1, ভিক্টোরিয়া রোড, ডগলাস আইএম২ 4 আরডব্লিউ, আইল অফ ম্যান, গ্রেট ব্রিটেনে <0>অ্যাকাউন্টের নং 39172 এবং আইল অফ ম্যানের জুয়া সুপারভিশন কমিশন দ্বারা লাইসেন্সকৃত এবং নিয়ন্ত্রিত (<1>লাইসেন্স দেখুন)।", "225887649": "এই ব্লকটি বাধ্যতামূলক। আপনি যখন নতুন কৌশল তৈরি করেন তখন এটি ডিফল্টভাবে আপনার কৌশলে যোগ করা হয়। আপনি ক্যানভাসে এই ব্লকের একাধিক কপি যোগ করতে পারবেন না।", "227591929": "টাইমস্ট্যাম্প {{ input_datetime }} {{ dummy }}", "227903202": "আমরা আপনার Deriv fiat এবং {{platform_name_mt5}} অ্যাকাউন্টের মধ্যে বিভিন্ন মুদ্রায় স্থানান্তর জন্য 1% স্থানান্তর ফি চার্জ করবো।", @@ -262,7 +259,6 @@ "273728315": "0 অথবা ফাঁকা হওয়া উচিত নয়", "274268819": "ভোলাটিলিটি 100 ইনডেক্স", "275116637": "Deriv X", - "276639155": "দয়া করে 20 অক্ষরের অধীনে একটি পোস্ট/জিপ কোড লিখুন।", "276770377": "এখতিয়ার অধীনে নতুন MT5 অ্যাকাউন্ট ( {{to_account}} গুলি) নতুন ট্রেডের জন্য তৈরি করা হবে।", "277469417": "সময় ব্যতিরেকে পাঁচ বছরের বেশি সময় হতে পারে না।", "278684544": "শেষ থেকে # উপ-তালিকা পেতে", @@ -271,7 +267,6 @@ "282319001": "আপনার ছবি পরীক্ষা করুন", "282564053": "পরবর্তীতে, আপনার ঠিকানা প্রমাণের প্রয়োজন হবে।", "283830551": "আপনার ঠিকানা আপনার প্রোফাইলের সাথে মেলে না", - "283986166": "ওয়েবসাইটে স্ব-বর্জন শুধুমাত্র আপনার {{brand_website_name}} অ্যাকাউন্টে প্রযোজ্য এবং অন্যান্য কোম্পানি বা ওয়েবসাইটগুলি অন্তর্ভুক্ত করে না।", "284527272": "অ্যান্টিমোড", "284772879": "কন্ট্রাক্ট", "284809500": "আর্থিক ডেমো", @@ -376,7 +371,6 @@ "401339495": "ঠিকানা যাচাই করুন", "401345454": "এটি করার জন্য টিউটোরিয়াল ট্যাবে যান।", "403456289": "এসএমএ জন্য সূত্র:", - "404743411": "মোট ডিপোজিট", "406359555": "চুক্তির বিবরণ", "406497323": "প্রয়োজন হলে আপনার সক্রিয় চুক্তি বিক্রি করুন (ঐচ্ছিক)", "411482865": "{{deriv_account}} অ্যাকাউন্ট যোগ করুন", @@ -468,11 +462,11 @@ "502041595": "এই ব্লক আপনাকে নির্বাচিত সময় ব্যবধানের মধ্যে থেকে একটি নির্দিষ্ট মোমবাতি দেয়।", "505793554": "শেষ অক্ষর", "508390614": "আর্থিক এসটিপি ডেমো", - "510815408": "শুধুমাত্র অক্ষর, সংখ্যা, স্পেস, হাইফেন", "511679687": "Accumulators আপনি একটি সূচক আন্দোলনের পরিসীমা দৃশ্য প্রকাশ করতে এবং একটি নির্দিষ্ট <0>বৃদ্ধির হার এ আপনার ষ্টেক বৃদ্ধি করতে পারবেন।", "514031715": "তালিকা {{ input_list }} ফাঁকা", "514776243": "আপনার {{account_type}} পাসওয়ার্ড পরিবর্তন করা হয়েছে।", "514948272": "লিংক কপি করো", + "517631043": "আমরা আপনার ইবুক পাঠিয়েছি। এটি ডাউনলোড করতে আপনার ইমেল চেক করুন।", "517833647": "Volatility 50 (1s) ইনডেক্স", "518955798": "7. শুরুতে একবার চালান", "519205761": "আপনি আর এই অ্যাকাউন্টের মাধ্যমে নতুন পজিশন খুলতে পারবেন না।", @@ -499,7 +493,6 @@ "542038694": "শুধুমাত্র অক্ষর, সংখ্যা, স্থান, আন্ডারস্কোর, এবং হাইফেন {{label}}এর জন্য অনুমোদিত।", "542305026": "আপনাকে অবশ্যই পরিচয় প্রমাণও জমা দিতে হবে।", "543413346": "এই সম্পত্তির জন্য আপনার কোন ওপেন পজিশন নেই। অন্যান্য ওপেন পজিশন দেখতে, রিপোর্টে যান ক্লিক করুন", - "545476424": "মোট উত্তোলন", "547029855": "আপনি যদি এই বৈশিষ্ট্যটি নির্বাচন করেন তবে সম্পদের দাম আপনার পক্ষের বিরুদ্ধে চলে গেলে আপনি নির্বাচিত সময়ের মধ্যে আপনার ট্রেড বাতিল করতে পারেন। আপনি লাভ/ক্ষতি ছাড়াই আপনার শেয়ার ফিরিয়ে পাবেন। এর জন্য আমরা একটি অল্প ফি নিয়োগ করি। ডিল বাতিলকরণ সক্রিয় থাকলে টেক মুনাফা এবং স্টপ লস অক্ষম হয়।", "549479175": "Deriv Multipliers", "549799607": "লাইভচ্যাটে যান", @@ -628,6 +621,7 @@ "665777772": "XLM/USD", "665872465": "নীচের উদাহরণে, উদ্বোধনী মূল্য নির্বাচন করা হয়, যা পরে “op” নামক একটি চলকের জন্য বরাদ্দ করা হয়।", "666724936": "অনুগ্রহ করে একটি বৈধ ID নাম্বার দিন।", + "669494711": "1.4 পিপস", "671630762": "আমরা আপনার ঠিকানা প্রমাণ হিসাবে শুধুমাত্র এই ধরনের নথি গ্রহণ করি। নথিটি অবশ্যই সাম্প্রতিক (বিগত {{expiry_in_months}} মাসের মধ্যে জারি করা ) এবং আপনার নাম এবং ঠিকানা অন্তর্ভুক্ত থাকতে হবে:", "672008428": "ZEC/USD", "673915530": "এখতিয়ার এবং আইনের পছন্দ", @@ -693,7 +687,6 @@ "721011817": "- দ্বিতীয় নাম্বারের ক্ষমতায় প্রথম সংখ্যাটি উত্থাপন করুন", "723045653": "আপনি এই ইমেইল ঠিকানা দিয়ে আপনার Deriv অ্যাকাউন্টে লগ ইন করবেন।", "723961296": "পাসওয়ার্ড নিয়ন্ত্রণ করুন", - "724203548": "আপনি আপনার অভিযোগ <0>ইউরোপীয় কমিশনের অনলাইন বিরোধ নিষ্পত্তি (ওডিআর) প্ল্যাটফর্মে পাঠাতে পারেন। এটি যুক্তরাজ্যের ক্লায়েন্টদের ক্ষেত্রে প্রযোজ্য নয়।", "724526379": "আমাদের টিউটোরিয়াল থেকে আরও জানুন", "728042840": "আমাদের সাথে ট্রেডিং চালিয়ে যেতে, অনুগ্রহ করে নিশ্চিত করুন যে আপনি কোথায় থাকেন।", "728824018": "স্পেনীয় সূচক", @@ -726,7 +719,6 @@ "755138488": "আমরা আপনার প্রদত্ত নথি যাচাই করতে অক্ষম কারণ এতে চিহ্ন বা পাঠ্য রয়েছে যা আপনার নথিতে থাকা উচিত নয়৷ অনুগ্রহ করে একটি পরিষ্কার ছবি বা আপনার আসল পরিচয় নথির স্ক্যান কপি প্রদান করুন।", "756152377": "SMA স্থান সমান ওজন সমগ্র বন্টন মান।", "758003269": "টেক্সট থেকে তালিকা তৈরি করুন", - "759783233": "আরও তথ্যের জন্য এবং কাউন্সেলিং এবং সহায়তা পরিষেবাগুলিতে সহায়তার জন্য, দয়া করে <0>begambleaware.org এ যান।", "760528514": "অনুগ্রহ করে মনে রাখবেন যে “i” এর মান পরিবর্তন করলে তালিকার মূল আইটেমের মান পরিবর্তন হবে না", "761576760": "ট্রেডিং শুরু করতে আপনার অ্যাকাউন্টে তহবিল দিন।", "762926186": "একটি দ্রুত কৌশল একটি প্রস্তুত কৌশল যা আপনি Deriv Bot ব্যবহার করতে পারেন। আপনি চয়ন করতে পারেন 3 দ্রুত কৌশল আছে: Martingale, D'Alembert, এবং অস্কার এর গ্রিন্ড।", @@ -1105,7 +1097,6 @@ "1128404172": "পূর্বাবস্থা", "1129124569": "আপনি যদি \"Under\" নির্বাচন করেন, তাহলে শেষ টিকটির শেষ সংখ্যা আপনার পূর্বাভাসের চেয়ে কম হলে আপনি পেআউট জিতবেন।", "1129842439": "অনুগ্রহ করে একটি টেক মুনাফা পরিমাণ লিখুন।", - "1130744117": "আমরা 10 কর্মদিবসের মধ্যে আপনার অভিযোগের সমাধান করার চেষ্টা করব। আমরা আমাদের অবস্থানের ব্যাখ্যা সহ ফলাফল সম্পর্কে আপনাকে অবহিত করব এবং আমরা যে কোনও প্রতিকারমূলক ব্যবস্থা গ্রহণ করতে চাই তা প্রস্তাব করবো।", "1130791706": "এন", "1133651559": "লাইভ চ্যাট", "1134879544": "একদৃষ্টি সঙ্গে একটি নথি উদাহরণ", @@ -1274,7 +1265,6 @@ "1304083330": "কপি", "1304272843": "অনুগ্রহ করে আপনার ঠিকানা প্রমাণ জমা দিন।", "1304620236": "ক্যামেরা সক্রিয় করো", - "1304788377": "<0/><1/>যদি আপনার অভিযোগ আমাদের ডেটা প্রসেসিং অনুশীলনের সাথে সম্পর্কিত হয়, তাহলে আপনি তাদের ওয়েবসাইটে <2>তথ্য ও ডেটা সুরক্ষা কমিশনার (মাল্টা) এর কাছে আনুষ্ঠানিক অভিযোগ জমা দিতে পারেন অথবা ইউরোপীয় ইউনিয়নের মধ্যে কোনও তত্ত্বাবধানকারী কর্তৃপক্ষের কাছে অভিযোগ করতে পারেন।", "1305217290": "আপনার পরিচয় কার্ডের পিছনে আপলোড করুন।", "1308625834": "মোমবাতি তালিকা পড়া ব্লক জন্য ডিফল্ট সময় ব্যবধান সেট করে।", "1309017029": "এটি সক্ষম করার ফলে আপনি আপনার ব্লকগুলিকে একটি সংগ্রহ হিসাবে সংরক্ষণ করতে পারবেন যা সহজেই অন্যান্য বটগুলিতে একত্রিত হতে পারে।", @@ -1512,6 +1502,7 @@ "1531017969": "প্রতিটি সংযুক্ত আইটেমের পাঠ্য মান মিশ্রন থেকে একটি একক পাঠ্য স্ট্রিং তৈরি করে, মধ্যবর্তী স্থানগুলি ছাড়া। আইটেম সংখ্যা অনুযায়ী যোগ করা যেতে পারে।", "1533177906": "Fall", "1534796105": "পরিবর্তনশীল মান পায়", + "1537192641": "আপনার অনুরোধ প্রক্রিয়া করতে অক্ষম", "1537711064": "ক্যাশিয়ার অ্যাক্সেস করার আগে আপনাকে একটি দ্রুত পরিচয় যাচাই করতে হবে। আপনার পরিচয়ের প্রমাণ জমা দিতে অনুগ্রহ করে আপনার অ্যাকাউন্ট সেটিংসে যান।", "1540585098": "প্রত্যাখ্যান", "1541508606": "CFD খুঁজছেন? ট্রেডার'স হাব এ যান", @@ -1562,7 +1553,6 @@ "1594147169": "দয়া করে ফিরে আসুন", "1594322503": "বিক্রয় পাওয়া যাচ্ছে", "1595295238": "3. মোট লাভ/ক্ষতি স্টপ লস থ্রেশহোল্ড পরিমাণের চেয়ে বেশি কিনা তা পরীক্ষা করতে একটি লজিক ব্লক ব্যবহার করুন৷ আপনি বাম দিকে ব্লক মেনু -এ বিশ্লেষণ > পরিসংখ্যান -এর অধীনে মোট লাভ/ক্ষতি পরিবর্তনশীল খুঁজে পেতে পারেন। আপনার বট নতুন চুক্তি ক্রয় করা চালিয়ে যাবে যতক্ষণ না মোট লাভ/ক্ষতি পরিমাণ স্টপ লস থ্রেশহোল্ড পরিমাণ ছাড়িয়ে যায়।", - "1596378630": "আপনি একটি বাস্তব গেমিং অ্যাকাউন্ট যোগ করেছেন ট্রেডিং শুরু<0/> করতে এখনই একটি ডিপোজিট করুন।", "1597672660": "Deriv MT5 পাসওয়ার্ড", "1598009247": "<0>ক) ঘটনার পর 45 দিন পর্যন্ত আপনি ফাইন্যান্সিয়াল কমিশনের কাছে অভিযোগ দায়ের করতে পারেন।", "1598386296": "টাউন/শহর প্রয়োজন।", @@ -1730,7 +1720,6 @@ "1763123662": "আপনার এনআইএমসি স্লিপ আপলোড করুন।", "1766212789": "সার্ভার রক্ষণাবেক্ষণ প্রতি রবিবার 06:00 জিএমটি শুরু হয় এবং 2 ঘন্টা পর্যন্ত স্থায়ী হতে পারে। আপনি এই সময় পরিষেবা বিঘ্ন সম্মুখীন হতে পারে।", "1766993323": "শুধুমাত্র অক্ষর, সংখ্যা, এবং আন্ডারস্কোর অনুমোদিত।", - "1767429330": "একটি ডেরিভড অ্যাকাউন্ট যোগ করুন", "1768293340": "চুক্তির মান", "1768861315": "মিনিট", "1768918213": "শুধুমাত্র অক্ষর, স্পেস, হাইফেন, পিরিয়ড এবং অ্যাপোস্ট্রোফ অনুমোদিত।", @@ -1744,6 +1733,7 @@ "1779144409": "অ্যাকাউন্ট যাচাইকরণ প্রয়োজন", "1779519903": "একটি বৈধ সংখ্যা হতে হবে।", "1779801832": "অনুযায়ী আপনার পাসওয়ার্ড আপডেট করুন।", + "1779872677": "ই-বুক ডাউনলোড করুন", "1780442963": "ডাউনলোড করতে QR কোডটি স্ক্যান করুন {{ platform }}", "1780770384": "এই ব্লকটি আপনাকে 0.0 থেকে 1.0 এর মধ্যে একটি র্যান্ডম ভগ্নাংশ দেয়।", "1782308283": "দ্রুত কৌশল", @@ -1754,7 +1744,6 @@ "1783740125": "আপনার সেলফি আপলোড করুন", "1785298924": "ডি'আলেম্বার্ট সূত্র 1", "1786644593": "সমর্থিত বিন্যাস: কেবল JPEG, JPG, PNG, PDF এবং GIF", - "1787135187": "পোস্টল/জিপ কোড প্রয়োজন", "1787492950": "চার্ট ট্যাবের নির্দেশক শুধুমাত্র নির্দেশক উদ্দেশ্যে এবং {{platform_name_dbot}} কর্মক্ষেত্রের উপর থেকে সামান্য পরিবর্তিত হতে পারে।", "1788515547": "<0/>আর্থিক পরিষেবার জন্য আরবিটার অফিসের কাছে একটি অভিযোগ জমা দেওয়ার বিষয়ে আরও তথ্যের জন্য, দয়া করে <1>তাদের নির্দেশিকা দেখুন।", "1788966083": "01-07-1999", @@ -1820,7 +1809,6 @@ "1850031313": "- নিম্ন: সর্বনিম্ন মূল্য", "1850132581": "দেশ পাওয়া যায়নি", "1850659345": "- পেআউট: চুক্তির পেআউট", - "1850663784": "প্রমাণাদি জমা দিন", "1851052337": "জন্ম স্থান প্রয়োজন।", "1851776924": "উপরের", "1854480511": "ক্যাশিয়ার লক করা ", @@ -1837,7 +1825,6 @@ "1865525612": "কোন সাম্প্রতিক লেনদেন নেই।", "1866244589": "এন্ট্রি স্পটটি High/Low Ticks এর প্রথম টিক।", "1866811212": "আপনার দেশে অনুমোদিত, স্বাধীন পেমেন্ট এজেন্টের মাধ্যমে আপনার স্থানীয় মুদ্রায় ডিপোজিট করুন।", - "1866836018": "<0/><1/>যদি আপনার অভিযোগ আমাদের ডেটা প্রসেসিং প্র্যাকটিসের সাথে সম্পর্কিত হয়, তাহলে আপনি আপনার স্থানীয় সুপারভাইজারি কর্তৃপক্ষের কাছে একটি আনুষ্ঠানিক অভিযোগ জমা দিতে পারেন।", "1867217564": "সূচক একটি ধনাত্মক পূর্ণসংখ্যা হতে হবে", "1867783237": "উচ্চ-থেকে-বন্ধ", "1869315006": "ক্যাশিয়ার আনলক করার জন্য আমরা কীভাবে আপনার তহবিলগুলি রক্ষা করি তা দেখুন।", @@ -1848,7 +1835,6 @@ "1871377550": "আপনি Deriv Bot- এ প্রাক নির্মিত ট্রেডিং বট অফার করেন?", "1871664426": "নোট", "1873376454": "এটি একটি মূল্য স্তর যা আপনি বেছে নিন। যদি কখনও এই বাধা অতিক্রম করা হয় তবে আপনার চুক্তি শেষ হবে।", - "1873838570": "অনুগ্রহ করে আপনার ঠিকানা যাচাই করুন", "1874481756": "আপনি চান নির্দিষ্ট চুক্তি ক্রয় করতে এই ব্লক ব্যবহার করুন। আপনি আপনার ক্রয় শর্তাবলী সংজ্ঞায়িত করার জন্য শর্তাধীন ব্লক সহ একাধিক ক্রয় ব্লক যোগ করতে পারেন। এই ব্লকটি শুধুমাত্র ক্রয় শর্তাবলী ব্লকের মধ্যেই ব্যবহার করা যেতে পারে।", "1874756442": "বিভিআই", "1875702561": "আপনার বট লোড বা তৈরি করুন", @@ -1890,7 +1876,6 @@ "1906213000": "আমাদের সিস্টেম চলমান যে কোনো Deriv বট ট্রেড শেষ হবে, এবং Deriv বট কোন নতুন ট্রেড স্থাপন করবে না।", "1906639368": "যদি এই প্রথমবার আপনি একটি পাসওয়ার্ড তৈরি করার চেষ্টা করেন, অথবা আপনি আপনার পাসওয়ার্ড ভুলে গেছেন, দয়া করে এটি পুনরায় সেট করুন।", "1907423697": "Derive API দিয়ে আরও উপার্জন করুন", - "1907884620": "একটি বাস্তব Deriv গেমিং অ্যাকাউন্ট যোগ করুন", "1908023954": "দুঃখিত, আপনার অনুরোধ প্রক্রিয়া করার সময় একটি ত্রুটি ঘটেছে।", "1908239019": "নিশ্চিত করুন যে সমস্ত নথি ফটোতে রয়েছে", "1908686066": "উপযুক্ততা পরীক্ষা সতর্কবার্তা", @@ -1993,7 +1978,6 @@ "2001222130": "আপনার স্প্যাম বা অপ্রয়োজনীয় ফোল্ডার পরীক্ষা করুন। যদি তা না থাকে, তাহলে ইমেইল পুনরায় পাঠানোর চেষ্টা করুন।", "2001361785": "1. প্রাথমিক ষ্টেক দিয়ে শুরু করুন। ধরা যাক 1 USD।", "2004052487": "আপনার ট্রেডের জীবনকাল অনুমান করা", - "2004792696": "আপনি যদি যুক্তরাজ্যের একজন বাসিন্দা হন, তবে গ্রেট ব্রিটেনে লাইসেন্সপ্রাপ্ত সকল অনলাইন জুয়া কোম্পানিগুলি থেকে নিজেকে বাদ দিতে, <0>www.gamstop.co.uk এ যান।", "2007028410": "বাজার, ট্রেড টাইপ, চুক্তির ধরন", "2010759971": "আপলোড সফল", "2010866561": "মোট মুনাফা/ক্ষতি ফেরত", @@ -2073,7 +2057,6 @@ "2085387371": "সংখ্যা, অক্ষর, এবং বিশেষ অক্ষর হতে হবে।, '-", "2085602195": "- এন্ট্রি মান: চুক্তির প্রথম টিক এর মান", "2086048243": "নিগম সার্টিফিকেট", - "2086742952": "আপনি একটি রিয়েল অপশন অ্যাকাউন্ট যোগ করেছেন৷ ট্রেডিং শুরু<0/> করতে এখনই একটি ডিপোজিট করুন।", "2086792088": "উভয় বাধা আপেক্ষিক বা পরম হতে হবে", "2088735355": "আপনার সেশন এবং লগইন সীমা", "2089087110": "বাস্কেট ইন্ডিসেস", @@ -2281,7 +2264,6 @@ "-1699820408": "অনুগ্রহ করে {{max_number}} অক্ষরের অধীনে একটি {{field_name}} লিখুন।", "-1575567374": "ডাক/জিপ কোড", "-816263501": "শুধুমাত্র অক্ষর, সংখ্যা, স্থান, এবং হাইফেন অনুমোদিত।", - "-1497654315": "জার্সি পোস্টাল কোডের জন্য আমাদের অ্যাকাউন্ট এবং পরিষেবাগুলি অনুপলব্ধ।", "-755626951": "আপনার ঠিকানার বিস্তারিত বিবরণ পূরণ করুন", "-1024240099": "ঠিকানা", "-1534917661": "আপনার পছন্দের মুদ্রা নির্বাচন", @@ -2348,6 +2330,7 @@ "-1458676679": "আপনাকে 2-50 অক্ষর লিখতে হবে।", "-1116008222": "আপনাকে 9-35 নাম্বার লিখতে হবে।", "-1995979930": "ঠিকানার প্রথম লাইন প্রয়োজন।", + "-703454156": "দয়া করে 20 অক্ষরের অধীনে একটি পোস্ট/জিপ কোড লিখুন।", "-2113555886": "শুধুমাত্র অক্ষর, সংখ্যা, স্থান, এবং হাইফেন অনুমোদিত।", "-1103497546": "ট্যাক্স রিটার্ন", "-700600899": "ঠিকানার ব্যবসায়িক প্রমাণ", @@ -2499,7 +2482,6 @@ "-1545823544": "7 দিন", "-180147209": "এই সময়ের পরে প্রতিটি সেশন থেকে আপনি স্বয়ংক্রিয়ভাবে লগ-আউট হয়ে যাবেন।", "-374553538": "আপনার অ্যাকাউন্টটি এই তারিখ পর্যন্ত ওয়েবসাইট থেকে বাদ দেওয়া হবে (অন্তত 6 মাস, 5 বছর পর্যন্ত)।", - "-2121421686": "গ্রেট ব্রিটেনে লাইসেন্সপ্রাপ্ত সকল অনলাইন জুয়া কোম্পানি থেকে স্ব-বাদ দিতে, <0>www.gamstop.co.uk এ যান।", "-2105708790": "আপনার সর্বোচ্চ অ্যাকাউন্ট ব্যালেন্স এবং ওপেন পজিশন", "-1960600163": "আপনার অ্যাকাউন্ট ব্যালেন্স এই পরিমাণ পৌঁছে গেলে, আপনি আপনার অ্যাকাউন্টে অর্থ জমা করতে পারবেন না।", "-1073845224": "ওপেন পজিশনের সংখ্যা", @@ -2653,6 +2635,7 @@ "-1728732301": "পাসকিগুলির সাথে অনায়াসে লগইন করুন", "-684009726": "পাসকি সম্পাদনা", "-1140319320": "আপনার অ্যাকাউন্ট এখন একটি পাসকি দিয়ে সুরক্ষিত৷<0/>আপনার Deriv অ্যাকাউন্ট সেটিংসের মাধ্যমে আপনার পাসকি পরিচালনা করুন।", + "-1036903080": "আমরা আপনার অনুরোধ প্রক্রিয়াকরণে একটি অস্থায়ী সমস্যা অনুভব করছি। দয়া করে পরে আবার চেষ্টা করুন।", "-331060101": "Passkeys সেটআপ ব্যর্থ হয়েছে৷", "-713875531": "ব্লুটুথ সক্ষম করুন।", "-80717068": "আপনার <0>Deriv পাসওয়ার্ড লিঙ্ক করেছেন এমন অ্যাপ্লিকেশনগুলি:", @@ -2710,6 +2693,10 @@ "-145462920": "Deriv cTrader", "-1210359945": "আপনার অ্যাকাউন্টে ফান্ড ট্রান্সফার করুন", "-81256466": "একটি CFD অ্যাকাউন্ট তৈরি করতে আপনার একটি Deriv অ্যাকাউন্ট প্রয়োজন।", + "-1926387364": "আমরা আপনার ই-বুক আপনার ইমেলে পাঠিয়েছি। এছাড়াও আপনি এখানে ডাউনলোড করতে পারেন।", + "-1057002564": "<0>আমরা এই সময়ে আপনাকে Wallets আপগ্রেড করতে অক্ষম এবং যত তাড়াতাড়ি সম্ভব এটি সংশোধন করার জন্য কাজ করছি। দয়া করে। <1>আবার চেষ্টা করুন<0>।", + "-1424352390": "<0>Wallets<1> — আপনার তহবিল পরিচালনা করার একটি স্মার্ট উপায়", + "-280236366": "এখন সক্ষম করুন", "-699372497": "সফল ট্রেডগুলিতে ভাল রিটার্নের জন্য লিভারেজ এবং টাইট স্প্রেডের সাথে ট্রেড <0>করুন।", "-982095728": "পান", "-1790089996": "নতুন!", @@ -2733,13 +2720,10 @@ "-2055865877": "অ-ইইউ প্রবিধান", "-643108528": "অ-ইইউ এবং ইইউ নিয়ন্ত্রণ", "-1002556560": "আমরা Wallet আপগ্রেড দিয়ে সম্পূর্ণ করতে অক্ষম। দয়া করে পরে আবার চেষ্টা করুন বা লাইভ চ্যাটের মাধ্যমে আমাদের সাথে যোগাযোগ করুন।", - "-280236366": "এখন সক্ষম করুন", "-2051096382": "<0>বিকল্পগুলি দিয়ে সঠিকভাবে বাজারের গতিবিধি ভবিষ্যদ্বাণী করে বিভিন্ন পেআউট উপার্জন করুন, অথবা <1>Multipliers সাথে আপনার প্রাথমিক অংশীদারিত্বের চেয়ে বেশি ঝুঁকি না নিয়েই CFD-এর উর্ধ্বগতি পান।.", "-1638358352": "<0>Multipliers সাথে আপনার প্রাথমিক অংশীদারিত্বের চেয়ে বেশি ঝুঁকি ছাড়াই CFD এর ঊর্ধ্বে উঠুন।", "-744999940": "Deriv একাউন্ট ", "-749129977": "একটি বাস্তব Deriv অ্যাকাউন্ট পান, ট্রেডিং শুরু করুন এবং আপনার তহবিল পরিচালনা করুন।", - "-1057002564": "<0>আমরা এই সময়ে আপনাকে Wallets আপগ্রেড করতে অক্ষম এবং যত তাড়াতাড়ি সম্ভব এটি সংশোধন করার জন্য কাজ করছি। দয়া করে। <1>আবার চেষ্টা করুন<0>।", - "-1424352390": "<0>Wallets<1> — আপনার তহবিল পরিচালনা করার একটি স্মার্ট উপায়", "-2146691203": "প্রবিধান পছন্দ", "-249184528": "আপনি ইইউ বা অ-ইইউ নিয়ন্ত্রণের অধীনে প্রকৃত অ্যাকাউন্ট তৈরি করতে পারেন। <0>এই অ্যাকাউন্টগুলি সম্পর্কে আরও জানতে<0/> আইকনে ক্লিক করুন।", "-1505234170": "ট্রেডার'স হাব ট্যুর", @@ -2860,7 +2844,6 @@ "-1949883551": "আপনার শুধুমাত্র একটি অ্যাকাউন্ট আছে", "-1149845849": "ট্রেডার'স হাব ফিরে যান", "-1232852916": "লেনদেন দেখতে আমরা আপনার {{currency}} অ্যাকাউন্টে স্যুইচ করছি।", - "-759000391": "আমরা স্বয়ংক্রিয়ভাবে আপনার তথ্য যাচাই করতে পারিনি। এই ফাংশনটি সক্ষম করতে, আপনাকে নিম্নলিখিতগুলি সম্পূর্ণ করতে হবে:", "-1632668764": "আমি মেনে নিয়েছি", "-544232635": "একটি ঠিকানা তৈরি করতে অনুগ্রহ করে ডিপোজিট পৃষ্ঠাতে যান। তারপর আপনার লেনদেন চালিয়ে যেতে এখানে ফিরে আসা।", "-1161069724": "অনুগ্রহ করে নিচের ক্রিপ্টো ঠিকানাটি অনুলিপি করুন। আপনার ক্রিপ্টোকারেন্সি জমা করার জন্য আপনার এটির প্রয়োজন হবে।", @@ -3267,7 +3250,6 @@ "-821418875": "ট্রেডার", "-679102561": "চুক্তির বিবরণ", "-430118939": "অভিযোগের নীতি", - "-568280383": "Deriv Gaming", "-1308346982": "উদ্ভূত", "-579984289": "Derived Demo", "-1596515467": "Derived BVI", @@ -3390,7 +3372,6 @@ "-689237734": "এগিয়ে যান", "-1642457320": "সহায়তা কেন্দ্র", "-1966944392": "নেটওয়ার্ক স্ট্যাটাস: {{status}}", - "-594209315": "ইইউতে সিন্থেটিক সূচকগুলি {{legal_entity_name}}, ডব্লিউ বিজনেস সেন্টার, লেভেল 3, ট্রিক ডুন কারম, বির্কিরকারা বিকেআর 9033, মাল্টা, লাইসেন্সকৃত এবং মাল্টা গেমিং অথরিটি দ্বারা নিয়ন্ত্রিত (<0>লাইসেন্স নং। এমজিএ/বি 2 সি/102/2000) এবং আয়ারল্যান্ডের ক্লায়েন্টদের জন্য রাজস্ব কমিশনারদের দ্বারা (<2>লাইসেন্স নং 1010285)।", "-181484419": "দায়িত্বশীল ট্রেডিং", "-650505513": "ফুল স্ক্রীণ", "-1823504435": "বিজ্ঞপ্তি দেখুন", @@ -3400,8 +3381,8 @@ "-1496158755": "Deriv.com এ যান", "-1323441180": "আমি এতদ্বারা নিশ্চিত যে Deriv- এর সাথে একটি অ্যাকাউন্ট খোলার জন্য আমার অনুরোধ ব্রাজিলের বাইরে ইস্যু করা এবং বিশেষভাবে দেওয়া OTC পণ্যগুলি ট্রেড করার অনুরোধ আমার দ্বারা শুরু করা হয়েছিল। আমি সম্পূর্ণরূপে বুঝতে পারি যে Deriv CVM দ্বারা নিয়ন্ত্রিত হয় না এবং Deriv সমীপবর্তী দ্বারা আমি একটি বিদেশী কোম্পানীর সঙ্গে একটি সম্পর্ক স্থাপন করতে মনস্থ।", "-1396326507": "দুর্ভাগ্যবশত, {{website_name}} আপনার দেশে উপলব্ধ নয়।", - "-1019903756": "সিন্থেটিক", "-288996254": "অনুপলব্ধ", + "-1019903756": "সিন্থেটিক", "-735306327": "অ্যাকাউন্ট ব্যবস্থাপনা", "-1813972756": "অ্যাকাউন্ট তৈরিতে 24 ঘন্টার জন্য বিরতি দেওয়া হয়েছে", "-366030582": "দুঃখিত, আপনি এই মুহুর্তে একটি অ্যাকাউন্ট তৈরি করতে অক্ষম। যেহেতু আপনি আমাদের পূর্ববর্তী ঝুঁকির সতর্কতাগুলি প্রত্যাখ্যান করেছেন, আপনার অগ্রসর হওয়ার আগে আপনার প্রথম অ্যাকাউন্ট তৈরির প্রচেষ্টার 24 ঘন্টা পরে আমাদের অপেক্ষা করতে হবে।<0/><0/>", @@ -3424,9 +3405,6 @@ "-175638343": "একটি অ্যাকাউন্ট নির্বাচন করুন অথবা একটি নতুন যোগ করুন", "-1768223277": "আপনার অ্যাকাউন্ট প্রস্তুত", "-1215717784": "<0>আপনি সফলভাবে আপনার মুদ্রা {{currency}}পরিবর্তন করেছেন ট্রেডিং শুরু করার জন্য <0>এখনই একটি ডিপোজিট করুন।", - "-786091297": "ডেমো ট্রেড করুন", - "-228099749": "অনুগ্রহ করে আপনার পরিচয় এবং ঠিকানা যাচাই করুন", - "-1041852744": "আমরা আপনার ব্যক্তিগত তথ্য প্রক্রিয়া করছি", "-1775006840": "ট্রেডিং শুরু করার জন্য এখনই একটি ডিপোজিট করুন।", "-983734304": "ট্রেডিং শুরু করার আগে আপনার পরিচয় এবং ঠিকানার প্রমাণ প্রয়োজন।", "-917733293": "ট্রেডিং পেতে, অনুগ্রহ করে নিশ্চিত করুন যে আপনি কোথায় থাকেন।", @@ -3434,7 +3412,6 @@ "-952649119": "লগ ইন", "-3815578": "সাইন আপ", "-1456176427": "আপনার আসল অ্যাকাউন্টের জন্য একটি মুদ্রা সেট করুন", - "-1557011219": "একটি বাস্তব Deriv বিকল্প অ্যাকাউন্ট যোগ করুন", "-241733171": "একটি Deriv আর্থিক অ্যাকাউন্ট যোগ করুন", "-1329687645": "একটি ক্রিপ্টোকুরেন্স অ্যাকাউন্ট তৈরি করুন", "-1429178373": "একটি নতুন অ্যাকাউন্ট তৈরি করুন", @@ -3471,14 +3448,10 @@ "-2142491494": "ওকে, বুঝেছি", "-611136817": "নকল লিঙ্ক সম্পর্কে সতর্ক থাকুন।", "-1342699195": "মোট মুনাফা/ক্ষতি:", - "-943710774": "আইল অফ ম্যান এবং যুক্তরাজ্যে, Binary (IOM) Ltd. দ্বারা অস্থিরতা সূচকগুলি অফার করা হয়৷ কোম্পানিটি First Floor, Millennium House, Victoria Road, Douglas, IM2 4RW, Isle of Man, British Isles -এ অবস্থান করে এবং যথাক্রমে এবং যথাক্রমে নিয়ন্ত্রিত (1) আইল অফ ম্যান-এর Gambling Supervision Commission (বর্তমান লাইসেন্স 31 আগস্ট 2017 এ জারি করা হয়েছে) এবং (2) যুক্তরাজ্যের Gambling Commission দ্বারা (লাইসেন্স {$0}রেফারেন্স নং: 39172{ $1})।", - "-255056078": "এই অভিযোগ নীতি, যা সময়ে সময়ে পরিবর্তিত হতে পারে, {{legal_entity_name}}এর সাথে নিবন্ধিত আপনার অ্যাকাউন্টে প্রযোজ্য, ডাব্লু বিজনেস সেন্টার, লেভেল 3, ট্রিক দুন কারম, বির্কির্কারা, বিকেআর 9033, মাল্টা, লাইসেন্সকৃত এবং নিয়ন্ত্রিত মাল্টা গেমিং অথরিটি দ্বারা শুধুমাত্র জুয়া পণ্যগুলির জন্য, <0>লাইসেন্স নং। MGA/B2C/102/2000, এবং UK Gambling Commission (অ্যাকাউন্ট নম্বর 39495) দ্বারা যুক্তরাজ্যে বসবাসকারী ক্লায়েন্টদের জন্য।", "-1941013000": "এই অভিযোগ নীতি, যা সময়ে সময়ে পরিবর্তিত হতে পারে, {{legal_entity_name_svg}}, {{legal_entity_name_fx}}, এবং {{legal_entity_name_v}}নিবন্ধিত আপনার অ্যাকাউন্টে প্রযোজ্য।", "-594812204": "এই অভিযোগ নীতি, যা সময়ে সময়ে পরিবর্তিত হতে পারে, {{legal_entity_name_svg}}নিবন্ধিত আপনার অ্যাকাউন্টে প্রযোজ্য।", "-813256361": "আমরা আমাদের ক্লায়েন্টদের সাথে ন্যায্য আচরণ করতে এবং তাদের চমৎকার পরিষেবা প্রদান করতে প্রতিশ্রুতিবদ্ধ।<0/><1/>আমরা কীভাবে আপনার কাছে আমাদের পরিষেবাগুলি উন্নত করতে পারি সে সম্পর্কে আমরা আপনার কাছ থেকে শুনতে চাই। আপনার দেওয়া যেকোনো তথ্যকে কঠোরতম আস্থার সাথে বিবেচনা করা হবে। নিশ্চিত থাকুন যে আপনার কথা শোনা হবে, মূল্যায়ন করা হবে এবং সর্বদা ন্যায্য আচরণ করা হবে।", "-1622847732": "আপনার যদি {{legal_entity_name}} এর সাথে আপনার ট্রেডিং অ্যাকাউন্টের বিষয়ে কোনো জিজ্ঞাসা থাকে, তাহলে আপনি আমাদের <0>সহায়তা কেন্দ্রের মাধ্যমে অথবা <1>লাইভ চ্যাট এর মাধ্যমে একজন প্রতিনিধির সাথে চ্যাট করে আমাদের সাথে যোগাযোগ করতে পারেন।<2 /><3/>আমরা আপনার প্রশ্নের দ্রুততম সময়ের মধ্যে সমাধান করতে প্রতিশ্রুতিবদ্ধ এবং বিষয়টি সমাধান করার জন্য আমাদের সময় দেওয়ার জন্য আপনার ধৈর্যের প্রশংসা করি।<4/><5/>আমরা সম্ভাব্য সর্বোত্তম পরিষেবা এবং সহায়তা প্রদানের চেষ্টা করি আমাদের গ্রাহকদের. যাইহোক, যদি আমরা আপনার প্রশ্নের সমাধান করতে না পারি বা আপনি যদি মনে করেন যে আমাদের প্রতিক্রিয়া অসন্তোষজনক, আমরা আপনার কাছ থেকে শুনতে চাই। আমরা আপনাকে আমাদের কাছে একটি অফিসিয়াল অভিযোগ জমা দেওয়ার জন্য স্বাগত জানাই এবং উত্সাহিত করি যাতে আমরা আপনার উদ্বেগগুলি পর্যালোচনা করতে পারি এবং একটি সমাধানের দিকে কাজ করতে পারি।", - "-1639808836": "আপনি যদি ফলাফলে সন্তুষ্ট না হন, তাহলে আপনি IBAS বিচার ফর্ম পূরণ করে আপনার অভিযোগ <0>ইন্ডিপেন্ডেন্ট বেটিং অ্যাডজুডিকেশন সার্ভিস (IBAS)-এ পাঠাতে পারেন। অনুগ্রহ করে মনে রাখবেন যে IBAS শুধুমাত্র লেনদেনের ফলে বিরোধ নিয়ে কাজ করে।", - "-1505742956": "<0/><1/>আপনি <2>প্লেয়ার সাপোর্ট ইউনিটের মাধ্যমে মাল্টা গেমিং কর্তৃপক্ষের কাছে আপনার বিতর্ককে উল্লেখ করতে পারেন।", "-1406192787": "আপনি যদি ফলাফলের সাথে সন্তুষ্ট না হন, তাহলে আপনি আপনার অভিযোগ <0>আর্থিক কমিশনের কাছে বাড়িয়ে দিতে পারেন।", "-1776547326": "<0/><1/>আপনি যদি যুক্তরাজ্যে থাকেন এবং আপনি আমাদের প্রতিক্রিয়া নিয়ে অসন্তুষ্ট হন, তাহলে আপনি আপনার অভিযোগ <2>আর্থিক ন্যায়পাল সার্ভিসে বাড়িয়ে দিতে পারেন।", "-2115348800": "1। ভূমিকা", @@ -3561,7 +3534,6 @@ "-1969608084": "ফরেক্স এবং ক্রিপ্টোকারেন্সি", "-800771713": "Labuan Financial Services Authority (licence no. MB/18/0024)", "-1497128311": "80+", - "-1501230046": "0.6 পিপস", "-1689815930": "আপনি নির্দিষ্ট থ্রেশহোল্ড পৌঁছানোর পরে পরিচয় এবং ঠিকানা প্রমাণ জমা দিতে হবে।", "-1175785439": "Deriv (SVG) LLC (কোম্পানি নং 273 এলএলসি 2020)", "-139026353": "নিজের একটি সেলফি।", @@ -4102,7 +4074,6 @@ "-1750896349": "ডি'আলেমবার্ট", "-102980621": "অস্কারের গ্রাইন্ড স্ট্র্যাটেজি হল একটি কম-ঝুঁকিপূর্ণ ইতিবাচক অগ্রগতি কৌশল যা প্রথম 1965 সালে আবির্ভূত হয়েছিল। এই কৌশলটি ব্যবহার করে, সফল ট্রেডের পরে আপনার চুক্তির আকার বৃদ্ধি পাবে, কিন্তু অসফল ট্রেডের পরে অপরিবর্তিত থাকবে।", "-462715374": "শিরোনামহীন বট", - "-538215347": "নেট ডিপোজিট", "-280147477": "সকল লেনদেন", "-137444201": "কিনুন", "-130601012": "অনুগ্রহ করে সময়কাল নির্বাচন করুন", diff --git a/packages/translations/src/translations/de.json b/packages/translations/src/translations/de.json index b2c882ec73d4..73acc092bf83 100644 --- a/packages/translations/src/translations/de.json +++ b/packages/translations/src/translations/de.json @@ -1,5 +1,4 @@ { - "1014140": "Sie können auch <0>+447723580049 anrufen, um Ihre Beschwerde einzureichen.", "1485191": "1:1000", "2082741": "zusätzliche Dokumentennummer", "2091451": "Deriv Bot - Ihr automatisierter Handelspartner", @@ -205,12 +204,10 @@ "218441288": "Nummer des Personalausweises", "220014242": "Laden Sie ein Selfie von Ihrem Computer hoch", "220186645": "Text ist leer", - "220232017": "Demo-CFDs", "221261209": "Mit einem Deriv-Konto können Sie Geld auf Ihr(e) CFD-Konto(s) einzahlen (und von dort abheben).", "223120514": "In diesem Beispiel ist jeder Punkt der SMA-Linie ein arithmetischer Durchschnitt der Schlusskurse der letzten 50 Tage.", "223607908": "Letzte Digits-Statistik für die letzten 1000 Ticks für {{underlying_name}}", "224650827": "IOT/USD", - "224929714": "Wetten auf virtuelle Events werden im Vereinigten Königreich und auf der Isle of Man von {{legal_entity_name}}, Millennium House, Level 1, Victoria Road, Douglas IM2 4RW, Isle of Man, angeboten, das in Großbritannien von der Gambling Commission unter der <0>Kontonummer 39172 und von der Gambling Supervision Commission auf der Isle of Man lizenziert und reguliert wird (<1>Lizenz anzeigen).", "225887649": "Dieser Block ist verpflichtend. Es wird standardmäßig zu Ihrer Strategie hinzugefügt, wenn Sie eine neue Strategie erstellen. Sie können der Leinwand nicht mehr als eine Kopie dieses Blocks hinzufügen.", "227591929": "Zum Zeitstempel {{ input_datetime }} {{ dummy }}", "227903202": "Für Überweisungen in verschiedenen Währungen zwischen Ihren Deriv Fiat- und {{platform_name_mt5}}-Konten berechnen wir eine Gebühr von 1%.", @@ -262,7 +259,6 @@ "273728315": "Sollte nicht 0 oder leer sein", "274268819": "Volatility 100 Index", "275116637": "Deriv X", - "276639155": "Bitte geben Sie eine Postleitzahl mit weniger als 20 Zeichen ein.", "276770377": "Für neue Trades werden neue MT5-Konten unter der Zuständigkeit von {{to_account}} erstellt.", "277469417": "Die Ausschlusszeit darf nicht länger als fünf Jahre betragen.", "278684544": "Unterliste von # vom Ende abrufen", @@ -271,7 +267,6 @@ "282319001": "Überprüfe dein Bild", "282564053": "Als Nächstes benötigen wir Ihren Adressnachweis.", "283830551": "Deine Adresse stimmt nicht mit deinem Profil überein", - "283986166": "Der Selbstausschluss auf der Website gilt nur für Ihr Konto bei {{brand_website_name}} und schließt andere Unternehmen oder Websites nicht ein.", "284527272": "Antimode", "284772879": "Vertrag", "284809500": "Finanzielle Demo", @@ -376,7 +371,6 @@ "401339495": "Adresse verifizieren", "401345454": "Gehen Sie dazu auf den Tab Tutorials.", "403456289": "Die Formel für SMA lautet:", - "404743411": "Einlagen insgesamt", "406359555": "Angaben zum Vertrag", "406497323": "Verkaufen Sie bei Bedarf Ihren aktiven Vertrag (optional)", "411482865": "{{deriv_account}} Konto hinzufügen", @@ -468,11 +462,11 @@ "502041595": "Dieser Block gibt Ihnen eine bestimmte Kerze innerhalb des ausgewählten Zeitintervalls.", "505793554": "letzter Brief", "508390614": "Demo Financial STP", - "510815408": "Nur Buchstaben, Zahlen, Leerzeichen, Bindestriche", "511679687": "Accumulators ermöglichen es Ihnen, eine Meinung über die Schwankungsbreite eines Index zu äußern und Ihren Einsatz exponentiell mit einer festen <0>Wachstumsrate zu erhöhen.", "514031715": "Liste {{ input_list }} ist leer", "514776243": "Ihr {{account_type}} Passwort wurde geändert.", "514948272": "Link kopieren", + "517631043": "Wir haben Ihr E-Book verschickt. Prüfen Sie Ihre E-Mail, um es herunterzuladen.", "517833647": "Volatility 50 (1s) Index", "518955798": "7. Beim Start einmal ausführen", "519205761": "Sie können mit diesem Konto keine neuen Positionen mehr eröffnen.", @@ -499,7 +493,6 @@ "542038694": "Für {{label}}sind nur Buchstaben, Zahlen, Leerzeichen, Unterstriche und Bindestriche zulässig.", "542305026": "Sie müssen auch einen Identitätsnachweis vorlegen.", "543413346": "Sie haben keine offenen Positionen für diesen Vermögenswert. Um weitere offene Stellen zu sehen, klicken Sie auf Gehe zu Berichten", - "545476424": "Auszahlungen insgesamt", "547029855": "Wenn Sie diese Funktion auswählen, können Sie Ihren Handel innerhalb eines ausgewählten Zeitrahmens stornieren, falls sich der Anlagepreis zu Ihren Gunsten bewegt. Sie erhalten Ihren Einsatz ohne Gewinn/Verlust zurück. Dafür erheben wir eine geringe Gebühr. Take Profit und Stop Loss sind deaktiviert, wenn die Stornierung von Deals aktiv ist.", "549479175": "Multipliers ableiten", "549799607": "Zum LiveChat gehen", @@ -628,6 +621,7 @@ "665777772": "XLM/USD", "665872465": "Im folgenden Beispiel wird der Eröffnungskurs ausgewählt, der dann einer Variablen namens „op“ zugewiesen wird.", "666724936": "Bitte geben Sie eine gültige Identifikationsnummer ein.", + "669494711": "1.4 Pips", "671630762": "Wir akzeptieren nur diese Arten von Dokumenten als Nachweis für Ihre Adresse. Das Dokument muss aktuell sein (innerhalb der letzten {{expiry_in_months}} Monate ausgestellt) und Ihren Namen und Ihre Adresse enthalten:", "672008428": "ZEC/USD", "673915530": "Gerichtsstand und Rechtswahl", @@ -693,7 +687,6 @@ "721011817": "- Potenziere die erste Zahl mit der zweiten Zahl", "723045653": "Sie melden sich mit dieser E-Mail-Adresse bei Ihrem Deriv-Konto an.", "723961296": "Passwort verwalten", - "724203548": "Sie können Ihre Beschwerde an die <0>Online-Streitbeilegungsplattform (ODR) der Europäischen Kommission senden. Dies gilt nicht für britische Kunden.", "724526379": "Erfahren Sie mehr mit unseren Tutorials", "728042840": "Um weiterhin mit uns zu handeln, bestätigen Sie bitte, wo Sie wohnen.", "728824018": "Spanischer Index", @@ -726,7 +719,6 @@ "755138488": "Wir sind nicht in der Lage, das von Ihnen vorgelegte Dokument zu überprüfen, da es Markierungen oder Text enthält, die nicht auf Ihrem Dokument sein sollten. Bitte legen Sie ein deutliches Foto oder einen Scan Ihres Originalausweises vor.", "756152377": "SMA misst der gesamten Werteverteilung das gleiche Gewicht bei.", "758003269": "Liste aus Text erstellen", - "759783233": "Weitere Informationen und Unterstützung zu Beratungs- und Unterstützungsdiensten finden Sie auf <0>begambleaware.org.", "760528514": "Bitte beachten Sie, dass eine Änderung des Werts von „i“ den Wert des ursprünglichen Elements in der Liste nicht ändert.", "761576760": "Zahlen Sie Ihr Konto auf, um mit dem Handel zu beginnen.", "762926186": "Eine Schnellstrategie ist eine vorgefertigte Strategie, die Sie in Deriv Bot verwenden können. Es gibt 3 Schnellstrategien, aus denen Sie wählen können: Martingale, D'Alembert und Oscar's Grind.", @@ -1105,7 +1097,6 @@ "1128404172": "Rückgängig machen", "1129124569": "Wenn Sie \"Under\" wählen, gewinnen Sie die Auszahlung, wenn die letzte Digit des letzten Häkchens unter Ihrer Vorhersage liegt.", "1129842439": "Bitte geben Sie einen Take-Profit-Betrag ein.", - "1130744117": "Wir werden versuchen, Ihre Beschwerde innerhalb von 10 Werktagen zu lösen. Wir werden Sie über das Ergebnis zusammen mit einer Erläuterung unserer Position informieren und alle Abhilfemaßnahmen vorschlagen, die wir zu ergreifen beabsichtigen.", "1130791706": "N", "1133651559": "Live-Chat", "1134879544": "Beispiel für ein Dokument mit Blendung", @@ -1274,7 +1265,6 @@ "1304083330": "Kopie", "1304272843": "Bitte reichen Sie Ihren Adressnachweis ein.", "1304620236": "Kamera aktivieren", - "1304788377": "<0/><1/>Wenn sich Ihre Beschwerde auf unsere Datenverarbeitungspraktiken bezieht, können Sie auf dessen Website eine formelle Beschwerde beim <2>Informations- und Datenschutzbeauftragten (Malta) einreichen oder eine Beschwerde bei einer Aufsichtsbehörde innerhalb der Europäischen Union einreichen.", "1305217290": "Laden Sie die Rückseite Ihres Personalausweises hoch.", "1308625834": "Legt das Standardzeitintervall für Blöcke fest, die die Kerzenliste lesen.", "1309017029": "Wenn Sie dies aktivieren, können Sie Ihre Blöcke als eine Sammlung speichern, die einfach in andere Bots integriert werden kann.", @@ -1512,6 +1502,7 @@ "1531017969": "Erzeugt eine einzelne Textzeichenfolge aus der Kombination des Textwerts jedes angehängten Elements ohne Leerzeichen dazwischen. Die Anzahl der Artikel kann entsprechend hinzugefügt werden.", "1533177906": "Fall", "1534796105": "Ruft Variablenwert ab", + "1537192641": "Ihre Anfrage kann nicht bearbeitet werden", "1537711064": "Sie müssen eine schnelle Identitätsprüfung durchführen, bevor Sie auf den Kassenbereich zugreifen können. Bitte gehen Sie zu Ihren Kontoeinstellungen, um Ihren Identitätsnachweis einzureichen.", "1540585098": "Rückgang", "1541508606": "Auf der Suche nach CFDs? Gehe zum Trader's Hub", @@ -1562,7 +1553,6 @@ "1594147169": "Bitte komm wieder rein", "1594322503": "Verkaufen ist verfügbar", "1595295238": "3. Verwenden Sie einen Logikblock, um zu prüfen, ob der Gesamtgewinn/-verlust größer ist als der Schwellenwert für den Stop-Loss. Sie finden die Variable Gesamtgewinn/-verlust unter Analyse > Statistiken im Menü Blöcke auf der linken Seite. Ihr Bot wird so lange neue Kontrakte kaufen, bis der Gesamtgewinn/-verlust den Schwellenwert für den Stop-Loss überschreitet.", - "1596378630": "Sie haben ein echtes Gaming-Konto hinzugefügt.<0/> Machen Sie jetzt eine Einzahlung, um mit dem Handel zu beginnen.", "1597672660": "MT5-Passwort ableiten", "1598009247": "<0>a. Sie können bis zu 45 Tage nach dem Vorfall eine Beschwerde bei der Finanzkommission einreichen.", "1598386296": "Stadt ist erforderlich.", @@ -1730,7 +1720,6 @@ "1763123662": "Laden Sie Ihren NIMC-Zettel hoch.", "1766212789": "Die Serverwartung beginnt jeden Sonntag um 06:00 Uhr GMT und kann bis zu 2 Stunden dauern. Während dieser Zeit kann es zu Serviceunterbrechungen kommen.", "1766993323": "Nur Buchstaben, Zahlen und Unterstriche sind zulässig.", - "1767429330": "Ein abgeleitetes Konto hinzufügen", "1768293340": "Auftragswert", "1768861315": "Minute", "1768918213": "Nur Buchstaben, Leerzeichen, Bindestrich, Punkt und Apostroph sind zulässig.", @@ -1744,6 +1733,7 @@ "1779144409": "Kontoverifizierung erforderlich", "1779519903": "Sollte eine gültige Zahl sein.", "1779801832": "Bitte aktualisieren Sie Ihr Passwort entsprechend.", + "1779872677": "E-Book herunterladen", "1780442963": "Scannen Sie den QR-Code, um {{ platform }} herunterzuladen.", "1780770384": "Dieser Block gibt dir einen zufälligen Bruch zwischen 0,0 und 1,0.", "1782308283": "Schnelle Strategie", @@ -1754,7 +1744,6 @@ "1783740125": "Lade dein Selfie hoch", "1785298924": "D'Alembert Formel 1", "1786644593": "Unterstützte Formate: Nur JPEG, JPG, PNG, PDF und GIF", - "1787135187": "Post-/PLZ ist erforderlich", "1787492950": "Die Indikatoren auf der Registerkarte „Diagramm“ dienen nur zur Veranschaulichung und können geringfügig von denen im Arbeitsbereich {{platform_name_dbot}} abweichen.", "1788515547": "<0/>Weitere Informationen zur Einreichung einer Beschwerde beim Office of the Arbiter for Financial Services <1>finden Sie in deren Leitlinien.", "1788966083": "01-07-1999", @@ -1820,7 +1809,6 @@ "1850031313": "- Niedrig: der niedrigste Preis", "1850132581": "Land wurde nicht gefunden", "1850659345": "- Auszahlung: die Auszahlung des Vertrags", - "1850663784": "Nachweise einreichen", "1851052337": "Geburtsort ist erforderlich.", "1851776924": "oberer", "1854480511": "Kassierer ist gesperrt", @@ -1837,7 +1825,6 @@ "1865525612": "Keine aktuellen Transaktionen.", "1866244589": "Der Einstiegspunkt ist der erste Tick für High/Low Ticks.", "1866811212": "Zahlen Sie in Ihrer Landeswährung über eine autorisierte, unabhängige Zahlungsstelle in Ihrem Land ein.", - "1866836018": "<0/><1/>Wenn sich Ihre Beschwerde auf unsere Datenverarbeitungspraktiken bezieht, können Sie eine formelle Beschwerde bei Ihrer örtlichen Aufsichtsbehörde einreichen.", "1867217564": "Der Index muss eine positive Ganzzahl sein", "1867783237": "High-to-Close", "1869315006": "Erfahren Sie, wie wir Ihr Geld schützen, um den Kassenbereich freizuschalten.", @@ -1848,7 +1835,6 @@ "1871377550": "Bieten Sie auf Deriv Bot vorgefertigte Handelsroboter an?", "1871664426": "Notiz", "1873376454": "Dies ist ein Preisniveau, das Sie wählen. Wenn diese Schwelle jemals überschritten wird, wird Ihr Vertrag gekündigt.", - "1873838570": "Bitte verifizieren Sie Ihre Adresse", "1874481756": "Verwenden Sie diesen Block, um den gewünschten Vertrag zu erwerben. Sie können mehrere Kaufblöcke zusammen mit bedingten Blöcken hinzufügen, um Ihre Einkaufsbedingungen zu definieren. Dieser Block kann nur innerhalb des Blocks mit den Einkaufsbedingungen verwendet werden.", "1874756442": "BVI", "1875702561": "Lade oder baue deinen Bot", @@ -1890,7 +1876,6 @@ "1906213000": "Unser System beendet alle laufenden Deriv Bot-Geschäfte, und Deriv Bot platziert keine neuen Geschäfte.", "1906639368": "Wenn Sie zum ersten Mal versuchen, ein Passwort zu erstellen, oder wenn Sie Ihr Passwort vergessen haben, setzen Sie es bitte zurück.", "1907423697": "Mehr verdienen mit Deriv API", - "1907884620": "Fügen Sie ein echtes Deriv Gaming-Konto hinzu", "1908023954": "Leider ist während der Bearbeitung Ihrer Anfrage ein Fehler aufgetreten.", "1908239019": "Stellen Sie sicher, dass das gesamte Dokument auf dem Foto zu sehen ist", "1908686066": "Warnung vor dem Angemessenheitstest", @@ -1993,7 +1978,6 @@ "2001222130": "Überprüfe deinen Spam- oder Junk-Ordner. Wenn sie nicht da ist, versuchen Sie, die E-Mail erneut zu senden.", "2001361785": "1. Beginnen Sie mit dem Ersteinsatz. Sagen wir 1 USD.", "2004052487": "Schätzen Sie die Lebensdauer Ihres Gewerbes", - "2004792696": "Wenn Sie in Großbritannien ansässig sind, besuchen Sie <0>www.gamstop.co.uk, um sich selbst von allen in Großbritannien lizenzierten Online-Glücksspielunternehmen auszuschließen.", "2007028410": "Markt, Handelsart, Kontraktart", "2010759971": "Uploads waren erfolgreich", "2010866561": "Gibt den Gesamtgewinn/-verlust zurück", @@ -2073,7 +2057,6 @@ "2085387371": "Muss aus Zahlen, Buchstaben und Sonderzeichen bestehen., '-", "2085602195": "- Eingangswert: der Wert des ersten Häkchens des Kontrakts", "2086048243": "Gründungsurkunde", - "2086742952": "Sie haben ein echtes Optionskonto hinzugefügt.<0/> Machen Sie jetzt eine Einzahlung, um mit dem Handel zu beginnen.", "2086792088": "Beide Barrieren sollten relativ oder absolut sein", "2088735355": "Ihre Sitzungs- und Login-Limits", "2089087110": "Warenkorb-Indizes", @@ -2281,7 +2264,6 @@ "-1699820408": "Bitte geben Sie eine {{field_name}} unter {{max_number}} Zeichen ein.", "-1575567374": "Post-/PLZ", "-816263501": "Es sind nur Buchstaben, Zahlen, Leerzeichen und Bindestriche erlaubt.", - "-1497654315": "Unsere Konten und Dienste sind für die Postleitzahl von Jersey nicht verfügbar.", "-755626951": "Vervollständigen Sie Ihre Adressdaten", "-1024240099": "Adresse", "-1534917661": "Wählen Sie Ihre bevorzugte Währung", @@ -2348,6 +2330,7 @@ "-1458676679": "Sie sollten 2-50 Zeichen eingeben.", "-1116008222": "Sie sollten 9-35 Zahlen eingeben.", "-1995979930": "Die erste Zeile der Adresse ist erforderlich.", + "-703454156": "Bitte geben Sie eine Postleitzahl mit weniger als 20 Zeichen ein.", "-2113555886": "Nur Buchstaben, Zahlen, Leerzeichen und Bindestriche sind zulässig.", "-1103497546": "Steuererklärung", "-700600899": "Geschäftlicher Nachweis der Adresse", @@ -2499,7 +2482,6 @@ "-1545823544": "7 Tage", "-180147209": "Nach Ablauf dieser Frist werden Sie automatisch von jeder Sitzung abgemeldet.", "-374553538": "Ihr Konto wird bis zu diesem Datum von der Website ausgeschlossen (mindestens 6 Monate, bis zu 5 Jahre).", - "-2121421686": "Um sich selbst von allen in Großbritannien lizenzierten Online-Glücksspielunternehmen auszuschließen, besuchen Sie <0>www.gamstop.co.uk.", "-2105708790": "Ihr maximales Kontoguthaben und offene Positionen", "-1960600163": "Sobald Ihr Kontoguthaben diesen Betrag erreicht hat, können Sie kein Geld auf Ihr Konto einzahlen.", "-1073845224": "Anzahl der offenen Stelle (n)", @@ -2653,6 +2635,7 @@ "-1728732301": "Müheloses Einloggen mit Passkeys", "-684009726": "Passkeybearbeiten", "-1140319320": "Ihr Konto ist jetzt mit einem Passkeygesichert. <0/> Verwalten Sie Ihren Passkeyüber Ihre <0/> Deriv-Kontoeinstellungen.", + "-1036903080": "Bei der Bearbeitung Ihrer Anfrage ist ein vorübergehendes Problem aufgetreten. Bitte versuchen Sie es später noch einmal.", "-331060101": "Passkey-Einrichtung fehlgeschlagen", "-713875531": "Aktivieren Sie bluetooth.", "-80717068": "Apps, die Sie mit Ihrem <0>Deriv-Passwort verknüpft haben:", @@ -2710,6 +2693,10 @@ "-145462920": "Deriv cTrader", "-1210359945": "Überweisen Sie Geld auf Ihre Konten", "-81256466": "Sie benötigen ein Deriv-Konto, um ein CFD-Konto zu erstellen.", + "-1926387364": "Wir haben Ihnen Ihr E-Book per E-Mail zugeschickt. Sie können es auch hier herunterladen.", + "-1057002564": "<0>Wir können Ihnen derzeit kein Upgrade auf Wallets anbieten und arbeiten daran, dieses Problem so schnell wie möglich zu beheben. Bitte <1>versuchen Sie es erneut<0>.", + "-1424352390": "<0>Wallets <1>— Eine intelligentere Art, Ihr Geld zu verwalten", + "-280236366": "Jetzt einschalten", "-699372497": "Traden Sie mit Hebelwirkung und engen Spreads, um bei erfolgreichen Trades bessere Renditen zu erzielen. <0>Erfahren Sie mehr", "-982095728": "Holen", "-1790089996": "NEU!", @@ -2733,13 +2720,10 @@ "-2055865877": "Regulierung außerhalb der EU", "-643108528": "Nicht-EU- und EU-Vorschriften", "-1002556560": "Wir können das Wallet-Upgrade nicht abschließen. Bitte versuchen Sie es später noch einmal oder kontaktieren Sie uns über den Live-Chat.", - "-280236366": "Jetzt einschalten", "-2051096382": "Verdienen Sie eine Reihe von Auszahlungen, indem Sie mit <0>Optionen Marktbewegungen richtig vorhersagen, oder nutzen Sie die Vorteile von CFDs, ohne mehr als Ihren ursprünglichen Einsatz zu riskieren, mit <1>Multipliers.", "-1638358352": "Holen Sie sich mit <0>Multipliers die Vorteile von CFDs, ohne mehr als Ihren ursprünglichen Einsatz zu riskieren.", "-744999940": "Konto ableiten", "-749129977": "Holen Sie sich ein echtes Deriv-Konto, beginnen Sie mit dem Handel und verwalten Sie Ihr Geld.", - "-1057002564": "<0>Wir können Ihnen derzeit kein Upgrade auf Wallets anbieten und arbeiten daran, dieses Problem so schnell wie möglich zu beheben. Bitte <1>versuchen Sie es erneut<0>.", - "-1424352390": "<0>Wallets <1>— Eine intelligentere Art, Ihr Geld zu verwalten", "-2146691203": "Wahl der Verordnung", "-249184528": "Sie können echte Konten gemäß EU- oder Nicht-EU-Vorschriften erstellen. Klicken Sie auf das <0><0/>Symbol, um mehr über diese Konten zu erfahren.", "-1505234170": "Trader's Hub-Tour", @@ -2860,7 +2844,6 @@ "-1949883551": "Du hast nur ein Konto", "-1149845849": "Zurück zu Trader's Hub", "-1232852916": "Wir wechseln zu Ihrem Konto {{currency}} , um die Transaktion zu sehen.", - "-759000391": "Wir konnten Ihre Informationen nicht automatisch überprüfen. Um diese Funktion zu aktivieren, müssen Sie die folgenden Schritte ausführen:", "-1632668764": "Ich akzeptiere", "-544232635": "Bitte gehen Sie zur Einzahlungsseite, um eine Adresse zu generieren. Dann komm zurück, um mit deiner Transaktion fortzufahren.", "-1161069724": "Bitte kopieren Sie die unten angegebene Kryptoadresse. Sie benötigen es, um Ihre Kryptowährung einzuzahlen.", @@ -3267,7 +3250,6 @@ "-821418875": "Händler", "-679102561": "Einzelheiten des Vertrags", "-430118939": "Richtlinie für Beschwerden", - "-568280383": "Deriv Gaming", "-1308346982": "Abgeleitet", "-579984289": "Abgeleitete Demo", "-1596515467": "Abgeleitetes BVI", @@ -3390,7 +3372,6 @@ "-689237734": "Fahren Sie fort", "-1642457320": "Hilfecenter", "-1966944392": "Netzwerkstatus: {{status}}", - "-594209315": "Synthetische Indizes werden in der EU von {{legal_entity_name}}, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, angeboten, lizenziert und reguliert von der Malta Gaming Authority (<0>Lizenz-Nr. MGA/B2C/102/2000) und von den Revenue Commissioners für Kunden in Irland (<2>Lizenznummer 1010285).", "-181484419": "Verantwortungsbewusster Handel", "-650505513": "Vollbild", "-1823504435": "Benachrichtigungen anzeigen", @@ -3400,8 +3381,8 @@ "-1496158755": "Gehe zu Deriv.com", "-1323441180": "Ich bestätige hiermit, dass mein Antrag auf Eröffnung eines Kontos bei Deriv für den Handel mit OTC-Produkten, die ausschließlich außerhalb Brasiliens ausgegeben und angeboten werden, von mir initiiert wurde. Ich verstehe voll und ganz, dass Deriv nicht von CVM reguliert wird, und indem ich mich an Deriv wende, beabsichtige ich, eine Beziehung zu einem ausländischen Unternehmen aufzubauen.", "-1396326507": "Leider ist {{website_name}} in Ihrem Land nicht verfügbar.", - "-1019903756": "synthetisch", "-288996254": "Nicht verfügbar", + "-1019903756": "synthetisch", "-735306327": "Konten verwalten", "-1813972756": "Die Kontoerstellung wurde für 24 Stunden unterbrochen", "-366030582": "Leider können Sie derzeit kein Konto erstellen. Da Sie unsere vorherigen Risikowarnungen abgelehnt haben, müssen Sie nach Ihrem ersten Versuch, ein Konto zu erstellen, 24 Stunden warten, bevor Sie fortfahren können.<0/><0/>", @@ -3424,9 +3405,6 @@ "-175638343": "Wählen Sie ein Konto oder fügen Sie ein neues hinzu", "-1768223277": "Ihr Konto ist bereit", "-1215717784": "<0>Sie haben Ihre Währung erfolgreich auf {{currency}}geändert. <0>Machen Sie jetzt eine Einzahlung, um mit dem Handel zu beginnen.", - "-786091297": "Traden Sie auf der Demo", - "-228099749": "Bitte verifizieren Sie Ihre Identität und Adresse", - "-1041852744": "Wir verarbeiten Ihre personenbezogenen Daten", "-1775006840": "Machen Sie jetzt eine Einzahlung, um mit dem Handel zu beginnen.", "-983734304": "Wir benötigen einen Nachweis Ihrer Identität und Adresse, bevor Sie mit dem Handel beginnen können.", "-917733293": "Um mit dem Handel zu beginnen, bestätigen Sie bitte, wo Sie wohnen.", @@ -3434,7 +3412,6 @@ "-952649119": "Loggen Sie sich ein", "-3815578": "Melde dich an", "-1456176427": "Lege eine Währung für dein Echtgeldkonto fest", - "-1557011219": "Fügen Sie ein echtes Deriv Options-Konto hinzu", "-241733171": "Fügen Sie ein Deriv Financial-Konto hinzu", "-1329687645": "Erstellen Sie ein Kryptowährungskonto", "-1429178373": "Erstelle ein neues Konto", @@ -3471,14 +3448,10 @@ "-2142491494": "OK, verstanden", "-611136817": "Vorsicht vor gefälschten Links.", "-1342699195": "Gesamtgewinn/-verlust:", - "-943710774": "Diese Beschwerderichtlinie, die sich von Zeit zu Zeit ändern kann, gilt für Ihr mit {{legal_entity_name}}registriertes Konto mit Sitz in First Floor, Millennium House, Victoria Road, Douglas, Isle of Man, IM2 4RW, das von (1) der Gambling Supervision Commission auf der Isle of Man (aktuelle <0>Lizenz ausgestellt am 31. August 2017) und (2) der Gambling Commission im Vereinigten Königreich (<1>Lizenznummer 39172) lizenziert und reguliert wird.", - "-255056078": "Diese Beschwerderichtlinie, die sich von Zeit zu Zeit ändern kann, gilt für Ihre mit {{legal_entity_name}}registrierten Konten mit Sitz in W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033, Malta, lizenziert und reguliert von der Malta Gaming Authority in Malta nur für Glücksspielprodukte, <0>Lizenz-Nr. MGA/B2C/102/2000 und für Kunden mit Wohnsitz im Vereinigten Königreich von der UK Gambling Commission (Kontonummer 39495).", "-1941013000": "Diese Beschwerderichtlinie, die sich von Zeit zu Zeit ändern kann, gilt für Ihre Konten, die mit {{legal_entity_name_svg}}, {{legal_entity_name_fx}}und {{legal_entity_name_v}}registriert sind.", "-594812204": "Diese Beschwerderichtlinie, die sich von Zeit zu Zeit ändern kann, gilt für Ihre Konten, die bei {{legal_entity_name_svg}}registriert sind.", "-813256361": "Wir verpflichten uns, unsere Kunden fair zu behandeln und ihnen einen exzellenten Service zu bieten. <0/> <1/> Wir würden uns freuen, von Ihnen zu hören, wie wir unsere Dienstleistungen für Sie verbessern können. Alle Informationen, die Sie uns zur Verfügung stellen, werden streng vertraulich behandelt. Seien Sie versichert, dass Sie gehört, geschätzt und immer fair behandelt werden.", "-1622847732": "Wenn Sie eine Frage zu Ihrem Handelskonto mit {{legal_entity_name}}haben, können Sie uns über unser <0>Hilfecenter kontaktieren oder per <1>Live-Chat mit einem Vertreter chatten. <2/> <3/> Wir sind bestrebt, Ihre Anfrage so schnell wie möglich zu lösen und danken Ihnen für Ihre Geduld, damit wir die Angelegenheit lösen können. <4/> <5/> Wir bemühen uns, unseren Kunden den bestmöglichen Service und Support zu bieten. Falls wir Ihre Anfrage jedoch nicht lösen können oder wenn Sie der Meinung sind, dass unsere Antwort unbefriedigend ist, würden wir uns freuen, von Ihnen zu hören. Wir freuen uns und empfehlen Ihnen, eine offizielle Beschwerde bei uns einzureichen, damit wir Ihre Bedenken prüfen und auf eine Lösung hinarbeiten können.", - "-1639808836": "Wenn Sie mit dem Ergebnis nicht zufrieden sind, können Sie Ihre Beschwerde an den <0>Independent Betting Adjudication Service (IBAS) weiterleiten, indem Sie das IBAS-Entscheidungsformular ausfüllen. Bitte beachten Sie, dass IBAS sich nur mit Streitigkeiten befasst, die sich aus Transaktionen ergeben.", - "-1505742956": "<0/><1/>Sie können Ihren Streitfall auch über die <2>Player Support Unit an die Malta Gaming Authority weiterleiten.", "-1406192787": "Wenn Sie mit dem Ergebnis nicht zufrieden sind, können Sie Ihre Beschwerde an die <0>Finanzkommission weiterleiten.", "-1776547326": "<0/><1/>Wenn Sie im Vereinigten Königreich wohnen und mit unserer Antwort nicht zufrieden sind, können Sie Ihre Beschwerde an den <2>Financial Ombudsman Service weiterleiten.", "-2115348800": "1. Einführung", @@ -3561,7 +3534,6 @@ "-1969608084": "Forex und Kryptowährungen", "-800771713": "Labuan Financial Services Authority (Lizenznr. MB/18/0024)", "-1497128311": "80+", - "-1501230046": "0,6 Pips", "-1689815930": "Sie müssen einen Identitäts- und Adressnachweis einreichen, sobald Sie bestimmte Schwellenwerte erreicht haben.", "-1175785439": "Deriv (SVG) LLC (Firmennummer 273 LLC 2020)", "-139026353": "Ein Selfie von Ihnen.", @@ -4102,7 +4074,6 @@ "-1750896349": "D'Alembert", "-102980621": "Die Oscar's Grind Strategy ist eine Strategie für positive Progressionen mit geringem Risiko, die erstmals 1965 auf den Markt kam. Wenn Sie diese Strategie anwenden, erhöht sich die Größe Ihres Kontrakts nach erfolgreichen Trades, bleibt jedoch nach erfolglosen Trades unverändert.", "-462715374": "Bot ohne Titel", - "-538215347": "Nettoeinlagen", "-280147477": "Alle Transaktionen", "-137444201": "Kaufen", "-130601012": "Bitte wählen Sie die Dauer", diff --git a/packages/translations/src/translations/es.json b/packages/translations/src/translations/es.json index b323c439ef35..25f2cc558e1b 100644 --- a/packages/translations/src/translations/es.json +++ b/packages/translations/src/translations/es.json @@ -1,5 +1,4 @@ { - "1014140": "También puede llamar al <0>+447723580049 para presentar su queja.", "1485191": "1:1000", "2082741": "número de documento adicional", "2091451": "Deriv Bot - su socio de trading automatizado", @@ -205,12 +204,10 @@ "218441288": "Número de documento de identidad", "220014242": "Suba un selfie desde su computadora", "220186645": "El texto esta vacío", - "220232017": "demo de CFD", "221261209": "Una cuenta Deriv le permitirá financiar (y retirar fondos de) su(s) cuenta(s) de CFD.", "223120514": "En este ejemplo, cada punto de la línea SMA es un promedio aritmético de precios de cierre de los últimos 50 días.", "223607908": "Estadísticas del último dígito para los últimos 1000 ticks para {{underlying_name}}", "224650827": "IOT/USD", - "224929714": "Las inversiones basadas en eventos virtuales en el Reino Unido y la Isla de Man son ofrecidas por {{legal_entity_name}}, Millennium House, Nivel 1, Victoria Road, Douglas IM2 4RW, Isla de Man, autorizada y regulada en Gran Bretaña por la Comisión del Juego bajo <0>cuenta no. 39172 y por la Comisión de Supervisión del Juego en la Isla de Man (<1>ver licencia).", "225887649": "Este bloque es obligatorio. Se agrega a su estrategia de forma predeterminada cuando crea una nueva estrategia. No puede agregar más de una copia de este bloque al lienzo.", "227591929": "Para marcar la hora {{ input_datetime }} {{ dummy }}", "227903202": "Cobraremos una comisión de transferencia del 1% por las transferencias en diferentes monedas entre sus cuentas Deriv fiat y {{platform_name_mt5}}.", @@ -262,7 +259,6 @@ "273728315": "No debe ser 0 o estar vacío", "274268819": "Índice Volatility 100", "275116637": "Deriv X", - "276639155": "Introduzca un código postal de menos de 20 caracteres.", "276770377": "Se crearán nuevas cuentas MT5 bajo la jurisdicción de {{to_account}} para las nuevas operaciones.", "277469417": "El tiempo de exclusión no puede ser mayor a cinco años.", "278684544": "obtener sublista desde # desde el final", @@ -271,7 +267,6 @@ "282319001": "Revise su foto", "282564053": "A continuación, necesitaremos su prueba de domicilio.", "283830551": "Su dirección no coincide con la de su perfil", - "283986166": "La autoexclusión en este sitio web solo se aplica a su cuenta {{brand_website_name}} y no incluye otras empresas o sitios web.", "284527272": "antimoda", "284772879": "Contrato", "284809500": "Demo financiera", @@ -376,7 +371,6 @@ "401339495": "Verificar la dirección", "401345454": "Diríjase a la pestaña Tutoriales para hacerlo.", "403456289": "La fórmula para la SMA es:", - "404743411": "Total de depósitos", "406359555": "Detalles del contrato", "406497323": "Venda su contrato activo si es necesario (opcional)", "411482865": "Agregar cuenta {{deriv_account}}", @@ -468,11 +462,11 @@ "502041595": "Este bloque le proporciona una vela específica dentro del intervalo de tiempo seleccionado.", "505793554": "la última letra", "508390614": "Financiera STP demo", - "510815408": "Solo letras, números, espacios, guiones", "511679687": "Los Accumulators le permiten expresar una visión sobre el rango de movimiento de un índice y hacer crecer su apuesta exponencialmente a una <0>tasa de crecimiento fija.", "514031715": "lista {{ input_list }} está vacía", "514776243": "La contraseña de su {{account_type}} ha sido cambiada.", "514948272": "Copiar enlace", + "517631043": "Hemos enviado su libro electrónico. Compruebe su correo electrónico para descargarlo.", "517833647": "Índice Volatility 50 (1s)", "518955798": "7. Ejecutar una vez al iniciar", "519205761": "Ya no puede abrir nuevas posiciones con esta cuenta.", @@ -499,7 +493,6 @@ "542038694": "Solo se permite el uso de letras, números, espacios, guión bajo y guiones para {{label}}.", "542305026": "También debe presentar una prueba de identidad.", "543413346": "No tiene posiciones abiertas para este activo. Para ver las posiciones abiertas, haga clic en Ir a Informes", - "545476424": "Total de retiros", "547029855": "Si selecciona esta función, puede cancelar su operación dentro de un plazo elegido si el precio del activo se mueve en contra de su favor. Recuperará su inversión sin pérdidas ni ganancias. Cobramos una pequeña comisión por ello. Take profit y el stop loss se desactivan cuando la opción de cancelación de la operación está activa.", "549479175": "Multipliers de Deriv", "549799607": "Ir a LiveChat", @@ -628,6 +621,7 @@ "665777772": "XLM/USD", "665872465": "En el siguiente ejemplo, se selecciona el precio de apertura, que luego se asigna a una variable llamada \"op\".", "666724936": "Por favor, ingrese un número de ID válido.", + "669494711": "1,4 pips", "671630762": "Solo aceptamos estos tipos de documentos como prueba de su dirección. El documento debe ser reciente (expedido en los últimos {{expiry_in_months}} meses) e incluir su nombre y dirección:", "672008428": "ZEC/USD", "673915530": "Jurisdicción y legislación elegida", @@ -693,7 +687,6 @@ "721011817": "- Eleve el primer número a la potencia del segundo número", "723045653": "Accederás a tu cuenta de Deriv con esta dirección de correo electrónico.", "723961296": "Administrar contraseña", - "724203548": "Puede enviar su queja a la plataforma de <0>Resolución de disputas en línea de la Comisión Europea (ODR). Esto no se aplica a los clientes del Reino Unido.", "724526379": "Obtenga más información con nuestros tutoriales", "728042840": "Para continuar operando con nosotros, por favor confirme dónde vive.", "728824018": "Índice español", @@ -726,7 +719,6 @@ "755138488": "No podemos verificar el documento que proporcionó porque contiene marcas o texto que no debería estar en su documento. Proporcione una foto clara o un escaneo de su documento de identidad original.", "756152377": "La SMA da igual peso a toda la distribución de valores.", "758003269": "crear una lista de texto", - "759783233": "Para obtener más información y asistencia sobre los servicios de asesoramiento y apoyo, visite <0>begambleaware.org .", "760528514": "Tenga en cuenta que cambiar el valor de \"i\" no cambiará el valor del elemento original en la lista", "761576760": "Financie su cuenta para comenzar a operar.", "762926186": "Una estrategia rápida es una estrategia ya construida que puede utilizar en Deriv Bot. Hay 3 estrategias rápidas entre las que puede elegir: Martingale, D'Alembert y Oscar's Grind.", @@ -1105,7 +1097,6 @@ "1128404172": "Deshacer", "1129124569": "Si selecciona \"Under\", ganará el pago si el último dígito del último tick es menor a su predicción.", "1129842439": "Por favor, inserte la cantidad de take profit.", - "1130744117": "Intentaremos resolver su queja dentro de 10 días hábiles. Le informaremos sobre el resultado junto con una explicación de nuestra posición y la proposición de las medidas correctivas que tengamos la intención de tomar.", "1130791706": "N", "1133651559": "Chat en vivo", "1134879544": "Ejemplo de un documento con reflejo", @@ -1274,7 +1265,6 @@ "1304083330": "copiar", "1304272843": "Envíe su prueba de domicilio.", "1304620236": "Habilitar cámara", - "1304788377": "<0/><1/>Si su queja se refiere a nuestras prácticas de procesamiento de datos, puede presentar una queja formal al <2>Comisionado de Protección de Datos e Información (Malta) en su sitio web o presentar una queja a cualquier autoridad de supervisión dentro de la Unión Europea.", "1305217290": "Suba el reverso de su documento de identidad.", "1308625834": "Establece el intervalo de tiempo por defecto para los bloques que leen la lista de velas.", "1309017029": "Habilitar esto le permite guardar sus bloques como una colección que se puede integrar fácilmente en otros bots.", @@ -1512,6 +1502,7 @@ "1531017969": "Crea una sola cadena de texto combinando el valor de texto de cada elemento adjunto, sin espacios entre ellos. El número de elementos se puede agregar como corresponda.", "1533177906": "Fall", "1534796105": "Obtiene un valor de variable", + "1537192641": "No se puede procesar su solicitud", "1537711064": "Debe realizar una rápida verificación de identidad antes de poder acceder al Cajero. Vaya a la configuración de su cuenta para presentar su prueba de identidad.", "1540585098": "Rechazar", "1541508606": "¿Busca CFD? Vaya al Trader's Hub", @@ -1562,7 +1553,6 @@ "1594147169": "Por favor regrese en", "1594322503": "Venta disponible", "1595295238": "3. Utilice un bloque lógico para comprobar si la Ganancia/pérdida total es superior al importe del umbral de Stop loss. Puede encontrar la variable Ganancia/pérdida total en Análisis > Estadísticas en el menú Bloques de la izquierda. Su bot continuará comprando nuevos contratos hasta que el importe Ganancia/pérdida total supere el importe del umbral de Stop loss.", - "1596378630": "Ha agregado una cuenta de juego real. <0/>Realice un depósito ahora para comenzar a operar.", "1597672660": "Contraseña de Deriv MT5", "1598009247": "<0>a. Puede presentar una queja ante la Comisión Financiera hasta 45 días después del incidente.", "1598386296": "Se requiere Pueblo/Ciudad.", @@ -1730,7 +1720,6 @@ "1763123662": "Suba su recibo de NIMC.", "1766212789": "El mantenimiento del servidor comienza a las 06:00 GMT todos los domingos y puede durar hasta 2 horas. Es posible que experiembete una interrupción del servicio durante este tiempo.", "1766993323": "Se permiten solo letras, números y guiones bajos.", - "1767429330": "Agregar una cuenta Derivada", "1768293340": "Valor del contrato", "1768861315": "Minuto", "1768918213": "Se permite solo el uso de letras, espacios, guiones, puntos y apóstrofes.", @@ -1744,6 +1733,7 @@ "1779144409": "Se requiere la verificación de la cuenta", "1779519903": "Debe ser un número válido.", "1779801832": "Por favor, actualice su contraseña.", + "1779872677": "Descargar libro electrónico", "1780442963": "Escanee el código QR para descargar {{ platform }}.", "1780770384": "Este bloque le da una fracción aleatoria entre 0.0 a 1.0.", "1782308283": "Estrategia rápida", @@ -1754,7 +1744,6 @@ "1783740125": "Suba un selfie", "1785298924": "Fórmula D'Alembert 1", "1786644593": "Formatos admitidos: Solo JPEG, JPG, PNG, PDF y GIF", - "1787135187": "Se requiere código postal", "1787492950": "Los indicadores en la pestaña de gráficos son únicamente referenciales y pueden variar ligeramente de los del espacio de trabajo de {{platform_name_dbot}}.", "1788515547": "<0/>Para obtener más información sobre cómo presentar una queja ante la Oficina del Árbitro de Servicios Financieros, por favor <1>consulte la guía.", "1788966083": "01-07-1999", @@ -1820,7 +1809,6 @@ "1850031313": "- Bajo: el precio más bajo", "1850132581": "País no encontrado", "1850659345": "- Pago: el pago del contrato", - "1850663784": "Enviar pruebas", "1851052337": "Se requiere lugar de nacimiento.", "1851776924": "upper", "1854480511": "El cajero está bloqueado", @@ -1837,7 +1825,6 @@ "1865525612": "No hay transacciones recientes.", "1866244589": "El punto de entrada es el primer tick para High/Low Ticks.", "1866811212": "Deposite en su moneda local a través de un agente de pago independiente autorizado en su país.", - "1866836018": "<0/><1/> Si su queja se relaciona con nuestras prácticas de procesamiento de datos, puede enviar una queja formal a su autoridad de control local.", "1867217564": "El índice debe ser un número entero positivo", "1867783237": "High-to-Close", "1869315006": "Vea cómo protegemos sus fondos para desbloquear el cajero.", @@ -1848,7 +1835,6 @@ "1871377550": "¿Ofrecen bots de operación pre-construidos en Deriv Bot?", "1871664426": "Nota", "1873376454": "Se trata de un nivel de precios que usted elige. Si alguna vez se cruza esta barrera, su contrato quedaría rescindido.", - "1873838570": "Por favor verifique su dirección", "1874481756": "Use este bloque para comprar el contrato específico que desea. Puede agregar varios bloques de compra junto con bloques condicionales para definir sus condiciones de compra. Este bloque solo se puede usar dentro del bloque Condiciones de compra.", "1874756442": "BVI", "1875702561": "Cargue o cree su bot", @@ -1890,7 +1876,6 @@ "1906213000": "Nuestro sistema terminará cualquier operación de Deriv Bot que esté en curso, y Deriv Bot no colocará ninguna nueva operación.", "1906639368": "Si es la primera vez que intenta crear una contraseña, o si la ha olvidado, reiníciela.", "1907423697": "Gane más con Deriv API", - "1907884620": "Agregue una cuenta real de juegos de Deriv", "1908023954": "Lo sentimos, ha ocurrido un error al procesar su solicitud.", "1908239019": "Asegúrese de que todo el documento esté en la foto", "1908686066": "Advertencia sobre la prueba de idoneidad", @@ -1993,7 +1978,6 @@ "2001222130": "Revise su carpeta de correo no deseado o basura. Si no está allí, intente reenviar el correo electrónico.", "2001361785": "1. Comience con la inversión inicial. Digamos 1 USD.", "2004052487": "Estimación de la vida útil de sus operaciones", - "2004792696": "Si es residente del Reino Unido, para autoexcluirse de todas las empresas de juegos online con licencia en Gran Bretaña, visite <0>www.gamstop.co.uk.", "2007028410": "mercado, tipo de operación, tipo de contrato", "2010759971": "Subido con éxito", "2010866561": "Devuelve la ganancia/pérdida total", @@ -2073,7 +2057,6 @@ "2085387371": "Deben ser números, letras y caracteres especiales. , '-", "2085602195": "- Valor de entrada: el valor del primer tick del contrato", "2086048243": "Certificado de incorporación", - "2086742952": "Ha agregado una cuenta real de opciones. <0/> Realice un depósito ahora para comenzar a operar.", "2086792088": "Ambas barreras deben ser relativas o absolutas", "2088735355": "Su sesión y límites de inicio de sesión", "2089087110": "Cesta de índices", @@ -2281,7 +2264,6 @@ "-1699820408": "Ingrese un {{field_name}} con menos de {{max_number}} caracteres.", "-1575567374": "código postal", "-816263501": "Utilice solo letras, números, espacios, y guiones.", - "-1497654315": "Nuestras cuentas y servicios no están disponibles para el código postal de Jersey.", "-755626951": "Complete sus datos personales", "-1024240099": "Dirección", "-1534917661": "Seleccione su divisa preferida", @@ -2348,6 +2330,7 @@ "-1458676679": "Debería ingresar de 2 a 50 caracteres.", "-1116008222": "Debe introducir entre 9 y 35 números.", "-1995979930": "Se requiere la primera línea de dirección.", + "-703454156": "Introduzca un código postal de menos de 20 caracteres.", "-2113555886": "Se permiten solo letras, números, espacios y guiones.", "-1103497546": "Declaración de impuestos", "-700600899": "Comprobante de domicilio comercial", @@ -2499,7 +2482,6 @@ "-1545823544": "7 días", "-180147209": "Se cerrará automáticamente la sesión de cada sesión después de este límite de tiempo.", "-374553538": "Su cuenta estará excluida del sitio web hasta esta fecha (al menos 6 meses, hasta 5 años).", - "-2121421686": "Para autoexcluirse de todas las empresas de juegos online con licencia en Gran Bretaña, diríjase a <0>www.gamstop.co.uk .", "-2105708790": "El saldo máximo de su cuenta y posiciones abiertas", "-1960600163": "Una vez que el saldo de su cuenta alcance esta cantidad, no podrá depositar fondos en su cuenta.", "-1073845224": "No. de posiciones abiertas", @@ -2653,6 +2635,7 @@ "-1728732301": "Inicio de sesión sin esfuerzo con claves de acceso", "-684009726": "Editar clave de acceso", "-1140319320": "Su cuenta está ahora protegida con una clave de acceso.<0/>Gestione su clave de acceso a través de la configuración de su cuenta Deriv<0/>.", + "-1036903080": "Estamos teniendo un problema temporal al procesar tu solicitud. Vuelva a intentarlo más tarde.", "-331060101": "Falló la configuración de la Passkey", "-713875531": "Habilite el bluetooth.", "-80717068": "Aplicaciones que ha vinculado a su <0>contraseña de Deriv:", @@ -2710,6 +2693,10 @@ "-145462920": "Deriv cTrader", "-1210359945": "Transferir fondos a sus cuentas", "-81256466": "Necesita una cuenta Deriv para crear una cuenta de CFD.", + "-1926387364": "Le hemos enviado el libro electrónico a su correo electrónico. También puede descargarlo aquí.", + "-1057002564": "<0>No podemos actualizarle a Billeteras en este momento y estamos trabajando para solucionarlo lo antes posible. Por favor <1>inténtelo de nuevo<0>.", + "-1424352390": "<0>Wallets<1>: una forma más inteligente de administrar sus fondos", + "-280236366": "Habilitar ahora", "-699372497": "Opere con apalancamiento y spreads ajustados para obtener mejores rendimientos en operaciones exitosas. <0>Saber más", "-982095728": "Obtener", "-1790089996": "NUEVO!", @@ -2733,13 +2720,10 @@ "-2055865877": "Reglamento extracomunitario", "-643108528": "Regulación comunitario y extracomunitario", "-1002556560": "No hemos podido completar la actualización con la Wallet. Por favor, inténtelo de nuevo más tarde o póngase en contacto con nosotros a través de Live Chat.", - "-280236366": "Habilitar ahora", "-2051096382": "Obtenga una variedad de pagos al predecir correctamente los movimientos del mercado con <0>las opciones, o saque provecho de los CFD sin arriesgar más de lo que apostó inicialmente con los <1>multipliers.", "-1638358352": "Aproveche las ventajas de los CFD sin arriesgar más de su inversión con <0>Multipliers.", "-744999940": "Cuenta Deriv", "-749129977": "Obtenga una cuenta real Deriv, comience a operar y administre sus fondos.", - "-1057002564": "<0>No podemos actualizarle a Billeteras en este momento y estamos trabajando para solucionarlo lo antes posible. Por favor <1>inténtelo de nuevo<0>.", - "-1424352390": "<0>Wallets<1>: una forma más inteligente de administrar sus fondos", "-2146691203": "Elección del reglamento", "-249184528": "Puede crear cuentas reales según la normativa comunitaria o extracomunitaria. Haga clic en el <0><0/>icono para obtener más información sobre estas cuentas.", "-1505234170": "Tour por el Trader's Hub", @@ -2860,7 +2844,6 @@ "-1949883551": "Solo tiene una cuenta", "-1149845849": "Volver al Trader's Hub", "-1232852916": "Estamos cambiando a su cuenta {{currency}} para ver la transacción.", - "-759000391": "No pudimos verificar su información automáticamente. Para habilitar esta función, debe completar lo siguiente:", "-1632668764": "Acepto", "-544232635": "Diríjase a la página Depósito para generar una dirección. Luego regrese aquí para continuar con su transacción.", "-1161069724": "Copie la dirección criptográfica que vea a continuación. La necesitará para depositar su criptomoneda.", @@ -3267,7 +3250,6 @@ "-821418875": "Trader", "-679102561": "Detalles del contrato", "-430118939": "Política de quejas", - "-568280383": "Juegos en Deriv", "-1308346982": "Derivada", "-579984289": "Derivada demo", "-1596515467": "Derivada BVI", @@ -3390,7 +3372,6 @@ "-689237734": "Continuar", "-1642457320": "Centro de ayuda", "-1966944392": "Estado de la red: {{status}}", - "-594209315": "Los índices sintéticos en la UE son ofrecidos por {{legal_entity_name}}, W Business Center, Nivel 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, con licencia y regulada por la Autoridad de Juegos de Malta (<0>licencia núm. MGA/B2C/102/2000) y por los Comisarios de Ingresos para clientes en Irlanda (<2>licencia nº 1010285).", "-181484419": "Trading responsable", "-650505513": "Pantalla completa", "-1823504435": "Ver notificaciones", @@ -3400,8 +3381,8 @@ "-1496158755": "Ir a Deriv.com", "-1323441180": "Confirmo que mi solicitud de apertura de cuenta en Deriv para operar productos OTC emitidos y ofrecidos exclusivamente fuera de Brasil fue iniciada por mí. Entiendo plenamente que Deriv no está regulada por la CVM y al dirigirme a Deriv pretendo establecer una relación con una empresa extranjera.", "-1396326507": "Lamentablemente, {{website_name}} no está disponible en su país.", - "-1019903756": "Sintética", "-288996254": "No disponible", + "-1019903756": "Sintética", "-735306327": "Gestionar cuentas", "-1813972756": "La creación de la cuenta se detuvo por 24 horas", "-366030582": "Lo sentimos, no puede crear una cuenta en este momento. Dado que ha rechazado nuestras anteriores advertencias de riesgo, necesitamos que espere 24 horas después de su primer intento de creación de cuenta para poder continuar.<0/><0/>", @@ -3424,9 +3405,6 @@ "-175638343": "Elija una cuenta o agregue una nueva", "-1768223277": "Su cuenta esta lista", "-1215717784": "<0>Ha cambiado su moneda con éxito a {{currency}}. <0>Haga un depósito ahora para comenzar a operar. ", - "-786091297": "Opere en demo", - "-228099749": "Verifique su identidad y dirección", - "-1041852744": "Estamos procesando su información personal", "-1775006840": "Haga un depósito ahora para comenzar a operar.", "-983734304": "Necesitamos su prueba de identidad y domicilio antes de que pueda comenzar a operar.", "-917733293": "Para comenzar a operar, confirme dónde vive.", @@ -3434,7 +3412,6 @@ "-952649119": "Iniciar sesión", "-3815578": "Crear Cuenta", "-1456176427": "Establezca una moneda para su cuenta real", - "-1557011219": "Agregue una cuenta real de opciones Deriv", "-241733171": "Agregue una cuenta Financiera de Deriv", "-1329687645": "Cree una cuenta de criptomonedas", "-1429178373": "Crear una cuenta nueva", @@ -3471,14 +3448,10 @@ "-2142491494": "Vale, entendido", "-611136817": "Cuidado con los enlaces falsos.", "-1342699195": "Ganancia/pérdida total:", - "-943710774": "Esta política de quejas, que puede cambiar de vez en cuando, se aplica a su cuenta registrada con {{legal_entity_name}}, que tiene su domicilio social en Primer Piso, Millennium House, Victoria Road, Douglas, Isla de Man, IM2 4RW, licenciada y regulada respectivamente por (1) la Comisión de Supervisión del Juego en la Isla de Man (<0>licencia vigente emitida el 31 de agosto de 2017) y (2) la Comisión del Juego en el Reino Unido (<1>licencia no. 39172).", - "-255056078": "Esta política de quejas, que puede cambiar de vez en cuando, se aplica a su(s) cuenta(s) registrada(s) con {{legal_entity_name}}, que tiene su domicilio social en W Business Center, Nivel 3, Triq Dun Karm, Birkirkara, BKR 9033, Malta, licenciado y regulado por la Autoridad de Juegos de Malta en Malta solo para productos de juego, <0>licencia núm. MGA/B2C/102/2000, y para clientes que residen en el Reino Unido por la Comisión de Juegos del Reino Unido (cuenta número 39495).", "-1941013000": "Esta política de quejas, que puede cambiar de vez en cuando, se aplica a su(s) cuenta(s) registrada(s) con {{legal_entity_name_svg}}, {{legal_entity_name_fx}} y {{legal_entity_name_v}}.", "-594812204": "Esta política de quejas, que puede cambiar de vez en cuando, se aplica a su(s) cuenta(s) registrada(s) con {{legal_entity_name_svg}}.", "-813256361": "Estamos comprometidos a tratar a nuestros clientes de forma justa y a proporcionarles un servicio excelente.<0/><1/>Nos encantaría saber cómo podemos mejorar los servicios que le brindamos. Cualquier información que nos proporcione será tratada con la más estricta confidencialidad. Tenga la seguridad de que será escuchado, valorado y tratado siempre de manera justa.", "-1622847732": "Si tiene alguna pregunta sobre su cuenta de trading con {{legal_entity_name}}, puede contactarnos a través de nuestro <0>Centro de ayuda o chateando con un representante a través del <1>Live Chat. <2/> <3/> Estamos comprometidos a resolver su consulta en el menor tiempo posible y agradecemos su paciencia para resolver el problema. <4/> <5/> Nos esforzamos por ofrecer el mejor servicio y soporte posibles a nuestros clientes. Sin embargo, en caso de que no podamos resolver su consulta o si considera que nuestra respuesta no es satisfactoria, nos gustaría escucharle. Le damos la bienvenida y lo animamos a que nos presente un reclamo oficial para que podamos revisar sus inquietudes y trabajar para resolverlas.", - "-1639808836": "Si no está satisfecho con el resultado, puede elevar su queja al <0>Servicio Independiente de Adjudicación de Apuestas (IBAS) completando el formulario de adjudicación de IBAS. Tenga en cuenta que IBAS solo se ocupa de las disputas que resultan de transacciones.", - "-1505742956": "<0/><1/>También puede remitir su disputa a la Autoridad de Juegos de Malta a través de la <2>Unidad de asistencia al jugador.", "-1406192787": "Si no está satisfecho con el resultado, puede elevar su queja a la <0>Comisión Financiera.", "-1776547326": "<0/><1/>Si reside en el Reino Unido y no está satisfecho con nuestra respuesta, puede elevar su reclamo al <2>Servicio del Intermediario Financiero.", "-2115348800": "1. Introducción", @@ -3561,7 +3534,6 @@ "-1969608084": "Forex y Criptomonedas", "-800771713": "Labuan Financial Services Authority (licencia nº MB/18/0024)", "-1497128311": "80+", - "-1501230046": "0.6 pips", "-1689815930": "Deberá presentar prueba de identidad y de domicilio cuando haya alcanzado ciertos umbrales.", "-1175785439": "Deriv (SVG) LLC (número de empresa 273 LLC 2020)", "-139026353": "Una selfie de ud mismo.", @@ -4102,7 +4074,6 @@ "-1750896349": "D'Alembert", "-102980621": "La estrategia Oscar's Grind es una estrategia de progresión positiva de bajo riesgo que apareció por primera vez en 1965. Al usar esta estrategia, el tamaño de su contrato aumentará después de las operaciones exitosas, pero se mantiene sin cambios después de las operaciones fallidas.", "-462715374": "Bot sin título", - "-538215347": "Depósitos netos", "-280147477": "Todas las transacciones", "-137444201": "Comprar", "-130601012": "Por favor, seleccione la duración", diff --git a/packages/translations/src/translations/fr.json b/packages/translations/src/translations/fr.json index 97a9efcc3d03..d779d4bd71bb 100644 --- a/packages/translations/src/translations/fr.json +++ b/packages/translations/src/translations/fr.json @@ -1,5 +1,4 @@ { - "1014140": "Vous pouvez également appeler le <0>+447723580049 pour soumettre votre réclamation.", "1485191": "1:1000", "2082741": "numéro de document supplémentaire", "2091451": "Deriv Bot : votre partenaire de trading automatisé", @@ -205,12 +204,10 @@ "218441288": "Numéro de carte d'identité", "220014242": "Télécharger un selfie depuis votre ordinateur", "220186645": "Le texte est vide", - "220232017": "CFD démo", "221261209": "Un compte Deriv vous permettra de déposer sur (et de retirer) des fonds de votre (vos)\n compte(s) CFD.", "223120514": "Dans cet exemple, chaque point de la ligne SMA est une moyenne arithmétique des prix de clôture des 50 derniers jours.", "223607908": "Statistiques du dernier chiffre pour les 1000 derniers ticks pour {{underlying_name}}", "224650827": "IOT/USD", - "224929714": "Les paris basés sur des événements virtuels au Royaume-Uni et sur l'île de Man sont proposés par {{legal_entity_name}}, Millennium House, Level 1, Victoria Road, Douglas IM2 4RW, île de Man, agréé et réglementé en Grande-Bretagne par la Gambling Commission sous le <0>compte n° 39172 et par la Gambling Supervision Commission sur l'île de Man (<1>voir licence).", "225887649": "Ce bloc est obligatoire. Il est ajouté à votre stratégie par défaut lorsque vous créez une nouvelle stratégie. Vous ne pouvez pas ajouter plus d'une copie de ce bloc au canevas.", "227591929": "Pour horodater {{ input_datetime }} {{ dummy }}", "227903202": "Nous facturons des frais de transfert de 1% pour les transferts dans des devises différentes entre vos comptes Deriv fiat et {{platform_name_mt5}}.", @@ -262,7 +259,6 @@ "273728315": "Ne doit pas être 0 ou vide", "274268819": "Indice Volatility 100", "275116637": "Deriv X", - "276639155": "Veuillez saisir un code postal/ZIP de moins de 20 caractères.", "276770377": "De nouveaux comptes MT5 sous la juridiction de {{to_account}} seront créés pour les nouvelles transactions.", "277469417": "Le temps d'exclusion ne peut pas être supérieur à cinq ans.", "278684544": "obtenir la sous-liste de # à partir de la fin", @@ -271,7 +267,6 @@ "282319001": "Vérifiez votre image", "282564053": "Nous aurons ensuite besoin de votre justificatif de domicile.", "283830551": "Votre adresse ne correspond pas à votre profil", - "283986166": "L'auto-exclusion sur le site web s’applique seulement à votre compte {{brand_website_name}} et ne comprend pas les autres entreprises ou sites web.", "284527272": "contraire", "284772879": "Contrat", "284809500": "Démo financière", @@ -376,7 +371,6 @@ "401339495": "Vérifier l'adresse", "401345454": "Pour ce faire, rendez-vous dans l'onglet Tutoriels.", "403456289": "La formule pour SMA est la suivante:", - "404743411": "Dépôts Totaux", "406359555": "Détails du contrat", "406497323": "Vendez votre contrat actif si nécessaire (facultatif)", "411482865": "Ajouter un compte {{deriv_account}}", @@ -468,11 +462,11 @@ "502041595": "Ce bloc vous donne une bougie spécifique dans l'intervalle de temps sélectionné.", "505793554": "dernière lettre", "508390614": "Demo Financier STP", - "510815408": "Lettres, chiffres, espaces, traits d'union uniquement", "511679687": "Les Accumulators vous permettent d'exprimer une opinion sur l'amplitude des mouvements d'un indice et de faire croître votre mise de manière exponentielle à un <0>taux de croissance fixe.", "514031715": "la liste {{ input_list }} est vide", "514776243": "Votre mot de passe {{account_type}} a été modifié.", "514948272": "Copier le lien", + "517631043": "Nous avons envoyé votre e-book. Vérifiez votre courrier électronique pour le télécharger.", "517833647": "Indice Volatility 50 (1s)", "518955798": "7. Exécuter une fois au démarrage", "519205761": "Vous ne pouvez plus ouvrir de nouvelles positions sur ce compte.", @@ -499,7 +493,6 @@ "542038694": "Seuls les lettres, chiffres, espaces, tirets bas et traits d'union sont autorisés pour {{label}}.", "542305026": "Vous devez également présenter une preuve d'identité.", "543413346": "Vous n'avez aucune position ouverte pour cet actif. Pour afficher d'autres positions ouvertes, cliquez sur Aller aux rapports", - "545476424": "Retraits Totaux", "547029855": "Si vous sélectionnez cette option, vous pouvez annuler votre transaction dans un délai donné si le prix de l'actif évolue en votre défaveur. Vous pourrez récupérer votre mise sans profit/perte. Nous facturons des frais minimes pour cette opération. Le take profit et le stop loss sont désactivés lorsque l'annulation d'une transaction est activée.", "549479175": "Multipliers Deriv", "549799607": "Accéder à LiveChat", @@ -628,6 +621,7 @@ "665777772": "XLM/USD", "665872465": "Dans l'exemple ci-dessous, le prix d'ouverture est sélectionné, qui est ensuite affecté à une variable appelée \"op\".", "666724936": "Veuillez saisir un numéro d'identification valide.", + "669494711": "1,4 pips", "671630762": "Nous n'acceptons que ces types de documents comme preuve de votre adresse. Le document doit être récent (délivré au cours des {{expiry_in_months}} derniers mois) et inclure votre nom et votre adresse :", "672008428": "ZEC/USD", "673915530": "Compétence et choix de la loi", @@ -693,7 +687,6 @@ "721011817": "- Élever le premier nombre à la puissance du deuxième nombre", "723045653": "Vous vous connecterez à votre compte Deriv avec cette adresse e-mail.", "723961296": "Paramétrer le mot de passe", - "724203548": "Vous pouvez envoyer votre plainte à la <0>plate-forme de règlement en ligne des litiges (RLL) de la Commission européenne. Cela ne s'applique pas aux clients britanniques.", "724526379": "Apprenez-en plus grâce à nos tutoriels", "728042840": "Pour continuer à trader avec nous, veuillez confirmer votre lieu de résidence.", "728824018": "Indice Espagne", @@ -726,7 +719,6 @@ "755138488": "Nous ne parvenons pas à vérifier le document que vous avez fourni, car il contient des marques ou du texte qui ne devraient pas figurer sur votre document. Veuillez fournir une photo nette ou numérisez votre pièce d'identité originale.", "756152377": "SMA accorde un poids égal à l'ensemble de la distribution des valeurs.", "758003269": "créer une liste à partir du texte", - "759783233": "Pour plus d’informations et d’aide aux services de conseil et de soutien, veuillez visiter <0>begambleaware.org.", "760528514": "Veuillez noter que la modification de la valeur de \"i\" ne modifiera pas la valeur de l'élément d'origine dans la liste", "761576760": "Financez votre compte pour commencer à trader.", "762926186": "Une stratégie rapide est une stratégie prête à l'emploi que vous pouvez utiliser sur Deriv Bot. Vous avez le choix entre 3 stratégies rapides : Martingale, D'Alembert et Oscar's Grind.", @@ -1105,7 +1097,6 @@ "1128404172": "Annuler", "1129124569": "Si vous sélectionnez \"Under\", vous gagnerez le paiement si le dernier chiffre du dernier tick est inférieur à votre prédiction.", "1129842439": "Veuillez saisir un montant de profit.", - "1130744117": "Nous essaierons de résoudre votre réclamation dans les 10 jours ouvrables. Nous vous informerons du résultat avec une explication de notre position et vous proposerons les mesures correctives que nous avons l'intention de prendre.", "1130791706": "N", "1133651559": "Chat en direct", "1134879544": "Exemple de document avec reflets", @@ -1274,7 +1265,6 @@ "1304083330": "copier", "1304272843": "Veuillez envoyer votre justificatif de domicile.", "1304620236": "Activer la caméra", - "1304788377": "<0/><1/> Si votre plainte concerne nos pratiques de traitement des données, vous pouvez déposer une plainte officielle auprès du <2>Commissaire à l’information et à la protection des données (Malte) sur son site Web ou déposer une plainte autorité de contrôle au sein de l’Union européenne.", "1305217290": "Téléchargez le verso de votre carte d'identité.", "1308625834": "Définit l'intervalle de temps par défaut pour les blocs qui lisent la liste des bougies.", "1309017029": "L'activation de cette option vous permet d'enregistrer vos blocs en une seule collection qui peut être facilement intégrée dans d'autres robots.", @@ -1512,6 +1502,7 @@ "1531017969": "Crée une chaîne de texte unique à partir de la combinaison de la valeur de texte de chaque élément attaché, sans espaces entre les deux. Le nombre d'articles peut être ajouté en conséquence.", "1533177906": "Fall", "1534796105": "Obtient une valeur variable", + "1537192641": "Impossible de traiter votre demande", "1537711064": "Vous devez procéder à une vérification rapide de votre identité avant de pouvoir accéder à la caisse. Veuillez vous rendre dans les paramètres de votre compte pour soumettre votre document d'identité.", "1540585098": "Refuser", "1541508606": "Vous recherchez des CFD ? Accédez au Trader's Hub", @@ -1562,7 +1553,6 @@ "1594147169": "Veuillez revenir dans", "1594322503": "Vendre est disponible", "1595295238": "3. Utilisez un bloc logique pour vérifier si le total des profits/pertes est supérieur au seuil de Stop Loss. Vous trouverez la variable total des profits/pertes sous Analyse > Statistiques dans le menu Blocs à gauche. Votre robot continuera à acheter de nouveaux contrats jusqu'à ce que le montant total des profits/pertes dépasse le seuil de Stop Loss.", - "1596378630": "Vous avez ajouté un compte de Jeu réel.<0/>Faites un dépôt maintenant pour commencer à trader.", "1597672660": "Mot de passe Deriv MT5", "1598009247": "<0>a. Vous pouvez déposer une plainte auprès de la Commission financière jusqu'à 45 jours après l'incident.", "1598386296": "La ville est obligatoire.", @@ -1730,7 +1720,6 @@ "1763123662": "Téléchargez votre NIMC.", "1766212789": "La maintenance du serveur commence à 06h00 GMT tous les dimanches et peut durer jusqu'à 2 heures. Vous risquez de subir une interruption de service pendant cette période.", "1766993323": "Seuls les lettres, les chiffres et les traits de soulignement sont autorisés.", - "1767429330": "Ajouter un compte Derivés", "1768293340": "Valeur du contrat", "1768861315": "Minute", "1768918213": "Seuls les lettres, espace, trait d'union, point et apostrophe sont autorisés.", @@ -1744,6 +1733,7 @@ "1779144409": "Vérification du compte requise", "1779519903": "La saisie doit être un nombre valide.", "1779801832": "Veuillez mettre à jour votre mot de passe en conséquence.", + "1779872677": "Télécharger le e-book", "1780442963": "Scannez le QR code pour télécharger {{ platform }}.", "1780770384": "Ce bloc vous donne une fraction aléatoire entre 0,0 et 1,0.", "1782308283": "Stratégie rapide", @@ -1754,7 +1744,6 @@ "1783740125": "Téléchargez votre selfie", "1785298924": "Formule D'Alembert n° 1", "1786644593": "Formats pris en charge : JPEG, JPG, PNG, PDF et GIF uniquement", - "1787135187": "Code Postal requis", "1787492950": "Les indicateurs de l'onglet graphique sont à titre indicatif uniquement et peuvent légèrement différer de ceux de l'espace de travail {{platform_name_dbot}}.", "1788515547": "<0/>Pour plus d'informations sur le dépôt d'une plainte auprès du Bureau de l'arbitre des services financiers, veuillez <1>consulter ses directives.", "1788966083": "01-07-1999", @@ -1820,7 +1809,6 @@ "1850031313": "- Bas: le prix le plus bas", "1850132581": "Pays introuvable", "1850659345": "- Paiement: le paiement du contrat", - "1850663784": "Soumettre les documents", "1851052337": "Le lieu de naissance est obligatoire.", "1851776924": "supérieur", "1854480511": "Caisse verrouillée", @@ -1837,7 +1825,6 @@ "1865525612": "Aucune transaction récente.", "1866244589": "Le point d'entrée est le premier tick pour les High/Low Ticks.", "1866811212": "Effectuez un dépôt dans votre devise locale via un agent de paiement agréé et indépendant dans votre pays.", - "1866836018": "<0/><1/> Si votre réclamation concerne nos pratiques de traitement des données, vous pouvez déposer une réclamation formelle auprès de votre autorité de contrôle locale.", "1867217564": "L'index doit être un entier positif", "1867783237": "High-to-Close", "1869315006": "Découvrez comment nous protégeons vos fonds pour débloquer la caisse.", @@ -1848,7 +1835,6 @@ "1871377550": "Proposez-vous des robots de trading préconçus sur Deriv Bot ?", "1871664426": "Remarque", "1873376454": "Il s'agit d'un niveau de prix que vous choisissez. Si cette barrière est franchie, votre contrat sera résilié.", - "1873838570": "Merci de vérifier votre adresse", "1874481756": "Utilisez ce bloc pour acheter le contrat spécifique que vous souhaitez. Vous pouvez ajouter plusieurs blocs d'achat ainsi que des blocs conditionnels pour définir vos conditions d'achat. Ce bloc ne peut être utilisé que dans le bloc Conditions d'achat.", "1874756442": "BVI", "1875702561": "Chargez ou créez votre robot", @@ -1890,7 +1876,6 @@ "1906213000": "Notre système clôturera toutes les transactions Deriv Bot en cours, et Deriv Bot ne placera pas de nouvelles transactions.", "1906639368": "Si c'est la première fois que vous essayez de créer un mot de passe, ou si vous avez oublié votre mot de passe, veuillez le réinitialiser.", "1907423697": "Gagnez plus avec l'API Deriv", - "1907884620": "Ajouter un compte de Jeu réel Deriv", "1908023954": "Désolé, une erreur s'est produite pendant le traitement de votre demande.", "1908239019": "Assurez-vous que tout le document est sur la photo", "1908686066": "Avertissement relatif au test de pertinence", @@ -1993,7 +1978,6 @@ "2001222130": "Vérifiez votre dossier spam ou indésirable. Si ce n'est pas le cas, essayez de renvoyer l'e-mail.", "2001361785": "1. Supposons que vous commenciez avec une mise initiale de 1 USD.", "2004052487": "Estimation de la durée de vie de vos contrats", - "2004792696": "Si vous résidez au Royaume-Uni, pour vous exclure de toutes les sociétés de jeux en ligne agréées en Grande-Bretagne, rendez-vous sur <0>www.gamstop.co.uk.", "2007028410": "marché, type de trade, type de contrat", "2010759971": "Téléchargements réussis", "2010866561": "Renvoie le total des profits / pertes", @@ -2073,7 +2057,6 @@ "2085387371": "Doit être des chiffres, des lettres et des caractères spéciaux. , '-", "2085602195": "- Valeur d'entrée: la valeur du premier tick du contrat", "2086048243": "Certificat de constitution", - "2086742952": "Vous avez ajouté un compte Options réel.<0/>Faites un dépôt maintenant pour commencer à trader.", "2086792088": "Les deux obstacles doivent être relatifs ou absolus", "2088735355": "Votre session et vos limites de connexion", "2089087110": "Indices de panier", @@ -2281,7 +2264,6 @@ "-1699820408": "Veuillez saisir un {{field_name}} sous {{max_number}} caractères.", "-1575567374": "code postal", "-816263501": "Seuls les lettres, les chiffres, trait d'union et tiret sont autorisés.", - "-1497654315": "Nos comptes et services ne sont pas disponibles pour le code postal de Jersey.", "-755626951": "Complétez vos coordonnées", "-1024240099": "Adresse", "-1534917661": "Sélectionnez votre devise préférée", @@ -2348,6 +2330,7 @@ "-1458676679": "Vous devez saisir 2 à 50 caractères.", "-1116008222": "Vous devez saisir entre 9 à 35 chiffres.", "-1995979930": "La première ligne d'adresse est obligatoire.", + "-703454156": "Veuillez saisir un code postal/ZIP de moins de 20 caractères.", "-2113555886": "Seuls les lettres, les chiffres, trait d'union et tiret sont autorisés.", "-1103497546": "Déclaration d'impôts", "-700600899": "Justificatif d'adresse professionnelle", @@ -2499,7 +2482,6 @@ "-1545823544": "7 jours", "-180147209": "Vous serez automatiquement déconnecté de chaque session après cette limite de temps.", "-374553538": "Votre compte sera exclu du site Web jusqu'à cette date (au moins 6 mois, jusqu'à 5 ans).", - "-2121421686": "Pour vous exclure de toutes les sociétés de jeux d'argent en ligne agréées en Grande-Bretagne, allez sur <0>www.gamstop.co.uk.", "-2105708790": "Le solde maximal de votre compte et les positions ouvertes", "-1960600163": "Une fois que le solde de votre compte atteint ce montant, vous ne pourrez plus déposer de fonds sur votre compte.", "-1073845224": "N° de positions ouvertes", @@ -2653,6 +2635,7 @@ "-1728732301": "Connexion facile à l'aide de passkeys", "-684009726": "Modifier la passkey", "-1140319320": "Votre compte est désormais sécurisé par une passkey. <0/> Gérez votre passkey via<0/>les paramètres de votre compte Deriv.", + "-1036903080": "Nous rencontrons un problème temporaire lors du traitement de votre demande. Veuillez réessayer ultérieurement.", "-331060101": "La configuration de la Passkey a échoué", "-713875531": "Activer le Bluetooth.", "-80717068": "Applications que vous avez associées à votre mot de <0>passe Deriv :", @@ -2710,6 +2693,10 @@ "-145462920": "Deriv cTrader", "-1210359945": "Transférez des fonds sur vos comptes", "-81256466": "Vous avez besoin d'un compte Deriv pour créer un compte CFD.", + "-1926387364": "Nous avons envoyé votre e-book à votre email. Vous pouvez également le télécharger ici.", + "-1057002564": "<0>Nous ne sommes pas en mesure de vous faire passer aux Wallets pour le moment. Par ailleurs, nous faisons notre possible pour résoudre ce problème dans les plus brefs délais. Veuillez <1>réessayer<0>.", + "-1424352390": "<0>Wallets<1> : une façon plus intelligente de gérer vos fonds", + "-280236366": "Activer maintenant", "-699372497": "Tradez avec un effet de levier et des spreads serrés pour obtenir de meilleurs rendements sur les transactions fructueuses. <0>En savoir plus", "-982095728": "Obtenir", "-1790089996": "NOUVEAU!", @@ -2733,13 +2720,10 @@ "-2055865877": "Réglementation hors UE", "-643108528": "Réglementation hors UE et UE", "-1002556560": "Nous n'avons pas pu terminer la mise à niveau du Wallet. Réessayez plus tard ou contactez-nous par chat en direct.", - "-280236366": "Activer maintenant", "-2051096382": "Obtenez une gamme de paiements en prédisant correctement les mouvements du marché grâce aux <0>options ou profitez des avantages des CFD sans risquer plus que votre mise initiale avec les <1>multipliers.", "-1638358352": "Profitez des avantages des CFD sans risquer plus que votre mise initiale grâce aux <0>Multipliers.", "-744999940": "Compte Deriv", "-749129977": "Créez un compte réel sur Deriv, commencez à trader et gérez vos fonds.", - "-1057002564": "<0>Nous ne sommes pas en mesure de vous faire passer aux Wallets pour le moment. Par ailleurs, nous faisons notre possible pour résoudre ce problème dans les plus brefs délais. Veuillez <1>réessayer<0>.", - "-1424352390": "<0>Wallets<1> : une façon plus intelligente de gérer vos fonds", "-2146691203": "Choix de la réglementation", "-249184528": "Vous pouvez créer des comptes réels conformément à la réglementation applicable au sein/hors de l'UE. Cliquez sur l'<0><0/>icône pour en savoir plus sur ces comptes.", "-1505234170": "Visite du Trader's Hub", @@ -2860,7 +2844,6 @@ "-1949883551": "Vous n'avez qu'un seul compte", "-1149845849": "Retour au Trader's Hub", "-1232852916": "Nous passons à votre compte {{currency}} pour consulter la transaction.", - "-759000391": "Nous n'avons pas pu vérifier vos informations automatiquement. Pour activer cette fonction, vous devez effectuer les opérations suivantes:", "-1632668764": "J'accepte", "-544232635": "Veuillez vous rendre sur la page Dépôt pour générer une adresse. Revenez ensuite ici pour poursuivre votre transaction.", "-1161069724": "Veuillez copier l'adresse crypto que vous voyez ci-dessous. Vous en aurez besoin pour déposer votre crypto-monnaie.", @@ -3267,7 +3250,6 @@ "-821418875": "Trader", "-679102561": "Détails du contrat", "-430118939": "Politique de réclamations", - "-568280383": "Deriv Jeu", "-1308346982": "Dérivés", "-579984289": "Derived Démo", "-1596515467": "Derivés BVI", @@ -3390,7 +3372,6 @@ "-689237734": "Continuer", "-1642457320": "Centre d'aide", "-1966944392": "État du réseau: {{status}}", - "-594209315": "Les indices synthétiques dans l'UE sont proposés par {{legal_entity_name}}, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malte, autorisé et réglementé par la Malta Gaming Authority (<0>licence no. MGA/B2C/102/2000) et par les Revenue Commissioners pour les clients en Irlande (<2>licence no. 1010285).", "-181484419": "Trading responsable", "-650505513": "Plein écran", "-1823504435": "Afficher les notifications", @@ -3400,8 +3381,8 @@ "-1496158755": "Allez sur Deriv.com", "-1323441180": "Je confirme par la présente que ma demande d'ouverture d'un compte auprès de Deriv pour y trader des produits OTC émis et offerts exclusivement en dehors du Brésil a été initiée par moi-même. Je comprends parfaitement que Deriv n'est pas réglementé par la Commission brésilienne des valeurs mobilières et des échanges (CVM) et qu'en contactant Deriv, j'ai l'intention d'établir une relation avec une société étrangère.", "-1396326507": "Malheureusement, {{website_name}} n'est pas disponible dans votre pays.", - "-1019903756": "Synthétique", "-288996254": "Indisponible", + "-1019903756": "Synthétique", "-735306327": "Gérer les comptes", "-1813972756": "La création d'un compte est suspendue pendant 24 heures", "-366030582": "Désolé, vous ne pouvez pas créer de compte pour le moment. Comme vous avez décliné nos précédents avertissements de risque, nous vous demandons d'attendre 24 heures après votre première tentative de création de compte avant de pouvoir continuer.<0/><0/>", @@ -3424,9 +3405,6 @@ "-175638343": "Choisissez un compte ou ajoutez-en un nouveau", "-1768223277": "Votre compte est prêt", "-1215717784": "<0>Vous avez réussi à changer votre devise en {{currency}}.<0>Effectuez un dépôt maintenant pour commencer à trader.", - "-786091297": "Trader sur demo", - "-228099749": "Merci de vérifier votre identité et votre adresse", - "-1041852744": "Nous traitons vos informations personnelles", "-1775006840": "Faites un dépôt maintenant pour commencer à trader.", "-983734304": "Nous avons besoin d'un justificatif de votre identité et de votre domicile avant de pouvoir commencer à trader.", "-917733293": "Pour commencer le trading, veuillez confirmer votre lieu de résidence.", @@ -3434,7 +3412,6 @@ "-952649119": "Connexion", "-3815578": "Inscription", "-1456176427": "Choisissez une devise pour votre compte réel", - "-1557011219": "Ajouter un compte réel d'Options Deriv", "-241733171": "Ajouter un compte Deriv Financier", "-1329687645": "Créer un compte de cryptomonnaie", "-1429178373": "Créer un nouveau compte", @@ -3471,14 +3448,10 @@ "-2142491494": "OK, j'ai compris", "-611136817": "Méfiez-vous des faux liens.", "-1342699195": "Total des profits/pertes:", - "-943710774": "Cette politique de réclamation, qui peut changer de temps à autre, s'applique à votre compte enregistré auprès de {{legal_entity_name}}, ayant son siège social au First Floor, Millennium House, Victoria Road, Douglas, Isle of Man, IM2 4RW, sous licence et réglementés respectivement par (1) la Gambling Supervision Commission de l'île de Man (licence <0>actuelle délivrée le 31 août 2017) et (2) la Gambling Commission au Royaume-Uni (<1>licence n ° 39172).", - "-255056078": "Cette politique de réclamation, qui peut être modifiée de temps à autre, s'applique à votre (vos) compte(s) enregistré(s) auprès de {{legal_entity_name}}, dont l'adresse du siège social est W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033, Malte, autorisé et réglementé par la Malta Gaming Authority à Malte pour les produits de jeu uniquement, <0>licence n° MGA/B2C/102/2000, et pour les clients résidant au Royaume-Uni par la UK Gambling Commission (numéro de compte 39495).", "-1941013000": "Cette politique de réclamation, qui peut être modifiée de temps à autre, s'applique à votre (vos) compte(s) enregistré(s) auprès de {{legal_entity_name_svg}}, {{legal_entity_name_fx}} et {{legal_entity_name_v}}.", "-594812204": "Cette politique en matière de réclamation, qui peut être modifiée de temps à autre, s'applique à votre (vos) compte(s) enregistré(s) auprès de {{legal_entity_name_svg}}.", "-813256361": "Nous nous engageons à traiter nos clients de manière équitable et à leur fournir un excellent service. <0/> <1/> Nous aimerions connaître votre opinion sur la façon dont nous pouvons améliorer les services que nous vous offrons. Toutes les informations que vous fournirez seront traitées dans la plus stricte confidentialité. Soyez assuré que vous serez entendu, apprécié et toujours traité équitablement.", "-1622847732": "Si vous avez une question concernant votre compte de trading avec {{legal_entity_name}}, vous pouvez nous contacter via notre <0>centre d'assistance ou en discutant avec un représentant via le <1>chat en direct. <2/> <3/> Nous nous engageons à répondre à votre demande dans les plus brefs délais et vous remercions de votre patience. <4/> <5/> Nous nous efforçons de fournir le meilleur service et la meilleure assistance possibles à nos clients. Toutefois, si nous ne sommes pas en mesure de répondre à votre demande ou si vous estimez que notre réponse n'est pas satisfaisante, n'hésitez pas à nous faire parvenir votre avis. Nous vous invitons et vous encourageons à nous soumettre une plainte officielle afin que nous puissions examiner vos préoccupations et trouver une solution.", - "-1639808836": "Si vous n'êtes pas satisfait du résultat, vous pouvez transmettre votre plainte au <0>Service indépendant d'arbitrage des paris (IBAS) en remplissant le formulaire de décision IBAS. Veuillez noter que IBAS ne traite que les litiges résultant de transactions.", - "-1505742956": "<0/><1/> Vous pouvez également soumettre votre litige à la Malta Gaming Authority via l '<2>Unité d'assistance aux joueurs.", "-1406192787": "Si vous n'êtes pas satisfait du résultat, vous pouvez transmettre votre plainte à la <0>Commission financière.", "-1776547326": "<0/><1/>Si vous résidez au Royaume-Uni et que vous n’êtes pas satisfait de notre réponse, vous pouvez transmettre votre plainte au <2>Financial Ombudsman Service.", "-2115348800": "1. Introduction", @@ -3561,7 +3534,6 @@ "-1969608084": "Forex et Cryptomonnaies", "-800771713": "Autorité des services financiers de Labuan (licence n° MB/18/0024)", "-1497128311": "80+", - "-1501230046": "0,6 pips", "-1689815930": "Vous devrez fournir un document d'identité et un justificatif de domicile une fois que vous aurez atteint certains seuils.", "-1175785439": "Deriv (SVG) LLC (numéro d'entreprise 273 LLC 2020)", "-139026353": "Un selfie de vous.", @@ -4102,7 +4074,6 @@ "-1750896349": "D'Alembert", "-102980621": "La stratégie Oscar's Grind est une stratégie de progression positive à faible risque qui est apparue pour la première fois en 1965. En utilisant cette stratégie, la taille de votre contrat augmentera après des transactions réussies, mais reste inchangée après des transactions infructueuses.", "-462715374": "Bot sans titre", - "-538215347": "Dépôts nets", "-280147477": "Toutes les transactions", "-137444201": "Acheter", "-130601012": "Veuillez sélectionner la durée", diff --git a/packages/translations/src/translations/it.json b/packages/translations/src/translations/it.json index eedfb5ad42b4..ed5efd54d862 100644 --- a/packages/translations/src/translations/it.json +++ b/packages/translations/src/translations/it.json @@ -1,5 +1,4 @@ { - "1014140": "Per presentare un reclamo puoi anche chiamare al numero <0>+447723580049.", "1485191": "1:1000", "2082741": "numero di documento aggiuntivo", "2091451": "Deriv Bot - il tuo partner di trading automatizzato", @@ -205,12 +204,10 @@ "218441288": "Numero della carta d'identità", "220014242": "Carica un selfie dal computer", "220186645": "Il testo è vuoto", - "220232017": "CFD di prova", "221261209": "Un conto Deriv le consentirà di finanziare (e prelevare) i suoi conti CFD.", "223120514": "In questo esempio, ogni punto sulla linea SMA è una media aritmetica dei prezzi di chiusura degli ultimi 50 giorni.", "223607908": "Statistiche ultima cifra per ultimi 1000 tick per {{underlying_name}}", "224650827": "IOT/USD", - "224929714": "Nel Regno Unito e sull'Isola di Man, le scommesse basate su eventi virtuali sono offerte da {{legal_entity_name}}, Millennium House, primo piano, Victoria Road, Douglas IM2 4RW, Isola di Man autorizzata e regolamentata in Gran Bretagna dalla Gambling Commission tramite <0>n. di conto 39172 e dalla Gambling Supervision Commission nell'Isola di Man (<1>vedi licenza).", "225887649": "Questo blocco è obbligatorio e viene automaticamente aggiunto alla tua strategia quando ne crei una nuova. Non è possibile aggiungere più di una copia di questo blocco all'area di disegno.", "227591929": "Marca temporale {{ input_datetime }} {{ dummy }}", "227903202": "Verrà addebitata una commissione dell'1% per i trasferimenti in valute diverse tra i conti Deriv con valuta Fiat e {{platform_name_mt5}}.", @@ -244,7 +241,7 @@ "260393332": "Non puoi effettuare ulteriori depositi poiché i tuoi documenti sono ancora in fase di revisione. Ti invieremo una notifica via e-mail entro 3 giorni dall'approvazione della verifica.", "261074187": "4. Una volta caricati i blocchi nell'area di lavoro, modifica i parametri se lo desideri o premi Esegui per iniziare a fare trading.", "261250441": "Trascina il blocco <0>Trade again e aggiungilo nella parte <0>da fare del blocco <0>Repeat until.", - "262095250": "Se seleziona <0>\"Put\", otterrà un pagamento se il prezzo finale è inferiore al prezzo di esercizio alla scadenza. In caso contrario, non riceverà alcuna vincita.", + "262095250": "Se selezioni <0>«Put», riceverai un pagamento se il prezzo finale è inferiore al prezzo di esercizio alla scadenza. Altrimenti, non riceverai alcun pagamento.", "264976398": "3. \"Errore\" mostra un messaggio in rosso per evidenziare che qualcosa deve essere risolto immediatamente.", "265644304": "Tipi di trade", "267992618": "Le piattaforme non sono funzionali o non offrono le funzioni fondamentali.", @@ -262,16 +259,14 @@ "273728315": "Non deve essere 0 né vuoto", "274268819": "Indice Volatility 100", "275116637": "Deriv X", - "276639155": "Inserisci un codice postale/CAP inferiore ai 20 caratteri.", "276770377": "Per le nuove operazioni verranno creati nuovi conti MT5 sotto la giurisdizione di {{to_account}}.", "277469417": "Il periodo di esclusione non può essere superiore a cinque anni.", "278684544": "ottieni sotto elenco da # dalla fine", "280021988": "Usa queste scorciatoie", - "281110034": "Un trading efficace con il sistema D'Alembert richiede un'attenta considerazione della progressione delle puntate e della gestione del rischio. I trader possono automatizzare questo approccio utilizzando Deriv Bot, impostando soglie di profitto e di perdita per garantire un trading equilibrato e controllato. Tuttavia, è fondamentale che i trader valutino la propria propensione al rischio, testino le strategie su un conto demo e si allineino al proprio stile di trading prima di passare al trading con denaro reale. Questo processo di ottimizzazione aiuta a trovare un equilibrio tra guadagni e perdite potenziali, gestendo il rischio in modo prudente.", + "281110034": "Un trading efficace con il sistema D'Alembert richiede un'attenta considerazione della progressione degli importi investiti e della gestione del rischio. I trader possono automatizzare questo approccio utilizzando Deriv Bot, impostando soglie di profitto e di perdita per garantire un trading equilibrato e controllato. Tuttavia, è fondamentale che i trader valutino la propria propensione al rischio, testino le strategie su un conto demo e si allineino al proprio stile di trading prima di passare al trading con denaro reale. Questo processo di ottimizzazione aiuta a trovare un equilibrio tra guadagni e perdite potenziali, gestendo il rischio in modo prudente.", "282319001": "Controlla la tua fotografia", "282564053": "Successivamente avremo bisogno del documento di verifica dell'indirizzo.", "283830551": "Il tuo indirizzo non corrisponde al tuo profilo", - "283986166": "L'autoesclusione su questo sito web si applica solamente al conto tuo {{brand_website_name}} e non include altri siti web o società.", "284527272": "antimode", "284772879": "Contratto", "284809500": "Demo finanziaria", @@ -376,7 +371,6 @@ "401339495": "Verifica indirizzo", "401345454": "Vai alla scheda Tutorial per farlo.", "403456289": "La formula per la SMA è:", - "404743411": "Depositi totali", "406359555": "Dettagli del contratto", "406497323": "Vende il tuo contratto attivo se necessario (opzionale)", "411482865": "Aggiungi conto {{deriv_account}}", @@ -468,11 +462,11 @@ "502041595": "Questo blocco fornisce una candela specifica contenuta nell'intervallo di tempo selezionato.", "505793554": "ultima lettera", "508390614": "Finanziario STP di prova", - "510815408": "Solo lettere, numeri, spazi, trattini", "511679687": "Gli accumulators le consentono di esprimere un'opinione sul range di movimento di un indice e di far crescere la sua quota in modo esponenziale a un <0>tasso di crescita fisso.", "514031715": "l'elenco {{ input_list }} è vuoto", "514776243": "La password di {{account_type}} è stata modificata.", "514948272": "Copia link", + "517631043": "Abbiamo inviato il suo e-book. Controlli la sua e-mail per scaricarlo.", "517833647": "Indice Volatility 50 (1s)", "518955798": "7. Esegui una volta all'inizio", "519205761": "Non può più aprire nuove posizioni con questo conto.", @@ -499,7 +493,6 @@ "542038694": "Solo lettere, numeri, spazi, il trattino basso e il trattino sono consentiti per {{label}}.", "542305026": "Dovrai inoltre consegnare una prova a verifica dell'identità.", "543413346": "Non hai posizioni aperte per questo asset. Per vedere le posizione aperte, clicca su Vai ai report", - "545476424": "Prelievi totali", "547029855": "Se seleziona questa funzione, può annullare l'operazione entro un periodo di tempo prescelto se il prezzo dell'attività si muove contro il suo favore. In questo caso, riavrà la sua puntata senza profitto/perdita. Per questo addebitiamo una piccola commissione. Il take profit e lo stop loss sono disattivati quando la cancellazione dell'operazione è attiva.", "549479175": "Multipliers su Deriv", "549799607": "Vada alla LiveChat", @@ -554,7 +547,7 @@ "597707115": "Raccontaci la tua esperienza di trading.", "599469202": "{{secondPast}}s fa", "602278674": "Verifica identità", - "603849445": "Prezzo della puntata", + "603849445": "Prezzo d'esercizio", "603849863": "Cerca <0>Ripeti While/Until e fai clic sull'icona + per aggiungere il blocco all'area dell'area di lavoro.", "603899222": "Distanza dal punto corrente", "606240547": "- Registro naturale", @@ -628,6 +621,7 @@ "665777772": "XLM/USD", "665872465": "Nell'esempio sottostante, è stato selezionato il prezzo di apertura, che viene poi assegnato a una variabile chiamata \"op\".", "666724936": "Inserisci un numero ID valido.", + "669494711": "1,4 pips", "671630762": "Accettiamo solo questi tipi di documenti come prova del suo indirizzo. Il documento deve essere recente (emesso negli ultimi {{expiry_in_months}} mesi) e includere il suo nome e il suo indirizzo:", "672008428": "ZEC/USD", "673915530": "Giurisdizione e scelta delle legge applicabile", @@ -693,7 +687,6 @@ "721011817": "- Aumenta il primo numero alla potenza del secondo numero", "723045653": "Accederai al tuo conto Deriv con questo indirizzo e-mail.", "723961296": "Gestisci la password", - "724203548": "Puoi inviare il reclamo sulla piattaforma <0>Risoluzione online delle controversie (ODR) della Commissione Europea. Procedura non valida per i clienti nel Regno Unito.", "724526379": "Scopri di più con i nostri tutorial", "728042840": "Per continuare a fare trading con noi, conferma il luogo in cui vivi.", "728824018": "Indice spagnolo", @@ -726,7 +719,6 @@ "755138488": "Non è stato possibile verificare il documento fornito perché contiene contrassegni o testi che non dovrebbero comparire: invia una foto chiara o una scansione del tuo documento d'identità originale.", "756152377": "L'indicatore SMA conferisce lo stesso peso all'intera distribuzione di valori.", "758003269": "produci lista da testo", - "759783233": "Per maggiori informazioni o aiuto per i servizi di assistenza e consulenza, vai su <0>begambleaware.org.", "760528514": "Tieni presente che cambiare il valore della \"i\" non cambia il valore dell'elemento originale dell'elenco", "761576760": "Trasferisci fondi sul conto per fare trading.", "762926186": "Una strategia rapida è una strategia già pronta che può utilizzare in Deriv Bot. Ci sono 3 strategie rapide tra cui può scegliere: Martingala, D'Alembert e Oscar's Grind.", @@ -803,7 +795,7 @@ "841543189": "Visualizza la operazione su Blockchain", "843333337": "Puoi solo fare depositi. Completa la <0>valutazione finanziaria per sbloccare i prelievi.", "845304111": "Periodo EMA lento {{ input_number }}", - "848083350": "La sua vincita è pari alla <0>vincita per punto moltiplicata per la differenza tra il prezzo finale e il prezzo d'esercizio. Otterrà un profitto solo se la vincita è superiore alla sua puntata iniziale.", + "848083350": "Il tuo pagamento è pari al <0>pagamento per punto moltiplicato per la differenza tra il prezzo finale e il prezzo di esercizio. Guadagnerai un profitto solo se la tua vincita è superiore all'importo investito inizialmente.", "850582774": "Aggiorna i tuoi dati personali", "851054273": "Selezionando \"Higher\", vinci il payout se lo spot d'uscita è notevolmente superiore alla barriera.", "851264055": "Crea un elenco contenente un elemento ripetuto per uno specifico numero di volte.", @@ -963,7 +955,7 @@ "1010198306": "Questo blocco crea una lista con stringhe e numeri.", "1010337648": "Non siamo stati in grado di verificare il documento a verifica della proprietà.", "1011208051": "Congratulazioni, hai creato il conto <0/>{{category}} {{platform}} {{type}} {{jurisdiction_selected_shortcode}}. ", - "1011424042": "{{text}}. Puntata <0/>", + "1011424042": "Importo {{text}}. <0/>", "1012102263": "Non potrai accedere al tuo conto fino a questa data (massimo 6 settimane da oggi).", "1015201500": "Stabilisci le opzioni di trading come durata e puntata.", "1016220824": "Devi passare a un conto reale per usare questa opzione. <0/>Per farlo, seleziona un conto reale da <1>Cambia conto.", @@ -1056,7 +1048,7 @@ "1082406746": "Inserisci un importo della puntata di almeno {{min_stake}}.", "1083781009": "Numero di identificazione fiscale*", "1083826534": "Consenti blocco", - "1087112394": "Deve selezionare il prezzo d'esercizio prima di inserire il contratto.", + "1087112394": "È necessario selezionare il prezzo di esercizio prima di stipulare il contratto.", "1088031284": "Puntata:", "1088138125": "Tick {{current_tick}} - ", "1089085289": "Numero di telefono", @@ -1105,7 +1097,6 @@ "1128404172": "Annulla", "1129124569": "Selezionando \"Under\", vincerai il payout se l'ultima cifra dell'ultimo tick è inferiore alla tua previsione.", "1129842439": "Inserire un importo per il take profit.", - "1130744117": "Ci impegniamo a risolvere ogni controversia entro 10 giorni lavorativi. Ti informeremo delle decisioni prese fornendo una spiegazione della nostra posizione, e ti proporremo le eventuali misure correttive che intendiamo implementare.", "1130791706": "N", "1133651559": "Chat live", "1134879544": "Esempio di un documento con riflessi", @@ -1245,7 +1236,7 @@ "1272012156": "GBP/CHF", "1272337240": "Giorni", "1272681097": "Ore", - "1274380814": "Il suo payout è pari al <0>payout per pip moltiplicato per la differenza, <1>in pip, tra il prezzo finale e il prezzo di esercizio. Otterrà un profitto solo se il suo payout è superiore alla sua puntata iniziale.", + "1274380814": "Il tuo pagamento è pari al <0>pagamento per pip moltiplicato per la differenza, <1>in pip, tra il prezzo finale e il prezzo di esercizio. Guadagnerai un profitto solo se la tua vincita è superiore all'importo investito inizialmente.", "1274819385": "3. Reclami e controversie", "1276660852": "Invia un documento a verifica dell'identità", "1281045211": "Ordina gli elementi di un determinato elenco in ordine crescente o decrescente, a seconda del loro valore numerico o alfabetico.", @@ -1274,7 +1265,6 @@ "1304083330": "copia", "1304272843": "Invia il documento di verifica dell'indirizzo.", "1304620236": "Abilita fotocamera", - "1304788377": "<0/><1/>Qualora il reclamo si riferisca alle pratiche per il nostro trattamento dei dati, potrai presentare un <2>reclamo formale al garante per la protezione dei dati e delle informazioni personali (Malta) sul sito web dell'ente, oppure presentare un reclamo all'autorità di vigilanza competente all'interno dell'Unione Europea.", "1305217290": "Carica la parte posteriore della tua carta d'identità.", "1308625834": "Imposta l'intervallo di tempo prestabilito per i blocchi che leggono liste di candele.", "1309017029": "Abilitandolo puoi salvare i blocchi come raccolta unica che può essere integrata facilmente negli altri bot.", @@ -1512,6 +1502,7 @@ "1531017969": "Crea una singola stringa di testo combinando tutti i valori testuali di ogni elemento annesso, senza includere spazi. Il numero di elementi può essere aggiunto di conseguenza.", "1533177906": "Fall", "1534796105": "Ricevi il valore della variabile", + "1537192641": "Impossibile elaborare la sua richiesta", "1537711064": "Occorre verificare rapidamente la tua identità prima di permetterti di accedere alla cassa. Vai sulle impostazioni del conto e invia un documento di verifica dell'identità.", "1540585098": "Rifiuta", "1541508606": "Stai cercando CFD? Vai al Trader's Hub", @@ -1562,7 +1553,6 @@ "1594147169": "Prova di nuovo", "1594322503": "La vendita è disponibile", "1595295238": "3. Utilizzi un blocco logico per verificare se il Profitto/perdita totale è superiore alla soglia di Stop Loss. Può trovare la variabile Profitto/perdita totale sotto Analisi > Statistiche nel menu Blocchi a sinistra. Il suo bot continuerà ad acquistare nuovi contratti fino a quando l'importo del Profitto/perdita totale non supererà l'importo della soglia di Stop Loss.", - "1596378630": "Hai aggiunto un conto reale per il gioco d'azzardo.<0/>Effettua un deposito ora per iniziare a fare trading.", "1597672660": "Password per Deriv MT5", "1598009247": "<0>a.Puoi presentare un reclamo alla commissione finanziaria fino a 45 giorni dopo l'incidente.", "1598386296": "Il campo Città/Paese è obbligatorio.", @@ -1730,7 +1720,6 @@ "1763123662": "Carica la tua ricevuta NIMC.", "1766212789": "La manutenzione del server inizia ogni domenica alle 06:00 GMT e potrebbe richiedere fino a 2 ore. È possibile che si verifichi un'interruzioni del servizio durante questo periodo.", "1766993323": "Sono consentiti solo numeri, lettere e trattini bassi.", - "1767429330": "Aggiungi un conto derivato", "1768293340": "Valore del contratto", "1768861315": "Minuto", "1768918213": "Sono consentiti solo lettere, spazi, trattini, punti e apostrofi.", @@ -1744,6 +1733,7 @@ "1779144409": "È necessario verificare il conto", "1779519903": "Deve essere un numero valido.", "1779801832": "La preghiamo di aggiornare la sua password di conseguenza.", + "1779872677": "Scarica il e-book", "1780442963": "Scansiona il codice QR per scaricare {{ platform }}.", "1780770384": "Questo blocco fornisce una frazione casuale compresa tra 0,0 e 1,0.", "1782308283": "Strategia rapida", @@ -1754,7 +1744,6 @@ "1783740125": "Carica il tuo selfie", "1785298924": "Formula D'Alembert 1", "1786644593": "Formati supportati: Solo JPEG, JPG, PNG, PDF e GIF", - "1787135187": "Il codice postale/CAP è obbligatorio", "1787492950": "Gli indicatori sulla scheda del grafico hanno il solo scopo indicativo e potrebbero variare leggermente da quelli nell'area di lavoro di {{platform_name_dbot}}.", "1788515547": "<0/>Per ulteriori informazioni sulla presentazione di un reclamo all'Ufficio dell'Arbitro per i Servizi Finanziari, <1>consulta le loro linee guida.", "1788966083": "01-07-1999", @@ -1820,7 +1809,6 @@ "1850031313": "- Minimo: il prezzo più basso", "1850132581": "Paese non trovato", "1850659345": "- Payout: il payout del contratto", - "1850663784": "Invia documenti di verifica", "1851052337": "Luogo di nascita obbligatorio.", "1851776924": "superiore", "1854480511": "La cassa è bloccata", @@ -1837,7 +1825,6 @@ "1865525612": "Nessuna transazione recente.", "1866244589": "Il punto di ingresso è il primo tick per i High/Low Ticks.", "1866811212": "Deposita fondi nella tua valuta locale tramite un agente di pagamento autorizzato e indipendente del tuo Paese.", - "1866836018": "<0/><1/>Se il reclamo riguarda le nostre pratiche per il trattamento dei dati, puoi presentare un reclamo formale all'autorità di sorveglianza locale.", "1867217564": "L'indice deve essere un numero intero positivo", "1867783237": "High-to-Close", "1869315006": "Scopri come proteggiamo i fondi per sbloccare la cassa.", @@ -1848,7 +1835,6 @@ "1871377550": "Offrite bot di trading pre-costruiti su Deriv Bot?", "1871664426": "Nota", "1873376454": "Si tratta di un livello di prezzo che lei sceglie. Se questa barriera viene superata, il suo contratto viene risolto.", - "1873838570": "Verifica il tuo indirizzo", "1874481756": "Utilizza questo blocco per acquistare un contratto specifico. È possibile aggiungere molteplici blocchi d'acquisto assieme a blocchi condizionali per stabilire le condizioni d'acquisto. Questo blocco può solo essere utilizzato nell'ambito del blocco delle condizioni d'acquisto.", "1874756442": "BVI", "1875702561": "Carica o crea il tuo bot", @@ -1890,7 +1876,6 @@ "1906213000": "Il nostro sistema terminerà le operazioni di Deriv Bot in corso e Deriv Bot non effettuerà nuove operazioni.", "1906639368": "Se è la prima volta che crei una password o hai dimenticato la tua, ti invitiamo a reimpostarla.", "1907423697": "Guadagna di più con Deriv API", - "1907884620": "Aggiungi un conto reale di gioco su Deriv", "1908023954": "Siamo spiacenti, si è verificato un errore durante l'elaborazione della tua richiesta.", "1908239019": "Assicurati che l'immagine comprenda il documento per intero", "1908686066": "Avviso sul test di adeguatezza", @@ -1993,7 +1978,6 @@ "2001222130": "Controlla nella cartella Spam o Cestino; se non trovi l'e-mail, inviala di nuovo.", "2001361785": "1. Iniziare con la puntata iniziale. Diciamo 1 dollaro.", "2004052487": "Stimare la durata di vita dei suoi mestieri", - "2004792696": "Se risiedi nel Regno Unito e vuoi autoescluderti da ogni società di gioco d'azzardo online autorizzata in Gran Bretagna, vai su <0>www.gamstop.co.uk.", "2007028410": "mercato, tipo di trade, tipo di contratto", "2010759971": "Caricamenti completati", "2010866561": "Restituisce il profitto/perdita totale", @@ -2073,7 +2057,6 @@ "2085387371": "Deve comprendere numeri, lettere e i caratteri speciali. , ' -", "2085602195": "- Valore d'entrata: il valore del primo tick del contratto", "2086048243": "Certificato di costituzione", - "2086742952": "Hai aggiunto un conto reale per le opzioni.<0/>Effettua un deposito ora per iniziare a fare trading.", "2086792088": "Entrambe le barriere dovrebbero essere relative o assolute", "2088735355": "I limiti di sessioni e accesso", "2089087110": "Paniere di indici", @@ -2281,7 +2264,6 @@ "-1699820408": "Inserisci un {{field_name}} con meno di {{max_number}} caratteri.", "-1575567374": "codice postale/CAP", "-816263501": "Sono consentiti solo numeri, lettere, spazi e trattini.", - "-1497654315": "I nostri conti e servizi non sono disponibili per il CAP del Jersey.", "-755626951": "Complete le informazioni sul tuo indirizzo", "-1024240099": "Indirizzo", "-1534917661": "Selezioni la sua valuta preferita", @@ -2348,6 +2330,7 @@ "-1458676679": "È necessario inserire da 2 a 50 caratteri.", "-1116008222": "Devi inserire 9-35 numeri.", "-1995979930": "La prima riga dell'indirizzo è obbligatoria.", + "-703454156": "Inserisci un codice postale/CAP inferiore ai 20 caratteri.", "-2113555886": "Sono consentiti solo numeri, lettere, spazi e trattini.", "-1103497546": "Dichiarazione dei redditi", "-700600899": "Prova di indirizzo aziendale", @@ -2499,7 +2482,6 @@ "-1545823544": "7 giorni", "-180147209": "Superato il limite di tempo, verrai automaticamente disconnesso dalla sessione.", "-374553538": "Il tuo conto è escluso dal sito web fino a questa data (minimo 6 mesi, fino a 5 anni).", - "-2121421686": "Se vuoi autoescluderti da ogni società di gioco d'azzardo online autorizzata in Gran Bretagna, vai su <0>www.gamstop.co.uk.", "-2105708790": "Valore massimo per saldo del conto e posizioni aperte", "-1960600163": "Una volta raggiunto l'importo per il saldo del conto, non potrai depositare fondi su tale conto.", "-1073845224": "N. di posizioni aperte", @@ -2653,6 +2635,7 @@ "-1728732301": "Accesso semplice con passkeys", "-684009726": "Modifica passkey", "-1140319320": "Il tuo account è ora protetto con una passkey. <0/> Gestisci la tua passkey tramite<0/>le impostazioni del tuo account Deriv.", + "-1036903080": "Stiamo riscontrando un problema temporaneo nell'elaborazione della tua richiesta. Riprova più tardi.", "-331060101": "La configurazione della passkey non è riuscita", "-713875531": "Abilita il bluetooth.", "-80717068": "App che hai collegato alla tua <0>password di Deriv:", @@ -2710,6 +2693,10 @@ "-145462920": "Deriv cTrader", "-1210359945": "Trasferisci fondi sui tuoi conti", "-81256466": "È necessario un conto Deriv per creare un conto CFD.", + "-1926387364": "Abbiamo inviato il suo e-book alla sua e-mail. Può anche scaricarlo qui.", + "-1057002564": "<0>Al momento non siamo in grado di effettuare l'upgrade ai Wallets e stiamo lavorando per risolvere il problema il prima possibile. Per favore <1>riprova<0>.", + "-1424352390": "<0>Wallets<1> — Un modo più intelligente per gestire i tuoi fondi", + "-280236366": "Attiva ora", "-699372497": "Fai trading con leva e spread ridotti per avere un ritorno maggiore sui trade che vanno a buon fine. <0>Scopri di più", "-982095728": "Vai", "-1790089996": "NUOVO!", @@ -2733,13 +2720,10 @@ "-2055865877": "Regolamento extra-UE", "-643108528": "Regolamento extra UE e UE", "-1002556560": "Non siamo in grado di completare l'aggiornamento del Wallet. Riprovi più tardi o ci contatti tramite la live chat.", - "-280236366": "Attiva ora", "-2051096382": "Guadagna una vasta gamma di pagamenti prevedendo correttamente i movimenti di mercato con <0>le opzioni, oppure ottieni i vantaggi dei CFD senza rischiare più della tua puntata iniziale con i <1>Multipliers.", "-1638358352": "Ottieni il vantaggio dei CFD senza rischiare più della tua puntata iniziale con i <0>Multipliers.", "-744999940": "Conto Deriv", "-749129977": "Crea un vero conto Deriv, inizia a fare trading e gestisci i tuoi fondi.", - "-1057002564": "<0>Al momento non siamo in grado di effettuare l'upgrade ai Wallets e stiamo lavorando per risolvere il problema il prima possibile. Per favore <1>riprova<0>.", - "-1424352390": "<0>Wallets<1> — Un modo più intelligente per gestire i tuoi fondi", "-2146691203": "Scelta del regolamento", "-249184528": "Puoi creare conti reali in base a normative UE o extra UE. Fai clic sull'<0><0/>icona per saperne di più su questi conti.", "-1505234170": "Visita del Trader's Hub", @@ -2860,7 +2844,6 @@ "-1949883551": "Hai un solo conto", "-1149845849": "Torna al Trader's Hub", "-1232852916": "Stiamo passando al tuo conto in {{currency}} per visualizzare l'operazione.", - "-759000391": "Non è stato possibile verificare automaticamente le informazioni. Per abilitare questa funzione, completa quanto segue:", "-1632668764": "Accetto", "-544232635": "Vai alla pagina Depositi per generare un indirizzo; poi torna qui per procedere con l'operazione.", "-1161069724": "Copia l'indirizzo riportato sotto: ti servirà per depositare le tue criptovalute.", @@ -3267,7 +3250,6 @@ "-821418875": "Trader", "-679102561": "Dettagli del contratto", "-430118939": "Politica sui reclami", - "-568280383": "Gioco d'azzardo su Deriv", "-1308346982": "Derivato", "-579984289": "Demo derivata", "-1596515467": "Derivato BVI", @@ -3390,7 +3372,6 @@ "-689237734": "Continua", "-1642457320": "Centro assistenza", "-1966944392": "Stato della rete: {{status}}", - "-594209315": "Nell'Unione Europea gli indici sintetici sono offerti da {{legal_entity_name}}, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, autorizzata e regolamentata dalla Malta Gaming Authority (<0>licenza n. MGA/B2C/102/2000) e dalla Revenue Commissioners per i clienti in Irlanda (<2>licenza n. 1010285).", "-181484419": "Trading responsabile", "-650505513": "Schermo intero", "-1823504435": "Visualizza notifiche", @@ -3400,8 +3381,8 @@ "-1496158755": "Vai su Deriv.com", "-1323441180": "Con la presente confermo che la mia richiesta di apertura di un conto presso Deriv per negoziare prodotti OTC emessi e offerti esclusivamente al di fuori del Brasile è stata avviata da me. Sono pienamente consapevole che Deriv non è regolamentata dal CVM e che rivolgendomi a Deriv intendo instaurare un rapporto con una società straniera.", "-1396326507": "{{website_name}} non è disponibile nel tuo Paese.", - "-1019903756": "Sintetico", "-288996254": "Non disponibile", + "-1019903756": "Sintetico", "-735306327": "Gestisci i conti", "-1813972756": "La creazione del conto è stata sospesa per 24 ore", "-366030582": "Siamo spiacenti, ma al momento non puoi creare un conto. Poiché hai rifiutato i nostri precedenti avvisi di rischio, è necessario attendere 24 ore dal primo tentativo di creazione del conto prima di poter procedere.<0/><0/>", @@ -3424,9 +3405,6 @@ "-175638343": "Scegli un conto oppure aggiungine uno nuovo", "-1768223277": "Il tuo conto è pronto", "-1215717784": "<0>La nuova valuta ora è {{currency}}.<0>Effettua subito un deposito per iniziare a fare trading.", - "-786091297": "Usa il conto di prova", - "-228099749": "Verifica identità e indirizzo", - "-1041852744": "Stiamo verificando le tue informazioni personali", "-1775006840": "Deposita subito fondi per iniziare a fare trading.", "-983734304": "Per poter fare trading, devi prima inviarci documenti di verifica di identità e indirizzo.", "-917733293": "Per fare trading, conferma il luogo in cui vivi.", @@ -3434,7 +3412,6 @@ "-952649119": "Accedi", "-3815578": "Registrati", "-1456176427": "Scegli una valuta per il conto reale", - "-1557011219": "Aggiungi un conto reale per opzioni su Deriv", "-241733171": "Aggiungi un conto Finanziario Deriv", "-1329687645": "Crea un conto per criptovalute", "-1429178373": "Crea un nuovo conto", @@ -3471,14 +3448,10 @@ "-2142491494": "OK, ho capito", "-611136817": "Attenzione ai link falsi.", "-1342699195": "Profitto/perdita totale:", - "-943710774": "La politica sui reclami, che potrebbe essere soggetta a modifiche, è valida per i conti registrati con {{legal_entity_name}}, primo piano, Millennium House, Victoria Road, Douglas, Isola di Man, IM2 4RW, autorizzata e regolamentata rispettivamente dalla (1) Gambling Supervision Commission dell'Isola di Man (<0>licenza attuale emessa il 31 agosto 2017) e dalla (2) Gambling Commission del Regno Unito (<1>licenza n. 39172).", - "-255056078": "La presente politica sui reclami, che potrebbe subire modifiche, vale per i conti registrati con {{legal_entity_name}}, con sede legale presso W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033, Malta, autorizzata e regolamentata dalla Malta Gaming Authority di Malta esclusivamente per i prodotti di gioco d'azzardo, <0>licenza n. MGA/B2C/102/2000, e per i clienti che risiedono nel Regno Unito dalla UK Gambling Commission (numero di conto 39495).", "-1941013000": "La presente politica sui reclami potrebbe cambiare nel tempo, e si applica ai conti registrati con {{legal_entity_name_svg}}, {{legal_entity_name_fx}} e {{legal_entity_name_v}}.", "-594812204": "La presente politica sui reclami potrebbe cambiare nel tempo, e si applica ai conti registrati con {{legal_entity_name_svg}}.", "-813256361": "Ci impegniamo a trattare i nostri clienti in modo equo e a fornire loro un servizio eccellente. <0/> <1/> Saremmo lieti di sentire la tua opinione su come possiamo migliorare i nostri servizi per te. Tutte le informazioni fornite saranno trattate con la massima riservatezza. Siate certi che sarete ascoltati, apprezzati e trattati sempre in modo equo.", "-1622847732": "Se hai una domanda relativa al tuo conto di trading con {{legal_entity_name}}, puoi contattarci tramite il nostro <0>Centro assistenza o chattando con un rappresentante tramite <1>Live Chat. <2/> <3/> Ci impegniamo a risolvere la tua richiesta nel più breve tempo possibile e apprezziamo la tua pazienza nel concederci il tempo necessario per risolvere la questione. <4/> <5/> Ci impegniamo a fornire il miglior servizio e supporto possibili ai nostri clienti. Tuttavia, nel caso in cui non fossimo in grado di risolvere la tua richiesta o se ritieni che la nostra risposta non sia soddisfacente, desideriamo sentirti. Ti invitiamo a presentare un reclamo ufficiale per consentirci di esaminare le tue preoccupazioni e trovare una soluzione.", - "-1639808836": "Se non sei soddisfatto della decisione, puoi presentare il reclamo all'<0>Independent Betting Adjudication Service (IBAS) compilando il rispettivo modulo dell'IBAS. L'IBAS si occupa esclusivamente delle controversie derivanti da operazioni finanziarie.", - "-1505742956": "<0/><1/>Puoi anche inviare il reclamo alla Malta Gaming Authority tramite l'<2>unità di supporto del giocatore.", "-1406192787": "Se non sei soddisfatto della decisione, puoi inoltrare il reclamo alla <0>commissione finanziaria.", "-1776547326": "<0/><1/>Se vivi nel Regno Unito e non sei soddisfatto della nostra risposta, puoi presentare un reclamo al <2>Financial Ombudsman Service.", "-2115348800": "1. Introduzione", @@ -3561,7 +3534,6 @@ "-1969608084": "Forex e Criptovalute", "-800771713": "Labuan Financial Services Authority (Licenza n. MB/18/0024)", "-1497128311": "80+", - "-1501230046": "0,6 pips", "-1689815930": "Dovrai presentare una prova di identità e indirizzo una volta raggiunte determinate soglie.", "-1175785439": "Deriv (SVG) LLC (società n. 273 LLC 2020)", "-139026353": "Un selfie di te stesso.", @@ -3783,7 +3755,7 @@ "-700280380": "Commissione per la cancellazione", "-8998663": "Cifra: {{last_digit}} ", "-718750246": "La tua puntata aumenterà dello {{growth_rate}}% per tick purché il prezzo spot corrente rimanga entro ±{{tick_size_barrier_percentage}} dal prezzo spot precedente.", - "-1358367903": "Puntata", + "-1358367903": "Importo investito", "-542594338": "Payout massimo", "-690963898": "Il contratto verrà chiuso automaticamente quando il pagamento raggiunge questo importo.", "-511541916": "Il contratto verrà chiuso automaticamente al raggiungimento di questo numero di segni di spunta.", @@ -4102,7 +4074,6 @@ "-1750896349": "D'Alembert", "-102980621": "Comparsa per la prima volta nel 1965, la strategia di Oscar Grind è una strategia a progressione positiva a basso rischio. Usandola, il volume del contratto aumenterà dopo ogni trade vincente, rimarrà invece inalterato dopo ogni trade inefficace.", "-462715374": "Bot senza nome", - "-538215347": "Depositi netti", "-280147477": "Tutte le operazioni", "-137444201": "Acquista", "-130601012": "Seleziona una durata", diff --git a/packages/translations/src/translations/ko.json b/packages/translations/src/translations/ko.json index 8b32ff85e62a..afdc110f3138 100644 --- a/packages/translations/src/translations/ko.json +++ b/packages/translations/src/translations/ko.json @@ -1,5 +1,4 @@ { - "1014140": "<0>+447723580049로 전화하셔서 불만을 접수하실 수도 있습니다.", "1485191": "1:1000", "2082741": "추가 문서 번호", "2091451": "Deriv Bot - 여러분의 자동 거래 파트너", @@ -205,12 +204,10 @@ "218441288": "신분증 번호", "220014242": "귀하의 컴퓨터에서 자가촬영사진을 업로드하세요", "220186645": "텍스트가 비어 있습니다", - "220232017": "데모 CFD", "221261209": "Deriv 계정을 통해 귀하의 CFD 계정에 입금(및 출금)할 수 있습니다.", "223120514": "이 예시에서, SMA 선의 각 포인트는 지난 50일의 종료가격에 대한 산술 평균입니다.", "223607908": "{{underlying_name}} 에 대하여 가장 최근의 1000 틱에 대한 마지막 숫자 스탯", "224650827": "IOT/USD", - "224929714": "영국과 맨섬에서 가상 현실에 기초한 베팅은 Millennium House, Level 1, Victoria Road, Douglas IM2 4RW, 맨섬에 위치하고 <0>등록번호 39172 아래 영국의 도박 위원회와 맨섬의 도박 감독 위원회 (<1>라이센스 보기) 에 의해 규제되고 인가되는 {{legal_entity_name}} 에 의해 제공됩니다.", "225887649": "이 블록은 의무적입니다. 이 블록은 귀하께서 새로운 전략을 생성하실 때에 기본값으로 귀하의 전략에 추가됩니다. 귀하께서는 이 블록에 대하여 하나 이상의 복사본을 캔버스에 추가하실 수 없습니다.", "227591929": "타임 스탬프 하시기 위해서 {{ input_datetime }} {{ dummy }}", "227903202": "저희는 귀하의 Deriv 피아트 및 {{platform_name_mt5}} 계좌들 간에 다른 통화들로 진행되는 송금에 대하여 1%의 송금 비용을 부과할 것입니다.", @@ -262,7 +259,6 @@ "273728315": "0이거나 비어있을 수 없습니다", "274268819": "Volatility 100 지수", "275116637": "Deriv X", - "276639155": "20자 미만의 우편번호를 입력해 주세요.", "276770377": "신규 거래를 위해 {{to_account}} 관할 하에 새 MT5 계정이 생성됩니다.", "277469417": "제외 기간은 5년보다 더 길 수 없습니다.", "278684544": "끝에서의 #로부터 하위 목록 받기", @@ -271,7 +267,6 @@ "282319001": "귀하의 이미지를 확인하세요", "282564053": "다음으로, 귀하의 주소 증명이 필요합니다.", "283830551": "귀하의 주소가 프로필과 일치하지 않습니다", - "283986166": "웹사이트에서의 자가 제한은 오직 귀하의 {{brand_website_name}} 계좌에만 적용되며 다른 회사 또는 웹사이트는 포함하지 않습니다.", "284527272": "반최빈값", "284772879": "계약", "284809500": "파이낸셜 데모 (Financial Demo)", @@ -376,7 +371,6 @@ "401339495": "주소 인증", "401345454": "그렇게 진행하기 위해 튜토리얼 탭으로 이동하세요.", "403456289": "SMA의 공식은 다음과 같습니다:", - "404743411": "총 입금액", "406359555": "계약 세부정보", "406497323": "필요한 경우 활성화되어 있는 귀하의 계약을 판매하세요 (선택 사항입니다)", "411482865": "{{deriv_account}} 계좌 추가", @@ -468,11 +462,11 @@ "502041595": "이 블록은 선택된 시간 간격 내의 특정 캔들을 제공합니다.", "505793554": "마지막 문자", "508390614": "데모 파이낸셜 (Financial) STP", - "510815408": "문자, 숫자, 띄어쓰기, 하이픈만 허용됩니다", "511679687": "Accumulators 사용하면 지수의 변동 범위에 대한 견해를 표현할 수 있고 고정된 <0>성장률로 지분을 기하급수적으로 늘릴 수 있습니다.", "514031715": "{{ input_list }} 목록이 비어있습니다", "514776243": "귀하의 {{account_type}} 비밀번호가 변경되었습니다.", "514948272": "링크 복사", + "517631043": "전자책을 보내드렸습니다. 이메일을 확인하여 다운로드하세요.", "517833647": "Volatility 50 (1초) 지수", "518955798": "7. 시작 시 한 번 실행", "519205761": "이 계좌로는 더 이상 새 포지션을 개설할 수 없습니다.", @@ -499,7 +493,6 @@ "542038694": "{{label}} 에 대해서 오직 문자, 숫자, 띄어쓰기, 밑줄 및 하이픈만 허용됩니다.", "542305026": "신분증명 또한 반드시 제출하셔야 합니다.", "543413346": "귀하께서는 이 자산에 대한 오픈 포지션이 없습니다. 다른 오픈 포지션을 보시려면, 보고서로 이동하기를 클릭하세요", - "545476424": "인출 합계", "547029855": "이 기능을 선택하면 자산 가격이 원하는 방향으로 움직일 경우 선택한 기간 내에 거래를 취소할 수 있습니다. 수익/손실 없이 지분을 돌려받을 수 있습니다. 이에 대해 소정의 수수료가 부과됩니다. 거래 취소가 활성화되면 이익실현 및 손절매가 비활성화됩니다.", "549479175": "Deriv Multipliers", "549799607": "실시간 채팅으로 이동하기", @@ -628,6 +621,7 @@ "665777772": "XLM/USD", "665872465": "아래의 예시에서는 시초가가 선택 된 후 \"op\"라는 변수에 할당됩니다.", "666724936": "유효한 ID 번호를 입력하시기 바랍니다.", + "669494711": "1.4 핍", "671630762": "에어비앤비는 다음 유형의 서류만 주소 증명으로 인정합니다. 문서는 최근(최근 {{expiry_in_months}} 개월 이내에 발급된) 것으로서 회원님의 이름과 주소가 포함되어야 합니다:", "672008428": "ZEC/USD", "673915530": "관할권 및 법률 선택", @@ -693,7 +687,6 @@ "721011817": "- 밑을 첫번째 숫자로 하고 두번째 숫자를 지수로 하는 거듭제곱", "723045653": "귀하께서는 이 이메일 주소로 귀하의 Deriv 계좌에 로그인 하실 것입니다.", "723961296": "비밀번호 관리", - "724203548": "귀하께서는 귀하의 불만을 <0>유럽 위원회의 온라인 분쟁해결 (ODR) 플랫폼으로 보내실 수 있습니다. 이는 영국 고객분들께는 적용되지 않습니다.", "724526379": "튜토리얼을 통해 자세히 알아보세요", "728042840": "우리를 통해 거래를 계속하기 위해서는, 귀하께서 어디에 거주하시는지를 확인해주세요.", "728824018": "Spanish 지수", @@ -726,7 +719,6 @@ "755138488": "귀하께서 제출하신 문서에 있어서는 안되는 마킹 또는 텍스트를 포함하고 있음에 따라 저희는 해당 문서를 검증할 수 없습니다. 선명한 사진을 제출하시거나 신분증 원본을 스캔하여 제공하시기 바랍니다.", "756152377": "SMA는 모든 값들의 분산에 동일하게 가중을 적용합니다.", "758003269": "텍스트로부터 목록을 만드세요", - "759783233": "상담 및 지원 서비스에 대한 추가적인 정보와 지원을 위해서, <0>begambleaware.org을 방문해주시기 바랍니다.", "760528514": "\"i\"의 값을 변경하더라도 해당 목록에 있는 본래 아이템의 값은 변하지 않습니다", "761576760": "거래를 시작하기 위해 귀하의 계좌에 자금을 충전하세요.", "762926186": "빠른 전략은 파생 봇에서 사용할 수 있는 기성 전략입니다. 마틴 게일, 달렘베르, 오스카의 갈기 등 3가지 빠른 전략 중에서 선택할 수 있습니다.", @@ -1105,7 +1097,6 @@ "1128404172": "취소", "1129124569": "귀하께서 만약 \"Under\"를 선택하시면, 귀하께서는 마지막 틱의 마지막 숫자가 귀하의 예측보다 적은 경우 지불금을 받게 될 것입니다.", "1129842439": "취득 이윤금액을 입력해주시기 바랍니다.", - "1130744117": "우리는 영업일 기준 10일 이내로 귀하의 불만사항을 해결할 수 있도록 노력할 것입니다. 우리는 우리의 위치에 대한 설명과 함께 결과를 귀하에게 공지해 드릴것이며 우리가 취하고자 하는 시정조치를 제시해드릴 것입니다.", "1130791706": "N", "1133651559": "라이브 챗", "1134879544": "반사된 부분이 있는 문서의 예시", @@ -1274,7 +1265,6 @@ "1304083330": "복사하기", "1304272843": "귀하의 주소 증명을 제출해 주시기 바랍니다.", "1304620236": "카메라 활성화", - "1304788377": "<0/><1/>만약 귀하의 불만사항이 우리의 데이터 처리절차와 관련 있는 경우, 귀하께서는 웹사이트를 통해 <2>정보 및 데이터 보호 위원 (몰타) 으로 불만사항을 공식적으로 제출하시거나 또는 유럽연합 내의 그 어떠한 감독기관을 통해 불만사항을 접수하실 수 있습니다.", "1305217290": "귀하의 신분증 뒷면을 업로드하세요.", "1308625834": "캔들의 목록을 불러들이는 블록들을 위해 기본 시간 간격을 설정합니다.", "1309017029": "이는 귀하께서 귀하의 블록들을 다른 봇들에게도 쉽게 통합될수 있는 하나의 모음으로 저장할 수 있도록 해줍니다.", @@ -1512,6 +1502,7 @@ "1531017969": "첨부되어진 각각의 항목의 문자 값을 합침으로써 하나의 단일 문자열을 띄어쓰기 없이 단일 문자열을 생성합니다. 이에 따라서 항목의 수가 추가될 수 있습니다.", "1533177906": "Fall", "1534796105": "변수값을 받습니다", + "1537192641": "요청을 처리할 수 없습니다.", "1537711064": "귀하께서는 캐셔에 접근하실 수 있기 이전에 길지 않은 신분 검증 절차를 거치셔야 합니다. 귀하의 계좌 설정으로 가셔서 신분 증명을 제출해 주시기 바랍니다.", "1540585098": "거절하기", "1541508606": "CFD를 찾으시나요? Trader's Hub로 이동하세요", @@ -1562,7 +1553,6 @@ "1594147169": "다시 돌아와 주세요", "1594322503": "판매가 가능합니다", "1595295238": "3. 논리 블록을 사용하여 총 손익손절매 기준점 금액보다 큰지 확인합니다. 왼쪽 블록 메뉴분석 > 통계에서 총 이익/손실 변수를 찾을 수 있습니다. 봇은 총 이익/손실 금액이 손절매 기준점 금액을 초과할 때까지 계속해서 새 계약을 구매합니다.", - "1596378630": "귀하께서는 실제 게이밍 계좌를 추가하셨습니다.<0/>트레이딩을 시작하기 위해 지금 예금하세요.", "1597672660": "Deriv MT5 비밀번호", "1598009247": "<0>a.분쟁이 일어난 후 귀하께서는 최대 45일 이후까지 금융 위원회를 통해 불만사항을 접수하실 수 있습니다.", "1598386296": "타운/도시가 요구됩니다.", @@ -1730,7 +1720,6 @@ "1763123662": "귀하의 NIMC 슬립을 업로드하세요.", "1766212789": "서버관리는 매주 일요일 06:00 GMT에 시작하며 최대 2시간까지 지속될 수 있습니다. 이때에는 서비스가 원활하지 않을 수 있습니다.", "1766993323": "문자, 숫자 및 밑줄 표시만 허용됩니다.", - "1767429330": "Derived 계정 추가", "1768293340": "계약 금액", "1768861315": "분", "1768918213": "오직 문자, 띄어쓰기, 하이픈, 온점 및 아포스트로피만 허용됩니다.", @@ -1744,6 +1733,7 @@ "1779144409": "계정 인증 필요", "1779519903": "유효한 숫자여야 합니다.", "1779801832": "이에 따라 비밀번호를 업데이트하세요.", + "1779872677": "전자책 다운로드", "1780442963": "QR 코드를 스캔하여 {{ platform }} 을 다운로드 하세요.", "1780770384": "이 블록은 귀하에게 0.0과 1.0 사이에 있는 한 무작위 분수를 제공합니다.", "1782308283": "빠른 전략", @@ -1754,7 +1744,6 @@ "1783740125": "귀하의 셀피를 업로드하세요", "1785298924": "달랑베르 공식 1", "1786644593": "지원되는 형식: JPEG, JPG, PNG, PDF 및 GIF만 지원됩니다.", - "1787135187": "우편번호는 필수입력사항입니다", "1787492950": "차트 탭에 있는 지표는 단지 지시상의 목적이며 {{platform_name_dbot}} 작업공간에 있는 것과는 아주 조금 다를 수 있습니다.", "1788515547": "<0/>Office of the Arbiter for Financial Services에 불만 사항을 제출하는 방법에 대한 자세한 내용은 <1>해당 기관의 지침을 참조하시기 바랍니다.", "1788966083": "01-07-1999", @@ -1820,7 +1809,6 @@ "1850031313": "- 저: 가장 낮은 가격", "1850132581": "국가가 발견되지 않았습니다", "1850659345": "- 지불금: 계약의 지불금", - "1850663784": "증명을 제출하세요", "1851052337": "출생지의 정보가 요구됩니다.", "1851776924": "상위", "1854480511": "캐셔가 잠겨 있습니다", @@ -1837,7 +1825,6 @@ "1865525612": "최근 거래가 없습니다.", "1866244589": "진입 지점은 High/Low Ticks 첫 번째 틱입니다.", "1866811212": "귀하의 국가에서 허가되며 독립적인 지불 에이전트를 통해 귀하의 지역 통화로 예금하세요.", - "1866836018": "<0/><1/>만약 귀하의 불만사항이 우리의 데이터 처리 방식과 연관되어 있다면 귀하께서는 귀하의 현지 감독 기관에 공식적으로 불만을 접수하실 수 있습니다.", "1867217564": "지수는 반드시 양의 정수여야 합니다", "1867783237": "High-to-Close", "1869315006": "캐셔를 활성화하기 위해 우리가 어떻게 귀하의 자금을 보호하는지를 확인하세요.", @@ -1848,7 +1835,6 @@ "1871377550": "파생 봇에서 사전 구축된 트레이딩 봇을 제공하나요?", "1871664426": "공지", "1873376454": "이는 회원님이 선택하는 가격 수준입니다. 이 장벽을 넘으면 계약이 해지됩니다.", - "1873838570": "귀하의 주소를 인증해주세요", "1874481756": "귀하께서 희망하시는 구체적인 계약을 구매하기 위해 이 블록을 이용하세요. 귀하께서는 귀하의 구매 조건을 정의하기 위해 조건상의 블록과 함께 다양한 구매 블록을 추가하실 수 있습니다. 이 블록은 구매 조건 블록 내에서만 사용될 수 있습니다.", "1874756442": "BVI", "1875702561": "봇 로드 또는 빌드", @@ -1890,7 +1876,6 @@ "1906213000": "당사 시스템은 실행중인 모든 파생 봇 거래를 완료하고 파생 봇은 새로운 거래를하지 않습니다.", "1906639368": "만약 이번이 귀하께서 비밀번호를 처음 생성하는 것이거나 비밀번호를 잊어버리셨으면, 비밀번호를 재설정해주시기 바랍니다.", "1907423697": "Deriv API로 더 많은 수익 창출", - "1907884620": "실제 Deriv 게이밍 계좌를 추가하세요", "1908023954": "죄송합니다, 귀하의 요청을 처리하는 동안 오류가 발생했습니다.", "1908239019": "모든 문서가 사진에 나와 있도록 꼭 확인해 주세요", "1908686066": "적합성 검사 경고", @@ -1993,7 +1978,6 @@ "2001222130": "귀하의 스팸 또는 정크폴더를 확인해 주세요. 만약 그곳에도 없다면 이메일을 재전송 해보세요.", "2001361785": "1. 초기 지분으로 시작합니다. 1달러라고 가정해 봅시다.", "2004052487": "트레이딩 수명 예상하기", - "2004792696": "귀하께서 영국 거주자이시면, 영국에서 인가된 모든 온라인 도박 회사에서 자가제한을 하기 위해서, <0>www.gamstop.co.uk으로 가세요.", "2007028410": "시장, 거래 종류, 계약 종류", "2010759971": "성공적으로 업로드 되었습니다", "2010866561": "총 이윤/손실을 불러옵니다", @@ -2073,7 +2057,6 @@ "2085387371": "반드시 숫자, 문자 및 특수문자. , ' - 여야 합니다", "2085602195": "- 진입 값: 계약의 첫째 틱의 값", "2086048243": "법인 설립 인가증", - "2086742952": "귀하께서는 실제 옵션 계좌를 추가하셨습니다.<0/>트레이딩을 시작하시기 위해 지금 예금하세요.", "2086792088": "두 장벽들은 상대적이거나 절대적이여야 합니다", "2088735355": "귀하의 세션 및 로그인 제한", "2089087110": "바스켓 지수", @@ -2281,7 +2264,6 @@ "-1699820408": "최대 문자수 {{max_number}} 아래로 {{field_name}} 을 입력해 주세요.", "-1575567374": "우편번호", "-816263501": "오직 문자, 숫자, 띄어쓰기 및 하이픈만 허용됩니다.", - "-1497654315": "저지섬의 우편번호에 대해서는 저희의 계좌들과 서비스들을 이용하실 수 없습니다.", "-755626951": "귀하의 주소 상세정보를 완료하세요", "-1024240099": "주소", "-1534917661": "원하는 통화 선택", @@ -2348,6 +2330,7 @@ "-1458676679": "문자수는 2개에서 50개 사이로 입력하셔야 합니다.", "-1116008222": "9~35개의 숫자를 입력해야 합니다.", "-1995979930": "주소의 첫 번째 줄은 필수 입력 사항입니다.", + "-703454156": "20자 미만의 우편번호를 입력해 주세요.", "-2113555886": "오직 문자, 숫자, 띄어쓰기, 및 하이픈만 허용됩니다.", "-1103497546": "세금 신고", "-700600899": "사업자 주소 증명", @@ -2499,7 +2482,6 @@ "-1545823544": "7일", "-180147209": "이 시간 제한이 지난 이후에 귀하께서는 각 세션으로부터 자동적으로 로그아웃될 것입니다.", "-374553538": "귀하의 계좌는 이 날짜까지 이 웹사이트에서 제외될 것입니다 (최소한 6개월간, 최대 5년까지).", - "-2121421686": "영국에서 인가된 모든 온라인 도박 회사로부터 자가제한을 하기 위해서는, <0>www.gamstop.co.uk으로 가세요.", "-2105708790": "귀하의 최대 계좌 잔액 및 오픈 포지션", "-1960600163": "귀하의 계좌 잔액이 이 금액에 도달하면, 귀하께서는 귀하의 계좌로 자금을 입금하지 못할 것입니다.", "-1073845224": "개설된 포지션(들)의 수", @@ -2653,6 +2635,7 @@ "-1728732301": "Passkey 간편하게 로그인", "-684009726": "Passkey 편집", "-1140319320": "이제 계정이 Passkey 보호됩니다. <0/> Deriv 계정 설정을 통해 Passkey <0/> 관리하세요.", + "-1036903080": "요청을 처리하는 동안 일시적인 문제가 발생했습니다. 잠시 후 다시 시도해 주세요.", "-331060101": "Passkey 설정 실패", "-713875531": "블루투스를 활성화합니다.", "-80717068": "귀하의 <0>Deriv 비밀번호와 연결되어 있는 앱:", @@ -2710,6 +2693,10 @@ "-145462920": "Deriv cTrader", "-1210359945": "계좌로 자금 이체", "-81256466": "CFD 계정을 만들려면 Deriv 계정이 필요합니다.", + "-1926387364": "이메일로 전자책을 보내드렸습니다. 여기에서 다운로드할 수도 있습니다.", + "-1057002564": "<0>현재로서는 Wallets으로 업그레이드할 수 없으며 최대한 빨리 문제를 해결하기 위해 노력하고 있습니다. 잠시만요 <1>다시 시도해<0>.", + "-1424352390": "<0>Wallets<1> — 자금을 더 스마트하게 관리하는 방법", + "-280236366": "지금 활성화하세요", "-699372497": "성공적인 거래들에 대하여 더 나은 보상을 위해 레버리지와 촘촘한 스프레드와 함께 거래하세요. <0>자세히 알아보기", "-982095728": "받기", "-1790089996": "새롭습니다!", @@ -2733,13 +2720,10 @@ "-2055865877": "비 유럽연합 규정", "-643108528": "비 EU 및 EU 규정", "-1002556560": "Wallet 업그레이드를 완료할 수 없습니다. 나중에 다시 시도하거나 실시간 채팅을 통해 문의해 주세요.", - "-280236366": "지금 활성화하세요", "-2051096382": "시장 변동을 정확하게 예측하여 다양한 범위의 수익을 창출하십시오. <0>옵션 지분을 보다 더 많이 잃는 단점 없이 CFD의 장점을 <1>Multipliers로 누리십시오.", "-1638358352": "<0>Multipliers 초기 판돈보다 더 많은 위험을 감수하지 않고 CFD의 장점을 누려보세요.", "-744999940": "Deriv 계좌", "-749129977": "실제 Deriv 계정을 만들고 거래를 시작하고 자금을 관리하세요.", - "-1057002564": "<0>현재로서는 Wallets으로 업그레이드할 수 없으며 최대한 빨리 문제를 해결하기 위해 노력하고 있습니다. 잠시만요 <1>다시 시도해<0>.", - "-1424352390": "<0>Wallets<1> — 자금을 더 스마트하게 관리하는 방법", "-2146691203": "규제 항목 선택", "-249184528": "EU 또는 비 EU 규정에 따라 실제 계정을 만들 수 있습니다.<0><0/>아이콘을 클릭하면 해당 계정에 대해 자세히 알아볼 수 있습니다.", "-1505234170": "Trader's Hub 투어", @@ -2860,7 +2844,6 @@ "-1949883551": "계정이 하나뿐입니다.", "-1149845849": "Trader's Hub로 돌아가기", "-1232852916": "해당 거래를 확인하기 위해 우리는 귀하의 {{currency}} 계좌로 변경하고 있습니다.", - "-759000391": "우리는 귀하의 정보를 자동으로 인증할 수 없었습니다. 이 기능을 활성화시키기 위해서, 귀하께서는 반드시 다음을 완료하셔야 합니다:", "-1632668764": "동의합니다", "-544232635": "주소를 생성하기 위해 입금 페이지로 가시기 바랍니다. 그러고 난 후 귀하의 거래를 계속 진행하기 위해 여기로 돌아와 주세요.", "-1161069724": "아래에 보이는 암호화폐 주소를 복사하시기 바랍니다. 귀하의 암호화폐를 입금하기 위해서 필요하실 것입니다.", @@ -3267,7 +3250,6 @@ "-821418875": "트레이더", "-679102561": "계약 세부사항", "-430118939": "불만절차", - "-568280383": "Deriv 게이밍", "-1308346982": "파생", "-579984289": "파생 데모", "-1596515467": "파생 BVI", @@ -3390,7 +3372,6 @@ "-689237734": "진행", "-1642457320": "헬프센터", "-1966944392": "네트워크 상태: {{status}}", - "-594209315": "유럽에서 합성지수는 W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta에 위치하고 몰타 게임 당국에 의해 (<0>라이센스 번호. MGA/B2C/102/2000) 그리고 아일랜드의 경우 국세청에 의해 인가 및 규제되는 (<2>라이센스 번호. 1010285) {{legal_entity_name}} 에 의해 재공됩니다.", "-181484419": "책임감 있는 거래", "-650505513": "전체 화면", "-1823504435": "공지 확인", @@ -3400,8 +3381,8 @@ "-1496158755": "Deriv.com으로 이동", "-1323441180": "본인은 브라질 이외 지역에서 독점적으로 발행 및 제공되는 OTC 상품을 거래하기 위해 Deriv를 통한 계정을 개설하고자 하는 요청이 본인에 의해 시작되었음을 확정합니다. 본인은 Deriv가 CVM의 규제를 받지 않는다는 것을 충분히 이해하고 있으며 Deriv에 접근하여 외국 회사와 관계를 수립할 계획입니다.", "-1396326507": "안타깝게도, {{website_name}}은 귀하의 국가에서 이용하실 수 없습니다.", - "-1019903756": "종합", "-288996254": "가능하지 않습니다", + "-1019903756": "종합", "-735306327": "계좌 관리", "-1813972756": "계정 생성이 24시간동안 일시 중지되었습니다", "-366030582": "죄송합니다. 지금은 계정을 생성하실 수 없습니다. 이전의 위험 경고를 거부하셨으므로 첫 번째 계정 생성 시도 후 24시간이 지난 후에 진행할 수 있습니다.<0/><0/>", @@ -3424,9 +3405,6 @@ "-175638343": "계좌를 선택하시거나 또는 새 계좌를 추가하세요", "-1768223277": "귀하의 계좌는 준비되었습니다", "-1215717784": "<0>귀하께서는 귀하의 통화를 {{currency}}로 성공적으로 변경하셨습니다.<0>트레이딩을 시작하기 위해 지금 예금하세요.", - "-786091297": "데모에서 거래하기", - "-228099749": "귀하의 신분과 주소를 인증해주시기 바랍니다", - "-1041852744": "우리는 귀하의 개인정보를 처리하고 있습니다", "-1775006840": "거래를 시작하기 위해 지금 예금하세요.", "-983734304": "귀하께서 트레이딩을 시작하실 수 있기 전에 우리는 귀하의 신분 및 주소증명이 필요합니다.", "-917733293": "거래하시기 위해, 귀하의 거주지를 확인해주시기 바랍니다.", @@ -3434,7 +3412,6 @@ "-952649119": "로그인", "-3815578": "가입하기", "-1456176427": "귀하의 실제계좌에 대한 통화를 설정하세요", - "-1557011219": "실제 Deriv 옵션 계좌를 추가하세요", "-241733171": "Deriv 금융 계좌 추가", "-1329687645": "암호화폐 계좌를 생성하세요", "-1429178373": "새 계좌를 생성하세요", @@ -3471,14 +3448,10 @@ "-2142491494": "네, 알겠습니다", "-611136817": "가짜 링크에 주의하세요.", "-1342699195": "총 이윤/손실:", - "-943710774": "떄때로 변경될 수 있는 이 불만사항 정책은 {{legal_entity_name}} 을 통해 등록되어 있는 귀하의 계좌에 적용되며 이의 오피스는 First Floor, Millennium House, Victoria Road, Douglas, Isle of Man, IM2 4RW에 위치하고 (1) 맨섬의 도박 감독 위원회(현재 <0>라이센스는 2017년 8월 31일에 발급되었습니다) 에 의해 각각 인가 및 규제되며 (2) 영국의 도박 위원회(<1>라이센스 번호. 39172). 에 의해 등록되었습니다.", - "-255056078": "때때로 변경될 수 있는 이 불만사항 정책은 {{legal_entity_name}} 를 통해 귀하의 계좌(들) 에 적용되며, 이곳은 W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033, Malta에 위치하고 도박 상품만을 위해 몰타 게임 당국에 의해 인가되고 규제됩니다<0>라이센스 번호. MGA/B2C/102/2000 그리고 영국에 거주하시는 고객분들의 경우 영국 도박 위원회에 의해 의해 인가 및 규제됩니다(account number 39495).", "-1941013000": "때때로 변경될 수 있는 이 불만사항 정책은 {{legal_entity_name_svg}}, {{legal_entity_name_fx}}, 및 {{legal_entity_name_v}} 을 통해 등록되어 있는 귀하의 계좌(들) 에 적용됩니다.", "-594812204": "때때로 변경될 수 있는 이 불만사항 정책은 {{legal_entity_name_svg}} 을 통해 등록되어 있는 귀하의 계좌(들) 에 적용됩니다.", "-813256361": "우리는 고객을 공정하게 대하고 훌륭한 서비스를 제공하기 위해 최선을 다하고 있으며, 귀하에 대한 서비스를 개선할 수 있는 방법에 대해 여러분의 의견을 듣고 싶습니다. <0/> <1/>귀하가 제공하는 모든 정보는 가장 엄격하게 기밀로 취급됩니다.여러분의 의견을 듣고 소중히 여기며 항상 공정한 대우를 받으실 수 있으니 안심하십시오.", "-1622847732": "{{legal_entity_name}} 을 통한 귀하의 거래 계정에 관련한 요청 사항이 있는 경우, 당사의 <0>헬프 센터를 통해 연락 또는 <1>실시간 채팅을 통해 문의하실 수 있습니다.<2/><3/>저희는 귀하의 문의사항에 대하여 최대한 신속하게 해결할 수 있도록 최선을 다하며 저희가 해당 문의사항을 해결하기까지 기다려 주심에 대하여 감사드립니다.<4/><5/>저희는 고객에게 가능한 최상의 서비스와 지원을 제공할 수 있도록 노력합니다. 하지만, 당사가 해결할 수 없는 부분이 있는 경우 또는 귀하께서 저희의 답변에 만족하시지 않는 경우에는 귀하로부터 의견을 듣기를 희망합니다. 저희가 귀하께서 우려하시는 부분을 검토하고 해결할 수 있도록 귀하께서 공식적으로 제기하시는 불만을 신중히 확인하겠습니다.", - "-1639808836": "귀하께서 해당 결과에 만족하지 않으신다면, 귀하께서는 IBAS 심사 서류를 작성하심으로써 <0>독립 베팅 심사 서비스(IBAS)로 귀하의 불만을 접수하실 수 있습니다. IBAS는 거래의 결과로 인한 분쟁만을 다룬다는 것을 인지하시기 바랍니다.", - "-1505742956": "<0/><1/>귀하께서는 또한 귀하의 분쟁을 <2>Player Support Unit을 통해 몰타 게임 당국으로 참조되도록 하실 수도 있습니다.", "-1406192787": "만약 귀하께서 결과를 만족하지시 못하시면, 귀하께서는 <0>금융 위원회로 귀하의 불만을 접수하실 수 있습니다.", "-1776547326": "<0/><1/>만약 귀하께서 영국에서 거주하시고 우리의 답변이 마음에 들지 않으시면 귀하께서는 불만을 <2>금융 옴부즈만 서비스로 접수하실 수 있습니다.", "-2115348800": "1. 소개", @@ -3561,7 +3534,6 @@ "-1969608084": "외환거래 및 암호화폐", "-800771713": "Labuan Financial Services Authority (라이센스 번호. MB/18/0024)", "-1497128311": "80+", - "-1501230046": "0.6 pips", "-1689815930": "귀하께서는 특정 기준에 도달하게 되면 신분 및 주소 증명을 제출하셔야 합니다.", "-1175785439": "Deriv (SVG) LLC (회사 번호 273 LLC 2020)", "-139026353": "자신의 셀카.", @@ -4102,7 +4074,6 @@ "-1750896349": "달랑베르", "-102980621": "오스카의 그라인드 전략은 1965년 처음 나타난 낮은 위험의 긍정적 진행 전략입니다. 이 전략을 활용함으로써, 귀하의 계약 규모는 성공적인 거래 이후 증가할 것입니다. 하지만, 성공적이지 않은 거래 이후에는 변함없이 그대로 유지될 것입니다.", "-462715374": "제목없는 봇", - "-538215347": "순 예금", "-280147477": "모든 거래", "-137444201": "구매", "-130601012": "기간을 선택해 주시기 바랍니다", diff --git a/packages/translations/src/translations/pl.json b/packages/translations/src/translations/pl.json index f8700bf2286b..4bdaee658895 100644 --- a/packages/translations/src/translations/pl.json +++ b/packages/translations/src/translations/pl.json @@ -1,5 +1,4 @@ { - "1014140": "Aby złożyć skargę, możesz również zadzwonić na numer telefonu: <0>+447723580049.", "1485191": "1:1000", "2082741": "numer dodatkowego dokumentu", "2091451": "Deriv Bot - Państwa zautomatyzowany partner handlowy", @@ -205,12 +204,10 @@ "218441288": "Numer dowodu osobistego", "220014242": "Prześlij selfie ze swojego komputera", "220186645": "Tekst jest pusty", - "220232017": "demo CFD", "221261209": "Rachunek Deriv umożliwia Państwu zasilanie (i wypłacanie) środków z rachunków CFD.", "223120514": "W tym przykładzie każdy punkt linii SMA jest średnią arytmetyczną cen zamknięcia w okresie ostatnich 50 dni.", "223607908": "Statystyki ostatnich cyfr dla ostatnich 1000 ticków dla {{underlying_name}}", "224650827": "IOT/USD", - "224929714": "Zakłady oparte na wydarzeniach wirtualnych są oferowane w Wielkiej Brytanii i na Wyspie Man przez {{legal_entity_name}}, Millennium House, Level 1, Victoria Road, Douglas IM2 4RW, Wyspa Man, za licencję i regulację odpowiada Komisja ds. gier hazardowych: Gambling Commission pod <0>numerem konta 39172 i Komisja Nadzoru Gier Hazardowych Wyspy Man: Gambling Supervision Commission (<1>zobacz licencję).", "225887649": "Ten blok jest obowiązkowy. Jest dodawany do strategii domyślnie przy tworzeniu nowej strategii. Możesz dodać tylko jedną kopię tego bloku do kanwy.", "227591929": "Na znacznik czasu {{ input_datetime }} {{ dummy }}", "227903202": "Za przelewy w różnych walutach między kontem Deriv w walucie fiducjarnej a kontem {{platform_name_mt5}} pobierana jest opłata w wysokości 1% kwoty transferu.", @@ -262,7 +259,6 @@ "273728315": "Nie może być puste ani wynosić 0", "274268819": "Indeks Volatility 100", "275116637": "Deriv X", - "276639155": "Wprowadź kod pocztowy, który zawiera mniej niż 20 znaków.", "276770377": "Nowe konta MT5 podlegające jurysdykcji {{to_account}} zostaną utworzone dla nowych transakcji.", "277469417": "Czas wyłączenia nie może być dłuższy niż pięć lat.", "278684544": "uzyskaj listę podrzędną z # od końca", @@ -271,7 +267,6 @@ "282319001": "Sprawdź swój obraz", "282564053": "Następnie będziemy potrzebować potwierdzenia adresu.", "283830551": "Twój adres nie pasuje do Twojego profilu", - "283986166": "Opcja samo-wykluczenia dostępna na stronie internetowej odnosi się wyłącznie do Twojego konta {{brand_website_name}} i nie obejmuje innych firm czy witryn internetowych.", "284527272": "anty-tryb", "284772879": "Kontrakt", "284809500": "Demo finansowe", @@ -376,7 +371,6 @@ "401339495": "Zweryfikuj adres", "401345454": "Przejdź do zakładki Samouczki, aby to zrobić.", "403456289": "Formuła dla SMA to:", - "404743411": "Wszystkie wpłaty", "406359555": "Szczegóły kontraktu", "406497323": "Sprzedaj swoje aktywne kontrakty, jeśli jest to konieczne (opcjonalnie)", "411482865": "Dodaj konto {{deriv_account}}", @@ -468,11 +462,11 @@ "502041595": "Ten blok daje określoną świecę z wybranego interwału czasowego.", "505793554": "ostatnia litera", "508390614": "Demo finansowe STP", - "510815408": "Tylko litery, liczby, spacje, myślniki", "511679687": "Accumulators umożliwiają Państwu wyrażenie opinii na temat zakresu ruchu indeksu i wykładniczy wzrost Państwa stawki przy stałej <0>stopie wzrostu.", "514031715": "lista {{ input_list }} jest pusta", "514776243": "Hasło do Twojego konta {{account_type}} zostało zmienione.", "514948272": "Kopiuj link", + "517631043": "Wysłaliśmy Twojego e-booka. Sprawdź swoją pocztę e-mail, aby ją pobrać.", "517833647": "Indeks Volatility 50 (1s)", "518955798": "7. Uruchom raz przy starcie", "519205761": "Nie możesz już otwierać nowych pozycji za pomocą tego konta.", @@ -499,7 +493,6 @@ "542038694": "W przypadku {{label}} akceptowane są wyłącznie litery, cyfry, znak spacji i podkreślenia oraz łącznik.", "542305026": "Musisz dostarczyć również dokument potwierdzający tożsamość.", "543413346": "Nie masz żadnych otwartych pozycji dla tego aktywa. Aby zobacz inne otwarte pozycje, przejdź do sekcji Raporty", - "545476424": "Wszystkie wypłaty", "547029855": "Jeśli wybiorą Państwo tę funkcję, mogą Państwo anulować transakcję w wybranym przedziale czasowym, jeśli cena aktywów zmieni się na Państwa niekorzyść. Otrzymają Państwo z powrotem swoją stawkę bez zysku/straty. Pobieramy za to niewielką opłatę. Uzyskaj zysk i Stop stratom są wyłączone, gdy anulowanie transakcji jest aktywne.", "549479175": "Deriv Multipliers", "549799607": "Proszę przejść do LiveChat", @@ -628,6 +621,7 @@ "665777772": "XLM/USD", "665872465": "W poniższym przykładzie wybrana jest cena otwarcia, która następnie jest przypisana do zmiennej o nazwie „op”.", "666724936": "Wprowadź prawidłowy numer identyfikacyjny.", + "669494711": "1.4 pipsa", "671630762": "Akceptujemy tylko te rodzaje dokumentów jako dowód Państwa adresu. Dokument musi być aktualny (wydany w ciągu ostatnich {{expiry_in_months}} miesięcy) i zawierać Państwa imię i nazwisko oraz adres:", "672008428": "ZEC/USD", "673915530": "Jurysdykcja i wybór prawa", @@ -693,7 +687,6 @@ "721011817": "- Podnieś pierwszą liczbę do potęgi drugiej liczby", "723045653": "Przy użyciu tego adresu e-mail będziesz się logować do swojego konta Deriv.", "723961296": "Zarządzanie hasłem", - "724203548": "Możesz wysłać swoją skargę przez platformę <0>Komisji Europejskiej do Rozstrzygania Sporów On-line (ODR). Ta opcja nie jest dostępna dla klientów z Wielkiej Brytanii.", "724526379": "Dowiedz się więcej z naszych samouczków", "728042840": "Aby kontynuować inwestowanie z nami, potwierdź, gdzie mieszkasz.", "728824018": "Indeks hiszpański", @@ -726,7 +719,6 @@ "755138488": "Nie jesteśmy w stanie zweryfikować dostarczonego przez Ciebie dokumentu, ponieważ zawiera on oznaczenia lub tekst, który nie powinien się na nim znajdować. Prosimy o dostarczenie wyraźnego zdjęcia lub skanu oryginalnego dokumentu tożsamości.", "756152377": "SMA przydziela taką samą wagę wszystkim wartościom.", "758003269": "utwórz listę z tekstu", - "759783233": "Aby uzyskać więcej informacji i pomoc w zakresie usług wsparcia, odwiedź stronę: <0>begambleaware.org.", "760528514": "Pamiętaj, że zmiana wartości „i” nie zmienia wartości pierwotnego elementu na liście", "761576760": "Zasil swoje konto, aby rozpocząć inwestowanie.", "762926186": "Szybka strategia to gotowa strategia, której można użyć w Deriv Bot. Do wyboru są 3 szybkie strategie: Martingale, D'Alembert i Oscar's Grind.", @@ -1105,7 +1097,6 @@ "1128404172": "Cofnij", "1129124569": "Jeśli wybierzesz \"Under\", zdobędziesz wypłatę, gdy ostatnia cyfra ostatniego ticku (najmniejszego przyrostu ceny) będzie mniejsza niż cyfra przewidywana przez Ciebie.", "1129842439": "Wprowadź kwotę opcji Uzyskaj zysk.", - "1130744117": "Będziemy się starać rozpatrzeć Twoją skargę w terminie 10 dni roboczych. Poinformujemy Cię o wyniku jej rozpatrzenia wraz z wyjaśnieniem naszego stanowiska i zaproponujemy środku zaradcze, jakie zamierzamy podjąć.", "1130791706": "N", "1133651559": "Czat na żywo", "1134879544": "Przykład prześwietlonego dokumentu", @@ -1274,7 +1265,6 @@ "1304083330": "kopiuj", "1304272843": "Proszę dostarczyć dokument potwierdzający adres.", "1304620236": "Włącz aparat", - "1304788377": "<0/><1/>Jeśli Twoja skarga odnosi się do naszych praktyk w zakresie przetwarzania danych, możesz złożyć oficjalną skargę do <2>Komisarza ds. ochrony informacji i danych (Information and Data Protection Commissioner na Malcie) na stronie internetowej tego organu. Możesz też złożyć skargę do dowolnego Organu Nadzoru w Unii Europejskiej.", "1305217290": "Prześlij tylną stronę dowodu tożsamości.", "1308625834": "Ustawia domyślny interwał czasowy dla bloków, które czytają listę świec.", "1309017029": "Włączenie tej funkcji umożliwi zapisywanie Twoich bloków jako jednej kolekcji, którą można łatwo zintegrować z innymi botami.", @@ -1512,6 +1502,7 @@ "1531017969": "Tworzy pojedynczy ciąg tekstu poprzez połączenie wartości tekstu poszczególnych załączonych elementów bez spacji. Liczbę elementów można dodać odpowiednio.", "1533177906": "Fall", "1534796105": "Pobiera wartość zmiennej", + "1537192641": "Nie można przetworzyć Twojego żądania", "1537711064": "Musisz dokonać szybkiej weryfikacji tożsamości, zanim uzyskasz dostęp do sekcji Kasjer. Przejdź do ustawień konta, aby przesłać potwierdzenie swojej tożsamości.", "1540585098": "Odrzuć", "1541508606": "Szukasz kontraktów CFD? Przejdź do Centrum Handlowego", @@ -1562,7 +1553,6 @@ "1594147169": "Wróć za", "1594322503": "Dostępna jest opcja sprzedaży", "1595295238": "3. Proszę użyć bloku logicznego, aby sprawdzić, czy Całkowity zysk/strata przekracza wartość Progową Stop stratom. Zmienną Całkowity zysk/strata można znaleźć w zakładce Analiza > Statystyki w Menu bloków po lewej stronie. Twój bot będzie kontynuował kupowanie nowych kontraktów, dopóki Całkowity zysk/strata nie przekroczy Progową Stop stratom.", - "1596378630": "Dodano prawdziwe konto gracza.<0/>Dokonaj wpłaty środków już teraz, aby zacząć inwestować.", "1597672660": "Hasło Deriv MT5", "1598009247": "<0>a.Możesz złożyć skargę do Komisji Finansowej do 45 dni od momentu zdarzenia.", "1598386296": "Miasto jest polem wymaganym.", @@ -1730,7 +1720,6 @@ "1763123662": "Prześlij swój dokument NIMC.", "1766212789": "Konserwacja serwera rozpoczyna się o godz. 06:00 GMT w każdą niedzielę. Konserwacja może potrwać do 2 godzin. W tym czasie możliwe jest zakłócenie usług.", "1766993323": "Dozwolone są tylko litery, cyfry i podkreślniki.", - "1767429330": "Dodaj konto pochodne", "1768293340": "Wartość umowy", "1768861315": "Minuta", "1768918213": "Dozwolone są tylko litery, spacja, myślniki, kropki i apostrof.", @@ -1744,6 +1733,7 @@ "1779144409": "Wymagana jest weryfikacja konta", "1779519903": "Akceptowane są tylko liczby.", "1779801832": "Proszę odpowiednio zaktualizować swoje hasło.", + "1779872677": "Pobierz e-booka", "1780442963": "Zeskanuj kod QR, aby pobrać {{ platform }}.", "1780770384": "Ten blok daje losową wartość ułamkową między 0,0 a 1,0.", "1782308283": "Szybka strategia", @@ -1754,7 +1744,6 @@ "1783740125": "Prześlij swoje zdjęcie typu selfie", "1785298924": "D'Alembert formuła 1", "1786644593": "Obsługiwane formaty: tylko JPEG, JPG, PNG, PDF i GIF", - "1787135187": "Kod pocztowy jest wymagany", "1787492950": "Wskaźniki w zakładce wykresu są wyłącznie orientacyjny charakter i mogą się nieznacznie różnić od tych widocznych w obszarze roboczym {{platform_name_dbot}}.", "1788515547": "<0/>Aby uzyskać więcej informacji na temat złożenia skargi do Urzędu Arbitra ds. Usług Finansowych, <1>zapoznaj się z ich wskazówkami.", "1788966083": "01-07-1999", @@ -1820,7 +1809,6 @@ "1850031313": "- Niska: najniższa cena", "1850132581": "Nie znaleziono kraju", "1850659345": "- Wypłata: wypłata kontraktu", - "1850663784": "Prześlij dowody", "1851052337": "Miejsce urodzenia jest wymagane.", "1851776924": "wyższy", "1854480511": "Sekcja Kasjer jest zablokowana", @@ -1837,7 +1825,6 @@ "1865525612": "Brak ostatnich transakcji.", "1866244589": "Pozycja wejściowa to pierwszy tick dla High/Low Ticks.", "1866811212": "Wpłacaj w swojej lokalnej walucie przez autoryzowanego i niezależnego pośrednika płatności w Twoim kraju.", - "1866836018": "<0/><1/>Jeśli Twoja skarga odnosi się do naszych praktyk w zakresie przetwarzania danych, możesz złożyć oficjalną skargę do lokalnego organu nadzoru.", "1867217564": "Indeks musi być dodatnią liczbą całkowitą", "1867783237": "High-to-Close", "1869315006": "Zobacz, jak chronimy Twoje fundusze, aby odblokować sekcję Kasjer.", @@ -1848,7 +1835,6 @@ "1871377550": "Czy oferują Państwo gotowe boty handlowe na Deriv Bot?", "1871664426": "Uwaga", "1873376454": "Jest to poziom cenowy, który Państwo wybierają. Jeśli ta bariera zostanie kiedykolwiek przekroczona, Państwa umowa zostanie rozwiązana.", - "1873838570": "Zweryfikuj swój adres", "1874481756": "Użyj tego bloku, aby zakupić określony kontrakt. Możesz dodać kilka bloków typu Zakup razem z blokami warunkowymi, aby określić warunki Twojego zakupu. Ten blok może być użyty tylko w obrębie bloku Warunki zakupu.", "1874756442": "BVI", "1875702561": "Załaduj lub zbuduj swojego bota", @@ -1890,7 +1876,6 @@ "1906213000": "Nasz system zakończy wszystkie transakcje Deriv Bot, które są w toku, a Deriv Bot nie będzie zawierał żadnych nowych transakcji.", "1906639368": "Jeśli próbujesz utworzyć hasło pierwszy raz lub nie pamiętasz hasła, zresetuj je.", "1907423697": "Zarabiaj więcej dzięki Deriv API", - "1907884620": "Dodaj prawdziwe konto gracza Deriv", "1908023954": "Przepraszamy, podczas przetwarzania żądania wystąpił błąd.", "1908239019": "Upewnij się, że całość dokumentu jest na zdjęciu", "1908686066": "Ostrzeżenie o ocenie zdolności", @@ -1993,7 +1978,6 @@ "2001222130": "Sprawdź folder spam lub kosz. Jeśli nie ma tam wiadomości, spróbuj wysłać ją ponownie.", "2001361785": "1. Zacznij od początkowej stawki. Powiedzmy, że 1 USD.", "2004052487": "Szacowanie żywotności Twoich transakcji", - "2004792696": "Jeśli jesteś mieszkańcem Wielkiej Brytanii, aby dokonać samo-wyłączenia ze wszystkich firm oferujących handel online w Wielkiej Brytanii, przejdź do <0>www.gamstop.co.uk.", "2007028410": "rynek, rodzaj zakładu, rodzaj kontraktu", "2010759971": "Przesłano pomyślnie", "2010866561": "Zwraca całkowity zysk/stratę", @@ -2073,7 +2057,6 @@ "2085387371": "Muszą to być liczby, litery i znaki specjalne . , ' -", "2085602195": "- Wartość wejściowa: wartość pierwszego ticku kontraktu", "2086048243": "Świadectwo rejestracji", - "2086742952": "Dodano prawdziwe konto Opcji.<0/>Dokonaj wpłaty środków już teraz, aby zacząć inwestować.", "2086792088": "Oba limity powinny być wartością absolutną lub względną", "2088735355": "Limity sesji i logowania", "2089087110": "Indeksy koszykowe", @@ -2281,7 +2264,6 @@ "-1699820408": "Wprowadź {{field_name}} o maksymalnej liczbie znaków: {{max_number}}.", "-1575567374": "kod pocztowy", "-816263501": "Dozwolone są tylko litery, cyfry, spacja i myślnik.", - "-1497654315": "Nasze konta i usługi nie są dostępne dla adresów z kodem pocztowym Jersey.", "-755626951": "Uzupełnij swoje dane adresowe", "-1024240099": "Adres", "-1534917661": "Wybierz preferowaną walutę", @@ -2348,6 +2330,7 @@ "-1458676679": "Wprowadź od 2 do 50 znaków.", "-1116008222": "Proszę wprowadzić 9-35 cyfr.", "-1995979930": "Pierwsza linia adresu jest wymagana.", + "-703454156": "Wprowadź kod pocztowy, który zawiera mniej niż 20 znaków.", "-2113555886": "Dozwolone są tylko litery, cyfry, spacja i myślnik.", "-1103497546": "Deklaracja podatkowa", "-700600899": "Biznesowy dowód adresu", @@ -2499,7 +2482,6 @@ "-1545823544": "7 dni", "-180147209": "Po przekroczeniu tego limitu czasu nastąpi automatyczne wylogowanie z każdej sesji.", "-374553538": "Twoje konto zostanie wykluczone z portalu do tej daty (co najmniej 6 miesięcy, do 5 lat).", - "-2121421686": "Aby dokonać samo-wyłączenia ze wszystkich firm oferujących handel online w Wielkiej Brytanii, przejdź do <0>www.gamstop.co.uk.", "-2105708790": "Maksymalne saldo konto i liczba otwartych pozycji", "-1960600163": "Gdy saldo Twojego konta osiągnie tę kwotę, nie będzie możliwe wpłacanie środków na konto.", "-1073845224": "Liczba otwartych pozycji", @@ -2653,6 +2635,7 @@ "-1728732301": "Łatwe logowanie za pomocą passkeys", "-684009726": "Edytuj passkey", "-1140319320": "Twoje konto jest teraz zabezpieczone passkey. <0/> Zarządzaj swoim passkey za pomocą ustawień konta Deriv. <0/>", + "-1036903080": "Mamy tymczasowy problem z przetwarzaniem Twojej prośby. Spróbuj ponownie później.", "-331060101": "Konfiguracja Passkey nie powiodła się", "-713875531": "Włącz bluetooth.", "-80717068": "Aplikacje, połączone z <0>hasłem Deriv:", @@ -2710,6 +2693,10 @@ "-145462920": "Deriv cTrader", "-1210359945": "Przelew środków na swoje konta", "-81256466": "Aby utworzyć konto CFD, potrzebujesz konta Deriv.", + "-1926387364": "Wysłaliśmy Twój e-book na Twój adres e-mail. Możesz go także pobrać tutaj.", + "-1057002564": "<0>W tej chwili nie jesteśmy w stanie uaktualnić Cię do Wallets i pracujemy nad naprawieniem tego tak szybko, jak to możliwe. Proszę <1>próbuj ponownie<0>.", + "-1424352390": "<0>Wallets<1> — mądrzejszy sposób na zarządzanie środkami", + "-280236366": "Włącz teraz", "-699372497": "Handluj z dźwignią finansową i wąskimi spreadami, aby <0>uzyskać lepszy zwrot z udanych transakcji.", "-982095728": "Dostać", "-1790089996": "NOWOŚĆ!", @@ -2733,13 +2720,10 @@ "-2055865877": "Regulacje spoza UE", "-643108528": "Regulacje spoza UE i UE", "-1002556560": "Nie możemy dokończyć aktualizacji Wallet. Proszę spróbować ponownie później lub skontaktować się z nami za pośrednictwem czatu na żywo.", - "-280236366": "Włącz teraz", "-2051096382": "Zarabiaj szereg wypłat, poprawnie przewidując ruchy rynkowe z <0>opcjami lub zyskaj\n wzrost kontraktów CFD bez ryzykowania więcej niż początkowa stawka z <1>multipliers.", "-1638358352": "Zdobądź wzrost kontraktów CFD, nie ryzykując więcej niż początkowa stawka z <0>Multipliers.", "-744999940": "Konta Deriv", "-749129977": "Zdobądź prawdziwe konto Deriv, zacznij handlować i zarządzaj swoimi środkami.", - "-1057002564": "<0>W tej chwili nie jesteśmy w stanie uaktualnić Cię do Wallets i pracujemy nad naprawieniem tego tak szybko, jak to możliwe. Proszę <1>próbuj ponownie<0>.", - "-1424352390": "<0>Wallets<1> — mądrzejszy sposób na zarządzanie środkami", "-2146691203": "Wybór regulacji", "-249184528": "Możesz tworzyć konta rzeczywiste zgodnie z przepisami UE lub spoza UE. Kliknij <0><0/>ikonę, aby dowiedzieć się więcej o tych kontach.", "-1505234170": "Wycieczka po Trader's Hub", @@ -2860,7 +2844,6 @@ "-1949883551": "Masz tylko jedno konto", "-1149845849": "Powrót do Trader's Hub", "-1232852916": "W celu wyświetlenia transakcji nastąpi przekierowanie na Twoje konto {{currency}}.", - "-759000391": "Nie udało się przeprowadzić automatycznej weryfikacje Twoich danych. Aby włączyć tę funkcję, musisz wykonać następujące czynności:", "-1632668764": "Akceptuję", "-544232635": "Przejdź do strony wpłat, aby wygenerować adres. Następnie wróć tutaj, aby kontynuować transakcję.", "-1161069724": "Skopiuj krypto-adres widoczny poniżej. Będzie potrzebny do dokonania wpłaty kryptowaluty.", @@ -3267,7 +3250,6 @@ "-821418875": "Gracz", "-679102561": "Szczegóły kontraktu", "-430118939": "Polityka dot. skarg", - "-568280383": "Gra hazardowa Deriv", "-1308346982": "Pochodne", "-579984289": "Pochodne Demo", "-1596515467": "Pochodne BVI", @@ -3390,7 +3372,6 @@ "-689237734": "Kontynuuj", "-1642457320": "Centrum pomocy", "-1966944392": "Status sieci: {{status}}", - "-594209315": "Wskaźniki syntetyczne w UE są oferowane przez {{legal_entity_name}}, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta; jest objęta licencją i regulacjami instytucji Malta Gaming Authority na Malcie (<0>licencja o numerze MGA/B2C/102/2000), a dla klientów w Irlandii przez Revenue Commissioners w Irlandii (<2>licencja o numerze 1010285).", "-181484419": "Odpowiedzialne handlowanie", "-650505513": "Pełny ekran", "-1823504435": "Pokaż powiadomienia", @@ -3400,8 +3381,8 @@ "-1496158755": "Przejdź do Deriv.com", "-1323441180": "Niniejszym potwierdzam, że mój wniosek o otwarcie rachunku w Deriv w celu handlu produktami OTC emitowanymi i oferowanymi wyłącznie poza Brazylią został zainicjowany przeze mnie. W pełni rozumiem, że Deriv nie jest regulowany przez CVM i zwracając się do Deriv, zamierzam nawiązać relację z zagraniczną firmą.", "-1396326507": "Niestety strona {{website_name}} jest niedostępna w Twoim kraju.", - "-1019903756": "Syntetyczne", "-288996254": "Niedostępne", + "-1019903756": "Syntetyczne", "-735306327": "Zarządzaj kontami", "-1813972756": "Tworzenie konta wstrzymane na 24 godziny", "-366030582": "Przepraszamy, w tej chwili nie możesz utworzyć konta. Ponieważ odrzuciłeś nasze poprzednie ostrzeżenia o ryzyku, musisz poczekać 24 godziny po pierwszej próbie utworzenia konta, zanim będziesz mógł kontynuować.<0/><0/>", @@ -3424,9 +3405,6 @@ "-175638343": "Wybierz konto lub dodaj nowe", "-1768223277": "Twoje konto jest gotowe", "-1215717784": "<0>Twoja waluta została zmieniona na {{currency}}.<0>Dokonaj wpłaty, aby rozpocząć handlowanie.", - "-786091297": "Handluj w wersji demo", - "-228099749": "Zweryfikuj swoją tożsamość i adres", - "-1041852744": "Przetwarzamy Twoje informacje osobowe", "-1775006840": "Wpłać środki teraz, aby rozpocząć handlowanie.", "-983734304": "Przed rozpoczęciem inwestowania wymagany jest dowód tożsamości i adresu.", "-917733293": "Aby rozpocząć inwestowanie, potwierdź swoje miejsce zamieszkania.", @@ -3434,7 +3412,6 @@ "-952649119": "Zaloguj", "-3815578": "Zarejestruj się", "-1456176427": "Ustaw walutę dla swojego prawdziwego konta", - "-1557011219": "Dodaj prawdziwe konto Opcji Deriv", "-241733171": "Dodaj konto finansowe Deriv", "-1329687645": "Utwórz konto w kryptowalucie", "-1429178373": "Załóż nowe konto", @@ -3471,14 +3448,10 @@ "-2142491494": "Rozumiem", "-611136817": "Uważaj na fałszywe linki.", "-1342699195": "Całkowity zysk/strata:", - "-943710774": "Niniejsza polityka ds. skarg może być co jakiś czas aktualizowana i odnosi się do kont zarejestrowanych przez {{legal_entity_name}}, z siedzibą pod adresem: First Floor, Millennium House, Victoria Road, Douglas, Wyspa Man, Wyspy Brytyjskie; za wydawanie licencji i jego regulację odpowiada odpowiednio (1) Komisja Nadzoru Gier Hazardowych Wyspy Man, na Wyspach Brytyjskich (Gambling Supervision Commission) – aktualna <0>licencja została wydana dnia 31 sierpnia 2017 r., (2) Komisja ds. Gier Hazardowych w Zjednoczonym Królestwie (UK Gambling Commission) – (licencja o <1>numerze referencyjnym: 39172).", - "-255056078": "Niniejsza polityka ds. skarg może być co jakiś czas aktualizowana i odnosi się do kont zarejestrowanych przez firmę {{legal_entity_name}}, z siedzibą pod adresem: W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033, Malta, objętą licencją i regulacjami Urzędu ds. Gier Hazardowych na Malcie: Malta Gaming Authority w przypadku produktów hazardowych, <0>licencja o numerze: MGA/B2C/102/2000, a dla klientów z Wielkiej Brytanii przez Komisję ds. Gier Hazardowych w Zjednoczonym Królestwie: UK Gambling Commission (numer konta 39495).", "-1941013000": "Polityka składania skarg, która może ulegać zmianom co jakiś czas, ma zastosowanie w odniesieniu do Twoich kont zarejestrowanych przez {{legal_entity_name_svg}}, {{legal_entity_name_fx}} oraz {{legal_entity_name_v}}.", "-594812204": "Polityka składania skarg, która może ulegać zmianom co jakiś czas, ma zastosowanie w odniesieniu do Twojego kont zarejestrowanych przez {{legal_entity_name_svg}}.", "-813256361": "Jesteśmy zobowiązani do uczciwego traktowania naszych klientów i zapewniania im doskonałej obsługi. <0/> <1/> Chcielibyśmy usłyszeć od Ciebie, jak możemy ulepszyć nasze usługi. Wszelkie informacje, które podasz, będą traktowane w ścisłej tajemnicy. Zapewniamy, że zostaniesz wysłuchany, doceniony i zawsze traktowany sprawiedliwie.", "-1622847732": "Jeśli masz pytanie dotyczące swojego konta handlowego z {{legal_entity_name}}, możesz skontaktować się z nami za pośrednictwem naszego <0>Centrum Pomocy lub rozmawiając z przedstawicielem za pośrednictwem <1>czatu na żywo. <2/> <3/> Dokładamy wszelkich starań, aby rozwiązać Twoje zapytanie w jak najszybszym czasie i doceniamy Twoją cierpliwość, dając nam czas na rozwiązanie sprawy. <4/> <5/> Dokładamy wszelkich starań, aby zapewnić naszym klientom najlepszą możliwą obsługę i wsparcie. Jeśli jednak nie jesteśmy w stanie rozwiązać Twojego zapytania lub jeśli uważasz, że nasza odpowiedź jest niezadowalająca, chcemy usłyszeć od Ciebie. Zapraszamy i zachęcamy do złożenia oficjalnej skargi do nas, abyśmy mogli rozpatrzyć Twoje obawy i pracować nad rozwiązaniem.", - "-1639808836": "Jeśli nie satysfakcjonuje Cię rezultat postępowania, możesz zgłosić swoją skargę do instytucji <0>Independent Betting Adjudication Service (IBAS), wypełniając formularz arbitrażowy. Należy pamiętać, że IBAS zajmuje się tylko sporami, które są związane z transakcjami.", - "-1505742956": "<0/><1/>Możesz też skierować swój spór do Urzędu ds. Gier Hazardowych: Malta Gaming Authority przez <2>Jednostkę wsparcia gracza.", "-1406192787": "Jeśli nie zadowala Cię rezultat, możesz przekazać skargę do <0>Komisji Finansowej.", "-1776547326": "<0/><1/>Jeśli jesteś mieszkańcem Wielkiej Brytanii i nie satysfakcjonuje Cię nasza odpowiedź, możesz skierować skargę do Rzecznika praw obywatelskich ds. usług finansowych (<2>Financial Ombudsman Service).", "-2115348800": "1. Wstęp", @@ -3561,7 +3534,6 @@ "-1969608084": "Forex i kryptowaluty", "-800771713": "Labuan Financial Services Authority (Nr licencji MB/18/0024)", "-1497128311": "80+", - "-1501230046": "0.6 pipsa", "-1689815930": "Po osiągnięciu określonych progów będzie konieczne przesłanie dokumentu potwierdzającego tożsamość i adres.", "-1175785439": "Deriv (SVG) LLC (spółka nr 273 LLC 2020)", "-139026353": "Selfie z siebie.", @@ -4102,7 +4074,6 @@ "-1750896349": "D'Alembert", "-102980621": "Strategia Oscara Grinda to strategia progresji dodatniej o małym ryzyku, która pojawiła się po raz pierwszy w 1965 r. Użycie tej strategii wiąże się ze zmniejszaniem wielkości kontraktu po wygranym zakładzie, i pozostawianie wielkości zakładu bez zmian po przegranym zakładzie.", "-462715374": "Bot bez nazwy", - "-538215347": "Wpłaty netto", "-280147477": "Wszystkie transakcje", "-137444201": "Kup", "-130601012": "Proszę wybrać czas trwania", diff --git a/packages/translations/src/translations/pt.json b/packages/translations/src/translations/pt.json index bf45aacacf21..5781a15b09d9 100644 --- a/packages/translations/src/translations/pt.json +++ b/packages/translations/src/translations/pt.json @@ -1,5 +1,4 @@ { - "1014140": "Também pode telefonar para o número <0>+447723580049 para apresentar a sua reclamação.", "1485191": "1:1000", "2082741": "número de documento adicional", "2091451": "Deriv Bot - o seu parceiro de negociação automatizado", @@ -205,12 +204,10 @@ "218441288": "Número do bilhete de identidade", "220014242": "Carregue uma selfie a partir do seu computador", "220186645": "O texto está vazio", - "220232017": "CFDs demo", "221261209": "A conta Deriv irá permitir-lhe financiar (e levantar) a(s) sua(s) conta(s) de CFDs.", "223120514": "Neste exemplo, cada ponto da linha Média Móvel Simples (SMA) é uma média aritmética dos preços de fecho dos últimos 50 dias.", "223607908": "Estatísticas do último dígito para os últimos 1000 ticks para {{underlying_name}}", "224650827": "IOT/USD", - "224929714": "As entradas baseadas em eventos virtuais no Reino Unido e na Ilha de Man são oferecidas por {{legal_entity_name}}, Millennium House, Level 1, Victoria Road, Douglas IM2 4RW, Ilha de Man, licenciada e regulamentada na Grã-Bretanha pela Gambling Commission sob a <0>conta n. º 39172 e pela Gambling Supervision Commission na Ilha de Man<1>(ver licença).", "225887649": "Este bloco é obrigatório. É adicionado à sua estratégia por defeito quando cria uma nova estratégia. Não é possível adicionar mais do que uma cópia deste bloco ao ecrã.", "227591929": "Para registar a data e hora {{ input_datetime }} {{ dummy }}", "227903202": "Cobramos uma taxa de transferência de 1% para transferências em moedas diferentes entre as suas contas Deriv fiat e {{platform_name_mt5}}.", @@ -262,7 +259,6 @@ "273728315": "Não deve ser 0 ou estar vazio", "274268819": "Índice Volatility 100", "275116637": "Deriv X", - "276639155": "Por favor, introduza um Código Postal/CEP com menos de 20 caracteres.", "276770377": "Será(ão) criada(s) nova(s) conta(s) MT5 sob a jurisdição {{to_account}} para novas negociações.", "277469417": "O período de exclusão não pode ser superior a cinco anos.", "278684544": "obter sublista de # do final", @@ -271,7 +267,6 @@ "282319001": "Verifique a sua imagem", "282564053": "Em seguida, precisamos do seu comprovativo de morada.", "283830551": "O seu endereço não corresponde ao seu perfil", - "283986166": "A autoexclusão no site aplica-se apenas à sua conta {{brand_website_name}} e não inclui outras empresas ou sites.", "284527272": "antimodo", "284772879": "Contrato", "284809500": "Demo Financeira", @@ -376,7 +371,6 @@ "401339495": "Valide o endereço", "401345454": "Para isso, aceda ao separador Tutoriais.", "403456289": "A fórmula para a SMA (Média Móvel Simples) é:", - "404743411": "Total de depósitos", "406359555": "Dados do contrato", "406497323": "Venda o seu contrato ativo, se necessário (opcional)", "411482865": "Adicionar conta {{deriv_account}}", @@ -468,11 +462,11 @@ "502041595": "Este bloco fornece uma vela específica dentro do intervalo de tempo selecionado.", "505793554": "última letra", "508390614": "Demo STP Financeira", - "510815408": "Apenas letras, números, espaços e hífenes", "511679687": "Os accumulators permitem-lhe expressar uma perspetiva sobre a gama de movimentos de um índice e aumentar a sua entrada exponencialmente a uma <0>taxa de crescimento fixa.", "514031715": "a lista {{ input_list }} está vazia", "514776243": "A palavra-passe {{account_type}} foi alterada.", "514948272": "Copiar link", + "517631043": "Enviámos o e-book. Verifique o seu e-mail para descarregar o e-book.", "517833647": "Índice Volatility 50 (1s)", "518955798": "7. Execute uma vez no início", "519205761": "Não é possível abrir novas posições com esta conta.", @@ -499,7 +493,6 @@ "542038694": "Só são permitidas letras, números, espaços, underscores e hífenes para {{label}}.", "542305026": "Deve também enviar um comprovativo de identidade.", "543413346": "Não existem posições em aberto para este ativo. Para ver outras posições em aberto, clique em Ir para Relatórios", - "545476424": "Total de levantamentos", "547029855": "Se selecionar esta funcionalidade, pode cancelar a sua negociação num determinado período se o preço do ativo movimentar-se em sentido contrário ao seu. Irá receber a sua entrada de volta sem lucros/perdas. Cobramos uma pequena taxa por esta ação. O \"take profit\" e o \"stop loss\" são desativados quando o \"deal cancellation\" está ativo.", "549479175": "Multipliers da Deriv", "549799607": "Aceder ao LiveChat", @@ -628,6 +621,7 @@ "665777772": "XLM/USD", "665872465": "No exemplo abaixo, é selecionado o preço de abertura, que é depois atribuído a uma variável denominada \"op\".", "666724936": "Insira um número de identificação válido.", + "669494711": "1.4 pips", "671630762": "Só aceitamos estes tipos de documentos como comprovativo de morada. O documento deve ser recente (emitido nos últimos {{expiry_in_months}} meses) e incluir o seu nome e morada:", "672008428": "ZEC/USD", "673915530": "Jurisdição e escolha da legislação", @@ -693,7 +687,6 @@ "721011817": "- Elevar o primeiro número à potência do segundo número", "723045653": "Irá iniciar sessão na sua conta Deriv com este endereço de e-mail.", "723961296": "Gerir palavra-passe", - "724203548": "Pode enviar a sua reclamação para a plataforma de Resolução de Litígios em Linha (RLL) da <0>Comissão Europeia. Isto não é aplicável aos clientes do Reino Unido.", "724526379": "Saiba mais através dos nossos tutoriais", "728042840": "Para continuar a negociar com a Deriv, por favor confirme o seu local de residência.", "728824018": "Índice Espanhol", @@ -726,7 +719,6 @@ "755138488": "Não foi possível validar o documento que forneceu por este conter marcas ou texto que não deveriam constar no documento. Por favor, forneça uma fotografia nítida ou uma digitalização do seu documento de identidade original.", "756152377": "A Média Móvel Simples (SMA) atribui o mesmo peso a toda a distribuição de valores.", "758003269": "faça uma lista a partir do texto", - "759783233": "Para mais informações e assistência a serviços de aconselhamento e apoio, visite <0>begambleaware.org.", "760528514": "Observe que a alteração do valor de \"i\" não altera o valor do item original na lista", "761576760": "Deposite fundos na sua conta para começar a negociar.", "762926186": "A Estratégia Rápida é uma estratégia predefinida que pode ser usada na Deriv Bot. Existem 3 estratégias rápidas disponíveis: Martingale, D'Alembert e Oscar's Grind.", @@ -1105,7 +1097,6 @@ "1128404172": "Anular", "1129124569": "Se selecionar \"Under\", recebe o pagamento se o último dígito do último tick for inferior à sua previsão.", "1129842439": "Por favor, introduza um montante de \"take profit\".", - "1130744117": "Tentaremos resolver a sua reclamação no prazo de 10 dias úteis. Iremos informá-lo do resultado, acompanhado de uma explicação da nossa posição e propor medidas corretivas que tencionamos implementar.", "1130791706": "N", "1133651559": "Live chat", "1134879544": "Exemplo de um documento com reflexos/brilho", @@ -1274,7 +1265,6 @@ "1304083330": "copiar", "1304272843": "Apresente o seu comprovativo de morada.", "1304620236": "Ativar a câmara", - "1304788377": "<0/><1/>Se a sua queixa estiver relacionada com as nossas práticas de processamento de dados, pode apresentar uma queixa formal ao <2>Comissário para a Informação e Proteção de Dados (Malta) no seu website ou apresentar uma queixa a qualquer autoridade de supervisão na União Europeia.", "1305217290": "Carregue o verso do seu bilhete de identidade.", "1308625834": "Define o intervalo de tempo padrão para blocos que lêem a lista de velas.", "1309017029": "Esta opção permite-lhe guardar os seus blocos como uma coleção que pode ser facilmente integrada noutros bots.", @@ -1512,6 +1502,7 @@ "1531017969": "Cria uma única cadeia de texto a partir da combinação do valor de texto de cada item anexado, sem espaços entre eles. O número de itens pode ser adicionado em conformidade.", "1533177906": "Fall", "1534796105": "Obtém o valor da variável", + "1537192641": "Não foi possível completar o processamento do seu pedido", "1537711064": "É necessário efetuar uma verificação rápida da identidade antes de poder aceder à Caixa. Aceda às definições da sua conta para apresentar o seu comprovativo de identidade.", "1540585098": "Declinar", "1541508606": "Está à procura de CFDs? Aceda ao Trader's Hub", @@ -1562,7 +1553,6 @@ "1594147169": "Por favor, volte a entrar", "1594322503": "A venda está disponível", "1595295238": "3. Utilize um bloco lógico para verificar se o Total de lucros/perdas é superior ao montante limite de \"Stop loss\". Encontra a variável lucros/perdas totais em Análise > Estatísticas no menu à esquerda. O bot irá continuar a comprar novos contratos até que o valor dos lucros/perdas totais exceda o valor do limite de \"Stop loss\".", - "1596378630": "Adicionou uma conta de jogo real.<0/>Faça um depósito agora para começar a negociar.", "1597672660": "Palavra-passe Deriv MT5", "1598009247": "<0>a.Pode apresentar uma queixa à Comissão Financeira até 45 dias após o incidente.", "1598386296": "O campo localidade/cidade é obrigatório.", @@ -1730,7 +1720,6 @@ "1763123662": "Carregue o seu boletim NIMC.", "1766212789": "A manutenção do servidor começa às 06:00 GMT todos os domingos e pode durar até 2 horas. O serviço pode sofrer interrupções durante este período.", "1766993323": "Apenas letras, números e sublinhados são permitidos.", - "1767429330": "Adicione uma conta Derivada", "1768293340": "Valor do contrato", "1768861315": "Minuto", "1768918213": "Somente letras, espaço, hífen, ponto e apóstrofo são permitidos.", @@ -1744,6 +1733,7 @@ "1779144409": "É necessária a verificação da conta", "1779519903": "Deve ser um número válido.", "1779801832": "Por favor, atualize a sua palavra-passe de acordo com os requisitos.", + "1779872677": "Transferir e-book", "1780442963": "Digitalize o código QR para instalar {{ platform }}.", "1780770384": "Esse bloco fornece uma fração aleatória entre 0,0 a 1,0.", "1782308283": "Estratégia rápida", @@ -1754,7 +1744,6 @@ "1783740125": "Carregar a sua selfie", "1785298924": "Fórmula D'Alembert 1", "1786644593": "Formatos suportados: Apenas JPEG, JPG, PNG, PDF e GIF", - "1787135187": "É necessário o código postal/ZIP", "1787492950": "Os indicadores no separador do gráfico são apenas para fins indicativos e podem variar ligeiramente dos que se encontram na área de trabalho {{platform_name_dbot}}.", "1788515547": "<0/>Para mais informações sobre a apresentação de uma queixa ao Gabinete do Árbitro para os Serviços Financeiros, <1>consulte as suas orientações.", "1788966083": "01-07-1999", @@ -1820,7 +1809,6 @@ "1850031313": "- Baixo: o menor preço", "1850132581": "País não encontrado", "1850659345": "- Pagamento: o pagamento do contrato", - "1850663784": "Enviar Comprovativos", "1851052337": "O local de nascimento é obrigatório.", "1851776924": "superior", "1854480511": "A caixa está bloqueada", @@ -1837,7 +1825,6 @@ "1865525612": "Não há transações recentes.", "1866244589": "O preço de abertura é o primeiro tick para os High/Low Ticks.", "1866811212": "Deposite na sua moeda local através de um agente de pagamentos independente e autorizado no seu país.", - "1866836018": "<0/><1/>Se a sua reclamação estiver relacionada com as nossas práticas de processamento de dados, pode apresentar uma queixa formal à sua autoridade de controlo local.", "1867217564": "O índice deve ser um número inteiro positivo", "1867783237": "High-to-Close", "1869315006": "Veja como protegemos os seus fundos para desbloquear a caixa.", @@ -1848,7 +1835,6 @@ "1871377550": "Oferecem bots de negociação pré-construídos no Deriv Bot?", "1871664426": "Nota", "1873376454": "Este nível de preço foi escolhido por si. Se esta barreira for ultrapassada, o seu contrato será rescindido.", - "1873838570": "Verifique o seu endereço", "1874481756": "Utilize este bloco para comprar o contrato específico que pretende. Pode adicionar vários blocos de compra com blocos condicionais para definir as suas condições de compra. Este bloco só pode ser utilizado no bloco Condições de compra.", "1874756442": "BVI", "1875702561": "Carregue ou construa o seu bot", @@ -1890,7 +1876,6 @@ "1906213000": "O nosso sistema terminará todas as negociações do Deriv Bot que estejam a decorrer e o Deriv Bot não colocará novas negociações.", "1906639368": "Se é a primeira vez que tenta criar uma palavra-passe, ou esqueceu-se da sua palavra-passe, por favor proceda à alteração da mesma.", "1907423697": "Ganhe mais com a API da Deriv", - "1907884620": "Adicione uma conta real da Deriv Gaming", "1908023954": "Lamentamos, mas ocorreu um erro ao processar o seu pedido.", "1908239019": "Verifique se todo o documento está na foto", "1908686066": "Aviso de teste de adequação", @@ -1993,7 +1978,6 @@ "2001222130": "Verifique a sua pasta de spam ou de lixo eletrónico. Se não estiver lá, tente reenviar o e-mail.", "2001361785": "1. Comece com a entrada inicial. Por exemplo, 1 USD.", "2004052487": "Estimar o tempo de vida dos seus negócios", - "2004792696": "Se for residente no Reino Unido, para se autoexcluir de todas as empresas de jogos de azar em linha licenciadas na Grã-Bretanha, vá a <0>www.gamstop.co.uk.", "2007028410": "mercado, tipo de negociação, tipo de contrato", "2010759971": "Carregamentos efetuados com sucesso", "2010866561": "Retorna o lucro/perda total", @@ -2073,7 +2057,6 @@ "2085387371": "Devem ser números, letras e caracteres especiais., '-", "2085602195": "- Entry value: valor do primeiro tick do contrato", "2086048243": "Ato constitutivo", - "2086742952": "Adicionou uma conta de Options real.<0/>Faça um depósito agora para começar a negociar.", "2086792088": "Ambas as barreiras devem ser relativas ou absolutas", "2088735355": "Os seus limites de sessão e de início de sessão", "2089087110": "Índices de cestas", @@ -2281,7 +2264,6 @@ "-1699820408": "Por favor, insira {{field_name}} abaixo de {{max_number}} caracteres.", "-1575567374": "Código postal", "-816263501": "Só são permitidas letras, números, espaços e hífenes.", - "-1497654315": "As nossas contas e serviços não estão disponíveis para o código postal de Jersey.", "-755626951": "Preencha os dados do seu endereço", "-1024240099": "Morada", "-1534917661": "Selecione a moeda pretendida", @@ -2348,6 +2330,7 @@ "-1458676679": "Deve introduzir 2-50 caracteres.", "-1116008222": "Deve introduzir entre 9 e 35 números.", "-1995979930": "O campo da primeira linha da morada é obrigatório.", + "-703454156": "Por favor, introduza um Código Postal/CEP com menos de 20 caracteres.", "-2113555886": "Só são permitidas letras, números, espaço e hífen.", "-1103497546": "Declaração fiscal", "-700600899": "Comprovativo de morada da empresa", @@ -2499,7 +2482,6 @@ "-1545823544": "7 dias", "-180147209": "Após este prazo, a sessão será automaticamente encerrada.", "-374553538": "A sua conta será excluída do site até à seguinte data (pelo menos 6 meses, até 5 anos).", - "-2121421686": "Para se autoexcluir de todas as empresas de jogos de azar em linha licenciadas na Grã-Bretanha, aceda a <0>www.gamstop.co.uk.", "-2105708790": "Saldo máximo da conta e posições abertas", "-1960600163": "Quando o saldo da conta atingir este montante, não será possível depositar fundos na conta.", "-1073845224": "N.º de posições abertas", @@ -2653,6 +2635,7 @@ "-1728732301": "Início de sessão simplificado com as passkeys", "-684009726": "Editar a chave de acesso", "-1140319320": "A sua conta está agora protegida com uma chave de acesso. <0/>Pode fazer a gestão da sua chave de acesso através<0/> das definições da sua conta Deriv.", + "-1036903080": "Surgiu um problema temporário no processamento do seu pedido. Por favor, tente novamente mais tarde.", "-331060101": "Falha na configuração da passkey", "-713875531": "Ativar Bluetooth.", "-80717068": "Aplicações que associou à sua <0>palavra-passe Deriv:", @@ -2710,6 +2693,10 @@ "-145462920": "Deriv cTrader", "-1210359945": "Transferir fundos para as suas contas", "-81256466": "Precisa de uma conta Deriv para criar uma conta de CFDs.", + "-1926387364": "Enviámos o e-book para o seu e-mail. Também pode transferi-lo aqui.", + "-1057002564": "<0>Atualmente, não é possível realizar o upgrade para Wallets. Estamos a trabalhar para resolver esta situação o mais rápido possível. Por favor <1>tente novamente<0>.", + "-1424352390": "<0>Wallets<1> - Uma forma mais inteligente de gerir os seus fundos", + "-280236366": "Ativar agora", "-699372497": "Negoceie com alavancagem e spreads reduzidos para obter melhores retornos em transações bem-sucedidas. <0>Saiba mais", "-982095728": "Criar", "-1790089996": "NOVO!", @@ -2733,13 +2720,10 @@ "-2055865877": "Regulamentos de países fora da UE", "-643108528": "Regulamentos de países fora da UE e da UE", "-1002556560": "Não foi possível concluir o upgrade da Wallet. Tente novamente mais tarde ou contacte-nos através do live chat.", - "-280236366": "Ativar agora", "-2051096382": "Consiga uma série de pagamentos ao prever corretamente os movimentos do mercado com as <0>Options, ou obtenha a vantagem CFDs sem arriscar mais do que a sua entrada inicial com os <1>Multipliers.", "-1638358352": "Beneficie da vantagem dos CFDs sem arriscar mais do que a sua entrada inicial com os <0>Multipliers.", "-744999940": "Conta Deriv", "-749129977": "Obtenha uma conta Deriv real, comece a negociar e a gerir os seus fundos.", - "-1057002564": "<0>Atualmente, não é possível realizar o upgrade para Wallets. Estamos a trabalhar para resolver esta situação o mais rápido possível. Por favor <1>tente novamente<0>.", - "-1424352390": "<0>Wallets<1> - Uma forma mais inteligente de gerir os seus fundos", "-2146691203": "Escolha de regulamentação", "-249184528": "Pode criar contas reais ao abrigo da regulamentação da UE ou de países não pertencentes à UE. Clique no ícone <0><0/> para saber mais sobre estas contas.", "-1505234170": "Visita ao Trader's Hub", @@ -2860,7 +2844,6 @@ "-1949883551": "Tem apenas uma conta", "-1149845849": "Voltar ao Trader's Hub", "-1232852916": "Estamos a mudar para a sua conta de {{currency}} para visualizar a transação.", - "-759000391": "Não foi possível validar automaticamente as suas informações. Para ativar esta função, deve preencher o seguinte:", "-1632668764": "Aceito", "-544232635": "Por favor, aceda à página \"Depósito\" para gerar um endereço. Em seguida, volte a esta página para continuar com a transação.", "-1161069724": "Por favor, copie o endereço criptográfico que vê abaixo. Vai precisar dele para depositar a sua criptomoeda.", @@ -3267,7 +3250,6 @@ "-821418875": "Trader", "-679102561": "Dados do contrato", "-430118939": "Política de reclamações", - "-568280383": "Deriv Gaming", "-1308346982": "Derivados", "-579984289": "Demo Derived", "-1596515467": "BVI Derivada", @@ -3390,7 +3372,6 @@ "-689237734": "Prosseguir", "-1642457320": "Centro de ajuda", "-1966944392": "Estado da rede: {{status}}", - "-594209315": "Os índices sintéticos na União Europeia são oferecidos por {{legal_entity_name}}, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, licenciada e regulada pela Malta Gaming Authority<0>(licença n. º MGA/B2C/102/2000) e pelos Revenue Commissioners para clientes na Irlanda<2>(licença n. º 1010285).", "-181484419": "Negociação responsável", "-650505513": "Ecrã inteiro", "-1823504435": "Exibir notificações", @@ -3400,8 +3381,8 @@ "-1496158755": "Ir para Deriv.com", "-1323441180": "Confirmo que o meu pedido de abertura de conta na Deriv para negociar produtos OTC emitidos e oferecidos exclusivamente fora do Brasil foi iniciado por mim. Entendo perfeitamente que a Deriv não é regulada pela CVM e, ao abordar a Deriv, pretendo estabelecer uma relação com uma empresa estrangeira.", "-1396326507": "Infelizmente, {{website_name}} não está disponível no seu país.", - "-1019903756": "Sintética", "-288996254": "Indisponível", + "-1019903756": "Sintética", "-735306327": "Gerir contas", "-1813972756": "Criação de conta pausada durante 24 horas", "-366030582": "Lamentamos, mas não é possível criar uma conta agora. Como recusou os nossos avisos de risco anteriores, precisamos que aguarde 24 horas após a sua primeira tentativa de criação de conta antes de poder prosseguir.<0/><0/>", @@ -3424,9 +3405,6 @@ "-175638343": "Escolha uma conta ou adicione uma nova", "-1768223277": "Sua conta está pronta", "-1215717784": "<0>Alterou com sucesso a sua moeda para {{currency}}.<0>Faça um depósito agora para começar a negociar.", - "-786091297": "Negociar na demo", - "-228099749": "Verifique a sua identidade e endereço", - "-1041852744": "Estamos a processar as suas informações pessoais", "-1775006840": "Faça um depósito agora para começar a negociar.", "-983734304": "Precisamos de um comprovativo da sua identidade e morada antes de poder começar a negociar.", "-917733293": "Para obter informações sobre o comércio, confirme o seu local de residência.", @@ -3434,7 +3412,6 @@ "-952649119": "Iniciar sessão", "-3815578": "Inscrever-se", "-1456176427": "Defina uma moeda para a sua conta real", - "-1557011219": "Adicione uma conta real de Options da Deriv", "-241733171": "Adicionar uma conta Deriv Financeira", "-1329687645": "Crie uma conta de criptomoeda", "-1429178373": "Crie uma conta", @@ -3471,14 +3448,10 @@ "-2142491494": "OK, entendi", "-611136817": "Cuidado com links falsos.", "-1342699195": "Lucro/perda total:", - "-943710774": "Esta política de reclamações, que pode ser alterada periodicamente, aplica-se à sua conta registada em {{legal_entity_name}}, com sede social em First Floor, Millennium House, Victoria Road, Douglas, Isle of Man, IM2 4RW, licenciada e regulada respetivamente por (1) a Gambling Supervision Commission na Ilha de Man ( <0>licença atual emitida a 31 de agosto de 2017) e (2) a Gambling Commission no Reino Unido<1>(licença n. º 39172).", - "-255056078": "Esta política de reclamações, que pode ser alterada periodicamente, aplica-se à(s) sua(s) conta(s) registada(s) em {{legal_entity_name}}, com sede social em W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033, Malta, licenciada e regulada pela Malta Gaming Authority em Malta apenas para produtos de jogo, <0>licença n. º. MGA/B2C/102/2000, e para clientes residentes no Reino Unido pela UK Gambling Commission (número de conta 39495).", "-1941013000": "Esta política de reclamações, que pode ser alterada periodicamente, aplica-se à(s) sua(s) conta(s) registada(s) em {{legal_entity_name_svg}}, {{legal_entity_name_fx}} e {{legal_entity_name_v}}.", "-594812204": "Esta política de reclamações, que pode ser alterada periodicamente, aplica-se à(s) sua(s) conta(s) registada(s) em {{legal_entity_name_svg}}.", "-813256361": "Estamos empenhados em tratar os nossos clientes de forma justa e em prestar-lhes um excelente serviço.<0/><1/>Gostaríamos que nos dissesse como podemos melhorar os nossos serviços. Todas as informações que nos fornecer serão tratadas com a maior confidencialidade. Pode ter a certeza de que será ouvido, valorizado e sempre tratado de forma justa.", "-1622847732": "Se tiver alguma questão relacionada com a sua conta de negociação em {{legal_entity_name}}, pode contactar-nos através do nosso <0>Centro de Ajuda ou conversando com um representante através do <1>Live Chat.<2/><3/>Estamos empenhados em resolver a sua questão o mais rapidamente possível e agradecemos a sua paciência para nos dar tempo para resolver o assunto.<4/><5/>Esforçamo-nos por fornecer o melhor serviço e suporte possíveis aos nossos clientes. No entanto, se não formos capazes de resolver a sua questão ou se considerar que a nossa resposta não é satisfatória, gostaríamos de ter notícias suas. Incentivamos os nossos clientes a apresentar-nos uma reclamação oficial para que possamos analisar as suas preocupações e trabalhar no sentido de uma resolução.", - "-1639808836": "Se não ficar satisfeito com o resultado, pode encaminhar a sua reclamação para o <0>Serviço Independente de Adjudicação de Apostas (IBAS), preenchendo o formulário de adjudicação do IBAS. Tenha em atenção que o IBAS apenas trata de litígios resultantes de transações.", - "-1505742956": "<0/><1/>Também pode remeter seu litígio para a Malta Gaming Authority através da <2>Unidade de Apoio ao Jogador (Player Support Unit).", "-1406192787": "Se não ficar satisfeito com o resultado, pode apresentar a sua reclamação à <0>Comissão Financeira.", "-1776547326": "<0/><1/>Se o utilizador residir no Reino Unido e não estiver satisfeito com a nossa resposta, pode apresentar a sua reclamação ao <2>Serviço de Ouvidoria Financeira (Financial Ombudsman Service).", "-2115348800": "1. Introdução", @@ -3561,7 +3534,6 @@ "-1969608084": "Forex e Criptomoedas", "-800771713": "Labuan Financial Services Authority (licença nº. MB/18/0024)", "-1497128311": "+80", - "-1501230046": "0.6 pips", "-1689815930": "Quando atingir determinados limiares, terá de apresentar um comprovativo de identidade e de morada.", "-1175785439": "Deriv (SVG) LLC (empresa nº 273 LLC 2020)", "-139026353": "Uma selfie de si próprio.", @@ -4102,7 +4074,6 @@ "-1750896349": "D'Alembert", "-102980621": "A Oscar's Grind Strategy é uma estratégia de progressão positiva de baixo risco que apareceu pela primeira vez em 1965. Ao usar essa estratégia, o tamanho do seu contrato aumentará após negociações bem-sucedidas, mas permanecerá inalterado após negociações mal sucedidas.", "-462715374": "Bot sem título", - "-538215347": "Depósitos líquidos", "-280147477": "Todas as transações", "-137444201": "Comprar", "-130601012": "Selecione a duração", diff --git a/packages/translations/src/translations/ru.json b/packages/translations/src/translations/ru.json index 0fd24245dfe7..091743e969e7 100644 --- a/packages/translations/src/translations/ru.json +++ b/packages/translations/src/translations/ru.json @@ -1,5 +1,4 @@ { - "1014140": "Вы также можете подать жалобу по телефону <0>+447723580049.", "1485191": "1:1000", "2082741": "дополнительный номер документа", "2091451": "Deriv Bot - Ваш партнер по автоматизированной торговле", @@ -205,12 +204,10 @@ "218441288": "Номер удостоверения личности", "220014242": "Загрузите селфи со своего компьютера", "220186645": "Текст пуст", - "220232017": "демо CFD", "221261209": "Счет Deriv позволит вам пополнять (и выводить средства) со своего счета(ов) CFD.", "223120514": "В этом примере каждая точка линии SMA является средним арифметическим значением цен закрытия за последние 50 дней.", "223607908": "Статистика последней десятичной последних 1000 тиков для {{underlying_name}}", "224650827": "IOT/USD", - "224929714": "На острове Мэн и в Великобритании ставки на виртуальные события предоставлены компанией {{legal_entity_name}}, Millennium House, Level 1, Victoria Road, Douglas IM2 4RW, Isle of Man. Компания лицензирована и регулируется комиссией по азартным играм Великобритании под учетной записью <0>№ 39172 и комиссией по надзору за азартными играми острова Мэн (<1>см. лицензию).", "225887649": "Этот блок является обязательным и по умолчанию добавляется в стратегию, когда вы ее создаете. Допускается только одна копия этого блока на рабочем пространстве.", "227591929": "Во временную метку {{ input_datetime }} {{ dummy }}", "227903202": "Мы взимаем комиссию в размере 1% за переводы в разных валютах между вашим фиатным счетом Deriv и счетом {{platform_name_mt5}}.", @@ -262,7 +259,6 @@ "273728315": "Не должно быть 0 или пустым", "274268819": "Индекс Volatility 100", "275116637": "Deriv X", - "276639155": "Введите почтовый индекс, не более 20 символов.", "276770377": "Для новых сделок будет создан новый счет(а) МТ5 под юрисдикцией {{to_account}}.", "277469417": "Период ограничения не может быть более пяти лет.", "278684544": "получить подсписок от # с конца", @@ -271,7 +267,6 @@ "282319001": "Проверьте свое изображение", "282564053": "Далее нам понадобится ваше подтверждение адреса.", "283830551": "Адрес не совпадает с указанным в профиле", - "283986166": "Самоисключение на этом сайте применимо только к вашему счету {{brand_website_name}} и не распространяется на другие сайты или компании.", "284527272": "антимода", "284772879": "Контракт", "284809500": "Финансовый демо", @@ -376,7 +371,6 @@ "401339495": "Подтвердить адрес", "401345454": "Для этого перейдите на вкладку «Учебные пособия».", "403456289": "Формула SMA:", - "404743411": "Общая сумма пополнения", "406359555": "Детали контракта", "406497323": "Продайте свой открытый контракт, если необходимо (опционально)", "411482865": "Добавить {{deriv_account}} счет", @@ -468,11 +462,11 @@ "502041595": "Этот блок выдает конкретную свечу из выбранного временного интервала.", "505793554": "последняя буква", "508390614": "Демо Финансовый STP", - "510815408": "Только буквы, цифры, пробелы, дефисы", "511679687": "Accumulators позволяют Вам выразить мнение о диапазоне движения индекса и увеличивать свою ставку экспоненциально с фиксированной <0>скоростью роста.", "514031715": "список {{ input_list }} пуст", "514776243": "Пароль вашего {{account_type}} счета был изменен.", "514948272": "Копировать ссылку", + "517631043": "Мы отправили вашу электронную книгу. Проверьте свою электронную почту, чтобы загрузить его.", "517833647": "Индекс Volatility 50 (1с)", "518955798": "7. Запустить один раз в начале", "519205761": "Вы больше не можете открывать новые позиции с этим счетом.", @@ -499,7 +493,6 @@ "542038694": "Для {{label}} разрешены только буквы, цифры, пробел, нижнее подчёркивание, и дефис.", "542305026": "Вам также необходимо предоставить подтверждение личности.", "543413346": "У вас нет открытых позиций по этому активу. Чтобы просмотреть другие открытые вакансии, нажмите Перейти к отчетам.", - "545476424": "Общая сумма вывода", "547029855": "Если Вы выберете эту функцию, Вы сможете отменить свою сделку в течение выбранного временного интервала, если цена актива будет двигаться не в Вашу пользу. При этом Вы получите назад свою ставку без прибыли/убытка. За это мы взимаем небольшую плату. Тейк-профит и стоп-лосс отключаются, когда активна функция отмены сделки.", "549479175": "Multiplier Deriv", "549799607": "Перейти в чат", @@ -628,6 +621,7 @@ "665777772": "XLM/USD", "665872465": "В приведенном ниже примере выбирается цена открытия, которая затем присваивается переменной с именем \"цо\".", "666724936": "Введите действующий ID.", + "669494711": "1.4 пипсов", "671630762": "Мы принимаем только эти типы документов в качестве подтверждения адреса. Документ должен быть недавним (выданным в течение последних {{expiry_in_months}} месяцев) и содержать ваше имя и адрес:", "672008428": "ZEC/USD", "673915530": "Юрисдикция и законодательство", @@ -693,7 +687,6 @@ "721011817": "- Поднять первое число до степени второго числа", "723045653": "Используйте этот адрес электронной почты для входа на Deriv.", "723961296": "Управление паролем", - "724203548": "Вы можете отправить жалобу на платформу <0>онлайн-урегулирования споров (ODR) Европейской Комиссии. Это не относится к клиентам из Великобритании.", "724526379": "Узнайте больше в наших руководствах", "728042840": "Чтобы продолжить торговать у нас, пожалуйста, подтвердите свое место жительства.", "728824018": "Испанский индекс", @@ -726,7 +719,6 @@ "755138488": "Мы не можем проверить предоставленный вами документ, поскольку он содержит пометки или текст, которых на нем не должно быть. Пожалуйста, предоставьте четкую фотографию или скан оригинала документа, удостоверяющего личность.", "756152377": "SMA придает равный вес каждому из значений.", "758003269": "создать список из текста", - "759783233": "Для получения дополнительной информации, консультаций и поддержки посетите <0>begambleaware.org.", "760528514": "Обратите внимание, что изменение значения «i» не приведет к изменению значения исходного элемента в списке", "761576760": "Пополните счет, чтобы начать торговать.", "762926186": "Быстрая стратегия – это готовая стратегия, которую можно использовать в Deriv Bot. Вы можете выбрать одну из трех стратегий: Мартингейл, Д'Аламбер или Оскар Грайнд.", @@ -1105,7 +1097,6 @@ "1128404172": "Отменить", "1129124569": "Если вы выбираете \"Under\", вы выигрываете, если последняя десятичная последней котировки будет ниже вашего прогноза.", "1129842439": "Пожалуйста, введите сумму тейк профит.", - "1130744117": "Мы постараемся решить вашу жалобу в течение 10 рабочих дней. Мы проинформируем вас о результате, разъясним нашу позицию и предложим меры по исправлению ситуации, которые мы намерены предпринять.", "1130791706": "Нет", "1133651559": "Чат", "1134879544": "Пример документа с бликами", @@ -1274,7 +1265,6 @@ "1304083330": "копировать", "1304272843": "Пожалуйста, предоставьте подтверждение адреса.", "1304620236": "Включить камеру", - "1304788377": "<0/><1/>Если ваша претензия связана с нашей практикой обработки данных, вы можете подать официальную жалобу в <2>Комитет по защите информации и данных (Мальта) на сайте ведомства или подать жалобу в любой надзорный орган в Европейском Союзе.", "1305217290": "Загрузите оборотную сторону удостоверения личности.", "1308625834": "Устанавливает временной интервал по умолчанию для блоков, читающих список свечей.", "1309017029": "Эта функция позволяет вам сохранять свои блоки как одну коллекцию, которую можно легко интегрировать в другие боты.", @@ -1512,6 +1502,7 @@ "1531017969": "Создает одну текстовую строку из сочетания текстового значения каждого вложенного элемента без пробелов между ними. Количество элементов может быть добавлено.", "1533177906": "Fall", "1534796105": "Получает значение переменной", + "1537192641": "Невозможно обработать ваш запрос", "1537711064": "Вам нужно подтвердить личность, чтобы открыть доступ к кассе. Перейдите в настройки счета и отправьте нам ваше удостоверение личности.", "1540585098": "Отклонить", "1541508606": "Ищете CFD? Перейти в Trader's Hub", @@ -1562,7 +1553,6 @@ "1594147169": "Пожалуйста, зайдите через", "1594322503": "Продажа доступна", "1595295238": "3. Используя логический блок, проверьте, превышает ли Общая прибыль/убыток сумму Порог стоп-лосса. Вы можете найти переменную Общая прибыль/убыток в разделе Анализ > Статистика в меню Блоки menu слева. Ваш бот будет продолжать покупать новые контракты до тех пор, пока сумма Общая прибыль/убыток не превысит сумму Порог стоп-лосса.", - "1596378630": "Вы добавили реальный игровой счет Deriv.<0/>Пополните счет, чтобы начать трейдинг.", "1597672660": "Пароль Deriv MT5", "1598009247": "<0>a.Вы можете подать жалобу в Финансовую комиссию в течение 45 дней после инцидента.", "1598386296": "Необходимо указать город.", @@ -1730,7 +1720,6 @@ "1763123662": "Загрузите карту NIMC.", "1766212789": "Технические работы на сервере начинаются в 06:00 GMT каждое воскресенье. Этот процесс может занять до 2 часов. В это время работа сервиса может прерываться.", "1766993323": "Разрешены только буквы, цифры и подчеркивание.", - "1767429330": "Добавить счет Derived", "1768293340": "Стоимость контракта", "1768861315": "Мин.", "1768918213": "Разрешены только буквы, пробелы, дефисы, точки и апострофы.", @@ -1744,6 +1733,7 @@ "1779144409": "Требуется верификация счета", "1779519903": "Введите правильное число.", "1779801832": "Обновите пароль соответствующим образом.", + "1779872677": "Скачать электронную книгу", "1780442963": "Отсканируйте QR-код, чтобы скачать {{ platform }}.", "1780770384": "Этот блок дает вам случайную долю от 0.0 до 1.0.", "1782308283": "Быстрая стратегия", @@ -1754,7 +1744,6 @@ "1783740125": "Загрузить селфи", "1785298924": "Формула Д'Алемберта 1", "1786644593": "Поддерживаемые форматы: Только JPEG, JPG, PNG, PDF и GIF", - "1787135187": "Необходимо указать почтовый индекс", "1787492950": "Индикаторы на вкладке графиков предназначены только для ознакомительных целей и могут незначительно отличаться от индикаторов рабочей области {{platform_name_dbot}}.", "1788515547": "<0/>Для получения дополнительной информации о подаче жалобы в Офис арбитра по финансовым услугам <1>ознакомьтесь с их руководством.", "1788966083": "01-07-1999", @@ -1820,7 +1809,6 @@ "1850031313": "- Минимум: самая низкая цена за выбранный период", "1850132581": "Страна не найдена", "1850659345": "- Выплата: выплата за контракт", - "1850663784": "Отправить подтверждения", "1851052337": "Необходимо указать место рождения.", "1851776924": "верхн.", "1854480511": "Касса заблокирована", @@ -1837,7 +1825,6 @@ "1865525612": "Недавних транзакций нет.", "1866244589": "Местом входа является первая галочка в поле High/Low Ticks.", "1866811212": "Пополняйте счет в местной валюте через авторизованного независимого платежного агента в вашей стране.", - "1866836018": "<0/><1/>Если ваша жалоба касается наших методов обработки данных, вы можете подать официальную жалобу в местный надзорный орган.", "1867217564": "Индекс должен быть положительным целым числом", "1867783237": "High-to-Close", "1869315006": "Ознакомьтесь с тем, как мы защищаем ваши средства, чтобы разблокировать кассу.", @@ -1848,7 +1835,6 @@ "1871377550": "Предлагаете ли вы готовых торговых ботов на Deriv Bot?", "1871664426": "Примечание", "1873376454": "Это ценовой уровень, который Вы выбираете сами. Если этот барьер когда-нибудь будет преодолен, Ваш контракт будет расторгнут.", - "1873838570": "Пожалуйста, подтвердите свой адрес", "1874481756": "Этот блок используется для покупки определенного контракта. Вы можете добавить несколько блоков покупки вместе с условными блоками, чтобы определить условия покупки. Этот блок можно использовать только в блоке условий покупки.", "1874756442": "BVI", "1875702561": "Загрузите или создайте бота", @@ -1890,7 +1876,6 @@ "1906213000": "Наша система завершит все текущие контракты Deriv Bot и не будет размещать новые.", "1906639368": "Если вы впервые пытаетесь создать пароль или забыли свой пароль, пожалуйста, сбросьте его.", "1907423697": "Зарабатывайте больше с Deriv API", - "1907884620": "Добавить реальный игровой Deriv", "1908023954": "Извините, при обработке вашего запроса произошла ошибка.", "1908239019": "Убедитесь, что на фото весь документ", "1908686066": "Тест на соответствие, предупреждение", @@ -1993,7 +1978,6 @@ "2001222130": "Проверьте папку со спамом или нежелательной почтой. Если его там нет, попробуйте запросить письмо еще раз.", "2001361785": "1. Начните с начальной ставки. Допустим, 1 USD.", "2004052487": "Оценка продолжительности жизни Ваших сделок", - "2004792696": "Если вы являетесь резидентом Великобритании, для самоисключения из всех компаний, предоставляющих услуги онлайн-трейдинга и лицензированных в Великобритании, перейдите на <0>www.gamstop.co.uk.", "2007028410": "рынок, тип сделки, тип контракта", "2010759971": "Загрузки прошли успешно", "2010866561": "Возвращает общую прибыль/убыток", @@ -2073,7 +2057,6 @@ "2085387371": "Допускаются цифры, буквы и специальные символы . , ' -", "2085602195": "- Начальное значение: значение первого тика контракта", "2086048243": "Сертификат о регистрации", - "2086742952": "Вы добавили реальный счет Deriv для опционов.<0/>Пополните счет, чтобы начать трейдинг.", "2086792088": "Оба барьера должны быть относительными или абсолютными", "2088735355": "Лимиты ваших сессий и входов", "2089087110": "Валютные индексы", @@ -2281,7 +2264,6 @@ "-1699820408": "Пожалуйста, введите {{field_name}}, не более {{max_number}} символов.", "-1575567374": "почтовый код/индекс", "-816263501": "Разрешены только буквы, цифры, пробелы и дефисы.", - "-1497654315": "Наши счета и услуги недоступны для почтового индекса Джерси.", "-755626951": "Заполните ваши адресные данные", "-1024240099": "Адрес", "-1534917661": "Выберите предпочтительную валюту", @@ -2348,6 +2330,7 @@ "-1458676679": "Вы должны ввести 2-50 символов.", "-1116008222": "Вы должны ввести 9-35 цифр.", "-1995979930": "Первая строка адреса обязательна для заполнения.", + "-703454156": "Введите почтовый индекс, не более 20 символов.", "-2113555886": "Разрешены только буквы, цифры, пробелы и дефисы.", "-1103497546": "Налоговая декларация", "-700600899": "Подтверждение адреса предприятия", @@ -2499,7 +2482,6 @@ "-1545823544": "7 дней", "-180147209": "Вы автоматически выйдете из системы после достижения лимита длительности сессии.", "-374553538": "Ваш счет будет исключен с сайта до этой даты (от 6 месяцев до 5 лет).", - "-2121421686": "Чтобы произвести самоисключение во всех компаниях, предоставляющих услуги онлайн-трейдинга и лицензированных в Великобритании, перейдите на <0>www.gamstop.co.uk.", "-2105708790": "Максимальный баланс вашего счета и открытые позиции", "-1960600163": "Когда баланс вашего счета достигнет этой суммы, вы не сможете вносить средства на свой счет.", "-1073845224": "Кол-во открытых позиций", @@ -2653,6 +2635,7 @@ "-1728732301": "Легкий вход в систему с помощью passkeys", "-684009726": "Изменить passkey", "-1140319320": "Теперь ваша учетная запись защищена passkey. <0/>Управляйте своим passkey через<0/>настройки учетной записи Deriv.", + "-1036903080": "При обработке вашего запроса возникла временная проблема. Пожалуйста, повторите попытку позже.", "-331060101": "Настройка Passkey не удалась", "-713875531": "Включите bluetooth.", "-80717068": "Приложения, которые связаны с <0>паролем Deriv:", @@ -2710,6 +2693,10 @@ "-145462920": "Deriv cTrader", "-1210359945": "Переведите средства на свои счета", "-81256466": "Для открытия счета CFD нужно открыть счет Deriv.", + "-1926387364": "Мы отправили вашу электронную книгу на вашу электронную почту. Вы также можете скачать его здесь.", + "-1057002564": "<0>В данный момент мы не можем обновить Wallets и работаем над тем, чтобы исправить это как можно скорее. Пожалуйста, <1>попробуйте еще раз<0>.", + "-1424352390": "<0>Wallets<1> — более эффективный способ управления средствами", + "-280236366": "Включить сейчас", "-699372497": "Торгуйте с кредитным плечом и узкими спредами. Больше прибыли от успешных контрактов. <0>Подробнее", "-982095728": "Открыть", "-1790089996": "НОВИНКА!", @@ -2733,13 +2720,10 @@ "-2055865877": "Регулирование за пределами ЕС", "-643108528": "Регулирование в ЕС и вне ЕС", "-1002556560": "Мы не можем завершить обновление Wallet. Повторите попытку позже или свяжитесь с нами через чат.", - "-280236366": "Включить сейчас", "-2051096382": "Фиксированные выплаты за правильные прогнозы рыночных движений с <0>опционами или \n все преимущества CFD при ограниченном риске с <1>multipliers.", "-1638358352": "<0>Multiplier – это все преимущества CFD, но без риска потерять больше, чем ставка.", "-744999940": "Счет Deriv", "-749129977": "Откройте реальный счет Deriv, начните торговать и управлять своими средствами.", - "-1057002564": "<0>В данный момент мы не можем обновить Wallets и работаем над тем, чтобы исправить это как можно скорее. Пожалуйста, <1>попробуйте еще раз<0>.", - "-1424352390": "<0>Wallets<1> — более эффективный способ управления средствами", "-2146691203": "Выбор регулятора", "-249184528": "Можно открыть счет под юрисдикцией регулятора в ЕС или за его пределами. Нажмите <0><0/>, чтобы узнать больше об этих счетах.", "-1505234170": "Тур по Trader's Hub", @@ -2860,7 +2844,6 @@ "-1949883551": "У вас есть только один счет", "-1149845849": "Назад в Trader's Hub", "-1232852916": "Мы переключаемся на ваш счет {{currency}}, чтобы просмотреть транзакцию.", - "-759000391": "Нам не удалось автоматически проверить ваши данные. Чтобы активировать эту функцию, сделайте следующее:", "-1632668764": "Я принимаю", "-544232635": "Пожалуйста, перейдите на страницу пополнения, чтобы сгенерировать адрес. Затем вернитесь сюда, чтобы продолжить транзакцию.", "-1161069724": "Скопируйте крипто-адрес, который вы видите ниже. Он понадобится вам для пополнения счета в криптовалюте.", @@ -3267,7 +3250,6 @@ "-821418875": "Трейдер", "-679102561": "Детали контракта", "-430118939": "Политика рассмотрения жалоб", - "-568280383": "Deriv игровой", "-1308346982": "Derived", "-579984289": "Derived демо", "-1596515467": "Derived BVI", @@ -3390,7 +3372,6 @@ "-689237734": "Далее", "-1642457320": "Центр поддержки", "-1966944392": "Статус сети: {{status}}", - "-594209315": "Синтетические индексы в ЕС предоставлены компанией {{legal_entity_name}}, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta. Компания лицензирована и регулируется управлением по азартным играм Мальты (<0>номер лицензии MGA/B2C/102/2000) и уполномоченным по доходам для клиентов в Ирландии (<2>лицензия № 1010285).", "-181484419": "Ответственная торговля", "-650505513": "На весь экран", "-1823504435": "Открыть уведомления", @@ -3400,8 +3381,8 @@ "-1496158755": "Перейти на Deriv.com", "-1323441180": "Настоящим я подтверждаю, что запрос на открытие счета в Deriv для торговли внебиржевыми продуктами, выпущенными и предлагаемыми исключительно за пределами Бразилии, был инициирован мной. Я понимаю, что деятельность Deriv не регулируется CVM, и, обратившись в Deriv, вступаю в деловые отношения с иностранной компанией.", "-1396326507": "К сожалению, {{website_name}} недоступен в вашей стране.", - "-1019903756": "Синтетический", "-288996254": "Недоступно", + "-1019903756": "Синтетический", "-735306327": "Управление счетами", "-1813972756": "Открытие счета приостановлено на 24 часа", "-366030582": "К сожалению, в настоящее время вы не можете открыть счет. Поскольку вы отклонили наши предыдущие предупреждения о рисках, нам необходимо подождать 24 часа после первой попытки открытия счета, прежде чем продолжить.<0/><0/>", @@ -3424,9 +3405,6 @@ "-175638343": "Выберите счет или откройте новый", "-1768223277": "Ваш счет готов", "-1215717784": "<0>Вы успешно изменили валюту счета на {{currency}}.<0>Пополните счет сейчас, чтобы начать торговлю.", - "-786091297": "Торговать на демо", - "-228099749": "Пожалуйста, подтвердите свою личность и адрес", - "-1041852744": "Мы обрабатываем ваши личные данные", "-1775006840": "Пополните счет сейчас, чтобы начать торговать.", "-983734304": "Прежде чем вы сможете начать торговать, нам нужно подтверждение вашей личности и адреса.", "-917733293": "Чтобы начать торговать, пожалуйста, подтвердите свое место жительства.", @@ -3434,7 +3412,6 @@ "-952649119": "Вход", "-3815578": "Регистрация", "-1456176427": "Установите валюту вашего реального счета", - "-1557011219": "Добавить реальный счет Deriv для опционов", "-241733171": "Добавить Финансовый счет Deriv", "-1329687645": "Откройте криптовалютный счет", "-1429178373": "Откройте новый счет", @@ -3471,14 +3448,10 @@ "-2142491494": "Понятно", "-611136817": "Остерегайтесь ложных ссылок.", "-1342699195": "Общая прибыль/убыток:", - "-943710774": "Данная политика рассмотрения жалоб, которая может время от времени меняться, применяется к вашему счету, открытому в {{legal_entity_name}}. Компания расположена по адресу First Floor, Millennium House, Victoria Road, Douglas, Isle of Man, IM2 4RW, лицензирована и регулируется (1) комиссией по надзору за азартными играми на Острове Мэн (текущая <0>лицензия выдана 31 августа 2017 г.) и (2) комиссией по азартным играм Великобритании (<1>номер лицензии 39172).", - "-255056078": "Данная политика рассмотрения жалоб, которая может время от времени меняться, применяется к вашему счету, открытому в {{legal_entity_name}}. Компания расположена по адресу W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033, Malta. Игорные продукты компании лицензированы и регулируются управлением по азартным играм Мальты, <0>лицензия MGA/B2C/102/2000, и для клиентов, проживающих в Великобритании, комиссией по азартным играм Великобритании (№ счета 39495).", "-1941013000": "Данная политика рассмотрения жалоб, которая может время от времени меняться, применяется к вашему счету(-ам), открытому в {{legal_entity_name_svg}}, {{legal_entity_name_fx}}, и {{legal_entity_name_v}}.", "-594812204": "Данная политика рассмотрения жалоб, которая может время от времени меняться, применяется к вашему счету(-ам), открытому в {{legal_entity_name_svg}}.", "-813256361": "Мы стремимся справедливо относиться к нашим клиентам и предоставлять им отличный сервис. <0/> <1/> Мы будем рады услышать от вас, как мы можем улучшить наши услуги для вас. Любая предоставленная вами информация будет обрабатываться строго конфиденциально. Будьте уверены, что вас услышат, оценят и к вам всегда будут относиться справедливо.", "-1622847732": "Если у вас есть вопросы относительно торгового счета в {{legal_entity_name}}, вы можете связаться с нами через <0>центр поддержки или <1>чат.<2 /><3/>Мы стремимся обрабатывать запросы как можно быстрее и благодарим вас за проявленное терпение.<4/><5/>Если мы не смогли решить ваш вопрос или вы не удовлетворены нашим ответом, пожалуйста, подайте официальную жалобу, чтобы мы могли рассмотреть вашу проблему в более высокой инстанции.", - "-1639808836": "Если вы не удовлетворены результатом, вы можете передать свою жалобу в независимый сервис <0>Independent Betting Adjudication Service (IBAS), заполнив соответствующую заявку на рассмотрение. Обратите внимание, что IBAS занимается только спорами, возникающими из-за транзакций.", - "-1505742956": "<0/><1/>Вы можете передать свой спор в Управление по азартным играм Мальты через <2>Отдел поддержки игроков.", "-1406192787": "Если вы не удовлетворены нашим решением, вы можете передать жалобу в <0>Финансовую комиссию.", "-1776547326": "<0/><1/>Если вы проживаете в Великобритании и недовольны нашим ответом, вы можете передать свою жалобу в службу <2>финансового омбудсмена.", "-2115348800": "1. Введение", @@ -3561,7 +3534,6 @@ "-1969608084": "Форекс и криптовалюты", "-800771713": "Labuan Financial Services Authority (лицензия MB/18/0024)", "-1497128311": "80+", - "-1501230046": "0.6 пипсов", "-1689815930": "Нужно будет предоставить подтверждение личности и адреса, как только вы достигнете определенных порогов.", "-1175785439": "Deriv (SVG) LLC (компания № 273 LLC 2020)", "-139026353": "Ваше селфи.", @@ -4102,7 +4074,6 @@ "-1750896349": "Д'Аламбер", "-102980621": "Стратегия Оскар Грайнд, основанная на положительной прогрессии с низким уровнем риска, появилась в 1965 году. Используя эту стратегию, вы будете увеличивать размер вашего контракта после каждой успешной сделки. Размер контракта после неудачной сделки остается неизменным.", "-462715374": "Безымянный Бот", - "-538215347": "Чистая сумма пополнения", "-280147477": "Все транзакции", "-137444201": "Купить", "-130601012": "Пожалуйста, укажите длительность", diff --git a/packages/translations/src/translations/si.json b/packages/translations/src/translations/si.json index ea2b8007b8b5..6ce9a0fb56b5 100644 --- a/packages/translations/src/translations/si.json +++ b/packages/translations/src/translations/si.json @@ -1,5 +1,4 @@ { - "1014140": "ඔබේ පැමිණිල්ල ඉදිරිපත් කිරීම සඳහා ඔබට <0>+447723580049 ඇමතිය හැකිය.", "1485191": "1:1000", "2082741": "අතිරේක ලේඛන අංකය", "2091451": "Deriv බොට් - ඔබේ ස්වයංක්‍රීය​ ගනුදෙනු සහකරු", @@ -205,12 +204,10 @@ "218441288": "හැදුනුම්පත් අංකය", "220014242": "ඔබේ පරිගණකයෙන් සෙල්ෆි ඡායාරූපයක් උඩුගත කරන්න", "220186645": "පෙළ හිස් ය", - "220232017": "ආදර්ශන CFD", "221261209": "ඔබේ CFD ගිණුමට අරමුදල් සැපයීමට (සහ ආපසු ගැනීමට) Deriv ගිණුමක් ඔබට ඉඩ සලසයි.", "223120514": "මෙම උදාහරණයේ දී, SMA රේඛාවේ එක් එක් ලක්ෂ්‍යයෙන් නිරූපණය වන්නේ පසුගිය දින 50 සඳහා ආසන්න මිල ගණන්වල අංක ගණිතමය සාමාන්‍යයකි.", "223607908": "{{underlying_name}} සඳහා නවතම tick 1000 සඳහා අවසාන ඉලක්කම් සංඛ්‍යාලේඛන", "224650827": "IOT/USD", - "224929714": "එක්සත් රාජධානියේ සහ අයිල් ඔෆ් මෑන් (Isle of Man) හි අතථ්‍ය සිදුවීම් පාදක ඔට්ටු <0>ගිණුම් අංක 39172 යටතේ මහා බ්‍රිතාන්‍යයේ Gambling Commission විසින් බලපත්‍ර ලබා නියාමනය වන Millennium House, Level 1, Victoria Road, Douglas IM2 4RW, Isle of Man ලිපිනය දරන {{legal_entity_name}} විසින් සහ අයිල් ඔෆ් මෑන් හි Gambling Supervision Commission විසින් පිරිනමනු ලැබේ (<1>බලපත්‍රය බලන්න).", "225887649": "මෙම කොටස අනිවාර්ය වේ. ඔබ නව උපාය මාර්ගයක් සාදන විට එය පෙරනිමියෙන් ඔබේ උපාය මාර්ගයට එකතු වේ. ඔබට මෙම කොටසින් එක් පිටපතකට වඩා කැන්වසයට එක් කළ නොහැක.", "227591929": "{{ input_datetime }} {{ dummy }} කාල මුද්‍රාවට", "227903202": "ඔබේ Deriv ෆියට් සහ {{platform_name_mt5}} ගිණුම් අතර සිදු වන විවිධ මුදල් ඒකක මාරුවීම් සඳහා අපි 1% ක හුවමාරු ගාස්තුවක් අය කරන්නෙමු.", @@ -262,7 +259,6 @@ "273728315": "0 හෝ හිස් නොවිය යුතුය", "274268819": "100 අස්ථායීතා දර්ශකය", "275116637": "Deriv X", - "276639155": "කරුණාකර අක්ෂර 20 යටතේ තැපැල්/ZIP කේතයක් ඇතුළත් කරන්න.", "276770377": "නව ගනුදෙනු සඳහා {{to_account}} අධිකරණ බලය යටතේ නව MT5 ගිණුම(ම්) සාදනු ලැබේ.", "277469417": "කාලය වසර පහකට වඩා වැඩි විය නොහැක.", "278684544": "# අන්තයේ සිට උප ලැයිස්තුව ලබා ගන්න", @@ -271,7 +267,6 @@ "282319001": "ඔබේ රූපය පරීක්ෂා කරන්න", "282564053": "ඊළඟට, අපට ඔබේ ලිපිනය පිළිබඳ සාක්ෂි අවශ්‍ය වේ.", "283830551": "ඔබේ ලිපිනය ඔබේ පැතිකඩට නොගැළපේ", - "283986166": "වෙබ් අඩවියේ ස්වයං ව්‍යවර්තන කිරීම් ඔබේ {{brand_website_name}} ගිණුමට පමණක් අදාළ වන අතර වෙනත් සමාගම් හෝ වෙබ් අඩවි ඇතුළත් නොවේ.", "284527272": "ප්‍රති මාදිලිය", "284772879": "ගිවිසුම", "284809500": "Financial ආදර්ශනය", @@ -376,7 +371,6 @@ "401339495": "ලිපිනය සත්‍යාපනය කරන්න", "401345454": "එසේ කිරීමට නිබන්ධන ටැබය වෙත යන්න.", "403456289": "SMA සඳහා සූත්‍රය:", - "404743411": "මුළු තැන්පතු", "406359555": "ගිවිසුම් විස්තර", "406497323": "අවශ්‍ය නම් ඔබේ ක්‍රියාකාරී ගිවිසුම​ විකුණන්න (විකල්ප වශයෙන්)", "411482865": "{{deriv_account}} ගිණුම එක් කරන්න", @@ -468,11 +462,11 @@ "502041595": "මෙම කොටස තෝරා ගත් කාල පරතරය තුළ ඔබට නිශ්චිත candle එකක් ලබා දෙයි.", "505793554": "අවසාන ලිපිය", "508390614": "Financial STP ආදර්ශන ගිණුම", - "510815408": "අක්ෂර, අංක, අවකාශ, හයිපන පමණි", "511679687": "Accumulators මඟින් ඔබට දර්ශකයක චලන පරාසය පිළිබඳ අදහසක් ප්‍රකාශ කිරීමට සහ ස්ථාවර <0>වර්ධන වේගයකදී ඔබේ කොටස් ඝාතීය ලෙස වර්ධනය කර ගැනීමට ඉඩ සලසයි.", "514031715": "ලැයිස්තුව {{ input_list }} හිස් ය", "514776243": "ඔබේ {{account_type}} මුරපදය වෙනස් කර ඇත.", "514948272": "සබැඳිය පිටපත් කරන්න", + "517631043": "අපි ඔයාගේ ඊ-පොත එව්වා. එය බාගත කිරීම සඳහා ඔබේ විද්යුත් තැපෑල පරීක්ෂා කරන්න.", "517833647": "50 (1s) අස්ථායීතා දර්ශකය", "518955798": "7. ආරම්භයේදී එක් වරක් ධාවනය කරන්න", "519205761": "ඔබට තවදුරටත් මෙම ගිණුම සමඟ නව ස්ථාන විවෘත කළ නොහැක.", @@ -499,7 +493,6 @@ "542038694": "{{label}} සඳහා අවසර ඇත්තේ අකුරු, ඉලක්කම්, අවකාශ, යටි ඉර සහ හයිපන පමණි.", "542305026": "ඔබ අනන්‍යතා සාක්ෂියක් ද ඉදිරිපත් කළ යුතුය.", "543413346": "ඔබට මෙම වත්කම සඳහා විවෘත ස්ථාන නොමැත. වෙනත් විවෘත ස්ථාන බැලීමට, 'වාර්තා වෙත යන්න' ක්ලික් කරන්න", - "545476424": "මුළු ආපසු ගැනීම්", "547029855": "ඔබ මෙම විශේෂාංගය තෝරා ගන්නේ නම්, වත්කම් මිල ඔබේ අභිමතයට එරෙහිව ගමන් කරන්නේ නම්, තෝරා ගත් කාල රාමුවක් තුළ ඔබේ ගනුදෙනුව අවලංගු කළ හැකිය. ඔබට ලාභ/අලාභයකින් තොරව ඔබේ කොටස් ආපසු ලැබෙනු ඇත. අපි මේ සඳහා කුඩා ගාස්තුවක් අය කරන්නෙමු. ගනුදෙනු අවලංගු කිරීම සක්‍රිය වූ විට take profit සහ stop loss අක්‍රිය වේ.", "549479175": "Deriv Multipliers", "549799607": "සජීවී කථාබස් වෙත යන්න", @@ -628,6 +621,7 @@ "665777772": "XLM/USD", "665872465": "පහත උදාහරණයේ දී, ආරම්භක මිල තෝරා ගෙන, පසුව එය “op” යනුවෙන් හැඳින්වෙන විචල්‍යකට පවරනු ලැබේ.", "666724936": "කරුණාකර වලංගු හැඳුනුම්පත් අංකයක් ඇතුළත් කරන්න.", + "669494711": "ලක්ෂ්‍යයේ ප්‍රතිශත (pips) 1.4", "671630762": "ඔබගේ ලිපිනය සනාථ කිරීම සඳහා අපි මෙම වර්ගයේ ලේඛන පමණක් පිළිගනිමු. ලේඛනය මෑතකාලීන විය යුතු අතර (පසුගිය මාස {{expiry_in_months}} තුළ නිකුත් වී තිබිය යුතුයි) ඔබේ නම සහ ලිපිනය එහි ඇතුළත් විය යුතුය:", "672008428": "ZEC/USD", "673915530": "අධිකරණ බලය සහ නීතිය තෝරා ගැනීම", @@ -693,7 +687,6 @@ "721011817": "- පළමු අංකය දෙවන අංකයේ බලයට ඔසවන්න", "723045653": "ඔබ මෙම ඊ-තැපැල් ලිපිනය සමග ඔබගේ Deriv ගිණුමට පුරනය වෙයි.", "723961296": "මුරපදය කළමනාකරණය කරන්න", - "724203548": "ඔබට ඔබේ පැමිණිල්ල <0>European Commission's Online Dispute Resolution (ODR) වේදිකාවට යැවිය හැක. මෙය එක්සත් රාජධානියේ ගනුදෙනුකරුවන්ට අදාළ නොවේ.", "724526379": "අපගේ නිබන්ධන සමඟ තවත් දැන ගන්න", "728042840": "අප සමඟ ගනුදෙනු කිරීම දිගටම කරගෙන යාමට, කරුණාකර ඔබ ජීවත් වන්නේ කොතැනදැයි තහවුරු කරන්න.", "728824018": "ස්පාඤ්ඤ දර්ශකය", @@ -726,7 +719,6 @@ "755138488": "ඔබේ ලේඛනයේ නොතිබිය යුතු සලකුණු හෝ පාඨ එහි ඇති නිසා අපට ඔබ ලබා දුන් ලේඛනය සත්‍යාපනය කිරීමට නොහැකි විය. කරුණාකර ඔබේ මුල් අනන්‍යතා ලේඛනයේ පැහැදිලි ඡායාරූපයක් හෝ ස්කෑන් පිටපතක් සපයන්න.", "756152377": "SMA අගයන් සමස්ත ව්‍යාප්තියට සමාන බරක් තබයි.", "758003269": "පාඨ ආශ්‍රයෙන් ලැයිස්තුව සාදන්න", - "759783233": "උපදේශන සහ සහය සේවා සඳහා වැඩි විස්තර සහ උපකාර ලබා ගැනීමට, කරුණාකර <0>begambleaware.org වෙත පිවිසෙන්න.", "760528514": "\"i\" හි අගය වෙනස් කිරීමෙන් ලැයිස්තුවේ මුල් අයිතමයේ අගය වෙනස් නොවන බව කරුණාවෙන් සලකන්න", "761576760": "ගනුදෙනුව ආරම්භ කිරීම සඳහා ඔබේ ගිණුමට අරමුදල් සපයන්න.", "762926186": "ක්ෂණික උපාය මාර්ගයක් යනු ඔබට Deriv බොට් හි භාවිත කළ හැකි සූදානම් කළ උපාය මාර්ගයකි. ඔබට තෝරා ගත හැකි ඉක්මන් උපාය මාර්ග 3ක් ඇත: Martingale, D'Alembert, සහ Oscar's Grind.", @@ -1105,7 +1097,6 @@ "1128404172": "අහෝසි කරන්න", "1129124569": "ඔබ \"Under\" තෝරා ගන්නේ නම්, අවසාන ටික් එකේ අවසාන ඉලක්කම් ඔබේ පුරෝකථනයට වඩා අඩු නම් ඔබ ගෙවීම දිනා ගනු ඇත.", "1129842439": "කරුණාකර take profit අගයක් ඇතුළත් කරන්න.", - "1130744117": "අපි ඔබේ පැමිණිල්ල ව්‍යාපාරික දින 10ක් ඇතුළත විසඳීමට උත්සාහ කරන්නෙමු. අපගේ ස්ථාවරය පිළිබඳ පැහැදිලි කිරීමක් සමඟින් ප්‍රතිඵලය පිළිබඳව අපි ඔබට දන්වා අප ගැනීමට අදහස් කරන ඕනෑම ප්‍රතිකර්ම ක්‍රියාමාර්ග යෝජනා කරන්නෙමු.", "1130791706": "N", "1133651559": "සජීවී කතාබස්", "1134879544": "දීප්තිය සහිත ලේඛනයක උදාහරණයක්", @@ -1274,7 +1265,6 @@ "1304083330": "පිටපතක්", "1304272843": "කරුණාකර ඔබේ ලිපිනය පිළිබඳ සාක්ෂි ඉදිරිපත් කරන්න.", "1304620236": "කැමරාව සබල කරන්න", - "1304788377": "<0/><1/>ඔබේ පැමිණිල්ල අපගේ දත්ත සැකසීමේ පිළිවෙත්වලට සම්බන්ධ නම්, ඔබට ඔවුන්ගේ වෙබ් අඩවියේ <2>තොරතුරු සහ දත්ත ආරක්ෂණ කොමසාරිස් (මෝල්ටා) වෙත විධිමත් පැමිණිල්ලක් ඉදිරිපත් කිරීමට හෝ යුරෝපා සංගමය තුළ ඕනෑම අධීක්ෂණ අධිකාරියකට පැමිණිල්ලක් කිරීමට හැකිය.", "1305217290": "ඔබේ හැඳුනුම්පතේ පිටුපස උඩුගත කරන්න.", "1308625834": "Candle ලැයිස්තුව කියවන බ්ලොක් සඳහා පෙරනිමි කාල පරතරය සකසයි.", "1309017029": "මෙය සක්‍රීය කිරීමෙන් ඔබට ඔබේ බ්ලොක් වෙනත් බොට්වලට පහසුවෙන් ඒකාබද්ධ කළ හැකි එක් එකතුවක් ලෙස සුරැකීමට ඉඩ සලසයි.", @@ -1512,6 +1502,7 @@ "1531017969": "අමුණා ඇති එක් එක් අයිතම අතර හිඩැස් නොමැතිව, පාඨ අගය එකතු කිරීමෙන් තනි පාඨ පෙළක් නිර්මාණය කරයි. ඒ අනුව අයිතම ගණන එක් කළ හැකිය.", "1533177906": "Fall", "1534796105": "විචල්‍ය අගයක් ලැබේ", + "1537192641": "ඔබගේ ඉල්ලීම ක්‍රියාවට නැංවිය නොහැක", "1537711064": "ඔබ අයකැමි වෙත ප්‍රවේශ වීමට පෙර ඉක්මන් අනන්‍යතා සත්‍යාපනයක් කිරීමට අවශ්‍ය වේ. කරුණාකර ඔබේ අනන්‍යතා සාක්ෂි ඉදිරිපත් කිරීමට ඔබේ ගිණුම් සැකසීම් වෙත යන්න.", "1540585098": "ප්‍රතික්ෂේප කරන්න", "1541508606": "CFD සොයනවාද? Trader's Hub වෙත යන්න", @@ -1562,7 +1553,6 @@ "1594147169": "කරුණාකර නැවත ඇතුළට එන්න", "1594322503": "විකුණුම් ලබා ගත හැකිය", "1595295238": "3. මුළු ලාභය/අලාභය Stop loss සීමාවට​ වඩා වැඩි දැයි පරීක්ෂා කිරීමට තර්කන බ්ලොක් එකක් භාවිත කරන්න. ඔබට වම් පස ඇති බ්ලොක් මෙනුව මත විශ්ලේෂණය > සංඛ්‍යාලේඛන යටතේ මුළු ලාභය/අලාභය යන විචල්‍යය සොයා ගත හැක. මුළු ලාභය/අලාභය මුදල Stop loss සීමාව​ ඉක්මවන තෙක් ඔබේ බොට් නව ගිවිසුම් මිලදී ගැනීම දිගටම කරගෙන යනු ඇත.", - "1596378630": "ඔබ සැබෑ Gaming ගිණුමක් එක් කර ඇත.<0/>ගනුදෙනු ආරම්භ කිරීම සඳහා දැන්ම තැන්පතුවක් සිදු කරන්න.", "1597672660": "Deriv MT5 මුරපදය", "1598009247": "<0>a.සිද්ධියෙන් දින 45 කට පසු ඔබට මූල්‍ය කොමිෂන් සභාවට පැමිණිල්ලක් ගොනු කළ හැකිය.", "1598386296": "නගරය/නුවර අවශ්‍යයි.", @@ -1730,7 +1720,6 @@ "1763123662": "ඔබේ NIMC ස්ලිප් එක උඩුගත කරන්න.", "1766212789": "සේවාදායක නඩත්තුව සෑම ඉරිදාවකම GMT 06:00 ට ආරම්භ වන අතර එය පැය 2ක් දක්වා පැවතිය හැක. මෙම කාලය තුළ ඔබට සේවා බාධා ඇති විය හැක.", "1766993323": "අකුරු, ඉලක්කම් සහ හයිපන සඳහා පමණක් අවසර ඇත.", - "1767429330": "Derived ගිණුමක් එක් කරන්න", "1768293340": "ගිවිසුමේ වටිනාකම", "1768861315": "විනාඩි", "1768918213": "අකුරු, අවකාශ, හයිපන, තිත සහ උඩු කොමා සඳහා පමණක් අවසර ඇත.", @@ -1744,6 +1733,7 @@ "1779144409": "ගිණුම් සත්‍යාපනය අවශ්‍ය වේ", "1779519903": "වලංගු අංකයක් විය යුතුය.", "1779801832": "ඒ අනුව ඔබේ මුරපදය යාවත්කාලීන කරන්න.", + "1779872677": "ඊ-පොත බාගත කරන්න", "1780442963": "{{ platform }} බාගත කිරීමට QR කේතය ස්කෑන් කරන්න.", "1780770384": "මෙම කොටස ඔබට 0.0 සිට 1.0 දක්වා අහඹු දශම අගයක් ලබා දෙයි.", "1782308283": "ක්ෂණික උපාය මාර්ගය", @@ -1754,7 +1744,6 @@ "1783740125": "ඔබේ සෙල්ෆි ඡායාරූපය උඩුගත කරන්න", "1785298924": "D’Alembert සූත්‍රය 1", "1786644593": "සහය දක්වන ආකෘති: JPEG, JPG, PNG, PDF සහ GIF පමණි", - "1787135187": "තැපැල්/ZIP කේතය අවශ්‍ය වේ", "1787492950": "ප්‍රස්ථාර පටිත්තෙහි ඇති දර්ශක ප්‍රතීයමාන අරමුණු සඳහා පමණක් වන අතර ඒවා {{platform_name_dbot}} වැඩබිමේ ඇති දර්ශකවලට වඩා තරමක් වෙනස් විය හැක.", "1788515547": "<0/>Office of the Arbiter for Financial Services වෙත පැමිණිල්ලක් ඉදිරිපත් කිරීම පිළිබඳ වැඩිදුර තොරතුරු සඳහා, කරුණාකර <1>ඔවුන්ගේ මාර්ගෝපදේශය බලන්න.", "1788966083": "01-07-1999", @@ -1820,7 +1809,6 @@ "1850031313": "- අඩු: අඩුම මිල", "1850132581": "රට සොයාගත නොහැක", "1850659345": "- ගෙවීම: ගිවිසුමේ ගෙවීම", - "1850663784": "සාක්ෂි ඉදිරිපත් කරන්න", "1851052337": "උපන් ස්ථානය අවශ්‍ය වේ.", "1851776924": "ඉහළ", "1854480511": "අයකැමි අගුලු දමා ඇත", @@ -1837,7 +1825,6 @@ "1865525612": "මෑත ගනුදෙනු නොමැත.", "1866244589": "පිවිසුම් ස්ථානය යනු High/Low Ticks සඳහා වන පළමු Tick එකයි.", "1866811212": "ඔබේ රටේ බලයලත් ස්වාධීන ගෙවීම් නියෝජිතයෙකු හරහා ඔබේ දේශීය මුදල් තැන්පත් කරන්න.", - "1866836018": "<0/><1/>ඔබේ පැමිණිල්ල අපගේ දත්ත සැකසීමේ පරිචයන් හා සම්බන්ධ නම්, ඔබට ඔබේ ප්‍රාදේශීය අධීක්ෂණ අධිකාරියට විධිමත් පැමිණිල්ලක් ඉදිරිපත් කළ හැක.", "1867217564": "දර්ශකය ධන නිඛිලයක් විය යුතුය", "1867783237": "High-සිට-Close", "1869315006": "අයකැමි අගුලු හැරීමට අපි ඔබේ අරමුදල් ආරක්ෂා කරන්නේ කෙසේදැයි බලන්න.", @@ -1848,7 +1835,6 @@ "1871377550": "ඔබ Deriv Bot මත පෙර-සාදන ලද ගනුදෙනු බොට් පිරිනමනවා ද?", "1871664426": "සටහන", "1873376454": "මෙය ඔබ තෝරා ගන්නා මිල මට්ටමකි. කවදා හෝ මෙම බාධකය ඉක්මවා ගියහොත්, ඔබේ ගිවිසුම අවසන් වනු ඇත.", - "1873838570": "කරුණාකර ඔබේ ලිපිනය සත්‍යපනය කරන්න", "1874481756": "ඔබට අවශ්‍ය නිශ්චිත ගිවිසුමක් මිලදී ගැනීමට මෙම කොටස භාවිත කරන්න. ඔබට ඔබේ මිලදී ගැනීමේ කොන්දේසි නිර්වචනය කිරීම සඳහා කොන්දේසි සහිත බ්ලොක් සමග බහු මිලදී ගැනීමේ බ්ලොක් එක් කළ හැක. මෙම කොටස භාවිත කළ හැක්කේ මිලදී ගැනීමේ කොන්දේසි බ්ලොක් එක තුළ පමණි.", "1874756442": "BVI", "1875702561": "ඔබේ බොට් එක පූරණය කරන්න හෝ ගොඩනඟන්න", @@ -1890,7 +1876,6 @@ "1906213000": "අපගේ පද්ධතිය ධාවනය වන ඕනෑම Deriv Bot ගනුදෙනුවක් අවසන් කරනු ඇති අතර, Deriv Bot විසින් කිසිඳු නව ගනුදෙනුවක් සිදු නොකරනු ඇත.", "1906639368": "ඔබ මුරපදයක් සෑදීමට උත්සාහ කරන පළමු අවස්ථාව මෙය නම්, හෝ ඔබට ඔබගේ මුරපදය අමතක වී ඇත්නම්, කරුණාකර එය යළි සකසන්න.", "1907423697": "Deriv API සමඟ වැඩිපුර උපයන්න", - "1907884620": "සැබෑ Deriv Gaming ගිණුමක් එක් කරන්න", "1908023954": "කනගාටුයි, ඔබේ ඉල්ලීම සැකසීමේදී දෝෂයක් ඇති විය.", "1908239019": "සියලුම ලේඛන ඡායාරූපයේ ඇති බවට වග බලා ගන්න", "1908686066": "යෝග්‍යතා පරීක්ෂණ අනතුරු ඇඟවීම", @@ -1993,7 +1978,6 @@ "2001222130": "ඔබේ අයාචිත තැපැල් (spam) හෝ සුන්බුන් (junk) ෆෝල්ඩරය පරීක්ෂා කරන්න. එය එහි නොමැති නම්, ඊ-තැපෑල නැවත යැවීමට උත්සාහ කරන්න.", "2001361785": "1. ආරම්භක කොටස්වලින් ආරම්භ කරන්න. එය 1 USD යැයි කියමු.", "2004052487": "ඔබේ ගනුදෙනුවේ ආයු කාලය ඇස්තමේන්තු කිරීම", - "2004792696": "ඔබ එක්සත් රාජධානියේ පදිංචිකරුවෙකු නම්, මහා බ්‍රිතාන්‍යයේ බලපත්‍ර ඇති සියලුම මාර්ගගත සූදු සමාගම්වලින් ස්වයං ව්‍යවර්තන වීමට, <0>www.gamstop.co.uk වෙත පිවිසෙන්න.", "2007028410": "වෙළෙඳපොළ, ගනුදෙනු වර්ගය, ගිවිසුම් වර්ගය", "2010759971": "උඩුගත කිරීම් සාර්ථකයි", "2010866561": "සම්පූර්ණ ලාභය/අලාභය ආපසු ලබා දෙයි", @@ -2073,7 +2057,6 @@ "2085387371": "අංක, අකුරු සහ විශේෂ අනුලකුණු විය යුතුය. , '-", "2085602195": "- ඇතුළත් කිරීමේ අගය: ගිවිසුමේ පළමු ටික් එකෙහි වටිනාකම", "2086048243": "සංස්ථාගත කිරීමේ සහතිකය", - "2086742952": "ඔබ සැබෑ විකල්ප ගිණුමක් එක් කර ඇත.<0/>ගනුදෙනු ආරම්භ කිරීම සඳහා දැන්ම තැන්පතුවක් සිදු කරන්න.", "2086792088": "බාධක දෙකම සාපේක්ෂ හෝ නිරපේක්ෂ විය යුතුය", "2088735355": "ඔබේ සැසිය හා පිවිසුම් සීමා", "2089087110": "බාස්කට් දර්ශක", @@ -2281,7 +2264,6 @@ "-1699820408": "කරුණාකර {{max_number}} අනුලකුණු යටතේ {{field_name}} ඇතුළත් කරන්න.", "-1575567374": "තැපැල්/Zip කේතය", "-816263501": "අකුරු, අංක, අවකාශය සහ හයිපන සඳහා පමණක් අවසර ඇත.", - "-1497654315": "ජර්සි හි තැපැල් කේතය සඳහා අපගේ ගිණුම් සහ සේවා ලබා ගත නොහැක.", "-755626951": "ඔබේ ලිපින විස්තර සම්පූර්ණ කරන්න", "-1024240099": "ලිපිනය", "-1534917661": "ඔබ කැමති මුදල් ඒකකය තෝරන්න", @@ -2348,6 +2330,7 @@ "-1458676679": "ඔබ 2-50 අක්ෂර ඇතුළත් කළ යුතුය.", "-1116008222": "ඔබ අංක 9-35 ඇතුළත් කළ යුතුය.", "-1995979930": "ලිපිනයේ පළමු පේළිය අවශ්‍ය වේ.", + "-703454156": "කරුණාකර අක්ෂර 20 යටතේ තැපැල්/ZIP කේතයක් ඇතුළත් කරන්න.", "-2113555886": "අකුරු, අංක, අවකාශය සහ හයිපන සඳහා පමණක් අවසර ඇත.", "-1103497546": "බදු ප්‍රතිලාභය", "-700600899": "ව්‍යාපාරික ලිපිනය සනාථ කිරීම", @@ -2499,7 +2482,6 @@ "-1545823544": "දින 7", "-180147209": "මෙම කාල සීමාවෙන් පසු ඔබ එක් එක් සැසියෙන් ස්වයංක්‍රීයව ඉවත් වනු ඇත.", "-374553538": "මෙම දිනය දක්වා ඔබේ ගිණුම වෙබ් අඩවියෙන් බැහැර කරනු ලැබේ (අවම වශයෙන් මාස 6 සිට අවුරුදු 5 දක්වා).", - "-2121421686": "මහා බ්‍රිතාන්‍යයේ බලපත්‍ර ඇති සියලුම මාර්ගගත සූදු සමාගම්වලින් ස්වයං ව්‍යවර්තන වීමට, <0>www.gamstop.co.uk වෙත පිවිසෙන්න.", "-2105708790": "ඔබේ උපරිම ගිණුම් ශේෂය සහ විවෘත ස්ථාන", "-1960600163": "ඔබේ ගිණුමේ ශේෂය මෙම මුදලට ළඟා වූ පසු, ඔබට ඔබේ ගිණුමට මුදල් තැන්පත් කිරීමට නොහැකි වනු ඇත.", "-1073845224": "විවෘත ස්ථාන ගණන", @@ -2653,6 +2635,7 @@ "-1728732301": "passkeys සමඟ වෙහෙස නොවී පුරනය වීම", "-684009726": "passkey සංස්කරණය කරන්න", "-1140319320": "ඔබේ ගිණුම දැන් passkey එකකින් සුරක්ෂිත කර ඇත.<0/>ඔබේ Deriv ගිණුම් සැකසීම් හරහා <0/>ඔබේ passkey කළමනාකරණය කරන්න.", + "-1036903080": "ඔබගේ ඉල්ලීම සැකසීමේදී අපට තාවකාලික ගැටළුවක් අත්විඳිනවා. කරුණාකර පසුව නැවත උත්සාහ කරන්න.", "-331060101": "Passkey පිහිටුවීම අසාර්ථක විය", "-713875531": "Bluetooth සක්‍රීය කරන්න.", "-80717068": "ඔබ ඔබේ <0>Deriv මුරපදය වෙත සම්බන්ධ කර ඇති යෙදුම්:", @@ -2710,6 +2693,10 @@ "-145462920": "Deriv cTrader", "-1210359945": "ඔබගේ ගිණුම් වලට අරමුදල් මාරු කරන්න", "-81256466": "CFD ගිණුමක් සෑදීමට ඔබට Deriv ගිණුමක් අවශ්‍ය වේ.", + "-1926387364": "අපි ඔබේ ඊ-පොත ඔබගේ විද්යුත් තැපෑලට එවා ඇත. ඔබට එය මෙතනින් බාගත කළ හැකිය.", + "-1057002564": "<0>අපට මෙම අවස්ථාවේදී ඔබව Wallets වෙත උත්ශ්‍රේණි කිරීමට නොහැකි වන අතර අපි හැකි ඉක්මනින් මෙය නිවැරදි කිරීමට කටයුතු කරමින් සිටිමු. කරුණාකර <1>නැවත උත්සාහ කරන්න<0>.", + "-1424352390": "<0>Wallets<1> — ඔබේ අරමුදල් කළමනාකරණය කිරීමට සුක්ෂම ක්‍රමයක්", + "-280236366": "දැන් සබල කරන්න", "-699372497": "සාර්ථක ගනුදෙනු සඳහා වඩා හොඳ ප්‍රතිලාභ ලබා ගැනීමට උත්තෝලනය සහ තද ව්‍යාප්ති සමඟ ගනුදෙනු කරන්න. <0>තව දැන ගන්න", "-982095728": "ලබා ගන්න", "-1790089996": "අලුත්!", @@ -2733,13 +2720,10 @@ "-2055865877": "යුරෝපීය සංගමයේ නොවන නියාමනය", "-643108528": "යුරෝපීය සංගමයේ නොවන සහ යුරෝපීය සංගමයේ නියාමනය", "-1002556560": "අපට Wallet උත්ශ්‍රේණිගත කිරීම සමඟ සම්පූර්ණ කළ නොහැක. කරුණාකර පසුව නැවත උත්සාහ කරන්න හෝ සජීවී කථාබස් හරහා අප හා සම්බන්ධ වන්න.", - "-280236366": "දැන් සබල කරන්න", "-2051096382": "<0>විකල්ප සමඟ වෙළඳපල චලනයන් නිවැරදිව පුරෝකථනය කිරීමෙන් ගෙවීම් පරාසයක් උපයා ගන්න, නැතහොත්\n <1>multipliers සමඟ ඔබේ ආරම්භක කොටස්වලට වඩා අවදානමකින් තොරව CFD වල ප්‍රතිලාභ ලබා ගන්න.", "-1638358352": "<0>Multipliers සමඟ ඔබේ මූලික කොටස්වලට වඩා වැඩි යමක් අවදානමට ලක් නොකර CFD හි වාසිය ලබා ගන්න.", "-744999940": "Deriv ගිණුම", "-749129977": "සැබෑ Deriv ගිණුමක් ලබා ගන්න, ගනුදෙනු ආරම්භ කර ඔබේ අරමුදල් කළමනාකරණය කරන්න.", - "-1057002564": "<0>අපට මෙම අවස්ථාවේදී ඔබව Wallets වෙත උත්ශ්‍රේණි කිරීමට නොහැකි වන අතර අපි හැකි ඉක්මනින් මෙය නිවැරදි කිරීමට කටයුතු කරමින් සිටිමු. කරුණාකර <1>නැවත උත්සාහ කරන්න<0>.", - "-1424352390": "<0>Wallets<1> — ඔබේ අරමුදල් කළමනාකරණය කිරීමට සුක්ෂම ක්‍රමයක්", "-2146691203": "නියාමන තේරීම", "-249184528": "ඔබට යුරෝපීය සංගමයේ හෝ යුරෝපීය නොවන සංගමයේ රෙගුලාසි යටතේ සැබෑ ගිණුම් සෑදිය හැක. මෙම ගිණුම් ගැන තව දැන ගැනීමට <0><0/> අයිකනය ක්ලික් කරන්න.", "-1505234170": "Trader's Hub චාරිකාව", @@ -2860,7 +2844,6 @@ "-1949883551": "ඔබට ඇත්තේ එක් ගිණුමක් පමණි", "-1149845849": "Trader's Hub වෙත ආපසු", "-1232852916": "අපි ගනුදෙනුව බැලීමට ඔබේ {{currency}} ගිණුමට මාරු වෙමු.", - "-759000391": "අපට ඔබේ තොරතුරු ස්වයංක්‍රීයව සත්‍යාපනය කිරීමට නොහැකි විය. මෙම කාර්යය සක්‍රීය කිරීම සඳහා, ඔබ පහත සඳහන් දෑ සම්පූර්ණ කළ යුතුය:", "-1632668764": "මම පිළිගන්නවා", "-544232635": "ලිපිනයක් උත්පාදනය කිරීමට කරුණාකර තැන්පතු පිටුවට යන්න. ඉන්පසු ඔබේ ගනුදෙනුව ඉදිරියට ගෙන යාමට නැවත මෙහි එන්න.", "-1161069724": "කරුණාකර ඔබ පහතින් දකින ක්‍රිප්ටෝ ලිපිනය පිටපත් කරන්න. ඔබේ ක්‍රිප්ටෝ මුදල් තැන්පත් කිරීමට ඔබට එය අවශ්‍ය වනු ඇත.", @@ -3267,7 +3250,6 @@ "-821418875": "ගනුදෙනුකරුවා", "-679102561": "ගිවිසුම් විස්තර", "-430118939": "පැමිණිලි ප්‍රතිපත්තිය", - "-568280383": "Deriv Gaming", "-1308346982": "Derived", "-579984289": "Derived ආදර්ශන​", "-1596515467": "Derived BVI", @@ -3390,7 +3372,6 @@ "-689237734": "ඉදිරියට යන්න", "-1642457320": "උදවු මධ්‍යස්ථානය", "-1966944392": "ජාල තත්ත්වය: {{status}}", - "-594209315": "යුරෝපීය සංගමයේ කෘත්‍රිම​ දර්ශක Malta Gaming Authority විසින් බලපත්‍ර ලබා දී නියාමනය කරන (<0>බලපත්‍ර අංකය. MGA/B2C/102/2000), W Business Center, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta ලිපිනය දරන {{legal_entity_name}} විසින් සහ අයර්ලන්තයේ සේවාදායකයින් සඳහා Revenue Commissioners 0(<2>බලපත්‍ර අංක 1010285) විසින් පිරිනමනු ලැබේ.", "-181484419": "වගකීම් සහිතව ගනුදෙනු කිරීම", "-650505513": "සම්පූර්ණ තිරය", "-1823504435": "දැනුම්දීම් බලන්න", @@ -3400,8 +3381,8 @@ "-1496158755": "Deriv.com වෙත යන්න", "-1323441180": "බ්‍රසීලයෙන් පිටතදී නිකුත් කරන ලද සහ පිරිනමන OTC නිෂ්පාදන ගනුදෙනු කිරීමට Deriv සමඟ ගිණුමක් විවෘත කිරීම සඳහා වන මගේ ඉල්ලීම මා විසින් ආරම්භ කරන ලද බව මෙයින් තහවුරු කරමි. Deriv CVM මඟින් නියාමනය නොවන බව මට හොඳින් වැටහෙන අතර Deriv වෙත පිවිසීමෙන් මම විදේශීය සමාගමක් සමඟ සබඳතාවක් පිහිටුවීමට අදහස් කරමි.", "-1396326507": "අවාසනාවකට මෙන්, {{website_name}} ඔබේ රටේ නොමැත.", - "-1019903756": "කෘත්‍රිම​ දර්ශක", "-288996254": "ලබාගත නොහැක", + "-1019903756": "කෘත්‍රිම​ දර්ශක", "-735306327": "ගිණුම් කළමනාකරණය කරන්න", "-1813972756": "ගිණුම සෑදීම පැය 24කට විරාම ගන්වන ලදී", "-366030582": "කනගාටුයි, ඔබට මෙම අවස්ථාවේදී ගිණුමක් සෑදිය නොහැක. ඔබ අපගේ පෙර අවදානම් අනතුරු ඇඟවීම් ප්‍රතික්ෂේප කළ බැවින්, ඔබට ඉදිරියට යාමට පෙර ඔබේ පළමු ගිණුම සෑදීමේ උත්සාහයෙන් පසු පැය 24ක් බලා සිටීමට සිදු වේ.<0/><0/>", @@ -3424,9 +3405,6 @@ "-175638343": "ගිණුමක් තෝරන්න හෝ අලුත් එකක් එක් කරන්න", "-1768223277": "ඔබේ ගිණුම සූදානම්", "-1215717784": "<0>ඔබ ඔබේ මුදල් ඒකකය {{currency}} වෙත සාර්ථකව වෙනස් කර ඇත..<0>ගනුදෙනු ආරම්භ කිරීමට දැන් තැන්පතුවක් කරන්න.", - "-786091297": "ආදර්ශන​ මත ගනුදෙනු කරන්න", - "-228099749": "කරුණාකර ඔබේ අනන්‍යතාවය සහ ලිපිනය තහවුරු කරන්න", - "-1041852744": "අපි ඔබේ පුද්ගලික තොරතුරු සකසමින් සිටිමු", "-1775006840": "ගනුදෙනු ආරම්භ කිරීමට දැන් තැන්පතුවක් කරන්න.", "-983734304": "ඔබ ගනුදෙනු ආරම්භ කිරීමට පෙර අපට ඔබේ අනන්‍යතාවය සහ ලිපිනය පිළිබඳ සාක්ෂි අවශ්‍ය වේ.", "-917733293": "ගනුදෙනු ආරම්භ කිරීම සඳහා කරුණාකර ඔබ ජීවත් වන ස්ථානය තහවුරු කරන්න.", @@ -3434,7 +3412,6 @@ "-952649119": "පුරනය වන්න", "-3815578": "ලියාපදිංචි වන්න", "-1456176427": "ඔබගේ සැබෑ ගිණුම සඳහා මුදල් සකසන්න", - "-1557011219": "සැබෑ Deriv විකල්ප ගිණුමක් එක් කරන්න", "-241733171": "Deriv මූල්‍ය ගිණුමක් එක් කරන්න", "-1329687645": "ක්‍රිප්ටෝ මුදල් ගිණුමක් සාදන්න", "-1429178373": "නව ගිණුමක් සාදන්න", @@ -3471,14 +3448,10 @@ "-2142491494": "හරි, තේරුණා", "-611136817": "ව්‍යාජ සබැඳි ගැන විමසිල්ලෙන් සිටින්න.", "-1342699195": "මුළු ලාභය/අලාභය:", - "-943710774": "{{legal_entity_name}} සමඟ ලියාපදිංචි වී ඇති, First Floor, Millennium House, Victoria Road, Douglas, Isle of Man, IM2 4RW ලෙස එහි ලියාපදිංචි කාර්යාල ලිපිනය සහිත, (1) අයිල් ඔෆ් මෑන් හි Gambling Supervision Commission (2017 අගෝස්තු 31 දින නිකුත් කරන ලද වත්මන් <0>බලපත්‍රය) සහ (2) එක්සත් රාජධානියේ Gambling Commission (<1>බලපත්‍ර අංකය. 39172) මඟින් බලපත්‍ර ලබා දී නියාමනය කර ඇති ඔබේ ගිණුමට කලින් කලට වෙනස් විය හැකි මෙම පැමිණිලි ප්‍රතිපත්තිය අදාළ වේ.", - "-255056078": "{{legal_entity_name}} සමඟ ලියාපදිංචි වී ඇති, W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033, Malta ලෙස එහි ලියාපදිංචි කාර්යාල ලිපිනය සහිත, සූදු නිෂ්පාදන සඳහා පමණක් මෝල්ටාවේ Malta Gaming Authority විසින්, <0>බලපත්‍ර අංකය MGA/B2C/102/2000, සහ එක්සත් රාජධානියේ පදිංචි සේවාදායකයින් සඳහා එක්සත් රාජධානියේ Gambling Commission විසින් (ගිණුම් අංක 39495) බලපත්‍ර ලබා දී නියාමනය කර ඇති ඔබේ ගිණුමට(ගිණුම්වලට) කලින් කලට වෙනස් විය හැකි මෙම පැමිණිලි ප්‍රතිපත්තිය අදාළ වේ.", "-1941013000": "කලින් කලට වෙනස් විය හැකි මෙම පැමිණිලි ප්‍රතිපත්තිය, {{legal_entity_name_svg}}, {{legal_entity_name_fx}} සහ {{legal_entity_name_v}} සමඟ ලියාපදිංචි වී ඇති ඔබේ ගිණුමට(ගිණුම්වලට) අදාළ වේ.", "-594812204": "කලින් කලට වෙනස් විය හැකි මෙම පැමිණිලි ප්‍රතිපත්තිය, {{legal_entity_name_svg}} සමඟ ලියාපදිංචි වී ඇති ඔබේ ගිණුමට(ගිණුම්වලට) අදාළ වේ.", "-813256361": "අපගේ ගනුදෙනුකරුවන්ට සාධාරණ ලෙස සැලකීමට සහ ඔවුන්ට විශිෂ්ට සේවාවක් ලබා දීමට අපි කැපවී සිටිමු.<0/><1/>අපගේ සේවා වැඩිදියුණු කළ හැකි ආකාරය පිළිබඳව ඔබෙන් අසා දැන ගැනීමට අපි කැමැත්තෙමු. ඔබ සපයන ඕනෑම තොරතුරක් දැඩි රහස්‍යභාවයකින් සලකනු ලැබේ. ඔබට සවන් දීම, අගය කිරීම සහ සැමවිටම සාධාරණ ලෙස සලකනු ඇති බව ඔබට සහතික කර ගත හැක.", "-1622847732": "ඔබට {{legal_entity_name}} සමඟ ඔබේ ගනුදෙනු ගිණුම සම්බන්ධයෙන් විමසීමක් තිබේ නම්, ඔබට අපගේ <0>උදවු මධ්‍යස්ථානය හරහා හෝ <1>සජීවී කථාබස් හරහා නියෝජිතයෙකු සමඟ කථාබස් කිරීමෙන් අප හා සම්බන්ධ විය හැක.<2/><3/>ඔබේ විමසුම හැකි ඉක්මනින් විසඳීමට අපි කැපවී සිටින අතර අපට ගැටලුව විසඳීමට කාලය ලබා දීම සම්බන්ධයෙන් ඔබේ ඉවසීම අපි අගය කරන්නෙමු<4/><5/>අපගේ ගනුදෙනුකරුවන්ට හැකි උපරිම සේවාවක් සහ සහයෝගයක් ලබා දීමට අපි උත්සාහ කරමු. කෙසේ වෙතත්, අපට ඔබේ විමසුම විසඳීමට නොහැකි වූ විට හෝ ඔබ අපගේ ප්‍රතිචාරයෙන් සෑහීමකට පත් නොවන බව ඔබට හැඟේ නම්, අපි ඔබෙන් ප්‍රතිචාරයක් බලාපොරොත්තු වන්නෙමු. අපි ඔබව සාදරයෙන් පිළිගන්නෙමු, අප වෙත නිල පැමිණිල්ලක් ඉදිරිපත් කිරීමට දිරිමත් කරන්නෙමු, එවිට අපට ඔබේ කරුණු සමාලෝචනය කර විසඳුමක් ලබා දීමට කටයුතු කළ හැක.", - "-1639808836": "ප්‍රතිඵලය පිළිබඳව ඔබ සෑහීමකට පත් නොවන්නේ නම්, IBAS විනිශ්චය කිරීමේ පෝරමය පිරවීමෙන් ඔබට <0>Independent Betting Adjudication Service (IBAS) වෙත ඔබේ පැමිණිල්ල යොමු කළ හැක. IBAS ගණුදෙනුවලින් ඇතිවන මත භේද සම්බන්ධයෙන් පමණක් කටයුතු කරන බව කරුණාවෙන් සලකන්න.", - "-1505742956": "<0/><1/>ඔබට <2>ක්‍රීඩක සහය ඒකකය හරහා Malta Gaming Authority වෙතද ඔබේ මත භේදය යොමු කළ හැක.", "-1406192787": "ප්‍රතිඵලය ගැන ඔබ සෑහීමකට පත් නොවන්නේ නම්, ඔබට ඔබේ පැමිණිල්ල <0>මූල්‍ය කොමිෂන් සභාවට යොමු කළ හැක.", "-1776547326": "<0/><1/>ඔබ එක්සත් රාජධානියේ පදිංචිව සිටින්නේ නම් සහ අපගේ ප්‍රතිචාරය ගැන ඔබ නොසතුටින් පසු වන්නේ නම්, ඔබට ඔබේ පැමිණිල්ල <2>මූල්‍ය ඔම්බුඩ්ස්මන් සේවයට තීව්‍ර කළ හැක.", "-2115348800": "1. හැඳින්වීම", @@ -3561,7 +3534,6 @@ "-1969608084": "Forex සහ ක්‍රිප්ටෝ මුදල්", "-800771713": "Labuan Financial Services Authority (බලපත්‍ර අංකය. MB/18/0024)", "-1497128311": "80+", - "-1501230046": "ලක්ෂ්‍යයේ ප්‍රතිශත (pips) 0.6", "-1689815930": "ඔබ යම් සීමාවන් කරා ළඟා වූ පසු ඔබට අනන්‍යතාවය සහ ලිපිනය පිළිබඳ සාක්ෂි ඉදිරිපත් කිරීමට සිදු වනු ඇත.", "-1175785439": "Deriv (SVG) LLC (සමාගම් අංකය 273 LLC 2020)", "-139026353": "ඔබේම සෙල්ෆි ඡායාරූපයක්.", @@ -4102,7 +4074,6 @@ "-1750896349": "D'Alembert", "-102980621": "Oscar's Grind උපාය මාර්ගය යනු මුලින්ම 1965 වර්ෂයේදී ප්‍රකාශයට පත් කළ අඩු අවදානම් ධනාත්මක ප්‍රගති උපාය මාර්ගයකි. මෙම උපාය මාර්ගය භාවිත කිරීමෙන්, සාර්ථක ගනුදෙනුවකින් පසු ඔබේ ගිවිසුමේ ප්‍රමාණය වැඩි වනු ඇත, නමුත් අසාර්ථක ගනුදෙනුවකින් පසුව එය නොවෙනස්ව පවතිනු ඇත.", "-462715374": "මාතෘකා රහිත බොට්", - "-538215347": "ශුද්ධ තැන්පතු", "-280147477": "සියලුම ගනුදෙනු", "-137444201": "ගැනුම්", "-130601012": "කරුණාකර කාල සීමාව තෝරන්න", diff --git a/packages/translations/src/translations/sw.json b/packages/translations/src/translations/sw.json index 45baed2b2364..fe2347855c70 100644 --- a/packages/translations/src/translations/sw.json +++ b/packages/translations/src/translations/sw.json @@ -1,5 +1,4 @@ { - "1014140": "Unaweza pia kupiga simu <0>+447723580049 ili kutoa malalamiko yako.", "1485191": "1:1000", "2082741": "idadi ya hati za ziada", "2091451": "Deriv Bot - mshirika wako wa biashara ya kiotomatiki", @@ -205,12 +204,10 @@ "218441288": "Nambari ya kadi ya utambulisho", "220014242": "Pakia selfie kutoka kwa kompyuta yako", "220186645": "Maandishi hayana maudhui", - "220232017": "demo CFDs", "221261209": "Akaunti ya Deriv itakuruhusu kuweka fedha (na kutoa pesa kutoka) katika akaunti zako za CFDs.", "223120514": "Katika mfano huu, kila pointi ya mstari wa SMA ni wastani wa hesabu ya bei za karibu kwa siku 50 zilizopita.", "223607908": "Takwimu za mwisho kwa tarakimu za tick 1000 za hivi karibuni za {{underlying_name}}", "224650827": "IOT/USD", - "224929714": "<1>Beti zinazotokana na hafla halisi nchini Uingereza na Kisiwa cha Man hutolewa na {{legal_entity_name}}, Millennium House, Level 1, Victoria Road, Douglas IM2 4RW, Isle of Man, yenye leseni na kudhibitiwa nchini Uingereza na Tume ya Kamari chini ya ak <0>aunti namba 39172 na na Tume ya Usimamizi wa Kamari katika Kisiwa cha Man (angalia leseni).", "225887649": "Kizuizi hiki ni cha lazima. Huwekwa kwenye mkakati wako kwa chaguo-msingi unapounda mkakati mpya. Huwezi kuongeza nakala zaidi ya moja ya kizuizi hiki kwenye canvas.", "227591929": "Kuweka muda {{ input_datetime }} {{ dummy }}", "227903202": "Tutatoza 1% kama ada ya uhamishaji pesa kwa uhamishaji unaofanyika katika sarafu tofauti kati ya akaunti zako za Deriv fiat na {{platform_name_mt5}}.", @@ -262,7 +259,6 @@ "273728315": "Haipaswi kuwa 0 au tupu", "274268819": "Dira ya Volatility 100", "275116637": "Deriv X", - "276639155": "Tafadhali ingiza msimbo wa posta/zip chini ya herufi 20.", "276770377": "Akaunti mpya za MT5 chini ya mamlaka ya {{to_account}} zitaundwa kwa biashara mpya.", "277469417": "Muda wa kutengwa hauwezi kuwa zaidi ya miaka mitano.", "278684544": "pata orodha ndogo kutoka # kutoka mwisho", @@ -271,7 +267,6 @@ "282319001": "Angalia picha yako", "282564053": "Alafu, tutahitaji uthibitisho wako wa anwani.", "283830551": "Anwani yako haifanani na wasifu wako", - "283986166": "Kujitenga-binafsi kwenye wavuti hufanyika tu kwa akaunti yako ya {{brand_website_name}} na hakujumuishi kampuni nyingine au tovuti.", "284527272": "antimode", "284772879": "Mkataba", "284809500": "Demo ya Kifedha", @@ -376,7 +371,6 @@ "401339495": "Thibitisha anwani", "401345454": "Nenda kwenye kichupo cha Mafunzo ili kufanya hivyo.", "403456289": "Fomula ya SMA ni:", - "404743411": "Jumla ya pesa zilizowekwa", "406359555": "Maelezo ya mkataba", "406497323": "Uza mkataba wako unaotumika ikiwa inahitajika (hiari)", "411482865": "Ongeza akaunti ya {{deriv_account}}", @@ -468,11 +462,11 @@ "502041595": "Kizuizi hiki kinakupa mshumaa maalum kutoka ndani ya muda uliochaguliwa.", "505793554": "barua ya mwisho", "508390614": "Demo ya Fedha STP", - "510815408": "Herufi, nambari, nafasi, na alama (-) pekee", "511679687": "<0>Makusanyiko hukuruhusu kuelezea maoni juu ya aina ya harakati za firisi na kukuza hisa yako kwa kasi kwa kiwango cha ukuaji kilichowekwa.", "514031715": "orodha {{ input_list }} ni tupu", "514776243": "Nenosiri lako la {{account_type}} limebadilishwa.", "514948272": "Nakili kiungo/link", + "517631043": "Tumetuma e-book yako. Angalia barua pepe yako ili kuipakua.", "517833647": "Dira ya Volatility 50 (1s)", "518955798": "7. Endesha Mara moja toka Mwanzoni", "519205761": "Huwezi tena kufungua nafasi mpya na akaunti hii.", @@ -499,7 +493,6 @@ "542038694": "Herufi tu, nambari, nafasi, alama ya mkato, na alama (-) zinaruhusiwa kwa {{label}}.", "542305026": "Lazima pia uwasilishe uthibitisho wa utambulisho.", "543413346": "Huna nafasi iliyo wazi kwa mali hii. Ili kutazama nafasi nyingine zilizo wazi, bofya Nenda kwenye Ripoti", - "545476424": "Jumla ya uondoaji", "547029855": "Ikiwa utachagua kipengele hiki, unaweza kughairi biashara yako ndani ya muda uliochaguliwa ikiwa bei ya mali inaenda kinyume na utabiri wako. Utarudishiwa dau lako bila faida/hasara. Tunatoza ada ndogo kwa hili. Kuchukua faida na kuzuia hasara huzimwa wakati ughairi wa mpango unapokuwa unafanya kazi.", "549479175": "Deriv Multipliers", "549799607": "Nenda kwenye Mazungumzo Mubashara", @@ -628,6 +621,7 @@ "665777772": "XLM/USD", "665872465": "Katika mfano hapa chini, bei ya ufunguzi huchaguliwa, ambayo kisha hupewa kigezo kinachoitwa “op”.", "666724936": "Tafadhali ingiza nambari halali ya kitambulisho.", + "669494711": "1.4 pips", "671630762": "Tunakubali tu aina hizi za nyaraka kama uthibitisho wa anwani yako. Hati lazima iwe ya hivi karibuni (iliyotolewa ndani ya miezi {{expiry_in_months}} iliyopita) na ijumuishe jina lako na anwani:", "672008428": "ZEC/USD", "673915530": "Mamlaka na uchaguzi wa sheria", @@ -693,7 +687,6 @@ "721011817": "- Inua nambari ya kwanza kwa nguvu ya nambari ya pili", "723045653": "Utaingia kwenye akaunti yako ya Deriv na anwani hii ya barua pepe.", "723961296": "Dhibiti nenosiri", - "724203548": "Unaweza kutuma malalamiko yako kwenda jukwaa la <0>European Commission's Online Dispute Resolution (ODR). Hii haipatikani kwa wateja wa Uingereza.", "724526379": "Jifunze zaidi na mafunzo yetu", "728042840": "Ili kuendelea kufanya biashara na sisi, tafadhali thibitisha mahali unapoishi.", "728824018": "Dira ya Kihispania", @@ -726,7 +719,6 @@ "755138488": "Hatujaweza kuthibitisha hati uliyotoa kwa sababu ina alama au maandishi ambayo hayapaswi kuwa kwenye hati yako. Tafadhali tupatie picha safi au skani hati yako asilia ya utambulisho.", "756152377": "SMA huweka uzito sawa katika usambazaji mzima wa thamani.", "758003269": "tengeneza orodha kutoka kwa maandishi", - "759783233": "Kwa taarifa zaidi na msaada kwa huduma za ushauri nasaha, tafadhali tembelea <0>begambleaware.org.", "760528514": "Tafadhali kumbuka kuwa kubadilisha thamani ya “i” hakutabadilisha thamani ya bidhaa asili kwenye orodha", "761576760": "Weka pesa katika akaunti yako ili kuanza biashara.", "762926186": "Mkakati wa haraka ni mkakati uliotayarishwa tayari ambao unaweza kuutumia katika Deriv Bot. Kuna mikakati 3 ya haraka unaweza kuchagua kutoka kwa: Martingale, D'Alembert, na Oscar's Grind.", @@ -909,7 +901,7 @@ "948176566": "Mpya!", "949859957": "Wasilisha", "951404247": "Furahia miamala isiyo na dosari katika sarafu mbalimbali na kiolesura bora cha utumiaji na utengaji wa fedha.", - "952927527": "Inasimamiwa na Malta Financial Services Authority (MFSA) (leseni na. IS/70156)", + "952927527": "Imedhibitiwa na Malta Financial Services Authority (MFSA) (leseni na. IS/70156)", "956448295": "Picha iliyokatwa iligunduliwa", "957182756": "Kazi za trigonometri", "958430760": "In/Out", @@ -1096,7 +1088,7 @@ "1123927492": "Hujachagua sarafu ya akaunti yako", "1124382808": "Tafadhali ingiza muda wa kumalizika katika muundo \"HH:MM\".", "1125090693": "Lazima iwe namba", - "1126075317": "Ongeza akaunti yako ya Deriv MT5 <0>{{account_type_name}} STP chini ya Deriv (FX) Ltd inayosimamiwa na Labuan Financial Service Authority (Leseni na. MB/18/0024).", + "1126075317": "Ongeza akaunti yako ya Deriv MT5 <0>{{account_type_name}} STP chini ya Deriv (FX) Ltd inayodhibitiwa na Labuan Financial Service Authority (Leseni na. MB/18/0024).", "1126934455": "Urefu wa jina la tokeni lazima uwe kati ya herufi 2 na 32.", "1127224297": "Samahani kwa usumbufu", "1127884488": "cTrader MacOS app", @@ -1105,7 +1097,6 @@ "1128404172": "Kuondoa", "1129124569": "Ukichagua “Under”, utashinda malipo ikiwa tarakimu ya mwisho ya tick ya mwisho ni chini kuliko utabiri wako.", "1129842439": "Tafadhali ingiza kiasi cha kuchukua faida.", - "1130744117": "Tutajaribu kutatua malalamiko yako ndani ya siku 10 za kazi. Tutakujulisha matokeo pamoja na maelezo ya msimamo wetu na kupendekeza hatua zozote za urekebishaji tunazokusudia kuchukua.", "1130791706": "N", "1133651559": "Mazungumzo mubashara", "1134879544": "Mfano wa hati yenye mng'ao hafifu", @@ -1274,7 +1265,6 @@ "1304083330": "nakala", "1304272843": "Tafadhali wasilisha uthibitisho wako wa anwani.", "1304620236": "Wezesha kamera", - "1304788377": "<0/><1/>Ikiwa malalamiko yako yanahusiana na uchakataji wetu wa data, unaweza kuwasilisha malalamiko rasmi kwenda kwa <2>Kamishna wa Ulinzi wa Taarifa na Data (Malta) kwenye wavuti yao au kufungua malalamiko kwa mamlaka yoyote ya usimamizi ndani ya Umoja wa Ulaya.", "1305217290": "Pakia upande wa nyuma wa kadi yako ya kitambulisho.", "1308625834": "Inaweka muda wa muda msingi kwa vitalu vinavyosema orodha ya mishumaa.", "1309017029": "Kuwezesha hii hukuruhusu kuhifadhi vizuzi vyako kwa mkusanyiko mmoja ambao unaweza kuunganishwa kwa urahisi kwenye bots nyingine.", @@ -1481,7 +1471,7 @@ "1496810530": "GBP/AUD", "1497773819": "Deriv MT5 akaunti", "1499080621": "Alijaribu kufanya operesheni batili.", - "1501691227": "Ongeza akaunti yako ya Deriv MT5 <0>{{account_type_name}} chini ya Deriv (V) Ltd, inayosimamiwa na Vanuatu Financial Service Commission.", + "1501691227": "Ongeza akaunti yako ya Deriv MT5 <0>{{account_type_name}} chini ya Deriv (V) Ltd, inayodhibitiwa na Vanuatu Financial Service Commission.", "1502039206": "Over {{barrier}}", "1502325741": "Nenosiri lako haliwezi kuwa sawa na anwani yako ya barua pepe.", "1503618738": "- Kitambulisho cha kumbukumbu ya mpango: kitambulisho cha kumbukumbu ya mkataba", @@ -1512,11 +1502,12 @@ "1531017969": "Inaunda kamba moja ya maandishi kutoka kwa kuchanganya thamani ya maandishi ya kila kitu iliyoambatishwa, bila nafasi kati ya. Idadi ya vitu inaweza kuongezwa ipasavyo.", "1533177906": "Fall", "1534796105": "Inapata thamani kigezo", + "1537192641": "Imeshindwa kuchakata ombi lako", "1537711064": "Unahitaji kufanya uthibitishaji wa haraka wa utambulisho kabla ya kufikia Keshia. Tafadhali nenda kwenye mipangilio ya akaunti yako kuwasilisha uthibitisho wako wa utambulisho.", "1540585098": "Kataa", "1541508606": "Unatafuta CFDs? Nenda kwenye Trader's Hub", "1541770236": "Mkakati wa 1-3-2-6 unalenga kuongeza faida inayowezekana kwa biashara nne kufanikiwa mfululizo. Uniti moja ni sawa na kiasi cha dau la awali. Dau litabadilika kutoka uniti 1 hadi uniti 3 baada ya biashara ya kwanza kufaulu, kisha uniti 2 baada ya biashara yako ya pili kufaulu, na kwa uniti 6 baada ya biashara ya tatu kufaulu. Dau la biashara inayofuata litarejeshwa kuwa dau la awali ikiwa kuna biashara iliyopata hasara au kukamilika kwa mzunguko wa biashara.", - "1541969455": "Zote mbili", + "1541969455": "Yote miwili", "1542742708": "Vifaa vya sintetiki, Forex, Hisa, Fahirisi za Hisa, Bidhaa, na Cryptocurrency", "1544642951": "Ukichagua “Only Ups”, utashinda malipo ikiwa ticks zitainuka mfululizo baada ya bei ya kuingia. Hakuna malipo ikiwa tick yoyote itaanguka au kuwa sawa na tick yoyote ya awali.", "1547148381": "Faili hiyo ni kubwa sana (hadi 8MB tu inaruhusiwa). Tafadhali pakia faili nyingine.", @@ -1562,7 +1553,6 @@ "1594147169": "Tafadhali rudi", "1594322503": "Uuzaji unapatikana", "1595295238": "3. Tumia kizuizi cha mantiki ili kuangalia ikiwa Jumla ya faida/hasara ni zaidi ya kiwango cha Stop Hasara . Unaweza kupata tofauti ya Jumla ya faida/hasara chini ya Uchambuzi wa > Takwimu kwenye menyu ya Blocks upande wa kushoto. Bot yako itaendelea kununua mikataba mpya hadi kiasi cha Jumla ya faida/hasara kizidi kiwango cha Stop Hasara .", - "1596378630": "Umeongeza akaunti halisi ya Mchezo. <0/> Weka pesa sasa ili kuanza biashara.", "1597672660": "Nenosiri la Deriv MT5", "1598009247": "<0>a. Unaweza kuwasilisha malalamiko kwenda Financial Commission hadi siku 45 baada ya tukio.", "1598386296": "Jiji/Mji linahitajika.", @@ -1625,7 +1615,7 @@ "1656155124": "Tuma tena kwa sekunde <0 />", "1658954996": "Waendeshaji wa Viwanda na Mashine na Wakusanyiko", "1659074761": "Reset Put", - "1659352235": "Ongeza akaunti yako ya Deriv MT5 CFDs chini ya Deriv Investments (Europe) Limited, inayosimamiwa na Malta Financial Service Authority (MFSA) (leseni na. IS/70156).", + "1659352235": "Ongeza akaunti yako ya Deriv MT5 CFDs chini ya Deriv Investments (Europe) Limited, inayodhibitiwa na Malta Financial Service Authority (MFSA) (leseni na. IS/70156).", "1665272539": "Kumbuka: Huwezi kuingia kwenye akaunti yako hadi tarehe iliyochaguliwa.", "1665718170": "Hati lazima iwe na kichwa cha barua.", "1665738338": "Salio", @@ -1730,7 +1720,6 @@ "1763123662": "Pakia slip yako ya NIMC.", "1766212789": "Matengenezo ya seva huanza saa 06:00 GMT kila Jumapili na huweza kudumu hadi masaa 2. Unaweza kupata usumbufu wa huduma wakati huu.", "1766993323": "Herufi, nambari, na mifupi tu zinaruhusiwa.", - "1767429330": "Ongeza Derived akaunti", "1768293340": "Thamani ya mkataba", "1768861315": "Dakika", "1768918213": "Barua tu, nafasi, kipindi, kipindi, na apostrophe zinaruhusiwa.", @@ -1744,6 +1733,7 @@ "1779144409": "Uthibitishaji wa akaunti unahitajika", "1779519903": "Inapaswa kuwa nambari sahihi.", "1779801832": "Tafadhali sasisha nenosiri lako ipasavyo.", + "1779872677": "Pakua e-book", "1780442963": "Scani msimbo QR ili kupakua {{ platform }}.", "1780770384": "Kizuizi hiki kinakupa sehemu ya bahati ya bahati ya 0.0 hadi 1.0.", "1782308283": "Mkakati wa haraka", @@ -1754,7 +1744,6 @@ "1783740125": "Pakia selfie yako", "1785298924": "D'Alembert fomula ya 1", "1786644593": "Fomati zinazoweza kutumika: JPEG, JPG, PNG, PDF, na GIF tu", - "1787135187": "Msimbo wa posta/zip inahitajika", "1787492950": "Viashiria kwenye kichupo cha chati ni kwa madhumuni ya kiashiria tu na vinaweza kutofautiana kidogo na zile kwenye nafasi ya kazi ya {{platform_name_dbot}} .", "1788515547": "<0/>Kwa maelezo zaidi juu ya kuwasilisha malalamiko kwenda Ofisi ya Msuluhishi wa Huduma za Kifedha, tafadhali <1>angali mwongozo wao.", "1788966083": "01-07-1999", @@ -1820,7 +1809,6 @@ "1850031313": "- Low: bei ya chini", "1850132581": "Nchi haikupatikani", "1850659345": "- Malipo: malipo ya mkataba", - "1850663784": "Wasilisha ushahidi", "1851052337": "Mahali pa kuzaliwa inahitajika.", "1851776924": "juu", "1854480511": "Mchaja amefungwa", @@ -1837,7 +1825,6 @@ "1865525612": "Hakuna miamala ya hivi karibuni.", "1866244589": "Bei ya kuingia ni tick ya kwanza kwa High/Low Ticks.", "1866811212": "Weka pesa kwa sarafu yako ya ndani kupitia wakala huru wa malipo aliyeidhinishwa katika nchi yako.", - "1866836018": "<0/><1/>Ikiwa malalamiko yako yanahusiana na taratibu zetu za kuchakata data, unaweza kuwasilisha malalamiko rasmi kwa mamlaka ya usimamizi ya eneo lako.", "1867217564": "Kielelezo lazima iwe na jumla nzuri", "1867783237": "High-to-Close", "1869315006": "Angalia jinsi tunavyolinda fedha zako ili kufungua keshia.", @@ -1848,7 +1835,6 @@ "1871377550": "Je, unatoa bot za biashara zilizojengwa tayari kwenye Deriv Bot?", "1871664426": "Kumbuka", "1873376454": "Hiki ni kiwango cha bei unachochagua. Ikiwa kizuizi hiki kitavukwa, mkataba wako utasitishwa.", - "1873838570": "Tafadhali thibitisha anwani yako", "1874481756": "Tumia kizuizi hiki kununua mkataba maalum unayotaka. Unaweza kuongeza vitalu vingi vya Ununuzi pamoja na vitalu vya masharti kufafanua hali yako ya ununuzi. Kizuizi hiki kinaweza kutumika tu ndani ya kizuizi cha masharti ya Ununuzi.", "1874756442": "BVI", "1875702561": "Pakia au ujenge bot yako", @@ -1890,7 +1876,6 @@ "1906213000": "Mfumo wetu utakamilisha biashara zozote za Deriv Bot ambazo zinaendesha, na Deriv Bot haitaweka biashara yoyote mpya.", "1906639368": "Ikiwa hii ni mara ya kwanza unajaribu kuunda nenosiri, au umesahau nenosiri lako, tafadhali liweke upya.", "1907423697": "Pata kipato zaidi na Deriv API", - "1907884620": "Ongeza akaunti halisi ya Deriv Gaming", "1908023954": "Samahani, hitilafu ilitokea wakati wa kuchakata ombi lako.", "1908239019": "Hakikisha hati zote zina picha", "1908686066": "Onyo ya Mtihani wa Ufaa", @@ -1993,7 +1978,6 @@ "2001222130": "Angalia folda yako ya spam au junk. Ikiwa haipo, jaribu kutuma tena barua pepe.", "2001361785": "1. Anza na dau la awali. Hebu tuseme USD 1.", "2004052487": "Kukadiria muda wa biashara zako", - "2004792696": "Ikiwa wewe ni mkazi wa Uingereza, ili kujitenga-binafsi kutoka kwenye kampuni zote za kamari mtandaoni zenye leseni nchini Uingereza, nenda kwa <0>www.gamstop.co.uk.", "2007028410": "soko, aina ya biashara, aina ya mkataba", "2010759971": "Upakiaji umefaulu", "2010866561": "Hurejesha jumla ya faida/hasara", @@ -2073,7 +2057,6 @@ "2085387371": "Lazima iwe na nambari, herufi, na alama maalum., '-", "2085602195": "- Thamani ya kuingia: thamani ya tick ya kwanza ya mkataba", "2086048243": "Cheti cha ushirika", - "2086742952": "Umeongeza akaunti halisi ya Chaguzi. <0/> Fanya amana sasa ili kuanza biashara.", "2086792088": "Vizuizi vyote vinapaswa kuwa wa kawaida au kamili", "2088735355": "Kikao chako na mipaka ya kuingia", "2089087110": "Faharisi za kikapu", @@ -2160,17 +2143,17 @@ "-1503134764": "Ukurasa wa picha za uso", "-1335343167": "Samahani, hakuna bili za simu za rununu", "-699045522": "Nyaraka unazoweza kutumia kuthibitisha utambulisho", - "-543666102": "Lazima iwe kitambulisho rasmi cha picha", + "-543666102": "Lazima kiwe kitambulisho rasmi chenye picha", "-903877217": "Hizi ni hati zinazowezekana zaidi kuonyesha anwani yako ya sasa ya nyumbani", "-1356835948": "Chagua hati", "-1364375936": "Chagua hati ya %{country}", "-401586196": "au pakia picha - hakuna skani au nakala za picha", "-3110517": "Chukua picha na simu yako", - "-2033894027": "Tuma kadi ya kitambulisho (nyuma)", - "-20684738": "Tuma leseni (nyuma)", - "-1359585500": "Tuma leseni (mbele)", - "-106779602": "Tuma kibali cha makazi (nyuma)", - "-1287247476": "Tuma kibali cha makazi (mbele)", + "-2033894027": "Wasilisha kadi ya kitambulisho (upande wa nyuma)", + "-20684738": "Wasilisha leseni (upande wa nyuma)", + "-1359585500": "Wasilisha leseni (upande wa mbele)", + "-106779602": "Wasilisha kibali cha makazi (upande wa nyuma)", + "-1287247476": "Wasilisha kibali cha makazi (upande wa mbele)", "-1954762444": "Anzisha upya mchakato kwenye toleo la hivi karibuni la Safari", "-261174676": "Lazima iwe chini ya 10MB.", "-685885589": "Hitilafu ilitokea wakati wa kupakia sehemu", @@ -2182,18 +2165,18 @@ "-1849371752": "Angalia kuwa nambari yako ni sahihi", "-309848900": "Nakala", "-1424436001": "Tuma kiungo", - "-1093833557": "Jinsi ya kuchanganua msimbo wa QR", + "-1093833557": "Jinsi ya kuscani msimbo wa QR", "-1408210605": "Weka kamera ya simu yako kwenye msimbo wa QR", - "-1773802163": "Ikiwa haifanyi kazi, pakua skana ya nambari ya QR kutoka Google Play au Duka la App", - "-109026565": "Changanya msimbo wa QR", + "-1773802163": "Ikiwa haifanyi kazi, pakua skana ya msimbo wa QR kutoka Google Play au App Store", + "-109026565": "Scani msimbo wa QR", "-1644436882": "Pata kiungo kupitia SMS", "-1667839246": "Ingiza nambari ya simu", "-1533172567": "Ingiza nambari yako ya simu:", - "-1352094380": "Tuma kiungo hiki cha wakati mmoja kwenye simu yako", + "-1352094380": "Tuma kiungo hiki cha kutumika mara moja tu kwenye simu yako", "-28974899": "Pata kiungo chako salama", "-359315319": "Endelea", "-826420669": "Hakikisha", - "-1279080293": "2. Dirisha lako la desktop inakaa wazi", + "-1279080293": "2. Window yako ya desktop inabaki wazi", "-102776692": "Endelea na uthibitishaji", "-89152891": "Chukua picha upande wa nyuma wa kadi yako", "-1646367396": "Chukua picha upande wa mbele wa kadi yako", @@ -2215,7 +2198,7 @@ "-2029238500": "Inaweza kuwa unganisho limekatishwa. Jaribu kutumia simu yako badala yake.", "-468928206": "Hakikisha kamera ya kifaa chako inafanya kazi", "-466246199": "Kamera haifanyi kazi", - "-698978129": "Kumbuka kubonyeza stop wakati umemaliza. Fanya tena vitendo vya video", + "-698978129": "Kumbuka kubonyeza simamisha wakati umemaliza. Fanya tena video actions", "-538456609": "Inaonekana kama ulichukua muda mrefu sana", "-781816433": "Picha ya uso wako", "-1471336265": "Hakikisha selfie yako inaonyesha wazi uso wako", @@ -2244,21 +2227,21 @@ "-1702919018": "Mstari wa pili wa anwani (hiari)", "-1315410953": "Jimbo/Mkoa", "-2040322967": "Uraia", - "-344715612": "Hali ya ajiri*", - "-1543016582": "Ninathibitisha kwamba habari ya ushuru niliyotoa ni ya kweli na kamili. Nitajulisha pia {{legal_entity_name}} juu ya mabadiliko yoyote kwenye habari hii.", - "-946282997": "Maelezo ya ziada", + "-344715612": "Hali ya ajira*", + "-1543016582": "Ninathibitisha kwamba taarifa ya kodi niliyotoa ni ya kweli na kamili. Nitamjulisha pia {{legal_entity_name}} juu ya mabadiliko yoyote kwenye taarifa hii.", + "-946282997": "Taarifa za ziada", "-1315571766": "Mahali pa kuzaliwa", "-789291456": "Makazi ya ushari*", "-1692219415": "Makazi ya ushuru", - "-1903720068": "Nchi ambayo unakidhi vigezo vya kulipa kodi. Kawaida nchi ambayo unakaa kimwili.", + "-1903720068": "Nchi ambayo unakidhi vigezo vya kulipa kodi. Kawaida ni nchi ambayo unaishi kwa sasa.", "-651516152": "Nambari ya utambulisho wa kodi", "-1387062433": "Sababu ya kufungua akaunti", "-222283483": "Sababu ya kufungua akaunti*", - "-583925597": "Kwa madhumuni ya uthibitishaji kama inavyohitajika na kan Ni wajibu wako kutoa majibu sahihi na kamili. Unaweza kusasisha maelezo ya kibinafsi wakati wowote katika mipangilio ya akaunti yako.", + "-583925597": "Kwa madhumuni ya uthibitishaji kama inavyohitajika na kanuni. Ni wajibu wako kutoa majibu sahihi na kamili. Unaweza kubadilisha taarifa binafsi wakati wowote katika mipangilio ya akaunti yako.", "-1113902570": "Maelezo", - "-71696502": "Iliyotangulia", + "-71696502": "Awali", "-1541554430": "Ifuatayo", - "-307865807": "Onyo la Uvumilivu", + "-307865807": "Onyo la Kustahimili Hatari", "-690100729": "Ndio, ninaelewa hatari.", "-2010628430": "CFD na vyombo vingine vya kifedha huja na hatari kubwa ya kupoteza pesa haraka kutokana na mkopo. Unapaswa kuzingatia ikiwa unaelewa jinsi CFD na vyombo vingine vya kifedha zinavyofanya kazi na ikiwa unaweza kumudu kuchukua hatari kubwa ya kupoteza pesa zako. <0/> <0/> Ili kuendelea, lazima uthibitishe kuwa unaelewa mtaji wako uko hatarini.", "-863770104": "Tafadhali kumbuka kuwa kwa kubonyeza 'SAWA', unaweza kuwa unajifichua kwenye hatari. Huenda usiwe na maarifa au uzoefu wa kutathmini vizuri au kupunguza hatari hizi, ambazo zinaweza kuwa muhimu, ikiwa ni pamoja na hatari ya kupoteza jumla ya kiasi chote ulichowekeza.", @@ -2279,9 +2262,8 @@ "-378415317": "Jimbo linahitajika", "-1784470716": "Jimbo haipo katika muundo sahihi", "-1699820408": "Tafadhali ingiza {{field_name}} chini ya herufi {{max_number}} .", - "-1575567374": "Posta/zip code", + "-1575567374": "msimbo wa posta/ZIP", "-816263501": "Herufi, nambari, nafasi na nyama tu zinaruhusiwa.", - "-1497654315": "Akaunti zetu na huduma hazipatikani kwa nambari ya posta ya Jersey.", "-755626951": "Kamilisha taarifa zako za anwani", "-1024240099": "Anwani", "-1534917661": "Chagua sarafu unayopendelea", @@ -2310,10 +2292,10 @@ "-1717373258": "Sekondari", "-1156937070": "$500,001 - $1,000,000", "-315534569": "Zaidi ya $1,000,000", - "-2068544539": "Mfanyakazi Mshahara", - "-531314998": "Uwekezaji na Guzo", + "-2068544539": "Mfanyakazi Mwenye Malipo ya Mshahara", + "-531314998": "Uwekezaji & Gawio", "-1235114522": "Pensheni", - "-1298056749": "Faida za Serikali", + "-1298056749": "Mafao ya Serikali", "-449943381": "Akiba na Urithi", "-477761028": "Kitambulisho cha kura", "-1466346630": "CPF", @@ -2339,7 +2321,7 @@ "-966136867": "App zilizounganishwa", "-213009361": "Uthibitishaji-wa hatua mbili", "-526636259": "Hitilafu 404", - "-739367071": "Ameajiriwa", + "-739367071": "Mwajiriwa", "-626752657": "Mwaka 0-1", "-532014689": "Mwaka 1-2", "-1001024004": "Zaidi ya miaka 3", @@ -2347,16 +2329,17 @@ "-580085300": "Miamala 11-39 katika miezi 12 iliyopita", "-1458676679": "Unapaswa kuingiza herufi 2-50.", "-1116008222": "Unapaswa kuingiza nambari 9-35.", - "-1995979930": "Mstari wa kwanza wa anwani inahitajika.", + "-1995979930": "Mstari wa kwanza wa anwani unahitajika.", + "-703454156": "Tafadhali ingiza msimbo wa posta/zip chini ya herufi 20.", "-2113555886": "Herufi, nambari, nafasi, na nyama tu zinaruhusiwa.", - "-1103497546": "Marejesho ya ushuru", - "-700600899": "Uthibitisho wa biashara wa anwani", + "-1103497546": "Mapato ya kodi", + "-700600899": "Uthibitisho wa anwani ya biashara", "-1073862586": "Mkataba", "-1823328095": "Barua ya idhini", "-397487797": "Ingiza nambari yako kamili ya kadi", - "-1376950117": "Muundo huo wa faili hauungwa mkono. Tafadhali pakia faili.pdf, .png, .jpg, au.jpeg tu.", + "-1376950117": "Muundo huo wa faili hauwezi kutumika. Tafadhali pakia faili.pdf, .png, .jpg, au.jpeg tu.", "-612752984": "Haya ni mipaka ya default ambayo tunatumia kwa akaunti zako.", - "-1411635770": "Jifunze zaidi juu ya mipaka ya akaunti", + "-1411635770": "Jifunze zaidi juu ya ukomo wa akaunti", "-1340125291": "Imekamilika", "-1101543580": "Kikomo", "-858297154": "Inawakilisha kiwango cha juu cha fedha ambazo unaweza kushikilia kwenye akaunti yako. Ikiwa kiwango cha juu kinafikiwa, utaulizwa kuondoa fedha.", @@ -2366,8 +2349,8 @@ "-1412690135": "* Mipaka yoyote katika mipangilio yako ya kujitenga kibinafsi itabadilisha mipaka haya ya default.", "-1598751496": "Inawakilisha kiasi cha juu cha mikataba ambayo unaweza kununua katika siku yoyote ya biashara.", "-173346300": "Mauzo ya juu ya kila siku", - "-138380129": "Jumla ya uondoaji uliru", - "-854023608": "Ili kuongeza kikomo tafadhali thibitisha utambulisho", + "-138380129": "Jumla ya utoaji pesa ulioruhusiwa", + "-854023608": "Ili kuongeza kikomo tafadhali thibitisha utambulisho wako", "-1500958859": "Thibitisha", "-1502578110": "Akaunti yako imethibitishwa kikamilifu na mipaka yako ya kuondoa yameondolewa.", "-506122621": "Tafadhali chukua muda kusasisha habari yako sasa.", @@ -2383,136 +2366,135 @@ "-1964954030": "Posta/Zip Code", "-516397235": "Kuwa makini unashiriki ishara hii na nani. Mtu yeyote aliye na ishara hii anaweza kufanya vitendo vifuatavyo kwa niaba ya akaunti yako", "-989216986": "Ongeza akaunti", - "-617480265": "Futa ishara", - "-316749685": "Je! Una hakika unataka kufuta ishara hii?", - "-955038366": "Nakili ishara hii", - "-1668692965": "Ficha ishara hii", - "-1661284324": "Onyesha ishara hii", + "-617480265": "Futa tokeni", + "-316749685": "Je, una uhakika unataka kufuta tokeni hii?", + "-955038366": "Nakili tokeni hii", + "-1668692965": "Ficha tokeni hii", + "-1661284324": "Onyesha tokeni hii", "-1076138910": "Biashara", "-1666909852": "Malipo", "-488597603": "Maelezo ya biashara", "-605778668": "Kamwe", - "-1628008897": "Ishara", - "-1238499897": "Imetumika mwisho", - "-1171226355": "Urefu wa jina la ishara lazima uwe kati ya herufi za {{MIN_TOKEN}} na {{MAX_TOKEN}} .", + "-1628008897": "Tokeni", + "-1238499897": "Mara ya mwisho kutumika", + "-1171226355": "Urefu wa jina la tokeni lazima uwe kati ya herufi {{MIN_TOKEN}} na {{MAX_TOKEN}}.", "-1803339710": "Wahusika cha juu wa {{MAX_TOKEN}} .", - "-408613988": "Chagua viwango kulingana na ufikiaji unaohitaji.", - "-5605257": "Upeo huu utaruhusu programu za tatu za tatu kujiondoa kwa mawakala wa malipo na kukufanya uhamisho kati ya akaunti.", - "-1373485333": "Upeo huu utaruhusu programu za tatu tatu kutazama historia yako ya biashara.", - "-758221415": "Upeo huu utaruhusu programu za tatu za tatu kufungua akaunti kwako, kudhibiti mipangilio yako na matumizi ya ishara, na zaidi. ", + "-408613988": "Chagua wigo kulingana na ufikiaji unaohitaji.", + "-5605257": "Wigo huu utawezesha app za wahusika wengine kutoa pesa kwa mawakala wa malipo na kufanya uhamishaji wa pesa kati ya akaunti kwa ajili yako.", + "-1373485333": "Wigo huu utaruhusu app za wahusika wengine kutazama historia yako ya biashara.", + "-758221415": "Wigo huu utaruhusu app za wahusika wengine kufungua akaunti kwa ajili yako, kudhibiti mipangilio yako na matumizi ya tokeni, na zaidi. ", "-807767876": "Kumbuka:", - "-1117963487": "Jitaja ishara yako na bonyeza 'Unda' ili kutoa ishara yako.", + "-1117963487": "Ipatie jina tokeni yako na bonyeza 'Unda' ili kutengeneza tokeni yako.", "-2005211699": "Unda", "-1652683689": "Tafadhali kumbuka kuwa unaweza kuwa na akaunti 1 tu ya fiat.", "-1146960797": "Sarafu za Fiat", - "-1959484303": "Sarafu za kripto", - "-2087317410": "Ups, kitu kilienda vibaya.", + "-1959484303": "Cryptocurrrencies", + "-2087317410": "Oops, kuna kitu hakijaenda sawa.", "-184202848": "Pakia faili", - "-370334393": "Bonyeza hapa kuvinjari faili zako.", - "-863586176": "Buta na uache faili au bonyeza ili kuvinjari faili zako.", - "-723198394": "Ukubwa wa faili unapaswa kuwa 8MB au chini", - "-1948369500": "Faili iliyopakwa haiungwa mkono", - "-1040865880": "Tupa faili hapa..", + "-370334393": "Bonyeza hapa kuperuzi faili zako.", + "-863586176": "Chukua na uweke faili au bonyeza ili kuperuzi faili zako.", + "-723198394": "Ukubwa wa faili unapaswa kuwa 8MB au chini yake", + "-1948369500": "Faili iliyopakiwa haiwezi kutumika", + "-1040865880": "Weka faili hapa..", "-1100235269": "Sekta ya ajira", - "-684388823": "Inakadiriwa thamani halisi", + "-684388823": "Makadirio ya utajiri halisi", "-509054266": "Mauzo ya mwaka inayotaraj", "-1117345066": "Chagua aina ya hati", "-1634507018": "Ingiza {{document_name}}yako", "-1237846864": "Thibitisha tena", "-39187636": "{{index}}.", - "-337620257": "Badilisha kwenye akaunti halisi", + "-337620257": "Nenda kwenye akaunti halisi", "-2120454054": "Ongeza akaunti halisi", - "-38915613": "Mabadiliko hayajahifadhi", - "-2137450250": "Una mabadiliko yasiyohifadhiwa. Je! Una hakika unataka kuondoa mabadiliko na kuacha ukurasa huu?", - "-1067082004": "Acha Mipangilio", - "-1982432743": "Inaonekana kwamba anwani kwenye hati yako haifanani na anwani\n kwenye wasifu wako wa Deriv. Tafadhali sasisha maelezo yako ya kibinafsi sasa na anwani sahihi ya\n .", + "-38915613": "Mabadiliko ambayo hayajahifadhiwa", + "-2137450250": "Una mabadiliko ambayo hayajahifadhiwa. Je, una uhakika unataka kuacha mabadiliko na kuondoka kwenye ukurasa huu?", + "-1067082004": "Ondoka kwenye Mipangilio", + "-1982432743": "Inaonekana kwamba anwani kwenye hati yako haifanani na anwani\n kwenye wasifu wako wa Deriv. Tafadhali badilisha taarifa zako binafsi sasa na weka anwani sahihi.", "-1451334536": "Endelea kufanya biashara", - "-251603364": "Hati yako ya uthibitisho wa anwani imekwisha. <0/>Tafadhali wasilisha tena.", - "-1425489838": "Uthibitisho wa uthibitishaji wa anwani hau", + "-251603364": "Hati yako ya uthibitisho wa anwani imekwisha muda wake wa matumizi. <0/>Tafadhali wasilisha tena.", + "-1425489838": "Uthibitisho wa uthibitishaji wa anwani hauhitajiki", "-1008641170": "Akaunti yako haihitaji uthibitisho wa anwani wakati huu. Tutakujulisha ikiwa uthibitishaji wa anwani unahitajika katika siku zijazo.", - "-60204971": "Hatukuweza kuthibitisha ushahidi wako wa anwani", + "-60204971": "Hatukuweza kuthibitisha uthibitisho wako wa anwani", "-1944264183": "Ili kuendelea na biashara, lazima pia uwasilishe uthibitisho wa utambulisho.", "-1088324715": "Tutakagua hati zako na kukujulisha hali yake ndani ya siku 1 - 3 za kazi.", "-329713179": "Sawa", - "-2145244263": "Eneo hili linahitajika", + "-2145244263": "Eneo hili linahitajika kujazwa", "-839094775": "Nyuma", - "-1813671961": "Uthibitishaji wako wa utambulisho ulishind", + "-1813671961": "Uthibitishaji wako wa utambulisho haukufaulu:", "-2097808873": "Hatukuweza kuthibitisha kitambulisho chako na maelezo uliyotoa. ", "-1652371224": "Wasifu wako umesasishwa", "-504784172": "Hati yako imewasilishwa", "-1391934478": "Kitambulisho chako kimethibitishwa. Utahitaji pia kuwasilisha uthibitisho wa anwani yako.", - "-118547687": "Uthibitishaji wa ID ulipita", - "-200989771": "Nenda kwenye maelezo ya kibinafsi", - "-1358357943": "Tafadhali angalia na usasisha nambari yako ya posta kabla ya kuwasilisha uthibitisho wa utambulish", - "-1401994581": "Maelezo yako ya kibinafsi hayapotea", + "-118547687": "Uthibitishaji wa kitambulisho umefaulu", + "-200989771": "Nenda kwenye taarifa binafsi", + "-1358357943": "Tafadhali angalia na badilisha msimbo wa posta kabla ya kuwasilisha uthibitisho wa utambulisho.", + "-1401994581": "Taarifa zako binafsi hazionekani", "-2004327866": "Tafadhali chagua nchi halali ya utoaji wa hati.", "-1664159494": "Nchi", "-1044962593": "Pakia Hati", - "-749870311": "Tafadhali wasiliana nasi kupitia gum <0>zo la moja kwa moja.", - "-1084991359": "Uthibitisho wa uthibitisho wa utambulish", + "-749870311": "Tafadhali wasiliana nasi kupitia <0>mazungumzo mubashara.", + "-1084991359": "Uthibitisho wa uthibitishaji wa utambulisho", "-1981334109": "Akaunti yako haihitaji uthibitisho wa kitambulisho kwa wakati huu. Tutakujulisha ikiwa uthibitishaji wa utambulisho unahitajika katika siku zijazo.", - "-182918740": "Uthibitisho wako wa uwasilishaji wa kitambulisho", - "-155705811": "Picha ya rangi wazi au picha iliyochaguliwa", + "-182918740": "Uthibitisho wako wa uwasilishaji wa kitambulisho haukufaulu:", + "-155705811": "Picha safi ya rangi au picha ya kuscani", "-246893488": "JPEG, JPG, PNG, PDF, au GIF", "-1454880310": "Lazima iwe halali kwa angalau miezi 6", - "-1949501500": "Kwanza, ingiza {{label}}yako.", - "-100534371": "Kabla ya kupakia, tafadhali hakikisha kuwa unakabiliwa mbele kwenye selfie, uso wako uko ndani ya sura, na macho yako yanaonekana wazi hata ikiwa unavaa glasi.", - "-1529523673": "Thibitisha na upakia", + "-1949501500": "Kwanza, ingiza {{label}} yako.", + "-100534371": "Kabla ya kupakia, tafadhali hakikisha kuwa uso wako unaangalia mbele katika picha ya selfie, uso wako uko ndani ya fremu, na macho yako yanaweza kuonekana wazi hata kama unavaa glasi.", + "-1529523673": "Thibitisha na pakia", "-705047643": "Samahani, hitilafu ilitokea. Tafadhali chagua faili nyingine.", - "-1664309884": "Gonga hapa kupakia", - "-1725454783": "Kushindwa", + "-1664309884": "Gonga hapa ili kupakia", + "-1725454783": "Haikufaulu", "-856213726": "Lazima pia uwasilishe uthibitisho wa anwani.", - "-552371330": "Hatukuweza kuthibitisha mapato yako. <0 /> Tafadhali angalia barua pepe ambayo tumekutuma kwa habari zaidi.", + "-552371330": "Hatukuweza kuthibitisha mapato yako. <0 /> Tafadhali angalia barua pepe ambayo tumekutumia kwa maelezo zaidi.", "-841187054": "Jaribu tena", - "-978467455": "Kikomo ilifikiwa", - "-361316523": "Umefikia idadi kubwa ya majaribio ya kuruhusiwa ya kuwasilisha uthibitisho wa mapato. <0 /> Tafadhali angalia barua pepe tuliyokutuma kwa habari zaidi.", + "-978467455": "Kikomo kimefikiwa", + "-361316523": "Umefikia idadi ya juu zaidi ya majaribio yanayoruhusiwa ya kuwasilisha uthibitisho wa mapato. <0 /> Tafadhali angalia barua pepe tuliyokutuma kwa maelezo zaidi.", "-1785967427": "Tutakagua hati zako na kukujulisha hali yake ndani ya siku 7 za kazi.", "-987011273": "Uthibitisho wako wa umiliki hauhitajiki.", "-808299796": "Hauhitajiki kuwasilisha uthibitisho wa umiliki kwa wakati huu. Tutakujulisha ikiwa uthibitisho wa umiliki unahitajika katika siku zijazo.", "-179726573": "Tumepokea uthibitisho wako wa umiliki.", - "-813779897": "Uthibitisho wa uthibitisho wa umiliki", + "-813779897": "Uthibitishaji wa uthibitisho wa umiliki umefaulu.", "-1389323399": "Unapaswa kuingiza herufi za {{min_number}}-{{max_number}} .", - "-47815161": "Tafadhali jumuisha angalau mhusika 1 maalum kama vile ( _ @ ? ! / # ) katika nenosiri lako.", - "-1313806160": "Tafadhali ombe nenosiri mpya na uangalie barua pepe yako kwa ishara mpya.", + "-47815161": "Tafadhali jumuisha angalau alama 1 maalum kama vile ( _ @ ? ! / # ) katika nenosiri lako.", + "-1313806160": "Tafadhali omba nenosiri jipya na angalia barua pepe yako kupata tokeni mpya.", "-1598167506": "Mafanikio", - "-1077809489": "Una nenosiri mpya la {{platform}} kuingia kwenye akaunti zako za {{platform}} kwenye wavuti na programu za rununu.", + "-1077809489": "Una nenosiri jipya la {{platform}} la kuingia kwenye akaunti zako za {{platform}} kwenye wavuti na app za simu.", "-1108813179": "Unaweza kutumia nenosiri hili kwa akaunti zako zote za Deriv MT5.", "-2068479232": "{{platform}} nenosiri", - "-507633532": "Nenosiri lako lazima iwe na kati ya herufi 8-16 ambazo zinajumuisha herufi kubwa na ndogo, na angalau nambari moja na herufi maalum kama vile ( _ @ ? ! / # ).", + "-507633532": "Nenosiri lako lazima liwe na kati ya herufi 8-16 ambazo zinajumuisha herufi kubwa na ndogo, na angalau nambari moja na alama maalum kama vile ( _ @ ? ! / # ).", "-1597186502": "Weka upya nenosiri la {{platform}}", - "-638756912": "Takwimu 7 hadi 12 za nambari ya kadi ambayo imeonyeshwa mbele ya kadi yako ya debit/mkopo.", - "-996691262": "Tumeanzisha mipaka haya ili kuhimiza biashara in <0>ayowajibik a. Ni hiari, na unaweza kuzirekebisha wakati wowote.", + "-638756912": "Acha tarakimu 7 hadi 12 za nambari ya kadi ambazo zinaonekana upande wa mbele wa kadi yako ya debit/credit", + "-996691262": "Tumeanzisha vikomo hivi ili kuhimiza <0>biashara inayowajibika. Ni hiari, na unaweza kuvirekebisha wakati wowote.", "-2079276011": "Mipaka haya yanatumika kwa biashara yako ya viongezaji tu. Kwa mfano, has <0>ara kubwa inah usu hasara kwenye biashara zako za viongezeka.", - "-2116570030": "Ikiwa unataka kurekebisha mipaka yako, was <0>iliana nasi kupitia mazungumzo ya moja kwa moja. Tutafanya marekebisho ndani ya masaa 24.", + "-2116570030": "Ikiwa unataka kurekebisha ukomo wako, <0>wasiliana nasi kupitia mazungumzo mubashara. Tutafanya marekebisho ndani ya masaa 24.", "-1389915983": "Unaamua ni kiasi gani na muda gani cha kufanya biashara. Unaweza kuchukua mapumziko kutoka kwa biashara wakati wowote unapotaka. Mapumziko hii inaweza kuwa kutoka wiki 6 hadi miaka 5. Inapoisha, unaweza kuipanua au kuingia ili kuanza tena biashara. Ikiwa hutaki kuweka kikomo maalum, acha uwanja tupu.", "-1031814119": "Kuhusu mipaka ya biashara na kujitenga", "-183468698": "Mipaka ya biashara na kujitenga", "-1088698009": "Mipaka haya ya kujitenga hukusaidia kudhibiti kiasi cha pesa na wakati unatumia biashara kwenye {{platform_name_trader}}, {{platform_name_dbot}}, {{platform_name_smarttrader}} na {{platform_name_bbot}} kwenye Deriv. Mipaka uliyoweka hapa itakusaidia kufanya biashara in <0>ayowajibik a.", - "-933963283": "Hapana, pitia mipaka yangu", + "-933963283": "Hapana, kagua ukomo wangu", "-1759860126": "Ndio, niondoe mara moja", "-572347855": "{{value}} dakika", - "-313333548": "Utaweza kurekebisha mipaka haya wakati wowote. Unaweza kupunguza mipaka yako kutoka kwa ukur <0>asa wa kujitenga. Ili kuongeza au kuondoa mipaka yako, tafadhali wasiliana na timu y <1>etu ya Msaada wa W ateja", + "-313333548": "Utaweza kurekebisha vikomo hivi wakati wowote. Unaweza kupunguza ukomo wako kwenye <0>ukurasa wa kujitenga-binafsi. Ili kuongeza au kuondoa ukomo wako, tafadhali wasiliana na timu yetu ya <1>Msaada Kwa Wateja.", "-1265833982": "Kubali", - "-2123139671": "Hisa yako na mipaka ya hasara", - "-1250802290": "24 masaa", - "-2070080356": "Max. jumla ya hisa", + "-2123139671": "Dau lako na ukomo wa hasara", + "-1250802290": "masaa 24", + "-2070080356": "Max. jumla ya dau", "-1545823544": "siku 7", - "-180147209": "Utaondoka moja kwa moja kutoka kila kikao baada ya kikomo hiki cha muda.", + "-180147209": "Utatolewa otomatiki kutoka kwenye kila kipindi baada ya kikomo hiki cha muda kumalizika.", "-374553538": "Akaunti yako itaondolewa kwenye wavuti hadi tarehe hii (angalau miezi 6, hadi miaka 5).", - "-2121421686": "Ili kujiondoa kutoka kwa kampuni zote za kamari mtandaoni yenye leseni nchini Uingereza, nenda kwa <0>www.gamstop.co.uk.", - "-2105708790": "Salio yako ya juu ya akaunti na nafasi za wazi", - "-1960600163": "Mara tu usawa wa akaunti yako kufikia kiasi hiki, hautaweza kuweka pesa kwenye akaunti yako.", - "-1073845224": "Idadi ya nafasi ya wazi", - "-288196326": "Kikomo chako cha juu cha amana", - "-568749373": "Max. kikomo cha amana", - "-1617352279": "Barua pepe iko kwenye folda yako ya barua taka (Wakati mwingine mambo yanapotea huko).", + "-2105708790": "Salio la juu zaidi la akaunti yako na nafasi zilizo wazi", + "-1960600163": "Mara tu salio la akaunti yako litakapofikia kiasi hiki, hautaweza kuweka fedha kwenye akaunti yako.", + "-1073845224": "Idadi ya nafasi zilizo wazi", + "-288196326": "Kikomo chako cha juu cha kuweka pesa", + "-568749373": "Max. kikomo cha uwekaji pesa", + "-1617352279": "Barua pepe iko kwenye folda yako ya spam (Wakati mwingine mambo yanapotelea huko).", "-547557964": "Hatuwezi kutuma barua pepe kwa anwani hii (Kawaida kwa sababu ya firewall au mchujo).", - "-142444667": "Tafadhali bonyeza kwenye kiungo kwenye barua pepe ili kubadilisha nenosiri lako la Deriv MT5.", + "-142444667": "Tafadhali bonyeza kwenye kiungo katika barua pepe ili kubadilisha nenosiri lako la Deriv MT5.", "-742748008": "Angalia barua pepe yako na bonyeza kiungo kwenye barua pepe ili kuendelea.", - "-84068414": "Bado haukupata barua pepe? Tafadhali wasiliana nasi kupitia gum <0>zo la moja kwa moja.", + "-84068414": "Bado haukupata barua pepe? Tafadhali wasiliana nasi kupitia <0>mazungumzo mubashara.", "-474419287": "Azimio la FATCA", "-1101737402": "Tafadhali chagua*", - "-975118358": "Akaunti yako itafunguliwa na {{legal_entity_name}}, iliyodhibitiwa na Mamlaka ya Huduma za Fedha ya Malta (MFSA), na itakuwa chini ya sheria za Malta.", + "-975118358": "Akaunti yako itafunguliwa kwa {{legal_entity_name}}, itadhibitiwa na Malta Financial Service Authority (MFSA), na itakuwa chini ya sheria za Malta.", "-2073934245": "Huduma za biashara za kifedha zinazotolewa kwenye tovuti hii zinafaa tu kwa wateja ambao wanakubali uwezekano wa kupoteza pesa zote wanazowekeza na ambao wanaelewa na wana uzoefu wa hatari inayohusika katika ununuzi wa mikataba ya kifedha. Shughuli katika mikataba ya kifedha zina kiwango kikubwa cha hatari. Ikiwa mikataba uliyonunua itaisha kuwa haina thamani, utapoteza uwekezaji wako wote, ambao ni pamoja na malipo ya mkataba.", "-1035494182": "Unakubali kwamba, kulingana na hiari ya Kampuni, kanuni zinazotumika, na ukaguzi wa ndani zinazotamizwa, tutakufungua akaunti na kukuruhusu kuweka pesa wakati wa utaratibu wa kukubali mteja. Walakini, hadi uthibitishaji wa akaunti yako utakapokamilika, hautaweza kufanya biashara, kuondoa au kufanya amana zaidi. Ikiwa hutatoa hati zinazofaa ndani ya siku 30, tutarejea kiasi kilichowekwa kupitia njia ile ile ile ya malipo uliyokuwa umeweka kuweka.", "-1125193491": "Ongeza akaunti", @@ -2532,55 +2514,55 @@ "-1286823855": "Pakia taarifa yako ya bili ya rununu inaonyesha jina lako na nambari ya simu.", "-1309548471": "Pakia taarifa yako ya benki inaonyesha jina lako na maelezo ya akaunti.", "-1410396115": "Pakia picha inayoonyesha jina lako na tarakimu sita za kwanza na nne za mwisho za nambari yako ya kadi. Ikiwa kadi haionyeshi jina lako, pakia taarifa ya benki inayoonyesha jina lako na nambari ya kadi katika historia ya shughuli.", - "-3805155": "Pakia skrini ya yoyote ya yafuatayo ili kushughulikia shughuli:", + "-3805155": "Pakia picha ya skrini (screenshot) ya mojawapo ya yafuatayo ili kushughulikia muamala:", "-1523487566": "- sehemu ya wasifu wa akaunti yako kwenye wavuti", - "-613062596": "- ukurasa wa Taarifa ya Akaunti kwenye programu", + "-613062596": "- ukurasa wa Taarifa ya Akaunti kwenye app", "-1718304498": "ID ya mtumiaji", - "-609424336": "Pakia skrini ya jina lako, nambari ya akaunti, na anwani ya barua pepe kutoka sehemu ya maelezo ya kibinafsi ya programu au sehemu ya wasifu ya akaunti yako kwenye wavuti.", - "-1954436643": "Pakia skrini ya mtumiaji wako kwenye ukurasa wa Taarifa ya Jumla kwenye <0>https://onlinenaira.com/members/index.htm", - "-79853954": "<0>Pakia skrini ya nambari yako ya akaunti na nambari ya simu kwenye ukurasa wa Akaunti ya Benki/Wallet wa Simu kwenye https://onlinenaira.com/members/bank.htm", - "-1192882870": "Pakia skrini ya jina lako na nambari ya akaunti kutoka sehemu ya maelezo ya kibinafsi.", - "-818898181": "Jina kwenye hati halifanani wasifu wako wa Deriv.", - "-310316375": "Anwani katika hati haifanani anwani uliyoingiza hapo juu.", + "-609424336": "Pakia picha ya skrini (screenshot) ya jina lako, nambari ya akaunti, na anwani ya barua pepe kutoka sehemu ya taarifa binafsi ya app au sehemu ya wasifu wa akaunti yako kwenye wavuti.", + "-1954436643": "Pakia picha ya skrini (screenshot) ya jina la mtumiaji wako kwenye ukurasa wa Taarifa ya Jumla kwenye <0>https://onlinenaira.com/members/index.htm", + "-79853954": "Pakia picha ya skrini (screenshot) ya nambari yako ya akaunti na nambari ya simu kwenye ukurasa wa Akaunti ya Benki/Wallet ya Simu kwenye <0>https://onlinenaira.com/members/bank.htm", + "-1192882870": "Pakia picha ya skrini (screenshot) ya jina lako na nambari ya akaunti kutoka sehemu ya taarifa binafsi.", + "-818898181": "Jina katika hati halifanani na uliloweka kwenye wasifu wako wa Deriv.", + "-310316375": "Anwani katika hati haifanani na anwani uliyoingiza hapo juu.", "-485368404": "Hati iliyotolewa zaidi ya miezi 6 iliyopita.", "-91160765": "Hati iliyotolewa zaidi ya miezi 12 iliyopita.", - "-367016488": "Hati isiyoweza. Habari zote lazima iwe wazi na inayoonekana.", - "-1957076143": "Hati iliyokatwa. Habari zote lazima iwe wazi na inayoonekana.", - "-1576856758": "Akaunti iliyo na maelezo haya tayari iko. Tafadhali hakikisha maelezo uliyoingiza ni sahihi kwani akaunti moja tu halisi inaruhusiwa kwa kila mteja. Ikiwa hii ni kosa, wasiliana nasi kupitia mazungumzo <0>ya moja kwa moja.", - "-1792723131": "Ili kuepuka ucheleweshaji, ingi <0>za tarehe yako ya kuzaliwa kama inavyoonekana kwenye {{document_name}}yako.", + "-367016488": "Hati isiyodhahiri. Taarifa zote lazima ziwe wazi na zionekane vizuri.", + "-1957076143": "Hati iliyofanyiwa cropping. Taarifa zote lazima ziwe wazi na zionekane vizuri.", + "-1576856758": "Akaunti iliyo na taarifa hizi tayari ipo. Tafadhali hakikisha taarifa unazoingiza ni sahihi kwani akaunti moja tu halisi inaruhusiwa kwa kila mteja. Ikiwa hii ni makosa, wasiliana nasi kupitia <0>mazungumzo mubashara.", + "-1792723131": "Ili kuepuka ucheleweshaji, ingiza <0> tarehe yako ya kuzaliwa kama inavyoonekana kwenye {{document_name}} yako.", "-1629894615": "Nina vipaumbele vingine vya kifedha.", "-844051272": "Nataka kujizuia kufanya biashara.", - "-1113965495": "Sina nia tena na biashara.", - "-1224285232": "Huduma ya wateja haikuwa ya kuridhisha.", - "-1231402474": "Programu zilizounganishwa ni programu zilizoidhinishwa zinazohusiana na akaunti yako kupitia ishara yako ya API au mchakato wa idhini ya OAuth Wanaweza kutenda kwa niaba yako ndani ya mapungufu uliyoweka.", - "-506083843": "Kama mtumiaji, una jukumu la kushiriki ufikiaji na kwa vitendo vinavyotokea kwenye akaunti yako (hata ikiwa zilianzishwa na programu ya tatu kwa niaba yako).", - "-831752682": "Tafadhali kumbuka kuwa programu tu za tatu zitaonyeshwa kwenye ukurasa huu. Programu rasmi za Deriv hazitaonekana hapa.", + "-1113965495": "Sina nia tena na ya kufanya biashara.", + "-1224285232": "Huduma kwa wateja haikuwa ya kuridhisha.", + "-1231402474": "App zilizounganishwa ni programu zilizoidhinishwa zinazohusiana na akaunti yako kupitia tokeni yako ya API au mchakato wa idhini ya OAuth. Huweza kuchukua hatua kwa niaba yako kulingana na mipaka uliyoweka.", + "-506083843": "Kama mtumiaji, una jukumu la kushiriki ufikiaji na kwa vitendo vinavyotokea kwenye akaunti yako (hata ikiwa vilianzishwa na app za wahusika wengine kwa niaba yako).", + "-831752682": "Tafadhali kumbuka kuwa app za wahusika wengine tu ndio zitaonyeshwa kwenye ukurasa huu. App rasmi za Deriv hazitaonekana hapa.", "-915844096": "Uraia wa Marekani au hadhi halali ya mkazi wa kudumu (kadi ya kijani)", "-208714573": "Anwani ya “kutunza” au anwani ya “kushikilia barua” ambayo ndio anwani pekee kuhusu mteja", - "-1082633433": "Mamlaka ya wakili au mamlaka ya saini iliyotolewa kwa mtu aliye na anwani ya Marekani.", + "-1082633433": "Uwezo wa wakili au mamlaka ya saini inayotolewa kwa mtu aliye na anwani ya Marekani.", "-231863107": "Hapana", - "-1858215754": "Hati lazima iwe ya kisasa na kusainiwa na mamlaka ya utoaji.", - "-718917527": "Hati zisizofaa au zisizokamilika zitakataliwa.", - "-1526404112": "Bili ya huduma: bili ya umeme, maji, gesi, au simu ya mkononi.", - "-537552700": "Mkataba wa kukodisha nyumba: makubaliano halali na ya sasa.", - "-506510414": "Tarehe na wakati", + "-1858215754": "Hati lazima iwe ya sasa na iwe imetiwa saini na mamlaka ya utoaji.", + "-718917527": "Hati zisizo sahihi au ambazo hazija kamilika zitakataliwa.", + "-1526404112": "Bili ya matumizi: bili ya umeme, maji, gesi, au simu ya mezani.", + "-537552700": "Mkataba wa upangaji nyumba: mkataba halali na wa sasa.", + "-506510414": "Tarehe na muda", "-1708927037": "Anwani ya IP", - "-870902742": "Je! Una maarifa na uzoefu kiasi gani kuhusiana na biashara ya mtandaoni?", + "-870902742": "Je, una maarifa na uzoefu kiasi gani kuhusiana na biashara ya mtandaoni?", "-1929477717": "Nina shahada ya kitaaluma, vyeti vya kitaaluma, na/au uzoefu wa kazi unaohusiana na huduma za kifedha.", "-1540148863": "Nimehudhuria semina, mafunzo, na/au warsha zinazohusiana na biashara.", "-922751756": "Chini ya mwaka", "-542986255": "Hakuna", "-1337206552": "Kwa uelewa wako, biashara ya CFD hukuruhusu", - "-456863190": "Weka nafasi juu ya harakati za bei ya mali ambapo matokeo ni mapato ya kudumu au hakuna chochote.", - "-1314683258": "Fanya uwekezaji wa muda mrefu kwa faida iliyohakikishwa.", + "-456863190": "Weka nafasi kwenye mwenendo wa bei ya mali ambapo matokeo ni mapato ya kudumu au hasara.", + "-1314683258": "Fanya uwekezaji wa muda mrefu kwa faida ya uhakika.", "-1546090184": "Je! Ufanisi huathiri biashara ya CFD?", "-1636427115": "Ufanisi husaidia kupunguza hatari.", "-800221491": "Ufanisi inahakikisha faida.", "-811839563": "Ufanisi hukuruhusu kufungua nafasi kubwa kwa sehemu ya thamani ya biashara, ambayo inaweza kusababisha kuongezeka kwa faida au hasara.", - "-1185193552": "Funga biashara yako kiotomatiki wakati hasara ni sawa na au zaidi ya kiasi maalum, maadamu kuna ukwasi wa kutosha wa soko.", - "-1046354": "Funga biashara yako kiotomatiki wakati faida ni sawa na au zaidi ya kiasi maalum, maadamu kuna ukwasi wa kutosha wa soko.", - "-1842858448": "Pata faida iliyohakikishwa kwenye biashara yako.", - "-860053164": "Wakati wa kufanya biashara ya viongezeka.", + "-1185193552": "Funga biashara yako otomatiki wakati faida ni sawa na au zaidi ya kiasi maalum, maadamu kuna ukwasi wa kutosha wa soko.", + "-1046354": "Funga biashara yako otomatiki wakati faida ni sawa na au zaidi ya kiasi maalum, maadamu kuna ukwasi wa kutosha wa soko.", + "-1842858448": "Pata faida ya uhakika kwenye biashara yako.", + "-860053164": "Wakati wa kufanya biashara ya multipliers.", "-1250327770": "Wakati wa kununua hisa za kampuni.", "-1222388581": "Yote hapo juu.", "-1592318047": "Tazama mfano", @@ -2588,73 +2570,74 @@ "-1176889260": "Tafadhali chagua aina ya hati.", "-1265050949": "hati ya utambulisho", "-2139303636": "Labda umefuata kiungo kilichovunjika, au ukurasa umehamia kwenye anwani mpya.", - "-1448368765": "Nambari ya hitilafu: Ukurasa wa {{error_code}} haupatikana", - "-254792921": "Unaweza tu kufanya amana kwa sasa. Ili kuwezesha uondoaji, tafadhali kamilisha tathmini yako ya kifedha.", + "-1448368765": "Hitilafu: {{error_code}} ukurasa haujapatikana", + "-254792921": "Unaweza tu kufanya uwekaji pesa kwa sasa. Ili kuwezesha utoaji pesa, tafadhali kamilisha tathmini yako ya kifedha.", "-1437017790": "Taarifa za kifedha", - "-70342544": "Tunalazimika kisheria kuuliza habari yako ya kifedha.", + "-70342544": "Tunalazimika kisheria kukuuliza taarifa zako za kifedha.", "-39038029": "Uzoefu wa biashara", "-601903492": "Uzoefu wa biashara ya Forex", "-1012699451": "Uzoefu wa biashara ya CFD", - "-1894668798": "Uzoefu mwingine wa vyombo", - "-1026468600": "Mzunguko vingine wa zana za biashara", + "-1894668798": "Uzoefu wa vyombo vingine vya biashara", + "-1026468600": "Mzunguko wa vyombo vingine vya biashara", "-1743024217": "Chagua Lugha", "-136976514": "Nchi ya makazi*", "-1124948631": "Mteja wa Kitaalamu", "-259515058": "Kwa chaguo-msingi, wateja wote wa {{brand_website_name}} ni wateja wa rejareja lakini mtu yeyote anaweza kuomba kutibiwa kama mteja wa kitaalam.", - "-1463348492": "Ningependa kutibiwa kama mteja wa kitaalamu.", - "-1958764604": "Upendeleo wa barua", - "-2068064150": "Pata sasisho kuhusu bidhaa, huduma na matukio ya Deriv.", - "-1558679249": "Tafadhali hakikisha habari yako ni sahihi au inaweza kuathiri uzoefu wako wa biashara.", + "-1463348492": "Ningependa kuhudumiwa kama mteja mtaalamu.", + "-1958764604": "Mapendeleo ya barua pepe", + "-2068064150": "Pata taarifa kuhusu bidhaa, huduma na matukio ya Deriv.", + "-1558679249": "Tafadhali hakikisha taarifa zako ni sahihi au inaweza kuathiri uzoefu wako wa biashara.", "-1822545742": "Ether Classic", "-1334641066": "Litecoin", "-1214036543": "Dola ya Marekani", "-1782590355": "Hakuna sarafu iliyowekwa kwa akaunti hii", "-2116332353": "Tafadhali funga nafasi zako katika akaunti zifuatazo za Deriv:", "-2048005267": "{{number_of_positions}} nafasi (s)", - "-2125635811": "Tafadhali ondoa fedha zako kutoka kwa akaunti zifuatazo za {{platform_name}} :", + "-2125635811": "Tafadhali toa fedha zako kutoka kwa akaunti zifuatazo za {{platform_name}}:", "-577445413": "Tafadhali funga nafasi zako katika akaunti zifuatazo za {{platform_name}}:", "-1219849101": "Tafadhali chagua angalau sababu moja", "-9323953": "Wahusika waliobaki: {{remaining_characters}}", - "-484540402": "Hitilafu lilitokea", - "-1911549768": "Akaunti inayopatikana za MT5", + "-484540402": "Hitilafu imetokea", + "-1911549768": "Akaunti za MT5 zisizoweza kufikiwa", "-1869355019": "Hatua inayohitajika", "-1030102424": "Huwezi kufanya biashara kwenye Deriv.", - "-448385353": "Huwezi kufanya shughuli.", + "-448385353": "Huwezi kufanya miamala.", "-1058447223": "Kabla ya kufunga akaunti yako:", - "-912764166": "Ondoa fedha zako.", - "-60139953": "Tutafuta habari yako ya kibinafsi mara tu majukumu yetu ya kisheria yanapotimizwa, kama ilivyoelezwa katika sehemu ya Uhifadhi wa Takwimu katika sera yetu ya <0>Usalama na faragha", - "-2061895474": "Kufunga akaunti yako kutakuondoa moja kwa moja. Tutafuta maelezo yako ya kibinafsi mara tu majukumu yetu ya kisheria yanapotimizwa.", + "-912764166": "Toa fedha zako.", + "-60139953": "Tutafuta taarifa zako binafsi mara tu majukumu yetu ya kisheria yanapotimizwa, kama ilivyoelezwa katika sehemu ya Uhifadhi wa Data katika sera yetu ya <0>Usalama na faragha", + "-2061895474": "Kufunga akaunti yako kutakuondoa moja kwa moja. Tutafuta taarifa zako binafsi mara tu majukumu yetu ya kisheria yanapotimizwa.", "-203298452": "Funga akaunti", - "-937707753": "Rudi nyuma", - "-771109503": "Tumia API yetu yenye nguvu, rahisi, na ya bure kujenga jukwaa la biashara maalum kwa ajili yako au kwa biashara yako.", - "-1815044949": "Kwa sasa huna programu zozote zilizoidhinishwa za tatu zinazohusiana na akaunti yako.", - "-1699100421": "Je! Programu zilizounganishwa ni nini?", - "-536187647": "Thibitisha kufuta upatikanaji?", + "-937707753": "Rudi Nyuma", + "-771109503": "Tumia API yetu yenye uwezo, rahisi, na isiyo ya malipo ili kujenga jukwaa la biashara maalum kwa ajili yako au biashara yako.", + "-1815044949": "Kwa sasa hauna app zozote zilizoidhinishwa za wahusika wengine zinazohusiana na akaunti yako.", + "-1699100421": "App zilizounganishwa ni nini?", + "-536187647": "Ungependa kuthibitisha kubatilisha ufikiaji?", "-1357606534": "Ruhusa", - "-570222048": "Futa upatikanaji", + "-570222048": "Batilisha ufikiaji", "-1468863262": "{{action}}", "-727433417": "{{status}}", - "-1814836151": "Nini passkeys?", - "-1275937234": "Fungua akaunti yako kama simu yako - kwa biometri, skani ya uso au PIN.", + "-1814836151": "Passkeys ni nini?", + "-1275937234": "Fungua akaunti yako kama vile simu yako - kwa biyometriki, kuskani uso au PIN.", "-587750445": "Safu ya ziada ya usalama.", - "-642452561": "Ngao dhidi ya ufikiaji usiojidhinishwa na phishing.", - "-1654043401": "Unaweza kuunda nenosiri moja kwa kila kifaa.", + "-642452561": "Kinga dhidi ya ufikiaji ambao haujaidhinishwa na hadaa.", + "-1654043401": "Unaweza kuunda passkey moja kwa kila kifaa.", "-1411242065": "Passkeys zimehifadhiwa wapi?", - "-258752017": "Nini kinatokea ikiwa barua pepe yangu ya akaunti ya Deriv imebadil?", - "-634268263": "Ingia kwenye Deriv na nenosiri yako iliyopo.", + "-258752017": "Nini kinatokea ikiwa barua pepe yangu ya akaunti ya Deriv itabadilishwa?", + "-634268263": "Ingia kwenye Deriv na passkey yako iliyopo.", "-1405679241": "Imehifadhiwa kwenye: ", "-1700177761": "Unda passkey", "-1729774899": "Ingia kwenye akaunti yako ya Google au iCloud.", - "-1708254107": "Wezesha Bluetooth.", + "-1708254107": "Washa Bluetooth.", "-613368504": "Vidokezo:", "-1897886029": "Kabla ya kutumia passkey:", - "-592543249": "Zaidi passkeys", - "-585339315": "Passkey lako imeondolewa kwa mafanikio. Ili kuepuka maombi ya kuingia, pia ondoa passkey kutoka kwa meneja wako wa nenosiri la Google. ", + "-592543249": "Ongeza passkeys nyingine", + "-585339315": "Passkey yako imeondolewa kikamilifu. Ili kuepuka maombi ya kuingia, pia ondoa passkey kutoka kwenye usimamizi wako wa nenosiri la Google. ", "-1728732301": "Kuingia bila juhudi kwa passkeys", "-684009726": "Hariri passkey", - "-1140319320": "Akaunti yako sasa imehifadhiwa na passkey. Dhibiti passkey yako kupi <0/> tia mipangilio yako ya akaunti ya Deriv<0/>.", + "-1140319320": "Akaunti yako sasa inalindwa na passkey. Dhibiti passkey yako kupitia <0/> mipangilio yako ya akaunti ya Deriv<0/>.", + "-1036903080": "Tunakumbana na tatizo kidogo katika kuchakata ombi lako. Tafadhali jaribu tena baadae.", "-331060101": "Usanidi wa Passkey ulishindwa", - "-713875531": "Wezesha bluetooth.", + "-713875531": "Washa Bluetooth.", "-80717068": "Programu ambazo umeunganisha na nenosiri <0>lako la Deriv:", "-340060402": "Nenosiri lako la Deriv X ni kwa kuingia kwenye akaunti zako za Deriv X kwenye wavuti na programu za rununu.", "-619126443": "Tumia nen <0>osiri la Deriv kuingia kwenye {{brand_website_name}} na {{platform_name_trader}}.", @@ -2704,23 +2687,27 @@ "-1879666853": "Deriv MT5", "-820028470": "Chaguzi na Viongezaji", "-1186807402": "Uhamisho", - "-224804428": "Shughuli", - "-470018967": "Weka upya usawa", + "-224804428": "Miamala", + "-470018967": "Weka upya salio", "-693105141": "MT5 Financial", "-145462920": "Deriv cTrader", - "-1210359945": "Kuhamisha fedha kwenye akaunti zako", - "-81256466": "Unahitaji akaunti ya Deriv kuunda akaunti ya CFD.", + "-1210359945": "Hamisha fedha kwenda kwenye akaunti zako", + "-81256466": "Unahitaji akaunti ya Deriv ili kuunda akaunti ya CFD.", + "-1926387364": "Tumetuma e-book yako kwenye barua pepe yako. Unaweza pia kuipakua hapa.", + "-1057002564": "<0>Hatuwezi kukuboresha kwenye Wallets kwa wakati huu na tunafanya kazi ili kurekebisha hii haraka iwezekanavyo. Tafadhali <1>jaribu tena<0>.", + "-1424352390": "<0>Wallets<1> — Njia bora ya kudhibiti fedha zako", + "-280236366": "Wezesha sasa", "-699372497": "Biashara kwa faida na ueneo mkali kwa faida bora kwenye biashara zilizofanikiwa. Ji <0>funze zaidi", "-982095728": "Pata", "-1790089996": "MPYA!", - "-2134770229": "Jumla ya mali katika Programu zako za Deriv na akaunti ya onyesho ya Deriv MT5 CFDs.", + "-2134770229": "Jumla ya mali katika Deriv Apps na Deriv MT5 CFDs demo akaunti.", "-1277942366": "Jumla ya mali", - "-1255879419": "Kituo cha Mfanyabiashara", - "-493788773": "Wasiyo wa EU", - "-673837884": "UMOJA WA ULAYA", - "-230566990": "Nyaraka zifuatazo ulizowasilisha hazikupiti ukaguzi wetu:", + "-1255879419": "Trader's Hub", + "-493788773": "Wasio wa EU", + "-673837884": "EU", + "-230566990": "Hati zifuatazo ulizowasilisha hazikufaulu ukaguzi wetu:", "-846812148": "Uthibitisho wa anwani.", - "-1146027991": "Ikiwa ungependa kupata akaunti ya {{from_account}} , wasilisha tena nyaraka hizi.", + "-1146027991": "Ikiwa ungependa kupata akaunti ya {{from_account}}, wasilisha tena hati hizi.", "-710685402": "Hakuna nafasi mpya", "-1445744852": "Huwezi tena kufungua nafasi mpya na akaunti yako ya {{from_account}} . Tafadhali tumia akaunti yako ya {{to_account}} kufungua nafasi mpya.", "-1699909965": "au ", @@ -2733,13 +2720,10 @@ "-2055865877": "Kanuni isiyo ya EU", "-643108528": "Kanuni isiyo ya EU na EU", "-1002556560": "Hatuwezi kukamilisha na uboreshaji wa Wallet. Tafadhali jaribu tena baadaye au wasiliana nasi kupitia mazungumzo ya moja kwa moja.", - "-280236366": "Wezesha sasa", "-2051096382": "<1>Pata malipo anuwai kwa kutabiri kwa usahihi harakati za soko na <0>chag uzi, au upate\n juu ya CFD bila kuhatarisha zaidi ya hisa yako ya awali na viongezaji.", "-1638358352": "<0>Pata upande wa CFDs bila kuhatarisha zaidi ya hisa yako ya awali na Multipliers.", "-744999940": "Akaunti ya Deriv", "-749129977": "Pata akaunti halisi ya Deriv, anza biashara na usimamia fedha zako.", - "-1057002564": "<0>Hatuwezi kukuboresha kwenye Wallets kwa wakati huu na tunafanya kazi ili kurekebisha hii haraka iwezekanavyo. Tafadhali <1>jaribu tena<0>.", - "-1424352390": "<0>Wallets<1> — Njia bora ya kusimamia fedha zako", "-2146691203": "Uchaguzi wa udhibiti", "-249184528": "Unaweza kuunda akaunti halisi chini ya kanuni ya EU au isiyo ya EU. Bonyeza <0><0/>ikoni ili kujifunza zaidi kuhusu akaunti hizi.", "-1505234170": "Ziara ya Mfanyabiashara Hub", @@ -2860,7 +2844,6 @@ "-1949883551": "Una akaunti moja tu", "-1149845849": "Rudi kwenye Kituo cha Mfanyabiashara", "-1232852916": "Tunabadilisha kwenye akaunti yako ya {{currency}} ili kutazama shughuli hiyo.", - "-759000391": "Hatukuweza kuthibitisha habari yako kiotomatiki. Ili kuwezesha kazi hii, lazima ukamilishe yafuatayo:", "-1632668764": "Ninakubali", "-544232635": "Tafadhali nenda kwenye ukurasa wa Amana ili kutoa anwani. Kisha rudi hapa kuendelea na shughuli yako.", "-1161069724": "Tafadhali nakili anwani ya crypto unayoona hapa chini. Utahitaji kuweka cryptocurrency yako.", @@ -3267,7 +3250,6 @@ "-821418875": "mfanyabiashara", "-679102561": "Maelezo ya Mkataba", "-430118939": "Sera ya malalamiko", - "-568280383": "Deriv Gaming", "-1308346982": "Derived", "-579984289": "Demo yanayotokana", "-1596515467": "Inatokea BVI", @@ -3390,7 +3372,6 @@ "-689237734": "Endelea", "-1642457320": "Kituo cha usaidizi", "-1966944392": "Hali ya mtandao: {{status}}", - "-594209315": "<0>Fahirisi za sintetiki katika EU hutolewa na {{legal_entity_name}}, Kituo cha Biashara cha W, Kiwango cha 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, yenye leseni na kudhibitiwa na Mamlaka ya Michezo ya Michezo ya Malta (leseni no. <2>MGA/B2C/102/2000) na na Kamishna wa Mapato kwa wateja nchini Ireland (leseni namba 1010285).", "-181484419": "Biashara inayowajib", "-650505513": "Skrini kamili", "-1823504435": "Tazama arifa", @@ -3400,8 +3381,8 @@ "-1496158755": "Nenda kwenye Deriv.com", "-1323441180": "Ninathibitisha kwamba ombi langu la kufungua akaunti na Deriv kufanya biashara ya bidhaa za OTC zilizotolewa na kutolewa tu nje ya Brazil lilianzishwa na mimi. Ninaelewa kikamilifu kwamba Deriv haidhibitiwi na CVM na kwa kukaribia Deriv nina nia ya kuanzisha uhusiano na kampuni ya kigeni.", "-1396326507": "Kwa bahati mbaya, {{website_name}} haipatikani katika nchi yako.", - "-1019903756": "Sanisi", "-288996254": "Haipatikani", + "-1019903756": "Sanisi", "-735306327": "Dhibiti akaunti", "-1813972756": "Uundaji wa akaunti umesimama kwa masaa 24", "-366030582": "Samahani, huwezi kuunda akaunti kwa wakati huu. Wakati ulikukataa maonyo yetu ya hatari ya awali, tunahitaji kusubiri masaa 24 baada ya jaribio lako la kwanza la kuunda akaunti kabla ya kuendelea. <0/> <0/>", @@ -3424,9 +3405,6 @@ "-175638343": "Chagua akaunti au ongeza mpya", "-1768223277": "Akaunti yako iko tayari", "-1215717784": "<0>Umefanikiwa kubadilisha sarafu yako kuwa {{currency}}. <0>Fanya amana sasa ili kuanza biashara.", - "-786091297": "Biashara kwenye demo", - "-228099749": "Tafadhali thibitisha utambulisho na anwani yako", - "-1041852744": "Tunasindika maelezo yako ya kibinafsi", "-1775006840": "Fanya amana sasa ili kuanza biashara.", "-983734304": "Tunahitaji uthibitisho wa utambulisho wako na anwani kabla ya kuanza biashara.", "-917733293": "Ili kupata biashara, tafadhali thibitisha mahali unapoishi.", @@ -3434,7 +3412,6 @@ "-952649119": "Ingia", "-3815578": "Jisajili", "-1456176427": "Weka sarafu kwa akaunti yako halisi", - "-1557011219": "Ongeza akaunti halisi ya Deriv Options", "-241733171": "Ongeza akaunti ya Fedha ya Deriv", "-1329687645": "Unda akaunti ya cryptocurrency", "-1429178373": "Unda akaunti mpya", @@ -3471,14 +3448,10 @@ "-2142491494": "Sawa, nilipata", "-611136817": "Jihadharini na viungo bandia.", "-1342699195": "Jumla ya faida/hasara:", - "-943710774": "<0>Sera hii ya malalamiko, ambayo inaweza kubadilika mara kwa mara, inatumika kwa akaunti yako iliyosajiliwa na {{legal_entity_name}}, na anwani yake ya ofisi iliyosajiliwa katika Ghorofa ya Kwanza, Millennium House, Victoria Road, Douglas, Isle of Man, IM2 4RW, leseni na (1) Tume ya Kamari katika Kisiwa cha Man (leseni ya s <1>asa).", - "-255056078": "<0>Sera hii ya malalamiko, ambayo inaweza kubadilika mara kwa mara, inatumika kwa akaunti yako iliyosajiliwa na {{legal_entity_name}}, ikiwa na anwani yake ya ofisi iliyosajiliwa katika Kituo cha Biashara cha W, Kiwango cha 3, Triq Dun Karm, Birkirkara, BKR 9033, Malta, leseni na kudhibitiwa na Mamlaka ya Michezo ya Malta kwa bidhaa za kamari tu, no leseni. MGA/B2C/102/2000, na kwa wateja wanaoishi Uingereza na Tume ya Kamari ya Uingereza (namba ya akaunti 39495).", "-1941013000": "Sera hii ya malalamiko, ambayo inaweza kubadilika mara kwa mara, inatumika kwa akaunti yako iliyosajiliwa na {{legal_entity_name_svg}}, {{legal_entity_name_fx}}, na {{legal_entity_name_v}}.", "-594812204": "Sera hii ya malalamiko, ambayo inaweza kubadilika mara kwa mara, inatumika kwa akaunti yako iliyosajiliwa na {{legal_entity_name_svg}}.", "-813256361": "Tumejitolea kuwatendea wateja wetu kwa haki na kuwapa huduma bora. <0/> <1/> Tunapenda kusikia kutoka kwako juu ya jinsi tunavyoweza kuboresha huduma zetu kwako. Habari yoyote unayotoa itatibiwa kwa ujasiri mkali zaidi. Hakikisha kuwa utasikiwa, utathaminiwa, na daima kutibiwa kwa haki.", "-1622847732": "Ikiwa una uchunguzi kuhusu akaunti yako ya biashara na {{legal_entity_name}}, unaweza kuwasiliana nasi kupitia kituo chetu cha M <0>saada au kwa kuzungumza na mwakilishi kupitia <1>Live Chat. <2/> <3/> Tumejitolea kutatua swali lako kwa wakati wa haraka iwezekanavyo na tunathamini uvumilivu wako katika kuturuhusu wakati wa kutatua jambo hilo. <4/> <5/> Tunajitahidi kutoa huduma bora iwezekanavyo kwa wateja wetu. Walakini, katika tukio ambapo hatuwezi kutatua swali lako au ikiwa unahisi kuwa majibu letu halijaridhisha, tunataka kusikia kutoka kwako. Tunakaribisha na kukuhimiza uwasilishe malalamiko rasmi kwetu ili tuweze kukagua wasiwasi wako na kufanya kazi kuelekea suluhisho.", - "-1639808836": "Ikiwa haujaridhika na matokeo, unaweza kuongeza malalamiko yako kwa <0>Huduma ya Kujitegemea ya Uamuzi wa Kubeti (IBAS) kwa kujaza fomu ya uamuzi wa IBAS. Tafadhali kumbuka kuwa IBAS inashughulikia tu mizozo inayotokana na shughuli.", - "-1505742956": "<0/><1/>Unaweza pia kupeleka mzozo wako kwa Mamlaka ya Michezo ya Michezo ya Malta kupitia Kitengo <2>cha Msaada cha Wache zaji", "-1406192787": "Ikiwa haujaridhika na matokeo, unaweza kuongeza malalamiko yako kwa Tume ya <0>Fedha.", "-1776547326": "<0/><1/>Ikiwa unaishi Uingereza na haufurahi na majibu yetu unaweza kuongeza malalamiko yako kwa <2>Huduma ya Ombudsman wa Fed ha.", "-2115348800": "1. Utangulizi", @@ -3561,7 +3534,6 @@ "-1969608084": "Forex na Cryptocurrency", "-800771713": "Mamlaka ya Huduma za Fedha ya Labuan (leseni no. MB/18/0024)", "-1497128311": "80+", - "-1501230046": "0.6 pips", "-1689815930": "Utahitaji kuwasilisha uthibitisho wa utambulisho na anwani mara tu unapofikia kizingiti fulani.", "-1175785439": "Deriv (SVG) LLC (kampuni namba 273 LLC 2020)", "-139026353": "Picha ya mwenyewe mwenyewe.", @@ -4102,7 +4074,6 @@ "-1750896349": "D'Alembert", "-102980621": "Mkakati wa Grind wa Oscar ni mkakati mzuri wa maendeleo yenye hatari ndogo ambao ulionekana kwanza mnamo 1965. Kwa kutumia mkakati huu, ukubwa wa mkataba wako utaongezeka baada ya biashara zilizofanikiwa, lakini bado badilika baada ya biashara ziliz", "-462715374": "Bot isiyo na jina", - "-538215347": "Amana halisi", "-280147477": "Shughuli zote", "-137444201": "Nunua", "-130601012": "Tafadhali chagua muda", diff --git a/packages/translations/src/translations/th.json b/packages/translations/src/translations/th.json index ef544b1a563d..b9fb33e1ef19 100644 --- a/packages/translations/src/translations/th.json +++ b/packages/translations/src/translations/th.json @@ -1,5 +1,4 @@ { - "1014140": "นอกจากนี้ คุณยังสามารถโทร <0>+447723580049 เพื่อทำการร้องเรียน", "1485191": "1:1000", "2082741": "หมายเลขเอกสารเพิ่มเติม", "2091451": "Deriv Bot - คู่หูในการซื้อขายอัตโนมัติของคุณ", @@ -205,12 +204,10 @@ "218441288": "หมายเลขบัตรประชาชน", "220014242": "อัปโหลดภาพเซลฟี่จากคอมพิวเตอร์ของคุณ", "220186645": "ข้อความว่าง", - "220232017": "บัญชีทดลอง CFD", "221261209": "บัญชี Deriv จะอนุญาตให้คุณฝากเงินเข้า (และถอนเงินออกจาก) บัญชี CFD ของคุณได้", "223120514": "จากตัวอย่างนี้ แต่ละจุดของเส้นค่าเฉลี่ยเคลื่อนที่แบบปกติหรือ SMA คือค่าเฉลี่ยเลขคณิตของราคาปิดในช่วง 50 วันที่ผ่านมา", "223607908": "สถิติเลขหลักสุดท้ายของจุด Tick จำนวน 1000 จุดล่าสุดสำหรับ {{underlying_name}}", "224650827": "IOT/USD", - "224929714": "การลงทุนทรัพย์ไปตามเหตุการณ์เสมือนในสหราชอาณาจักรและเกาะไอล์ออฟแมนนั้นถูกนําเสนอโดยบริษัท {{legal_entity_name}} ซึ่งตั้งอยู่ที่ Millennium House, Level 1, Victoria Road, Douglas IM2 4RW, Isle of Man และได้รับใบอนุญาตและถูกกำกับดูแลในสหราชอาณาจักรโดยองค์กร Gambling Commission ภายใต้ <0>บัญชีเลขที่ 39172 และโดยองค์กร Gambling Supervision Commission ในเกาะไอล์ออฟแมน (<1>ดูใบอนุญาต)", "225887649": "บล็อกนี้มีอยู่ตามข้อบังคับและถูกใส่เข้ามาในกลยุทธ์ของคุณตามค่าเริ่มต้นในเวลาที่คุณสร้างกลยุทธ์ใหม่ ทั้งนี้ คุณไม่สามารถจะคัดลอกบล็อกนี้ในจำนวนมากกว่าหนึ่งบล็อกไปยังผืนผ้าใบได้", "227591929": "การลงบันทึกเวลา {{ input_datetime }} {{ dummy }}", "227903202": "เราจะเรียกเก็บค่าธรรมเนียมการโอน 1% สำหรับการโอนเงินในสกุลเงินต่างๆ ระหว่างบัญชีเงินตรารัฐบาล Deriv ของคุณและบัญชี {{platform_name_mt5}} ของคุณ", @@ -262,7 +259,6 @@ "273728315": "ไม่ควรเป็น 0 หรือ ว่างเปล่า", "274268819": "ดัชนี Volatility 100", "275116637": "Deriv X", - "276639155": "โปรกรอกรหัสไปรษณีย์ที่น้อยกว่า 20 ตัวอักษร", "276770377": "บัญชี MT5 ใหม่ (เดี่ยวหรือหลายบัญชี) ภายใต้เขตอำนาจศาล {{to_account}} จะถูกสร้างขึ้นสำหรับการซื้อขายใหม่", "277469417": "ระยะเวลาของการใช้ระบบการกันตัวเองต้องไม่เกินห้าปี", "278684544": "รับรายการย่อยจาก # จากสุดท้าย", @@ -271,7 +267,6 @@ "282319001": "ตรวจสอบรูปภาพของคุณ", "282564053": "ขั้นตอนต่อไปคือเราจำเป็นต้องใช้หลักฐานแสดงที่อยู่ของคุณ", "283830551": "ที่อยู่ของคุณไม่ตรงกับในโปรไฟล์ของคุณ", - "283986166": "ระบบการกันตัวเองบนเว็บไซต์จะใช้ได้กับบัญชี {{brand_website_name}} ของคุณเท่านั้นและไม่รวมถึงบริษัทหรือเว็บไซต์อื่นๆ", "284527272": "ตัวเลขที่เกิดน้อยครั้งที่สุดหรือแอนตี้โหมด", "284772879": "สัญญา", "284809500": "บัญชีทดลอง Financial", @@ -376,7 +371,6 @@ "401339495": "ยืนยันที่อยู่", "401345454": "ไปที่แท็บบทช่วยสอนเพื่อทำเช่นนั้น", "403456289": "สูตรสำหรับเส้นค่าเฉลี่ยเคลื่อนที่แบบปกติหรือ SMA คือ", - "404743411": "เงินฝากทั้งหมด", "406359555": "รายละเอียดของสัญญา", "406497323": "ขายสัญญาที่กำลังเปิดใช้อยู่ของคุณได้ถ้าจำเป็น (ไม่บังคับ)", "411482865": "เพิ่มบัญชี {{deriv_account}}", @@ -468,11 +462,11 @@ "502041595": "บล็อกนี้จะให้ค่าของแท่งเทียนที่เฉพาะเจาะจงจากภายในช่วงเวลาที่คุณเลือกไว้", "505793554": "อักษรตัวสุดท้าย", "508390614": "บัญชีทดลอง Financial STP", - "510815408": "ตัวอักษร ตัวเลข ช่องว่าง ยัติภังค์เท่านั้น", "511679687": "ตราสารสิทธิ Accumulators ช่วยให้คุณสามารถแสดงมุมมองของช่วงการเคลื่อนไหวของดัชนีและช่วยให้เงินทุนทรัพย์ของคุณได้เติบโตเพิ่มพูนใน <0>อัตราการเติบโต คงที่", "514031715": "ลิสต์รายการ {{ input_list }} นั้นว่าง", "514776243": "รหัสผ่านเข้าสู่บัญชี {{account_type}} ของคุณได้มีการเปลี่ยนแปลง", "514948272": "คัดลอกลิงก์", + "517631043": "เราได้ส่งอีบุ๊คของคุณไปให้แล้ว โปรดเช็คอีเมล์ของคุณเพื่อดาวน์โหลด", "517833647": "ดัชนี Volatility 50 (1s)", "518955798": "7. คลิกคำสั่ง Run เมื่อเริ่มใช้งาน", "519205761": "คุณไม่สามารถเปิดตำแหน่งการค้าใหม่ด้วยบัญชีนี้ได้อีกต่อไป", @@ -491,7 +485,7 @@ "533403953": "บัญชี <0>{{platform}} {{type}} {{from_account}} ที่มีอยู่ของคุณจะยังคงเข้าถึงได้", "535041346": "รวมยอดเงินทุนทรัพย์ขั้นสูงสุดต่อวัน", "537788407": "แพลตฟอร์ม CFD อื่นๆ", - "538017420": "0.5 pips", + "538017420": "0.5 จุดพิพ", "538042340": "หลักการที่ 2: เงินทุนทรัพย์จะเพิ่มขึ้นก็ต่อเมื่อการเทรดขาดทุนนั้นตามมาด้วยการเทรดที่ประสบความสำเร็จ", "538228086": "Close-Low", "541650045": "จัดการรหัสผ่าน {{platform}}", @@ -499,7 +493,6 @@ "542038694": "เฉพาะตัวอักษร ตัวเลข เว้นวรรค เส้นใต้ และยัติภังค์เท่านั้นที่ได้รับอนุญาตสำหรับ {{label}}", "542305026": "คุณต้องส่งหลักฐานยืนยันตัวตนของคุณอีกด้วย", "543413346": "คุณไม่มีตำแหน่งการค้าที่เปิดไว้สำหรับสินทรัพย์นี้ หากต้องการดูตำแหน่งการค้าอื่นๆ ที่เปิดอยู่ให้คลิกไปที่รายงาน", - "545476424": "เงินถอนทั้งหมด", "547029855": "หากคุณเลือกคุณสมบัตินี้ คุณสามารถยกเลิกการซื้อขายของคุณได้ภายในกรอบเวลาที่เลือกไว้ หากราคาสินทรัพย์เคลื่อนไหวไปในทางตรงข้าม คุณจะได้รับเงินทุนทรัพย์คืนโดยไม่มีกำไร/ขาดทุน เราเรียกเก็บค่าธรรมเนียมเล็กน้อยสำหรับสิ่งนี้ ตัวปิดเทรดเอากำไร และ ตัวหยุดการขาดทุนจะถูกปิดใช้งานเมื่อมีการยกเลิกข้อตกลง", "549479175": "Deriv Multipliers", "549799607": "ไปที่แชทสด", @@ -628,6 +621,7 @@ "665777772": "XLM/USD", "665872465": "จากตัวอย่างด้านล่าง ราคาเปิดได้ถูกเลือกแล้วและก็ถูกกำหนดให้กับตัวแปรที่เรียกว่า \"op\"", "666724936": "โปรดใส่ตัวเลขไอดีที่ถูกต้อง", + "669494711": "1.4 จุดพิพ", "671630762": "เรายอมรับเฉพาะประเภทเอกสารเหล่านี้มาเป็นหลักฐานยืนยันที่อยู่ของคุณ ซึ่งเอกสารดังกล่าวจะต้องเป็นเอกสารล่าสุด (ออกภายใน {{expiry_in_months}} เดือนที่ผ่านมา) และระบุชื่อและที่อยู่ของคุณ:", "672008428": "ZEC/USD", "673915530": "เขตอำนาจรับผิดชอบและการเลือกใช้กฎหมาย", @@ -693,7 +687,6 @@ "721011817": "- เพิ่มเลขตัวแรกเพื่อยกกำลังเลขตัวที่สอง", "723045653": "คุณจะเข้าสู่ระบบบัญชี Deriv ของคุณด้วยที่อยู่อีเมล์นี้", "723961296": "จัดการรหัสผ่าน", - "724203548": "คุณสามารถส่งข้อร้องเรียนของคุณไปที่แพลตฟอร์ม <0>การระงับข้อพิพาททางออนไลน์ของคณะกรรมาธิการยุโรป (ODR) อนึ่ง ช่องทางนี้ไม่สามารถใช้ได้กับลูกค้าในสหราชอาณาจักร", "724526379": "เรียนรู้เพิ่มเติมจากบทช่วยสอนของเรา", "728042840": "โปรดยืนยันที่อยู่อาศัยของคุณเพื่อทำการซื้อขายกับเราต่อไป", "728824018": "Spanish Index", @@ -726,7 +719,6 @@ "755138488": "เราไม่สามารถตรวจสอบเอกสารที่คุณยื่นมาได้ เนื่องจากมีเครื่องหมายหรือข้อความซึ่งไม่ควรมีอยู่ในเอกสารของคุณ โปรดยื่นรูปภาพเอกสารที่ชัดเจนหรือสแกนเอกสารการยืนยันตัวตนที่เป็นต้นฉบับเดิมของคุณ", "756152377": "เส้นค่าเฉลี่ยเคลื่อนที่แบบปกติหรือ SMA ให้น้ำหนักแต่ละค่าในชุดข้อมูลว่าสำคัญเท่ากันทั้งหมด", "758003269": "ทำลิสต์รายการจากข้อความ", - "759783233": "สําหรับข้อมูลเพิ่มเติมและความช่วยเหลือให้คําปรึกษาและบริการสนับสนุนต่าง โปรดไปที่ <0>begambleaware.org", "760528514": "โปรดทราบว่า การเปลี่ยนค่าของ \"i\" จะไม่เปลี่ยนแปลงค่าของรายการตัวต้นฉบับในลิสต์", "761576760": "ฝากเงินเข้าบัญชีของคุณเพื่อเริ่มทำการซื้อขาย", "762926186": "กลยุทธ์ด่วนคือกลยุทธ์สำเร็จรูปพร้อมใช้ได้เลยใน Deriv Bot ซึ่งจะมีให้คุณเลือก 3 กลยุทธ์ที่ดังนี้: มาติงเกล (Martingale) ดาล็องแบร์ (D'Alembert) และออสก้าร์ กรินด์ (Oscar's Grind)", @@ -973,7 +965,7 @@ "1021090237": "อัพเกรดบัญชี <0>{{account_1}} <1/>และ <0>{{account_2}} {{platform}} ของคุณ", "1021679446": "Multipliers เท่านั้น", "1022934784": "1 นาที", - "1022971288": "เงินผลตอบแทนต่อจุด Pip", + "1022971288": "เงินผลตอบแทนต่อจุดพิพ", "1023237947": "1. จากตัวอย่างด้านล่าง คำสั่งจะถูกทำซ้ำตราบใดที่ค่าของ x นั้นน้อยกว่าหรือเท่ากับ 10 ดังนั้นเมื่อใดที่ค่าของ x เกินกว่า 10 แล้ว การวนลูปจึงจะถูกยกเลิก", "1023643811": "บล็อกนี้ใช้ซื้อสัญญาประเภทที่ระบุไว้โดยเฉพาะ", "1023795011": "Even/Odd", @@ -1105,7 +1097,6 @@ "1128404172": "ยกเลิก", "1129124569": "หากคุณเลือก \"Under\" คุณจะได้รับเงินผลตอบแทนก็ต่อเมื่อเลขหลักสุดท้ายของค่าจุด Tick ตัวสุดท้ายนั้นมีค่าน้อยกว่าตัวเลขที่คุณคาดการณ์ไว้", "1129842439": "โปรดป้อนจำนวนเงินของตัวปิดเทรดเอากำไรที่ต้องการ", - "1130744117": "เราจะพยายามแก้ไขปัญหาในข้อร้องเรียนของคุณภายใน 10 วันทําการ เราจะแจ้งให้คุณทราบถึงผลที่ได้พร้อมกับคําอธิบายจุดยืนของเรา และเสนอมาตรการเยียวยาแก้ไขใดๆ ที่เราตั้งใจจะดำเนินการ", "1130791706": "N", "1133651559": "แชทสด", "1134879544": "ตัวอย่างของเอกสารที่มีแสงสะท้อน", @@ -1245,7 +1236,7 @@ "1272012156": "GBP/CHF", "1272337240": "วัน", "1272681097": "ชั่วโมง", - "1274380814": "เงินผลตอบแทนของคุณจะเท่ากับการเอา <0>เงินได้ต่อจุด Pip มาคูณด้วยส่วนต่าง <1>ในรูปแบบตัวเลขจุด Pip ระหว่างราคาสุดท้ายและราคาใช้สิทธิ โดยคุณจะได้รับผลกำไรก็ต่อเมื่อเงินผลตอบแทนของคุณสูงกว่าเงินทุนทรัพย์เริ่มแรก", + "1274380814": "เงินผลตอบแทนของคุณจะเท่ากับการเอา <0>เงินได้ต่อจุดพิพ มาคูณด้วยส่วนต่าง <1>ในรูปแบบตัวเลขจุดพิพ ระหว่างราคาสุดท้ายและราคาใช้สิทธิ โดยคุณจะได้รับผลกำไรก็ต่อเมื่อเงินผลตอบแทนของคุณสูงกว่าเงินทุนทรัพย์เริ่มแรก", "1274819385": "3. การร้องเรียนและข้อพิพาท", "1276660852": "ส่งหลักฐานยืนยันตัวตนของคุณ", "1281045211": "เรียงลําดับรายการในลิสต์รายการที่กําหนด ตามมูลค่าตัวเลขหรือตัวอักษรทั้งในลําดับจากน้อยไปหามากหรือจากมากไปหาน้อย", @@ -1274,7 +1265,6 @@ "1304083330": "คัดลอก", "1304272843": "โปรดส่งหลักฐานแสดงที่อยู่ของคุณ", "1304620236": "เปิดใช้งานกล้อง", - "1304788377": "<0/><1/>หากข้อร้องเรียนของคุณเกี่ยวข้องกับแนวทางปฏิบัติในการประมวลผลข้อมูลของเรา คุณสามารถส่งข้อร้องเรียนอย่างเป็นทางการไปที่ <2>คณะกรรมการคุ้มครองสารสนเทศและข้อมูล (มอลตา) บนเว็บไซต์ของพวกเขาหรือร้องเรียนไปยังหน่วยงานกํากับดูแลใดๆ ภายในสหภาพยุโรป", "1305217290": "โปรดอัปโหลดด้านหลังของบัตรประจำตัวประชาชนของคุณ", "1308625834": "ตั้งค่าช่วงเวลาเริ่มต้นสําหรับบล็อกที่อ่านลิสต์รายการของแท่งเทียน", "1309017029": "การเปิดใช้งานสิ่งนี้จะช่วยให้คุณสามารถบันทึกบล็อกของคุณให้เป็นหนึ่งในคอลเลคชั่นที่สามารถรวมเข้ากับบอทอื่นๆได้อย่างง่ายดาย", @@ -1512,6 +1502,7 @@ "1531017969": "สร้างสตริงข้อความเดี่ยวจากการรวมค่าข้อความของแต่ละรายการที่แนบมาโดยไม่ต้องเว้นวรรค ทั้งนี้ จำนวนรายการสามารถเพิ่มขึ้นให้สอดคล้องกันได้", "1533177906": "Fall", "1534796105": "รับค่าตัวแปร", + "1537192641": "ไม่สามารถประมวลผลคำขอของคุณได้", "1537711064": "คุณต้องทำการยืนยันตัวตนอย่างรวดเร็วก่อนที่คุณจะสามารถเข้าถึงแคชเชียร์ได้ โปรดไปที่การตั้งค่าบัญชีของคุณเพื่อส่งหลักฐานยืนยันตัวตน", "1540585098": "ปฏิเสธ", "1541508606": "กำลังมองหา CFD อยู่ใช่ไหม? ไปที่ Trader's Hub", @@ -1562,7 +1553,6 @@ "1594147169": "กรุณากลับมาใหม่", "1594322503": "สามารถขายได้", "1595295238": "3. ใช้บล็อกตรรกะเพื่อตรวจสอบว่า กำไร/ขาดทุนทั้งหมด มากกว่าจำนวน เกณฑ์ของตัวหยุดการขาดทุน หรือไม่ คุณจะพบตัวแปร กำไร/ขาดทุนทั้งหมด ภายใต้ การวิเคราะห์ > สถิติ บน เมนูบล็อก ทางด้านซ้าย บอทของคุณจะยังคงซื้อสัญญาใหม่ต่อไปจนกว่าจำนวน กำไร/ขาดทุนทั้งหมด จะเกินจำนวน เกณฑ์ของตัวหยุดการขาดทุน", - "1596378630": "คุณได้เพิ่มบัญชีเกมจริง<0/>ทําการฝากเงินตอนนี้เพื่อเริ่มการซื้อขาย", "1597672660": "รหัสผ่าน Deriv MT5", "1598009247": "<0>a คุณสามารถยื่นข้อร้องเรียนต่อคณะกรรมการการเงินได้ภายใน 45 วันหลังจากเกิดเหตุ", "1598386296": "ต้องระบุเมือง/อำเภอ", @@ -1631,7 +1621,7 @@ "1665738338": "ยอดคงเหลือ", "1665756261": "ไปที่แชทสด", "1668138872": "แก้ไขการตั้งค่าบัญชี", - "1669062316": "เงินผลตอบแทน ณ เวลาหมดอายุนั้นจะเท่ากับเงินผลตอบแทนที่ได้ต่อจุด Pip มาคูณด้วยส่วนต่าง <0>ตามค่า Pipระหว่างราคาสุดท้ายและราคาใช้สิทธิ", + "1669062316": "เงินผลตอบแทน ณ เวลาหมดอายุนั้นจะเท่ากับเงินผลตอบแทนที่ได้ต่อจุดพิพ มาคูณด้วยส่วนต่าง <0>ในรูปแบบจุดพิพระหว่างราคาสุดท้ายและราคาใช้สิทธิ", "1670016002": "Multiplier: {{ multiplier }}", "1670426231": "เวลาสิ้นสุด", "1671232191": "คุณได้กำหนดขีดจำกัดต่อไปนี้:", @@ -1662,7 +1652,7 @@ "1701447705": "โปรดอัพเดทที่อยู่ของคุณ", "1702339739": "ข้อผิดพลาดทั่วไป", "1703091957": "เราเก็บข้อมูลเกี่ยวกับการจ้างงานของคุณตามหน้าที่ในข้อกำหนดเพื่อการตรวจทานสถานะธุรกิจของเราซึ่งเป็นไปตามกฏหมายการป้องกันการฟอกเงิน", - "1703712522": "เงินผลตอบแทนของคุณจะเท่ากับเงินผลตอบแทนที่ได้ต่อจุด Pip มาคูณด้วยส่วนต่าง <0>ตามค่า Pipระหว่างราคาสุดท้ายและราคาใช้สิทธิ", + "1703712522": "เงินผลตอบแทนของคุณจะเท่ากับเงินผลตอบแทนที่ได้ต่อจุดพิพ มาคูณด้วยส่วนต่าง <0>ในรูปแบบจุดพิพระหว่างราคาสุดท้ายและราคาใช้สิทธิ", "1704656659": "คุณมีประสบการณ์ในการเทรด CFD มากแค่ไหน", "1708413635": "สำหรับบัญชี {{currency_name}} ({{currency}}) ของคุณ", "1709859601": "เวลาจุดออก", @@ -1730,7 +1720,6 @@ "1763123662": "อัปโหลดสลิป NIMC ของคุณ", "1766212789": "การบำรุงรักษาเซิร์ฟเวอร์เริ่มต้นที่ 06:00 GMT ทุกวันอาทิตย์ และอาจใช้เวลาถึง 2 ชั่วโมงจึงจะเสร็จสิ้น คุณอาจประสบกับการบริการที่หยุดชะงักในช่วงเวลานี้", "1766993323": "อนุญาตให้ใช้เฉพาะตัวอักษร ตัวเลข และขีดล่างเท่านั้น", - "1767429330": "เพิ่มบัญชี Derived", "1768293340": "มูลค่าสัญญา", "1768861315": "นาที", "1768918213": "อนุญาตให้ใช้เฉพาะตัวอักษร ช่องว่าง ยัติภังค์ มหัพภาค และเครื่องหมายอัญประกาศเดี่ยวเท่านั้น", @@ -1744,6 +1733,7 @@ "1779144409": "ต้องมีการยืนยันบัญชี", "1779519903": "ควรเป็นตัวเลขที่ถูกต้อง", "1779801832": "กรุณาอัพเดทรหัสผ่านของคุณให้เหมาะสม", + "1779872677": "ดาวน์โหลดอีบุ๊ค", "1780442963": "สแกนคิวอาร์โค้ดเพื่อดาวน์โหลด {{ platform }}", "1780770384": "บล็อกนี้จะให้เศษส่วนแบบสุ่มระหว่าง 0.0 ถึง 1.0 แก่คุณ", "1782308283": "กลยุทธ์ด่วน", @@ -1754,7 +1744,6 @@ "1783740125": "อัปโหลดรูปเซลฟี่ของคุณ", "1785298924": "สูตร D’Alembert 1", "1786644593": "รูปแบบไฟล์ที่รองรับ: JPEG, JPG, PNG, PDF, และ GIF เท่านั้น", - "1787135187": "โปรดระบุรหัสไปรษณีย์", "1787492950": "ตัวบ่งชี้ในแท็บแผนภูมินั้นมีเพื่อจุดประสงค์ในการให้ข้อมูลเท่านั้นและอาจมีความแตกต่างกันเล็กน้อยจากตัวบ่งชี้บนพื้นที่ทำงานของ {{platform_name_dbot}}", "1788515547": "<0/>สำหรับข้อมูลเพิ่มเติมเกี่ยวกับการยื่นคำร้องต่อสำนักงานอนุญาโตตุลาการสำหรับบริการทางการเงิน โปรด <1>ดูแนวทางคำแนะนำของพวกเขา", "1788966083": "01-07-1999", @@ -1820,7 +1809,6 @@ "1850031313": "- ต่ำ: ราคาต่ำสุด", "1850132581": "ไม่พบประเทศ", "1850659345": "- เงินผลตอบแทน: เงินที่จะได้รับจากสัญญาการเทรด", - "1850663784": "โปรดส่งหลักฐาน", "1851052337": "โปรดระบุสถานที่เกิด", "1851776924": "อันที่อยู่บน", "1854480511": "แคชเชียร์ถูกล็อค", @@ -1837,7 +1825,6 @@ "1865525612": "ไม่มีธุรกรรมล่าสุด", "1866244589": "จุดเข้านั้นคือจุด Tick อันแรกสำหรับ High/Low Ticks", "1866811212": "ฝากเงินในสกุลเงินท้องถิ่นของคุณผ่านตัวแทนการชำระเงินอิสระที่ได้รับอนุญาตในประเทศของคุณ", - "1866836018": "<0/><1/> หากข้อร้องเรียนของคุณเกี่ยวข้องกับแนวทางปฏิบัติในการประมวลผลข้อมูลของเรา คุณสามารถส่งข้อร้องเรียนอย่างเป็นทางการไปที่หน่วยงานกำกับดูแลในพื้นที่ของคุณ", "1867217564": "ดัชนีต้องเป็นจำนวนเต็มบวก", "1867783237": "High-to-Close", "1869315006": "ดูวิธีที่เราปกป้องเงินของคุณเพื่อปลดล็อกแคชเชียร์", @@ -1848,7 +1835,6 @@ "1871377550": "คุณมีบอทการซื้อขายที่สร้างไว้ล่วงหน้าแล้วมาให้บน Deriv Bot หรือไม่?", "1871664426": "บันทึก", "1873376454": "นี่คือระดับราคาที่คุณเลือกไว้ หากข้ามเส้นระดับราคานี้ไปสัญญาของคุณจะถูกยกเลิก", - "1873838570": "กรุณายืนยันที่อยู่ของคุณ", "1874481756": "ใช้บล็อกนี้เพื่อซื้อสัญญาอันจำเพาะที่คุณต้องการ โดยคุณสามารถจะเพิ่มบล็อกการซื้อได้หลายอัน รวมถึงบล็อกที่มีเงื่อนไขต่างๆ เพื่อที่คุณจะกําหนดเงื่อนไขการซื้อของคุณได้ บล็อกนี้จะใช้ได้จากภายในบล็อกเงื่อนไขการซื้อเท่านั้น", "1874756442": "BVI", "1875702561": "โหลดหรือสร้างบอทของคุณ", @@ -1890,7 +1876,6 @@ "1906213000": "ระบบของเราจะทำให้การซื้อขายโดย Deriv Bot ทั้งหมดที่กำลังดำเนินอยู่นั้นเสร็จสิ้นไป และ Deriv Bot จะไม่ทำการซื้อขายใหม่", "1906639368": "หากนี่เป็นครั้งแรกที่คุณพยายามสร้างรหัสผ่านหรือคุณลืมรหัสผ่านของคุณ โปรดตั้งรหัสผ่านใหม่", "1907423697": "ทำรายได้เพิ่มเติมไปกับ Deriv API", - "1907884620": "เพิ่มบัญชีเกม Deriv จริง", "1908023954": "ขออภัย มีความผิดพลาดเกิดขึ้นขณะที่ประมวลผลคำขอของคุณ", "1908239019": "โปรดดูให้แน่ใจว่า ทุกส่วนของเอกสารอยู่ในรูปภาพ", "1908686066": "คำเตือนการทดสอบความเหมาะสม", @@ -1993,7 +1978,6 @@ "2001222130": "ให้เช็คดูในโฟลเดอร์สแปมหรือโฟลเดอร์เมล์ขยะของคุณ หากไม่มีอยู่ในนั้นก็ให้ลองส่งอีเมล์อีกครั้ง", "2001361785": "1. เริ่มต้นด้วยเงินทุนทรัพย์เริ่มต้น สมมติว่าเป็น 1 USD", "2004052487": "การประมาณถึงอายุการใช้งานของการเทรดของคุณ", - "2004792696": "หากคุณอาศัยอยู่ในสหราชอาณาจักร ให้ไปที่ <0>www.gamstop.co.uk เพื่อทำการกันตนเองจากบริษัทด้านการพนันออน์ไลน์ทั้งหมดที่ได้รับอนุญาตให้ดำเนินการในสหราชอาณาจักร", "2007028410": "ตลาด ประเภทการซื้อขาย ประเภทสัญญา", "2010759971": "อัปโหลดสําเร็จ", "2010866561": "ส่งคืนยอดรวมกำไร/ขาดทุนทั้งหมด", @@ -2073,7 +2057,6 @@ "2085387371": "ต้องเป็นตัวเลข ตัวอักษร และอักขระพิเศษ , '-", "2085602195": "- มูลค่าจุดเข้า: มูลค่าของตัว Tick แรกของสัญญา", "2086048243": "หนังสือรับรองการจดทะเบียน", - "2086742952": "คุณได้เพิ่มบัญชีตราสารสิทธิจริงแล้ว <0/>ทําการฝากเงินได้เลยตอนนี้เพื่อเริ่มการซื้อขาย", "2086792088": "ค่าเส้นระดับราคาเป้าหมายทั้งสองเส้นควรเป็นแบบสัมพัทธ์หรือแบบสัมบูรณ์", "2088735355": "ข้อจำกัดรอบเวลาและการเข้าสู่ระบบของคุณ", "2089087110": "ดัชนีตะกร้า", @@ -2281,7 +2264,6 @@ "-1699820408": "โปรดป้อน {{field_name}} ให้มีจำนวนต่ำกว่า {{max_number}} ตัวอักษร", "-1575567374": "รหัสไปรษณีย์", "-816263501": "อนุญาตให้ใช้ ตัวอักษร ตัวเลข ช่องว่าง และเครื่องหมายขีดกลางเท่านั้น", - "-1497654315": "บัญชีและบริการของเราไม่สามารถใช้ได้สำหรับรหัสไปรษณีย์ Jersey", "-755626951": "กรอกรายละเอียดที่อยู่ของคุณ", "-1024240099": "ที่อยู่", "-1534917661": "เลือกสกุลเงินที่คุณต้องการ", @@ -2348,6 +2330,7 @@ "-1458676679": "คุณควรป้อน 2-50 อักขระ", "-1116008222": "คุณควรกรอกหมายเลข 9-35 ตัว", "-1995979930": "ต้องระบุที่อยู่บรรทัดแรก", + "-703454156": "โปรกรอกรหัสไปรษณีย์ที่น้อยกว่า 20 อักขระ", "-2113555886": "เฉพาะตัวอักษร ตัวเลข ช่องว่าง และยัติภังค์เท่านั้นที่อนุญาต", "-1103497546": "การคืนภาษี", "-700600899": "หลักฐานทางธุรกิจแสดงที่อยู่", @@ -2499,7 +2482,6 @@ "-1545823544": "7 วัน", "-180147209": "คุณจะถูกนำออกจากแต่ละเซสชั่นโดยอัตโนมัติหลังจากกำหนดเวลาดังต่อไปนี้", "-374553538": "บัญชีของคุณจะถูกกันออกจากเว็บไซต์ถึงวันที่ดังต่อไปนี้ (อย่างน้อย 6 เดือนแต่ไม่เกิน 5 ปี)", - "-2121421686": "เพื่อทำการกันตัวเองออกไปจากบริษัทด้านการพนันออน์ไลน์ทั้งหมดซึ่งได้รับใบอนุญาตในสหราชอาณาจักร ให้ไปที่ <0>www.gamstop.co.uk", "-2105708790": "ยอดเงินในบัญชีขั้นสูงสุดของคุณและจำนวนสูงสุดของตำแหน่งที่เปิดอยู่ได้", "-1960600163": "เมื่อยอดเงินในบัญชีของคุณเพิ่มถึงจำนวนนี้ คุณจะไม่สามารถฝากเงินเข้าบัญชีของคุณได้", "-1073845224": "จำนวนตำแหน่งที่เปิดไว้", @@ -2653,6 +2635,7 @@ "-1728732301": "เข้าสู่ระบบได้อย่างง่ายดายด้วย Passkey", "-684009726": "แก้ไข Passkey", "-1140319320": "ตอนนี้บัญชีของคุณได้รับการรักษาความปลอดภัยด้วย Passkey <0/>จัดการ Passkey ของคุณผ่าน <0/>การตั้งค่าบัญชี Deriv ของคุณ", + "-1036903080": "เรากำลังประสบปัญหาชั่วคราวในการประมวลผลคำขอของคุณ โปรดลองอีกครั้งในภายหลัง", "-331060101": "การตั้งค่า Passkey ล้มเหลว", "-713875531": "เปิดใช้งานบลูทูธ", "-80717068": "แอปพลิเคชั่นที่คุณเชื่อมโยงเข้ากับ <0>รหัสผ่าน Deriv: ของคุณ", @@ -2710,6 +2693,10 @@ "-145462920": "Deriv cTrader", "-1210359945": "โอนเงินเข้าบัญชีของคุณ", "-81256466": "คุณต้องมีบัญชี Deriv เพื่อสร้างบัญชี CFD", + "-1926387364": "เราได้ส่งอีบุ๊คของคุณไปยังอีเมล์ของคุณแล้ว โดยคุณก็ยังสามารถดาวน์โหลดมันได้ที่นี่", + "-1057002564": "<0>ขณะนี้เราไม่สามารถอัพเกรดคุณไปใช้ Wallet ได้และเรากำลังพยายามแก้ไขปัญหานี้โดยเร็วที่สุดเท่าที่จะทำได้ กรุณา <1>ลองอีกครั้ง<0>", + "-1424352390": "<0>Wallets<1> — วิธีการแสนชาญฉลาดเพื่อจัดการเงินทุนของคุณ", + "-280236366": "เปิดใช้งานตอนนี้", "-699372497": "ทำการซื้อขายด้วยเลเวอเรจและสเปรดที่แคบเพื่อผลตอบแทนที่ดีขึ้นจากการเทรดที่สำเร็จ <0>เรียนรู้เพิ่มเติม", "-982095728": "รับ", "-1790089996": "ใหม่!", @@ -2733,13 +2720,10 @@ "-2055865877": "กฎระเบียบสำหรับพื้นที่นอกสหภาพยุโรป", "-643108528": "กฎระเบียบสำหรับพื้นที่นอกและในสหภาพยุโรป", "-1002556560": "เราไม่สามารถอัปเกรด Wallet ให้เสร็จสิ้นได้ โปรดลองอีกครั้งในภายหลังหรือติดต่อเราผ่านการแชทสด", - "-280236366": "เปิดใช้งานตอนนี้", "-2051096382": "รับเงินผลตอบแทนหลายแบบผ่านการคาดการณ์อย่างถูกต้องถึงการเคลื่อนไหวของตลาดไปกับ <0>ตราสารสิทธิ หรือได้ประโยชน์จากข้อดีของสัญญาส่วนต่าง CFD โดยไม่เสี่ยงเกินไปกว่าเงินทุนทรัพย์เริ่มต้นของคุณไปกับ <1>Multipliers", "-1638358352": "รับประโยชน์จากสัญญาส่วนต่างหรือ CFD โดยไม่เสี่ยงไปกว่าเงินทุนทรัพย์เริ่มต้นของคุณด้วย <0>Multipliers", "-744999940": "บัญชี Deriv", "-749129977": "เปิดใช้บัญชี Deriv จริง แล้วเริ่มทำการซื้อขายและจัดการเงินของคุณ", - "-1057002564": "<0>ขณะนี้เราไม่สามารถอัพเกรดคุณไปใช้ Wallet ได้และเรากำลังพยายามแก้ไขปัญหานี้โดยเร็วที่สุดเท่าที่จะทำได้ กรุณา <1>ลองอีกครั้ง<0>", - "-1424352390": "<0>Wallets<1> — วิธีการแสนชาญฉลาดเพื่อจัดการเงินทุนของคุณ", "-2146691203": "ทางเลือกของกฎระเบียบ", "-249184528": "คุณสามารถสร้างบัญชีจริงภายใต้กฎระเบียบของสหภาพยุโรปหรือที่ไม่ใช่สหภาพยุโรป คลิกที่ไอคอน <0><0/>เพื่อเรียนรู้เพิ่มเติมเกี่ยวกับบัญชีเหล่านี้", "-1505234170": "เยี่ยมชม Trader's Hub", @@ -2860,7 +2844,6 @@ "-1949883551": "คุณมีเพียงบัญชีเดียวเท่านั้น", "-1149845849": "กลับไปยัง Trader's Hub", "-1232852916": "เรากําลังสลับไปยังบัญชี {{currency}} ของคุณเพื่อดูธุรกรรม", - "-759000391": "เราไม่สามารถตรวจสอบยืนยันข้อมูลของคุณโดยอัตโนมัติได้ ดังนั้นในการเปิดใช้งานฟังก์ชันนี้คุณต้องดำเนินการดังต่อไปนี้:", "-1632668764": "ฉันยอมรับ", "-544232635": "โปรดไปที่หน้าฝากเงินเพื่อสร้างที่อยู่ จากนั้นให้กลับมาที่นี่เพื่อดำเนินการธุรกรรมของคุณต่อไป", "-1161069724": "โปรดคัดลอกที่อยู่คริปโตที่คุณเห็นด้านล่างนี้ เพราะคุณจะต้องใช้มันเพื่อฝากเงินสกุลดิจิทัลของคุณ", @@ -3267,7 +3250,6 @@ "-821418875": "เทรดเดอร์", "-679102561": "รายละเอียดสัญญา", "-430118939": "นโยบายการร้องเรียน", - "-568280383": "บัญชี Deriv Gaming", "-1308346982": "บัญชี Derived", "-579984289": "บัญชี Derived Demo", "-1596515467": "Derived BVI", @@ -3390,7 +3372,6 @@ "-689237734": "ดำเนินการต่อ", "-1642457320": "ศูนย์การช่วยเหลือ", "-1966944392": "สถานะเครือข่าย: {{status}}", - "-594209315": "ดัชนีสังเคราะห์ในสหภาพยุโรปนั้นนำเสนอโดย {{legal_entity_name}} ซึ่งตั้งอยู่ที่ W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta และได้รับใบอนุญาตและถูกกำกับควบคุมโดยองค์กร Malta Gaming Authority (<0>ใบอนุญาตเลขที่ MGA/B2C/ 102/2000) และโดย Revenue Commissioners สำหรับลูกค้าในไอร์แลนด์ (<2>ใบอนุญาตเลขที่ 1010285)", "-181484419": "การซื้อขายอย่างมีความรับผิดชอบ", "-650505513": "เต็มหน้าจอ", "-1823504435": "ดูการแจ้งเตือน", @@ -3400,8 +3381,8 @@ "-1496158755": "ไปที่ Deriv.com", "-1323441180": "ข้าพเจ้าขอยืนยันว่าคำขอเปิดบัญชีกับ Deriv เพื่อทำการซื้อขายผลิตภัณฑ์ OTC ที่ออกและนำเสนอเฉพาะนอกประเทศบราซิลนั้นมาจากความคิดริเริ่มโดยข้าพเจ้าเอง ข้าพเจ้าเข้าใจดีว่า Deriv ไม่ได้ถูกควบคุมดูแลโดย CVM และในการที่ข้าพเจ้าเข้าหา Deriv นั้นข้าพเจ้ามีเจตนาที่จะสร้างความสัมพันธ์กับบริษัทจากต่างประเทศ", "-1396326507": "ขออภัย {{website_name}} ไม่มีให้บริการในประเทศของคุณ", - "-1019903756": "Synthetic", "-288996254": "ไม่มีให้ใช้งาน", + "-1019903756": "Synthetic", "-735306327": "จัดการบัญชี", "-1813972756": "การสร้างบัญชีนั้นถูกหยุดชั่วคราวเป็นเวลา 24 ชั่วโมง", "-366030582": "ขออภัย คุณไม่สามารถสร้างบัญชีได้ในขณะนี้ เนื่องจากที่คุณได้ปฏิเสธคำเตือนเกี่ยวกับความเสี่ยงก่อนหน้านี้ เราจึงจำเป็นต้องให้คุณรอเป็นเวลา 24 ชั่วโมงหลังการพยายามสร้างบัญชีครั้งแรกของคุณก่อนที่จะให้คุณสามารถดำเนินการได้ต่อไป<0/><0/>", @@ -3424,9 +3405,6 @@ "-175638343": "เลือกบัญชีผู้ใช้หรือเพิ่มบัญชีผู้ใช้อันใหม่", "-1768223277": "บัญชีของคุณพร้อมแล้ว", "-1215717784": "<0>คุณได้เปลี่ยนสกุลเงินของคุณเป็น {{currency}} เรียบร้อยแล้ว <0>ทำการฝากเงินเพื่อเริ่มการซื้อขาย", - "-786091297": "เทรดในบัญชีทดลอง", - "-228099749": "กรุณายืนยันตัวตนและที่อยู่ของคุณ", - "-1041852744": "เรากําลังประมวลผลข้อมูลส่วนบุคคลของคุณ", "-1775006840": "ทําการฝากเงินตอนนี้เพื่อเริ่มต้นการซื้อขาย", "-983734304": "เราต้องการหลักฐานยืนยันตัวตนและที่อยู่ของคุณก่อนที่คุณจะเริ่มทำการซื้อขาย", "-917733293": "หากต้องการทำการซื้อขาย โปรดยืนยันว่าคุณอยู่ที่ไหน", @@ -3434,7 +3412,6 @@ "-952649119": "เข้าสู่ระบบ", "-3815578": "ลงทะเบียน", "-1456176427": "กำหนดสกุลเงินสําหรับบัญชีจริงของคุณ", - "-1557011219": "เพิ่มบัญชีตราสารสิทธิ Deriv จริง", "-241733171": "เพิ่มบัญชี Deriv Financial", "-1329687645": "สร้างบัญชีสกุลเงินดิจิทัล", "-1429178373": "สร้างบัญชีใหม่", @@ -3471,14 +3448,10 @@ "-2142491494": "โอเค เข้าใจแล้ว", "-611136817": "โปรดระวังลิงก์ปลอม", "-1342699195": "ยอดรวมกำไร/ขาดทุน:", - "-943710774": "นโยบายการร้องเรียนนี้ซึ่งอาจมีการเปลี่ยนแปลงเป็นครั้งคราว มีผลบังคับใช้กับบัญชีของคุณที่ลงทะเบียนกับ {{legal_entity_name}} ซึ่งมีที่อยู่สำนักงานที่จดทะเบียนไว้ที่ First Floor, Millennium House, Victoria Road, Douglas, Isle of Man, IM2 4RW บริษัทนี้ได้รับใบอนุญาตและถูกกำกับควบคุมตามกฎหมายโดย (1) Gambling Supervision Commission ในเกาะไอล์ออฟแมน (ปัจจุบัน <0>ใบอนุญาต ออกเมื่อวันที่ 31 สิงหาคม ค. ศ. 2017) และ (2) Gambling Commission ในสหราชอาณาจักร (<1>ใบอนุญาตเลขที่ 39172)", - "-255056078": "นโยบายการร้องเรียนนี้ซึ่งอาจมีการเปลี่ยนแปลงเป็นครั้งคราว มีผลบังคับใช้กับบัญชีของคุณที่ลงทะเบียนกับ {{legal_entity_name}} ซึ่งมีที่อยู่สำนักงานที่จดทะเบียนไว้ที่ Level 3, Triq Dun Karm, Birkirkara, BKR 9033 ประเทศมอลตา บริษัทได้รับใบอนุญาตและถูกกำกับควบคุมตามกฎหมายโดย Malta Gaming Authority ในประเทศมอลตาสำหรับผลิตภัณฑ์การพนันเท่านั้น <0>ใบอนุญาตเลขที่ MGA/B2C/102/2000 และสำหรับลูกค้าที่อาศัยอยู่ในสหราชอาณาจักรโดย UK Gambling Commission (เลขที่บัญชี 39495)", "-1941013000": "นโยบายการร้องเรียนนี้ ซึ่งอาจมีการเปลี่ยนแปลงเป็นครั้งคราว มีผลบังคับใช้กับบัญชี (ทั้งเดี่ยวหรือหลายบัญชี) ของคุณที่ลงทะเบียนกับ {{legal_entity_name_svg}}, {{legal_entity_name_fx}} และ {{legal_entity_name_v}}", "-594812204": "นโยบายการร้องเรียนนี้ ซึ่งอาจมีการเปลี่ยนแปลงเป็นครั้งคราว มีผลบังคับใช้กับบัญชี (ทั้งเดี่ยวหรือหลายบัญชี) ของคุณที่ลงทะเบียนกับ {{legal_entity_name_svg}}", "-813256361": "พวกเรามุ่งมั่นตั้งใจที่จะปฏิบัติต่อลูกค้าของเราอย่างเป็นธรรมและให้บริการที่เป็นเลิศแก่ลูกค้าของเรา<0/><1/>เรายินดีที่จะรับฟังความคิดเห็นจากคุณว่า เราจะสามารถปรับปรุงบริการของเราที่มีให้กับคุณได้อย่างไรบ้าง ดังนั้นข้อมูลใดๆ ที่คุณให้มานั้นจะได้รับการรักษาเป็นความลับอย่างเข้มงวด จงมั่นใจได้ว่าจะมีการรับฟังคุณ มีการให้คุณค่า และมีการปฏิบัติอย่างเป็นธรรมเสมอ", "-1622847732": "หากคุณมีข้อสงสัยเกี่ยวกับบัญชีการซื้อขายของคุณด้วย {{legal_entity_name}}คุณสามารถติดต่อเราผ่าน <0>ศูนย์ช่วยเหลือ ของเราหรือโดยการ <1>แชทกับตัวแทนผ่านทาง Live Chat <2/> <3/> เรามุ่งมั่นที่จะแก้ปัญหาของคุณในเวลาที่รวดเร็วที่สุดและขอขอบคุณความอดทนของคุณในการช่วยให้เรามีเวลาในการแก้ไขปัญหา <4/> <5/> เรามุ่งมั่นที่จะให้บริการที่ดีที่สุดที่เป็นไปได้และการสนับสนุนแก่ลูกค้าของเราอย่างไรก็ตามในกรณีที่เราไม่สามารถแก้ไขคำถามของคุณหรือหากคุณรู้สึกว่าคำตอบของเราไม่เป็นที่น่าพอใจ เราต้องการรับทราบจากคุณเรายินดีต้อนรับและสนับสนุนให้คุณส่งคำร้องเรียนอย่างเป็นทางการมาให้เราเพื่อที่เราจะได้ทบทวนข้อกังวลของคุณและดำเนินการแก้ไขปัญหา", - "-1639808836": "หากคุณไม่พอใจกับผลลัพธ์ คุณสามารถส่งต่อข้อร้องเรียนของคุณไปที่ <0>Independent Betting Adjudication Service (IBAS) โดยกรอกแบบฟอร์มขอคำวินิจฉัยของ IBAS โปรดรับทราบว่า IBAS นั้นจะพิจารณาข้อพิพาทที่เกิดจากการทำธุรกรรมเท่านั้น", - "-1505742956": "<0/><1/> คุณสามารถย้ายโอนข้อพิพาทของคุณไปยัง Malta Gaming Authority ผ่านทาง <2>หน่วยสนับสนุนผู้เล่น ได้อีกด้วย", "-1406192787": "หากคุณไม่พอใจกับผลลัพธ์ คุณสามารถส่งข้อร้องเรียนของคุณแจ้งไปยัง <0>คณะกรรมการทางการเงิน", "-1776547326": "<0/><1/>หากคุณอาศัยอยู่ในสหราชอาณาจักรและไม่พอใจกับการตอบสนองของเรา คุณสามารถยกระดับข้อร้องเรียนของคุณแจ้งไปยัง <2>สำนักงานกำกับดูแลกิจการทางการเงินหรือ FOS", "-2115348800": "1. บทนำ", @@ -3561,7 +3534,6 @@ "-1969608084": "Forex และคริปโตเคอเรนซี่", "-800771713": "Labuan Financial Services Authority (ใบอนุญาติเลขที่ MB/18/0024)", "-1497128311": "80 +", - "-1501230046": "0.6 pips", "-1689815930": "คุณจะต้องส่งหลักฐานยืนยันตัวตนและที่อยู่เมื่อถึงเกณฑ์ที่กำหนด", "-1175785439": "Deriv (SVG) LLC (หมายเลขทะเบียนบริษัท 273 LLC 2020)", "-139026353": "ภาพเซลฟี่ของตัวคุณเอง", @@ -4102,7 +4074,6 @@ "-1750896349": "กลยุทธ์ D'Alembert", "-102980621": "กลยุทธ์ออสการ์ กรินด์ (Oscar's Grind) เป็นกลยุทธ์ความก้าวหน้าในเชิงบวกที่มีความเสี่ยงต่ำ โดยมันปรากฏขึ้นครั้งแรกในปี 1965 ในการใช้กลยุทธ์นี้ขนาดของสัญญาของคุณจะเพิ่มขึ้นหลังจากการซื้อขายที่ประสบความสำเร็จ แต่จะสัญญาจะไม่เปลี่ยนแปลงขนาดหลังจากการซื้อขายที่ไม่ประสบความสำเร็จ", "-462715374": "บอทที่ไม่มีชื่อ", - "-538215347": "เงินฝากสุทธิ", "-280147477": "ธุรกรรมทั้งหมด", "-137444201": "ซื้อ", "-130601012": "โปรดเลือกระยะเวลา", diff --git a/packages/translations/src/translations/tr.json b/packages/translations/src/translations/tr.json index 2d2eaa522ed5..bf53e70d328c 100644 --- a/packages/translations/src/translations/tr.json +++ b/packages/translations/src/translations/tr.json @@ -1,5 +1,4 @@ { - "1014140": "Şikayetinizi bildirmek için <0>+447723580049 numaralı telefonu da arayabilirsiniz.", "1485191": "1:1000", "2082741": "ek belge numarası", "2091451": "Deriv Bot - otomatik ticaret ortağınız", @@ -205,12 +204,10 @@ "218441288": "Kimlik kartı numarası", "220014242": "Bilgisayarınızdan bir selfie yükleyin", "220186645": "Metin boş", - "220232017": "demo CFD'ler", "221261209": "Bir Deriv hesabı, CFD hesaplarınıza para yatırmanıza (ve bu hesaplardan para çekmenize) olanak tanır.", "223120514": "Bu örnekte, SMA hattının her noktası son 50 gün için kapalı fiyatların aritmetik ortalamasıdır.", "223607908": "{{underlying_name}} için en son 1000 tikin son basamak istatistikleri", "224650827": "IOT/USD", - "224929714": "Birleşik Krallık ve Man Adası'ndaki sanal etkinliklere dayalı bahisler {{legal_entity_name}} tarafından sunulmaktadır, Millenium House, Level 1, Victoria Road, Douglas IM2 4RW, Man Adası, Man Adası'ndaki Bahis Komisyonu (<1>lisansı görüntüle) ve Büyük Britanya'da Bahis Komisyonu tarafından <0>39172 hesap no altında lisanslanarak ve denetlenmektedir.", "225887649": "Bu blok zorunludur. Yeni strateji oluşturduğunuzda, varsayılan olarak stratejinize eklenir. Kanvasa bu blokun birden fazla kopyasını ekleyemezsiniz.", "227591929": "{{ input_datetime }} {{ dummy }} zaman bilgisine", "227903202": "Deriv fiat ve {{platform_name_mt5}} hesaplarınız arasında farklı para birimlerindeki transferler için %1 transfer ücreti alıyoruz.", @@ -262,7 +259,6 @@ "273728315": "0 veya boş olmamalıdır", "274268819": "Volatility 100 Endeksi", "275116637": "Deriv X", - "276639155": "Lütfen 20 karakterden kısa bir posta kodu girin.", "276770377": "Yeni işlemler için {{to_account}} yetki alanı altında yeni MT5 hesap(lar)ı oluşturulacaktır.", "277469417": "Dışlama süresi beş yıldan uzun olamaz.", "278684544": "sondan # dan alt listesi alın", @@ -271,7 +267,6 @@ "282319001": "Resminizi kontrol edin", "282564053": "Ardından, adres kanıtınıza ihtiyacımız olacak.", "283830551": "Adresiniz profilinizle eşleşmiyor", - "283986166": "Web sitesinde kendini-dışlama yalnızca {{brand_website_name}} hesabınız için geçerlidir ve diğer şirketleri ve web sitelerini içermez.", "284527272": "antimode", "284772879": "Sözleşme", "284809500": "Finansal Demo", @@ -376,7 +371,6 @@ "401339495": "Adresi doğrula", "401345454": "Bunu yapmak için Öğreticiler sekmesine gidin.", "403456289": "SMA için formül:", - "404743411": "Toplam deposit", "406359555": "Sözleşme detayları", "406497323": "Gerekirse aktif sözleşmenizi satın (isteğe bağlı)", "411482865": "{{deriv_account}} hesabı ekle", @@ -468,11 +462,11 @@ "502041595": "Bu blok, size seçilen zaman aralığından belirli bir mum verir.", "505793554": "son harf", "508390614": "Demo Finansal STP", - "510815408": "Yalnızca harfler, sayılar, boşluklar, tireler", "511679687": "Accumulators bir endeksin hareket aralığı hakkında görüş bildirmenize ve bahisinizi sabit bir <0>büyüme oranında katlanarak büyütmenize olanak tanır.", "514031715": "{{ input_list }} listesi boş", "514776243": "{{account_type}} parolanız değiştirildi.", "514948272": "Bağlantıyı Kopyala", + "517631043": "E-kitabınızı gönderdik. İndirmek için e-postanızı kontrol edin.", "517833647": "Volatility 50 (1s) Endeksi", "518955798": "7. Başlangıçta bir kez çalıştır", "519205761": "Artık bu hesapla yeni pozisyonlar açamazsınız.", @@ -499,7 +493,6 @@ "542038694": "{{label}} için sadece harfler, sayılar, boşluk, alt çizgi, ve kısa çizgiye izin verilir.", "542305026": "Ayrıca bir kimlik kanıtı da göndermeniz gerekir.", "543413346": "Bu varlık için açık pozisyonunuz yok. Diğer açık pozisyonları görüntülemek için, Raporlara Git'e tıklayın", - "545476424": "Toplam para çekme işlemleri", "547029855": "Bu özelliği seçerseniz, varlık fiyatı lehinize hareket ederse, işleminizi seçilen bir zaman dilimi içinde iptal edebilirsiniz. Kâr/zarar olmadan bahisinizi geri alırsınız. Bunun için küçük bir ücret alıyoruz. Anlaşma iptali aktif olduğunda Kar Al ve Zarar Durdur devre dışı bırakılır.", "549479175": "Deriv Multipliers", "549799607": "Canlı sohbete git", @@ -628,6 +621,7 @@ "665777772": "XLM/USD", "665872465": "Aşağıdaki örnekte, açılış fiyatı seçilir ve daha sonra \"op\" adlı bir değişkene atanır.", "666724936": "Lütfen geçerli bir kimlik numarası girin.", + "669494711": "1.4 pips", "671630762": "Adresinizin kanıtı olarak yalnızca bu tür belgeleri kabul ediyoruz. Belgenin yeni olması (son {{expiry_in_months}} ay içinde düzenlenmiş) ve adınızı ve adresinizi içermesi gerekir:", "672008428": "ZEC/USD", "673915530": "Yetki alanı ve hukuk seçimi", @@ -693,7 +687,6 @@ "721011817": "- İlk sayıyı ikinci sayının gücüne yükseltin", "723045653": "Bu e-posta adresi ile Deriv hesabınızda oturum açaçaksınız.", "723961296": "Şifreyi yönet", - "724203548": "Şikayetinizi <0>Avrupa Komisyonu'nun Online Anlaşmazlık Çözümü (ODR) platformuna gönderebilirsiniz. Bu, Birleşik Krallık müşterileri için geçerli değildir.", "724526379": "Eğitimlerimizle daha fazla bilgi edinin", "728042840": "Bizimle ticaret yapmaya devam etmek için, lütfen yaşadığınız yeri onaylayın.", "728824018": "İspanyol endeksi", @@ -726,7 +719,6 @@ "755138488": "Sağladığınız belgeyi doğrulayamıyoruz çünkü belgenizde olmaması gereken işaretler veya metinler içeriyor. Lütfen orijinal kimlik belgenizin net bir fotoğrafını veya taramasını sağlayın.", "756152377": "SMA, tüm değer dağılımına eşit ağırlık yerleştirir.", "758003269": "metinden liste yap", - "759783233": "Daha fazla bilgi, danışmanlık ve destek hizmetlerine yardım için lütfen <0>begambleaware.org adresini ziyaret edin.", "760528514": "\"i\" değerinin değiştirilmesinin listedeki orijinal öğenin değerini değiştirmeyeceğini lütfen unutmayın", "761576760": "Ticaret yapmaya başlamak için hesabınıza para yatırın.", "762926186": "Hızlı strateji, Deriv Bot'ta kullanabileceğiniz hazır bir stratejidir. Aralarından seçim yapabileceğiniz 3 hızlı strateji vardır: Martingale, D'Alembert ve Oscar's Grind.", @@ -1105,7 +1097,6 @@ "1128404172": "Geri al", "1129124569": "\"Under\"yı seçerseniz, son tikin son hanesi tahmininizden azsa ödemeyi kazanırsınız.", "1129842439": "Lütfen bir Kar Al tutarı girin.", - "1130744117": "Şikayetinizi 10 iş günü içinde çözmeye çalışacağız. Pozisyonumuz hakkında bir açıklama ile birlikte sizi sonuç hakkında bilgilendireceğiz ve almayı düşündüğümüz her türlü iyileştirici önlemi önereceğiz.", "1130791706": "N", "1133651559": "Canlı sohbet", "1134879544": "Parlama olan bir belge örneği", @@ -1274,7 +1265,6 @@ "1304083330": "kopyala", "1304272843": "Lütfen adres belgenizi ibraz ediniz.", "1304620236": "Kamerayı etkinleştir", - "1304788377": "<0/><1/>şikayetiniz veri işleme uygulamalarımızla ilgiliyse, web sitelerindeki <2>Bilgi ve Veri Koruma Komisyonu'na (Malta) resmi bir şikayette bulunabilir veya Avrupa Birliği bünyesindeki herhangi bir denetim yetkilisine şikayette bulunabilirsiniz.", "1305217290": "Kimlik kartınızın arkasını yükleyin.", "1308625834": "Mum listesini okuyan bloklar için varsayılan zaman aralığını ayarlar.", "1309017029": "Bu özelliği etkinleştirmek, bloklarını diğer robotlara kolayca entegre edilebilen tek bir koleksiyon olarak kaydetmenizi sağlar.", @@ -1512,6 +1502,7 @@ "1531017969": "Eklenen her öğenin metin değerini arada boşluk bırakmadan birleştirerek tek bir metin dizesi oluşturur. Öğe sayısı buna göre eklenebilir.", "1533177906": "Fall", "1534796105": "Değişken değeri alır", + "1537192641": "İsteğiniz işlenemiyor", "1537711064": "Kasiyere erişmeden önce hızlı bir kimlik doğrulaması yapmanız gerekir. Kimlik belgenizi göndermek için lütfen hesap ayarlarınıza gidin.", "1540585098": "Fall", "1541508606": "CFD'leri mi arıyorsunuz? Trader's Hub'a Gidin", @@ -1562,7 +1553,6 @@ "1594147169": "Lütfen tekrar gelin", "1594322503": "Satış yapılabilir", "1595295238": "3. Toplam kar/zararın Zarar durdur eşik tutarından fazla olup olmadığını kontrol etmek için bir mantık bloğu kullanın. Toplam kar/zararın değişkenini soldaki Bloklar menüsünde Analiz > İstatistikler altında bulabilirsiniz. Botunuz, Toplam kar/zararın tutarı Zarar durdur eşiği tutarını aşana kadar yeni sözleşmeler satın almaya devam edecektir.", - "1596378630": "Gerçek bir Oyun hesabı eklediniz.<0/>Şimdi alım satım işlemini başlatmak için bir mevduat yapın.", "1597672660": "Deriv MT5 Şifre", "1598009247": "<0>a.Olaydan 45 güne kadar Mali Komisyona şikayette bulunabilirsiniz.", "1598386296": "İlçe/Şehir gereklidir.", @@ -1730,7 +1720,6 @@ "1763123662": "NIMC makbuzunuzu yükleyin.", "1766212789": "Sunucu bakımı her Pazar 06:00 GMT'de başlar ve 2 saate kadar sürebilir. Bu süre zarfında hizmet kesintisi yaşayabilirsiniz.", "1766993323": "Yalnızca harf, sayı ve alt çizgi kullanılabilir.", - "1767429330": "Add a Derived account", "1768293340": "Sözleşme değeri", "1768861315": "Dakika", "1768918213": "Yalnızca harfler, boşluk, tire, nokta ve kesme işareti kullanılabilir.", @@ -1744,6 +1733,7 @@ "1779144409": "Hesap doğrulaması gerekli", "1779519903": "Geçerli bir sayı olmalıdır.", "1779801832": "Lütfen şifrenizi buna göre güncelleyin.", + "1779872677": "E-kitap indir", "1780442963": "İndirmek için QR kodunu tarayın {{ platform }}.", "1780770384": "Bu blok size 0.0 ile 1.0 arasında rastgele bir fraksiyon verir.", "1782308283": "Hızlı strateji", @@ -1754,7 +1744,6 @@ "1783740125": "Selfie'nizi yükleyin", "1785298924": "D'Alembert formülü 1", "1786644593": "Desteklenen formatlar: Yalnızca JPEG, JPG, PNG, PDF ve GIF", - "1787135187": "Posta kodu gerekli", "1787492950": "Grafik sekmesindeki göstergeler yalnızca gösterge amaçlıdır ve {{platform_name_dbot}} çalışma alanındakilerden biraz farklı olabilir.", "1788515547": "<0/>Finansal Hizmetler Hakem Ofisine şikayette bulunma hakkında daha fazla bilgi için, lütfen <1>rehberliklerini görün..", "1788966083": "01-07-1999", @@ -1820,7 +1809,6 @@ "1850031313": "- Düşük: en düşük fiyat", "1850132581": "Ülke bulunamadı", "1850659345": "-Ödeme: Sözleşmenin ödemesi", - "1850663784": "Kanıtları sunun", "1851052337": "Doğum yeri gereklidir.", "1851776924": "yukarı", "1854480511": "Kasiyer kilitli", @@ -1837,7 +1825,6 @@ "1865525612": "Yeni işlem yok.", "1866244589": "Giriş noktası, High/Low Ticks için ilk tiktir.", "1866811212": "Ülkenizdeki yetkili, bağımsız bir ödeme aracısı aracılığıyla yerel para biriminize para yatırın.", - "1866836018": "<0/><1/>şikayetiniz veri işleme uygulamalarımızla ilgiliyse, yerel denetim yetkilinize resmi bir şikayet sunabilirsiniz.", "1867217564": "Endeks pozitif bir tamsayı olmalıdır", "1867783237": "High-to-Close", "1869315006": "Kasiyerin kilidini açmak için paranızı nasıl koruduğumuzu görün.", @@ -1848,7 +1835,6 @@ "1871377550": "Deriv Bot'ta önceden oluşturulmuş ticaret botları sunuyor musunuz?", "1871664426": "Not", "1873376454": "Bu sizin seçtiğiniz bir fiyat seviyesidir. Bu bariyer aşılırsa, sözleşmeniz feshedilecektir.", - "1873838570": "Lütfen adresinizi doğrulayın", "1874481756": "İstediğiniz sözleşmeyi satın almak için bu bloğu kullanın. Satın alma koşullarınızı tanımlamak için koşullu bloklarla birlikte birden fazla satın alma bloğu ekleyebilirsiniz. Bu blok yalnızca satın alma koşulları bloğunda kullanılabilir.", "1874756442": "BVI", "1875702561": "Botunuzu yükleyin veya oluşturun", @@ -1890,7 +1876,6 @@ "1906213000": "Sistemimiz çalışmakta olan tüm Deriv Bot işlemlerini bitirecek ve Deriv Bot yeni işlem yapmayacaktır.", "1906639368": "Eğer ilk kez parola oluşturmaya çalışıyorsanız veya parolanızı unuttuysanız lütfen parolanızı sıfırlayın.", "1907423697": "Deriv API ile daha fazla kazanın", - "1907884620": "Gerçek bir Deriv Gaming hesabı ekleyin", "1908023954": "Üzgünüz, talebiniz işlenirken bir hata oluştu.", "1908239019": "Tüm belgenin fotoğrafta olduğundan emin olun", "1908686066": "Uygunluk Testi Uyarısı", @@ -1993,7 +1978,6 @@ "2001222130": "Spam veya önemsiz posta klasörünüzü kontrol edin. Eğer orada değilse, e-postayı yeniden gönderin.", "2001361785": "1. İlk bahis miktarı ile başlayın. Diyelim ki 1 USD.", "2004052487": "İşlemlerinizin ömrünü tahmin etme", - "2004792696": "İngiltere'de ikamet ediyorsanız, İngiltere'de lisanslanan tüm çevrimiçi bahis şirketlerinden kendini-dışlama için, <0> www.gamstop.co.uk adresine gidin.", "2007028410": "piyasa, ticaret türü, sözleşme türü", "2010759971": "Yüklemeler başarılı", "2010866561": "Toplam kar/zararı verir", @@ -2073,7 +2057,6 @@ "2085387371": "Sayı, harf ve özel karakter olmalıdır . , ' -", "2085602195": "- Giriş değeri: sözleşmenin ilk tikinin değeri", "2086048243": "Kuruluş belgesi", - "2086742952": "Gerçek bir Options hesabı eklediniz.<0/>İşlem yapmaya başlamak için şimdi para yatırın.", "2086792088": "Her iki engel de rölatif veya absolut olmalıdır", "2088735355": "Oturumunuz ve oturum açma sınırlarınız", "2089087110": "Sepet Endeksi", @@ -2281,7 +2264,6 @@ "-1699820408": "Lütfen {{max_number}} karakter altında bir {{field_name}} girin.", "-1575567374": "posta kodu", "-816263501": "Yalnızca harfler, sayılar, boşluk ve tire kullanılabilir.", - "-1497654315": "Jersey posta kodu için hesaplarımız ve hizmetlerimiz kullanılamıyor.", "-755626951": "Adres bilgilerinizi tamamlayın", "-1024240099": "Adres", "-1534917661": "Tercih ettiğiniz para birimini seçin", @@ -2348,6 +2330,7 @@ "-1458676679": "2-50 karakter girmelisiniz.", "-1116008222": "9-35 sayı girmelisiniz.", "-1995979930": "Adresin ilk satırı gereklidir.", + "-703454156": "Lütfen 20 karakterden kısa bir posta kodu girin.", "-2113555886": "Yalnızca harfler, sayılar, boşluk ve tire kullanılabilir.", "-1103497546": "Vergi iadesi", "-700600899": "Ticari adres belgesi", @@ -2499,7 +2482,6 @@ "-1545823544": "7 gün", "-180147209": "Bu süre sınırından sonra her bir oturumunuz otomatik olarak sonlandırılacaktır.", "-374553538": "Hesabınız bu tarihe kadar web sitesinden dışlanacaktır (en az 6 ay, en fazla 5 yıl).", - "-2121421686": "İngiltere'de lisanslanan tüm online bahis şirketlerinden kendinizi-dışlamak için <0> www.gamstop.co.uk adresine gidin.", "-2105708790": "Maksimum hesap bakiyeniz ve açık pozisyonlarınız", "-1960600163": "Hesap bakiyeniz bu miktara ulaştığında hesabınıza para yatıramayacaksınız.", "-1073845224": "Açık pozisyon(ların) sayısı", @@ -2653,6 +2635,7 @@ "-1728732301": "Passkey tuşları ile zahmetsiz giriş", "-684009726": "Passkey düzenle", "-1140319320": "Hesabınız artık bir şifre ile güvence altına alınmıştır. Deriv hesap ayarlarınızdan <0/>passkey'inizi yönetin<0/>", + "-1036903080": "Talebinizi işleme koyarken geçici bir sorun yaşıyoruz. Lütfen daha sonra tekrar deneyin.", "-331060101": "Passkey kurulumu başarısız oldu", "-713875531": "Bluetooth'u etkinleştirin.", "-80717068": "<0>Deriv şifrenize bağladığınız uygulamalar", @@ -2710,6 +2693,10 @@ "-145462920": "Deriv cTrader", "-1210359945": "Hesaplarınıza para aktarın", "-81256466": "Bir CFD hesabı oluşturmak için bir Deriv hesabına ihtiyacınız var.", + "-1926387364": "E-kitabınızı e-postanıza gönderdik. Ayrıca buradan da indirebilirsiniz.", + "-1057002564": "<0>Şu anda sizi Wallets yükseltemiyoruz ve bunu mümkün olan en kısa sürede düzeltmek için çalışıyoruz. Lütfen <1>tekrar dene<0>.", + "-1424352390": "<0>Wallets<1> — Fonlarınızı yönetmenin daha akıllı bir yolu", + "-280236366": "Şimdi etkinleştir", "-699372497": "Başarılı işlemlerde daha iyi getiri elde etmek için kaldıraç ve sıkı spreadlerle ticaret yapın. <0>Daha fazla bilgi edin", "-982095728": "Edin", "-1790089996": "YENİ!", @@ -2733,13 +2720,10 @@ "-2055865877": "AB dışı yönetmelik", "-643108528": "AB dışı ve AB yönetmeliği", "-1002556560": "Wallet yükseltme işlemini tamamlayamıyoruz. Lütfen daha sonra tekrar deneyin veya canlı sohbet yoluyla bizimle iletişime geçin.", - "-280236366": "Şimdi etkinleştir", "-2051096382": "<0>Opsiyonlar ile piyasa fiyatı hareketlerini doğru bir şekilde tahmin ederek bir dizi ödeme kazanın veya <1>multipliers ilk bahisinizden daha fazlasını riske atmadan CFD'lerin avantajını elde edin.", "-1638358352": "<0>Multipliers ile ilk bahisinizden daha fazlasını riske atmadan CFD'lerin avantajını elde edin.", "-744999940": "Deriv hesabı", "-749129977": "Gerçek bir Deriv hesabı edinin, ticarete başlayın ve paranızı yönetin.", - "-1057002564": "<0>Şu anda sizi Wallets yükseltemiyoruz ve bunu mümkün olan en kısa sürede düzeltmek için çalışıyoruz. Lütfen <1>tekrar dene<0>.", - "-1424352390": "<0>Wallets<1> — Fonlarınızı yönetmenin daha akıllı bir yolu", "-2146691203": "Düzenleme seçimi", "-249184528": "AB veya AB dışı düzenlemeler kapsamında gerçek hesaplar oluşturabilirsiniz. Bu hesaplar hakkında daha fazla bilgi edinmek için <0><0/> simgesine tıklayın.", "-1505234170": "Trader's Hub turu", @@ -2860,7 +2844,6 @@ "-1949883551": "Sadece bir hesabınız var", "-1149845849": "Trader's Hub'a geri dön", "-1232852916": "İşlemi görüntülemek için {{currency}} hesabınıza geçiyoruz.", - "-759000391": "Bilgilerinizi otomatik olarak doğrulayamadık. Bu işlevi etkinleştirmek için aşağıdakileri tamamlamanız gerekir:", "-1632668764": "Kabul ediyorum", "-544232635": "Adres oluşturmak için lütfen Mevduat sayfasına gidin. Ardından işleminize devam etmek için buraya geri dönün.", "-1161069724": "Lütfen aşağıda gördüğünüz kripto adresini kopyalayın. Kriptoparanızı yatırmanız için ihtiyacınız olacaktır.", @@ -3267,7 +3250,6 @@ "-821418875": "Tüccar", "-679102561": "Sözleşme detayları", "-430118939": "Şikayet politikası", - "-568280383": "Deriv Gaming", "-1308346982": "Derived", "-579984289": "Türev Demo", "-1596515467": "Derived BVI", @@ -3390,7 +3372,6 @@ "-689237734": "Devam et", "-1642457320": "Yardım merkezi", "-1966944392": "Ağ durumu: {{status}}", - "-594209315": "AB'deki sentetik endeksler, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, Malta Oyun Kurumu (<0>licence no. MGA/B2C/102/2000) ve İrlanda'daki müşteriler için Gelir Komisyonu Üyeleri (<2>licence no. 1010285) tarafından lisanslanan ve denetlenen {{legal_entity_name}} ile sunulmaktadır.", "-181484419": "Sorumlu ticaret", "-650505513": "Tam ekran", "-1823504435": "Bildirimleri görüntüleyin", @@ -3400,8 +3381,8 @@ "-1496158755": "Deriv.com'a git", "-1323441180": "Sadece Brezilya dışında yayınlanan ve sunulan OTC ürünlerinin ticaretini yapmak için Deriv'de bir hesap açma talebimin tarafımdan başlatıldığını onaylıyorum. Deriv'in CVM tarafından düzenlenmediğini ve Deriv'e başvurarak yabancı bir şirketle ilişki kurmayı amaçladığımı tamamen anlıyorum.", "-1396326507": "Maalesef {{website_name}} ülkenizde kullanılamıyor.", - "-1019903756": "Sentetik", "-288996254": "Kullanılamaz", + "-1019903756": "Sentetik", "-735306327": "Hesapları yönet", "-1813972756": "Hesap oluşturma 24 saat boyunca duraklatıldı", "-366030582": "Üzgünüz, şu anda bir hesap oluşturamıyorsunuz. Önceki risk uyarılarımızı reddettiğiniz için, ilk hesap oluşturma denemenizden sonra devam etmeden önce 24 saat beklemeniz gerekiyor <0/><0/>", @@ -3424,9 +3405,6 @@ "-175638343": "Bir hesap seçin veya yeni bir hesap ekleyin", "-1768223277": "Hesabınız hazır", "-1215717784": "<0>Para biriminizi başarıyla {{currency}} olarak değiştirdiniz.<0>Ticarete başlamak için şimdi para yatırın.", - "-786091297": "Demo ile ticaret yapın", - "-228099749": "Lütfen kimliğinizi ve adresinizi doğrulayın", - "-1041852744": "Kişisel bilgilerinizi işliyoruz", "-1775006840": "Şimdi alım satım işlemini başlatmak için bir para yatırın.", "-983734304": "Ticarete başlamadan önce kimliğinizin ve adresinizin kanıtına ihtiyacımız var.", "-917733293": "Alım satım yapmak için lütfen yaşadığınız yeri onaylayın.", @@ -3434,7 +3412,6 @@ "-952649119": "Giriş yapmak", "-3815578": "Kayıt ol", "-1456176427": "Gerçek hesabınız için bir para birimi ayarlayın", - "-1557011219": "Gerçek bir Deriv Opsiyonlar hesabı ekleyin", "-241733171": "Bir Deriv Finansal hesabı ekleyin", "-1329687645": "Kripto para birimi hesabı oluştur", "-1429178373": "Yeni bir hesap oluştur", @@ -3471,14 +3448,10 @@ "-2142491494": "Tamam, anladım", "-611136817": "Sahte bağlantılara dikkat edin.", "-1342699195": "Toplam kar/zarar:", - "-943710774": "Zaman zaman değişebilen bu şikayet politikası, kayıtlı ofis adresi, First Floor, Millennium House, Victoria Road, Douglas, Isle of Man, IM2 4RW, adresinde bulunan, {{legal_entity_name}} ile kayıtlı hesabınız için geçerlidir ve sırasıyla (1) Man Adası'ndaki Bahis Denetim Komisyonu (31 Ağustos 2017 tarihinde verilen mevcut <0>lisans) ve (2) Birleşik Krallık'taki Bahis Komisyonu (<1>lisans no. 39172) tarafından lisanslanmış ve denetlenmektedir.", - "-255056078": "Zaman zaman değişebilen bu şikayet politikası, kayıtlı ofis adresi W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, adresinde bulunan, yalnızca bahis ürünleri için ve ve İngiltere Bahis Komisyonu tarafından İngiltere'de ikamet eden müşteriler için (hesap numarası 39495), Malta'daki Malta Oyun Kurumu tarafından lisanslanan ve düzenlenen {{legal_entity_name}} adresinde kayıtlı hesaplarınız için geçerlidir, <0>lisans no. MGA/B2C/102/2000.", "-1941013000": "Zaman zaman değişebilen bu şikayet politikası, {{legal_entity_name_svg}}, {{legal_entity_name_fx}}, ve {{legal_entity_name_v}} ile kayıtlı hesap(lar) ınız için geçerlidir.", "-594812204": "Zaman zaman değişebilen bu şikayet politikası, {{legal_entity_name_svg}} ile kayıtlı hesap(lar)ınız için geçerlidir.", "-813256361": "Müşterilerimize adil davranmaya ve onlara mükemmel hizmet sunmaya kararlıyız.<0/><1/>Sizin için hizmetlerimizi nasıl geliştirebileceğimizi sizden duymak isteriz. Sağladığınız herhangi bir bilgi en gizli bir şekilde ele alınacaktır. Tarafımızdan duyulacağınıza, değer verileceğinize, ve her zaman adil davranılacağına emin olabilirsiniz.", "-1622847732": "{{legal_entity_name}} ile ticaret hesabınızla ilgili bir sorunuz varsa, <0>Yardım merkezimiz aracılığıyla veya <1>Canlı Sohbet aracılığıyla bir temsilci ile sohbet ederek bizimle iletişime geçebilirsiniz. <2/><3/> Sorgunuzu mümkün olan en kısa sürede çözmeyi taahhüt ediyoruz ve sorunu çözmek için bize zaman tanıyan sabrınızı takdir ediyoruz. <4/><5/> Müşterilerimize mümkün olan en iyi hizmeti ve desteği sunmaya çalışıyoruz. Ancak, sorgunuzu çözemememiz veya yanıtımızın tatmin edici olmadığını düşünüyorsanız, sizden bu konuda bilgi almak istiyoruz. Endişelerinizi gözden geçirebilmemiz ve bir çözüm için çalışabilmemiz için bize resmi bir şikayette bulunmanızı memnuniyetle karşılıyor ve teşvik ediyoruz.", - "-1639808836": "Sonuçtan memnun değilseniz, şikayetinizi IBAS yargılama formunu doldurarak <0>Bağımsız Bahis Yargılama Hizmetine (IBAS) iletebilirsiniz. IBAS'ın yalnızca işlemlerden kaynaklanan anlaşmazlıklarla ilgilendiğini lütfen unutmayın.", - "-1505742956": "<0/><1/>Anlaşmazlığınızı Malta Oyun Otoritesine <2>Player Destek Birimi aracılığıyla da başvurabilirsiniz.", "-1406192787": "Sonuçtan memnun kalmazsanız, şikayetinizi <0>Finansal Komisyona iletebilirsiniz.", "-1776547326": "<0/><1/> Birleşik Krallık'ta yaşıyorsanız ve verdiğimiz yanıtdan memnun değilseniz, şikayetinizi <2>Finansal Ombudsman Servisine iletebilirsiniz.", "-2115348800": "1. Tanıtım", @@ -3561,7 +3534,6 @@ "-1969608084": "Forex ve Kripto Para Birimleri", "-800771713": "Labuan Financial Services Authority (Lisans no. MB/18/0024)", "-1497128311": "80+", - "-1501230046": "0.6 pips", "-1689815930": "Belirli eşiklere ulaştığınızda kimlik ve adres belgesi sunmanız gerekecektir.", "-1175785439": "Deriv (SVG) LLC (şirket no 273 LLC 2020)", "-139026353": "Kendinizin bir özçekimi.", @@ -4102,7 +4074,6 @@ "-1750896349": "D'Alembert", "-102980621": "Oscar'ın Grind Stratejisi, ilk olarak 1965 yılında ortaya çıkan düşük riskli pozitif ilerleme stratejisidir. Bu stratejiyi kullandığınızda başarılı takaslardan sonra sözleşmenizin boyutu artar ancak başarısız takaslardan sonra değişmeden kalır.", "-462715374": "İsimsiz Bot", - "-538215347": "Net depositler", "-280147477": "Tüm işlemler", "-137444201": "Satın al", "-130601012": "Lütfen süre seçiniz", diff --git a/packages/translations/src/translations/vi.json b/packages/translations/src/translations/vi.json index f053c3254c0a..ba85f05c04e2 100644 --- a/packages/translations/src/translations/vi.json +++ b/packages/translations/src/translations/vi.json @@ -1,5 +1,4 @@ { - "1014140": "Bạn cũng có thể gọi đến số <0>+44 772 358 0049 để khiếu nại.", "1485191": "1:1000", "2082741": "số giấy tờ bổ sung", "2091451": "Deriv Bot - Đối tác giao dịch tự động của bạn", @@ -205,12 +204,10 @@ "218441288": "Số chứng minh thư", "220014242": "Tải một ảnh tự chụp chân dung từ máy tính của bạn", "220186645": "Văn bản trống", - "220232017": "thử nghiệm CFD", "221261209": "Tài khoản Deriv sẽ cho phép bạn nạp tiền (và rút tiền từ) (các) tài khoản CFD của bạn.", "223120514": "Trong ví dụ này, mỗi điểm của đường SMA là trung bình của giá đóng trong 50 ngày qua.", "223607908": "Thống kê chữ số cuối cùng cho 1000 tick mới nhất cho {{underlying_name}}", "224650827": "IOT/USD", - "224929714": "Các đặt cược dựa trên sự kiện ảo ở Vương quốc Anh và Isle of Man được cung cấp bởi {{legal_entity_name}}, Millennium House, Level 1, Victoria Road, Douglas IM2 4RW, Isle of Man, được cấp phép và quản lý tại Vương quốc Anh bởi Ủy ban cờ bạc theo <0> số tài khoản. 39172 và bởi Ủy ban giám sát cờ bạc ở Isle of Man (<1>xem giấy phép).", "225887649": "Khung này là bắt buộc. Nó được mặc định thêm vào chiến lược của bạn khi tạo chiến lược mới. Bạn không thể thêm nhiều bản sao của khung này vào khung tổng.", "227591929": "Tới dấu thời gian {{ input_datetime }} {{ dummy }}", "227903202": "Chúng tôi sẽ tính phí chuyển khoản 1% đối với các giao dịch chuyển tiền bằng các đơn vị tiền tệ khác nhau giữa tài khoản tiền pháp định Deriv và {{platform_name_mt5}} của bạn.", @@ -262,7 +259,6 @@ "273728315": "Không được là 0 hoặc trống", "274268819": "Chỉ số Volatility 100", "275116637": "Deriv X", - "276639155": "Vui lòng nhập mã bưu điện/mã ZIP dưới 20 ký tự.", "276770377": "(Các) tài khoản MT5 mới thuộc thẩm quyền {{to_account}} sẽ được tạo cho các giao dịch mới.", "277469417": "Thời gian tự giới hạn không thể nhiều hơn 5 năm.", "278684544": "lấy danh sách phụ # từ cuối", @@ -271,7 +267,6 @@ "282319001": "Hãy kiểm tra ảnh của bạn", "282564053": "Tiếp theo, chúng tôi sẽ cần giấy tờ xác thực địa chỉ của bạn.", "283830551": "Địa chỉ của bạn không khớp với địa chỉ đăng ký trên hồ sơ", - "283986166": "Tự giới hạn giao dịch trên trang web này chỉ áp dụng cho tài khoản {{brand_website_name}} của bạn, không bao gồm các tài khoản thuộc các công ty hoặc trang web khác.", "284527272": "antimode", "284772879": "Hợp đồng", "284809500": "Tài chính thử nghiệm", @@ -376,7 +371,6 @@ "401339495": "Xác minh địa chỉ", "401345454": "Đi đến thẻ Hướng dẫn để thực hiện.", "403456289": "Công thức của SMA là:", - "404743411": "Tổng số tiền nạp", "406359555": "Thông tin hợp đồng", "406497323": "Bán hợp đồng đang hoạt động của bạn nếu cần (tùy chọn)", "411482865": "Thêm tài khoản {{deriv_account}}", @@ -468,11 +462,11 @@ "502041595": "Khung này cung cấp cho bạn một nến cụ thể từ trong khoảng thời gian đã chọn.", "505793554": "ký tự cuối", "508390614": "Thử nghiệm tài chính STP", - "510815408": "Chỉ dùng chữ cái, số, dấu cách, dấu gạch nối", "511679687": "Accumulators là loại giao dịch quyền chọn cho phép bạn dự đoán phạm vi chuyển động của một chỉ số và tăng số tiền cược ban đầu của bạn theo multiplier với một <0>tốc độ tăng trưởng cố định.", "514031715": "danh sách {{ input_list }} trống", "514776243": "Mật khẩu cho {{account_type}} của bạn đã được đổi.", "514948272": "Sao chép đường dẫn", + "517631043": "Chúng tôi đã gửi e-book của bạn. Kiểm tra email của bạn để tải xuống.", "517833647": "Chỉ số Volatility 50 (1 giây)", "518955798": "7. Chạy một lần tại điểm bắt đầu", "519205761": "Bạn không thể mở vị thế mới với tài khoản này.", @@ -499,7 +493,6 @@ "542038694": "Chỉ được điền chữ cái, số, dấu cách, gạch dưới và dấu gạch nối cho {{label}}.", "542305026": "Bạn cũng cần gửi giấy tờ xác thực danh tính.", "543413346": "Bạn không có vị thế mở nào cho tài sản này. Để xem các vị thế mở khác, hãy nhấp vào Đi đến Báo cáo", - "545476424": "Tổng số tiền rút", "547029855": "Nếu bạn chọn tính năng này, bạn có thể hủy giao dịch trong khung thời gian đã chọn nếu giá tài sản biến động theo hướng không có lợi cho bạn. Bạn sẽ nhận lại khoản tiền đầu tư ban đầu của mình mà không có có lãi hay chịu lỗ. Bạn sẽ bị tính một khoản phí nhỏ khi huỷ giao dịch. Bạn không thể chốt lời hay cắt lỗ khi đang hủy giao dịch.", "549479175": "Deriv Multipliers", "549799607": "Đi tới LiveChat", @@ -628,6 +621,7 @@ "665777772": "XLM/USD", "665872465": "Trong ví dụ dưới đây, giá mở cửa được chọn sau đó được gán cho một biến được gọi là \"op\".", "666724936": "Vui lòng nhập số ID hợp lệ.", + "669494711": "1.4 pip", "671630762": "Chúng tôi chỉ chấp nhận những loại giấy tờ này làm bằng chứng xác thực địa chỉ của bạn. Giấy tờ phải có thời hạn gần đây (được cấp trong {{expiry_in_months}} tháng qua) và bao gồm tên và địa chỉ của bạn:", "672008428": "ZEC/USD", "673915530": "Thẩm quyền và sự chọn lựa luật pháp", @@ -693,7 +687,6 @@ "721011817": "- Tăng số đầu tiên lên luỹ thừa của số thứ hai", "723045653": "Bạn sẽ đăng nhập vào tài khoản Deriv của mình bằng địa chỉ email này.", "723961296": "Quản lý mật khẩu", - "724203548": "Bạn có thể gửi đơn khiếu nại của mình đến nền tảng <0>Giải quyết Tranh chấp Trực tuyến của Ủy ban Châu Âu (European Commission's Online Dispute Resolution - ODR). Điều này không áp dụng cho khách hàng Vương quốc Anh.", "724526379": "Tìm hiểu thêm các hướng dẫn của chúng tôi", "728042840": "Để tiếp tục giao dịch với chúng tôi, vui lòng xác nhận nơi bạn sống.", "728824018": "Chỉ số Tây Ban Nha", @@ -726,7 +719,6 @@ "755138488": "Chúng tôi không thể xác minh giấy tờ bạn đã cung cấp vì giấy tờ có chứa vết đốm hoặc chữ viết không nên có trên tài liệu. Vui lòng cung cấp ảnh rõ ràng hoặc bản scan tài liệu gốc của bạn.", "756152377": "SMA đặt đối trọng bằng với toàn bộ phân phối của các giá trị.", "758003269": "lập danh sách từ văn bản", - "759783233": "Để biết thêm thông tin và trợ giúp từ các dịch vụ tư vấn và hỗ trợ, vui lòng truy cập <0>begambleaware.org.", "760528514": "Vui lòng chú ý rằng việc thay đổi giá trị \"i\" sẽ không thay đổi giá trị của các mặt hàng ban đầu trong danh sách", "761576760": "Nạp tiền vào tài khoản và bắt đầu giao dịch.", "762926186": "Chiến lược nhanh là chiến lược được tạo sẵn mà bạn có thể sử dụng trong Deriv Dbot. Có 3 chiến lược nhanh mà bạn có thể chọn: Martingale, D'Alembert và Oscar's Grind.", @@ -1105,7 +1097,6 @@ "1128404172": "Hoàn tác", "1129124569": "Nếu bạn chọn \"Under\" (Dưới), hợp đồng quyền chọn của bạn sẽ sinh lời nếu chữ số cuối của tick cuối cùng nhỏ hơn dự đoán của bạn.", "1129842439": "Vui lòng nhập vào giá trị chốt lời.", - "1130744117": "Chúng tôi sẽ cố gắng giải quyết khiếu nại của bạn trong vòng 10 ngày làm việc. Chúng tôi sẽ thông báo kết quả cùng với lời giải thích cũng như đề xuất biện pháp khắc phục chúng tôi dự định áp dụng.", "1130791706": "N", "1133651559": "Live chat", "1134879544": "Ví dụ của tài liệu bị lóa", @@ -1274,7 +1265,6 @@ "1304083330": "sao chép", "1304272843": "Vui lòng nộp giấy tờ xác thực địa chỉ của bạn.", "1304620236": "Bật máy ảnh", - "1304788377": "<0/><1/>Nếu khiếu nại của bạn liên quan đến quy trình xử lý dữ liệu của chúng tôi, bạn có thể gửi đơn khiếu nại chính thức đến <2>Ủy ban bảo vệ thông tin và dữ liệu (Information and Data Protection Commissioner Malta) trên trang web của họ hoặc khiếu nại với bất kỳ cơ quan giám sát nào trong Liên minh Châu Âu.", "1305217290": "Tải lên ảnh chụp mặt sau của thẻ căn cước của bạn.", "1308625834": "Đặt khoảng thời gian mặc định cho các \u001dkhung giúp đọc danh sách nến.", "1309017029": "Kích hoạt tính năng này cho phép bạn lưu các khối của mình dưới dạng một bộ sưu tập để có thể dễ dàng tích hợp vào các bot khác.", @@ -1512,6 +1502,7 @@ "1531017969": "Tạo một chuỗi văn bản duy nhất từ ​​việc kết hợp giá trị văn bản của từng mục được đính kèm, không có khoảng trống ở giữa. Số lượng các mục có thể được thêm vào cho phù hợp.", "1533177906": "Fall", "1534796105": "Lấy giá trị biến", + "1537192641": "Không thể xử lý yêu cầu của bạn", "1537711064": "Bạn cần xác minh nhanh danh tính trước khi có thể truy cập Cổng thanh toán. Vui lòng đi tới phần cài đặt tài khoản để gửi giấy tờ xác thực danh tính của bạn.", "1540585098": "Từ chối", "1541508606": "Bạn muốn giao dịch CFD? Hãy đi tới Trader's Hub", @@ -1562,7 +1553,6 @@ "1594147169": "Vui lòng quay lại", "1594322503": "Lựa chọn bán hiện khả dụng", "1595295238": "3. Sử dụng khối logic để kiểm tra xem Tổng lãi/lỗ có lớn hơn Ngưỡng cắt lỗ hay không. Bạn có thể tìm thấy biến Tổng lãi/lỗ trong Phân tích > Thống kê trên Menu Blocks bên trái. Bot của bạn sẽ tiếp tục mua hợp đồng mới cho đến khi Tổng lãi/lỗ vượt quá Ngưỡng cắt lỗ.", - "1596378630": "Bạn đã thêm một tài khoản Gaming thực.<0/>Hãy nạp tiền ngay bây giờ để bắt đầu giao dịch.", "1597672660": "Deriv MT5 Password", "1598009247": "<0>a.Bạn có thể nộp khiếu nại cho Ủy ban tài chính tối đa 45 ngày sau khi xảy ra vụ việc.", "1598386296": "Cần thông tin Thị trấn/Thành phố.", @@ -1730,7 +1720,6 @@ "1763123662": "Tải lên NIMC của bạn.", "1766212789": "Bảo trì máy chủ bắt đầu lúc 06:00 GMT mỗi Chủ Nhật và có thể kéo dài lên tới 2 giờ. Bạn có thể gặp phải sự gián đoạn dịch vụ trong thời gian này.", "1766993323": "Chỉ được dùng các chữ cái, số và dấu gạch dưới.", - "1767429330": "Thêm một tài khoản mô phỏng", "1768293340": "Giá trị hợp đồng", "1768861315": "Phút", "1768918213": "Chỉ được dùng chữ cái, dấu cách, dấu nối, dấu chấm và dấu nháy đơn.", @@ -1744,6 +1733,7 @@ "1779144409": "Yêu cầu xác thực tài khoản", "1779519903": "Nên là một số hợp lệ.", "1779801832": "Vui lòng cập nhật mật khẩu của bạn cho phù hợp.", + "1779872677": "Tải sách điện tử", "1780442963": "Quét mã QR để tải {{ platform }}.", "1780770384": "Khung này cung cấp đến bạn một phân số ngẫu nhiên trong khoảng từ 0,0 đến 1,0.", "1782308283": "Chiến lược nhanh", @@ -1754,7 +1744,6 @@ "1783740125": "Tải lên ảnh chân dung tự chụp", "1785298924": "Công thức D'Alembert 1", "1786644593": "Các định dạng được hỗ trợ: chỉ JPEG, JPG, PNG, PDF và GIF", - "1787135187": "Cần có mã Postal/Zip", "1787492950": "Các chỉ báo trên thẻ biểu đồ chỉ dành cho mục đích chỉ dẫn và có thể khác một chút so với các chỉ báo trên bảng làm việc {{platform_name_dbot}}.", "1788515547": "<0/>Để biết thêm thông tin về việc nộp đơn khiếu nại tới Văn phòng trọng tài cho các dịch vụ tài chính (Office of the Arbiter for Financial Services), vui lòng <1>xem hướng dẫn của họ.", "1788966083": "01-07-1999", @@ -1820,7 +1809,6 @@ "1850031313": "- Thấp: giá thấp nhất", "1850132581": "Không tìm thấy tên quốc gia", "1850659345": "- Mức chi trả: Lợi nhuận từ hợp đồng", - "1850663784": "Gửi giấy tờ", "1851052337": "Cần có nơi sinh.", "1851776924": "cao hơn", "1854480511": "Cổng thanh toán đã bị khóa", @@ -1837,7 +1825,6 @@ "1865525612": "Không có giao dịch nào được thực hiện gần đây.", "1866244589": "Điểm vào là đánh dấu đầu tiên cho High/Low Ticks.", "1866811212": "Nạp tiền theo đơn vị tiền tệ địa phương thông qua đại lý thanh toán độc lập, đã được ủy quyền tại quốc gia của bạn.", - "1866836018": "<0/><1/>Nếu khiếu nại của bạn liên quan đến cách xử lý dữ liệu của chúng tôi, bạn có thể gửi đơn khiếu nại chính thức đến cơ quan giám sát địa phương.", "1867217564": "Chỉ số phải là một số nguyên dương", "1867783237": "High-to-Close", "1869315006": "Hãy xem cách chúng tôi bảo vệ tiền của bạn để mở khóa cổng thanh toán.", @@ -1848,7 +1835,6 @@ "1871377550": "Deriv có cung cấp bot trading dựng sẵn trên Deriv Bot không?", "1871664426": "Lưu ý", "1873376454": "Đây là mức giá mà bạn chọn. Nếu vượt quá mức này, hợp đồng của bạn sẽ tự động bị chấm dứt.", - "1873838570": "Vui lòng xác thực địa chỉ của bạn", "1874481756": "Sử dụng khung này để mua hợp đồng cụ thể mà bạn muốn. Bạn có thể thêm nhiều khung Mua cùng với các khung có điều kiện để xác định điều kiện mua của bạn. \bKhung này chỉ có thể được sử dụng trong khung Điều kiện mua hàng.", "1874756442": "BVI", "1875702561": "Tải hoặc tạo bot của bạn", @@ -1890,7 +1876,6 @@ "1906213000": "Hệ thống của chúng tôi sẽ hoàn tất bất kỳ giao dịch Deriv Bot nào đang chạy, và Deriv Bot sẽ không thực hiện bất kỳ giao dịch mới nào.", "1906639368": "Nếu đây là lần đầu tiên bạn thử tạo một mật khẩu, hoặc bạn đã quên mật khẩu của mình, vui lòng đặt lại mật khẩu.", "1907423697": "Kiếm thêm lợi nhuận với Deriv API", - "1907884620": "Thêm một tài khoản Deriv Gaming thực", "1908023954": "Rất tiếc, đã xảy ra lỗi khi xử lý yêu cầu của bạn.", "1908239019": "Hãy đảm bảo tất cả các giấy tờ đều có mặt trong ảnh", "1908686066": "Cảnh báo Kiểm tra Mức độ phù hợp", @@ -1993,7 +1978,6 @@ "2001222130": "Kiểm tra hòm thư rác của bạn. Nếu không ở đó, hãy thử gửi lại email.", "2001361785": "1. Bắt đầu với số tiền đầu tư ban đầu. Giả sử là 1 USD.", "2004052487": "Ước tính thời gian giao dịch của bạn", - "2004792696": "Nếu bạn là công dân Anh, để tự ngăn mình khỏi giao dịch với tất cả các công ty cờ bạc trực tuyến có giấy phép ở Anh, hãy đi tới <0>www.gamstop.co.uk.", "2007028410": "thị trường, loại giao dịch, loại hợp đồng", "2010759971": "Tải lên thành công", "2010866561": "Trả về tổng lợi nhuận/thua lỗ", @@ -2073,7 +2057,6 @@ "2085387371": "Phải là số, chữ cái và ký tự đặc biệt . , '-", "2085602195": "— Giá trị đầu vào: giá trị của tick đầu tiên của hợp đồng", "2086048243": "Giấy chứng nhận thành lập", - "2086742952": "Bạn đã thêm một tài khoản Quyền chọn thực. <0/>Hãy nạp tiền ngay bây giờ để bắt đầu giao dịch.", "2086792088": "Cả hai ngưỡng cần phải tương đối hoặc tuyệt đối", "2088735355": "Giới hạn phiên và đăng nhập của bạn", "2089087110": "Giỏ chỉ số", @@ -2281,7 +2264,6 @@ "-1699820408": "Vui lòng điền tên {{field_name}} không quá {{max_number}} ký tự.", "-1575567374": "mã số bưu chính/mã ZIP", "-816263501": "Chỉ các chữ cái, số, dấu cách và dấu nối là được phép.", - "-1497654315": "Các tài khoản và dịch vụ của chúng tôi không khả dụng cho mã bưu chính Jersey.", "-755626951": "Hoàn thành thông tin địa chỉ của bạn", "-1024240099": "Địa chỉ", "-1534917661": "Chọn đơn vị tiền tệ ưa thích của bạn", @@ -2348,6 +2330,7 @@ "-1458676679": "Bạn nên nhập từ 2 - 50 ký tự.", "-1116008222": "Bạn nên nhập từ 9 - 35 chữ số.", "-1995979930": "Phải có dòng địa chỉ đầu tiên.", + "-703454156": "Vui lòng nhập mã bưu điện/mã ZIP dưới 20 ký tự.", "-2113555886": "Chỉ được nhập chữ cái, số, dấu cách và dấu nối.", "-1103497546": "Tờ khai thuế", "-700600899": "Giấy tờ xác thực địa chỉ kinh doanh", @@ -2499,7 +2482,6 @@ "-1545823544": "7 ngày", "-180147209": "Bạn sẽ tự động đăng xuất khi đến khoảng thời gian giới hạn này.", "-374553538": "Tài khoản của bạn sẽ không thể giao dịch trên trang web cho đến khoảng thời gian này (ít nhất 6 tháng, tối đa 5 năm).", - "-2121421686": "Để tự ngăn giao dịch khỏi tất cả công ty cờ bạc trực tuyến có giấy phép tại Anh Quốc, đi tới <0>www.gamstop.co.uk.", "-2105708790": "Số dư tài khoản tối đa và các vị thế mở của bạn", "-1960600163": "Khi số dư tài khoản của bạn đạt tới mức này, bạn sẽ không thể nạp thêm tiền vào tài khoản của mình.", "-1073845224": "Số vị thế mở", @@ -2653,6 +2635,7 @@ "-1728732301": "Đăng nhập dễ dàng với các passkeys", "-684009726": "Chỉnh sửa passkey", "-1140319320": "Tài khoản của bạn hiện được bảo mật bằng passkey. <0/> Quản lý passkey của bạn thông qua cài đặt tài<0/>khoản Deriv của bạn.", + "-1036903080": "Chúng tôi đang gặp sự cố tạm thời trong quá trình xử lý yêu cầu của bạn. Vui lòng thử lại sau.", "-331060101": "Thiết lập Passkey không thành công", "-713875531": "Bật bluetooth.", "-80717068": "Ứng dụng bạn đã liên kết với <0>mật khẩu Deriv của bạn:", @@ -2710,6 +2693,10 @@ "-145462920": "Deriv cTrader", "-1210359945": "Chuyển tiền vào tài khoản của bạn", "-81256466": "Bạn cần tài khoản Deriv để tạo tài khoản CFD.", + "-1926387364": "Chúng tôi đã gửi sách điện tử của bạn đến email của bạn. Bạn cũng có thể tải xuống tại đây.", + "-1057002564": "<0>Chúng tôi không thể nâng cấp cho bạn lên Wallet tại thời điểm này và đang làm việc để khắc phục vấn đề này càng sớm càng tốt. Vui lòng <1>thử lại<0>.", + "-1424352390": "<0>Wallets<1> — Một cách thông minh hơn để quản lý tiền của bạn", + "-280236366": "Kích hoạt ngay bây giờ", "-699372497": "Giao dịch với đòn bẩy và chênh lệch giá thấp để có lợi nhuận cao hơn. <0>Tìm hiểu thêm", "-982095728": "Tạo", "-1790089996": "MỚI!", @@ -2733,13 +2720,10 @@ "-2055865877": "Quy định cho những nước không thuộc châu Âu", "-643108528": "Quy định cho những nước thuộc và không thuộc châu Âu", "-1002556560": "Chúng tôi không thể hoàn thành việc nâng cấp Wallet. Vui lòng thử lại sau hoặc liên hệ với chúng tôi qua live chat.", - "-280236366": "Kích hoạt ngay bây giờ", "-2051096382": "Nhận các khoản chi trả bằng cách dự đoán đúng biến động của thị trường với giao dịch <0>quyền chọn, hoặc hưởng những lợi ích của giao dịch CFD mà không phải chịu rủi ro mất nhiều hơn số tiền đầu tư ban đầu với giao dịch <1>multipliers.", "-1638358352": "Hưởng mọi lợi ích của giao dịch CFD mà không phải mạo hiểm nhiều hơn số tiền cược ban đầu của bạn với <0>Multipliers.", "-744999940": "Tài khoản Deriv", "-749129977": "Tạo tài khoản Deriv thực, bắt đầu giao dịch và quản lý tiền của bạn.", - "-1057002564": "<0>Chúng tôi không thể nâng cấp cho bạn lên Wallet tại thời điểm này và đang làm việc để khắc phục vấn đề này càng sớm càng tốt. Vui lòng <1>thử lại<0>.", - "-1424352390": "<0>Wallets<1> — Một cách thông minh hơn để quản lý tiền của bạn", "-2146691203": "Lựa chọn giám sát", "-249184528": "Bạn có thể tạo tài khoản thực theo quy định của châu Âu hoặc theo quy định của các nước không thuộc châu Âu. Nhấp vào biểu tượng <0><0/> để tìm hiểu thêm về các tài khoản này.", "-1505234170": "Khám phá Trader's Hub", @@ -2860,7 +2844,6 @@ "-1949883551": "Bạn chỉ có một tài khoản", "-1149845849": "Quay lại Trader's Hub", "-1232852916": "Chúng tôi đang chuyển sang tài khoản {{currency}} của bạn để xem giao dịch.", - "-759000391": "Chúng tôi không thể xác minh thông tin của bạn tự động. Để bật chức năng này, bạn phải hoàn thành các bước sau:", "-1632668764": "Chấp nhận", "-544232635": "Vui lòng đi tới trang Nạp tiền để tạo một địa chỉ. Sau đó quay lại đây để tiếp tục giao dịch của bạn.", "-1161069724": "Vui lòng sao chép địa chỉ tiền điện tử bạn thấy bên dưới. Bạn sẽ cần nó để nạp tiền điện tử.", @@ -3267,7 +3250,6 @@ "-821418875": "Trader", "-679102561": "Thông tin hợp đồng", "-430118939": "Chính sách khiếu nại", - "-568280383": "Deriv Gaming", "-1308346982": "Mô phỏng", "-579984289": "Tài khoản mô phỏng thử nghiệm", "-1596515467": "Mô phỏng BVI", @@ -3390,7 +3372,6 @@ "-689237734": "Xử lý", "-1642457320": "Trung tâm trợ giúp", "-1966944392": "Trạng thái mạng: {{status}}", - "-594209315": "Các chỉ số tổng hợp ở Liên minh châu Âu được cung cấp bởi {{legal_entity_name}}, W Business Center, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, do Malta Gaming Authority (<0>giấy phép số MGA/B2C/102/2000) và Revenue Commissioners for clients in Ireland (<2>giấy phép số 1010285) cấp phép và quản lý.", "-181484419": "Giao dịch có trách nhiệm", "-650505513": "Toàn màn hình", "-1823504435": "Xem thông báo", @@ -3400,8 +3381,8 @@ "-1496158755": "Đi tới Deriv.com", "-1323441180": "Tôi xác nhận rằng yêu cầu mở tài khoản của tôi với Deriv để giao dịch các sản phẩm OTC được phát hành và cung cấp độc quyền bên ngoài Brazil là do tôi thực hiện. Tôi hoàn toàn hiểu rằng Deriv không bị quản lý bởi CVM và thông qua Deriv, tôi dự định thiết lập quan hệ với một công ty nước ngoài.", "-1396326507": "Rất tiếc, {{website_name}} không khả dụng ở quốc gia của bạn.", - "-1019903756": "Tổng hợp", "-288996254": "Không khả dụng", + "-1019903756": "Tổng hợp", "-735306327": "Quản lý tài khoản", "-1813972756": "Tạm dừng tạo tài khoản trong 24 giờ", "-366030582": "Rất tiếc, bạn không thể tạo tài khoản tại thời điểm này. Vì bạn đã từ chối các cảnh báo về rủi ro trước đây của chúng tôi, chúng tôi cần bạn đợi 24 tiếng từ lần nỗ lực tạo tài khoản đầu tiên trước khi bạn có thể tiếp tục.<0/><0/>", @@ -3424,9 +3405,6 @@ "-175638343": "Chọn một tài khoản hoặc thêm một tài khoản mới", "-1768223277": "Tài khoản của bạn đã sẵn sàng", "-1215717784": "<0>Bạn đã đổi thành công đơn vị tiền tệ sang {{currency}}.<0>Nạp tiền ngay để bắt đầu giao dịch.", - "-786091297": "Giao dịch bằng tài khoản thử nghiệm", - "-228099749": "Vui lòng xác thực danh tính và địa chỉ của bạn", - "-1041852744": "Chúng tôi đang xử lý thông tin cá nhân của bạn", "-1775006840": "Nạp tiền ngay để bắt đầu giao dịch.", "-983734304": "Chúng tôi cần giấy tờ xác thực danh tính và địa chỉ của bạn để mở khóa giao dịch cho bạn.", "-917733293": "Để tiếp tục giao dịch, vui lòng xác nhận nơi bạn sống.", @@ -3434,7 +3412,6 @@ "-952649119": "Đăng nhập", "-3815578": "Đăng kí", "-1456176427": "Chọn đơn vị tiền tệ cho tài khoản thực của bạn", - "-1557011219": "Thêm một tài khoản quyền chọn Deriv thực", "-241733171": "Thêm một tài khoản tài chính Deriv", "-1329687645": "Tạo một tài khoản tiền điện tử", "-1429178373": "Tạo một tài khoản mới", @@ -3471,14 +3448,10 @@ "-2142491494": "Được, tôi đã hiểu", "-611136817": "Hãy cẩn thận với các đường liên kết giả mạo.", "-1342699195": "Tổng lời/lỗ:", - "-943710774": "Chính sách khiếu nại này, có thể thay đổi theo thời gian, áp dụng cho tài khoản của bạn đã đăng ký với {{legal_entity_name}}, có địa chỉ văn phòng đăng ký tại First Floor, Millennium House, Victoria Road, Douglas, Isle of Man, IM2 4RW, được cấp phép và giám sát bởi (1) Gambling Supervision Commission ở Isle of Man (<0>giấy phép hiện tại được cấp vào ngày 31 tháng 8 năm 2017) và (2) Gambling Commission ở Vương quốc Anh (<1>giấy phép số 39172).", - "-255056078": "Chính sách khiếu nại này, có thể thay đổi theo thời gian, áp dụng cho (các) tài khoản của bạn đã đăng ký với {{legal_entity_name}}, có địa chỉ văn phòng đăng ký tại W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033, Malta, được cấp phép và quản lý bởi Malta Gaming Authority ở Malta chỉ dành cho các sản phẩm cá cược, <0>giấy phép số MGA/B2C/102/2000 và dành cho khách hàng cư trú tại Vương quốc Anh bởi UK Gambling Commission (tài khoản số 39495).", "-1941013000": "Chính sách khiếu nại này có thể thay đổi theo thời gian, áp dụng cho (các) tài khoản của bạn đã đăng ký với {{legal_entity_name_svg}}, {{legal_entity_name_fx}}, và {{legal_entity_name_v}}.", "-594812204": "Chính sách khiếu nại này, có thể thay đổi theo thời gian, áp dụng cho (các) tài khoản của bạn đã đăng ký với {{legal_entity_name_svg}}.", "-813256361": "Chúng tôi cam kết đối xử với khách hàng một cách công bằng và cung cấp những dịch vụ chuyên nghiệp nhất. <0/> <1/>Chúng tôi rất muốn nghe phản hồi của bạn về cách nâng cao dịch vụ của chúng tôi. Bất kỳ thông tin nào bạn cung cấp sẽ được xử lý bảo mật nghiêm ngặt nhất. Hãy yên tâm rằng bạn sẽ được lắng nghe, trân trọng và luôn được đối xử công bằng.", "-1622847732": "Nếu bạn có thắc mắc liên quan đến tài khoản giao dịch của bạn với {{legal_entity_name}}, bạn có thể liên hệ với chúng tôi thông qua <0>Trung tâm trợ giúp hoặc qua <1>Live Chat.<2/> <3/> Chúng tôi cam kết giải quyết thắc mắc của bạn trong thời gian nhanh nhất có thể và cảm ơn sự kiên nhẫn của bạn khi cho chúng tôi thời gian để giải quyết vấn đề. <4/><5/>Chúng tôi luôn cố gắng để mang đến dịch vụ và hỗ trợ tốt nhất có thể cho khách hàng. Tuy nhiên, trong trường hợp chúng tôi không thể giải quyết thắc mắc của bạn hoặc nếu bạn cảm thấy không hài lòng với phản hồi của chúng tôi, chúng tôi muốn nghe thêm từ bạn. Chúng tôi hoan nghênh và khuyến khích bạn gửi đơn khiếu nại chính thức cho chúng tôi để chúng tôi có thể đánh giá vấn đề và đưa ra giải pháp.", - "-1639808836": "Nếu bạn không hài lòng với kết quả, bạn có thể gửi đơn khiếu nại của mình tới <0>Independent Betting Adjudication Service (IBAS) bằng cách điền vào biểu mẫu phân xử IBAS. Xin lưu ý rằng IBAS chỉ giải quyết các tranh chấp phát sinh từ giao dịch.", - "-1505742956": "<0/><1/>Bạn cũng có thể chuyển tranh chấp của mình đến Malta Gaming Authority thông qua <2>Đơn vị hỗ trợ người chơi.", "-1406192787": "Nếu bạn không hài lòng với kết quả, bạn có thể chuyển đơn khiếu nại của mình lên <0>Financial Commission.", "-1776547326": "<0/><1/>Nếu bạn cư trú ở Vương quốc Anh và không hài lòng với phản hồi của chúng tôi, bạn có thể chuyển đơn khiếu nại của mình đến <2>Financial Ombudsman Service.", "-2115348800": "1. Giới thiệu", @@ -3561,7 +3534,6 @@ "-1969608084": "Forex và tiền điện tử", "-800771713": "Labuan Financial Services Authority (giấy phép số MB/18/0024)", "-1497128311": "80+", - "-1501230046": "0,6 pip", "-1689815930": "Bạn sẽ cần phải nộp giấy tờ xác thực danh tính và địa chỉ khi bạn đạt đến một mức nhất định.", "-1175785439": "Deriv (SVG) LLC (công ty số 273 LLC 2020)", "-139026353": "Một bức ảnh chân dung tự chụp của bạn.", @@ -4102,7 +4074,6 @@ "-1750896349": "D'Alembert", "-102980621": "Chiến lược Oscar's Grind là một chiến lược tăng trưởng tích cực có rủi ro thấp, xuất hiện lần đầu tiên vào năm 1965. Bằng cách sử dụng chiến lược này, quy mô hợp đồng của bạn sẽ tăng sau khi giao dịch thành công, nhưng vẫn không thay đổi sau khi giao dịch không thành công.", "-462715374": "Bot chưa có tên", - "-538215347": "Tiền nạp ròng", "-280147477": "Tất cả giao dịch", "-137444201": "Mua", "-130601012": "Vui lòng chọn thời lượng", diff --git a/packages/translations/src/translations/zh_cn.json b/packages/translations/src/translations/zh_cn.json index d38cb457acb6..b201f25d0cb8 100644 --- a/packages/translations/src/translations/zh_cn.json +++ b/packages/translations/src/translations/zh_cn.json @@ -1,5 +1,4 @@ { - "1014140": "也可以致电 <0>+447723580049 提出投诉。", "1485191": "1:1000", "2082741": "附加文件号码", "2091451": "Deriv 机器人 - 自动交易伙伴", @@ -205,12 +204,10 @@ "218441288": "身份证号码", "220014242": "从电脑上传自拍照片", "220186645": "文本为空", - "220232017": "演示差价合约", "221261209": "Deriv 账户允许为差价合约账户注资(和提款)。", "223120514": "此例子中,简单移动平均线(SMA)的每一点是前50天收盘价的算术平均数。", "223607908": "{{underlying_name}} 最新1000 跳点的最后统计数字", "224650827": "IOT/美元", - "224929714": "英国和马恩岛基于虚拟事件的博彩由{{legal_entity_name}} 提供,地址为:Millennium House, Level 1, Victoria Road, Douglas IM2 4RW, Isle of Man,已经在英国由博彩委员会通过<0>账号39172及由马恩岛博彩监管委员会授予牌照和监管 (<1> 查看牌照)。", "225887649": "此程序块是强制性的。当您创建新策略时它已默认加入策略中。您不能在画布中加入超过一个程序块副本。", "227591929": "至时间戳 {{ input_datetime }} {{ dummy }}", "227903202": "Deriv 法定货币和 {{platform_name_mt5}} 账户之间的不同货币转账,我们将收取 1% 转账费。", @@ -262,7 +259,6 @@ "273728315": "不可为0或为空", "274268819": "Volatility 100 指数", "275116637": "Deriv X", - "276639155": "请输入少于 20 个字符的邮政编码 。", "276770377": "将为新交易创建 {{to_account}} 管辖下的新 MT5 账户。", "277469417": "禁止时间不能超过五年。", "278684544": "从 # 从尾端获取子列表", @@ -271,7 +267,6 @@ "282319001": "查看图像", "282564053": "接下来,需要地址证明.", "283830551": "地址与个人资料不符", - "283986166": "网站上的自我禁止功能仅适用于 {{brand_website_name}} 账户, 不包括其他公司或网站。", "284527272": "反众数", "284772879": "合约", "284809500": "金融演示", @@ -376,7 +371,6 @@ "401339495": "地址验证", "401345454": "前往 “教程” 选项卡操作。", "403456289": "简单移动平均线的公式是:", - "404743411": "存款总额", "406359555": "合约细节", "406497323": "如需要,卖出有效合约(可选)", "411482865": "添加 {{deriv_account}} 账户", @@ -468,11 +462,11 @@ "502041595": "此程序块提供选定时间间隔内的特定烛形线。", "505793554": "最后一个字母", "508390614": "演示金融 STP", - "510815408": "仅字母、数字、空格、连字符", "511679687": "Accumulators 允许对指数的运动范围发表看法,并以固定的<0>增长率使投注额成倍增长。", "514031715": "列表 {{ input_list }} 为空", "514776243": "{{account_type}} 密码已被更改。", "514948272": "复制链接", + "517631043": "已经发送电子书给您。请查看电子邮件以便下载。", "517833647": "Volatility 50 (1s) 指数", "518955798": "7. 开机时运行", "519205761": "不能再用此账户开设新仓位。", @@ -499,7 +493,6 @@ "542038694": "{{label}} 只允许字母、数字、空格、下划线和连字符。", "542305026": "您还必须提交身份证明。", "543413346": "此资产您没有持仓头寸。点击“前往报表”查看其他持仓头寸", - "545476424": "提款总额", "547029855": "如果选择此功能,当资产价格变动对您不利时,可以在选定的时间内取消交易。将在没有盈利/亏损的情况下收回投注金。我们为此收取少量费用。当交易取消功能激活后,止盈和止损将失效。", "549479175": "Deriv Multipliers", "549799607": "前往 LiveChat", @@ -628,6 +621,7 @@ "665777772": "恒星币/美元", "665872465": "下例中,先选定开盘价,然后分配予称为\"op\"的变量。", "666724936": "请输入有效的身份证号码。", + "669494711": "1.4 点", "671630762": "只接受这些类型的文件作为地址证明。文件必须是最近的(在过去 {{expiry_in_months}} 个月内签发),并包含姓名和地址:", "672008428": "大零币/美元", "673915530": "管辖和法律规定", @@ -693,7 +687,6 @@ "721011817": "- 将首个数字作为第二数字的次方", "723045653": "您将使用此电子邮件地址登录 Deriv 账户。", "723961296": "管理密码", - "724203548": "您可以将投诉提呈到<0>欧洲委员会的在线争议解决(ODR)平台。英国客户不适用。", "724526379": "通过教程了解更多信息", "728042840": "要继续与我们交易,请确认居住地。", "728824018": "西班牙指数", @@ -726,7 +719,6 @@ "755138488": "无法验证提供的文件,因为它包含不应出现在文件上的标记或文本。请提供清晰的照片或原始身份证件的扫描件。", "756152377": "SMA对整个数值分配提供等重。", "758003269": "从文本制作列表", - "759783233": "有关咨询和支持服务的更多信息和帮助,请访问<0> begambleaware.org 。", "760528514": "请注意,更改\"i\"值不会改变列表内原来项目的值", "761576760": "存款入账户并开始交易。", "762926186": "快速策略是可以在 Deriv 机器人使用的现成策略。有3种快速策略供选择:Martingale、D'Alembert 和 Oscar's Grind。", @@ -1105,7 +1097,6 @@ "1128404172": "撤消", "1129124569": "如果选择“Under”期权,只要最新价格的最后一个数字小于预测,将获得赔付。", "1129842439": "请输入止盈金额。", - "1130744117": "将尝试在10个工作日内解决投诉。会把结果通知您,并说明我们的立场,也会提出我们打算采取的任何补救措施。", "1130791706": "否", "1133651559": "实时聊天", "1134879544": "带有眩光的文档示例", @@ -1274,7 +1265,6 @@ "1304083330": "复制", "1304272843": "请提交地址证明。", "1304620236": "启用相机", - "1304788377": "<0/><1/>如果投诉与数据处理实践有关,可以向<2>信息和数据保护专员(马耳他)的网站正式提交投诉,或向欧盟的任何监管机构提出投诉。", "1305217290": "上传身份证背面。", "1308625834": "设置读取烛线列表程序块的默认时间间隔。", "1309017029": "启用此功能后,您可以将程序块保存为能够轻松与其他机器人集成的集合。", @@ -1512,6 +1502,7 @@ "1531017969": "将每个附加项目的文本值合并,使其间没有空格,以创建单个文本字符串。项目数可以按需添加。", "1533177906": "Fall", "1534796105": "取得变量值", + "1537192641": "无法处理请求", "1537711064": "您必须先进行快速身份验证,然后才能访问收银台。请前往账户设置提交身份证明。", "1540585098": "拒绝", "1541508606": "正在寻找差价合约?前往 Trader's Hub", @@ -1562,7 +1553,6 @@ "1594147169": "请在下述时间过后返回此处", "1594322503": "可卖出", "1595295238": "3. 使用逻辑程序块检查总盈/亏是否大于止损阈值。可以在左侧程序块菜单分析 > 统计下找到总盈/亏变量。机器人将继续购买新合约,直到总盈/亏超过止损阈值。", - "1596378630": "您已添加了真实博彩账户。<0/>请立刻存款,开始交易。", "1597672660": "Deriv MT5 密码", "1598009247": "<0>a.您可以在事件发生后45天内向金融委员会提出投诉。", "1598386296": "市/县/镇为必填项。", @@ -1730,7 +1720,6 @@ "1763123662": "上传 NIMC 单据。", "1766212789": "服务器维护从每个星期日的格林尼治标准时间06:00开始,可能需要2个小时。此期间内服务可能会中断。", "1766993323": "只允许字母、数字和下划线。", - "1767429330": "添加衍生账户", "1768293340": "合约值", "1768861315": "分钟", "1768918213": "只允许字母、空格、连字符、句号和省略号。", @@ -1744,6 +1733,7 @@ "1779144409": "需要账户验证", "1779519903": "必须是有效号码。", "1779801832": "请相应地更新密码。", + "1779872677": "下载电子书", "1780442963": "扫描二维码下载{{ platform }}。", "1780770384": "此程序块提供0.0 至 1.0范围内的随机分数.", "1782308283": "快速策略", @@ -1754,7 +1744,6 @@ "1783740125": "上传自拍照", "1785298924": "D'Alembert 公式 1", "1786644593": "支持的格式:仅限 JPEG、JPG、PNG、PDF 和 GIF", - "1787135187": "邮政编码为必填项", "1787492950": "图表选项卡上的指标仅供指示用途,可能与 {{platform_name_dbot}} 工作区上的指标略有不同。", "1788515547": "<0/>有关向金融服务仲裁办公室提交投诉的更多信息,请<1>参阅他们的指南。", "1788966083": "01-07-1999", @@ -1820,7 +1809,6 @@ "1850031313": "- 低: 最低价", "1850132581": "未找到国名", "1850659345": "- 赔付: 合约的赔付额", - "1850663784": "提交证明", "1851052337": "出生地为必填项.", "1851776924": "上部", "1854480511": "收银台已锁定", @@ -1837,7 +1825,6 @@ "1865525612": "近期无交易。", "1866244589": "入市现价是 High/Low Ticks 的第一个跳动点。", "1866811212": "通过您所在国家/地区的授权独立付款代理以当地的货币存款。", - "1866836018": "<0/> <1/>如果投诉与数据处理惯例有关,则可以向当地监管机构提出正式投诉。", "1867217564": "指标必须是正整数", "1867783237": "High-to-Close", "1869315006": "了解我们如何保护您的资金以解锁收银台。", @@ -1848,7 +1835,6 @@ "1871377550": "Deriv 机器人是否提供预建的交易机器人?", "1871664426": "附注", "1873376454": "这是选择的价格水平。如果突破此障碍,合约将被终止。", - "1873838570": "请验证地址", "1874481756": "用此程序块购入所需的特定合约。可一并添加多个购入程序块与条件程序块以定义购入条件。此程序块只能在购入条件程序块内使用。", "1874756442": "BVI", "1875702561": "加载或构建机器人", @@ -1890,7 +1876,6 @@ "1906213000": "系统将完成所有正在运行的 Deriv 机器人交易,且 Deriv 机器人将不会进行任何新交易。", "1906639368": "如这是您首次尝试创建密码或您已忘了密码,请重置。", "1907423697": "利用 Deriv API 赚取更多收入", - "1907884620": "添加真实 Deriv 博彩账户", "1908023954": "对不起,处理请求时发生错误。", "1908239019": "确保所有文档都在照片中", "1908686066": "合适性测试警告", @@ -1993,7 +1978,6 @@ "2001222130": "查看垃圾或广告文件夹。如还是没看到,请试试重新发送邮件。", "2001361785": "1. 以初始投注额开始。比方说 1 美元。", "2004052487": "估计交易期限", - "2004792696": "如您是英国居民,并要自我禁止在所有英国注册的在线博彩公司交易, 请转到 <0>www.gamstop.co.uk。", "2007028410": "市场、交易类型、合约类型", "2010759971": "上传成功", "2010866561": "返回总利润/亏损", @@ -2073,7 +2057,6 @@ "2085387371": "必须是数字、字母和特殊字符 . , ' -", "2085602195": "- 入市数值:合约第一个跳动点的数值", "2086048243": "公司注册证书", - "2086742952": "您已添加了真实期权账户。<0/>请立刻存款,开始交易。", "2086792088": "两个障碍必须是相对的或绝对的", "2088735355": "时间段和登录限制", "2089087110": "篮子指数", @@ -2281,7 +2264,6 @@ "-1699820408": "请输入少于 {{{max_number}} 个字符的 {field_name}} 。", "-1575567374": "邮政编码", "-816263501": "只允许字母、数字、空格和连字符。", - "-1497654315": "泽西邮政编码区的用户不可使用账户和服务.", "-755626951": "完成地址资料", "-1024240099": "地址", "-1534917661": "选择首选货币", @@ -2348,6 +2330,7 @@ "-1458676679": "您必须输入2-50个字符。", "-1116008222": "必须输入 9-35 个数字。", "-1995979930": "地址第一行为必填项.", + "-703454156": "请输入少于 20 个字符的邮政编码 。", "-2113555886": "只允许字母、数字、空格和连字符。", "-1103497546": "报税", "-700600899": "商业地址证明", @@ -2499,7 +2482,6 @@ "-1545823544": "7天", "-180147209": "在该时间限制到期后您将自动注销每一交易时段。", "-374553538": "在此日期之前(至少6个月,最长5年),账户将被排除在网站之外。", - "-2121421686": "如要自我禁止在所有英国注册的在线博彩公司交易,请转到 <0>www.gamstop.co.uk。", "-2105708790": "最大账户余额和未平仓头寸", "-1960600163": "一旦账户余额达到该金额,将无法将资金存入账户。", "-1073845224": "未平仓头寸数目", @@ -2653,6 +2635,7 @@ "-1728732301": "使用密钥轻松登录", "-684009726": "编辑密钥", "-1140319320": "账户现已使用密钥保护。通过<0/> Deriv 账户设置<0/>管理密钥。", + "-1036903080": "处理请求时遇到了临时问题。请稍后再试。", "-331060101": "密钥设置失败", "-713875531": "启用蓝牙。", "-80717068": "与<0>Deriv 密码链接的应用:", @@ -2710,6 +2693,10 @@ "-145462920": "Deriv cTrader", "-1210359945": "将资金转入账户", "-81256466": "需有 Deriv 账户才能开立差价合约账户。", + "-1926387364": "已经发送电子书到您的电子邮箱。也可以在这里下载。", + "-1057002564": "<0>目前无法将您升级到 Wallets,我们正在努力尽快解决这个问题。请<1>再试一次<0>。", + "-1424352390": "<0>Wallets <1>— 更明智的资金管理方式", + "-280236366": "立即启用", "-699372497": "利用杠杆和低价差进行交易,以在成功交易时获得更高回报。<0>了解更多", "-982095728": "获取", "-1790089996": "新!", @@ -2733,13 +2720,10 @@ "-2055865877": "非欧盟法规", "-643108528": "非欧盟和欧盟法规", "-1002556560": "无法完成 Wallet 升级。请稍后再试,或通过实时聊天联系我们。", - "-280236366": "立即启用", "-2051096382": "使用<0>期权正确预测市场价格走势获得各种赔付,或者使用\n<1>multipliers 交易差价合约获利,而承担风险不超过投注额。", "-1638358352": "使用 <0>Multipliers 交易差价合约获利,而承担的风险不会超过投注额。", "-744999940": "Deriv 账户", "-749129977": "获取真实 Deriv 账户,开始交易并管理资金。", - "-1057002564": "<0>目前无法将您升级到 Wallets,我们正在努力尽快解决这个问题。请<1>再试一次<0>。", - "-1424352390": "<0>Wallets <1>— 更明智的资金管理方式", "-2146691203": "选择法规", "-249184528": "可以根据欧盟或非欧盟法规开立真实账户。点击<0><0/>图标了解有关这些账户的更多信息。", "-1505234170": "Trader's Hub 浏览", @@ -2860,7 +2844,6 @@ "-1949883551": "您只有一个账户", "-1149845849": "返回 Trader's Hub", "-1232852916": "正在转换至{{currency}} 账户以查看交易。", - "-759000391": "无法自动验证信息。要启用此功能,必须完成以下操作:", "-1632668764": "我接受", "-544232635": "请转到“存款”页面以生成地址。然后回到这里继续交易。", "-1161069724": "请复制您在下面看到的加密地址。您将需要它来存入加密货币。", @@ -3267,7 +3250,6 @@ "-821418875": "交易者", "-679102561": "合约细节", "-430118939": "控诉政策", - "-568280383": "Deriv 博彩", "-1308346982": "衍生资产", "-579984289": "衍生品演示", "-1596515467": "衍生资产 BVI", @@ -3390,7 +3372,6 @@ "-689237734": "执行", "-1642457320": "帮助中心", "-1966944392": "网络状态:{{status}}", - "-594209315": "欧盟的综合指数交易由 {{legal_entity_name}} 提供,地址为 W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta,由马耳他博彩局授予牌照和监管(<0>牌照号MGA/B2C/102/2000),及爱尔兰客户由税务局授予牌照和监管 (<2>牌照号: 1010285)。", "-181484419": "负责任交易", "-650505513": "全屏", "-1823504435": "查看通知", @@ -3400,8 +3381,8 @@ "-1496158755": "前往 Deriv.com", "-1323441180": "本人特此确认,在 Deriv 开立账户以交易由巴西境外推出和提供的场外交易产品的请求是由本人提出的。本人完全理解 Deriv 不受 CVM 监管,且通过与 Deriv 接触,本人打算与一家外国公司建立关系。", "-1396326507": "对不起,所在国不可用{{website_name}}。", - "-1019903756": "综合", "-288996254": "不可用", + "-1019903756": "综合", "-735306327": "账户管理", "-1813972756": "账户开立暂停 24 小时", "-366030582": "抱歉,目前无法开立账户。由于您拒绝了之前的风险警告,必须在首次尝试开立账户后等待 24 小时才能继续。<0/><0/>", @@ -3424,9 +3405,6 @@ "-175638343": "选择账户或开立新账户", "-1768223277": "账户已就绪", "-1215717784": "<0>您已成功将币种改成{{currency}}。<0>请立刻存款,开始交易。", - "-786091297": "用演示交易", - "-228099749": "请验证身份和地址", - "-1041852744": "正在处理个人信息", "-1775006840": "立刻存款开始交易.", "-983734304": "开始交易前,需要身份和地址证明。", "-917733293": "要开始交易,请确认居住地。", @@ -3434,7 +3412,6 @@ "-952649119": "登录", "-3815578": "注册", "-1456176427": "为真实账户设置币种", - "-1557011219": "添加真实 Deriv 期权账户", "-241733171": "添加 Deriv 金融账户", "-1329687645": "开立加密货币账户", "-1429178373": "开立新账户", @@ -3471,14 +3448,10 @@ "-2142491494": "好,明白了", "-611136817": "当心虚假链接。", "-1342699195": "总损/益:", - "-943710774": "此投诉政策可能会不时更改,适用于您在 {{legal_entity_name}} 注册的账户,其注册地址为:First Floor, Millennium House, Victoria Road, Douglas, Isle of Man, IM2 4RW,由 (1) 马恩岛博彩监管委员会授予牌照和监管,(当前<0>牌照于2017 年8 月31 日颁发)及(2) 英国博采委员会授予牌照和监管 (<1>牌照编号: 39172)。", - "-255056078": "此投诉政策可能会不时更改,适用于您在 {{legal_entity_name}} 注册的账户,其注册地址为:W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033, Malta,已经由位于马耳他的马耳他博彩局授予牌照并受其监管(仅博彩产品),<0>牌照号MGA/B2C/102/2000),以及居住在英国的客户由英国博彩委员会授予牌照和监管(账号39495)。", "-1941013000": "此投诉政策可能会不时更改,适用于您在 {{legal_entity_name_svg}} 、{{legal_entity_name_fx}} 和 {{legal_entity_name_v}} 注册的账户。", "-594812204": "此投诉政策可能会不时更改,适用于您在 {{legal_entity_name_svg}} 注册的账户。", "-813256361": "我们致力于公平对待客户,并为他们提供优质的服务。<0/> <1/>请向我们提供有关如何改善对您的服务的反馈。您提供的任何信息都将受到最严格的保密。请放心,您将一直得到重视和公正的对待。", "-1622847732": "如果对在 {{legal_entity_name}} 的交易账户有任何疑问,可以通过<0>帮助中心或通过<1>在线聊天与我们的代表聊天。<2/><3/>我们致力于尽快解决您的问题,感谢您耐心等待我们解决问题。<4/><5/>我们努力提供最好的服务和支持顾客。但是,如果我们无法解决您的问题,或者如果不满意我们的答复,请跟我们联系。欢迎并鼓励您提交正式投诉,以便审查您的疑虑并努力解决问题。", - "-1639808836": "如果您对结果不满意,可以通过填写 IBAS 裁决表向<0>独立博彩裁决服务(IBAS)上诉。请注意,IBAS 仅处理因交易引起的争议。", - "-1505742956": "<0/> <1/>还可以通过<2>投注者支持部门将争议提交马耳他博彩管理局。", "-1406192787": "如果您对结果不满意,可以将投诉上报给<0>金融委员会。", "-1776547326": "<0/><1/>如果您在英国居住,并对我们的答复不满意,则可以进一步向<2>金融申诉专员服务提出投诉。", "-2115348800": "1. 简介", @@ -3561,7 +3534,6 @@ "-1969608084": "外汇和加密货币", "-800771713": "纳闽金融服务管理局(许可证号 MB/18/0024)", "-1497128311": "80+", - "-1501230046": "0.6 点", "-1689815930": "达到特定阈值后需要提交身份和地址证明.", "-1175785439": "Deriv (SVG) LLC(公司编号 273 LLC 2020)", "-139026353": "自己的自拍照。", @@ -4102,7 +4074,6 @@ "-1750896349": "达朗贝尔", "-102980621": "奥斯卡研磨 (Oscar's Grind) 策略于1965年首次出现,是低风险的积极进阶策略。使用此策略能让每次成功交易后合约的大小增加,而交易失败后合约大小保持不变 。", "-462715374": "未命名 Bot", - "-538215347": "净存款", "-280147477": "所有交易", "-137444201": "买入", "-130601012": "请选择持续时间", diff --git a/packages/translations/src/translations/zh_tw.json b/packages/translations/src/translations/zh_tw.json index d885cfa46622..1464a4e4ab88 100644 --- a/packages/translations/src/translations/zh_tw.json +++ b/packages/translations/src/translations/zh_tw.json @@ -1,5 +1,4 @@ { - "1014140": "也可以致電 <0>+447723580049 提出投訴。", "1485191": "1:1000", "2082741": "附加文件編號", "2091451": "Deriv 機器人 - 自動交易夥伴", @@ -94,7 +93,7 @@ "111215238": "遠離直射光", "111718006": "結束日期", "111931529": "7天內最大總投注金額", - "112152170": "密鑰已成功移除。若要避免登入提示,請同時從密碼管理員中移除密鑰。 ", + "112152170": "金鑰已成功移除。若要避免登入提示,請同時從密碼管理員中移除金鑰。 ", "113378532": "以太幣/美元", "115032488": "買入價和損益", "116005488": "指標", @@ -205,12 +204,10 @@ "218441288": "身份證號碼", "220014242": "從電腦上傳自拍照片", "220186645": "文字為空", - "220232017": "示範差價合約", "221261209": "Deriv 帳戶允許為差價合約帳戶注資(和提款)。", "223120514": "此例子中,簡單移動平均線(SMA)的每一點是前50天收盤價的算術平均數。", "223607908": "{{underlying_name}} 最新1000跳點之最後統計數字", "224650827": "IOT/美元", - "224929714": "英國和曼島基於虛擬事件的博彩由 {{legal_entity_name}} 提供,地址為:Millennium House, Level 1, Victoria Road, Douglas IM2 4RW, Isle of Man,已經在英國由博彩委員會通過<0>帳號39172及由曼島博彩監管委員會授予執照和監管 (<1> 檢視執照)。", "225887649": "此區塊是強制性的。建立新策略時它已預設加入策略中。不能在畫布中加入超過一個區塊複製。", "227591929": "到時間戳記 {{ input_datetime }} {{ dummy }}", "227903202": "Deriv 法定貨幣和{{platform_name_mt5}} 帳戶之間的不同貨幣轉帳,我們將收取 1% 轉帳費。", @@ -262,7 +259,6 @@ "273728315": "不可為0或為空", "274268819": "Volatility 100 指數", "275116637": "Deriv X", - "276639155": "請輸入少於 20 個字元的郵遞區號 。", "276770377": "將為新交易建立 {{to_account}} 管轄下的新 MT5 帳戶。", "277469417": "禁止時間不能超過五年。", "278684544": "從 # 從尾端取得子清單", @@ -271,7 +267,6 @@ "282319001": "查看圖像", "282564053": "接下來,需要地址證明。", "283830551": "地址與個人資料不符", - "283986166": "網站的自我禁止功能僅適用于 {{brand_website_name}} 帳戶,不包括其他公司或網站。", "284527272": "反眾數", "284772879": "合約", "284809500": "財務示範", @@ -376,7 +371,6 @@ "401339495": "地址驗證", "401345454": "前往教學課程標籤以執行此操作。", "403456289": "簡單移動平均線的公式是:", - "404743411": "存款總額", "406359555": "合約詳情", "406497323": "如需要,賣出有效合約(可選)", "411482865": "新增 {{deriv_account}} 帳戶", @@ -468,11 +462,11 @@ "502041595": "此區塊提供選定時間間隔內的特定燭形線。", "505793554": "最後一個字母", "508390614": "示範金融 STP", - "510815408": "只能包含字母、數字、空格、連字號", "511679687": "Accumulators 允許表達對指數變動範圍的看法,並讓賠付額以固定<0>增長率成倍增長。", "514031715": "清單 {{ input_list }} 為空", "514776243": "{{account_type}} 密碼已被更改。", "514948272": "複製連結", + "517631043": "電子書已經傳送給您。請檢查電子郵件以下載。", "517833647": "Volatility 50 (1s) 指數", "518955798": "7. 開機時運行", "519205761": "無法再使用此帳戶開立新頭寸。", @@ -499,7 +493,6 @@ "542038694": "{{label}} 只允許字母、數位、空格、底線和連字號。", "542305026": "您還需提交身份證明。", "543413346": "此資產您沒有持倉頭寸。點選「前往報表」查看其他持倉頭寸", - "545476424": "提款總額", "547029855": "如果選擇此功能,當資產價格變動對您不利時,可以在選定的時間內取消交易。 將在沒有盈利/虧損的情況下收回投注金。 我們為此收取少量費用。 當交易取消功能啟動後,止盈和止損將失效。", "549479175": "Deriv Multipliers", "549799607": "前往 LiveChat", @@ -544,7 +537,7 @@ "587856857": "想要進一步了解 API 嗎?", "588609216": "重覆瀏覽", "592087722": "就業狀況是必填項.", - "592381383": "密鑰已成功移除", + "592381383": "金鑰已成功移除", "593459109": "嘗試使用其他幣種", "594937260": "衍生資產 - BVI", "595080994": "範例:CR123456789", @@ -628,6 +621,7 @@ "665777772": "恆星幣/美元", "665872465": "下例中,先選定開盤價,然後分配予稱為「op」的變數。", "666724936": "請輸入有效的身份證件號碼。", + "669494711": "1.4 點", "671630762": "只接受這些類型的文件作為地址證明。文件必須是近期的(最近 {{expiry_in_months}} 個月內發出),並包括姓名和地址:", "672008428": "大零幣/美元", "673915530": "管轄和法律規定", @@ -635,7 +629,7 @@ "676159329": "無法轉換至預設帳戶。", "676675313": "Authy", "677918431": "市場: {{ input_market }} > {{ input_submarket }} > {{ input_symbol }}", - "679199080": "為什麼要使用密鑰?", + "679199080": "為什麼要使用金鑰?", "680334348": "需要此區塊以正確轉換舊策略。", "680478881": "提款總限額", "681108680": "{{platform}} 帳戶所需的其他資訊", @@ -670,7 +664,7 @@ "705299518": "接下來,上傳包含照片的護照頁面。", "705697927": "2. 設定偏好的單位。在此範例中,是 2 個單位或 2 美元。", "705821926": "了解此交易類型", - "706448499": "會傳送安全連結以驗證請求。點選確認要刪除密鑰。這可保護帳戶免受未經授權的要求。", + "706448499": "會傳送安全連結以驗證請求。點選確認要刪除金鑰。這可保護帳戶免受未經授權的要求。", "706727320": "二元期權交易頻率", "706755289": "此區塊執行三角函數運算。", "706960383": "如果選擇在合約到期前賣出,我們會提出以這個價格買入合約。這基於幾個因素,如當前的現貨價格、持續時間等。然而,如果剩餘期限低於60秒,我們將不提供合約價值。", @@ -693,7 +687,6 @@ "721011817": "- 將首個數字作為第二數字的次方", "723045653": "您將使用此電子郵件地址登入 Deriv 帳戶。", "723961296": "管理密碼", - "724203548": "您可以將投訴提呈到<0>歐洲委員會的線上爭議解決(ODR)平台。不適用於英國客戶。", "724526379": "通過教學課程了解更多資訊", "728042840": "要繼續交易,請確認居住地。", "728824018": "西班牙指數", @@ -726,7 +719,6 @@ "755138488": "無法驗證提供的文件,因為它包含不應該出現的標記或文字。請提供清晰的照片或身份證明文件的掃描。", "756152377": "SMA 對整個數值分配提供等重。", "758003269": "從文字製作清單", - "759783233": "有關諮詢和支援服務的更多資訊和幫助,請瀏覽<0> begambleaware.org 。", "760528514": "請注意,更改「i」值不會改變清單內原來項目的值", "761576760": "存款入帳戶並開始交易。", "762926186": "快速策略是可以在 Deriv 機器人使用的現成策略。有3種快速策略供選擇:Martingale、D'Alembert 和 Oscar's Grind。", @@ -1105,7 +1097,6 @@ "1128404172": "撤銷", "1129124569": "如果選擇「Under」期權,只要最新價格的最後一個數字小於預測,將獲得賠付。", "1129842439": "請輸入止盈金額。", - "1130744117": "將嘗試在10個工作日內解決投訴。會把結果通知您,並說明我們的立場,也會提出我們打算採取的任何補救措施。", "1130791706": "否", "1133651559": "即時聊天", "1134879544": "帶有眩光的文檔示例", @@ -1221,7 +1212,7 @@ "1247280835": "由於系統維護,加密貨幣收銀台暫時無法使用。數分鐘後一旦維護完成,即可以加密貨幣存取款。", "1248018350": "收入來源", "1248940117": "<0>a.DRC 的決定對我們具有約束力。 DRC 的決定只有在您接受後才對您具有約束力。", - "1250113042": "此裝置不支援密鑰。", + "1250113042": "此裝置不支援金鑰。", "1250495155": "權杖已複製!", "1252669321": "從 Google 雲端硬碟匯入", "1253531007": "已確認", @@ -1274,7 +1265,6 @@ "1304083330": "複製", "1304272843": "請提交地址證明。", "1304620236": "啟用相機", - "1304788377": "<0/><1/>如果投訴與我們的資料處理實踐有關,可以向<2>資訊和資料保護專員(馬爾他)的網站正式提交投訴,或向歐盟的任何監管機構提出投訴。", "1305217290": "上傳身份證背面。", "1308625834": "設定讀取燭線清單區塊的預設時間間隔。", "1309017029": "啟用此功能後,可以將區塊儲存為能夠輕鬆與其他機器人集成的集合。", @@ -1512,6 +1502,7 @@ "1531017969": "將每個附加項目的文字值合併,使其間沒有空格,以建立單個文字字串。項目數可以按需增加。", "1533177906": "Fall", "1534796105": "取得變數值", + "1537192641": "無法處理請求", "1537711064": "必須先快速驗證身份,然後才能存取收銀台。請前往帳戶設定提交身份證明。", "1540585098": "拒絕", "1541508606": "正在尋找差價合約?前往 Trader's Hub", @@ -1521,7 +1512,7 @@ "1544642951": "如果選擇「Only Ups」期權,只要入市現價後的價格持續上漲,將獲得賠付。如果期間內的價格有任何下跌或相等於之前的價格, 將不會獲得賠付。", "1547148381": "該文件太大(最多只允許 8MB)。請上傳另一文件。", "1549098835": "提款總額", - "1549645155": "密鑰已成功移除。若要避免登入提示,請同時從 iCloud 鑰匙圈中移除密鑰。 ", + "1549645155": "金鑰已成功移除。若要避免登入提示,請同時從 iCloud 鑰匙圈中移除金鑰。 ", "1551172020": "澳元籃子", "1551689907": "升級 <0/> <1>{{platform}} {{type}} {{from_account}} 帳戶,增強交易體驗。", "1555345325": "使用者指南", @@ -1562,7 +1553,6 @@ "1594147169": "請在下述時間過後返回此處", "1594322503": "可賣出", "1595295238": "3. 使用邏輯區塊檢查總盈/虧是否大於止損門檻。可以在左側區塊功能表分析 > 統計下找到總盈/虧變數。 機器人將繼續購買新合約,直到總盈/虧超過止損門檻。", - "1596378630": "已新增了真實博彩帳戶。<0/>請立刻存款,開始交易。", "1597672660": "Deriv MT5 密碼", "1598009247": "<0>a.可以在事件發生後 45 天內向金融委員會提出投訴。", "1598386296": "鄉/鎮/市為必填欄位。", @@ -1730,7 +1720,6 @@ "1763123662": "上傳 NIMC 收據。", "1766212789": "伺服器維護從每週日格林尼治標準時間06:00開始,可能需要2個小時。此期間內服務可能會中斷。", "1766993323": "只允許字母、數字和底線。", - "1767429330": "新增衍生帳戶", "1768293340": "合約值", "1768861315": "分鐘", "1768918213": "只允許字母、空格、連字號、句號和所有格號。", @@ -1744,6 +1733,7 @@ "1779144409": "需要帳戶驗證", "1779519903": "必須是有效號碼。", "1779801832": "請相應地更新密碼。", + "1779872677": "下載電子書", "1780442963": "掃描二維碼下載{{ platform }}.", "1780770384": "此區塊提供 0.0 至 1.0 範圍內的隨機分數。", "1782308283": "快速策略", @@ -1754,7 +1744,6 @@ "1783740125": "上傳自拍照", "1785298924": "D’Alembert 公式 1", "1786644593": "支援的格式:僅限 JPEG、JPG、PNG、PDF 和 GIF", - "1787135187": "必須填寫郵遞區號", "1787492950": "圖表標籤上的指標僅供指示用途,可能與 {{platform_name_dbot}} 工作區上的指標略有不同。", "1788515547": "<0/>有關向金融服務仲裁辦公室提交投訴的更多資訊,請<1>參閱他們的指南。", "1788966083": "01-07-1999", @@ -1820,7 +1809,6 @@ "1850031313": "- 低: 最低價", "1850132581": "找不到國家名", "1850659345": "- 賠付: 合約的賠付額", - "1850663784": "提交證明", "1851052337": "出生地為必填項。", "1851776924": "上部", "1854480511": "收銀台已鎖定", @@ -1837,7 +1825,6 @@ "1865525612": "最近沒有交易.", "1866244589": "入市現價是 High/Low Ticks 的第一個跳動點。", "1866811212": "通過所在國家/地區的授權獨立付款代理以當地的貨幣存款。", - "1866836018": "<0/> <1/>如果投訴與我們的資料處理慣例有關,則可以向當地監管機構提出正式投訴。", "1867217564": "指標必須是正整數", "1867783237": "High-to-Close", "1869315006": "了解我們如何保護您的資金以解鎖收銀台。", @@ -1848,7 +1835,6 @@ "1871377550": "Deriv 機器人是否提供預先建立的交易機器人?", "1871664426": "備註", "1873376454": "這是選擇的價格水平。 如果突破此障礙,合約將被終止。", - "1873838570": "請驗證地址", "1874481756": "用此區塊購入所需的特定合約。可一併增加多個購入區塊與條件區塊以定義購入條件。此區塊只能在購入條件區塊內使用。", "1874756442": "BVI", "1875702561": "載入或建立機器人", @@ -1890,7 +1876,6 @@ "1906213000": "系統將完成所有正在運行的 Deriv 機器人交易,且 Deriv 機器人將不會進行任何新交易。", "1906639368": "如這是首次嘗試建立密碼或已忘了密碼,請重設。", "1907423697": "透過 Deriv API 賺取更多收入", - "1907884620": "新增真實 Deriv 博彩帳戶", "1908023954": "對不起,處理請求時發生錯誤。", "1908239019": "確保所有文檔都在照片中", "1908686066": "合適性測試警告", @@ -1993,7 +1978,6 @@ "2001222130": "查看垃圾或廣告資料夾。如還是沒看到,請試試重新傳送郵件。", "2001361785": "1. 以初始投注額開始。假設 1 美元。", "2004052487": "估計交易期限", - "2004792696": "如是英國居民,並要自我禁止在所有英國註冊的線上博彩公司交易,請轉到 <0>www.gamstop.co.uk。", "2007028410": "市場、交易類型、合約類型", "2010759971": "上傳成功", "2010866561": "返回總利潤/虧損", @@ -2060,7 +2044,7 @@ "2070752475": "監管資訊", "2070858497": "文件似乎是螢幕擷取畫面。", "2071043849": "瀏覽", - "2074207096": "如何建立密鑰?", + "2074207096": "如何建立金鑰?", "2074235904": "姓氏為必填欄位。", "2074497711": "無法傳送 Telegram 通知", "2074713563": "4.2. 提交投訴", @@ -2073,7 +2057,6 @@ "2085387371": "必須是數字、字母和特殊字元 . , ' -", "2085602195": "- 入市數值:合約第一個跳動點的數值", "2086048243": "公司註冊證書", - "2086742952": "已添加了真實期權帳戶。<0/>請立刻存款,開始交易。", "2086792088": "兩個障礙必須是相對的或絕對的", "2088735355": "時間段和登入限制", "2089087110": "籃子指數", @@ -2281,7 +2264,6 @@ "-1699820408": "請輸入少於 {{max_number}} 個字元的 {{field_name}} 。", "-1575567374": "郵遞區號", "-816263501": "僅允許字母、數字、空格和連字符。", - "-1497654315": "澤西郵遞區號的使用者不可使用帳戶和服務。", "-755626951": "完成地址資料", "-1024240099": "地址", "-1534917661": "選擇偏好的貨幣", @@ -2332,7 +2314,7 @@ "-189310067": "帳戶已關閉", "-849320995": "評估", "-773766766": "電子郵件和密碼", - "-1144318594": "密鑰", + "-1144318594": "金鑰", "-1466827732": "自我禁止", "-1498206510": "帳戶限額", "-241588481": "登入歷史", @@ -2348,6 +2330,7 @@ "-1458676679": "必須輸入2-50 個字元。", "-1116008222": "必須輸入 9-35 個數字.", "-1995979930": "地址第一行為必填欄位.", + "-703454156": "請輸入少於 20 個字元的郵遞區號 。", "-2113555886": "僅允許字母、數字、空格和連字符。", "-1103497546": "納稅申報表", "-700600899": "商業地址證明", @@ -2499,7 +2482,6 @@ "-1545823544": "7天", "-180147209": "在該時間限制到期後將自動登出每一交易時段。", "-374553538": "在此日期之前(至少6個月,最長5年),帳戶將被排除在網站之外。", - "-2121421686": "如要自我禁止在所有英國註冊的線上博彩公司交易,請轉到 <0>www.gamstop.co.uk。", "-2105708790": "最大帳戶餘額和未平倉頭寸", "-1960600163": "一旦帳戶餘額達到該金額,將無法將資金存入帳戶。", "-1073845224": "未平倉頭寸數目", @@ -2634,26 +2616,27 @@ "-570222048": "撤銷存取權限", "-1468863262": "{{action}}", "-727433417": "{{status}}", - "-1814836151": "什麼是密鑰?", + "-1814836151": "什麼是金鑰?", "-1275937234": "使用生物特徵、臉部掃描或 PIN 像手機一樣解鎖帳戶。", "-587750445": "額外的安全層。", "-642452561": "防止未經授權的存取和網絡釣魚。", - "-1654043401": "可以為每個裝置建立一個密鑰。", - "-1411242065": "密鑰儲存在哪裡?", + "-1654043401": "可以為每個裝置建立一個金鑰。", + "-1411242065": "金鑰儲存在哪裡?", "-258752017": "如果 Deriv 帳戶電子郵件更改,會怎麼樣?", - "-634268263": "使用現有的密鑰登入 Deriv。", + "-634268263": "使用現有的金鑰登入 Deriv。", "-1405679241": "儲存在: ", - "-1700177761": "建立密鑰", + "-1700177761": "建立金鑰", "-1729774899": "登入 Google 或 iCloud 帳戶。", "-1708254107": "啟用藍牙。", "-613368504": "提示:", - "-1897886029": "使用密鑰之前:", - "-592543249": "新增更多密鑰", - "-585339315": "密鑰已成功移除。若要避免登入提示,請同時從 Google 密碼管理器中移除密鑰。 ", - "-1728732301": "使用密鑰輕鬆登入", - "-684009726": "編輯密鑰", - "-1140319320": "帳戶現在已使用密鑰保護,請透過 <0/>Deriv 帳戶設定<0/>管理密鑰。", - "-331060101": "密鑰設定失敗", + "-1897886029": "使用金鑰之前:", + "-592543249": "新增更多金鑰", + "-585339315": "金鑰已成功移除。若要避免登入提示,請同時從 Google 密碼管理器中移除金鑰。 ", + "-1728732301": "使用金鑰輕鬆登入", + "-684009726": "編輯金鑰", + "-1140319320": "帳戶現在已使用金鑰保護,請透過 <0/>Deriv 帳戶設定<0/>管理金鑰。", + "-1036903080": "處理請求時遇到臨時問題。請稍後再試。", + "-331060101": "金鑰設定失敗", "-713875531": "啟用藍牙。", "-80717068": "與<0>Deriv 密碼連結的應用:", "-340060402": "Deriv X 密碼是用於登入網絡和手機應用上的 Deriv X 帳戶.", @@ -2710,6 +2693,10 @@ "-145462920": "Deriv cTrader", "-1210359945": "將資金轉入帳戶", "-81256466": "需有 Deriv 帳戶才能開立差價合約帳戶。", + "-1926387364": "電子書已經傳送到您的電子郵件。也可以在這裡下載。", + "-1057002564": "<0>目前無法將您升級為 Wallets,並且正在努力盡快修復此問題。請<1>再試一次<0>。", + "-1424352390": "<0>Wallets <1>— 更聰明的資金管理方式", + "-280236366": "立即啟用", "-699372497": "利用槓桿和低點差進行交易,以在成功交易時獲得更高回報。<0>了解更多", "-982095728": "獲取", "-1790089996": "新!", @@ -2733,13 +2720,10 @@ "-2055865877": "非歐盟法規", "-643108528": "非歐盟及歐盟法規", "-1002556560": "無法完成 Wallet 升級。 請稍後再試,或透過即時聊天與我們聯繫。", - "-280236366": "立即啟用", "-2051096382": "使用<0>期權正確預測市場走勢獲得各種賠付,或者使用<1>multipliers交易差價合約\n 獲利,而承擔風險不超過投注額。", "-1638358352": "使用 <0>Multipliers 交易差價合約獲利,而承擔的風險不會超過投注額。", "-744999940": "Deriv 帳戶", "-749129977": "獲得真實 Deriv 帳戶,開始交易並管理資金。", - "-1057002564": "<0>目前無法將您升級為 Wallets,並且正在努力盡快修復此問題。請<1>再試一次<0>。", - "-1424352390": "<0>Wallets <1>— 更聰明的資金管理方式", "-2146691203": "選擇法規", "-249184528": "可以根據歐盟或非歐盟法規開立真實帳戶。按一下<0><0/>圖示以進一步瞭解這些帳戶。", "-1505234170": "Trader's Hub 瀏覽", @@ -2860,7 +2844,6 @@ "-1949883551": "您只有一個帳戶", "-1149845849": "返回 Trader's Hub", "-1232852916": "正轉換至 {{currency}} 帳戶以檢視交易。", - "-759000391": "無法自動驗證資訊。要啟用此功能,必須完成以下操作:", "-1632668764": "我接受", "-544232635": "請轉到「存款」頁面以生成地址。然後回到這裡繼續交易。", "-1161069724": "請複製下面的加密地址。將需要它來存入加密貨幣。", @@ -3267,7 +3250,6 @@ "-821418875": "交易者", "-679102561": "合約詳細資料", "-430118939": "控訴政策", - "-568280383": "Deriv 博彩", "-1308346982": "衍生資產", "-579984289": "衍生品示範", "-1596515467": "衍生資產 BVI", @@ -3390,7 +3372,6 @@ "-689237734": "執行", "-1642457320": "幫助中心", "-1966944392": "網路狀態: {{status}}", - "-594209315": "歐盟的綜合指數交易由{{legal_entity_name}} 提供,地址為 W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033, Malta,由馬爾他博彩局授予執照和監管(<0>執照號MGA/B2C/102/2000), ,及愛爾蘭客戶由稅務局授予執照和監管(<2>執照號: 1010285)。", "-181484419": "負責任交易", "-650505513": "全螢幕", "-1823504435": "檢視通知", @@ -3400,8 +3381,8 @@ "-1496158755": "前往 Deriv.com", "-1323441180": "本人特此確認,在 Deriv 開立帳戶以交易由巴西境外推出和提供的場外交易產品的要求是由本人提出的。本人完全理解 Deriv 不受 CVM 監管,且通過與 Deriv 接觸,本人打算與一家外國公司建立關係。", "-1396326507": "對不起,所在國不可用{{website_name}}。", - "-1019903756": "綜合", "-288996254": "不可用", + "-1019903756": "綜合", "-735306327": "帳戶管理", "-1813972756": "帳戶開立暫停 24 小時", "-366030582": "抱歉,目前無法開立帳戶。由於您拒絕了之前的風險警告,須在首次開立帳戶後等待 24 小時,然後才能繼續。<0/><0/>", @@ -3424,9 +3405,6 @@ "-175638343": "選擇帳戶或新增帳戶", "-1768223277": "帳戶已就緒", "-1215717784": "<0>已成功將幣種改成{{currency}}。<0>請立刻存款,開始交易。", - "-786091297": "在示範交易", - "-228099749": "請驗證身份和地址", - "-1041852744": "正在處理個人資訊", "-1775006840": "立刻存款開始交易。", "-983734304": "開始交易前,需要身份和地址證明。", "-917733293": "請確認居住地,以開始交易。", @@ -3434,7 +3412,6 @@ "-952649119": "登入", "-3815578": "註冊", "-1456176427": "為真實帳戶設定幣種", - "-1557011219": "新增真實 Deriv 期權帳戶", "-241733171": "新增 Deriv 金融帳戶", "-1329687645": "開立加密貨幣帳戶", "-1429178373": "開立新帳戶", @@ -3471,14 +3448,10 @@ "-2142491494": "好,明白了", "-611136817": "小心虛假連結。", "-1342699195": "總損/益:", - "-943710774": "此投訴政策可能會不時更改,適用於在{{legal_entity_name}} 註冊的帳戶,其註冊地址為:First Floor, Millennium House, Victoria Road, Douglas, Isle of Man, IM2 4RW, 由(1) 曼島博彩監管委員會授予執照和監管,(當前<0>執照於2017 年8 月31 日頒發); 及(2) 英國博採委員會授予執照和監管(<1>執照編號: 39172)。", - "-255056078": "此投訴政策可能會不時更改,適用於在{{legal_entity_name}} 註冊的帳戶,其註冊地址為:W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033, Malta,已經由位於馬爾他的馬爾他博彩局授予執照並受其監管(僅博彩產品),<0>執照號MGA/B2C/102/2000),以及居住在英國的客戶由英國博彩委員會授予執照和監管(帳號39495)。", "-1941013000": "此投訴政策可能會不時更改,適用於在 {{legal_entity_name_svg}}、 {{legal_entity_name_fx}} 和 {{legal_entity_name_v}} 註冊的帳戶。", "-594812204": "此投訴政策可能會不時更改,適用於在{{legal_entity_name_svg}} 註冊的帳戶。", "-813256361": "我們致力於公平對待客戶,並為他們提供優質的服務。 <0/> <1/>請向我們提供有關如何改善對您的服務的反饋。您提供的任何資訊都將受到最嚴格的保密。請放心,您將一直得到重視和公正的對待。", "-1622847732": "如果對您在 {{legal_entity_name}} 的交易帳戶有任何疑問,可以通過<0>幫助中心或通過<1>線上聊天與我們的代表聊天。 <2/><3/>我們致力於盡快解決您的問題,感謝您耐心等待我們解決問題。 <4/><5/>我們努力提供最好的服務和支持顧客。但是,如果我們無法解決您的問題,或者如果您不滿意我們的答复,請跟我們聯繫。歡迎並鼓勵您向我們提交正式投訴,以便審查您的疑慮並努力解決問題。", - "-1639808836": "如果對結果不滿意,可以通過填寫 IBAS 裁決表向<0>獨立博彩裁決服務(IBAS)上訴。請注意,IBAS 僅處理因交易引起的爭議。", - "-1505742956": "<0/> <1/>還可以通過<2>投注者支持部門將爭議提交馬爾他博彩管理局。", "-1406192787": "如果對結果不滿意,可以將投訴上報給<0>金融委員會。", "-1776547326": "<0/><1/>如果您在英國居住,並對我們的答覆不滿意,則可以進一步向<2>金融申訴專員服務提出投訴。", "-2115348800": "1. 簡介", @@ -3516,7 +3489,7 @@ "-1364763296": "無需記住密碼", "-1274467503": "跨裝置同步", "-2036288743": "通過生物特徵或螢幕鎖定增強安全性 ", - "-143216768": "在<0>此處了解有關密鑰的更多資訊。", + "-143216768": "在<0>此處了解有關金鑰的更多資訊。", "-778309978": "您點選的連結已過期。請務必點選收件匣中最新電子郵件中的連結。或者,請在下方輸入電子郵件地址,然後按一下<0>重新傳送電子郵件以獲取新的連結。", "-2007055538": "資訊已更新", "-521477049": "Deriv MT5 帳戶登入流程將更新。 以下是從 2 月 7 日起透過 MT5 行動應用程式登入時需要做的操作:", @@ -3561,7 +3534,6 @@ "-1969608084": "外匯和加密貨幣", "-800771713": "納閩金融服務管理局(執照編號 MB/18/0024)", "-1497128311": "80+", - "-1501230046": "0.6 點", "-1689815930": "一旦達到特定門檻,需要提交身份和地址證明.", "-1175785439": "Deriv (SVG) LLC (公司編號 273 LLC 2020)", "-139026353": "自己的自拍照。", @@ -4102,7 +4074,6 @@ "-1750896349": "達朗貝爾", "-102980621": "奧斯卡研磨 (Oscar's Grind) 策略於1965年首次出現,是低風險的積極進階策略。使用此策略能讓您在每次成功交易後合約的大小將增加,而交易失敗後合約大小保持不變 。", "-462715374": "未命名 Bot", - "-538215347": "淨存款", "-280147477": "所有交易", "-137444201": "買入", "-130601012": "請選擇持續時間", diff --git a/packages/wallets/package.json b/packages/wallets/package.json index 21618869a9bb..ecfce67ab299 100644 --- a/packages/wallets/package.json +++ b/packages/wallets/package.json @@ -14,7 +14,7 @@ "translate": "sh ./scripts/update-translations.sh" }, "dependencies": { - "@deriv-com/utils": "^0.0.14", + "@deriv-com/utils": "^0.0.20", "@deriv/api-v2": "^1.0.0", "@deriv/integration": "^1.0.0", "@deriv/quill-icons": "^1.22.4", diff --git a/packages/wallets/src/components/Base/ModalWrapper/ModalWrapper.scss b/packages/wallets/src/components/Base/ModalWrapper/ModalWrapper.scss index 420aa0ef0684..ff9a99396322 100644 --- a/packages/wallets/src/components/Base/ModalWrapper/ModalWrapper.scss +++ b/packages/wallets/src/components/Base/ModalWrapper/ModalWrapper.scss @@ -18,4 +18,10 @@ right: 2rem; cursor: pointer; } + + &--fullscreen { + height: calc(var(--wallets-vh, 1vh) * 100); + width: 100vw; + border-radius: 0; + } } diff --git a/packages/wallets/src/components/Base/ModalWrapper/ModalWrapper.tsx b/packages/wallets/src/components/Base/ModalWrapper/ModalWrapper.tsx index ea4b9763e760..ce9b8a5b930e 100644 --- a/packages/wallets/src/components/Base/ModalWrapper/ModalWrapper.tsx +++ b/packages/wallets/src/components/Base/ModalWrapper/ModalWrapper.tsx @@ -1,4 +1,5 @@ import React, { FC } from 'react'; +import classNames from 'classnames'; import { useEventListener } from 'usehooks-ts'; import CloseIcon from '../../../public/images/ic-close-dark.svg'; import { useModal } from '../../ModalProvider'; @@ -6,12 +7,14 @@ import './ModalWrapper.scss'; type TProps = { hideCloseButton?: boolean; + isFullscreen?: boolean; shouldPreventCloseOnEscape?: boolean; }; const ModalWrapper: FC> = ({ children, hideCloseButton = false, + isFullscreen = false, shouldPreventCloseOnEscape = false, }) => { const { hide } = useModal(); @@ -23,7 +26,11 @@ const ModalWrapper: FC> = ({ }); return ( -
+
{!hideCloseButton && } {children}
diff --git a/packages/wallets/src/components/Base/WalletAlertMessage/WalletAlertMessage.tsx b/packages/wallets/src/components/Base/WalletAlertMessage/WalletAlertMessage.tsx index ec91cf7f2aa3..431686996f16 100644 --- a/packages/wallets/src/components/Base/WalletAlertMessage/WalletAlertMessage.tsx +++ b/packages/wallets/src/components/Base/WalletAlertMessage/WalletAlertMessage.tsx @@ -1,24 +1,25 @@ import React, { ReactNode } from 'react'; -import ErrorCircleCrossmark from '../../../public/images/error-circle-crossmark.svg'; -import InfoCircleDots from '../../../public/images/info-circle-dots.svg'; -import SuccessCircleCheckmark from '../../../public/images/success-circle-checkmark.svg'; +import { LegacyLossIcon, LegacySettlementFillIcon, LegacyWonIcon } from '@deriv/quill-icons'; import { WalletText } from '../index'; import './WalletAlertMessage.scss'; const typeMapper = { error: { color: 'error', - icon: ErrorCircleCrossmark, + fill: '#EC3F3F', + icon: LegacyLossIcon, }, info: { color: 'blue', - icon: InfoCircleDots, + fill: '#377CFC', + icon: LegacySettlementFillIcon, }, success: { color: 'success', - icon: SuccessCircleCheckmark, + fill: '#4BB4B3', + icon: LegacyWonIcon, }, -}; +} as const; type TProps = { children?: ReactNode; @@ -29,14 +30,13 @@ type TProps = { const WalletAlertMessage: React.FC = ({ children, message, type }) => { const Icon = typeMapper[type].icon; const color = typeMapper[type].color; + const fill = typeMapper[type].fill; return (
-
- -
+
diff --git a/packages/wallets/src/components/Base/WalletClipboard/WalletClipboard.tsx b/packages/wallets/src/components/Base/WalletClipboard/WalletClipboard.tsx index 69f025352454..ea248030a734 100644 --- a/packages/wallets/src/components/Base/WalletClipboard/WalletClipboard.tsx +++ b/packages/wallets/src/components/Base/WalletClipboard/WalletClipboard.tsx @@ -1,8 +1,7 @@ import React, { useEffect, useRef, useState } from 'react'; import { useCopyToClipboard, useHover } from 'usehooks-ts'; +import { LegacyCopy1pxIcon, LegacyWonIcon } from '@deriv/quill-icons'; import useDevice from '../../../hooks/useDevice'; -import Clipboard from '../../../public/images/clipboard.svg'; -import CheckmarkCircle from '../../../public/images/ic-checkmark-circle.svg'; import { Tooltip } from '../Tooltip'; import './WalletClipboard.scss'; @@ -40,7 +39,7 @@ const WalletClipboard = ({ return ( ); diff --git a/packages/wallets/src/components/Base/WalletDropdown/WalletDropdown.tsx b/packages/wallets/src/components/Base/WalletDropdown/WalletDropdown.tsx index 663a24c70f65..62e4bcdb29d7 100644 --- a/packages/wallets/src/components/Base/WalletDropdown/WalletDropdown.tsx +++ b/packages/wallets/src/components/Base/WalletDropdown/WalletDropdown.tsx @@ -1,7 +1,7 @@ import React, { useCallback, useEffect, useState } from 'react'; import classNames from 'classnames'; import { useCombobox } from 'downshift'; -import { LabelPairedChevronDownLgBoldIcon } from '@deriv/quill-icons'; +import { LabelPairedChevronDownLgFillIcon } from '@deriv/quill-icons'; import { TGenericSizes } from '../../../types'; import reactNodeToString from '../../../utils/react-node-to-string'; import { WalletText } from '../WalletText'; @@ -133,7 +133,7 @@ const WalletDropdown: React.FC = ({ 'wallets-dropdown__button--active': isOpen, })} > - + )} showMessageContainer={showMessageContainer} diff --git a/packages/wallets/src/components/Base/WalletPasswordField/PasswordViewerIcon.tsx b/packages/wallets/src/components/Base/WalletPasswordField/PasswordViewerIcon.tsx index c60421b67456..b75adc157288 100644 --- a/packages/wallets/src/components/Base/WalletPasswordField/PasswordViewerIcon.tsx +++ b/packages/wallets/src/components/Base/WalletPasswordField/PasswordViewerIcon.tsx @@ -1,7 +1,6 @@ import React from 'react'; import classNames from 'classnames'; -import PasswordHide from '../../../public/images/ic-password-hide.svg'; -import PasswordShow from '../../../public/images/ic-password-show.svg'; +import { LegacyVisibility1pxIcon, LegacyVisibilityOff1pxIcon } from '@deriv/quill-icons'; import { IconButton } from '../IconButton'; import './PasswordViewerIcon.scss'; @@ -17,7 +16,7 @@ const PasswordViewerIcon: React.FC = ({ isIconDisabled, 'wallets-password-viewer-icon--disabled': isIconDisabled, })} color='transparent' - icon={viewPassword ? : } + icon={viewPassword ? : } isRound onClick={() => !isIconDisabled && setViewPassword(!viewPassword)} size='sm' diff --git a/packages/wallets/src/components/DatePicker/DatePicker.tsx b/packages/wallets/src/components/DatePicker/DatePicker.tsx index a1dc2e488b35..7e125c7ff546 100644 --- a/packages/wallets/src/components/DatePicker/DatePicker.tsx +++ b/packages/wallets/src/components/DatePicker/DatePicker.tsx @@ -1,7 +1,7 @@ import React, { useEffect, useRef, useState } from 'react'; import Calendar, { CalendarProps } from 'react-calendar'; import { useOnClickOutside } from 'usehooks-ts'; -import CalendarIcon from '../../public/images/ic-calendar.svg'; +import { LegacyCalendar1pxIcon } from '@deriv/quill-icons'; import unixToDateString from '../../utils/utils'; import FlowTextField, { TFlowFieldProps } from '../FlowField/FlowTextField'; import customFormatShortWeekday from './utils'; @@ -67,7 +67,7 @@ const DatePicker = ({ disabled={disabled} onClick={toggleCalendar} > - + )} showMessage diff --git a/packages/wallets/src/components/DerivAppsSection/DerivAppsTradingAccount.tsx b/packages/wallets/src/components/DerivAppsSection/DerivAppsTradingAccount.tsx index c87efe232585..16bfc88928f4 100644 --- a/packages/wallets/src/components/DerivAppsSection/DerivAppsTradingAccount.tsx +++ b/packages/wallets/src/components/DerivAppsSection/DerivAppsTradingAccount.tsx @@ -17,7 +17,7 @@ const DerivAppsTradingAccount: React.FC = () => { return (
- +
diff --git a/packages/wallets/src/components/DesktopWalletsList/DesktopWalletsList.scss b/packages/wallets/src/components/DesktopWalletsList/DesktopWalletsList.scss index a79b248d7c90..a134d2fc6c0a 100644 --- a/packages/wallets/src/components/DesktopWalletsList/DesktopWalletsList.scss +++ b/packages/wallets/src/components/DesktopWalletsList/DesktopWalletsList.scss @@ -5,4 +5,6 @@ display: flex; flex-direction: column; gap: 2.4rem; + border: 1px solid #ebecef; + border-radius: 1.6rem; } diff --git a/packages/wallets/src/components/SentEmailContent/SentEmailContent.scss b/packages/wallets/src/components/SentEmailContent/SentEmailContent.scss index 89bd939649cd..98b081c1fd6b 100644 --- a/packages/wallets/src/components/SentEmailContent/SentEmailContent.scss +++ b/packages/wallets/src/components/SentEmailContent/SentEmailContent.scss @@ -1,6 +1,6 @@ .wallets-sent-email-content { display: inline-flex; - padding: 3.2rem; + padding: 6rem 3.2rem 3.2rem; flex-direction: column; justify-content: center; align-items: center; @@ -11,6 +11,8 @@ @include mobile { width: 100%; + justify-content: flex-start; + border-radius: 0; } &__resend { @@ -25,4 +27,14 @@ grid-gap: 0.8rem; } } + + &__reasons { + display: flex; + align-items: center; + gap: 0.8rem; + + & svg { + flex-shrink: 0; + } + } } diff --git a/packages/wallets/src/components/SentEmailContent/SentEmailContent.tsx b/packages/wallets/src/components/SentEmailContent/SentEmailContent.tsx index 4c696d769dab..e38cf2d798e7 100644 --- a/packages/wallets/src/components/SentEmailContent/SentEmailContent.tsx +++ b/packages/wallets/src/components/SentEmailContent/SentEmailContent.tsx @@ -2,22 +2,63 @@ import React, { FC, Fragment, useEffect, useState } from 'react'; import { Trans } from 'react-i18next'; import { useCountdown } from 'usehooks-ts'; import { useActiveWalletAccount, useSettings, useVerifyEmail } from '@deriv/api-v2'; -import { DerivLightIcEmailSentIcon } from '@deriv/quill-icons'; +import { + DerivLightIcEmailSentIcon, + DerivLightIcEmailSentPasskeyIcon, + DerivLightIcFirewallEmailPasskeyIcon, + DerivLightIcSpamEmailPasskeyIcon, + DerivLightIcTypoEmailPasskeyIcon, + DerivLightIcWrongEmailPasskeyIcon, +} from '@deriv/quill-icons'; import { PlatformDetails } from '../../features/cfd/constants'; import useDevice from '../../hooks/useDevice'; import { TPlatforms } from '../../types'; import { platformPasswordResetRedirectLink } from '../../utils/cfd'; -import { WalletButton } from '../Base'; +import { WalletButton, WalletText } from '../Base'; import { WalletsActionScreen } from '../WalletsActionScreen'; import './SentEmailContent.scss'; type SentEmailContentProps = { description?: string; + isChangePassword?: boolean; // NOTE: This prop is ONLY used for rendering different email icons between either Change Password/Forgot password email modal isInvestorPassword?: boolean; platform?: TPlatforms.All; }; -const SentEmailContent: FC = ({ description, isInvestorPassword = false, platform }) => { +// NOTE: key field is not from BE or requirements, its only used for key prop +const emailReasons = [ + { + content: , + icon: , + key: 'EmailInSpamFolder', + }, + { + content: ( + + ), + icon: , + key: 'AnotherEmailAddress', + }, + { + content: , + icon: , + key: 'TypoEmailAddress', + }, + { + content: ( + + ), + icon: , + key: 'UnableToDeliverEmailAddress', + }, +]; + +const SentEmailContent: FC = ({ + description, + isChangePassword = false, + isInvestorPassword = false, + platform, +}) => { const [shouldShowResendEmailReasons, setShouldShowResendEmailReasons] = useState(false); const [hasCountdownStarted, setHasCountdownStarted] = useState(false); const { data } = useSettings(); @@ -28,11 +69,31 @@ const SentEmailContent: FC = ({ description, isInvestorPa const titleSize = 'md'; const descriptionSize = 'sm'; const emailLinkSize = isMobile ? 'lg' : 'md'; + const didNotReceiveEmailSize = isMobile ? 'md' : 'sm'; + const emailReasonsSize = isMobile ? 'sm' : 'xs'; const [count, { resetCountdown, startCountdown }] = useCountdown({ countStart: 60, intervalMs: 1000, }); + const EmailSentIcon = + isChangePassword || isInvestorPassword ? DerivLightIcEmailSentIcon : DerivLightIcEmailSentPasskeyIcon; + + const resendEmail = () => { + if (data?.email) { + verifyEmail({ + type: platform === mt5Platform ? mt5ResetType : 'trading_platform_dxtrade_password_reset', + url_parameters: { + redirect_to: platformPasswordResetRedirectLink(platform ?? mt5Platform, activeWallet?.is_virtual), + }, + verify_email: data?.email, + }); + resetCountdown(); + startCountdown(); + setHasCountdownStarted(true); + } + }; + useEffect(() => { if (count === 0) setHasCountdownStarted(false); }, [count]); @@ -48,17 +109,19 @@ const SentEmailContent: FC = ({ description, isInvestorPa } + icon={} renderButtons={() => - shouldShowResendEmailReasons && isInvestorPassword ? null : ( + shouldShowResendEmailReasons && (isInvestorPassword || isChangePassword) ? null : ( { setShouldShowResendEmailReasons(true); }} size={emailLinkSize} - variant='contained' + variant='ghost' > - + + + ) } @@ -67,7 +130,7 @@ const SentEmailContent: FC = ({ description, isInvestorPa /> {shouldShowResendEmailReasons && ( - {isInvestorPassword && ( + {(isInvestorPassword || isChangePassword) && (
= ({ description, isInvestorPa />
)} + {!isInvestorPassword && + !isChangePassword && + emailReasons.map(emailReason => { + return ( +
+ {emailReason.icon} + + {emailReason.content} + +
+ ); + })} { - if (data?.email) { - verifyEmail({ - type: - platform === mt5Platform - ? mt5ResetType - : 'trading_platform_dxtrade_password_reset', - url_parameters: { - redirect_to: platformPasswordResetRedirectLink( - platform ?? mt5Platform, - activeWallet?.is_virtual - ), - }, - verify_email: data?.email, - }); - resetCountdown(); - startCountdown(); - setHasCountdownStarted(true); - } - }} + onClick={resendEmail} + variant='contained' > {hasCountdownStarted ? `Resend email in ${count} seconds` : 'Resend email'} diff --git a/packages/wallets/src/components/WalletCurrencyCard/WalletCurrencyCard.scss b/packages/wallets/src/components/WalletCurrencyCard/WalletCurrencyCard.scss index 0d5a59704342..3c1daa631d05 100644 --- a/packages/wallets/src/components/WalletCurrencyCard/WalletCurrencyCard.scss +++ b/packages/wallets/src/components/WalletCurrencyCard/WalletCurrencyCard.scss @@ -6,8 +6,8 @@ border-radius: 0.4rem; &--lg { - min-width: 12.2rem; - min-height: 7.5rem; + width: 12.8rem; + height: 8rem; padding: 1rem 1.6rem; } diff --git a/packages/wallets/src/components/WalletError/WalletError.tsx b/packages/wallets/src/components/WalletError/WalletError.tsx index cee2b544754e..003d6ff47df3 100644 --- a/packages/wallets/src/components/WalletError/WalletError.tsx +++ b/packages/wallets/src/components/WalletError/WalletError.tsx @@ -1,6 +1,6 @@ import React, { ComponentProps } from 'react'; +import { LegacyWarningIcon } from '@deriv/quill-icons'; import useDevice from '../../hooks/useDevice'; -import ErrorIcon from '../../public/images/error-icon.svg'; import { ModalStepWrapper } from '../Base'; import WalletButton from '../Base/WalletButton/WalletButton'; import { WalletsActionScreen } from '../WalletsActionScreen'; @@ -28,7 +28,7 @@ const WalletError: React.FC = ({
} + icon={} renderButtons={() => ( {buttonText} diff --git a/packages/wallets/src/components/WalletListCard/WalletListCard.scss b/packages/wallets/src/components/WalletListCard/WalletListCard.scss index b17c8250d225..9540a465d932 100644 --- a/packages/wallets/src/components/WalletListCard/WalletListCard.scss +++ b/packages/wallets/src/components/WalletListCard/WalletListCard.scss @@ -25,9 +25,5 @@ gap: 2.4rem; align-self: stretch; border-radius: 1.6rem; - - &-icon { - padding-top: 0.8rem; - } } } diff --git a/packages/wallets/src/components/WalletListCard/WalletListCard.tsx b/packages/wallets/src/components/WalletListCard/WalletListCard.tsx index 0d8a4f7dfa5f..583973be69e2 100644 --- a/packages/wallets/src/components/WalletListCard/WalletListCard.tsx +++ b/packages/wallets/src/components/WalletListCard/WalletListCard.tsx @@ -1,7 +1,7 @@ import React from 'react'; import { useActiveWalletAccount } from '@deriv/api-v2'; -import { WalletCurrencyIcon } from '../WalletCurrencyIcon'; -import WalletListCardDetails from '../WalletListCardDetails/WalletListCardDetails'; +import { WalletCurrencyCard } from '../WalletCurrencyCard'; +import { WalletListCardDetails } from '../WalletListCardDetails'; import './WalletListCard.scss'; const WalletListCard = () => { @@ -14,9 +14,7 @@ const WalletListCard = () => {
-
- -
+
diff --git a/packages/wallets/src/components/WalletListCard/__tests__/WalletListCard.spec.tsx b/packages/wallets/src/components/WalletListCard/__tests__/WalletListCard.spec.tsx index 658317f74c06..188489fcdb92 100644 --- a/packages/wallets/src/components/WalletListCard/__tests__/WalletListCard.spec.tsx +++ b/packages/wallets/src/components/WalletListCard/__tests__/WalletListCard.spec.tsx @@ -20,8 +20,8 @@ jest.mock('../../WalletListCardDetails/WalletListCardDetails', () => ({ default: jest.fn(() =>
Mocked WalletListCardDetails
), })); -jest.mock('../../WalletCurrencyIcon', () => ({ - WalletCurrencyIcon: jest.fn(() =>
Mocked WalletCurrencyIcon
), +jest.mock('../../WalletCurrencyCard', () => ({ + WalletCurrencyCard: jest.fn(() =>
Mocked WalletCurrencyCard
), })); describe('WalletListCard', () => { @@ -36,7 +36,7 @@ describe('WalletListCard', () => { it('should render with components correctly', () => { render(); - expect(screen.getByText('Mocked WalletCurrencyIcon')).toBeInTheDocument(); + expect(screen.getByText('Mocked WalletCurrencyCard')).toBeInTheDocument(); expect(screen.getByText('Mocked WalletListCardDetails')).toBeInTheDocument(); }); @@ -48,7 +48,7 @@ describe('WalletListCard', () => { }); render(); - expect(screen.getByText('Mocked WalletCurrencyIcon')).toBeInTheDocument(); + expect(screen.getByText('Mocked WalletCurrencyCard')).toBeInTheDocument(); expect(screen.getByText('Mocked WalletListCardDetails')).toBeInTheDocument(); }); }); diff --git a/packages/wallets/src/components/WalletListCardDetails/WalletListCardDetails.scss b/packages/wallets/src/components/WalletListCardDetails/WalletListCardDetails.scss index 6f3e9922585c..f56e4d35cada 100644 --- a/packages/wallets/src/components/WalletListCardDetails/WalletListCardDetails.scss +++ b/packages/wallets/src/components/WalletListCardDetails/WalletListCardDetails.scss @@ -5,11 +5,12 @@ justify-content: center; align-items: flex-start; flex: 1 0 0; + gap: 0.8rem; } &__content { display: flex; - gap: 1.6rem; + gap: 0.8rem; flex-direction: column; align-items: flex-start; } diff --git a/packages/wallets/src/components/WalletsAddMoreCarousel/WalletsAddMoreCarousel.scss b/packages/wallets/src/components/WalletsAddMoreCarousel/WalletsAddMoreCarousel.scss index b67f0585efb0..fc450ef23a8d 100644 --- a/packages/wallets/src/components/WalletsAddMoreCarousel/WalletsAddMoreCarousel.scss +++ b/packages/wallets/src/components/WalletsAddMoreCarousel/WalletsAddMoreCarousel.scss @@ -21,7 +21,7 @@ &__carousel { overflow: hidden; background-color: #fff; - padding: 3.2rem 2.4rem; + padding: 3.2rem 0; border-radius: 0.8rem; position: relative; height: 100%; diff --git a/packages/wallets/src/components/WalletsAddMoreCarousel/WalletsAddMoreCarousel.tsx b/packages/wallets/src/components/WalletsAddMoreCarousel/WalletsAddMoreCarousel.tsx index 79023dd5a8a7..10d5cce09913 100644 --- a/packages/wallets/src/components/WalletsAddMoreCarousel/WalletsAddMoreCarousel.tsx +++ b/packages/wallets/src/components/WalletsAddMoreCarousel/WalletsAddMoreCarousel.tsx @@ -47,7 +47,7 @@ const WalletsAddMoreCarousel: React.FC = () => { return (
- + Add more Wallets
diff --git a/packages/wallets/src/components/WalletsErrorScreen/WalletsErrorScreen.tsx b/packages/wallets/src/components/WalletsErrorScreen/WalletsErrorScreen.tsx index fcaca42db22f..224f059d888a 100644 --- a/packages/wallets/src/components/WalletsErrorScreen/WalletsErrorScreen.tsx +++ b/packages/wallets/src/components/WalletsErrorScreen/WalletsErrorScreen.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import ErrorIcon from '../../public/images/error-icon.svg'; +import { LegacyWarningIcon } from '@deriv/quill-icons'; import { WalletButton } from '../Base'; import { WalletsActionScreen } from '../WalletsActionScreen'; @@ -13,7 +13,7 @@ const ErrorState: React.FC = ({ return ( } + icon={} renderButtons={() => ( window.location.reload()} size='lg' variant='ghost'> Try again diff --git a/packages/wallets/src/components/WalletsResetMT5Password/WalletsResetMT5Password.tsx b/packages/wallets/src/components/WalletsResetMT5Password/WalletsResetMT5Password.tsx index 320d43d355dd..ad1d236db5c6 100644 --- a/packages/wallets/src/components/WalletsResetMT5Password/WalletsResetMT5Password.tsx +++ b/packages/wallets/src/components/WalletsResetMT5Password/WalletsResetMT5Password.tsx @@ -5,7 +5,7 @@ import { CFD_PLATFORMS, PlatformDetails } from '../../features/cfd/constants'; import useDevice from '../../hooks/useDevice'; import { TPlatforms } from '../../types'; import { validPassword, validPasswordMT5 } from '../../utils/password-validation'; -import { ModalWrapper, WalletButton, WalletPasswordFieldLazy, WalletText } from '../Base'; +import { ModalStepWrapper, WalletButton, WalletPasswordFieldLazy, WalletText } from '../Base'; import { useModal } from '../ModalProvider'; import { WalletError } from '../WalletError'; import WalletSuccessResetMT5Password from './WalletSuccessResetMT5Password'; @@ -49,10 +49,30 @@ const WalletsResetMT5Password = ({ const { hide, show } = useModal(); const [password, setPassword] = useState(''); - const { isMobile } = useDevice(); + const { isDesktop, isMobile } = useDevice(); const isMT5 = platform === CFD_PLATFORMS.MT5; + const renderFooter = isMobile + ? () => { + return ( +
+ hide()} variant='outlined'> + + + + + +
+ ); + } + : undefined; + const handleSubmit = () => { if (isInvestorPassword && isMT5) { const accountId = localStorage.getItem('trading_platform_investor_password_reset_account_id') ?? ''; @@ -106,7 +126,12 @@ const WalletsResetMT5Password = ({ }, [platform, title, actionParams, isChangeInvestorPasswordSuccess, isChangeInvestorPasswordError]); return ( - +
{isInvestorPassword ? `Reset ${title} investor password` : `Create a new ${title} password`} @@ -121,21 +146,24 @@ const WalletsResetMT5Password = ({ password={password} /> {modalDescription[platform]} -
- hide()} variant='outlined'> - - - - - -
+ {isDesktop && ( +
+ hide()} size='lg' variant='outlined'> + + + + + +
+ )}
-
+ ); }; diff --git a/packages/wallets/src/features/cfd/flows/Verification/Verification.tsx b/packages/wallets/src/features/cfd/flows/Verification/Verification.tsx index 326c22959552..4c58f85ddb49 100644 --- a/packages/wallets/src/features/cfd/flows/Verification/Verification.tsx +++ b/packages/wallets/src/features/cfd/flows/Verification/Verification.tsx @@ -87,10 +87,12 @@ const Verification: FC = ({ selectedJurisdiction }) => { const selectedMarketType = getModalState('marketType') ?? 'all'; const platform = getModalState('platform') ?? PlatformDetails.mt5.platform; - const shouldSubmitPOA = useMemo( - () => !poaStatus?.has_attempted_poa || (!poaStatus?.is_pending && !poaStatus.is_verified), - [poaStatus] - ); + const shouldSubmitPOA = useMemo(() => { + if (poaStatus?.is_pending) return false; + // @ts-expect-error as the prop verified_jurisdiction is not yet present in GetAccountStatusResponse type + return selectedJurisdiction ? !poaStatus?.verified_jurisdiction?.[selectedJurisdiction] : false; + }, [selectedJurisdiction, poaStatus]); + const shouldFillPersonalDetails = useMemo( () => !settings?.has_submitted_personal_details, [settings?.has_submitted_personal_details] diff --git a/packages/wallets/src/features/cfd/modals/MT5PasswordModal/MT5PasswordModal.tsx b/packages/wallets/src/features/cfd/modals/MT5PasswordModal/MT5PasswordModal.tsx index f04b116277a1..6335088785af 100644 --- a/packages/wallets/src/features/cfd/modals/MT5PasswordModal/MT5PasswordModal.tsx +++ b/packages/wallets/src/features/cfd/modals/MT5PasswordModal/MT5PasswordModal.tsx @@ -278,9 +278,9 @@ const MT5PasswordModal: React.FC = ({ marketType, platform }) => { if (emailVerificationStatus === 'success') { return ( - + - + ); } diff --git a/packages/wallets/src/features/cfd/screens/ChangePassword/ChangePassword.scss b/packages/wallets/src/features/cfd/screens/ChangePassword/ChangePassword.scss index 7552fe04810f..6724455f2f20 100644 --- a/packages/wallets/src/features/cfd/screens/ChangePassword/ChangePassword.scss +++ b/packages/wallets/src/features/cfd/screens/ChangePassword/ChangePassword.scss @@ -47,7 +47,7 @@ &__sent-email-wrapper { .wallets-sent-email-content { - padding: unset; + padding: 0 6rem; margin-top: 3.2rem; width: 100%; diff --git a/packages/wallets/src/features/cfd/screens/ChangePassword/TradingPlatformChangePasswordScreens.tsx b/packages/wallets/src/features/cfd/screens/ChangePassword/TradingPlatformChangePasswordScreens.tsx index 8b00b11e3d49..fe8875ace4ad 100644 --- a/packages/wallets/src/features/cfd/screens/ChangePassword/TradingPlatformChangePasswordScreens.tsx +++ b/packages/wallets/src/features/cfd/screens/ChangePassword/TradingPlatformChangePasswordScreens.tsx @@ -83,7 +83,7 @@ const TradingPlatformChangePasswordScreens: FC - +
); diff --git a/packages/wallets/src/public/images/clipboard.svg b/packages/wallets/src/public/images/clipboard.svg deleted file mode 100644 index 6c6d083ab865..000000000000 --- a/packages/wallets/src/public/images/clipboard.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/packages/wallets/src/public/images/error-circle-crossmark.svg b/packages/wallets/src/public/images/error-circle-crossmark.svg deleted file mode 100644 index 6f15696383cf..000000000000 --- a/packages/wallets/src/public/images/error-circle-crossmark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/wallets/src/public/images/error-icon.svg b/packages/wallets/src/public/images/error-icon.svg deleted file mode 100644 index 9a6e05392461..000000000000 --- a/packages/wallets/src/public/images/error-icon.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/packages/wallets/src/public/images/ic-appstore-binary-bot.svg b/packages/wallets/src/public/images/ic-appstore-binary-bot.svg deleted file mode 100644 index cc30b74c7f4b..000000000000 --- a/packages/wallets/src/public/images/ic-appstore-binary-bot.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/packages/wallets/src/public/images/ic-appstore-deriv-bot.svg b/packages/wallets/src/public/images/ic-appstore-deriv-bot.svg deleted file mode 100644 index 3ac9c2c0aaf6..000000000000 --- a/packages/wallets/src/public/images/ic-appstore-deriv-bot.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/packages/wallets/src/public/images/ic-appstore-deriv-go.svg b/packages/wallets/src/public/images/ic-appstore-deriv-go.svg deleted file mode 100644 index 84c6020b8183..000000000000 --- a/packages/wallets/src/public/images/ic-appstore-deriv-go.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/packages/wallets/src/public/images/ic-appstore-deriv-trader.svg b/packages/wallets/src/public/images/ic-appstore-deriv-trader.svg deleted file mode 100644 index 09cfff46d877..000000000000 --- a/packages/wallets/src/public/images/ic-appstore-deriv-trader.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/packages/wallets/src/public/images/ic-appstore-smart-trader.svg b/packages/wallets/src/public/images/ic-appstore-smart-trader.svg deleted file mode 100644 index eabd99eaa29e..000000000000 --- a/packages/wallets/src/public/images/ic-appstore-smart-trader.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/packages/wallets/src/public/images/ic-calendar.svg b/packages/wallets/src/public/images/ic-calendar.svg deleted file mode 100644 index 4e4e42d7b888..000000000000 --- a/packages/wallets/src/public/images/ic-calendar.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/wallets/src/public/images/ic-checkmark-circle.svg b/packages/wallets/src/public/images/ic-checkmark-circle.svg deleted file mode 100644 index f7b4c112a1ac..000000000000 --- a/packages/wallets/src/public/images/ic-checkmark-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/packages/wallets/src/public/images/ic-password-hide.svg b/packages/wallets/src/public/images/ic-password-hide.svg deleted file mode 100644 index 45d3397a39cb..000000000000 --- a/packages/wallets/src/public/images/ic-password-hide.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/wallets/src/public/images/ic-password-show.svg b/packages/wallets/src/public/images/ic-password-show.svg deleted file mode 100644 index 732ca9ee0fe7..000000000000 --- a/packages/wallets/src/public/images/ic-password-show.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/wallets/src/public/images/info-circle-dots.svg b/packages/wallets/src/public/images/info-circle-dots.svg deleted file mode 100644 index 1afbc4644a70..000000000000 --- a/packages/wallets/src/public/images/info-circle-dots.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/wallets/src/public/images/success-circle-checkmark.svg b/packages/wallets/src/public/images/success-circle-checkmark.svg deleted file mode 100644 index 7fc8fe379239..000000000000 --- a/packages/wallets/src/public/images/success-circle-checkmark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/wallets/src/routes/WalletsListingRoute/WalletsListingRoute.scss b/packages/wallets/src/routes/WalletsListingRoute/WalletsListingRoute.scss index 9fe35f942dad..bf62a5d5b5c5 100644 --- a/packages/wallets/src/routes/WalletsListingRoute/WalletsListingRoute.scss +++ b/packages/wallets/src/routes/WalletsListingRoute/WalletsListingRoute.scss @@ -6,10 +6,7 @@ align-items: center; justify-content: center; gap: 2.4rem; - - @include mobile { - background-color: var(--general-main-1, #ffffff); - } + background-color: var(--general-main-1, #ffffff); @include desktop { padding: 4rem;