diff --git a/.github/workflows/generate_and_push_deriv_api_types.md b/.github/workflows/generate_and_push_deriv_api_types.md index c7691a89d81a..8a9660ce2f92 100644 --- a/.github/workflows/generate_and_push_deriv_api_types.md +++ b/.github/workflows/generate_and_push_deriv_api_types.md @@ -11,4 +11,3 @@ After a new version has been published the action will automatically create a PR Required GitHub secrets: - `NPM_ACCESS_TOKEN`: To allow for automatic publishing of new version of `@deriv/api-types` -- `PERSONAL_ACCESS_TOKEN`: (GitHub PAT) To allow the action to authenticate with Git for git operations. diff --git a/.github/workflows/generate_and_push_deriv_api_types.yml b/.github/workflows/generate_and_push_deriv_api_types.yml index 2d50ec8f1993..14cf75a89494 100644 --- a/.github/workflows/generate_and_push_deriv_api_types.yml +++ b/.github/workflows/generate_and_push_deriv_api_types.yml @@ -105,11 +105,12 @@ jobs: git push --set-upstream origin "$package_name" -f # Get the diff and use this as the PRs body. - pr_body=$(curl "https://diff.intrinsic.com/$package_name/$safe_old_version/$new_version.diff") + diff_url="https://diff.intrinsic.com/$package_name/$safe_old_version/$new_version.diff" + pr_body=$(curl $diff_url) # Use "gh" to create a PR from the CLI. sudo apt install gh - gh auth login --with-token <<< ${{ secrets.PERSONAL_ACCESS_TOKEN }} + gh auth login --with-token <<< ${{ github.token }} gh pr close "$package_name" || true - gh pr create --title "Bump $package_name from $safe_old_version to $new_version" --body "\`\`\`diff $pr_body \`\`\`" --base "master" --head "binary-com:$package_name" + gh pr create --title "Bump $package_name from $safe_old_version to $new_version" --body "Diff url: $diff_url\n \`\`\`diff ${pr_body:0:5000} \`\`\`" --base "master" --head "binary-com:$package_name" fi diff --git a/.github/workflows/push_and_pull_crowdin_translations.md b/.github/workflows/push_and_pull_crowdin_translations.md index 56fff55c2b84..dbd4d6f94a42 100644 --- a/.github/workflows/push_and_pull_crowdin_translations.md +++ b/.github/workflows/push_and_pull_crowdin_translations.md @@ -5,5 +5,4 @@ This action will automatically extract strings from the Deriv.app repo and uploa Required GitHub secrets: - `NPM_ACCESS_TOKEN`: To allow for automatic publishing of new version of `@deriv/api-types` -- `PERSONAL_ACCESS_TOKEN`: (GitHub PAT) To allow the action to authenticate with Git for git operations. - `CROWDIN_API_TOKEN`: To allow us to download and upload new language files to and from Crowdin. diff --git a/jest.config.js b/jest.config.js index 746a63bfd0c5..b24c15b74fdc 100644 --- a/jest.config.js +++ b/jest.config.js @@ -8,6 +8,7 @@ module.exports = { transform: { '^.+\\.jsx?$': 'babel-jest', '^.+/es/^.+$': 'babel-jest', + '^.+\\.(ts|tsx)?$': 'ts-jest', }, testRegex: ['__tests__', '.*.spec.js'], transformIgnorePatterns: ['/node_modules/(?!react-virtualized).+\\.js$'], diff --git a/package-lock.json b/package-lock.json index b9f599a1b940..0782e4a8ec4a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -203,7 +203,8 @@ "stylelint-formatter-pretty": "^2.1.1", "stylelint-no-unsupported-browser-features": "^4.0.0", "stylelint-selector-bem-pattern": "^2.1.0", - "stylelint-webpack-plugin": "^2.1.1" + "stylelint-webpack-plugin": "^2.1.1", + "ts-jest": "^26.4.2" }, "engines": { "node": "^16.16.0" @@ -17410,6 +17411,18 @@ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, + "node_modules/bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "dev": true, + "dependencies": { + "fast-json-stable-stringify": "2.x" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/bser": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", @@ -32021,6 +32034,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, "node_modules/make-fetch-happen": { "version": "8.0.14", "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-8.0.14.tgz", @@ -44444,6 +44463,61 @@ "resolved": "https://registry.npmjs.org/ts-essentials/-/ts-essentials-1.0.4.tgz", "integrity": "sha512-q3N1xS4vZpRouhYHDPwO0bDW3EZ6SK9CrrDHxi/D6BPReSjpVgWIOpLS2o0gSBZm+7q/wyKp6RVM1AeeW7uyfQ==" }, + "node_modules/ts-jest": { + "version": "26.5.6", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-26.5.6.tgz", + "integrity": "sha512-rua+rCP8DxpA8b4DQD/6X2HQS8Zy/xzViVYfEs2OQu68tkCuKLV0Md8pmX55+W24uRIyAsf/BajRfxOs+R2MKA==", + "dev": true, + "dependencies": { + "bs-logger": "0.x", + "buffer-from": "1.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^26.1.0", + "json5": "2.x", + "lodash": "4.x", + "make-error": "1.x", + "mkdirp": "1.x", + "semver": "7.x", + "yargs-parser": "20.x" + }, + "bin": { + "ts-jest": "cli.js" + }, + "engines": { + "node": ">= 10" + }, + "peerDependencies": { + "jest": ">=26 <27", + "typescript": ">=3.8 <5.0" + } + }, + "node_modules/ts-jest/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-jest/node_modules/semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/ts-pnp": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz", @@ -60912,6 +60986,15 @@ "update-browserslist-db": "^1.0.5" } }, + "bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "dev": true, + "requires": { + "fast-json-stable-stringify": "2.x" + } + }, "bser": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", @@ -72106,6 +72189,12 @@ "semver": "^6.0.0" } }, + "make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, "make-fetch-happen": { "version": "8.0.14", "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-8.0.14.tgz", @@ -81535,6 +81624,41 @@ "resolved": "https://registry.npmjs.org/ts-essentials/-/ts-essentials-1.0.4.tgz", "integrity": "sha512-q3N1xS4vZpRouhYHDPwO0bDW3EZ6SK9CrrDHxi/D6BPReSjpVgWIOpLS2o0gSBZm+7q/wyKp6RVM1AeeW7uyfQ==" }, + "ts-jest": { + "version": "26.5.6", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-26.5.6.tgz", + "integrity": "sha512-rua+rCP8DxpA8b4DQD/6X2HQS8Zy/xzViVYfEs2OQu68tkCuKLV0Md8pmX55+W24uRIyAsf/BajRfxOs+R2MKA==", + "dev": true, + "requires": { + "bs-logger": "0.x", + "buffer-from": "1.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^26.1.0", + "json5": "2.x", + "lodash": "4.x", + "make-error": "1.x", + "mkdirp": "1.x", + "semver": "7.x", + "yargs-parser": "20.x" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true + }, + "semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, "ts-pnp": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz", diff --git a/package.json b/package.json index 780a8d1c0288..3281ebfd3b24 100644 --- a/package.json +++ b/package.json @@ -27,6 +27,7 @@ "@types/react-router-dom": "^5.1.6", "@typescript-eslint/eslint-plugin": "^5.8.0", "@typescript-eslint/parser": "^5.8.0", + "ts-jest": "^26.4.2", "babel-polyfill": "^6.26.0", "chai": "^4.2.0", "eslint": "^7.18.0", diff --git a/packages/account/src/Components/poi/idv-document-submit/utils.js b/packages/account/src/Components/poi/idv-document-submit/utils.js index 9b11e8d05c78..05c619bb0c77 100644 --- a/packages/account/src/Components/poi/idv-document-submit/utils.js +++ b/packages/account/src/Components/poi/idv-document-submit/utils.js @@ -140,4 +140,11 @@ const idv_document_data = { sample_image: '', }, }, + zw: { + national_id: { + new_display_name: 'National ID', + example_format: '081234567F53', + sample_image: getImageLocation('zw_national_identity_card.png'), + }, + }, }; diff --git a/packages/bot-skeleton/src/scratch/blocks/Binary/Trade Definition/trade_definition_contracttype.js b/packages/bot-skeleton/src/scratch/blocks/Binary/Trade Definition/trade_definition_contracttype.js index f16faadceaed..5eeec35c0230 100755 --- a/packages/bot-skeleton/src/scratch/blocks/Binary/Trade Definition/trade_definition_contracttype.js +++ b/packages/bot-skeleton/src/scratch/blocks/Binary/Trade Definition/trade_definition_contracttype.js @@ -16,6 +16,9 @@ Blockly.Blocks.trade_definition_contracttype = { colour: Blockly.Colours.Special1.colour, colourSecondary: Blockly.Colours.Special1.colourSecondary, colourTertiary: Blockly.Colours.Special1.colourTertiary, + tooltip: localize( + 'If the contract type is “Both”, then the Purchase Conditions should include both Rise and Fall using the “Conditional Block"' + ), previousStatement: null, nextStatement: null, }); diff --git a/packages/bot-skeleton/src/scratch/hooks/css.js b/packages/bot-skeleton/src/scratch/hooks/css.js index 46223269d497..7b5ee267b38d 100644 --- a/packages/bot-skeleton/src/scratch/hooks/css.js +++ b/packages/bot-skeleton/src/scratch/hooks/css.js @@ -222,7 +222,7 @@ Blockly.Css.CONTENT = [ 'margin: 4px;', 'border-radius: 4px;', 'background: $colour_numPadBackground;', - 'color: $colour_numPadText;', + 'color: var(--text-general);', 'outline: none;', 'border: 1px solid $colour_numPadBorder;', 'cursor: pointer;', @@ -235,6 +235,7 @@ Blockly.Css.CONTENT = [ 'margin-top: 10%;', 'width: 80%;', 'height: 80%;', + 'filter: invert(1);', '}', '.blocklyNumPadButton:active {', diff --git a/packages/cashier/globals.d.ts b/packages/cashier/globals.d.ts index 25890045177a..40ebc5a15767 100644 --- a/packages/cashier/globals.d.ts +++ b/packages/cashier/globals.d.ts @@ -1,4 +1,2 @@ declare module '@deriv/components'; -declare module '@deriv/p2p'; -declare module '@deriv/translations'; declare module '@deriv/shared'; diff --git a/packages/cashier/src/components/cashier-container/virtual/virtual.tsx b/packages/cashier/src/components/cashier-container/virtual/virtual.tsx index ac903c10066c..1ec15974fac2 100644 --- a/packages/cashier/src/components/cashier-container/virtual/virtual.tsx +++ b/packages/cashier/src/components/cashier-container/virtual/virtual.tsx @@ -6,7 +6,7 @@ import { Text } from '@deriv/components'; import { isMobile } from '@deriv/shared'; import { Localize } from '@deriv/translations'; import { connect } from 'Stores/connect'; -import { TRootStore } from 'Types'; +import { RootStore } from 'Types'; import './virtual.scss'; type TVirtualProps = RouteComponentProps & { @@ -51,7 +51,7 @@ const Virtual = ({ is_dark_mode_on, toggleAccountsDialog }: TVirtualProps) => { ); }; -export default connect(({ ui }: TRootStore) => ({ +export default connect(({ ui }: RootStore) => ({ is_dark_mode_on: ui.is_dark_mode_on, toggleAccountsDialog: ui.toggleAccountsDialog, }))(withRouter(Virtual)); diff --git a/packages/cashier/src/components/cashier-locked/cashier-locked.tsx b/packages/cashier/src/components/cashier-locked/cashier-locked.tsx index 7555ff55071a..806231bb3603 100644 --- a/packages/cashier/src/components/cashier-locked/cashier-locked.tsx +++ b/packages/cashier/src/components/cashier-locked/cashier-locked.tsx @@ -4,7 +4,7 @@ import { Icon, Text } from '@deriv/components'; import { localize, Localize } from '@deriv/translations'; import { formatDate } from '@deriv/shared'; import { connect } from 'Stores/connect'; -import { TRootStore } from 'Types'; +import { RootStore } from 'Types'; type TAccount = NonNullable[0]; @@ -54,7 +54,7 @@ const CashierLocked = ({ let icon = 'IcCashierLocked'; let title = localize('Cashier is locked'); - let message = localize( + let message: string | JSX.Element = localize( 'Your cashier is currently locked. Please contact us via live chat to find out how to unlock it.' ); @@ -292,7 +292,7 @@ const CashierLocked = ({ ); }; -export default connect(({ client, modules }: TRootStore) => ({ +export default connect(({ client, modules }: RootStore) => ({ account_status: client.account_status, accounts: client.accounts, current_currency_type: client.current_currency_type, diff --git a/packages/cashier/src/components/crypto-fiat-converter/crypto-fiat-converter.tsx b/packages/cashier/src/components/crypto-fiat-converter/crypto-fiat-converter.tsx index 017d06270a8d..fe2c7394af87 100644 --- a/packages/cashier/src/components/crypto-fiat-converter/crypto-fiat-converter.tsx +++ b/packages/cashier/src/components/crypto-fiat-converter/crypto-fiat-converter.tsx @@ -4,7 +4,7 @@ import { DesktopWrapper, Input, Icon, MobileWrapper, Text, useInterval } from '@ import { getCurrencyDisplayCode } from '@deriv/shared'; import { localize, Localize } from '@deriv/translations'; import { connect } from 'Stores/connect'; -import { TRootStore, TReactChangeEvent, TReactChildren } from 'Types'; +import { RootStore, TReactChangeEvent, TReactChildren } from 'Types'; import './crypto-fiat-converter.scss'; type TTimerProps = { @@ -170,7 +170,7 @@ const CryptoFiatConverter = ({ ); }; -export default connect(({ modules }: TRootStore) => ({ +export default connect(({ modules }: RootStore) => ({ converter_from_amount: modules.cashier.crypto_fiat_converter.converter_from_amount, converter_from_error: modules.cashier.crypto_fiat_converter.converter_from_error, converter_to_error: modules.cashier.crypto_fiat_converter.converter_to_error, diff --git a/packages/cashier/src/components/crypto-transactions-history/crypto-transactions-cancel-modal.tsx b/packages/cashier/src/components/crypto-transactions-history/crypto-transactions-cancel-modal.tsx index bd76cfa576f5..773badbbd6e7 100644 --- a/packages/cashier/src/components/crypto-transactions-history/crypto-transactions-cancel-modal.tsx +++ b/packages/cashier/src/components/crypto-transactions-history/crypto-transactions-cancel-modal.tsx @@ -2,7 +2,7 @@ import React from 'react'; import { Button, Modal } from '@deriv/components'; import { localize, Localize } from '@deriv/translations'; import { connect } from 'Stores/connect'; -import { TRootStore } from 'Types'; +import { RootStore } from 'Types'; type TCryptoTransactionsCancelModalProps = { cancelCryptoTransaction: (selected_crypto_transaction_id: string) => void; @@ -45,7 +45,7 @@ const CryptoTransactionsCancelModal = ({ ); }; -export default connect(({ modules }: TRootStore) => ({ +export default connect(({ modules }: RootStore) => ({ cancelCryptoTransaction: modules.cashier.transaction_history.cancelCryptoTransaction, hideCryptoTransactionsCancelModal: modules.cashier.transaction_history.hideCryptoTransactionsCancelModal, is_cancel_modal_visible: modules.cashier.transaction_history.is_crypto_transactions_cancel_modal_visible, diff --git a/packages/cashier/src/components/crypto-transactions-history/crypto-transactions-history.tsx b/packages/cashier/src/components/crypto-transactions-history/crypto-transactions-history.tsx index 66b312dbd8d1..47c5a24fd6c4 100644 --- a/packages/cashier/src/components/crypto-transactions-history/crypto-transactions-history.tsx +++ b/packages/cashier/src/components/crypto-transactions-history/crypto-transactions-history.tsx @@ -3,7 +3,7 @@ import { DataList, Icon, Loading, MobileWrapper, Table, Text } from '@deriv/comp import { isDesktop, isMobile, routes } from '@deriv/shared'; import { localize, Localize } from '@deriv/translations'; import { connect } from 'Stores/connect'; -import { TRootStore, TCryptoTransactionDetails } from 'Types'; +import { RootStore, TCryptoTransactionDetails } from 'Types'; import CryptoTransactionsCancelModal from './crypto-transactions-cancel-modal'; import CryptoTransactionsStatusModal from './crypto-transactions-status-modal'; import CryptoTransactionsRenderer from './crypto-transactions-renderer'; @@ -102,7 +102,7 @@ const CryptoTransactionsHistory = ({ ); }; -export default connect(({ client, modules }: TRootStore) => ({ +export default connect(({ client, modules }: RootStore) => ({ crypto_transactions: modules.cashier.transaction_history.crypto_transactions, currency: client.currency, is_loading: modules.cashier.transaction_history.is_loading, diff --git a/packages/cashier/src/components/crypto-transactions-history/crypto-transactions-renderer.tsx b/packages/cashier/src/components/crypto-transactions-history/crypto-transactions-renderer.tsx index 88af614491d5..d282b5444bbb 100644 --- a/packages/cashier/src/components/crypto-transactions-history/crypto-transactions-renderer.tsx +++ b/packages/cashier/src/components/crypto-transactions-history/crypto-transactions-renderer.tsx @@ -5,7 +5,7 @@ import { epochToMoment, formatMoney, isMobile } from '@deriv/shared'; import { localize, Localize } from '@deriv/translations'; import { getStatus } from 'Constants/transaction-status'; import { connect } from 'Stores/connect'; -import { TRootStore, TCryptoTransactionDetails } from 'Types'; +import { RootStore, TCryptoTransactionDetails } from 'Types'; type TCryptoTransactionsRendererProps = { row: TCryptoTransactionDetails; @@ -304,7 +304,7 @@ const CryptoTransactionsRenderer = ({ ); }; -export default connect(({ client, modules }: TRootStore) => ({ +export default connect(({ client, modules }: RootStore) => ({ currency: client.currency, cancelCryptoTransaction: modules.cashier.transaction_history.cancelCryptoTransaction, showCryptoTransactionsCancelModal: modules.cashier.transaction_history.showCryptoTransactionsCancelModal, diff --git a/packages/cashier/src/components/crypto-transactions-history/crypto-transactions-status-modal.tsx b/packages/cashier/src/components/crypto-transactions-history/crypto-transactions-status-modal.tsx index c299ae10c408..7cb3aa5fbc0e 100644 --- a/packages/cashier/src/components/crypto-transactions-history/crypto-transactions-status-modal.tsx +++ b/packages/cashier/src/components/crypto-transactions-history/crypto-transactions-status-modal.tsx @@ -2,7 +2,7 @@ import React from 'react'; import { Button, Modal } from '@deriv/components'; import { localize } from '@deriv/translations'; import { connect } from 'Stores/connect'; -import { TReactMouseEvent, TRootStore } from 'Types'; +import { TReactMouseEvent, RootStore } from 'Types'; type TCryptoTransactionsStatusModalProps = { hideCryptoTransactionsStatusModal: (e: TReactMouseEvent) => void; @@ -34,7 +34,7 @@ const CryptoTransactionsStatusModal = ({ ); }; -export default connect(({ modules }: TRootStore) => ({ +export default connect(({ modules }: RootStore) => ({ hideCryptoTransactionsStatusModal: modules.cashier.transaction_history.hideCryptoTransactionsStatusModal, is_status_modal_visible: modules.cashier.transaction_history.is_crypto_transactions_status_modal_visible, selected_crypto_status: modules.cashier.transaction_history.selected_crypto_status, diff --git a/packages/cashier/src/components/error-dialog/error-dialog.tsx b/packages/cashier/src/components/error-dialog/error-dialog.tsx index b8419cb429c7..d30581334615 100644 --- a/packages/cashier/src/components/error-dialog/error-dialog.tsx +++ b/packages/cashier/src/components/error-dialog/error-dialog.tsx @@ -4,7 +4,7 @@ import { Dialog } from '@deriv/components'; import { localize, Localize } from '@deriv/translations'; import { routes } from '@deriv/shared'; import { connect } from 'Stores/connect'; -import { TRootStore, TError, TReactElement } from 'Types'; +import { RootStore, TError, TReactElement } from 'Types'; type TErrorDialogProps = { disableApp: () => void; @@ -148,7 +148,7 @@ const ErrorDialog = ({ disableApp, enableApp, error = {} }: TErrorDialogProps) = ); }; -export default connect(({ ui }: TRootStore) => ({ +export default connect(({ ui }: RootStore) => ({ disableApp: ui.disableApp, enableApp: ui.enableApp, }))(ErrorDialog); diff --git a/packages/cashier/src/components/funds-protection/funds-protection.tsx b/packages/cashier/src/components/funds-protection/funds-protection.tsx index 7470280414e8..43c59cc12dca 100644 --- a/packages/cashier/src/components/funds-protection/funds-protection.tsx +++ b/packages/cashier/src/components/funds-protection/funds-protection.tsx @@ -2,7 +2,7 @@ import React from 'react'; import { Icon, Button, Text } from '@deriv/components'; import { Localize, localize } from '@deriv/translations'; import { connect } from 'Stores/connect'; -import { TRootStore } from 'Types'; +import { RootStore } from 'Types'; import './funds-protection.scss'; type TFundsProtectionProps = { @@ -40,6 +40,6 @@ const FundsProtection = ({ submitFundsProtection }: TFundsProtectionProps) => { ); }; -export default connect(({ modules }: TRootStore) => ({ +export default connect(({ modules }: RootStore) => ({ submitFundsProtection: modules.cashier.deposit.submitFundsProtection, }))(FundsProtection); diff --git a/packages/cashier/src/components/no-balance/no-balance.tsx b/packages/cashier/src/components/no-balance/no-balance.tsx index b9be2e56d45d..cc14972dad4f 100644 --- a/packages/cashier/src/components/no-balance/no-balance.tsx +++ b/packages/cashier/src/components/no-balance/no-balance.tsx @@ -4,7 +4,7 @@ import { Button, Icon, Text } from '@deriv/components'; import { routes, getCurrencyDisplayCode } from '@deriv/shared'; import { localize, Localize } from '@deriv/translations'; import { connect } from 'Stores/connect'; -import { TRootStore } from 'Types'; +import { RootStore } from 'Types'; type TNoBalanceProps = RouteComponentProps & { currency: string; @@ -48,7 +48,7 @@ const NoBalance = ({ currency, history, is_deposit_locked, setTabIndex }: TNoBal }; export default withRouter( - connect(({ client, modules }: TRootStore) => ({ + connect(({ client, modules }: RootStore) => ({ currency: client.currency, is_deposit_locked: modules.cashier.deposit.is_deposit_locked, setTabIndex: modules.cashier.general_store.setCashierTabIndex, diff --git a/packages/cashier/src/components/recent-transaction/recent-transaction.tsx b/packages/cashier/src/components/recent-transaction/recent-transaction.tsx index 909b937e4914..6fedbccfed3e 100644 --- a/packages/cashier/src/components/recent-transaction/recent-transaction.tsx +++ b/packages/cashier/src/components/recent-transaction/recent-transaction.tsx @@ -4,7 +4,7 @@ import { ButtonLink, Text, Icon } from '@deriv/components'; import { Localize } from '@deriv/translations'; import { epochToMoment } from '@deriv/shared'; import { connect } from 'Stores/connect'; -import { TRootStore } from 'Types'; +import { RootStore } from 'Types'; import { getStatus } from 'Constants/transaction-status'; import './recent-transaction.scss'; @@ -132,7 +132,7 @@ const RecentTransaction = ({ ); }; -export default connect(({ modules, client }: TRootStore) => ({ +export default connect(({ modules, client }: RootStore) => ({ crypto_transactions: modules.cashier.transaction_history.crypto_transactions, currency: client.currency, onMount: modules.cashier.transaction_history.onMount, diff --git a/packages/cashier/src/pages/account-transfer/account-transfer-form/account-transfer-form.tsx b/packages/cashier/src/pages/account-transfer/account-transfer-form/account-transfer-form.tsx index 1caaefbaa2e7..b80c160ec557 100644 --- a/packages/cashier/src/pages/account-transfer/account-transfer-form/account-transfer-form.tsx +++ b/packages/cashier/src/pages/account-transfer/account-transfer-form/account-transfer-form.tsx @@ -1,7 +1,7 @@ import classNames from 'classnames'; import React from 'react'; import { Field, FieldProps, Formik, Form } from 'formik'; -import { Button, Dropdown, Icon, Input, Loading, Money, MobileWrapper, Text } from '@deriv/components'; +import { Button, Dropdown, Icon, Input, Loading, Money, Text } from '@deriv/components'; import { getDecimalPlaces, getCurrencyDisplayCode, @@ -170,7 +170,7 @@ const AccountTransferForm = ({ }: TAccountTransferFormProps) => { const [from_accounts, setFromAccounts] = React.useState({}); const [to_accounts, setToAccounts] = React.useState({}); - const [transfer_to_hint, setTransferToHint] = React.useState(); + const [transfer_to_hint, setTransferToHint] = React.useState(); const { daily_transfers } = account_limits; const mt5_remaining_transfers = daily_transfers?.mt5; @@ -202,6 +202,10 @@ const AccountTransferForm = ({ return undefined; }; + const shouldShowTransferButton = (amount: string) => { + return selected_from.currency === selected_to.currency ? !amount : !converter_from_amount; + }; + const getAccounts = (type: string, { is_mt, is_dxtrade }: TAccount) => { if (type === 'from') { if (is_mt) return mt_accounts_from; @@ -376,7 +380,7 @@ const AccountTransferForm = ({ validateOnBlur={false} enableReinitialize > - {({ errors, handleChange, isSubmitting, touched, setFieldValue, setFieldTouched, setFieldError }) => ( + {({ errors, handleChange, isSubmitting, setFieldValue, setFieldError, values }) => ( {isSubmitting || accounts_list.length === 0 ? (
@@ -406,8 +410,7 @@ const AccountTransferForm = ({ onChangeTransferFrom(e); handleChange(e); setFieldValue('amount', ''); - setFieldError('amount', ''); - setFieldTouched('amount', false); + setTimeout(() => setFieldError('amount', '')); }} error={selected_from.error} /> @@ -429,8 +432,7 @@ const AccountTransferForm = ({ onChange={(e: TReactChangeEvent) => { onChangeTransferTo(e); setFieldValue('amount', ''); - setFieldError('amount', ''); - setFieldTouched('amount', false); + setTimeout(() => setFieldError('amount', '')); }} hint={transfer_to_hint} error={selected_to.error} @@ -445,7 +447,6 @@ const AccountTransferForm = ({ setErrorMessage(''); handleChange(e); setAccountTransferAmount(e.target.value); - setFieldTouched('amount', true, false); }} className='cashier__input dc-input--no-placeholder account-transfer-form__input' classNameHint='account-transfer-form__hint' @@ -453,7 +454,7 @@ const AccountTransferForm = ({ name='amount' type='text' label={localize('Amount')} - error={touched.amount && errors.amount ? errors.amount : ''} + error={errors.amount ? errors.amount : ''} required trailing_icon={ selected_from.currency ? ( @@ -556,7 +557,9 @@ const AccountTransferForm = ({ !!selected_to.error || !+selected_from.balance || !!converter_from_error || - !!converter_to_error + !!converter_to_error || + !!errors.amount || + shouldShowTransferButton(values.amount) } primary large diff --git a/packages/cashier/src/pages/p2p-cashier/__tests__/p2p-cashier.spec.tsx b/packages/cashier/src/pages/p2p-cashier/__tests__/p2p-cashier.spec.js similarity index 96% rename from packages/cashier/src/pages/p2p-cashier/__tests__/p2p-cashier.spec.tsx rename to packages/cashier/src/pages/p2p-cashier/__tests__/p2p-cashier.spec.js index 0bc7b1a2f968..e8460701be42 100644 --- a/packages/cashier/src/pages/p2p-cashier/__tests__/p2p-cashier.spec.tsx +++ b/packages/cashier/src/pages/p2p-cashier/__tests__/p2p-cashier.spec.js @@ -16,7 +16,7 @@ jest.mock('@deriv/components', () => ({ Loading: () =>
Loading
, })); -jest.mock('@deriv/p2p', () => jest.fn(() => 'P2P')); +jest.mock('@deriv/p2p', () => () =>
P2P
); describe('', () => { const history = createBrowserHistory(); diff --git a/packages/cashier/src/pages/p2p-cashier/index.js b/packages/cashier/src/pages/p2p-cashier/index.js new file mode 100644 index 000000000000..ada6d8959122 --- /dev/null +++ b/packages/cashier/src/pages/p2p-cashier/index.js @@ -0,0 +1,3 @@ +import P2PCashier from './p2p-cashier.jsx'; + +export default P2PCashier; diff --git a/packages/cashier/src/pages/p2p-cashier/index.ts b/packages/cashier/src/pages/p2p-cashier/index.ts deleted file mode 100644 index 4682987fd223..000000000000 --- a/packages/cashier/src/pages/p2p-cashier/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import P2PCashier from './p2p-cashier'; - -export default P2PCashier; diff --git a/packages/cashier/src/pages/p2p-cashier/p2p-cashier.tsx b/packages/cashier/src/pages/p2p-cashier/p2p-cashier.jsx similarity index 65% rename from packages/cashier/src/pages/p2p-cashier/p2p-cashier.tsx rename to packages/cashier/src/pages/p2p-cashier/p2p-cashier.jsx index d83f4b8f127c..dc584d670e05 100644 --- a/packages/cashier/src/pages/p2p-cashier/p2p-cashier.tsx +++ b/packages/cashier/src/pages/p2p-cashier/p2p-cashier.jsx @@ -1,47 +1,16 @@ import React from 'react'; -import { RouteComponentProps } from 'react-router'; +import PropTypes from 'prop-types'; import { withRouter } from 'react-router-dom'; -import P2P from '@deriv/p2p'; -import { Loading } from '@deriv/components'; -import { routes, WS } from '@deriv/shared'; import { getLanguage } from '@deriv/translations'; -import { get, init, timePromise } from 'Utils/server_time'; +import { routes, WS } from '@deriv/shared'; +import { Loading } from '@deriv/components'; +import P2P from '@deriv/p2p'; import { connect } from 'Stores/connect'; -import { TClientStore, TCommonStore, TNotificationStore, TRootStore, TUiStore } from 'Types'; - -type TLocalCurrencyConfig = { - currency: string; - decimal_places: number; -}; - -type TP2PCashierProps = RouteComponentProps & { - addNotificationMessage: TNotificationStore['addNotificationMessage']; - balance: TClientStore['balance']; - currency: TClientStore['currency']; - current_focus: TUiStore['current_focus']; - filterNotificationMessages: TNotificationStore['filterNotificationMessages']; - is_dark_mode_on: TUiStore['is_dark_mode_on']; - is_logging_in: TClientStore['is_logging_in']; - is_mobile: TUiStore['is_mobile']; - is_virtual: TClientStore['is_virtual']; - local_currency_config: TLocalCurrencyConfig; - loginid: TClientStore['loginid']; - Notifications: TUiStore['notification_messages_ui']; - platform: TCommonStore['platform']; - refreshNotifications: TNotificationStore['refreshNotifications']; - removeNotificationByKey: TNotificationStore['removeNotificationByKey']; - removeNotificationMessage: TNotificationStore['removeNotificationMessage']; - residence: TClientStore['residence']; - setCurrentFocus: TUiStore['setCurrentFocus']; - // TODO: replace setNotificationCount and setOnRemount types when cashier.general_store will be typed - setNotificationCount: (value: number) => void; - setOnRemount: (func: () => void) => void; -}; +import { get, init, timePromise } from 'Utils/server_time'; /* P2P will use the same websocket connection as Deriv/Binary, we need to pass it as a prop */ const P2PCashier = ({ addNotificationMessage, - balance, currency, current_focus, filterNotificationMessages, @@ -59,23 +28,63 @@ const P2PCashier = ({ removeNotificationByKey, removeNotificationMessage, residence, - setCurrentFocus, setNotificationCount, + setCurrentFocus, + balance, setOnRemount, -}: TP2PCashierProps) => { - const [order_id, setOrderId] = React.useState(null); +}) => { + const [order_id, setOrderId] = React.useState(null); + const [action_param, setActionParam] = React.useState(); + const [code_param, setCodeParam] = React.useState(); + const server_time = { get, init, timePromise, }; + React.useEffect(() => { + const url_params = new URLSearchParams(location.search); + let passed_order_id; + + setActionParam(url_params.get('action')); + if (is_mobile) { + setCodeParam(localStorage.getItem('verification_code.p2p_order_confirm')); + } else if (!code_param) { + if (url_params.has('code')) { + setCodeParam(url_params.get('code')); + } else if (localStorage.getItem('verification_code.p2p_order_confirm')) { + setCodeParam(localStorage.getItem('verification_code.p2p_order_confirm')); + } + } + + // Different emails give us different params (order / order_id), + // don't remove order_id since it's consistent for mobile and web for 2FA + if (url_params.has('order_id')) { + passed_order_id = url_params.get('order_id'); + } else if (url_params.has('order')) { + passed_order_id = url_params.get('order'); + } + + if (passed_order_id) { + setQueryOrder(passed_order_id); + } + + return () => setQueryOrder(null); + }, [setQueryOrder]); + const setQueryOrder = React.useCallback( - (input_order_id: string | null) => { + input_order_id => { const current_query_params = new URLSearchParams(location.search); - if (current_query_params.has('order')) { + if (is_mobile) { + current_query_params.delete('action'); + current_query_params.delete('code'); + } + + if (current_query_params.has('order_id') || current_query_params.has('order')) { current_query_params.delete('order'); + current_query_params.delete('order_id'); } if (input_order_id) { @@ -103,17 +112,6 @@ const P2PCashier = ({ [history, location.hash, location.search, order_id] ); - React.useEffect(() => { - const url_params = new URLSearchParams(location.search); - const passed_order_id = url_params.get('order'); - - if (passed_order_id) { - setQueryOrder(passed_order_id); - } - - return () => setQueryOrder(null); - }, [location.search, setQueryOrder]); - if (is_logging_in) { return ; } @@ -121,8 +119,9 @@ const P2PCashier = ({ return ( ); }; -export default connect(({ client, common, modules, notifications, ui }: TRootStore) => ({ +P2PCashier.propTypes = { + addNotificationMessage: PropTypes.func, + balance: PropTypes.string, + currency: PropTypes.string, + current_focus: PropTypes.string, + filterNotificationMessages: PropTypes.func, + history: PropTypes.object, + is_dark_mode_on: PropTypes.bool, + is_logging_in: PropTypes.bool, + is_mobile: PropTypes.bool, + is_virtual: PropTypes.bool, + local_currency_config: PropTypes.object, + location: PropTypes.object, + loginid: PropTypes.string, + platform: PropTypes.any, + refreshNotifications: PropTypes.func, + removeNotificationByKey: PropTypes.func, + removeNotificationMessage: PropTypes.func, + residence: PropTypes.string, + setNotificationCount: PropTypes.func, + setCurrentFocus: PropTypes.func, +}; + +export default connect(({ client, common, modules, notifications, ui }) => ({ addNotificationMessage: notifications.addNotificationMessage, balance: client.balance, currency: client.currency, diff --git a/packages/cashier/src/pages/payment-agent/payment-agent-receipt/payment-agent-receipt.scss b/packages/cashier/src/pages/payment-agent/payment-agent-receipt/payment-agent-receipt.scss index 708147e3e99f..fd8d6b736337 100644 --- a/packages/cashier/src/pages/payment-agent/payment-agent-receipt/payment-agent-receipt.scss +++ b/packages/cashier/src/pages/payment-agent/payment-agent-receipt/payment-agent-receipt.scss @@ -38,24 +38,21 @@ padding-left: 0; } } + .cashier__form-submit { + row-gap: 1rem; + } } & .cashier__form-submit { - text-align: center; + display: flex; justify-content: center; - flex-flow: row; + align-items: center; + column-gap: 0.8rem; margin: 2.4rem 0 3.2rem; &-button { margin: 0; max-width: 18rem; - - &:first-child { - margin-right: 0.4rem; - } - &:last-child { - margin-left: 0.4rem; - } } } &__transferred-contact { diff --git a/packages/cashier/src/stores/__tests__/payment-agent-store.spec.js b/packages/cashier/src/stores/__tests__/payment-agent-store.spec.js index aa72bc89164a..499788a6ade4 100644 --- a/packages/cashier/src/stores/__tests__/payment-agent-store.spec.js +++ b/packages/cashier/src/stores/__tests__/payment-agent-store.spec.js @@ -13,8 +13,8 @@ describe('PaymentAgentStore', () => { max_withdrawal: '2000', min_withdrawal: '10', email: 'pa@example.com', - telephone: '+12345678', - url: 'http://www.pa.com', + phone_numbers: [{ phone_number: '+12345678' }], + urls: [{ url: 'http://www.pa.com' }], supported_payment_methods: [{ payment_method: 'Visa' }], }, { @@ -23,8 +23,8 @@ describe('PaymentAgentStore', () => { max_withdrawal: '2000', min_withdrawal: '10', email: 'pa@example.com', - telephone: '+12345678', - url: 'http://www.pa.com', + phone_numbers: [{ phone_number: '+12345678' }], + urls: [{ url: 'http://www.pa.com' }], supported_payment_methods: [{ payment_method: 'Visa' }, { payment_method: 'Mastercard' }], }, ], @@ -32,17 +32,17 @@ describe('PaymentAgentStore', () => { const mocked_payment_agents = [ { email: 'pa@example.com', - phones: '+12345678', + phones: [{ phone_number: '+12345678' }], name: 'Payment Agent of CR90000000', supported_banks: [{ payment_method: 'Visa' }], - urls: 'http://www.pa.com', + urls: [{ url: 'http://www.pa.com' }], }, { email: 'pa@example.com', - phones: '+12345678', + phones: [{ phone_number: '+12345678' }], name: 'Payment Agent of CR90000002', supported_banks: [{ payment_method: 'Visa' }, { payment_method: 'Mastercard' }], - urls: 'http://www.pa.com', + urls: [{ url: 'http://www.pa.com' }], }, ]; const mocked_withdrawal_request = { @@ -162,10 +162,10 @@ describe('PaymentAgentStore', () => { expect.arrayContaining([ { email: 'pa@example.com', - phones: '+12345678', + phones: [{ phone_number: '+12345678' }], name: 'Payment Agent of CR90000000', supported_banks: [{ payment_method: 'Visa' }], - urls: 'http://www.pa.com', + urls: [{ url: 'http://www.pa.com' }], }, ]) ); @@ -191,10 +191,10 @@ describe('PaymentAgentStore', () => { expect.arrayContaining([ { email: 'pa@example.com', - phones: '+12345678', + phones: [{ phone_number: '+12345678' }], name: 'Payment Agent of CR90000002', supported_banks: [{ payment_method: 'Visa' }, { payment_method: 'Mastercard' }], - urls: 'http://www.pa.com', + urls: [{ url: 'http://www.pa.com' }], }, ]) ); @@ -268,8 +268,8 @@ describe('PaymentAgentStore', () => { max_withdrawal: '2000', min_withdrawal: '10', email: 'pa@example.com', - telephone: '+12345678', - url: 'http://www.pa.com', + phone_numbers: [{ phone_number: '+12345678' }], + urls: [{ url: 'http://www.pa.com' }], }; payment_agent_store.addPaymentAgent(payment_agent); @@ -281,8 +281,8 @@ describe('PaymentAgentStore', () => { max_withdrawal: '2000', min_withdrawal: '10', email: 'pa@example.com', - phone: '+12345678', - url: 'http://www.pa.com', + phone: [{ phone_number: '+12345678' }], + url: [{ url: 'http://www.pa.com' }], }, ]) ); @@ -302,8 +302,8 @@ describe('PaymentAgentStore', () => { max_withdrawal: '2000', min_withdrawal: '10', email: 'pa@example.com', - phone: '+12345678', - url: 'http://www.pa.com', + phone: [{ phone_number: '+12345678' }], + url: [{ url: 'http://www.pa.com' }], }, ]) ); @@ -384,8 +384,8 @@ describe('PaymentAgentStore', () => { payment_agent_email: 'pa@example.com', payment_agent_id: 'CR90000000', payment_agent_name: 'Payment Agent of CR90000000', - payment_agent_phone: '+12345678', - payment_agent_url: 'http://www.pa.com', + payment_agent_phone: [{ phone_number: '+12345678' }], + payment_agent_url: [{ url: 'http://www.pa.com' }], }); expect(payment_agent_store.is_withdraw_successful).toBeTruthy(); expect(payment_agent_store.is_try_withdraw_successful).toBeFalsy(); diff --git a/packages/cashier/src/stores/payment-agent-store.js b/packages/cashier/src/stores/payment-agent-store.js index 95c3acafaa48..10d512a1188e 100644 --- a/packages/cashier/src/stores/payment-agent-store.js +++ b/packages/cashier/src/stores/payment-agent-store.js @@ -208,8 +208,8 @@ export default class PaymentAgentStore { max_withdrawal: payment_agent.max_withdrawal, min_withdrawal: payment_agent.min_withdrawal, email: payment_agent.email, - phone: payment_agent.telephone, - url: payment_agent.url, + phone: payment_agent.phone_numbers, + url: payment_agent.urls, }); } diff --git a/packages/cashier/src/types/stores/index.ts b/packages/cashier/src/types/stores/index.ts index f2f2dba7d229..6acec19f6868 100644 --- a/packages/cashier/src/types/stores/index.ts +++ b/packages/cashier/src/types/stores/index.ts @@ -1,5 +1,4 @@ export * from './client-store.types'; export * from './common-store.types'; -export * from './notification-store.types'; export * from './root-store.types'; export * from './ui-store.types'; diff --git a/packages/cashier/src/types/stores/notification-store.types.ts b/packages/cashier/src/types/stores/notification-store.types.ts deleted file mode 100644 index f5759f5d991b..000000000000 --- a/packages/cashier/src/types/stores/notification-store.types.ts +++ /dev/null @@ -1,52 +0,0 @@ -type TArgsRemoveNotificationByKey = { - key: string; -}; - -type TArgsRemoveNotificationMessage = { - key: string; - should_show_again?: boolean; -}; - -type TButtonProps = { - onClick: () => void; - text: string; -}; - -type TNotificationMessage = { - action?: { - onClick: () => void; - route?: string; - text: string; - }; - className?: string; - cta_btn?: TButtonProps; - is_disposable?: boolean; - is_persistent?: boolean; - header: string; - header_popup?: string; - img_alt?: string; - img_src?: string; - key: string; - message: string | JSX.Element; - message_popup?: string; - platform?: string; - primary_btn?: TButtonProps; - secondary_btn?: TButtonProps; - should_hide_close_btn?: boolean; - timeout?: number; - timeoutMessage?: (remaining: number | string) => string; - type: string; -}; - -type TNotification = - | TNotificationMessage - | ((withdrawal_locked: boolean, deposit_locked: boolean) => TNotificationMessage) - | ((excluded_until: number) => TNotificationMessage); - -export type TNotificationStore = { - addNotificationMessage: (message: TNotification) => void; - filterNotificationMessages: () => void; - refreshNotifications: () => void; - removeNotificationByKey: (obj: TArgsRemoveNotificationByKey) => void; - removeNotificationMessage: (obj: TArgsRemoveNotificationMessage) => void; -}; diff --git a/packages/cashier/src/types/stores/root-store.types.ts b/packages/cashier/src/types/stores/root-store.types.ts index b11f189120db..323579fd932f 100644 --- a/packages/cashier/src/types/stores/root-store.types.ts +++ b/packages/cashier/src/types/stores/root-store.types.ts @@ -1,12 +1,12 @@ import { TClientStore } from './client-store.types'; import { TCommonStore } from './common-store.types'; import { TUiStore } from './ui-store.types'; -import { TNotificationStore } from './notification-store.types'; -export type TRootStore = { +export type RootStore = { client: TClientStore; common: TCommonStore; modules: any; - notifications: TNotificationStore; ui: TUiStore; }; + +export type TRootStore = RootStore; diff --git a/packages/cashier/src/types/stores/ui-store.types.ts b/packages/cashier/src/types/stores/ui-store.types.ts index 524596e9f42d..078110fee212 100644 --- a/packages/cashier/src/types/stores/ui-store.types.ts +++ b/packages/cashier/src/types/stores/ui-store.types.ts @@ -3,7 +3,6 @@ export type TUiStore = { is_cashier_visible: boolean; is_dark_mode_on: boolean; is_mobile: boolean; - notification_messages_ui: JSX.Element; disableApp: () => void; enableApp: () => void; setCurrentFocus: (value: string) => void; diff --git a/packages/cashier/tsconfig.json b/packages/cashier/tsconfig.json index 210d04896479..9975901c2274 100644 --- a/packages/cashier/tsconfig.json +++ b/packages/cashier/tsconfig.json @@ -2,19 +2,18 @@ "extends": "../../tsconfig.json", "compilerOptions": { "paths": { - "Components/*": ["components/*"], - "Config/*": ["config/*"], - "Constants/*":["constants/*"], - "Containers/*": ["containers/*"], - "Images/*": ["public/images/*"], - "Pages/*": ["pages/*"], - "Stores/*": ["stores/*"], - "Types": ["types"], - "Utils/*": ["utils/*"], + "Components/*": ["src/components/*"], + "Config/*": ["src/config/*"], + "Constants/*": ["src/constants/*"], + "Containers/*": ["src/containers/*"], + "Pages/*": ["src/pages/*"], + "Stores/*": ["src/stores/*"], + "Types": ["src/types"], + "Utils/*": ["src/utils/*"], + "@deriv/*": ["../*/src"] }, "outDir": "./dist", - "rootDir": "./src", - "baseUrl": "src", + "baseUrl": "./" }, - "include": ["./src", "./src/**/*.ts", "./src/**/*.tsx", "globals.d.ts"] + "include": ["src", "globals.d.ts"] } diff --git a/packages/cfd/src/Containers/jurisdiction-modal-content.tsx b/packages/cfd/src/Containers/jurisdiction-modal-content.tsx index 7211611ddf8f..f32a05739fef 100644 --- a/packages/cfd/src/Containers/jurisdiction-modal-content.tsx +++ b/packages/cfd/src/Containers/jurisdiction-modal-content.tsx @@ -173,7 +173,7 @@ const JurisdictionCard = ({ if (!is_fully_authenticated) return (
- +
diff --git a/packages/cfd/src/sass/cfd-dashboard.scss b/packages/cfd/src/sass/cfd-dashboard.scss index 377b084a5a96..e2d68681e4a2 100644 --- a/packages/cfd/src/sass/cfd-dashboard.scss +++ b/packages/cfd/src/sass/cfd-dashboard.scss @@ -1507,6 +1507,7 @@ .cfd-personal-details-modal { grid-template-rows: 8rem minmax(10rem, 1fr); + overflow-y: scroll; &__heading-container { padding-top: 2.4rem; diff --git a/packages/components/src/components/calendar/calendar-header.jsx b/packages/components/src/components/calendar/calendar-header.jsx index b11c28561cdd..359a138e1498 100644 --- a/packages/components/src/components/calendar/calendar-header.jsx +++ b/packages/components/src/components/calendar/calendar-header.jsx @@ -2,7 +2,7 @@ import PropTypes from 'prop-types'; import React from 'react'; import { addMonths, addYears, subMonths, subYears, toMoment } from '@deriv/shared'; import Button from './calendar-button.jsx'; -import { month_headers, getCentury, getDecade } from './helpers'; +import { getCentury, getDecade } from './helpers'; const Header = ({ calendar_date, @@ -77,7 +77,7 @@ const Header = ({ + + + ); +}; + +EmailLinkVerifiedModal.propTypes = { + amount: PropTypes.string, + currency: PropTypes.string, + is_email_link_verified_modal_open: PropTypes.bool, + onClickConfirm: PropTypes.func, + setIsEmailLinkVerifiedModalOpen: PropTypes.func, +}; + +export default EmailLinkVerifiedModal; diff --git a/packages/p2p/src/components/email-link-verified-modal/email-link-verified-modal.scss b/packages/p2p/src/components/email-link-verified-modal/email-link-verified-modal.scss new file mode 100644 index 000000000000..e5b0c2fbb694 --- /dev/null +++ b/packages/p2p/src/components/email-link-verified-modal/email-link-verified-modal.scss @@ -0,0 +1,13 @@ +.email-verified-modal { + align-items: center; + display: flex; + flex-direction: column; + + &--footer { + align-self: center; + } + + &--text { + margin: 2.4rem 0; + } +} diff --git a/packages/p2p/src/components/email-link-verified-modal/index.js b/packages/p2p/src/components/email-link-verified-modal/index.js new file mode 100644 index 000000000000..35446e1c3a44 --- /dev/null +++ b/packages/p2p/src/components/email-link-verified-modal/index.js @@ -0,0 +1,4 @@ +import EmailLinkVerifiedModal from './email-link-verified-modal.jsx'; +import './email-link-verified-modal.scss'; + +export default EmailLinkVerifiedModal; diff --git a/packages/p2p/src/components/email-verification-modal/email-verification-modal.jsx b/packages/p2p/src/components/email-verification-modal/email-verification-modal.jsx new file mode 100644 index 000000000000..b17d9a663e86 --- /dev/null +++ b/packages/p2p/src/components/email-verification-modal/email-verification-modal.jsx @@ -0,0 +1,109 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import { Button, Icon, Modal, Text } from '@deriv/components'; +import { Localize } from 'Components/i18next'; + +const EmailVerificationModal = ({ + email_address, + is_email_verification_modal_open, + onClickResendEmailButton, + setIsEmailVerificationModalOpen, + should_show_resend_email_button = true, + // TODO: Uncomment when time is available in BE response + // remaining_time, + // verification_link_expiry_time, +}) => { + const [should_show_reasons_if_no_email, setShouldShowReasonsIfNoEmail] = React.useState(false); + + return ( + <>} + toggleModal={() => setIsEmailVerificationModalOpen(false)} + width='440px' + > + + + + ]} + values={{ email_address }} + /> + + + {/* TODO: Uncomment when time is available in BE response */} + + + setShouldShowReasonsIfNoEmail(true)} + size='xs' + weight='bold' + > + + + {should_show_reasons_if_no_email && ( + +
+ + + + +
+
+ + + + +
+
+ + + + +
+
+ + + + +
+
+ )} +
+ {should_show_resend_email_button && should_show_reasons_if_no_email && ( + + + + )} +
+ ); +}; + +EmailVerificationModal.propTypes = { + email_address: PropTypes.string, + is_email_verification_modal_open: PropTypes.bool, + onClickResendEmailButton: PropTypes.func, + // TODO: Uncomment when time is available in BE response + // remaining_time: PropTypes.string, + setIsEmailVerificationModalOpen: PropTypes.func, + should_show_resend_email_button: PropTypes.bool, + // TODO: Uncomment when time is available in BE response + // verification_link_expiry_time: PropTypes.number, +}; + +export default EmailVerificationModal; diff --git a/packages/p2p/src/components/email-verification-modal/email-verification-modal.scss b/packages/p2p/src/components/email-verification-modal/email-verification-modal.scss new file mode 100644 index 000000000000..ad8d834fa79b --- /dev/null +++ b/packages/p2p/src/components/email-verification-modal/email-verification-modal.scss @@ -0,0 +1,42 @@ +.dc-modal__container_email-verification-modal { + max-height: 80vh; + overflow: auto; +} + +.email-verification-modal { + &--body { + align-items: center; + display: flex; + flex-direction: column; + } + + &--email_text { + margin: 2.4rem 0; + } + + &--footer { + @include mobile { + justify-content: center; + } + } + + &--reason { + display: flex; + flex-direction: row; + gap: 1.6rem; + margin: 2.4rem 0; + + &__text { + max-width: 34rem; + } + } + + &--receive_email_text { + cursor: pointer; + margin: 3rem 0 0.6rem; + + @include mobile { + margin: 3rem 0 2.6rem; + } + } +} diff --git a/packages/p2p/src/components/email-verification-modal/index.js b/packages/p2p/src/components/email-verification-modal/index.js new file mode 100644 index 000000000000..6101a5043db1 --- /dev/null +++ b/packages/p2p/src/components/email-verification-modal/index.js @@ -0,0 +1,4 @@ +import EmailVerificationModal from './email-verification-modal.jsx'; +import './email-verification-modal.scss'; + +export default EmailVerificationModal; diff --git a/packages/p2p/src/components/error-modal/error-modal.jsx b/packages/p2p/src/components/error-modal/error-modal.jsx new file mode 100644 index 000000000000..05a356c5d7cc --- /dev/null +++ b/packages/p2p/src/components/error-modal/error-modal.jsx @@ -0,0 +1,24 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import { Button, Modal } from '@deriv/components'; +import { Localize } from 'Components/i18next'; + +const ErrorModal = ({ error_message, error_modal_title, is_error_modal_open, setIsErrorModalOpen }) => { + return ( + + {error_message} + + + + + ); +}; + +ErrorModal.propTypes = { + error_message: PropTypes.string, + error_modal_title: PropTypes.string, + is_error_modal_open: PropTypes.bool, + setIsErrorModalOpen: PropTypes.func, +}; diff --git a/packages/p2p/src/components/error-modal/index.js b/packages/p2p/src/components/error-modal/index.js new file mode 100644 index 000000000000..1e38a565cb4c --- /dev/null +++ b/packages/p2p/src/components/error-modal/index.js @@ -0,0 +1,3 @@ +import ErrorModal from './error-modal.jsx'; + +export default ErrorModal; diff --git a/packages/p2p/src/components/invalid-verification-link-modal/index.js b/packages/p2p/src/components/invalid-verification-link-modal/index.js new file mode 100644 index 000000000000..bf5d817dfe0e --- /dev/null +++ b/packages/p2p/src/components/invalid-verification-link-modal/index.js @@ -0,0 +1,4 @@ +import InvalidVerificationLinkModal from './invalid-verification-link-modal.jsx'; +import './invalid-verification-link-modal.scss'; + +export default InvalidVerificationLinkModal; diff --git a/packages/p2p/src/components/invalid-verification-link-modal/invalid-verification-link-modal.jsx b/packages/p2p/src/components/invalid-verification-link-modal/invalid-verification-link-modal.jsx new file mode 100644 index 000000000000..640d18aef1a2 --- /dev/null +++ b/packages/p2p/src/components/invalid-verification-link-modal/invalid-verification-link-modal.jsx @@ -0,0 +1,56 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import { Button, Icon, Modal, Text } from '@deriv/components'; +import { Localize } from 'Components/i18next'; + +const InvalidVerificationLinkModal = ({ + invalid_verification_link_error_message, + is_invalid_verification_link_modal_open, + onClickGetNewLinkButton, + setIsInvalidVerificationLinkModalOpen, + // TODO: Uncomment when time is available in BE response + // verification_link_expiry_time, +}) => { + return ( + <>} + toggleModal={() => setIsInvalidVerificationLinkModalOpen(false)} + width='440px' + > + + + + + + + {invalid_verification_link_error_message} + + + + + + + ); +}; + +InvalidVerificationLinkModal.propTypes = { + invalid_verification_link_error_message: PropTypes.string, + is_invalid_verification_link_modal_open: PropTypes.bool, + onClickGetNewLinkButton: PropTypes.func, + setIsInvalidVerificationLinkModalOpen: PropTypes.func, + // TODO: Uncomment when time is available in BE response + // verification_link_expiry_time: PropTypes.number, +}; + +export default InvalidVerificationLinkModal; diff --git a/packages/p2p/src/components/invalid-verification-link-modal/invalid-verification-link-modal.scss b/packages/p2p/src/components/invalid-verification-link-modal/invalid-verification-link-modal.scss new file mode 100644 index 000000000000..887366940e0f --- /dev/null +++ b/packages/p2p/src/components/invalid-verification-link-modal/invalid-verification-link-modal.scss @@ -0,0 +1,13 @@ +.invalid-verification-link-modal { + align-items: center; + display: flex; + flex-direction: column; + + &--footer { + align-self: center; + } + + &--text { + margin: 2.4rem 0; + } +} diff --git a/packages/p2p/src/components/loading-modal/index.js b/packages/p2p/src/components/loading-modal/index.js new file mode 100644 index 000000000000..41606f6895e6 --- /dev/null +++ b/packages/p2p/src/components/loading-modal/index.js @@ -0,0 +1,3 @@ +import LoadingModal from './loading-modal.jsx'; + +export default LoadingModal; diff --git a/packages/p2p/src/components/loading-modal/loading-modal.jsx b/packages/p2p/src/components/loading-modal/loading-modal.jsx new file mode 100644 index 000000000000..7ff444d16f41 --- /dev/null +++ b/packages/p2p/src/components/loading-modal/loading-modal.jsx @@ -0,0 +1,17 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import { Loading, Modal } from '@deriv/components'; + +const LoadingModal = ({ is_loading_modal_open }) => { + return ( + + + + ); +}; + +LoadingModal.propTypes = { + is_loading_modal_open: PropTypes.bool, +}; + +export default LoadingModal; diff --git a/packages/p2p/src/components/order-details/order-details-cancel-modal.jsx b/packages/p2p/src/components/order-details/order-details-cancel-modal.jsx index dde71eedf3bd..e327158eff91 100644 --- a/packages/p2p/src/components/order-details/order-details-cancel-modal.jsx +++ b/packages/p2p/src/components/order-details/order-details-cancel-modal.jsx @@ -56,7 +56,7 @@ const OrderDetailsCancelModal = ({ hideCancelOrderModal, order_id, should_show_c ) : ( { hideConfirmOrderModal(); - order_store.confirmOrderRequest(id); - if (!is_buy_order_for_user) { - clearTimeout(wait); - - const wait = setTimeout(() => { - order_store.setIsRatingModalOpen(true); - }, 250); - } + setIsCheckboxChecked(false); + order_store.confirmOrderRequest(id, is_buy_order_for_user); }} > {is_buy_order_for_user ? ( diff --git a/packages/p2p/src/components/order-details/order-details-footer.jsx b/packages/p2p/src/components/order-details/order-details-footer.jsx index 4e83d97faf40..7885ba6090aa 100644 --- a/packages/p2p/src/components/order-details/order-details-footer.jsx +++ b/packages/p2p/src/components/order-details/order-details-footer.jsx @@ -11,6 +11,7 @@ import OrderDetailsConfirmModal from './order-details-confirm-modal.jsx'; const OrderDetailsFooter = observer(() => { const { order_store } = useStores(); const { + // id, is_buy_order_for_user, should_show_cancel_and_paid_button, should_show_complain_and_received_button, @@ -42,6 +43,14 @@ const OrderDetailsFooter = observer(() => { const hideConfirmOrderModal = () => setShouldShowConfirmModal(false); const showConfirmOrderModal = () => setShouldShowConfirmModal(true); + // TODO: Uncomment this when we're ready to remove the modal + // const showConfirmOrderModal = () => { + // if (is_buy_order_for_user) { + // setShouldShowConfirmModal(true); + // } else { + // order_store.confirmOrderRequest(id); + // } + // }; if (should_show_cancel_and_paid_button) { return ( diff --git a/packages/p2p/src/components/order-details/order-details-wrapper.jsx b/packages/p2p/src/components/order-details/order-details-wrapper.jsx index 8f43b341e0ab..e08e8fea5f53 100644 --- a/packages/p2p/src/components/order-details/order-details-wrapper.jsx +++ b/packages/p2p/src/components/order-details/order-details-wrapper.jsx @@ -6,7 +6,7 @@ import PageReturn from 'Components/page-return/page-return.jsx'; import { useStores } from 'Stores'; import OrderDetailsFooter from 'Components/order-details/order-details-footer.jsx'; -const OrderDetailsWrapper = ({ children, onPageReturn, page_title }) => { +const OrderDetailsWrapper = ({ children, page_title }) => { const { order_store, sendbird_store } = useStores(); return isMobile() ? (
@@ -16,7 +16,7 @@ const OrderDetailsWrapper = ({ children, onPageReturn, page_title }) => { height_offset='80px' is_flex is_modal_open - pageHeaderReturnFn={onPageReturn} + pageHeaderReturnFn={order_store.onPageReturn} page_header_text={page_title} renderPageHeaderTrailingIcon={() => ( {
) : ( - + {children} ); @@ -46,7 +46,6 @@ const OrderDetailsWrapper = ({ children, onPageReturn, page_title }) => { OrderDetailsWrapper.propTypes = { children: PropTypes.any, - onPageReturn: PropTypes.func, page_title: PropTypes.string, }; diff --git a/packages/p2p/src/components/order-details/order-details.jsx b/packages/p2p/src/components/order-details/order-details.jsx index d0421171477c..24b4be6c0d19 100644 --- a/packages/p2p/src/components/order-details/order-details.jsx +++ b/packages/p2p/src/components/order-details/order-details.jsx @@ -1,11 +1,11 @@ import classNames from 'classnames'; import React from 'react'; -import PropTypes from 'prop-types'; import { Button, HintBox, Icon, Text, ThemedScrollbars } from '@deriv/components'; import { formatMoney, isDesktop, isMobile } from '@deriv/shared'; import { observer } from 'mobx-react-lite'; import { Localize, localize } from 'Components/i18next'; import Chat from 'Components/orders/chat/chat.jsx'; +import EmailVerificationModal from 'Components/email-verification-modal'; import RatingModal from 'Components/rating-modal'; import StarRating from 'Components/star-rating'; import UserRatingButton from 'Components/user-rating-button'; @@ -20,9 +20,13 @@ import PaymentMethodAccordionContent from './payment-method-accordion-content.js import MyProfileSeparatorContainer from '../my-profile/my-profile-separator-container'; import { setDecimalPlaces, removeTrailingZeros, roundOffDecimal } from 'Utils/format-value'; import 'Components/order-details/order-details.scss'; +import LoadingModal from '../loading-modal'; +import InvalidVerificationLinkModal from '../invalid-verification-link-modal'; +import EmailLinkBlockedModal from '../email-link-blocked-modal'; +import EmailLinkVerifiedModal from '../email-link-verified-modal'; import { getDateAfterHours } from 'Utils/date-time'; -const OrderDetails = observer(({ onPageReturn }) => { +const OrderDetails = observer(() => { const { general_store, order_store, sendbird_store } = useStores(); const { @@ -72,6 +76,8 @@ const OrderDetails = observer(({ onPageReturn }) => { const disposeListeners = sendbird_store.registerEventListeners(); const disposeReactions = sendbird_store.registerMobXReactions(); + order_store.getSettings(); + order_store.getWebsiteStatus(); order_store.setRatingValue(0); order_store.setIsRecommended(undefined); @@ -85,6 +91,7 @@ const OrderDetails = observer(({ onPageReturn }) => { disposeListeners(); disposeReactions(); order_store.setOrderPaymentMethodDetails(undefined); + order_store.setOrderId(null); }; }, []); // eslint-disable-line react-hooks/exhaustive-deps @@ -110,7 +117,7 @@ const OrderDetails = observer(({ onPageReturn }) => { : client_details?.is_recommended; return ( - + {is_active_order && ( { />
)} + {!is_buy_order_for_user && ( + + order_store.confirmOrderRequest(id)} + setIsEmailVerificationModalOpen={order_store.setIsEmailVerificationModalOpen} + /> + order_store.confirmOrder(is_buy_order_for_user)} + setIsEmailLinkVerifiedModalOpen={order_store.setIsEmailLinkVerifiedModalOpen} + /> + order_store.confirmOrderRequest(id)} + /> + + + + )}
@@ -395,8 +431,4 @@ const OrderDetails = observer(({ onPageReturn }) => { ); }); -OrderDetails.propTypes = { - onPageReturn: PropTypes.func, -}; - export default OrderDetails; diff --git a/packages/p2p/src/components/orders/orders.jsx b/packages/p2p/src/components/orders/orders.jsx index c0899b893a6f..dcd56b102159 100644 --- a/packages/p2p/src/components/orders/orders.jsx +++ b/packages/p2p/src/components/orders/orders.jsx @@ -19,7 +19,10 @@ const Orders = observer(() => { React.useEffect(() => { const disposeOrderIdReaction = reaction( () => order_store.order_id, - () => order_store.onOrderIdUpdate(), + () => { + // DO NOT REMOVE. This fixes all P2P order routing issues + order_store.onOrderIdUpdate(); + }, { fireImmediately: true } ); @@ -41,7 +44,7 @@ const Orders = observer(() => { if (order_store.order_information) { return (
- order_store.hideDetails(true)} /> +
); } diff --git a/packages/p2p/src/components/rating-modal/rating-modal.jsx b/packages/p2p/src/components/rating-modal/rating-modal.jsx index c63bc2203b79..e0b34f2f378d 100644 --- a/packages/p2p/src/components/rating-modal/rating-modal.jsx +++ b/packages/p2p/src/components/rating-modal/rating-modal.jsx @@ -25,6 +25,7 @@ const RatingModal = ({ is_open={is_rating_modal_open} title={localize('How would you rate this transaction?')} toggleModal={onClickSkip} + width={isMobile() && '90vw'} >
@@ -38,7 +39,7 @@ const RatingModal = ({ onClick={onClickStar} rating_value={rating_value} should_allow_half_icon={false} - star_size={isMobile() ? 17 : 20} + star_size={isMobile() ? 25 : 20} />
{rating_value > 0 && ( diff --git a/packages/p2p/src/stores/order-store.js b/packages/p2p/src/stores/order-store.js index 66a09790dd44..87ba18d5688f 100644 --- a/packages/p2p/src/stores/order-store.js +++ b/packages/p2p/src/stores/order-store.js @@ -23,7 +23,12 @@ export default class OrderStore { @observable cancels_remaining = null; @observable error_message = ''; @observable has_more_items_to_load = false; + @observable is_email_link_blocked_modal_open = false; + @observable is_email_link_verified_modal_open = false; + @observable is_email_verification_modal_open = false; + @observable is_invalid_verification_link_modal_open = false; @observable is_loading = false; + @observable is_loading_modal_open = false; @observable is_rating_modal_open = false; @observable is_recommended = undefined; @observable orders = []; @@ -31,6 +36,9 @@ export default class OrderStore { @observable order_payment_method_details = null; @observable order_rerender_timeout = null; @observable rating_value = 0; + @observable user_email_address = ''; + @observable verification_code = ''; + @observable verification_link_error_message = ''; interval; order_info_subscription = {}; @@ -45,7 +53,6 @@ export default class OrderStore { get order_information() { const { general_store } = this.root_store; const order = this.orders.find(o => o.id === this.order_id); - return order ? createExtendedOrderDetails(order, general_store.client.loginid, general_store.props.server_time) : null; @@ -57,15 +64,63 @@ export default class OrderStore { } @action.bound - confirmOrderRequest(id) { + confirmOrderRequest(id, is_buy_order_for_user) { const { order_details_store } = this.root_store; - requestWS({ p2p_order_confirm: 1, id, }).then(response => { - if (response && response.error) { - order_details_store.setErrorMessage(response.error.message); + if (response) { + if (response.error) { + if (response.error.code === 'OrderEmailVerificationRequired') { + clearTimeout(wait); + const wait = setTimeout(() => this.setIsEmailVerificationModalOpen(true), 250); + } else if ( + response?.error.code === 'InvalidVerificationToken' || + response?.error.code === 'ExcessiveVerificationRequests' + ) { + clearTimeout(wait); + if (this.is_email_verification_modal_open) { + this.setIsEmailVerificationModalOpen(false); + } + if (this.is_email_link_verified_modal_open) { + this.setIsEmailLinkVerifiedModalOpen(false); + } + this.setVerificationLinkErrorMessage(response.error.message); + const wait = setTimeout(() => this.setIsInvalidVerificationLinkModalOpen(true), 230); + } else if (response?.error.code === 'ExcessiveVerificationFailures') { + if (this.is_invalid_verification_link_modal_open) { + this.setIsInvalidVerificationLinkModalOpen(false); + } + clearTimeout(wait); + this.setVerificationLinkErrorMessage(response.error.message); + const wait = setTimeout(() => this.setIsEmailLinkBlockedModalOpen(true), 230); + } else { + order_details_store.setErrorMessage(response.error.message); + } + } else if (!is_buy_order_for_user) { + this.setIsRatingModalOpen(true); + } + + localStorage.removeItem('verification_code.p2p_order_confirm'); + } + }); + } + + @action.bound + confirmOrder(is_buy_order_for_user) { + requestWS({ + p2p_order_confirm: 1, + id: this.order_id, + verification_code: this.verification_code, + }).then(response => { + if (response && !response.error) { + if (!is_buy_order_for_user) { + clearTimeout(wait); + const wait = setTimeout(() => { + this.setIsRatingModalOpen(true); + }, 230); + } } }); } @@ -79,10 +134,18 @@ export default class OrderStore { this.setCancelsRemaining(response.p2p_advertiser_info.cancels_remaining); } }); - this.getWebsiteStatus(setShouldShowCancelModal); } + @action.bound + getSettings() { + requestWS({ get_settings: 1 }).then(response => { + if (response && !response.error) { + this.setUserEmailAddress(response.get_settings.email); + } + }); + } + @action.bound getWebsiteStatus(setShouldShowCancelModal) { requestWS({ website_status: 1 }).then(response => { @@ -94,7 +157,6 @@ export default class OrderStore { this.setCancellationCountPeriod(p2p_config.cancellation_count_period); this.setCancellationLimit(p2p_config.cancellation_limit); } - if (typeof setShouldShowCancelModal === 'function') { setShouldShowCancelModal(true); } @@ -111,18 +173,15 @@ export default class OrderStore { if (should_navigate && this.nav) { this.root_store.general_store.redirectTo(this.nav.location); } - this.setOrderId(null); } @action.bound loadMoreOrders({ startIndex }) { this.setApiErrorMessage(''); - return new Promise(resolve => { const { general_store } = this.root_store; const active = general_store.is_active_tab ? 1 : 0; - requestWS({ p2p_order_list: 1, active, @@ -191,6 +250,11 @@ export default class OrderStore { } } + @action.bound + onPageReturn() { + this.hideDetails(true); + } + @action.bound onUnmount() { clearTimeout(this.order_rerender_timeout); @@ -198,6 +262,19 @@ export default class OrderStore { this.hideDetails(false); } + @action.bound + setOrderDetails(response) { + if (response) { + if (!response?.error) { + const { p2p_order_info } = response; + + this.setQueryDetails(p2p_order_info); + } else { + this.unsubscribeFromCurrentOrder(); + } + } + } + @action.bound setOrderRating(id) { const rating = this.rating_value / 20; @@ -217,6 +294,53 @@ export default class OrderStore { }); } + @action.bound + setQueryDetails(input_order) { + const { general_store } = this.root_store; + const order_information = createExtendedOrderDetails( + input_order, + general_store.client.loginid, + general_store.props.server_time + ); + this.setOrderId(order_information.id); // Sets the id in URL + if (order_information.is_active_order) { + general_store.setOrderTableType(order_list.ACTIVE); + } else { + general_store.setOrderTableType(order_list.INACTIVE); + } + if (order_information?.payment_method_details) { + this.setOrderPaymentMethodDetails(Object.values(order_information?.payment_method_details)); + } + // When viewing specific order, update its read state in localStorage. + const { notifications } = this.root_store.general_store.getLocalStorageSettingsForLoginId(); + + if (notifications.length) { + const notification = notifications.find(n => n.order_id === order_information.id); + + if (notification) { + notification.is_seen = true; + this.root_store.general_store.updateP2pNotifications(notifications); + } + } + + // Force a refresh of this order when it's expired to correctly + // reflect the status of the order. This is to work around a BE issue + // where they only expire contracts once a minute rather than on expiry time. + const { remaining_seconds } = order_information; + + if (remaining_seconds > 0) { + clearTimeout(this.order_rerender_timeout); + + this.setOrderRendererTimeout( + setTimeout(() => { + if (typeof this.forceRerenderFn === 'function') { + this.forceRerenderFn(order_information.id); + } + }, (remaining_seconds + 1) * 1000) + ); + } + } + @action.bound subscribeToCurrentOrder() { this.order_info_subscription = subscribeWS( @@ -281,8 +405,38 @@ export default class OrderStore { } @action.bound - setForceRerenderOrders(forceRerenderFn) { - this.forceRerenderFn = forceRerenderFn; + verifyEmailVerificationCode(verification_action, verification_code) { + if (verification_action === 'p2p_order_confirm' && verification_code) { + requestWS({ + p2p_order_confirm: 1, + id: this.order_id, + verification_code, + dry_run: 1, + }).then(response => { + this.setIsLoadingModalOpen(false); + if (response) { + if (!response.error) { + clearTimeout(wait); + const wait = setTimeout(() => this.setIsEmailLinkVerifiedModalOpen(true), 650); + } else if ( + response.error.code === 'InvalidVerificationToken' || + response.error.code === 'ExcessiveVerificationRequests' + ) { + clearTimeout(wait); + this.setVerificationLinkErrorMessage(response.error.message); + const wait = setTimeout(() => this.setIsInvalidVerificationLinkModalOpen(true), 750); + } else if (response.error.code === 'ExcessiveVerificationFailures') { + if (this.is_invalid_verification_link_modal_open) { + this.setIsInvalidVerificationLinkModalOpen(false); + } + clearTimeout(wait); + this.setVerificationLinkErrorMessage(response.error.message); + const wait = setTimeout(() => this.setIsEmailLinkBlockedModalOpen(true), 600); + } + localStorage.removeItem('verification_code.p2p_order_confirm'); + } + }); + } } @action.bound @@ -320,16 +474,46 @@ export default class OrderStore { this.error_message = error_message; } + @action.bound + setForceRerenderOrders(forceRerenderFn) { + this.forceRerenderFn = forceRerenderFn; + } + @action.bound setHasMoreItemsToLoad(has_more_items_to_load) { this.has_more_items_to_load = has_more_items_to_load; } + @action.bound + setIsEmailLinkBlockedModalOpen(is_email_link_blocked_modal_open) { + this.is_email_link_blocked_modal_open = is_email_link_blocked_modal_open; + } + + @action.bound + setIsEmailLinkVerifiedModalOpen(is_email_link_verified_modal_open) { + this.is_email_link_verified_modal_open = is_email_link_verified_modal_open; + } + + @action.bound + setIsEmailVerificationModalOpen(is_email_verification_modal_open) { + this.is_email_verification_modal_open = is_email_verification_modal_open; + } + + @action.bound + setIsInvalidVerificationLinkModalOpen(is_invalid_verification_link_modal_open) { + this.is_invalid_verification_link_modal_open = is_invalid_verification_link_modal_open; + } + @action.bound setIsLoading(is_loading) { this.is_loading = is_loading; } + @action.bound + setIsLoadingModalOpen(is_loading_modal_open) { + this.is_loading_modal_open = is_loading_modal_open; + } + @action.bound setIsRatingModalOpen(is_rating_modal_open) { this.is_rating_modal_open = is_rating_modal_open; @@ -341,19 +525,9 @@ export default class OrderStore { } @action.bound - setOrderPaymentMethodDetails(order_payment_method_details) { - this.order_payment_method_details = order_payment_method_details; - } - - @action.bound - setOrderDetails(response) { - if (!response.error) { - const { p2p_order_info } = response; - - this.setQueryDetails(p2p_order_info); - } else { - this.unsubscribeFromCurrentOrder(); - } + setOrders(orders) { + this.previous_orders = cloneObject(this.orders); + this.orders = orders; } @action.bound @@ -368,9 +542,8 @@ export default class OrderStore { } @action.bound - setOrders(orders) { - this.previous_orders = cloneObject(this.orders); - this.orders = orders; + setOrderPaymentMethodDetails(order_payment_method_details) { + this.order_payment_method_details = order_payment_method_details; } @action.bound @@ -379,54 +552,24 @@ export default class OrderStore { } @action.bound - setQueryDetails(input_order) { - const { general_store } = this.root_store; - const order_information = createExtendedOrderDetails( - input_order, - general_store.client.loginid, - general_store.props.server_time - ); - this.setOrderId(order_information.id); // Sets the id in URL - if (order_information.is_active_order) { - general_store.setOrderTableType(order_list.ACTIVE); - } else { - general_store.setOrderTableType(order_list.INACTIVE); - } - if (order_information?.payment_method_details) { - this.setOrderPaymentMethodDetails(Object.values(order_information?.payment_method_details)); - } - // When viewing specific order, update its read state in localStorage. - const { notifications } = this.root_store.general_store.getLocalStorageSettingsForLoginId(); - - if (notifications.length) { - const notification = notifications.find(n => n.order_id === order_information.id); - - if (notification) { - notification.is_seen = true; - this.root_store.general_store.updateP2pNotifications(notifications); - } - } - - // Force a refresh of this order when it's expired to correctly - // reflect the status of the order. This is to work around a BE issue - // where they only expire contracts once a minute rather than on expiry time. - const { remaining_seconds } = order_information; + setRatingValue(rating_value) { + this.rating_value = rating_value; + } - if (remaining_seconds > 0) { - clearTimeout(this.order_rerender_timeout); + @action.bound + setUserEmailAddress(user_email_address) { + this.user_email_address = user_email_address; + } - this.setOrderRendererTimeout( - setTimeout(() => { - if (typeof this.forceRerenderFn === 'function') { - this.forceRerenderFn(order_information.id); - } - }, (remaining_seconds + 1) * 1000) - ); - } + // This is only for the order confirmation request, + // since on confirmation the code is removed from the query params + @action.bound + setVerificationCode(verification_code) { + this.verification_code = verification_code; } @action.bound - setRatingValue(rating_value) { - this.rating_value = rating_value; + setVerificationLinkErrorMessage(verification_link_error_message) { + this.verification_link_error_message = verification_link_error_message; } } diff --git a/packages/p2p/src/translations/es.json b/packages/p2p/src/translations/es.json index 3256e8bac418..c7891e5c0829 100644 --- a/packages/p2p/src/translations/es.json +++ b/packages/p2p/src/translations/es.json @@ -32,6 +32,8 @@ "460477293": "Ingresar mensaje", "464044457": "Alias del comprador", "473688701": "Introduzca una cantidad válida", + "476023405": "Didn't receive the email?", + "488150742": "Resend email", "498500965": "Alias del vendedor", "501523417": "No tiene pedidos.", "517202770": "Establecer tasa fija", @@ -48,6 +50,7 @@ "612069973": "¿Recomendaría a este comprador?", "628581263": "La tasa de mercado de {{local_currency}} ha cambiado.", "649549724": "No he recibido ningún pago.", + "661808069": "Resend email {{remaining_time}}", "662578726": "Disponible", "671582270": "La cantidad máx disponible es {{value}}", "683273691": "Tasa (1 {{ account_currency }})", @@ -61,7 +64,6 @@ "842911528": "No mostrar este mensaje de nuevo.", "873437248": "Instrucciones (opcional)", "876086855": "Complete el formulario de evaluación financiera", - "881141084": "Si cancela este pedido, no podrá utilizar Deriv P2P durante {{block_duration}} horas.", "881351325": "¿Recomendaría a este vendedor?", "887667868": "Pedido", "949859957": "Enviar", @@ -77,6 +79,7 @@ "1057127276": "{{- avg_release_time_in_minutes}} min", "1065551550": "Establecer tasa flotante", "1080990424": "Confirmar", + "1089110190": "You accidentally gave us another email address (usually a work or a personal one instead of the one you meant).", "1091533736": "No arriesgue sus fondos con transacciones en efectivo. En su lugar, utilice transferencias bancarias o billeteras electrónicas.", "1103731601": "Sus anuncios están pausados", "1106073960": "Ha creado un anuncio", @@ -108,14 +111,17 @@ "1370999551": "Tasa flotante", "1371193412": "Cancelar", "1381949324": "<0>Direcciónverificada", + "1398938904": "We can't deliver the email to this address (usually because of firewalls or filtering).", "1422356389": "No hay resultados para \"{{text}}\".", "1430413419": "El máximo es {{value}} {{currency}}", "1438103743": "Las tasas flotantes están activas para {{local_currency}}. Los anuncios con tasas fijas se desactivarán. Cambie a tasas flotantes antes de {{end_date}}.", "1448855725": "Agregar método de pago", + "1452260922": "Too many failed attempts", "1467483693": "Pedidos pasados", "1474532322": "Clasificar por", "1480915523": "Saltar", "1505293001": "Socios comerciales", + "1529843851": "The verification link expires in 10 minutes", "1583335572": "Si su anuncio no recibe un pedido durante {{adverts_archive_period}} días, se desactivará.", "1587250288": "ID del anuncio {{advert_id}} ", "1607051458": "Buscar por alias", @@ -148,6 +154,7 @@ "1928240840": "Vender {{ currency }}", "1976156928": "Enviará", "1992961867": "Tasa (1 {{currency}})", + "1994023526": "The email address you entered had a mistake or typo (happens to the best of us).", "2020104747": "Filtrar", "2029375371": "Instrucciones de pago", "2032274854": "Recomendado por {{recommended_count}} traders", @@ -229,10 +236,16 @@ "-1856204727": "Restablecer", "-1638172550": "Para habilitar esta función, debe completar lo siguiente:", "-559300364": "Su cajero Deriv P2P está bloqueado", + "-2124584325": "We've verified your order", + "-878014035": "Please ensure you've received {{amount}} {{currency}} in your account and hit Confirm to complete the transaction.", + "-1968971120": "We've sent you an email at {{email_address}}.<0 />Please click the verification link in the email to verify your order.", + "-142727028": "The email is in your spam folder (sometimes things get lost there).", + "-329713179": "Ok", "-740038242": "Su tasa es", + "-1728351486": "Invalid verification link", + "-1088454544": "Get new link", "-674715853": "Su anuncio excede el límite diario", "-744406": "Su anuncio no aparece en <0>Compra/Venta porque el importe supera su límite diario de {{limit}} {{currency}}.\n <1 /><1 />Todavía puede ver su anuncio en <0>Mis anuncios. Si quiere aumentar su límite diario, contáctenos a través del <2>chat en vivo.", - "-329713179": "Ok", "-984140537": "Añadir", "-1072444041": "Actualizar anuncio", "-1406830100": "Método de pago", @@ -283,6 +296,7 @@ "-532709160": "Su alias", "-2008992756": "¿Desea cancelar este pedido?", "-1666369246": "Si cancela su pedido {{cancellation_limit}} veces en {{cancellation_period}} horas, no podrá usar Deriv P2P durante {{block_duration}} horas.
({{number_of_cancels_remaining}} cancelaciones restantes.)", + "-1618084450": "If you cancel this order, you'll be blocked from using Deriv P2P for {{block_duration}} hours.", "-2026176944": "No cancele si ya ha realizado el pago.", "-1989544601": "Cancelar este pedido", "-492996224": "No cancelar", diff --git a/packages/p2p/src/translations/fr.json b/packages/p2p/src/translations/fr.json index cc7fe8e7ee09..a9904c58fde5 100644 --- a/packages/p2p/src/translations/fr.json +++ b/packages/p2p/src/translations/fr.json @@ -32,6 +32,8 @@ "460477293": "Entrez le message", "464044457": "Pseudo de l'Acheteur", "473688701": "Saisissez un montant", + "476023405": "Didn't receive the email?", + "488150742": "Resend email", "498500965": "Pseudo du Vendeur", "501523417": "Vous n'avez aucune commande.", "517202770": "Définir un taux fixe", @@ -48,6 +50,7 @@ "612069973": "Recommanderiez-vous cet acheteur ?", "628581263": "Le taux du marché du {{local_currency}} a changé.", "649549724": "Je n'ai reçu aucun paiement.", + "661808069": "Resend email {{remaining_time}}", "662578726": "Disponible", "671582270": "Le montant maximum disponible est de {{value}}", "683273691": "Taux (1 {{ account_currency }})", @@ -61,7 +64,6 @@ "842911528": "Ne pas montrer de nouveau ce message.", "873437248": "Instructions (facultatif)", "876086855": "Remplissez le formulaire d'évaluation financière", - "881141084": "Si vous annulez cette demande, vous serez bloqué pour utiliser Deriv P2P pendant {{block_duration}} heures.", "881351325": "Recommanderiez-vous ce vendeur ?", "887667868": "Ordre", "949859957": "Envoyer", @@ -77,6 +79,7 @@ "1057127276": "{{- avg_release_time_in_minutes}} min", "1065551550": "Définir le taux flottant", "1080990424": "Confirmer", + "1089110190": "You accidentally gave us another email address (usually a work or a personal one instead of the one you meant).", "1091533736": "Ne risquez pas vos fonds avec des transactions en espèces. Utilisez plutôt les virements bancaires ou les portefeuilles électroniques.", "1103731601": "Vos annonces sont en pause", "1106073960": "Vous avez créé une annonce", @@ -108,14 +111,17 @@ "1370999551": "Taux flottant", "1371193412": "Annuler", "1381949324": "<0>Adresse vérifiée", + "1398938904": "We can't deliver the email to this address (usually because of firewalls or filtering).", "1422356389": "Aucun résultat pour \"{{text}}\".", "1430413419": "Le maximum est {{currency}}{{value}}", "1438103743": "Les taux flottants sont activés pour {{local_currency}}. Les annonces avec des taux fixes seront désactivées. Passez aux taux flottants pour {{end_date}}.", "1448855725": "Ajouter des modes de paiement", + "1452260922": "Too many failed attempts", "1467483693": "Historique des trades", "1474532322": "Trier par", "1480915523": "Ignorer", "1505293001": "Partenaires de trade", + "1529843851": "The verification link expires in 10 minutes", "1583335572": "Si l'annonce ne reçoit pas de demande pendant {{adverts_archive_period}} jours, elle sera désactivée.", "1587250288": "ID d'annonce {{advert_id}} ", "1607051458": "Recherche par pseudo", @@ -148,6 +154,7 @@ "1928240840": "Vendre {{ currency }}", "1976156928": "Vous enverrez", "1992961867": "Taux (1 {{currency}})", + "1994023526": "The email address you entered had a mistake or typo (happens to the best of us).", "2020104747": "Filtre", "2029375371": "Instructions de paiement", "2032274854": "Recommandé par {{recommended_count}} traders", @@ -229,10 +236,16 @@ "-1856204727": "Réinitialiser", "-1638172550": "Pour activer cette fonctionnalité, vous devez effectuer les opérations suivantes:", "-559300364": "Votre caisse Deriv P2P est verrouillée", + "-2124584325": "We've verified your order", + "-878014035": "Please ensure you've received {{amount}} {{currency}} in your account and hit Confirm to complete the transaction.", + "-1968971120": "We've sent you an email at {{email_address}}.<0 />Please click the verification link in the email to verify your order.", + "-142727028": "The email is in your spam folder (sometimes things get lost there).", + "-329713179": "Ok", "-740038242": "Votre taux est", + "-1728351486": "Invalid verification link", + "-1088454544": "Get new link", "-674715853": "Votre annonce dépasse la limite journalière", "-744406": "Votre annonce n'est pas répertoriée sur <0>Achat/Vente car le montant dépasse votre limite quotidienne de {{limit}}. {{currency}}.\n <1 /><1 />Vous pouvez toujours voir votre annonce sur <0>Mes annonces. Si vous souhaitez augmenter votre limite quotidienne, veuillez nous contacter via <2>live chat.", - "-329713179": "Ok", "-984140537": "Ajouter", "-1072444041": "Mise à jour de l'annonce", "-1406830100": "Moyen de paiement", @@ -283,6 +296,7 @@ "-532709160": "Votre pseudo", "-2008992756": "Voulez-vous annuler cette commande?", "-1666369246": "Si vous annulez votre demande {{cancellation_limit}} fois en {{cancellation_period}} heures, vous serez bloqué pour utiliser Deriv P2P pendant {{block_duration}} heures. .
({{number_of_cancels_remaining}} annulations restantes.)", + "-1618084450": "If you cancel this order, you'll be blocked from using Deriv P2P for {{block_duration}} hours.", "-2026176944": "Merci de ne pas annuler si vous avez déjà fait un paiement.", "-1989544601": "Annuler cet ordre", "-492996224": "Ne pas annuler", diff --git a/packages/p2p/src/translations/id.json b/packages/p2p/src/translations/id.json index 652f08395e22..204b0b366362 100644 --- a/packages/p2p/src/translations/id.json +++ b/packages/p2p/src/translations/id.json @@ -32,6 +32,8 @@ "460477293": "Masukkan pesan", "464044457": "Nama panggilan pembeli", "473688701": "Masukkan jumlah yang valid", + "476023405": "Didn't receive the email?", + "488150742": "Resend email", "498500965": "Nama panggilan penjual", "501523417": "Anda tidak memiliki order.", "517202770": "Atur harga tetap", @@ -48,6 +50,7 @@ "612069973": "Apakah Anda merekomendasikan pembeli ini?", "628581263": "Harga pasar {{local_currency}} telah berubah.", "649549724": "Saya belum menerima pembayaran apapun.", + "661808069": "Resend email {{remaining_time}}", "662578726": "Tersedia", "671582270": "Jumlah maksimum yang tersedia adalah {{value}}", "683273691": "Harga (1 {{ account_currency }})", @@ -61,7 +64,6 @@ "842911528": "Jangan tampilkan pesan ini lagi.", "873437248": "Instruksi (opsional)", "876086855": "Lengkapi formulir penilaian keuangan", - "881141084": "Jika Anda membatalkan order ini, Anda akan diblokir menggunakan Deriv P2P selama {{block_duration}} jam.", "881351325": "Apakah Anda merekomendasikan penjual ini?", "887667868": "Order", "949859957": "Kirim", @@ -77,6 +79,7 @@ "1057127276": "{{- avg_release_time_in_minutes}} menit", "1065551550": "Atur harga floating", "1080990424": "Mengkonfirmasi", + "1089110190": "You accidentally gave us another email address (usually a work or a personal one instead of the one you meant).", "1091533736": "Jangan risikokan dana Anda menggunakan transaksi tunai. Gunakan transfer bank atau e-wallet.", "1103731601": "Iklan Anda dijeda", "1106073960": "Anda sudah memasang iklan", @@ -108,14 +111,17 @@ "1370999551": "Harga floating", "1371193412": "Batal", "1381949324": "<0>Alamat terverifikasi", + "1398938904": "We can't deliver the email to this address (usually because of firewalls or filtering).", "1422356389": "Tidak tersedia hasil untuk \"{{text}}\".", "1430413419": "Maksimum adalah {{value}} {{currency}}", "1438103743": "Harga floating diaktifkan untuk {{local_currency}}. Iklan dengan harga tetap akan dinonaktifkan. Beralih ke harga floating sebelum {{end_date}}.", "1448855725": "Tambah metode pembayaran", + "1452260922": "Too many failed attempts", "1467483693": "Order sebelumnya", "1474532322": "Sortir menurut", "1480915523": "Lewati", "1505293001": "Mitra transaksi", + "1529843851": "The verification link expires in 10 minutes", "1583335572": "Jika iklan ini tidak menerima order dalam tempo {{adverts_archive_period}}, maka iklan akan dinonaktifkan.", "1587250288": "Ad ID {{advert_id}} ", "1607051458": "Cari berdasarkan nama panggilan", @@ -148,6 +154,7 @@ "1928240840": "Jual {{ currency }}", "1976156928": "Anda akan mengirim", "1992961867": "Harga (1 {{currency}})", + "1994023526": "The email address you entered had a mistake or typo (happens to the best of us).", "2020104747": "Pencarian", "2029375371": "Instruksi pembayaran", "2032274854": "Direkomendasikan oleh {{recommended_count}} trader", @@ -229,10 +236,16 @@ "-1856204727": "Reset", "-1638172550": "Untuk mengaktifkan fitur ini Anda harus menyelesaikan hal berikut ini:", "-559300364": "Kasir Deriv P2P Anda dibatalkan", + "-2124584325": "We've verified your order", + "-878014035": "Please ensure you've received {{amount}} {{currency}} in your account and hit Confirm to complete the transaction.", + "-1968971120": "We've sent you an email at {{email_address}}.<0 />Please click the verification link in the email to verify your order.", + "-142727028": "The email is in your spam folder (sometimes things get lost there).", + "-329713179": "Ok", "-740038242": "Harga Anda", + "-1728351486": "Invalid verification link", + "-1088454544": "Get new link", "-674715853": "Iklan Anda melebihi batas harian", "-744406": "Iklan Anda tidak tersedia pada <0>Beli/Jual berhubung jumlah telah melebihi batas harian {{limit}} {{currency}}.\n <1 /><1 />Anda masih dapat melihat iklan tersebut pada <0>Iklan saya. Jika Anda memerlukan batasan yang lebih tinggi, hubungi kami di <2>obrolan langsung.", - "-329713179": "Ok", "-984140537": "Tambah", "-1072444041": "Perbarui iklan", "-1406830100": "Metode pembayaran", @@ -283,6 +296,7 @@ "-532709160": "Nama panggilan Anda", "-2008992756": "Apakah Anda ingin membatalkan order ini?", "-1666369246": "Jika Anda membatalkan order {{cancellation_limit}} kali dalam {{cancellation_period}} jam, Anda akan diblokir dari penggunaan Deriv P2P selama {{block_duration}} jam.
({{number_of_cancels_remaining}} pembatalan tersisa.)", + "-1618084450": "If you cancel this order, you'll be blocked from using Deriv P2P for {{block_duration}} hours.", "-2026176944": "Jangan batalkan jika Anda sudah melakukan pembayaran.", "-1989544601": "Batalkan order ini", "-492996224": "Jangan batalkan", diff --git a/packages/p2p/src/translations/it.json b/packages/p2p/src/translations/it.json index ffe08877d01a..16852d558eb7 100644 --- a/packages/p2p/src/translations/it.json +++ b/packages/p2p/src/translations/it.json @@ -32,6 +32,8 @@ "460477293": "Inserisci un messaggio", "464044457": "Soprannome del compratore", "473688701": "Inserisci un importo valido", + "476023405": "Non hai ricevuto l'e-mail?", + "488150742": "Invia di nuovo e-mail", "498500965": "Soprannome del venditore", "501523417": "Non hai ordini.", "517202770": "Imposta tasso fisso", @@ -48,6 +50,7 @@ "612069973": "Consiglieresti questo acquirente?", "628581263": "Il tasso di mercato in {{local_currency}} è cambiato.", "649549724": "Non ho ricevuto alcun pagamento.", + "661808069": "Invia di nuovo l'e-mail {{remaining_time}}", "662578726": "Disponibile", "671582270": "L'importo massimo disponibile è {{value}}", "683273691": "Tasso (1 {{ account_currency }})", @@ -61,7 +64,6 @@ "842911528": "Non mostrare più questo messaggio.", "873437248": "Istruzioni (opzionali)", "876086855": "Completa il modulo della valutazione finanziaria", - "881141084": "Se annulli l'ordine, non potrai usare Deriv P2P per {{block_duration}} ore.", "881351325": "Consiglieresti questo venditore?", "887667868": "Ordine", "949859957": "Invia", @@ -77,6 +79,7 @@ "1057127276": "{{- avg_release_time_in_minutes}} min", "1065551550": "Imposta tasso variabile", "1080990424": "Conferma", + "1089110190": "Hai erroneamente indicato un altro indirizzo e-mail (normalmente quello di lavoro o personale, invece di quello che intendevi usare).", "1091533736": "Non mettere a rischio i tuoi fondi con transazioni in contanti. Utilizza invece bonifici bancari o portafogli elettronici.", "1103731601": "I tuoi annunci sono stati sospesi", "1106073960": "Hai creato un annuncio", @@ -108,14 +111,17 @@ "1370999551": "Tasso variabile", "1371193412": "Annulla", "1381949324": "<0>Indirizzo verificato", + "1398938904": "Non possiamo inviare l'e-mail a questo indirizzo (di solito a causa di filtri o firewall).", "1422356389": "Nessun risultato per \"{{text}}\".", "1430413419": "Il massimo è {{value}} {{currency}}", "1438103743": "I tassi variabili sono attivi per {{local_currency}}. Gli annunci con tassi fissi verranno disattivati. Passa a tassi variabili entro {{end_date}}.", "1448855725": "Aggiungi modalità di pagamento", + "1452260922": "Troppi tentativi falliti", "1467483693": "Ordini passati", "1474532322": "Ordina per", "1480915523": "Salta", "1505293001": "Partners di trading", + "1529843851": "Il link di verifica scade tra 10 minuti", "1583335572": "Se non ricevi ordini per il tuo annuncio per {{adverts_archive_period}} giorni, questo verrà disattivato.", "1587250288": "ID annuncio {{advert_id}} ", "1607051458": "Cerca per soprannome", @@ -148,6 +154,7 @@ "1928240840": "Vendi {{ currency }}", "1976156928": "Invia", "1992961867": "Tasso (1 {{currency}})", + "1994023526": "L'indirizzo e-mail inserito contiene un errore o un refuso (è un errore comune, non preoccuparti!).", "2020104747": "Filtro", "2029375371": "Istruzioni per il pagamento", "2032274854": "Consigliato da {{recommended_count}} trader", @@ -164,7 +171,7 @@ "-1267880283": "{{field_name}} è obbligatorio", "-2019083683": "{{field_name}} può comprendere solo lettere, numeri, spazi e i seguenti simboli: -+.,'#@():;", "-222920564": "{{field_name}} ha superato la lunghezza massima", - "-2093768906": "{{name}} ha rilasciato i tuoi fondi.
Vuoi darli il tuo feedback?", + "-2093768906": "{{name}} ha rilasciato i tuoi fondi.
Vuoi lasciare un feedback?", "-857786650": "Controlla il tuo stato di verifica.", "-612892886": "È necessario caricare i documenti per verificare la tua identità.", "-2090325029": "Le verifica dell'identità è stata completata.", @@ -229,10 +236,16 @@ "-1856204727": "Reimposta", "-1638172550": "Per disabilitare questa funzione, completa quanto segue:", "-559300364": "La tua cassa Deriv P2P è bloccata", + "-2124584325": "Abbiamo verificato l'ordine", + "-878014035": "Assicurati di aver ricevuto {{amount}} {{currency}} nel tuo conto e premi Conferma per completare la transazione.", + "-1968971120": "Ti abbiamo inviato un'email all'indirizzo {{email_address}}.<0 />Fai clic sul link di verifica nell'e-mail per verificare il tuo ordine.", + "-142727028": "L' e-mail è nella cartella spam (dove alle volte si perdono i messaggi).", + "-329713179": "Ok", "-740038242": "Il tuo tasso è", + "-1728351486": "Link di verifica non valido", + "-1088454544": "Ricevi un nuovo link", "-674715853": "L'annuncio supera il limite giornaliero", "-744406": "Il tuo annuncio non è nella lista <0>Acquista/Vendi perche l'importo supera il tuo limite giornaliero di {{limit}} {{currency}}.\n <1 /><1 />Puoi ancora vedere il tuo annuncio su <0>I miei annunci. Se vuoi aumentare il limite giornaliero, contattaci tramite <2>live chat.", - "-329713179": "Ok", "-984140537": "Aggiungi", "-1072444041": "Aggiorna annuncio", "-1406830100": "Modalità di pagamento", @@ -242,7 +255,7 @@ "-1654157453": "Tasso fisso (1 {{currency}})", "-379708059": "Ordine minimo", "-1459289144": "Queste informazioni saranno visibili a tutti.", - "-207756259": "Puoi toccare e scegliere fino a 3.", + "-207756259": "Puoi toccare e sceglierne fino a 3.", "-1282343703": "Stai creando un annuncio per acquistare <0>{{ target_amount }} {{ target_currency }} per <0>{{ local_amount }} {{ local_currency }} <1>({{ price_rate }} {{local_currency}}/{{ target_currency }})", "-2139632895": "Stai creando un annuncio per vendere <0>{{ target_amount }} {{ target_currency }} per <0>{{ local_amount }} {{ local_currency }} <1>({{ price_rate }} {{local_currency}}/{{ target_currency }})", "-40669120": "Stai creando un annuncio per vendere <0>{{ target_amount }} {{ target_currency }}...", @@ -283,6 +296,7 @@ "-532709160": "Soprannome", "-2008992756": "Vuoi annullare l'ordine?", "-1666369246": "Se annulli l'ordine {{cancellation_limit}} volte in {{cancellation_period}} ore, non potrai usare Deriv P2P per {{block_duration}} ore.
({{number_of_cancels_remaining}} cancellazioni rimanenti.)", + "-1618084450": "Se annulli l'ordine, non potrai usare Deriv P2P per {{block_duration}} ore.", "-2026176944": "Non annullare l'ordine se hai già effettuato il pagamento.", "-1989544601": "Annulla l'ordine", "-492996224": "Non cancellare", diff --git a/packages/p2p/src/translations/pl.json b/packages/p2p/src/translations/pl.json index aaaf53608d5b..4a1e3a1d2fad 100644 --- a/packages/p2p/src/translations/pl.json +++ b/packages/p2p/src/translations/pl.json @@ -32,6 +32,8 @@ "460477293": "Wprowadź wiadomość", "464044457": "Pseudonim kupującego", "473688701": "Podaj prawidłową kwotę", + "476023405": "Didn't receive the email?", + "488150742": "Resend email", "498500965": "Pseudonim sprzedającego", "501523417": "Nie masz żadnych zleceń.", "517202770": "Set fixed rate", @@ -48,6 +50,7 @@ "612069973": "Would you recommend this buyer?", "628581263": "The {{local_currency}} market rate has changed.", "649549724": "Nie otrzymano żadnej płatności.", + "661808069": "Resend email {{remaining_time}}", "662578726": "Dostępne", "671582270": "Maksymalna dostępna kwota to {{value}}", "683273691": "Opłata (1 {{ account_currency }})", @@ -61,7 +64,6 @@ "842911528": "Nie pokazuj tej wiadomości ponownie.", "873437248": "Instrukcje (opcjonalnie)", "876086855": "Wypełnij formularz oceny finansowej", - "881141084": "Jeśli anulujesz to zlecenie, korzystanie z Deriv P2P zostanie zablokowane na {{block_duration}} godzin(y).", "881351325": "Would you recommend this seller?", "887667868": "Zlecenie", "949859957": "Prześlij", @@ -77,6 +79,7 @@ "1057127276": "{{- avg_release_time_in_minutes}} min", "1065551550": "Set floating rate", "1080990424": "Potwierdź", + "1089110190": "You accidentally gave us another email address (usually a work or a personal one instead of the one you meant).", "1091533736": "Don't risk your funds with cash transactions. Use bank transfers or e-wallets instead.", "1103731601": "Twoje reklamy są wstrzymane", "1106073960": "Utworzono ogłoszenie", @@ -108,14 +111,17 @@ "1370999551": "Floating rate", "1371193412": "Anuluj", "1381949324": "<0>Adres zweryfikowany", + "1398938904": "We can't deliver the email to this address (usually because of firewalls or filtering).", "1422356389": "Brak wyników dla \"{{text}}\".", "1430413419": "Maksimum to {{currency}} {{value}}", "1438103743": "Floating rates are enabled for {{local_currency}}. Ads with fixed rates will be deactivated. Switch to floating rates by {{end_date}}.", "1448855725": "Dodaj metody płatności", + "1452260922": "Too many failed attempts", "1467483693": "Przeszłe zlecenia", "1474532322": "Sortuj według", "1480915523": "Skip", "1505293001": "Partnerzy handlowi", + "1529843851": "The verification link expires in 10 minutes", "1583335572": "Jeśli ogłoszenie nie otrzyma zlecenia przez {{adverts_archive_period}} dni, zostanie dezaktywowane.", "1587250288": "ID reklamy {{advert_id}} ", "1607051458": "Wyszukaj po pseudonimie", @@ -148,6 +154,7 @@ "1928240840": "Sprzedaj {{ currency }}", "1976156928": "Wyślesz", "1992961867": "Opłata (1 {{currency}})", + "1994023526": "The email address you entered had a mistake or typo (happens to the best of us).", "2020104747": "Filtr", "2029375371": "Payment instructions", "2032274854": "Recommended by {{recommended_count}} traders", @@ -229,10 +236,16 @@ "-1856204727": "Resetuj", "-1638172550": "Aby włączyć tę funkcję, musisz wykonać następujące czynności:", "-559300364": "Twoja sekcja Kasjer Deriv P2P jest zablokowana", + "-2124584325": "We've verified your order", + "-878014035": "Please ensure you've received {{amount}} {{currency}} in your account and hit Confirm to complete the transaction.", + "-1968971120": "We've sent you an email at {{email_address}}.<0 />Please click the verification link in the email to verify your order.", + "-142727028": "The email is in your spam folder (sometimes things get lost there).", + "-329713179": "Ok", "-740038242": "Your rate is", + "-1728351486": "Invalid verification link", + "-1088454544": "Get new link", "-674715853": "Twoje ogłoszenie przekracza dzienny limit", "-744406": "Twoje ogłoszenie nie jest widoczne w sekcji <0>Kup/Sprzedaj, gdyż kwota przekracza Twój dzienny limi wynoszący: {{limit}} {{currency}}.\n <1 /><1 />Wciąż możesz zobaczyć ogłoszenie w sekcji <0>Moje ogłoszenia. Jeśli chcesz zwiększyć swój dzienny limit, skontaktuj się z nami za pośrednictwem <2>czatu na żywo.", - "-329713179": "Ok", "-984140537": "Dodaj", "-1072444041": "Aktualizuj ogłoszenie", "-1406830100": "Metoda płatności", @@ -283,6 +296,7 @@ "-532709160": "Twój pseudonim", "-2008992756": "Chcesz anulować to zlecenie?", "-1666369246": "Jeśli anulujesz swoje zlecenie {{cancellation_limit}} razy w ciągu {{cancellation_period}} godzin, korzystanie z Deriv P2P zostanie zablokowane na {{block_duration}} godzin(y). (Pozostało anulowań: {{number_of_cancels_remaining}}).", + "-1618084450": "If you cancel this order, you'll be blocked from using Deriv P2P for {{block_duration}} hours.", "-2026176944": "Jeśli dokonano już płatności, nie należy korzystać z opcji anulowania.", "-1989544601": "Anuluj to zlecenie", "-492996224": "Nie anuluj", diff --git a/packages/p2p/src/translations/pt.json b/packages/p2p/src/translations/pt.json index 85f1bfb6ba58..472e5b6fda70 100644 --- a/packages/p2p/src/translations/pt.json +++ b/packages/p2p/src/translations/pt.json @@ -32,6 +32,8 @@ "460477293": "Digite a mensagem", "464044457": "Apelido do Comprador", "473688701": "Digite um valor válido", + "476023405": "Não recebeu o email?", + "488150742": "Reenviar email", "498500965": "Apelido do Vendedor", "501523417": "Você não tem anúncios.", "517202770": "Defina uma taxa fixa", @@ -48,6 +50,7 @@ "612069973": "Você recomendaria esse comprador?", "628581263": "A taxa de mercado {{local_currency}} mudou.", "649549724": "Eu não recebi nenhum pagamento.", + "661808069": "Reenviar e-mail {{remaining_time}}", "662578726": "Disponível", "671582270": "O valor máximo disponível é {{value}}", "683273691": "Taxa (1 {{ account_currency }})", @@ -61,7 +64,6 @@ "842911528": "Não mostre esta mensagem novamente.", "873437248": "Instruções (opcional)", "876086855": "Preencha o formulário de Avaliação Financeira", - "881141084": "Se você cancelar este pedido, será bloqueado de usar o Deriv P2P por {{block_duration}} horas.", "881351325": "Você recomendaria este vendedor?", "887667868": "Ordem", "949859957": "Enviar", @@ -77,6 +79,7 @@ "1057127276": "{{- avg_release_time_in_minutes}} min", "1065551550": "Defina uma taxa flutuante", "1080990424": "Confirmar", + "1089110190": "Você acidentalmente nos deu outro endereço de e-mail (talvez um do trabalho ou um endereço pessoal diferente do que pensou em utilizar).", "1091533736": "Não arrisque seus fundos com transações em dinheiro. Use transferências bancárias ou e-wallets ao invés disso.", "1103731601": "Seus anúncios estão pausados", "1106073960": "Você criou um anúncio", @@ -108,14 +111,17 @@ "1370999551": "Taxa flutuante", "1371193412": "Cancelar", "1381949324": "<0>Endereço verificado", + "1398938904": "Não podemos entregar o e-mail para esse endereço (geralmente por causa de firewalls ou filtragem).", "1422356389": "Nenhum resultado para \"{{text}}\".", "1430413419": "O máximo é {{value}} {{currency}}", "1438103743": "As taxas flutuantes estão habilitadas para {{local_currency}}. Os anúncios com taxas fixas serão desativados. Mude para taxas flutuantes até {{end_date}}.", "1448855725": "Adicionar métodos de pagamento", + "1452260922": "Muitas tentativas falhas", "1467483693": "Pedidos anteriores", "1474532322": "Ordenar por", "1480915523": "Pular", "1505293001": "Parceiros de negociação", + "1529843851": "O link de verificação expira em 10 minutos", "1583335572": "Se o anúncio não receber um pedido por {{adverts_archive_period}} dias, ele será desativado.", "1587250288": "ID do anúncio {{advert_id}} ", "1607051458": "Pesquise por apelido", @@ -148,6 +154,7 @@ "1928240840": "Vender {{ currency }}", "1976156928": "Você vai enviar", "1992961867": "Taxa (1 {{currency}})", + "1994023526": "O endereço de e-mail que você digitou está errado ou tem um erro de digitação (não se preocupe, tente novamente).", "2020104747": "Filtros", "2029375371": "Instruções de pagamento", "2032274854": "Recomendado por {{recommended_count}} traders", @@ -229,10 +236,16 @@ "-1856204727": "Resetar", "-1638172550": "Para habilitar este recurso, você deve completar o seguinte:", "-559300364": "Seu caixa do Deriv P2P está bloqueado", + "-2124584325": "Verificamos seu pedido", + "-878014035": "Certifique-se de ter recebido {{amount}} em sua conta e clique em Confirmar para concluir a transação.", + "-1968971120": "Enviamos um e-mail para {{email_address}}. Clique no link de verificação no e-mail para verificar seu pedido.", + "-142727028": "O email está na sua pasta de spam (às vezes as mensagens se perdem por lá).", + "-329713179": "Ok", "-740038242": "Sua tarifa é", + "-1728351486": "Link de verificação inválido", + "-1088454544": "Obter novo link", "-674715853": "Seu anúncio excede o limite diário", "-744406": "Seu anúncio não está listado em <0>Compra/Venda porque a quantidade excede seu limite diário de {{limit}} {{currency}}.\n <1 /><1 />Você ainda pode ver seu anúncio em <0>Meus anúncios. Se você gostaria de aumentar seu limite diário, por favor, entre em contato conosco através <2>live chat.", - "-329713179": "Ok", "-984140537": "Adicionar", "-1072444041": "Atualize seu anúncio", "-1406830100": "Método de pagamento", @@ -283,6 +296,7 @@ "-532709160": "Seu apelido", "-2008992756": "Quer cancelar este pedido?", "-1666369246": "Se você cancelar seu pedido {{cancellation_limit}} vezes em {{cancellation_period}} horas, você será bloqueado de usar o Deriv P2P durante {{block_duration}} horas.
({{number_of_cancels_remaining}} cancelamentos restantes.)", + "-1618084450": "Se você cancelar este pedido, não poderá usar o Deriv P2P por {{block_duration}} horas.", "-2026176944": "Por favor, não cancele se você já tiver feito o pagamento.", "-1989544601": "Cancelar este pedido", "-492996224": "Não cancele", diff --git a/packages/p2p/src/translations/ru.json b/packages/p2p/src/translations/ru.json index cb8327c52acd..0b9f2e314bbf 100644 --- a/packages/p2p/src/translations/ru.json +++ b/packages/p2p/src/translations/ru.json @@ -9,14 +9,14 @@ "68867477": "ID ордера {{ id }}", "121738739": "Отправить", "122280248": "Средн. время отправки за <0>30д", - "134205943": "Ваши объявления с фиксированными курсами отключены. Установите плавающие курсы, чтобы повторно активировать их.", + "134205943": "Объявления с фиксированными курсами отключены. Установите плавающие курсы, чтобы повторно активировать их.", "140800401": "Курс", "145959105": "Выберите псевдоним", "150156106": "Сохранить изменения", "173939998": "Средн. время оплаты за <0>30д", "197477687": "Изменить объявление – {{ad_type}}", "203271702": "Попробуйте еще раз", - "233677840": "от рыночной ставки", + "233677840": "от рыночного курса", "246815378": "После установки ваш псевдоним не может быть изменен.", "276261353": "Средн. время оплаты за <0>30д", "316725580": "Вы больше не можете оценить эту транзакцию.", @@ -32,6 +32,8 @@ "460477293": "Введите сообщение", "464044457": "Псевдоним покупателя", "473688701": "Введите действительную сумму", + "476023405": "Не получили письмо?", + "488150742": "Отправить еще раз", "498500965": "Псевдоним продавца", "501523417": "У вас нет ордеров.", "517202770": "Установить курс", @@ -48,6 +50,7 @@ "612069973": "Как вам этот покупатель?", "628581263": "Рыночный курс {{local_currency}} изменился.", "649549724": "Я не получил(а) платеж.", + "661808069": "Отправить еще раз {{remaining_time}}с", "662578726": "Доступно", "671582270": "Макс. доступная сумма: {{value}}", "683273691": "Курс (1 {{ account_currency }})", @@ -61,7 +64,6 @@ "842911528": "Больше не показывать это сообщение.", "873437248": "Инструкции (необязательно)", "876086855": "Заполните форму финансовой оценки", - "881141084": "Если вы отмените этот ордер, ваш доступ на Deriv P2P будет заблокирован на {{block_duration}} ч.", "881351325": "Как вам этот продавец?", "887667868": "Ордер", "949859957": "Отправить", @@ -77,6 +79,7 @@ "1057127276": "{{- avg_release_time_in_minutes}} мин", "1065551550": "Установить курс", "1080990424": "Подтвердить", + "1089110190": "Вы по ошибке указали не тот эл. адрес (как правило, рабочий или личный вместо нужного).", "1091533736": "Не рискуйте своими средствами в наличных операциях. Используйте банковские переводы или электронные кошельки.", "1103731601": "Ваши объявления приостановлены", "1106073960": "Вы создали объявление", @@ -108,14 +111,17 @@ "1370999551": "Плавающий курс", "1371193412": "Отменить", "1381949324": "<0>Адрес подтвержден", + "1398938904": "Мы не можем отправить письмо на этот адрес (из-за использования firewall или фильтрации).", "1422356389": "Нет результатов с \"{{text}}\".", "1430413419": "Максимум: {{value}} {{currency}}", "1438103743": "На {{local_currency}} включены плавающие курсы. Объявления с фиксированными курсами будут деактивированы. Перейдите на плавающие курсы до {{end_date}}.", "1448855725": "Добавить платежные методы", + "1452260922": "Слишком много неудачных попыток", "1467483693": "Прошлые ордеры", "1474532322": "Сортировать по", "1480915523": "Пропустить", "1505293001": "Партнеры", + "1529843851": "Ссылка для подтверждения действует 10 минут", "1583335572": "Если ваше объявление не получит ордер в течение {{adverts_archive_period}} дн., оно будет деактивировано.", "1587250288": "ID объявления {{advert_id}} ", "1607051458": "Поиск по псевдониму", @@ -130,12 +136,12 @@ "1703154819": "Вы редактируете объявление о продаже <0>{{ target_amount }} {{ target_currency }}...", "1721422292": "Показывать мое настоящее имя", "1734661732": "Ваш баланс DP2P: {{ dp2p_balance }}", - "1738504192": "Электронный кошелёк", + "1738504192": "Электронный кошелек", "1747523625": "Назад", "1752096323": "Значение {{field_name}} не должно быть ниже мин. лимита", "1767817594": "Завершенные (покупка) <0>30д", - "1784151356": "на", - "1791767028": "Установите фиксированный курс для вашего объявления.", + "1784151356": "по", + "1791767028": "Установите фиксированный курс для объявления.", "1794470010": "Я произвел(а) полную оплату, но продавец не отправил средства.", "1794474847": "Я получил(а) платеж", "1798116519": "Доступная сумма", @@ -148,9 +154,10 @@ "1928240840": "Продать {{ currency }}", "1976156928": "Вы отправите", "1992961867": "Курс (1 {{currency}})", + "1994023526": "Адрес эл. почты был введен с ошибкой или опечаткой (случается с лучшими из нас).", "2020104747": "Фильтры", "2029375371": "Платежные инструкции", - "2032274854": "{{recommended_count}} трейдеров рекомендуют", + "2032274854": "Рекомендаций трейдеров: {{recommended_count}}", "2039361923": "Вы создаете объявление о продаже...", "2060873863": "Ваш ордер {{order_id}} завершен", "2063890788": "Отменено", @@ -174,11 +181,11 @@ "-2125702445": "Инструкции", "-1274358564": "Макс. лимит", "-1995606668": "Сумма", - "-1965472924": "Фиксированная ставка", + "-1965472924": "Фиксированный курс", "-1081775102": "Значение {{field_name}} не должно быть выше макс. лимита", "-885044836": "Значение {{field_name}} не должно быть выше макс. лимита", "-1764050750": "Платежные реквизиты", - "-2021135479": "Это поле является обязательным.", + "-2021135479": "Обязательное поле.", "-2005205076": "{{field_name}} превышает максимальную длину в 200 символов.", "-480724783": "У вас уже есть объявление с таким курсом", "-1207312691": "Завершенные", @@ -211,7 +218,7 @@ "-55126326": "Продавец", "-835196958": "Получить платеж на", "-1218007718": "Вы можете выбрать до 3.", - "-1933432699": "Введите сумму {{transaction_type}}", + "-1933432699": "Введите сумму: {{transaction_type}}", "-2021730616": "{{ad_type}}", "-490637584": "Лимиты: {{min}}–{{max}} {{currency}}", "-1974067943": "Ваши банковские реквизиты", @@ -229,20 +236,26 @@ "-1856204727": "Сбросить", "-1638172550": "Чтобы активировать эту функцию, сделайте следующее:", "-559300364": "Ваша касса Deriv P2P заблокирована", - "-740038242": "Ваш тариф", + "-2124584325": "Мы подтвердили ваш ордер", + "-878014035": "Убедитесь, что получили {{amount}} {{currency}} на свой счет, и нажмите «Подтвердить», чтобы завершить транзакцию.", + "-1968971120": "Мы отправили письмо на {{email_address}}.<0 />Нажмите на ссылку в письме, чтобы подтвердить ордер.", + "-142727028": "Письмо попало в папку со спамом.", + "-329713179": "Ok", + "-740038242": "Ваш курс", + "-1728351486": "Неверная ссылка для подтверждения", + "-1088454544": "Получить новую ссылку", "-674715853": "Ваше объявление превышает дневной лимит", "-744406": "Вашего объявления нет в списке <0>Покупка/продажа, так как сумма превышает дневной лимит {{limit}} {{currency}}.\n <1 /><1 />Вы можете найти объявление в разделе <0>Мои объявления. Свяжитесь с нами через <2>чат, если хотите увеличить дневной лимит.", - "-329713179": "Ok", "-984140537": "Добавить", "-1072444041": "Обновить", "-1406830100": "Способ оплаты", "-1561775203": "Купить {{currency}}", "-1527285935": "Продать {{currency}}", "-592818187": "Ваш баланс Deriv P2P: {{ dp2p_balance }}", - "-1654157453": "Фиксированная ставка (1 {{currency}})", + "-1654157453": "Фиксированный курс (1 {{currency}})", "-379708059": "Мин. ордер", "-1459289144": "Эта информация будет видна всем.", - "-207756259": "Вы можете нажать и выбрать до 3.", + "-207756259": "Нажмите и выберите до 3.", "-1282343703": "Вы создаете объявление о покупке <0>{{ target_amount }} {{ target_currency }} за <0>{{ local_amount }} {{ local_currency }} <1>({{ price_rate }} {{local_currency}}/{{ target_currency }})", "-2139632895": "Вы создаете объявление о продаже <0>{{ target_amount }} {{ target_currency }} за <0>{{ local_amount }} {{ local_currency }} <1>({{ price_rate }} {{local_currency}}/{{ target_currency }})", "-40669120": "Вы создаете объявление о продаже <0>{{ target_amount }} {{ target_currency }}...", @@ -257,13 +270,13 @@ "-1396464057": "Вы редактируете объявление о продаже...", "-392043307": "Хотите удалить это объявление?", "-854930519": "Вы НЕ сможете его восстановить.", - "-1600783504": "Установите плавающий курс для вашего объявления.", + "-1600783504": "Установите плавающий курс для объявления.", "-372210670": "Курс (1 {{account_currency}})", "-1400835517": "{{ad_type}} {{ id }}", "-727433417": "{{status}}", "-1667041441": "Курс (1 {{ offered_currency }})", - "-1886565882": "Ваши объявления с плавающими курсами отключены. Установите фиксированные курсы, чтобы активировать их.", - "-1797936681": "Фиксированные ставки включены для {{local_currency}}. Реклама с плавающей ставкой будет деактивирована. Переключитесь на фиксированные ставки на {{end_date}}.", + "-1886565882": "Объявления с плавающими курсами отключены. Установите фиксированные курсы, чтобы активировать их.", + "-1797936681": "На {{local_currency}} включены фиксированные курсы. Объявления с плавающими курсами будут деактивированы. Перейдите на фиксированные курсы до {{end_date}}.", "-792015701": "Касса Deriv P2P недоступна в вашей стране.", "-1220275347": "Для этого объявления можно выбрать до 3 платежных методов.", "-1889014820": "<0>Не нашли свой платежный метод? <1>Добавьте новый.", @@ -283,6 +296,7 @@ "-532709160": "Ваш псевдоним", "-2008992756": "Хотите отменить этот ордер?", "-1666369246": "Если вы отмените ордер {{cancellation_limit}} раз за {{cancellation_period}} ч., ваш доступ на Deriv P2P будет заблокирован на {{block_duration}} ч.
\n(осталось отмен: {{number_of_cancels_remaining}}.)", + "-1618084450": "Если вы отмените этот ордер, ваш доступ на Deriv P2P будет заблокирован на {{block_duration}} ч.", "-2026176944": "Не отменяйте, если вы уже произвели оплату.", "-1989544601": "Отменить ордер", "-492996224": "Не отменять", @@ -295,7 +309,7 @@ "-1485778481": "Вы получили платеж?", "-403938778": "Перед подтверждением проверьте свой банковский счет или электронный кошелек и убедитесь, что вы получили платеж.", "-1875011752": "Да, я заплатил", - "-1146269362": "Я получил {{amount}} {{currency}}", + "-1146269362": "Я получил(а) {{amount}} {{currency}}", "-563116612": "Я еще не заплатил(а)", "-418870584": "Отменить ордер", "-1392383387": "Я заплатил(а)", @@ -314,10 +328,10 @@ "-2052184983": "ID ордера", "-2096350108": "Контрагент", "-750202930": "Активные ордеры", - "-1626659964": "Я получил {{amount}} {{currency}}.", + "-1626659964": "Я получил(а) {{amount}} {{currency}}.", "-1340125291": "Готово", - "-237014436": "{{recommended_count}} трейдер рекомендует", - "-1463630097": "Трейдеров 0 рекомендуют", + "-237014436": "Рекомендаций трейдеров: {{recommended_count}}", + "-1463630097": "Рекомендаций трейдеров: 0", "-2054589794": "Вам временно закрыт доступ к сервису из-за нескольких попыток отмены. Повторите попытку через {{date_time}} GMT.", "-1079963355": "обменов", "-930400128": "Чтобы использовать Deriv P2P, вам нужно выбрать отображаемое имя (псевдоним) и подтвердить свою личность." diff --git a/packages/p2p/src/translations/th.json b/packages/p2p/src/translations/th.json index 391ffefd1ee2..54268e23c600 100644 --- a/packages/p2p/src/translations/th.json +++ b/packages/p2p/src/translations/th.json @@ -1,73 +1,75 @@ { - "6794664": "โฆษณาที่ตรงกับยอดเงินคงเหลือและขีดจำกัด Deriv P2P ของคุณ", - "21103557": "ยอดดุล Deriv P2P = เงินฝากที่ไม่สามารถกลับรายการได้ (การโอนเงินผ่านธนาคาร ฯลฯ) ส่วนหนึ่งของเงินฝากที่อาจกลับรายการ (การชําระเงินด้วยบัตรเครดิต ฯลฯ)", + "6794664": "โฆษณาที่ตรงกับยอดดุล Deriv P2P และขีดจำกัดของคุณ", + "21103557": "ยอดดุล Deriv P2P = เงินฝากที่ไม่สามารถกลับรายการได้ (เช่นเงินที่โอนผ่านธนาคาร เป็นต้น) + ส่วนหนึ่งของเงินฝากที่อาจกลับรายการได้ (เช่น เงินที่ชําระด้วยบัตรเครดิต เป็นต้น)", "24711354": "ยอดสั่งซื้อทั้งหมด <0>30d | <1>อายุการใช้งาน", "47573834": "อัตราคงที่ (1 {{account_currency}})", - "50672601": "ซื้อ", - "51881712": "คุณมีโฆษณาที่มีอัตราแลกเปลี่ยนเหมือนกันสำหรับคู่สกุลเงินและประเภทคำสั่งซื้อนี้แล้ว

โปรดกำหนดอัตราอื่นสำหรับโฆษณาของคุณ", + "50672601": "ถูกซื้อแล้ว", + "51881712": "คุณมีโฆษณาที่มีอัตราแลกเปลี่ยนเหมือนกันสำหรับคู่สกุลเงินและประเภทคำสั่งซื้อนี้อยู่แล้ว

โปรดกำหนดอัตราแลกเปลี่ยนอื่นสำหรับโฆษณาของคุณ", "55916349": "ทั้งหมด", - "68867477": "รหัสคำสั่งซื้อ {{ id }}", + "68867477": "หมายเลขคำสั่งซื้อ {{ id }}", "121738739": "ส่ง", - "122280248": "เวลาเผยแพร่เฉลี่ย <0>30d", - "134205943": "โฆษณาของคุณที่มีอัตราคงที่ถูกปิดการใช้งาน ตั้งค่าอัตราการลอยตัวเพื่อเปิดใช้งานใหม่", - "140800401": "ลอย", + "122280248": "เวลาจำหน่ายโดยเฉลี่ย <0>30d", + "134205943": "โฆษณาของคุณซึ่งมีอัตราคงที่ได้ถูกปิดการใช้งาน ขอให้คุณตั้งค่าอัตราลอยตัวเพื่อจะเปิดใช้งานใหม่", + "140800401": "ลอยตัว", "145959105": "เลือกชื่อเล่น", "150156106": "บันทึกการเปลี่ยนแปลง", - "173939998": "เฉลี่ย จ่ายเวลา <0>30d", + "173939998": "เวลาจ่ายโดยเฉลี่ย <0>30d", "197477687": "แก้ไข {{ad_type}} โฆษณา", "203271702": "ลองอีกครั้ง", "233677840": "ของอัตราดอกเบี้ยในตลาด", "246815378": "เมื่อตั้งค่าแล้ว ชื่อเล่นของคุณจะไม่สามารถเปลี่ยนแปลงได้", - "276261353": "เวลาจ่ายเฉลี่ย <0>30d", - "316725580": "You can no longer rate this transaction.", + "276261353": "เวลาจ่ายโดยเฉลี่ย <0>30d", + "316725580": "คุณไม่สามารถให้คะแนนธุรกรรมนี้ได้อีกแล้ว", "323002325": "ลงโฆษณา", "324970564": "รายละเอียดข้อมูลการติดต่อของผู้ขาย", - "338910048": "คุณจะปรากฏต่อผู้ใช้รายอื่นเป็น", + "338910048": "คุณจะปรากฏต่อผู้ใช้รายอื่นในฐานะที่เป็น", "364681129": "รายละเอียดการติดต่อ", - "407600801": "คุณจ่าย {{amount}} {{currency}} ให้กับ {{other_user_name}} แล้วหรือยัง", + "407600801": "คุณได้จ่าย {{amount}} {{currency}} ให้กับ {{other_user_name}} แล้วหรือยัง", "416167062": "คุณจะได้รับ", "424668491": "หมดอายุ", - "439264204": "โปรดกำหนดขีดจำกัดการสั่งซื้อขั้นต่ำและ/หรือสูงสุดที่แตกต่างกัน

ช่วงของโฆษณาของคุณไม่ควรทับซ้อนกับโฆษณาที่ทำงานอยู่ของคุณ", + "439264204": "โปรดกำหนดขีดจำกัดการสั่งซื้อขั้นต่ำ และ/หรือ ขั้นสูงสุดที่มีมูลค่าแตกต่างกัน

ช่วงของโฆษณาของคุณไม่ควรทับซ้อนกับโฆษณาที่กำลังทำงานอยู่ของคุณ", "452752527": "อัตรา (1 {{ currency }})", "460477293": "ป้อนข้อความ", "464044457": "ชื่อเล่นของผู้ซื้อ", - "473688701": "โปรดใส่จำนวณที่ถูกต้อง", + "473688701": "โปรดใส่จำนวนที่ถูกต้อง", + "476023405": "คุณไม่ได้รับอีเมล์ใช่ไหม?", + "488150742": "ส่งอีเมล์อีกครั้ง", "498500965": "ชื่อเล่นของผู้ขาย", "501523417": "คุณไม่มีรายการคำสั่งซื้อ", "517202770": "กำหนดอัตราคงที่", - "523301614": "ปล่อย {{amount}} {{currency}}", + "523301614": "จำหน่าย {{amount}} {{currency}}", "525380157": "ซื้อ {{offered_currency}} คำสั่งซื้อ", "531912261": "ชื่อธนาคาร หมายเลขบัญชี ชื่อผู้ได้รับผลประโยชน์", "554135844": "แก้ไข", - "560402954": "User rating", - "565060416": "Exchange rate", + "560402954": "การให้คะแนนของผู้ใช้", + "565060416": "อัตราแลกเปลี่ยน", "580715136": "โปรดลงทะเบียนกับเรา", - "587882987": "โฆษณา", + "587882987": "ผู้โฆษณา", "592082899": "ไม่สามารถใส่ตัวอักษรซ้ำเกิน 5 ครั้ง", "611376642": "ล้าง", - "612069973": "Would you recommend this buyer?", - "628581263": "อัตราตลาด {{local_currency}} มีการเปลี่ยนแปลง", + "612069973": "คุณจะแนะนำผู้ขายรายนี้ให้คนอื่นๆหรือไม่", + "628581263": "อัตราตลาด {{local_currency}} ได้มีการเปลี่ยนแปลง", "649549724": "ฉันยังไม่ได้รับการชำระเงินใดๆ", + "661808069": "ส่งอีเมลอีกครั้งใน {{remaining_time}}", "662578726": "มีอยู่", "671582270": "จำนวนสูงสุดที่ใช้ได้คือ {{value}}", "683273691": "อัตรา (1 {{ account_currency }})", "728383001": "ฉันได้รับจำนวนเงินมากกว่าที่ตกลงกัน", - "733311523": "ธุรกรรม P2P ถูกล็อค คุณลักษณะนี้ไม่สามารถใช้ได้สำหรับตัวแทนการชำระเงิน", + "733311523": "ธุรกรรม P2P ได้ถูกล็อค คุณลักษณะนี้ไม่สามารถใช้ได้สำหรับตัวแทนการชำระเงิน", "767789372": "รอการชำระเงิน", "782834680": "เหลือเวลาอีก", - "783454335": "ใช่ เอาออก", + "783454335": "ใช่ ให้เอาออกไป", "830703311": "ประวัติของฉัน", "838024160": "รายละเอียดข้อมูลธนาคาร", "842911528": "อย่าแสดงข้อความนี้อีก", "873437248": "รายละเอียดคำแนะนำ (เพิ่มเติม)", "876086855": "โปรดกรอกแบบฟอร์มการประเมินทางการเงินให้สมบรูณ์", - "881141084": "ถ้าคุณยกเลิกใบสั่งนี้ คุณจะถูกบล็อกไม่ใช้ Deriv P2P เป็นเวลา {{block_duration}} ชั่วโมง", - "881351325": "Would you recommend this seller?", + "881351325": "คุณจะแนะนำผู้ซื้อรายนี้ให้คนอื่นๆหรือไม่", "887667868": "คำสั่งซื้อ", "949859957": "ส่ง", - "954233511": "ขาย", - "957529514": "หากต้องการสั่งซื้อ ให้เพิ่มวิธีการชำระเงินที่ผู้โฆษณาต้องการ:", - "988380202": "คำแนะนำของคุณ", + "954233511": "ถูกขายแล้ว", + "957529514": "หากต้องการสั่งซื้อ ให้คุณเพิ่มหนึ่งในวิธีการชำระเงินที่ผู้โฆษณาต้องการดังต่อไปนี้:", + "988380202": "คำสั่งของคุณ", "1001160515": "คำสั่งขาย", "1002264993": "ชื่อจริงของผู้ขาย", "1020552673": "คุณกำลังสร้างโฆษณาสำหรับซื้อ <0>{{ target_amount }} {{ target_currency }}...", @@ -77,146 +79,151 @@ "1057127276": "{{- avg_release_time_in_minutes}} นาที", "1065551550": "กำหนดอัตราลอยตัว", "1080990424": "ยืนยัน", - "1091533736": "อย่าเสี่ยงเงินของคุณด้วยการทำธุรกรรมเงินสด ใช้การโอนเงินผ่านธนาคารหรือ e-wallets แทน", + "1089110190": "คุณได้ให้ที่อยู่อีเมล์อื่นแก่เราโดยบังเอิญ (โดยปกติแล้ว มักจะเป็นอีเมล์ของที่ทำงานหรือของส่วนตัว แทนที่จะเป็นอีเมล์อันที่คุณตั้งใจจะส่งให้เรา)", + "1091533736": "อย่าเอาเงินทุนของคุณมาเสี่ยงกับการทำธุรกรรมเงินสด ขอให้คุณใช้การโอนเงินผ่านธนาคารหรือผ่านกระเป๋าเงินอิเล็กทรอนิกส์แทน", "1103731601": "โฆษณาของคุณ ถูกระงับชั่วคราว", "1106073960": "คุณได้สร้างโฆษณา", - "1106485202": "ยอดคงเหลือ Deriv P2P ที่มีอยู่", - "1119887091": "การตรวจสอบ", - "1137964885": "มีได้เฉพาะตัวอักษร ตัวเลข และตัวอักษรพิเศษ .- _ @.", + "1106485202": "ยอดดุล Deriv P2P ที่มีอยู่", + "1119887091": "การตรวจสอบยืนยัน", + "1137964885": "มีได้เฉพาะตัวอักษร ตัวเลข และตัวอักขระพิเศษ .- _ @.", "1147508780": "{{accordion_state}}", "1151608942": "ยอดรวมทั้งหมด", - "1157877436": "{{field_name}} ไม่ควรเกิน", + "1157877436": "{{field_name}} ไม่ควรเกินจำนวนที่ตั้งไว้", "1161621759": "เลือกชื่อเล่นของคุณ", "1162965175": "ผู้ซื้อ", - "1163072833": "<0>ID ได้รับการยืนยัน", - "1191941618": "ป้อนค่าที่อยู่ภายใน -{{limit}}% ถึง {{limit}}%", + "1163072833": "<0>ID ได้รับการตรวจสอบยืนยันแล้ว", + "1191941618": "ป้อนมูลค่าที่อยู่ภายใน -{{limit}}% ถึง {{limit}}%", "1202500203": "จ่ายตอนนี้", - "1228352589": "Not rated yet", + "1228352589": "ยังไม่ได้รับการจัดอันดับ", "1236083813": "รายละเอียดการชำระเงินของคุณ", "1258285343": "อ๊ะ มีบางอย่างผิดปกติ", "1265751551": "ยอดดุล Deriv P2P", - "1286797620": "ใช้งานอยู่", - "1287051975": "ชื่อเล่นของคุณ ยาวเกินไป", - "1303016265": "Yes", - "1313218101": "Rate this transaction", + "1286797620": "กำลังใช้งานอยู่", + "1287051975": "ชื่อเล่นของคุณยาวเกินไป", + "1303016265": "ใช่", + "1313218101": "ให้คะแนนธุรกรรมนี้", "1314266187": "เข้าร่วมวันนี้", "1328352136": "ขาย {{ account_currency }}", "1337027601": "คุณขาย {{offered_amount}} {{offered_currency}}\n", - "1347322213": "How would you rate this transaction?", - "1347724133": "ฉันจ่ายเรียบร้อยแล้ว {{amount}} {{currency}}.", + "1347322213": "คุณจะให้คะแนนธุรกรรมนี้อย่างไร?", + "1347724133": "ฉันจ่าย {{amount}} {{currency}} เรียบร้อยแล้ว", "1366244749": "จำกัด", - "1370999551": "อัตราดอกเบี้ยลอยตัว", + "1370999551": "อัตราลอยตัว", "1371193412": "ยกเลิก", - "1381949324": "<0>ที่อยู่ ยืนยันแล้ว", - "1422356389": "ไม่พบผลลัพธ์สำหรับ \"{{text}}\".", - "1430413419": "จำนวณสูงสุด คือ {{value}} {{currency}}", - "1438103743": "เปิดใช้อัตราแบบลอยตัวสำหรับ {{local_currency}} โฆษณาที่มีอัตราคงที่จะถูกปิดใช้งาน เปลี่ยนเป็นอัตราลอยตัวภายในวันที่ {{end_date}}", + "1381949324": "<0>ที่อยู่ ได้รับการยืนยันแล้ว", + "1398938904": "เราไม่สามารถส่งอีเมล์ไปยังที่อยู่นี้ได้ (โดยปกติแล้ว เนื่องจากมีการตั้งไฟร์วอลล์หรือมีตัวคัดกรอง)", + "1422356389": "ไม่พบผลลัพธ์สำหรับ \"{{text}}\"", + "1430413419": "จำนวนสูงสุด คือ {{value}} {{currency}}", + "1438103743": "เปิดใช้อัตราแบบลอยตัวสำหรับ {{local_currency}} โฆษณาที่มีอัตราคงที่จะถูกปิดการใช้งานไว้ ขอให้เปลี่ยนเป็นอัตราลอยตัวภายในวันที่ {{end_date}}", "1448855725": "เพิ่มวิธีการชำระเงิน", - "1467483693": "ใบสั่งที่ผ่านมา", - "1474532322": "เรียงลําดับตาม", - "1480915523": "Skip", + "1452260922": "มีการพยายามทำรายการที่ไม่สำเร็จหลายครั้งเกินไป", + "1467483693": "คำสั่งซื้อขายที่ผ่านมา", + "1474532322": "จัดเรียงลําดับโดย", + "1480915523": "ข้าม", "1505293001": "พันธมิตรธุรกรรม", - "1583335572": "ถ้าโฆษณาไม่ได้รับคําสั่งซื้อสําหรับ {{adverts_archive_period}} วัน โฆษณานั้นจะถูกปิดใช้งาน", - "1587250288": "รหัสโฆษณา {{advert_id}} ", + "1529843851": "ลิงก์ยืนยันจะหมดอายุภายในเวลา 10 นาที", + "1583335572": "ถ้าโฆษณาไม่ได้รับออร์เดอร์หรือคําสั่งซื้อขายเลยในช่วงเวลา {{adverts_archive_period}} วัน โฆษณานั้นจะถูกปิดใช้งาน", + "1587250288": "หมายเลขโฆษณา {{advert_id}} ", "1607051458": "ค้นหาตามชื่อเล่น", "1615530713": "มีบางอย่างไม่ถูกต้อง", "1620858613": "คุณกำลังแก้ไขโฆษณาเพื่อขาย <0>{{ target_amount }} {{ target_currency }} ในราคา <0>{{ local_amount }} {{ local_currency }} <1>({{ price_rate }} {{local_currency}}/{{ target_currency }})", "1623916605": "ฉันไม่สามารถชำระเงินเต็มจำนวนได้", "1654365787": "ที่ไม่รู้จัก", "1671725772": "หากคุณเลือกที่จะยกเลิก รายละเอียดที่แก้ไขจะสูญหายไป", - "1675716253": "จำนวณขั้นต่ำ", + "1675716253": "จำนวนขั้นต่ำ", "1678804253": "ซื้อ {{ currency }}", "1691540875": "แก้ไขวิธีการชำระเงิน", "1703154819": "คุณกำลังแก้ไขโฆษณาเพื่อขาย <0>{{ target_amount }} {{ target_currency }}...", "1721422292": "แสดงชื่อจริงของฉัน", - "1734661732": "ยอดคงเหลือ DP2P ของคุณคือ {{ dp2p_balance }}", + "1734661732": "ยอดดุล DP2P ของคุณคือ {{ dp2p_balance }}", "1738504192": "กระเป๋าเงินอิเล็กทรอนิกส์", "1747523625": "ย้อนกลับ", - "1752096323": "{{field_name}} ไม่ควรน้อยกว่า จำนวณขั้นต่ำ", - "1767817594": "ซื้อธุรกรรม <0>30d", + "1752096323": "{{field_name}} ไม่ควรน้อยกว่าจำนวนขีดจำกัดขั้นต่ำสุด", + "1767817594": "การเสร็จสมบูรณ์ของธุรกรรมการซื้อ <0>30d", "1784151356": "ที่", "1791767028": "กำหนดอัตราคงที่สำหรับโฆษณาของคุณ", - "1794470010": "ฉันได้ชําระเงินเต็มจํานวนแล้ว แต่ผู้ขายยังไม่ได้นำเงินออก", + "1794470010": "ฉันได้ชําระเงินเต็มจํานวนแล้ว แต่ผู้ขายยังไม่ได้จำหน่ายนำเงินออกมา", "1794474847": "ฉันได้รับการชำระเงินแล้ว", "1798116519": "ยอดจำนวณที่สามารถใช้งาน", "1842172737": "คุณได้รับ {{offered_amount}} {{offered_currency}}", "1848044659": "คุณยังไม่มีโฆษณา", - "1859308030": "Give feedback", + "1859308030": "ให้ข้อเสนอแนะ", "1874956952": "กดปุ่มด้านล่างเพื่อเพิ่มวิธีการชำระเงิน", "1886623509": "{{ad_type}} {{ account_currency }}", "1923443894": "ไม่ได้ใช้งาน", "1928240840": "ขาย {{ currency }}", "1976156928": "คุณจะส่ง", "1992961867": "อัตรา (1 {{currency}})", + "1994023526": "ที่อยู่อีเมลที่คุณป้อนมีข้อผิดพลาดหรือคำพิมพ์ผิด (เกิดขึ้นได้กับทุกคน)", "2020104747": "กรอง", "2029375371": "คำแนะนำการชำระเงิน", - "2032274854": "Recommended by {{recommended_count}} traders", + "2032274854": "แนะนำโดยเทรดเดอร์ {{recommended_count}} คน", "2039361923": "คุณกำลังสร้างโฆษณาเพื่อขาย...", - "2060873863": "Your order {{order_id}} is complete", + "2060873863": "คำสั่งซื้อของคุณ {{order_id}} เสร็จสมบูรณ์แล้ว", "2063890788": "ยกเลิกเรียบร้อยแล้ว", "2091671594": "สถานะ", - "2096014107": "ใช้งาน", - "2121837513": "จำนวณต่ำสุด คือ {{value}} {{currency}}", + "2096014107": "นำมาใช้งาน", + "2121837513": "จำนวนขั้นต่ำสุด คือ {{value}} {{currency}}", "2142425493": "รหัสของโฆษณา", "2144972362": "โปรดใช้การแชทสดเพื่อติดต่อทีมสนับสนุนลูกค้าของเราเพื่อขอความช่วยเหลือ", - "2145292295": "Rate", + "2145292295": "ประเมินค่า", "-1540251249": "ซื้อ {{ account_currency }}", - "-1267880283": "{{field_name}} ที่จำเป็น", - "-2019083683": "{{field_name}} สามารถใช้ได้เฉพาะ ตัวอักษร ตัวเลข ช่องว่าง และสัญลักษณ์เหล่านี้: -+.,'#@():;", - "-222920564": "{{field_name}} ได้เกินความยาวสูงสุด", - "-2093768906": "{{name}} has released your funds.
Would you like to give your feedback?", + "-1267880283": "{{field_name}} นั้นจำเป็นต้องมี", + "-2019083683": "{{field_name}} สามารถใช้ได้เฉพาะตัวอักษร ตัวเลข ช่องว่าง และสัญลักษณ์เหล่านี้: -+.,'#@():;", + "-222920564": "{{field_name}} นั้นเกินขีดความยาวขั้นสูงสุดแล้ว", + "-2093768906": "{{name}} ได้จำหน่ายเงินของคุณแล้ว
คุณต้องการจะให้ความคิดเห็นของคุณหรือไม่?", "-857786650": "ตรวจสอบสถานะการยืนยันของคุณ", "-612892886": "เราจำเป็นต้องให้คุณอัปโหลดเอกสารเพื่อยืนยันตัวตนของคุณ", "-2090325029": "การยืนยันตัวตนเสร็จสมบูรณ์", "-1101273282": "โปรดระบุชื่อเล่นของคุณ", "-919203928": "ชื่อเล่นของคุณ สั้นเกินไป", - "-1907100457": "ไม่สามารถเริ่มต้น และลงท้ายด้วย หรือใช้ตัวอักษรพิเศษซ้ำ", + "-1907100457": "ไม่สามารถเริ่มต้น หรือลงท้าย หรือใช้ซ้ำด้วยตัวอักขระพิเศษ", "-2125702445": "คำแนะนำ", - "-1274358564": "จำนวณสูงสุด", + "-1274358564": "จำนวนขั้นสูงสุด", "-1995606668": "จำนวน", "-1965472924": "อัตราคงที่", - "-1081775102": "{{field_name}} ไม่ควรต่ำกว่า ค่าจำกัดสูงสุด", + "-1081775102": "{{field_name}} ไม่ควรเกินค่าจำกัดขั้นสูงสุด", "-885044836": "{{field_name}} ไม่ควรเกิน ค่าจำกัดสูงสุด", "-1764050750": "รายละเอียดการชําระเงิน", - "-2021135479": "This field is required.", - "-2005205076": "{{field_name}} has exceeded maximum length of 200 characters.", + "-2021135479": "ข้อมูลในช่องนี้จำเป็นต้องมี", + "-2005205076": "ช่อง {{field_name}} นี้มีความยาวเกินความยาวสูงสุดที่ตั้งไว้เป็น 200 อักขระ", "-480724783": "คุณมีโฆษณาที่มีอัตรานี้อยู่แล้ว", "-1207312691": "เสร็จ", "-688728873": "หมดอายุ", - "-1951641340": "ภายใต้ข้อพิพาท", + "-1951641340": "ยังอยู่ภายใต้ข้อพิพาท", "-1738697484": "ยืนยันการชำระเงิน", - "-1611857550": "รอแม่ค้าคอนเฟิร์ม", + "-1611857550": "กำลังรอให้ผู้ขายยืนยัน", "-1452684930": "ชื่อจริงของผู้ซื้อ", "-1597110099": "ได้รับ", "-892663026": "รายละเอียดข้อมูลการติดต่อของคุณ", "-1875343569": "รายละเอียดการชําระเงินของผู้ขาย", - "-92830427": "คำแนะนำผู้ขาย", - "-1940034707": "คำแนะนำผู้ซื้อ", + "-92830427": "คำแนะนำของผู้ขาย", + "-1940034707": "คำแนะนำของผู้ซื้อ", "-137444201": "ซื้อ", "-1306639327": "วิธีการชำระเงิน", "-1102534097": "ไม่มีโฆษณา", - "-904197848": "ขีด จำกัด {{min_order_amount_limit_display}}-{{max_order_amount_limit_display}} {{currency}}", + "-904197848": "ขีดจำกัด {{min_order_amount_limit_display}}-{{max_order_amount_limit_display}} {{currency}}", "-464361439": "{{- avg_buy_time_in_minutes}} นาที", - "-2109576323": "ขายธุรกรรม <0>30d", - "-165392069": "เวลาเผยแพร่เฉลี่ย <0>30d", - "-1154208372": "ปริมาณธุรกรรม <0>30d", + "-2109576323": "การเสร็จสมบูรณ์ของธุรกรรมการขาย <0>30d", + "-165392069": "เวลาจำหน่ายโดยเฉลี่ย <0>30d", + "-1154208372": "ปริมาณการเทรด <0>30d", "-1845037007": "หน้าผู้ลงโฆษณา", - "-2015102262": "({{number_of_ratings}} rating)", - "-1412298133": "({{number_of_ratings}} ratings)", + "-2015102262": "(คะแนน{{number_of_ratings}})", + "-1412298133": "(คะแนน{{number_of_ratings}})", "-1070228546": "เข้าร่วมเมื่อ {{days_since_joined}} วันก่อน", "-1837059346": "ซื้อ / ขาย", - "-494667560": "คำสั่งซื้อ", + "-494667560": "คำสั่งซื้อขาย", "-679691613": "โฆษณาของฉัน", - "-1148912768": "หากอัตราตลาดเปลี่ยนแปลงจากอัตราที่แสดงที่นี่ เราจะไม่สามารถดำเนินการตามคำสั่งซื้อของคุณได้", + "-1148912768": "หากอัตราแลกเปลี่ยนของตลาดเปลี่ยนแปลงไปจากอัตราที่แสดงอยู่ที่นี่ เราจะไม่สามารถดำเนินการตามคำสั่งซื้อของคุณได้", "-55126326": "ผู้ขาย", "-835196958": "รับชำระเงินที่", "-1218007718": "คุณสามารถเลือกได้ถึง 3", - "-1933432699": "ป้อน {{transaction_type}} จำนวนเงิน", + "-1933432699": "ป้อนจำนวนเงิน {{transaction_type}}", "-2021730616": "{{ad_type}}", "-490637584": "จำกัด: {{min}}—{{max}} {{currency}}", "-1974067943": "รายละเอียดข้อมูลธนาคารของคุณ", "-1285759343": "ค้นหา", - "-2035037071": "ยอด Deriv P2P ของคุณไม่เพียงพอ โปรดเพิ่มยอดเงินของคุณก่อนลองอีกครั้ง", + "-2035037071": "ยอดดุล Deriv P2P ของคุณนั้นไม่เพียงพอ โปรดเพิ่มยอดเงินของคุณก่อนจะลองอีกครั้ง", "-412680608": "เพิ่มวิธีการชําระเงิน", "-1657433201": "ไม่มีโฆษณาที่ตรงกัน", "-1862812590": "จำกัด {{ min_order }}–{{ max_order }} {{ currency }}", @@ -227,22 +234,28 @@ "-1554938377": "ค้นหาวิธีการชําระเงิน", "-75934135": "โฆษณาที่ตรงกัน", "-1856204727": "ตั้งค่าใหม่", - "-1638172550": "ในการเปิดใช้งานคุณสมบัตินี้คุณต้องดำเนินการดังต่อไปนี้:", - "-559300364": "แคชเชียร์ Deriv P2P ของคุณถูกบล็อก", + "-1638172550": "ในการเปิดใช้งานลูกเล่นนี้ คุณต้องดำเนินการดังต่อไปนี้:", + "-559300364": "แคชเชียร์ Deriv P2P ของคุณได้ถูกปิดกั้น", + "-2124584325": "เราได้ตรวจสอบยืนยันคำสั่งซื้อของคุณแล้ว", + "-878014035": "โปรดทำให้แน่ใจว่าคุณได้รับ {{amount}} {{currency}} ในบัญชีของคุณและกดยืนยันเพื่อทำธุรกรรมให้เสร็จสิ้นสมบูรณ์", + "-1968971120": "เราได้ส่งอีเมลล์ให้คุณที่ {{email_address}} <0 />กรุณาคลิกลิงก์ยืนยันในอีเมล์นั้นเพื่อยืนยันออร์เดอร์คำสั่งซื้อของคุณ", + "-142727028": "อีเมล์นั้นไปอยู่ในกล่องจดหมายขยะ (บางครั้งบางอย่างก็หลงเข้าไปในนั้นได้)", + "-329713179": "ตกลง", "-740038242": "อัตราของคุณคือ", + "-1728351486": "ลิงก์ยืนยันไม่ถูกต้องหรือเป็นโมฆะ", + "-1088454544": "รับลิงก์อันใหม่", "-674715853": "โฆษณาของคุณเกินขีดจำกัดรายวัน", - "-744406": "โฆษณาของคุณไม่อยู่ในรายการ <0>ซื้อ/ขาย เนื่องจากจำนวนเงินเกินขีดจำกัดรายวันของคุณที่ {{limit}} {{currency}}\n <1 /><1 />คุณยังคงสามารถเห็นโฆษณาของคุณบน <0>โฆษณาของฉัน หากคุณต้องการเพิ่มขีดจำกัดรายวัน โปรดติดต่อเราทาง<2>แชทสด", - "-329713179": "ตกลง", + "-744406": "โฆษณาของคุณไม่อยู่ในลิสต์รายการ <0>ซื้อ/ขาย เนื่องจากจำนวนเงินเกินขีดจำกัดรายวันของคุณซึ่งถูกตั้งไว้ที่ {{limit}} {{currency}}\n <1 /><1 />คุณยังคงสามารถมองเห็นโฆษณาของคุณได้บน <0>โฆษณาของฉัน หากคุณต้องการเพิ่มขีดจำกัดรายวัน โปรดติดต่อเราทาง<2>แชทสด", "-984140537": "เพิ่ม", "-1072444041": "อัปเดตโฆษณา", "-1406830100": "วิธีการชำระเงิน", "-1561775203": "ซื้อ {{currency}}", "-1527285935": "ขาย {{currency}}", - "-592818187": "ยอดคงเหลือ Deriv P2P ของคุณคือ {{ dp2p_balance }}", + "-592818187": "ยอดดุล Deriv P2P ของคุณคือ {{ dp2p_balance }}", "-1654157453": "อัตราคงที่ (1 {{currency}})", "-379708059": "คำสั่งซื้อขั้นต่ำ", - "-1459289144": "ข้อมูลนี้สามารถมองเห็นได้ทุกคน", - "-207756259": "You may tap and choose up to 3.", + "-1459289144": "ทุกคนสามารถมองเห็นข้อมูลนี้ได้", + "-207756259": "คุณสามารถแตะปุ่มและเลือกได้ถึง 3", "-1282343703": "คุณกำลังสร้างโฆษณาเพื่อซื้อ <0>{{ target_amount }} {{ target_currency }} สำหรับ <0>{{ local_amount }} {{ local_currency }} <1>({{ price_rate }} {{local_currency}}/{{ target_currency }})", "-2139632895": "คุณกำลังสร้างโฆษณาเพื่อขาย <0>{{ target_amount }} {{ target_currency }} สำหรับ <0>{{ local_amount }} {{ local_currency }} <1>({{ price_rate }} {{local_currency}}/{{ target_currency }})", "-40669120": "คุณกำลังสร้างโฆษณาเพื่อขาย <0>{{ target_amount }} {{ target_currency }}...", @@ -257,44 +270,45 @@ "-1396464057": "คุณกำลังแก้ไขโฆษณาเพื่อขาย...", "-392043307": "คุณต้องการลบโฆษณานี้หรือไม่?", "-854930519": "คุณจะไม่สามารถกู้คืนได้", - "-1600783504": "ตั้งค่าอัตราดอกเบี้ยลอยตัวสำหรับโฆษณาของคุณ", + "-1600783504": "ตั้งค่าอัตราลอยตัวสำหรับโฆษณาของคุณ", "-372210670": "อัตรา (1 {{account_currency}})", "-1400835517": "{{ad_type}} {{ id }}", "-727433417": "{{status}}", "-1667041441": "อัตรา (1 {{ offered_currency }})\n", - "-1886565882": "โฆษณาของคุณที่มีอัตราดอกเบี้ยลอยตัวถูกปิดใช้งานตั้งอัตราดอกเบี้ยคงที่เพื่อเปิดใช้งานอีกครั้ง", - "-1797936681": "อัตราคงที่เปิดใช้งานสำหรับ {{local_currency}} โฆษณาที่มีอัตราดอกเบี้ยลอยตัวจะถูกปิดใช้งานเปลี่ยนเป็นอัตราดอกเบี้ยคงที่โดย {{end_date}}.", - "-792015701": "Deriv P2P cashier ไม่สามารถใช้ได้ในประเทศของคุณ", + "-1886565882": "โฆษณาของคุณที่มีอัตราลอยตัวถูกปิดใช้งาน กรุณาตั้งอัตราคงที่เพื่อเปิดใช้งานอีกครั้ง", + "-1797936681": "อัตราคงที่นั้นถูกเปิดใช้งานสำหรับ {{local_currency}} ดังนั้นโฆษณาที่มีอัตราลอยตัวจะถูกปิดใช้งาน กรุณาเปลี่ยนเป็นอัตราคงที่ภายในวันที่ {{end_date}}.", + "-792015701": "แคชเชียร์ Deriv P2P นั้นไม่สามารถใช้ได้ในประเทศของคุณ", "-1220275347": "คุณสามารถเลือกวิธีการชำระเงินได้ถึง 3 วิธีสำหรับโฆษณานี้", - "-1889014820": "<0>หากไม่เห็นวิธีการชำระเงินของคุณ <1>เพิ่มใหม่", + "-1889014820": "<0>มองไม่เห็นวิธีการชำระเงินของคุณใช่หรือไม่? <1>เพิ่มใหม่", "-806152028": "โฆษณาของคุณ กำลังทำงาน", "-179005984": "บันทึก", "-2059312414": "รายละเอียดโฆษณา", "-1769584466": "สถิติ", "-2090878601": "ขีดจำกัดรายวัน", - "-130547447": "ปริมาณธุรกรรม <0>30d | <1>อายุการใช้งาน", + "-130547447": "ปริมาณการซื้อขาย <0>30d | <1>อายุการใช้งาน", "-1792280476": "เลือกวิธีการชําระเงินของคุณ", "-293182503": "ยกเลิกการเพิ่มวิธีการชำระเงินนี้ไหม", - "-1850127397": "หากคุณเลือกที่จะยกเลิก รายละเอียดที่คุณป้อนจะสูญหาย", + "-1850127397": "หากคุณเลือกที่จะยกเลิก รายละเอียดที่คุณป้อนเข้าไปจะสูญหาย", "-383030149": "คุณยังไม่ได้เพิ่มวิธีการชำระเงินใด ๆ", "-1269362917": "เพิ่มใหม่", "-146021156": "ลบ {{payment_method_name}}?", "-231863107": "ไม่ใช่", "-532709160": "ชื่อเล่นของคุณ", "-2008992756": "คุณต้องการยกเลิกคำสั่งซื้อนี้หรือไม่?", - "-1666369246": "ถ้าคุณยกเลิกใบสั่งของคุณ {{cancellation_limit}} ครั้งใน {{cancellation_period}} ชั่วโมง คุณจะถูกบล็อกไม่ใช้ Deriv P2P เป็นเวลา {{block_duration}} ชั่วโมง
({{number_of_cancels_remaining}} ที่เหลืออยู่)", + "-1666369246": "ถ้าคุณยกเลิกคำสั่งซื้อของคุณจำนวน {{cancellation_limit}} ครั้งในระยะเวลา {{cancellation_period}} ชั่วโมง คุณจะถูกบล็อกการเข้าใช้ Deriv P2P เป็นเวลา {{block_duration}} ชั่วโมง
ทั้งนี้มีจำนวนการยกเลิกเหลืออยู่ ({{number_of_cancels_remaining}} ครั้ง)", + "-1618084450": "หากคุณยกเลิกคำสั่งซื้อนี้ คุณจะถูกปิดกั้นไม่ให้เข้าใช้งาน Deriv P2P เป็นเวลา {{block_duration}} ชั่วโมง", "-2026176944": "โปรดอย่ายกเลิกหากคุณชําระเงินแล้ว", "-1989544601": "ยกเลิกคำสั่งซื้อนี้", "-492996224": "อย่าทำการยกเลิก\n", "-510341549": "ฉันได้รับจำนวนเงินน้อยกว่าที่ตกลงกัน", "-650030360": "ฉันจ่ายเงินเกินกว่าจำนวนเงินที่ตกลงกัน", - "-1192446042": "หากหัวข้อร้องเรียนของคุณไม่แสดงอยู่ที่นี่ โปรดติดต่อทีมฝ่ายบริการลูกค้าของเรา", - "-573132778": "การร้องเรียน", + "-1192446042": "หากข้อร้องเรียนของคุณไม่ได้แสดงอยู่ที่นี่ โปรดติดต่อทีมฝ่ายบริการลูกค้าของเรา", + "-573132778": "ข้อร้องเรียน", "-792338456": "คุณร้องเรียนเรื่องอะไร?", - "-1447732068": "Payment confirmation", - "-1485778481": "Have you received payment?", - "-403938778": "โปรดยืนยันหลังการตรวจสอบบัญชีธนาคารหรือบัญชี e-wallet ของคุณเพื่อให้แน่ใจว่าคุณได้รับการชำระเงินแล้ว.", - "-1875011752": "ใช่ฉันจ่ายแล้ว", + "-1447732068": "การยืนยันการชำระเงิน", + "-1485778481": "คุณได้รับการชำระเงินแล้วหรือไม่?", + "-403938778": "โปรดยืนยันหลังจากได้ตรวจสอบบัญชีธนาคารหรือบัญชี e-wallet ของคุณแล้วเท่านั้น เพื่อให้แน่ใจว่าคุณได้รับการชำระเงินเรียบร้อยแล้ว", + "-1875011752": "ใช่ ฉันได้จ่ายไปแล้ว", "-1146269362": "ฉันได้รับ {{amount}} {{currency}}", "-563116612": "ฉันยังไม่ได้ชำระเงิน", "-418870584": "ยกเลิกคำสั่งซื้อ", @@ -302,23 +316,23 @@ "-727273667": "ร้องขอ", "-2016990049": "ขาย {{offered_currency}} คำสั่งซื้อ", "-811190405": "เวลา", - "-415476028": "Not rated", - "-26434257": "You have until {{remaining_review_time}} GMT to rate this transaction.", - "-768709492": "Your transaction experience", - "-652933704": "Recommended", - "-84139378": "Not Recommended", - "-1983512566": "การสนทนานี้ถูกปิด", + "-415476028": "ไม่ได้รับการจัดอันดับ", + "-26434257": "คุณมีเวลาถึง {{remaining_review_time}} GMT เพื่อให้คะแนนการทำธุรกรรมนี้", + "-768709492": "ประสบการณ์การทำธุรกรรมของคุณ", + "-652933704": "ที่แนะนำ", + "-84139378": "ที่ไม่แนะนำ", + "-1983512566": "การสนทนานี้ถูกปิดลงแล้ว", "-1797318839": "ในกรณีที่มีข้อพิพาท เราจะพิจารณาการสื่อสารผ่านช่องทางแชท Deriv P2P เท่านั้น", "-283017497": "ลองใหม่อีกครั้ง", "-979459594": "ซื้อ/ขาย", "-2052184983": "รหัสคำสั่งซื้อ", "-2096350108": "คู่สัญญา\n", - "-750202930": "ใบสั่งที่ใช้งานอยู่", + "-750202930": "คำสั่งซื้อขายที่กำลังใช้งานอยู่", "-1626659964": "ฉันได้รับ {{amount}} {{currency}}", - "-1340125291": "Done", - "-237014436": "Recommended by {{recommended_count}} trader", - "-1463630097": "Recommended by 0 traders", - "-2054589794": "คุณถูกห้ามไม่ให้ใช้บริการของเราชั่วคราวเนื่องจากความพยายามในการยกเลิกหลายครั้ง ลองอีกครั้งหลังจาก {{date_time}} GMT", - "-1079963355": "ซื้อ-ขาย", - "-930400128": "ในการใช้ Deriv P2P คุณต้องเลือกชื่อที่ใช้แสดง (ชื่อเล่น) และยืนยันตัวตนของคุณ" + "-1340125291": "เสร็จสิ้น", + "-237014436": "แนะนำโดยเทรดเดอร์ {{recommended_count}} คน", + "-1463630097": "แนะนำโดยเทรดเดอร์ 0 คน", + "-2054589794": "คุณถูกห้ามไม่ให้ใช้บริการของเราโดยชั่วคราว เนื่องจากมีความพยายามในการยกเลิกหลายครั้ง คุณจะลองอีกครั้งได้หลังจาก {{date_time}} GMT", + "-1079963355": "ธุรกรรมซื้อ-ขาย", + "-930400128": "ในการใช้ Deriv P2P คุณต้องเลือกชื่อที่ปรากฏให้เห็น (ชื่อเล่น) และยืนยันตัวตนของคุณ" } \ No newline at end of file diff --git a/packages/p2p/src/translations/tr.json b/packages/p2p/src/translations/tr.json index 7984e6597988..f1f94ab504bc 100644 --- a/packages/p2p/src/translations/tr.json +++ b/packages/p2p/src/translations/tr.json @@ -16,10 +16,10 @@ "173939998": "Ort. ödeme süresi <0>30g", "197477687": "{{ad_type}} ilanını düzenle", "203271702": "Tekrar deneyin", - "233677840": "of the market rate", + "233677840": "piyasa oranının", "246815378": "Ayarlandıktan sonra takma adınız değiştirilemez.", "276261353": "Ort. ödeme süresi <0>30g", - "316725580": "You can no longer rate this transaction.", + "316725580": "Artık bu işlemi değerlendiriremezsiniz.", "323002325": "İlan ver", "324970564": "Satıcının iletişim bilgileri", "338910048": "Diğer kullanıcılara şu şekilde görüneceksiniz", @@ -32,6 +32,8 @@ "460477293": "Mesaj girin", "464044457": "Alıcının takma adı", "473688701": "Geçerli bir tutar girin", + "476023405": "E-postayı almadınız mı?", + "488150742": "E-postayı tekrar gönder", "498500965": "Satıcının takma adı", "501523417": "Hiç emriniz yok.", "517202770": "Sabit oran ayarla", @@ -39,15 +41,16 @@ "525380157": "{{offered_currency}} satın alma emri", "531912261": "Banka adı, hesap numarası, lehtar adı", "554135844": "Düzenle", - "560402954": "User rating", - "565060416": "Exchange rate", + "560402954": "Kullanıcı değerlendirmesi", + "565060416": "Döviz kuru", "580715136": "Lütfen bize kaydolun!", "587882987": "Reklamcılar", "592082899": "Bir karakteri 5 defadan fazla tekrarlayamaz.", "611376642": "Temizle", - "612069973": "Would you recommend this buyer?", + "612069973": "Bu alıcıyı tavsiye eder misiniz?", "628581263": "{{local_currency}} piyasa oranı değişti.", "649549724": "Hiçbir ödeme almadım.", + "661808069": "E-postayı tekrar gönder {{remaining_time}}", "662578726": "Kullanılabilir", "671582270": "Maksimum kullanılabilir tutar: {{value}}", "683273691": "Oran (1 {{ account_currency }})", @@ -61,8 +64,7 @@ "842911528": "Bu mesajı bir daha gösterme.", "873437248": "Talimatlar (isteğe bağlı)", "876086855": "Finansal değerlendirme formunu doldurun", - "881141084": "Bu emri iptal ederseniz, Deriv P2P'yi {{block_duration}} saat boyunca kullanmanız engellenecektir.", - "881351325": "Would you recommend this seller?", + "881351325": "Bu satıcıyı tavsiye eder misiniz?", "887667868": "Emir", "949859957": "Gönder", "954233511": "Satıldı", @@ -77,6 +79,7 @@ "1057127276": "{{- avg_release_time_in_minutes}} dk", "1065551550": "Dalgalı kuru ayarlayın", "1080990424": "Onayla", + "1089110190": "Yanlışlıkla bize başka bir e-posta adresi verdiniz (genellikle kastettiğiniz yerine bir iş veya kişisel bir adres).", "1091533736": "Nakit işlemler ile paranızı riske atmayın. Bunun yerine banka havalesi veya e-cüzdan kullanın.", "1103731601": "İlanlarınız duraklatıldı", "1106073960": "Bir ilan oluşturdunuz", @@ -89,38 +92,41 @@ "1161621759": "Takma adınızı seçin", "1162965175": "Alıcı", "1163072833": "<0>ID doğrulandı", - "1191941618": "Enter a value that's within -{{limit}}% to +{{limit}}%", + "1191941618": "-{{limit}} ile +{{limit}}% arasında bir değer girin", "1202500203": "Şimdi öde", - "1228352589": "Not rated yet", + "1228352589": "Henüz değerlendirilmedi", "1236083813": "Ödeme ayrıntılarınız", "1258285343": "Oops, bir sorun oluştu", "1265751551": "Deriv P2P Bakiyesi", "1286797620": "Aktif", "1287051975": "Takma ad çok uzun", - "1303016265": "Yes", - "1313218101": "Rate this transaction", + "1303016265": "Evet", + "1313218101": "Bu işlemi değerlendirin", "1314266187": "Bugün katıldı", "1328352136": "Sat {{ account_currency }}", "1337027601": "{{offered_amount}} {{offered_currency}} Sattınız", - "1347322213": "How would you rate this transaction?", + "1347322213": "Bu işlemi nasıl değerlendirirsiniz?", "1347724133": "{{amount}} {{currency}} ödeme yaptım.", "1366244749": "Limitler", - "1370999551": "Floating rate", + "1370999551": "Dalgalı oran", "1371193412": "İptal et", "1381949324": "<0>Address doğrulandı", + "1398938904": "E-postayı bu adrese teslim edemiyoruz (genellikle güvenlik duvarları veya filtreleme nedeniyle).", "1422356389": "\"{{text}}\" için sonuç yok.", "1430413419": "Maksimum değer: {{value}} {{currency}}", "1438103743": "{{local_currency}} için dalgalı kur etkinleştirildi. Sabit oranlı ilanlar devre dışı bırakılacak. {{end_date}} tarihi itibariyle dalgalı kura geçiş yap.", "1448855725": "Ödeme yöntemi ekle", + "1452260922": "Çok fazla başarısız girişim", "1467483693": "Geçmiş emirler", "1474532322": "İle Sırala", - "1480915523": "Skip", + "1480915523": "Atla", "1505293001": "Ticaret ortakları", + "1529843851": "Doğrulama bağlantısının süresi 10 dakika içinde sona eriyor", "1583335572": "Eğer ilan {{adverts_archive_period}} gün boyunca bir emir almazsa devre dışı bırakılır.", "1587250288": "İlan Kimliği {{advert_id}} ", "1607051458": "Takma ada göre ara", "1615530713": "Doğru olmayan bir şeyler var", - "1620858613": "You're editing an ad to sell <0>{{ target_amount }} {{ target_currency }} for <0>{{ local_amount }} {{ local_currency }} <1>({{ price_rate }} {{local_currency}}/{{ target_currency }})", + "1620858613": "Satmak için bir ilan oluşturuyorsunuz: <0>{{ local_amount }} {{ local_currency }} <1>({{ price_rate }} {{local_currency}}/{{ target_currency }}) için <0>{{ target_amount }} {{ target_currency }}", "1623916605": "Tam ödeme yapamadım.", "1654365787": "Bilinmeyen", "1671725772": "İptal etmeyi seçerseniz, düzenlenen ayrıntılar kaybolacak.", @@ -141,30 +147,31 @@ "1798116519": "Kullanılabilir miktar", "1842172737": "{{offered_amount}} {{offered_currency}} aldınız", "1848044659": "İlanınız yok.", - "1859308030": "Give feedback", + "1859308030": "Geri bildirim verin", "1874956952": "Ödeme yöntemleri eklemek için aşağıdaki düğmeye basın.", "1886623509": "{{ad_type}} {{ account_currency }}", "1923443894": "İnaktif", "1928240840": "Sat {{ currency }}", "1976156928": "Göndereceksiniz", "1992961867": "Oran (1 {{currency}})", + "1994023526": "Girdiğiniz e-posta adresinde bir hata veya yazım hatası var (en iyimizin başına gelir).", "2020104747": "Filtre", "2029375371": "Ödeme talimatları", - "2032274854": "Recommended by {{recommended_count}} traders", + "2032274854": "{{recommended_count}} tüccar tarafından önerildi", "2039361923": "Satmak için bir ilan oluşturuyorsunuz...", - "2060873863": "Your order {{order_id}} is complete", + "2060873863": "Siparişiniz {{order_id}} tamamlandı", "2063890788": "İptal edildi", "2091671594": "Durum", "2096014107": "Uygula", "2121837513": "Minimum: {{value}} {{currency}}", "2142425493": "İlan Kimliği", "2144972362": "Yardım için Müşteri Desteği ekibimizle iletişime geçmek üzere lütfen canlı sohbeti kullanın.", - "2145292295": "Rate", + "2145292295": "Değerlendir", "-1540251249": "Satın al {{ account_currency }}", "-1267880283": "{{field_name}} gereklidir", "-2019083683": "{{field_name}} yalnızca harf, sayı, boşluk ve bu simgelerden herhangi birini içerebilir: -+.,'#@():;", "-222920564": "{{field_name}} maksimum uzunluğu aştı", - "-2093768906": "{{name}} has released your funds.
Would you like to give your feedback?", + "-2093768906": "{{name}} paranızı serbest bıraktı.
Geri bildiriminizi iletmek ister misiniz?", "-857786650": "Doğrulama durumunuzu kontrol edin.", "-612892886": "Kimliğinizi doğrulamak için belgelerinizi yüklemeniz gerekir.", "-2090325029": "Kimlik doğrulama tamamlandı.", @@ -178,8 +185,8 @@ "-1081775102": "{{field_name}} Maks limitin altında olmamalıdır", "-885044836": "{{field_name}} Maks limiti aşmamalıdır", "-1764050750": "Ödeme ayrıntıları", - "-2021135479": "This field is required.", - "-2005205076": "{{field_name}} has exceeded maximum length of 200 characters.", + "-2021135479": "Bu alan zorunludur.", + "-2005205076": "{{field_name}} maksimum 200 karakter uzunluğunu aştı.", "-480724783": "Bu orana sahip bir ilanınız zaten var", "-1207312691": "Tamamlandı", "-688728873": "Süresi doldu", @@ -201,8 +208,8 @@ "-165392069": "Ort. serbest bırakma süresi <0>30g", "-1154208372": "Ticaret hacmi <0>30g", "-1845037007": "Reklamveren sayfası", - "-2015102262": "({{number_of_ratings}} rating)", - "-1412298133": "({{number_of_ratings}} ratings)", + "-2015102262": "({{number_of_ratings}} değerlendirme)", + "-1412298133": "({{number_of_ratings}} değerlendirme)", "-1070228546": "Katıldı {{days_since_joined}}g", "-1837059346": "Satın al / Sat", "-494667560": "Emirler", @@ -211,9 +218,9 @@ "-55126326": "Satıcı", "-835196958": "Ödeme al", "-1218007718": "En fazla 3 tane seçebilirsiniz.", - "-1933432699": "Enter {{transaction_type}} amount", + "-1933432699": "{{transaction_type}} tutarı girin", "-2021730616": "{{ad_type}}", - "-490637584": "Limit: {{min}}–{{max}} {{currency}}", + "-490637584": "Sınır: {{min}}—{{max}} {{currency}}", "-1974067943": "Banka bilgileriniz", "-1285759343": "Ara", "-2035037071": "Deriv P2P bakiyeniz yeterli değil. Lütfen tekrar denemeden önce bakiyenizi artırın.", @@ -229,10 +236,16 @@ "-1856204727": "Sıfırla", "-1638172550": "Bu özelliği etkinleştirmek için aşağıdakileri tamamlamanız gerekir:", "-559300364": "Deriv P2P kasiyeriniz engellendi", - "-740038242": "Your rate is", + "-2124584325": "Siparişinizi doğruladık", + "-878014035": "Please ensure you've received {{amount}} {{currency}} in your account and hit Confirm to complete the transaction.", + "-1968971120": "We've sent you an email at {{email_address}}.<0 />Please click the verification link in the email to verify your order.", + "-142727028": "The email is in your spam folder (sometimes things get lost there).", + "-329713179": "Tamam", + "-740038242": "Sizin oranınız", + "-1728351486": "Geçersiz doğrulama bağlantısı", + "-1088454544": "Yeni bağlantı alın", "-674715853": "Reklamınız günlük sınırı aşıyor", "-744406": "Tutarın {{limit}} {{currency}} günlük limitini aşması nedeniyle reklamınız <0>Satın Al/Sat listesinde yer almıyor.\n\n<1 /><1 />Yine de ilanlarınızı <0>İlanlarım kısmında görebilirsiniz. Günlük limitinizi artırmak isterseniz, lütfen <2>canlı sohbet aracılığıyla bizimle iletişim kurun.", - "-329713179": "Tamam", "-984140537": "Ekle", "-1072444041": "İlanı güncelle", "-1406830100": "Ödeme yöntemi", @@ -283,6 +296,7 @@ "-532709160": "Takma adınız", "-2008992756": "Bu emri iptal etmek istiyor musunuz?", "-1666369246": "{{cancellation_period}} saat içinde {{cancellation_limit}} kez emrinizi iptal ederseniz, {{block_duration}} saat boyunca Deriv P2P'yi kullanmanız engellenecektir.
({{number_of_cancels_remaining}} iptal kaldı.)", + "-1618084450": "If you cancel this order, you'll be blocked from using Deriv P2P for {{block_duration}} hours.", "-2026176944": "Ödemeyi zaten yapmışsanız lütfen iptal etmeyin.", "-1989544601": "Bu emri iptal et", "-492996224": "İptal etme", diff --git a/packages/p2p/src/translations/vi.json b/packages/p2p/src/translations/vi.json index 70b0037e53ec..500f7c10fe50 100644 --- a/packages/p2p/src/translations/vi.json +++ b/packages/p2p/src/translations/vi.json @@ -32,6 +32,8 @@ "460477293": "Nhập tin nhắn", "464044457": "Nickname của người mua", "473688701": "Nhập một khoản hợp lệ", + "476023405": "Didn't receive the email?", + "488150742": "Resend email", "498500965": "Nickname của người bán", "501523417": "Bạn không có đơn hàng nào.", "517202770": "Đặt tỉ giá cố định", @@ -48,6 +50,7 @@ "612069973": "Bạn có giới thiệu người mua này không?", "628581263": "Tỷ giá thị trường {{local_currency}} đã thay đổi.", "649549724": "Tôi chưa nhận được thanh toán.", + "661808069": "Resend email {{remaining_time}}", "662578726": "Khả dụng", "671582270": "Số tối đa là {{value}}", "683273691": "Tỷ lệ (1 {{ account_currency }})", @@ -61,7 +64,6 @@ "842911528": "Không hiển thị lại tin nhắn này.", "873437248": "Chỉ dẫn (không bắt buộc)", "876086855": "Hoàn thành biểu mẫu đánh giá tài chính", - "881141084": "Nếu bạn hủy lệnh này, bạn sẽ bị chặn sử dụng Deriv P2P trong {{block_duration}} giờ.", "881351325": "Bạn có giới thiệu người bán này không?", "887667868": "Lệnh", "949859957": "Gửi", @@ -77,6 +79,7 @@ "1057127276": "{{- avg_release_time_in_minutes}} phút", "1065551550": "Đặt tỉ giá thả nổi", "1080990424": "Xác nhận", + "1089110190": "You accidentally gave us another email address (usually a work or a personal one instead of the one you meant).", "1091533736": "Đừng mạo hiểm tiền của bạn với các giao dịch tiền mặt. Sử dụng chuyển khoản ngân hàng hoặc ví điện tử để thay thế.", "1103731601": "Quảng cáo của bạn đã dừng lại", "1106073960": "Bạn đã tạo một quảng cáo", @@ -108,14 +111,17 @@ "1370999551": "Tỉ giá thả nổi", "1371193412": "Huỷ", "1381949324": "Đã xác minh <0>địa chỉ", + "1398938904": "We can't deliver the email to this address (usually because of firewalls or filtering).", "1422356389": "Không có kết quả cho \"{{text}}\".", "1430413419": "Tối đa là {{value}} {{currency}}", "1438103743": "Tỷ giá thả nổi được kích hoạt cho {{local_currency}}. Các quảng cáo có tỷ giá cố định sẽ bị vô hiệu hóa. Chuyển sang tỷ giá thả nổi vào ngày {{end_date}}.", "1448855725": "Thêm các phương thức thanh toán", + "1452260922": "Too many failed attempts", "1467483693": "Đơn hàng cũ", "1474532322": "Phân loại bằng", "1480915523": "Bỏ qua", "1505293001": "Đối tác giao dịch", + "1529843851": "The verification link expires in 10 minutes", "1583335572": "Nếu quảng cáokhông nhận được đơn đặt hàng trong {{adverts_archive_period}} ngày, nó sẽ bị vô hiệu hóa.", "1587250288": "ID Quảng cáo {{advert_id}} ", "1607051458": "Tìm bằng nickname", @@ -148,6 +154,7 @@ "1928240840": "Bán {{ currency }}", "1976156928": "Bạn sẽ chuyển", "1992961867": "Tỷ lệ (1 {{currency}})", + "1994023526": "The email address you entered had a mistake or typo (happens to the best of us).", "2020104747": "Bộ lọc", "2029375371": "Các chỉ dẫn thanh toán", "2032274854": "Được giới thiệu bởi {{recommended_count}} thương nhân", @@ -229,10 +236,16 @@ "-1856204727": "Thiết lập lại", "-1638172550": "Để kích hoạt tính năng này, bạn phải hoàn thành các bước sau:", "-559300364": "Cổng thu ngân Deriv P2P của bạn bị khóa", + "-2124584325": "We've verified your order", + "-878014035": "Please ensure you've received {{amount}} {{currency}} in your account and hit Confirm to complete the transaction.", + "-1968971120": "We've sent you an email at {{email_address}}.<0 />Please click the verification link in the email to verify your order.", + "-142727028": "The email is in your spam folder (sometimes things get lost there).", + "-329713179": "Ok", "-740038242": "Tỉ giá của bạn là", + "-1728351486": "Invalid verification link", + "-1088454544": "Get new link", "-674715853": "Quảng cáo của bạn vượt quá giới hạn hàng ngày", "-744406": "Quảng cáo của bạn không được liệt kê trên <0>Mua/Bán bởi vì số tiền vượt quá giới hạn hàng ngày của bạn là {{limit}} {{currency}}.\n <1/><1 />Bạn vẫn có thể thấy quảng cáo của mình trên <0>Quảng cáo của tôi. Nếu bạn muốn tăng giới hạn hàng ngày của mình, vui lòng liên hệ với chúng tôi qua <2>trò chuyện trực tuyến.", - "-329713179": "Ok", "-984140537": "Thêm", "-1072444041": "Cập nhật quảng cáo", "-1406830100": "Phương thức thanh toán", @@ -283,6 +296,7 @@ "-532709160": "Biệt danh của bạn", "-2008992756": "Bạn có muốn hủy đơn hàng này?", "-1666369246": "Nếu bạn hủy lệnh của mình {{cancellation_limit}} lần trong {{cancellation_period}} giờ, bạn sẽ bị chặn sử dụng Deriv P2P trong {{block_duration}} giờ.
(còn {{number_of_cancels_remaining}} lần hủy.)", + "-1618084450": "If you cancel this order, you'll be blocked from using Deriv P2P for {{block_duration}} hours.", "-2026176944": "Vui lòng không hủy nếu bạn đã thanh toán.", "-1989544601": "Hủy đơn hàng này", "-492996224": "Không được hủy", diff --git a/packages/p2p/src/translations/zh_cn.json b/packages/p2p/src/translations/zh_cn.json index 267b88925cb0..fe117343ab05 100644 --- a/packages/p2p/src/translations/zh_cn.json +++ b/packages/p2p/src/translations/zh_cn.json @@ -32,6 +32,8 @@ "460477293": "输入消息", "464044457": "买者的昵称", "473688701": "输入有效金额", + "476023405": "没收到邮件?", + "488150742": "重发邮件", "498500965": "卖者的昵称", "501523417": "无订单。", "517202770": "设置固定汇率", @@ -48,6 +50,7 @@ "612069973": "是否推荐此买家?", "628581263": "{{local_currency}} 市场汇率已更改。", "649549724": "我还未收到任何款项。", + "661808069": "{{remaining_time}} 后重发电子邮件", "662578726": "可用", "671582270": "最大允许金额为 {{value}}", "683273691": "费率 (1 {{ account_currency }})", @@ -61,7 +64,6 @@ "842911528": "别再显示此消息。", "873437248": "说明(可选)", "876086855": "完成财务评估表", - "881141084": "如您取消此订单,{{block_duration}} 小时内您将被禁使用 Deriv P2P 。", "881351325": "是否推荐此卖家?", "887667868": "订单", "949859957": "提交", @@ -77,6 +79,7 @@ "1057127276": "{{- avg_release_time_in_minutes}} 分钟", "1065551550": "设置浮动汇率", "1080990424": "确认", + "1089110190": "您不小心给了另一个电子邮件地址(通常非您本意,而是属于工作或个人性质的)。", "1091533736": "不要用现金转账,因有资金风险。请改用银行转账或电子钱包。", "1103731601": "您的广告已暂停", "1106073960": "您已创建广告", @@ -108,14 +111,17 @@ "1370999551": "浮动汇率", "1371193412": "取消", "1381949324": "<0>地址已验证", + "1398938904": "无法发送电子邮件到此地址(通常是因为安装了防火墙或筛选器)。", "1422356389": "{{text}} 没有结果。", "1430413419": "最大为{{value}}{{currency}}", "1438103743": "{{local_currency}} 已启用浮动汇率。固定汇率的广告将被停用。请于 {{end_date}} 之前切换到浮动汇率。", "1448855725": "添加付款方式", + "1452260922": "失败尝试次数太多", "1467483693": "过去的订单", "1474532322": "排序方式", "1480915523": "跳过", "1505293001": "交易伙伴", + "1529843851": "验证链接将于 10 分钟后过期", "1583335572": "如广告连续 {{adverts_archive_period}} 天没收到订单将被停用。", "1587250288": "广告 ID {{advert_id}} ", "1607051458": "按昵称搜索", @@ -148,6 +154,7 @@ "1928240840": "卖出 {{ currency }}", "1976156928": "您将发送", "1992961867": "费率 (1 {{currency}})", + "1994023526": "输入的电子邮件地址拼写有误(有时这是难免的)。", "2020104747": "筛选器", "2029375371": "付款说明", "2032274854": "{{recommended_count}} 个交易者推荐", @@ -229,10 +236,16 @@ "-1856204727": "重置", "-1638172550": "要启用此功能,您必须完成以下操作:", "-559300364": "您的 Deriv P2P 收银台已锁定", + "-2124584325": "已经验证了订单", + "-878014035": "请确保账户已收到 {{amount}} {{currency}} 并点击确认以完成交易。", + "-1968971120": "已经发送了电子邮件至 {{email_address}}。<0 />请点击邮件中的验证链接以验证订单。", + "-142727028": "邮件在垃圾邮箱里(有时一些邮件会误送到那儿)。", + "-329713179": "确定", "-740038242": "汇率是", + "-1728351486": "验证链接无效", + "-1088454544": "获取新链接", "-674715853": "广告超出了每日限额", "-744406": "您的广告未在<0>买入/卖出列出,因为金额已超出了每日限额{{limit}} {{currency}}。\n <1 /><1 />您仍然可在<0>我的广告看到您的广告。如要增加每日限额,请通过<2>实时聊天与我们联系。", - "-329713179": "确定", "-984140537": "添加", "-1072444041": "更新广告", "-1406830100": "付款方式", @@ -283,6 +296,7 @@ "-532709160": "您的昵称", "-2008992756": "要取消此订单?", "-1666369246": "如您在{{cancellation_period}} 小时内取消订单{{cancellation_limit}} 次,{{block_duration}} 小时内您将被禁使用 Deriv P2P 。
(剩余取消次数为{{number_of_cancels_remaining}} 次。)", + "-1618084450": "如您取消此订单,{{block_duration}} 小时内您将被禁使用 Deriv P2P 。", "-2026176944": "如您已付款,请别取消。", "-1989544601": "取消订单", "-492996224": "不要取消", diff --git a/packages/p2p/src/translations/zh_tw.json b/packages/p2p/src/translations/zh_tw.json index aa308af42770..6ecae69d9690 100644 --- a/packages/p2p/src/translations/zh_tw.json +++ b/packages/p2p/src/translations/zh_tw.json @@ -32,6 +32,8 @@ "460477293": "輸入消息", "464044457": "買者的昵稱", "473688701": "輸入有效的金額", + "476023405": "沒收到郵件?", + "488150742": "重新傳送郵件", "498500965": "賣者的昵稱", "501523417": "無訂單.", "517202770": "設定固定匯率", @@ -48,6 +50,7 @@ "612069973": "是否推薦此買家?", "628581263": "{{local_currency}} 市場匯率已更改。", "649549724": "我還未收到任何款項。", + "661808069": "{{remaining_time}} 後重傳電子郵件", "662578726": "可用", "671582270": "最大允許金額為 {{value}}", "683273691": "費率 (1 {{ account_currency }})", @@ -61,7 +64,6 @@ "842911528": "別再顯示此消息。", "873437248": "說明(可選)", "876086855": "完成財務評估表", - "881141084": "如您取消此訂單,{{block_duration}} 小時内您將被禁使用 Deriv P2P 。", "881351325": "是否推薦此賣家?", "887667868": "訂單", "949859957": "提交", @@ -77,6 +79,7 @@ "1057127276": "{{- avg_release_time_in_minutes}} 分鐘", "1065551550": "設定浮動匯率", "1080990424": "確認", + "1089110190": "您不小心給了另一個電子郵件地址(通常非您本意,而是屬於工作或個人性質的)。", "1091533736": "不要用現金轉帳,因有資金風險。請改用銀行轉帳或電子錢包。", "1103731601": "您的廣告已暫停", "1106073960": "您已建立廣告", @@ -108,14 +111,17 @@ "1370999551": "浮動匯率", "1371193412": "取消", "1381949324": "<0>地址已驗證", + "1398938904": "電子郵件無法傳送到此地址(通常是因為安裝了防火牆或篩選器)。", "1422356389": "{{text}} 沒有結果。", "1430413419": "最大為{{value}}{{currency}}", "1438103743": "{{local_currency}} 已啟用浮動匯率。固定匯率的廣告將被停用。請於 {{end_date}} 之前切換到浮動匯率。", "1448855725": "新增支付方式", + "1452260922": "失敗嘗試次數太多", "1467483693": "過去的訂單", "1474532322": "排序方式", "1480915523": "略過", "1505293001": "交易夥伴", + "1529843851": "驗證連結將於 10 分鐘後過期", "1583335572": "如廣告連續 {{adverts_archive_period}} 天沒接到訂單將被停用。", "1587250288": "廣告 ID {{advert_id}} ", "1607051458": "按暱稱搜尋", @@ -148,6 +154,7 @@ "1928240840": "賣出 {{ currency }}", "1976156928": "您將傳送", "1992961867": "費率 (1 {{currency}})", + "1994023526": "您輸入的電子郵件地址拼寫有誤(有時這是難免的)。", "2020104747": "篩選器", "2029375371": "付款說明", "2032274854": "{{recommended_count}} 個交易者推薦", @@ -229,10 +236,16 @@ "-1856204727": "重設", "-1638172550": "要啟用此功能,您必須完成以下操作:", "-559300364": "您的 Deriv P2P 收銀台已鎖定", + "-2124584325": "已驗證您的訂單", + "-878014035": "請確保帳戶中收到 {{amount}} {{currency}},然後點選確認以完成交易。", + "-1968971120": "已經傳送了電子郵件至 {{email_address}}。<0 />請點選郵件中的驗證連結以驗證訂單。", + "-142727028": "郵件在垃圾郵箱裡(有時一些郵件會誤送到那兒)。", + "-329713179": "確定", "-740038242": "匯率是", + "-1728351486": "無效的驗證連結", + "-1088454544": "取得新連結", "-674715853": "廣告超出了每日限額", "-744406": "您的廣告未在<0>買入/賣出清單内,因爲金額已超出了每日限額{{limit}} {{currency}}。\n <1 /><1 />您仍然可在<0>我的廣告看到您的廣告。如要增加每日限額,請透過<2>即時聊天與我們聯繫。", - "-329713179": "確定", "-984140537": "新增", "-1072444041": "更新廣告", "-1406830100": "付款方式", @@ -283,6 +296,7 @@ "-532709160": "您的暱稱", "-2008992756": "要取消此訂單?", "-1666369246": "如您在{{cancellation_period}} 小時内取消訂單{{cancellation_limit}} 次,{{block_duration}} 小時内您將被禁使用 Deriv P2P 。
(剩餘取消次數為{{number_of_cancels_remaining}} 次。)", + "-1618084450": "如您取消此訂單,{{block_duration}} 小時内您將被禁使用 Deriv P2P 。", "-2026176944": "如您已付款,請別取消。", "-1989544601": "取消訂單", "-492996224": "不要取消", diff --git a/packages/translations/crowdin/messages.json b/packages/translations/crowdin/messages.json index 5635b451f0d8..061a5445a6cc 100644 --- a/packages/translations/crowdin/messages.json +++ b/packages/translations/crowdin/messages.json @@ -1 +1 @@ -{"0":"","1014140":"You may also call <0>+447723580049 to place your complaint.","3215342":"Last 30 days","7100308":"Hour must be between 0 and 23.","11539750":"set {{ variable }} to Relative Strength Index Array {{ dummy }}","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","27582767":"{{amount}} {{currency}}","27830635":"Deriv (V) Ltd","28581045":"Add a real MT5 account","30801950":"Your account will be opened with {{legal_entity_name}}, regulated by the Malta Gaming Authority, and will be subject to the laws of Malta.","33433576":"Please use an e-wallet to withdraw your funds.","35089987":"Upload the front and back of your driving licence.","39720204":"AUD Index","41737927":"Thank you","44877997":"Residence permit","45453595":"Binary Coin","45941470":"Where would you like to start?","46523711":"Your proof of identity is verified","49963458":"Choose an option","50200731":"FX majors (standard/micro lots), FX minors, basket indices, commodities, and cryptocurrencies","54185751":"Less than $100,000","55340304":"Keep your current contract?","55916349":"All","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","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","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","76916358":"You have reached the withdrawal limit.<0/>Please upload your proof of identity and address to lift the limit to continue your withdrawal.","81450871":"We couldn’t find that page","82839270":"Upload the page of your passport that contains your photo.","83202647":"Collapse Block","85343079":"Financial assessment","85389154":"Steps required to continue verification on your mobile","89062902":"Trade on MT5","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.","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","107206831":"We’ll review your document and notify you of its status within 1-3 days.","108916570":"Duration: {{duration}} days","109073671":"Please use an e-wallet that you have used for deposits previously. Ensure the e-wallet supports withdrawal. See the list of e-wallets that support withdrawals <0>here.","111215238":"Move away from direct light","111718006":"End date","111931529":"Max. total stake over 7 days","113378532":"ETH/USD","113884303":"German Index","113933902":"Download the Deriv X app","115032488":"Buy price and P/L","116005488":"Indicators","117318539":"Password should have lower and uppercase English letters with numbers.","119261701":"Prediction:","119446122":"Contract type is not selected","120340777":"Complete your personal details","123454801":"{{withdraw_amount}} {{currency_symbol}}","124723298":"Upload a proof of address to verify your address","125443840":"6. Restart last trade on error","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.","130567238":"THEN","132689841":"Trade on web terminal","133523018":"Please go to the Deposit page to get an address.","133536621":"and","138055021":"Synthetic indices","139454343":"Confirm my limits","141626595":"Make sure your device has a working camera","142050447":"set {{ variable }} to create text with","142390699":"Connected to your mobile","143970826":"Payment problems?","145146541":"Our accounts and services are unavailable for the Jersey postal code","145736466":"Take a selfie","150486954":"Token name","151344063":"The exit spot is the market price when the contract is closed.","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 }}","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","162727973":"Please enter a valid payment agent ID.","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?","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.","176319758":"Max. total stake over 30 days","176654019":"$100,000 - $250,000","178413314":"First name should be between 2 and 50 characters.","179083332":"Date","181881956":"Contract Type: {{ contract_type }}","182628338":"Proof of identity and address verified","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","191372501":"Accumulation of Income/Savings","192436105":"No need for symbols, digits, or uppercase letters","192573933":"Verification complete","195972178":"Get character","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","203271702":"Try again","204797764":"Transfer to client","204863103":"Exit time","206010672":"Delete {{ delete_count }} Blocks","207824122":"Please withdraw your funds from the following Deriv account(s):","210385770":"If you have an active account, please log in to continue. Otherwise, please sign up.","211224838":"Investment","211461880":"Common names and surnames are easy to guess","211847965":"Your <0>personal details are incomplete. Please go to your account settings and complete your personal details to enable withdrawals.","216650710":"You are using a demo account","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","222468543":"The amount that you may add to your stake if you’re losing a trade.","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.","228079844":"Click here to upload","228521812":"Tests whether a string of text is empty. Returns a boolean value (true or false).","229355215":"Trade on {{platform_name_dbot}}","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. ","236642001":"Journal","240247367":"Profit table","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 }}","247418415":"Gaming trading can become a real addiction, as can any other activity pushed to its limits. To avoid the danger of such an addiction, we provide a reality-check that gives you a summary of your trades and accounts on a regular basis.","248565468":"Check your {{ identifier_title }} account email and click the link in the email to proceed.","248909149":"Send a secure link to your phone","249908265":"Are you a citizen of {{- residence}}?","251134918":"Account Information","251445658":"Dark theme","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:","258310842":"Workspace","258448370":"MT5","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.","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.","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.","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.","272042258":"When you set your limits, they will be aggregated across all your account types in {{platform_name_trader}}, {{platform_name_dbot}}, {{platform_name_smarttrader}} and {{platform_name_bbot}} on Deriv. For example, the losses made on all four platforms will add up and be counted towards the loss limit you set.","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","277469417":"Exclude time cannot be for more than five years.","278684544":"get sub-list from # from end","282319001":"Check your image","282564053":"Next, we'll need your proof of address.","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","287934290":"Are you sure you want to cancel this transaction?","289898640":"TERMS OF USE","292491635":"If you select “Stop loss” and specify an amount to limit your loss, your position will be closed automatically when your loss is more than or equals to this amount. Your loss may be more than the amount you entered depending on the market price at closing.","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","294305803":"Manage account settings","294335229":"Sell at market price","300762428":"Swiss Index","303959005":"Sell Price:","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.","310234308":"Close all your positions.","312142140":"Save new limits?","312300092":"Trims the spaces within a given string or text.","313298169":"Our cashier is temporarily down due to system maintenance. You can access the Cashier in a few minutes when the maintenance is complete.","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.","314357202":"Click the <0>Change password button to change your {{platform_name_dxtrade}} password.","315306603":"You have an account that do not have currency assigned. Please choose a currency to trade with this account.","316694303":"Is candle black?","317601768":"Themes","318865860":"close","318984807":"This block repeats the instructions contained within for a specific number of times.","323179846":"The time interval for each candle can be set from one minute to one day.","323209316":"Select a Deriv Bot Strategy","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","329404045":"<0>Switch to your real account<1> to create a {{platform}} {{account_title}} account.","333456603":"Withdrawal limits","334942497":"Buy time","335040248":"About us","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","346994074":"Selecting this will onboard you through Deriv (SVG) LLC (company no. 273 LLC 2020)","347029309":"Forex: standard/micro","347039138":"Iterate (2)","348951052":"Your cashier is currently locked","349047911":"Over","351744408":"Tests if a given text string is empty","353731490":"Job done","354945172":"Submit document","357477280":"No face found","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","362772494":"This should not exceed {{max}} characters.","363576009":"- High price: the highest price","363738790":"Browser","363990763":"Sell price:","368160866":"in list","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","372885537":"Trade CFDs on forex, stocks & stock indices, commodities, basket indices, and crypto.","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}}\"","375431605":"Demo Synthetic SVG","375714803":"Deal Cancellation Error","379523479":"To avoid loss of funds, do not share tokens with the Admin scope with unauthorised parties.","379730150":"US Tech Index","380606668":"tick","380694312":"Maximum consecutive trades","382781785":"Your contract is closed automatically when your profit is more than or equals to this amount.","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.","386278304":"Install the {{platform_name_trader}} web app","386502387":"Bot is not running","389923099":"Zoom in","390647540":"Real account","390890891":"Last quarter","391915203":"Hedging","392582370":"Fall Equals","396418990":"Offline","396961806":"We do not support Polygon (Matic), to deposit please use only Ethereum ({{token}}).","398816980":"Launch {{platform_name_trader}} in seconds the next time you want to trade.","399387585":"Please check your email for details. If you have any questions, please go to our <0>Help Centre.","401339495":"Verify address","402343402":"Due to an issue on our server, some of your {{platform}} accounts are unavailable at the moment. Please bear with us and thank you for your patience.","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.","420072489":"CFD trading frequency","422055502":"From","426031496":"Stop","427134581":"Try using another file type.","427617266":"Bitcoin","428709688":"Your preferred time interval between each report:","430975601":"Town/City is not in a proper format.","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.","437138731":"Create a new {{platform}} password","437453244":"Choose your preferred cryptocurrency","437485293":"File type not supported","437904704":"Maximum open positions","438067535":"Over $500,000","442520703":"$250,001 - $500,000","443559872":"Financial SVG","444484637":"Logic negation","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.","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).","453409608":"Your profit is the percentage change in market price times your stake and the multiplier of your choice.","454593402":"2. Please upload one of the following:","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.","459817765":"Pending","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","466369320":"Your gross profit is the percentage change in market price times your stake and the multiplier chosen here.","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\".","479420576":"Tertiary","481276888":"Goes Outside","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","491603904":"Unsupported browser","492198410":"Make sure everything is clear","496680295":"Choose country","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","502041595":"This block gives you a specific candle from within the selected time interval.","503137339":"Payout limit","505793554":"last letter","508390614":"Demo Financial STP","510815408":"Letters, numbers, spaces, hyphens only","514031715":"list {{ input_list }} is empty","514776243":"Your {{account_type}} password has been changed.","514948272":"Copy link","518955798":"7. Run Once at Start","520136698":"Boom 500 Index","521872670":"item","522283618":"Digital options trading experience","522703281":"divisible by","523123321":"- 10 to the power of a given number","527329988":"This is a top-100 common password","529056539":"Options","529597350":"If you had any open positions, we have closed them and refunded you.","530953413":"Authorised applications","531114081":"3. Contract Type","531675669":"Euro","535041346":"Max. total stake per day","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","543915570":"Forex, stocks, stock indices, cryptocurrencies, synthetic indices","545476424":"Total withdrawals","546534357":"If you select “Deal cancellation”, you’ll be able to cancel your trade within a chosen time frame should the market move against your favour. We’ll charge a small fee for this, but we’ll return your stake amount without profit or loss. If the stop-out amount is reached before the deal cancellation expires, your position will be cancelled automatically and we’ll return your stake amount without profit or loss. While “Deal cancellation” is active:","549479175":"Deriv Multipliers","551414637":"Click the <0>Change password button to change your DMT5 password.","551569133":"Learn more about trading limits","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.","556095366":"We'll process your details within a few minutes and notify its status via email.","556264438":"Time interval","559224320":"Our classic “drag-and-drop” tool for creating trading bots, featuring pop-up trading charts, for advanced users.","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","573173477":"Is candle {{ input_candle }} black?","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","589609985":"Linked with {{identifier_title}}","593459109":"Try a different currency","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","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","611786123":"FX-majors (standard/micro lots), FX-minors, Commodities, Cryptocurrencies, Stocks, and Stock Indices","613877038":"Chart","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.","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}}?","623192233":"Please complete the <0>Appropriateness Test to access your cashier.","623542160":"Exponential Moving Average Array (EMAA)","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.","629145209":"In case if the \"AND\" operation is selected, the block returns \"True\" only if both given values are \"True\"","632398049":"This block assigns a null value to an item or statement.","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.","636219628":"<0>c.If no settlement opportunity can be found, the complaint will proceed to the determination phase to be handled by the DRC.","639382772":"Please upload supported file type.","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.","642546661":"Upload back of license from your computer","643014039":"The trade length of your purchased contract.","644150241":"The number of contracts you have won since you last cleared your stats.","645016681":"Trading frequency in other financial instruments","645902266":"EUR/NZD","647192851":"Contract will be sold at the prevailing market price when the request is received by our servers. This price may differ from the indicated price.","647745382":"Input List {{ input_list }}","649317411":"On the basis of the information provided in relation to your knowledge and experience, we consider that the investments available via this website are not appropriate for you.<0/><1/>","649923867":"Adds a sign to a number to create a barrier offset. (deprecated)","651284052":"Low Tick","651684094":"Notify","652041791":"To create a Deriv X real account, create a Deriv real account first.","652298946":"Date of birth","654264404":"Up to 1:30","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.","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.","657444253":"Sorry, account opening is unavailable in your region.","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","662609119":"Download the MT5 app","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\".","672008428":"ZEC/USD","673915530":"Jurisdiction and choice of law","676159329":"Could not switch to default account.","677918431":"Market: {{ input_market }} > {{ input_submarket }} > {{ input_symbol }}","678517581":"Units","680334348":"This block was required to correctly convert your old strategy.","681926004":"Example of a blurry document","682056402":"Standard Deviation Down Multiplier {{ input_number }}","684282133":"Trading instruments","685391401":"If you're having trouble signing in, let us know via <0>chat","687212287":"Amount is a required field.","689137215":"Purchase price","691956534":"<0>You have added a {{currency}} account.<0> Make a deposit now to start trading.","693396140":"Deal cancellation (expired)","696870196":"- Open time: the opening time stamp","697630556":"This market is presently closed.","698748892":"Let’s try that again","699159918":"1. Filing complaints","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","705299518":"Next, upload the page of your passport that contains your photo.","706727320":"Binary options trading frequency","706755289":"This block performs trigonometric functions.","708055868":"Driving licence number","710123510":"repeat {{ while_or_until }} {{ boolean }}","711029377":"Please confirm the transaction details in order to complete the withdrawal:","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","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.","728042840":"To continue trading with us, please confirm where you live.","728824018":"Spanish Index","730473724":"This block performs the \"AND\" or the \"OR\" logic operation with the given values.","731382582":"BNB/USD","734390964":"Insufficient balance","734881840":"false","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","751692023":"We <0>do not guarantee a refund if you make a wrong transfer.","752024971":"Reached maximum number of digits","752633544":"You will need to submit proof of identity and address once you reach certain thresholds","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","755867072":"{{platform_name_mt5}} is not available in {{country}}","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.","762185380":"<0>Multiply returns by <0>risking only what you put in.","762871622":"{{remaining_time}}s","763019867":"Your Gaming account is scheduled to be closed","764366329":"Trading limits","764540515":"Stopping the bot is risky","766317539":"Language","770171141":"Go to {{hostname}}","772632060":"Do not send any other currency to the following address. Otherwise, you'll lose funds.","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)","776085955":"Strategies","781924436":"Call Spread/Put Spread","783974693":"Avoid recent years","784311461":"Exponential Moving Average (EMA)","784583814":"Linked to your computer","785969488":"Jump 75 Index","787116142":"The multiplier amount used to increase your stake if you’re losing a trade. Value must be higher than 2.","787727156":"Barrier","788005234":"NA","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","802436811":"View transaction details","802438383":"New proof of address is needed","802556390":"seconds","802989607":"Drag your XML file here","803500173":"Initial stake","807499069":"Financial commission complaints procedure","808323704":"You can also use \"Compare\" and \"Logic operation\" blocks to make test variables.","811876954":"You may transfer between your Deriv fiat, cryptocurrency, {{platform_name_mt5}}, and {{platform_name_dxtrade}} accounts.","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","823186089":"A block that can contain text.","824797920":"Is list empty?","826511719":"USD/SEK","827688195":"Disable Block","828219890":"then","828602451":"Returns the list of tick values in string format","830164967":"Last name","830993327":"No current transactions available","832217983":"40 transactions or more in the past 12 months","832398317":"Sell Error","832588873":"Order execution","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).","835058671":"Total buy price","835350845":"Add another word or two. Uncommon words are better.","837066896":"Your document is being reviewed, please check back in 1-3 days.","839618971":"ADDRESS","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.","845213721":"Logout","845304111":"Slow EMA Period {{ input_number }}","847888634":"Please withdraw all your funds.","849805216":"Choose an agent","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.","852583045":"Tick List String","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","860319618":"Tourism","862283602":"Phone number*","863328851":"Proof of identity","864610268":"First, enter your {{label}} and the expiry date.","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","869611522":"We’ll charge a 2% transfer fee or {{minimum_fee}} {{currency}}, whichever is higher, for transfers between your Deriv cryptocurrency and DMT5 accounts.","869823595":"Function","872549975":"You have {{number}} transfers remaining for today.","872661442":"Are you sure you want to update email <0>{{prev_email}} to <1>{{changed_email}}?","872817404":"Entry Spot Time","872957901":"Dark (Coming soon to DBot)","873166343":"1. 'Log' displays a regular message.","874461655":"Scan the QR code with your phone","874484887":"Take profit must be a positive number.","875532284":"Restart process on a different device","876086855":"Complete the financial assessment form","876292912":"Exit","879014472":"Reached maximum number of decimals","888274063":"Town/City","890299833":"Go to Reports","891097078":"USD Index","891337947":"Select country","892341141":"Your trading statistics since: {{date_time}}","893117915":"Variable","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.","898457777":"You have added a Deriv Financial account.","902045490":"3 minutes","903429103":"In candles list read {{ candle_property }} # from end {{ input_number }}","904696726":"API token","905134118":"Payout:","905227556":"Strong passwords contain at least 8 characters, combine uppercase and lowercase letters and numbers.","905564365":"MT5 CFDs","910888293":"Too many attempts","915735109":"Back to {{platform_name}}","918447723":"Real","920125517":"Add demo account","926813068":"Fixed/Variable","929608744":"You are unable to make withdrawals","930346117":"Capitalization doesn't help very much","930546422":"Touch","933126306":"Enter some text here","933193610":"Only letters, periods, hyphens, apostrophes, and spaces, please.","934835052":"Potential profit","934932936":"PERSONAL","936766426":"You are limited to one fiat account. You won’t be able to change your account currency if you have already made your first deposit.","937237342":"Strategy name cannot be empty","937682366":"Upload both of these documents to prove your identity.","937831119":"Last name*","937992258":"Table","938988777":"High barrier","940950724":"This trade type is currently not supported on {{website_name}}. Please go to <0>Binary.com for details.","943535887":"Please close your positions in the following Deriv MT5 account(s):","944499219":"Max. open positions","945532698":"Contract sold","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.","946944859":"Hit the button below and we'll send you an email with a link. Click that link to verify your withdrawal request.","947046137":"Your withdrawal will be processed within 24 hours","947363256":"Create list","947549448":"Total assets in your Deriv, {{platform_name_mt5}} and {{platform_name_dxtrade}} real accounts.","947758334":"City is required","947914894":"Top up  <0>","948156236":"Create {{type}} password","948545552":"150+","949859957":"Submit","952655566":"Payment agent","952927527":"Regulated by the Malta Financial Services Authority (MFSA) (licence no. IS/70156)","955352264":"Trade on {{platform_name_dxtrade}}","956448295":"Cut-off image detected","957182756":"Trigonometric functions","958430760":"In/Out","959031082":"set {{ variable }} to MACD Array {{ dropdown }} {{ dummy }}","960201789":"3. Sell conditions","961692401":"Bot","964780376":"We couldn’t verify your personal details with our records, to enable deposit, withdrawals and trading, you need to upload proof of your identity.","966457287":"set {{ variable }} to Exponential Moving Average {{ dummy }}","968576099":"Up/Down","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","981138557":"Redirect","981965437":"Scan the QR code below with your 2FA app. We recommend <0>Authy or <1>Google Authenticator.","982402892":"First line of address","982829181":"Barriers","987900242":"Total assets in your Deriv, {{platform_name_mt5}} and {{platform_name_dxtrade}} demo accounts.","988361781":"You have no trading activity yet.","988934465":"When prompted, you must enable camera access to continue","992294492":"Your postal code is invalid","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 }}","999008199":"text","1001160515":"Sell","1003876411":"Should start with letter or number and may contain a hyphen, period and slash.","1004127734":"Send email","1006458411":"Errors","1006664890":"Silent","1008240921":"Choose a payment agent and contact them for instructions.","1009032439":"All time","1010198306":"This block creates a list with strings and numbers.","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","1022934784":"1 minute","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}}.","1027098103":"Leverage gives you the ability to trade a larger position using your existing capital. Leverage varies across different symbols.","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.","1030021206":"change {{ variable }} by {{ number }}","1031602624":"We've sent a secure link to %{number}","1031731167":"Pound Sterling","1032173180":"Deriv","1032907147":"AUD/NZD","1035506236":"Choose a new password","1036353276":"Please create another Deriv or {{platform_name_mt5}} account.","1036867749":"The desired duration, stake, prediction, and/or barrier(s) for the contract is defined here.","1038575777":"Change password","1039755542":"Use a few words, avoid common phrases","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","1044230481":"This is an Ethereum ({{token}}) only address, please do not use {{prohibited_token}}.","1044540155":"100+","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","1048947317":"Sorry, this app is unavailable in {{clients_country}}.","1049384824":"Rise","1050844889":"Reports","1052137359":"Family name*","1052779010":"You are on your demo account","1053153674":"Jump 50 Index","1053159279":"Level of education","1055313820":"No document detected","1056381071":"Return to trade","1056821534":"Are you sure?","1057216772":"text {{ input_text }} is empty","1057749183":"Two-factor authentication (2FA)","1057765448":"Stop out level","1057904606":"The concept of the D’Alembert Strategy is said to be similar to the Martingale Strategy where you will increase your contract size after a loss. With the D’Alembert Strategy, you will also decrease your contract size after a successful trade.","1061308507":"Purchase {{ contract_type }}","1062536855":"Equals","1065498209":"Iterate (1)","1069347258":"The verification link you used is invalid or expired. Please request for a new one.","1069576070":"Purchase lock","1070624871":"Check proof of address document verification status","1076006913":"Profit/loss on the last {{item_count}} contracts","1077515534":"Date to","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","1088138125":"Tick {{current_tick}} - ","1096175323":"You’ll need a Deriv account","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.","1100870148":"To learn more about account limits and how they apply, please go to the <0>Help Centre.","1101560682":"stack","1101712085":"Buy Price","1102420931":"Next, upload the front and back of your driving licence.","1102995654":"Calculates Exponential Moving Average (EMA) list from a list of values with a period","1103309514":"Target","1103452171":"Cookies help us to give you a better experience and personalised content on our site.","1104912023":"Pending verification","1107474660":"Submit proof of address","1107555942":"To","1109217274":"Success!","1110102997":"Statement","1112582372":"Interval duration","1113119682":"This block gives you the selected candle value from a list of candles.","1113292761":"Less than 8MB","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","1125090693":"Must be a number","1126934455":"Length of token name must be between 2 and 32 characters.","1127149819":"Make sure§","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.","1129296176":"IMPORTANT NOTICE TO RECEIVE YOUR FUNDS","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","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.","1147625645":"Please proceed to withdraw all your funds from your account before <0>30 November 2021.","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).","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","1163836811":"Real Estate","1164773983":"Take profit and/or stop loss are not available while deal cancellation is active.","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}}","1174542625":"- Find the chat ID property in the response, and copy the value of the id property","1174748431":"Payment channel","1175183064":"Vanuatu","1176926166":"Experience with trading other financial instruments","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.","1180619731":"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, and up to {{ allowed_dxtrade }} transfers between your Deriv and {{platform_name_dxtrade}} accounts.","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с.","1188980408":"5 minutes","1189368976":"Please complete your personal details before you verify your identity.","1189886490":"Please create another Deriv, {{platform_name_mt5}}, or {{platform_name_dxtrade}} account.","1191429031":"Please click on the link in the email to change your <0>{{platform_name_dxtrade}} password.","1191644656":"Predict the market direction and select either “Up” or “Down” to open a position. We will charge a commission when you open a position.","1191778951":"Check your proof of identity and address","1192708099":"Duration unit","1195393249":"Notify {{ notification_type }} with sound: {{ notification_sound }} {{ input_message }}","1196006480":"Profit threshold","1197326289":"You are no longer able to trade digital options on any of our platforms. Also, you can’t make deposits into your Options account.","1198368641":"Relative Strength Index (RSI)","1199281499":"Last Digits List","1201533528":"Contracts won","1201773643":"numeric","1203297580":"This block sends a message to a Telegram channel.","1204223111":"In this example, the open prices from a list of candles are assigned to a variable called \"candle_list\".","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","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","1225150022":"Number of assets","1227074958":"random fraction","1227240509":"Trim spaces","1228208126":"Please Verify your address","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","1234292259":"Source of wealth","1235426525":"50%","1237330017":"Pensioner","1238311538":"Admin","1239940690":"Restarts the bot when an error is encountered.","1240027773":"Please Log in","1241238585":"You may transfer between your Deriv fiat, cryptocurrency, and {{platform_name_mt5}} accounts.","1243064300":"Local","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.","1250495155":"Token copied!","1254565203":"set {{ variable }} to create list with","1255909792":"last","1255963623":"To date/time {{ input_timestamp }} {{ dummy }}","1258097139":"What could we do to improve?","1258198117":"positive","1259598687":"GBP/JPY","1260259925":"Phone is not in a proper format.","1263387702":"All {{count}} account types use market execution. This means you agree with the broker's price in advance and will place orders at the broker's price.","1264096613":"Search for a given string","1265704976":"","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","1274819385":"3. Complaints and Disputes","1275474387":"Quick","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","1289646209":"Margin call","1290525720":"Example: ","1291887623":"Digital options trading frequency","1292891860":"Notify Telegram","1293660048":"Max. total loss per day","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","1301668579":"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 DMT5 Financial.","1302691457":"Occupation","1303016265":"Yes","1303530014":"We’re processing your withdrawal.","1304083330":"copy","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","1311799109":"We do not support Binance Smart Chain tokens to deposit, please use only Ethereum ({{token}}).","1313167179":"Please log in","1313302450":"The bot will stop trading if your total loss exceeds this amount.","1314671947":"DMT5 Accounts","1316216284":"You can use this password for all your {{platform}} accounts.","1319217849":"Check your mobile","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","1324110809":"Address information","1324922837":"2. The new variable will appear as a block under Set variable.","1327181172":"Financial Vanuatu","1327494533":"{{sell_value}} (Sell)","1329136554":"Jump 200 Index","1329325646":"The content of this block is called on every tick","1331199417":"Please enter the correct format. ","1331367811":"Client account number","1332168410":"Learn more","1332168769":"Disconnect","1333576137":"Please update your {{details}} to continue.","1333839457":"Submit identity card (front)","1334326985":"It may take a few minutes to arrive","1335967988":"Notice","1337846406":"This block gives you the selected candle value from a list of candles within the selected time interval.","1337864666":"Photo of your document","1338496204":"Ref. ID","1341840346":"View in Journal","1346204508":"Take profit","1346339408":"Managers","1347071802":"{{minutePast}}m ago","1348009461":"Please close your positions in the following Deriv X account(s):","1349289354":"Great, that's everything we need","1349295677":"in text {{ input_text }} get substring from {{ position1 }} {{ index1 }} to {{ position2 }} {{ index2 }}","1351152200":"Welcome to Deriv MT5 (DMT5) dashboard","1351906264":"This feature is not available for payment agents.","1353197182":"Please select","1355250245":"{{ calculation }} of list {{ input_list }}","1356574493":"Returns a specific portion of a given string of text.","1356607862":"Deriv password","1357129681":"{{num_day}} days {{num_hour}} hours {{num_minute}} minutes","1357213116":"Identity card","1358543466":"Not available","1359424217":"You have sold this contract at <0 />","1360929368":"Add a Deriv account","1362578283":"High","1363060668":"Your trading statistics since:","1363675688":"Duration is a required field.","1364958515":"Stocks","1366244749":"Limits","1367023655":"To ensure your loss does not exceed your stake, your contract will be closed automatically when your loss equals to <0/>.","1367488817":"4. Restart trading conditions","1367990698":"Volatility 10 Index","1369709538":"Our terms of use","1371193412":"Cancel","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).","1374627690":"Max. account balance","1376329801":"Last 60 days","1378419333":"Ether","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:","1392966771":"Mrs","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","1397046738":"View in statement","1397628594":"Insufficient funds","1399620764":"We're legally obliged to ask for your financial information.","1400341216":"We’ll review your documents and notify you of its status within 1 to 3 days.","1400637999":"(All fields are required)","1400732866":"View from camera","1400962248":"High-Close","1402208292":"Change text case","1403376207":"Update my details","1405584799":"with interval: {{ candle_interval_type }}","1408844944":"Click the plus icon to extend the functionality of this block.","1409444561":"Meanwhile, do you want to explore other accounts?","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","1415006332":"get sub-list from first","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","1417914636":"Login ID","1418115525":"This block repeats instructions as long as a given condition is true.","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","1424741507":"See more","1424779296":"If you've recently used bots but don't see them in this list, it may be because you:","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.","1434382099":"Displays a dialog window with a message","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.","1435380105":"Minimum deposit","1437396005":"Add comment","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","1445592224":"You accidentally gave us another email address (Usually a work or a personal one instead of the one you meant).","1449462402":"In review","1452260922":"Too many failed attempts","1452941569":"This block delays execution for a given number of seconds. You can place any blocks within this block. The execution of other blocks in your strategy will be paused until the instructions in this block are carried out.","1453317405":"This block gives you the balance of your account either as a number or a string of text.","1453362009":"Deriv Accounts","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.","1457603571":"No notifications","1461323093":"Display messages in the developer’s console.","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}}.","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","1467661678":"Cryptocurrency trading","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","1468937050":"Trade on {{platform_name_trader}}","1469150826":"Take Profit","1469764234":"Cashier Error","1469814942":"- Division","1470319695":"Returns either True or False","1471070549":"Can contract be sold?","1471741480":"Severe error","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","1481977420":"Please help us verify your withdrawal request.","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","1490583127":"DBot isn't quite ready for real 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","1496810530":"GBP/AUD","1499074768":"Add a real Deriv Multipliers account","1499080621":"Tried to perform an invalid operation.","1502039206":"Over {{barrier}}","1502325741":"Your password cannot be the same as your email address.","1503618738":"- Deal reference ID: the reference ID of the contract","1505898522":"Download stack","1508172198":"Synthetic BVI","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.","1516537408":"You can no longer trade on Deriv or deposit funds into your account.","1516559721":"Please select one file only","1516676261":"Deposit","1517503814":"Drop file or click here to upload","1519336051":"Try a different phone number","1520332426":"Net annual income","1524636363":"Authentication failed","1527251898":"Unsuccessful","1527906715":"This block adds the given number to the selected variable.","1529440614":"Use the <0>Deriv password to log in to {{brand_website_name}}, {{platform_name_go}}, {{platform_name_trader}}, {{platform_name_smarttrader}}, and {{platform_name_dbot}}.","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","1534569275":"As part of the changes in our markets, we will be closing our UK clients’ accounts.","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.","1539108340":"EUR Index","1540585098":"Decline","1541969455":"Both","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.","1548765374":"Verification of document number failed","1549098835":"Total withdrawn","1551172020":"AUD Basket","1552918367":"Send only {{currency}} ({{currency_symbol}}) to this address.","1557682012":"Account Settings","1558972889":"set {{ variable }} to Simple Moving Average {{ dummy }}","1560302445":"Copied","1562374116":"Students","1564392937":"When you set your limits or self-exclusion, they will be aggregated across all your account types in {{platform_name_trader}} and {{platform_name_dbot}}. For example, the losses made on both platforms will add up and be counted towards the loss limit you set.","1566037033":"Bought: {{longcode}} (ID: {{transaction_id}})","1567076540":"Only use an address for which you have proof of residence - ","1567586204":"Self-exclusion","1569624004":"Dismiss alert","1570484627":"Ticks list","1572504270":"Rounding operation","1572982976":"Server","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","1579484521":"Trading hub","1580498808":"Multiple faces found","1584109614":"Ticks String List","1584578483":"50+ assets: forex, stocks, stock indices, synthetics indices, and cryptocurrencies.","1584936297":"XML file contains unsupported elements. Please check or modify file.","1587046102":"Documents from that country are not currently supported — try another document type","1589640950":"Resale of this contract is not offered.","1589702653":"Proof of address","1594147169":"Please come back in","1594322503":"Sell is available","1596378630":"You have added a real Gaming account.<0/>Make a deposit now to start trading.","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","1602894348":"Create a password","1604171868":"Please withdraw all your funds as soon as possible.","1604916224":"Absolute","1605292429":"Max. total loss","1612105450":"Get substring","1613633732":"Interval should be between 10-60 minutes","1615897837":"Signal EMA Period {{ input_number }}","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","1623706874":"Use this block when you want to use multipliers as your trade type.","1630372516":"Try our Fiat onramp","1630417358":"Please go to your account settings and complete your personal details to enable withdrawals.","1631281562":"GBP Basket","1634594289":"Select language","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.","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.","1644908559":"Digit code is required.","1647186767":"The bot encountered an error while running.","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!","1653159197":"Payment agent withdrawal","1653180917":"We cannot verify you without using your camera","1654365787":"Unknown","1654496508":"Our system will finish any DBot trades that are running, and DBot will not place any new trades.","1654721858":"Upload anyway","1655627840":"UPPER CASE","1656155124":"Resend in <0 /> seconds","1658954996":"Plant and Machine Operators and Assemblers","1659074761":"Reset Put","1664508280":"Add your DMT5 {{account_type}} account under Deriv (BVI) Ltd, regulated by the British Virgin Islands Financial Services Commission (License no. SIBA/{{line_break}}L/18/1114).","1665272539":"Remember: You cannot log in to your account until the selected date.","1665738338":"Balance","1665756261":"Go to live chat","1667395210":"Your proof of identity was submitted successfully","1668138872":"Modify account settings","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.","1677027187":"Forex","1677990284":"My apps","1682409128":"Untitled Strategy","1682636566":"Resend email in","1683963454":"Your contract will be closed automatically at the next available asset price on {{date}} at {{timestamp}}.","1684148009":"Total assets in your Deriv and {{platform_name_mt5}} real accounts.","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.","1689738742":"Gold Index","1691335819":"To continue trading with us, please confirm who you are.","1691765860":"- Negation","1693614409":"Start time","1694331708":"You can switch between CFDs, digital options, and multipliers at any time.","1694517345":"Enter a new email address","1695807119":"Could not load Google Drive blocks","1700233813":"Transfer from {{selected_value}} is not allowed, Please choose another account from dropdown","1708413635":"For your {{currency_name}} ({{currency}}) account","1709859601":"Exit Spot Time","1711013665":"Anticipated account turnover","1711676335":"square root","1711929663":"Your funds have been transferred","1712357617":"Invalid email address.","1715011380":"Jump 25 Index","1715630945":"Returns the total profit in string format","1719248689":"EUR/GBP/USD","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","1722401148":"The amount that you may add to your stake after each successful trade.","1723398114":"A recent utility bill (e.g. electricity, water, gas, phone or internet)","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.","1724696797":"You are limited to one fiat account only.","1726472773":"Function with no return value","1726565314":"Close my account","1727681395":"Total assets in your Deriv and {{platform_name_mt5}} demo accounts.","1728121741":"Transactions.csv","1728183781":"About Tether","1729145421":"Risk warning","1731747596":"The block(s) highlighted in red are missing input values. Please update them and click \"Run bot\".","1732891201":"Sell price","1734185104":"Balance: %1","1734264460":"Disclaimer","1736292549":"Update postal code","1737352280":"Bot.init is not called","1738681493":"Remove your glasses, if necessary","1739384082":"Unemployed","1739668049":"Close your account","1740371444":"Underlying market is not selected","1740843997":"Buy cryptocurrencies in an instant. Enjoy easy, quick, and secure exchanges using your local payment methods.","1742256256":"Please upload one of the following documents:","1743448290":"Payment agents","1743902050":"Complete your financial assessment","1745523557":"- Square root","1746051371":"Download the app","1746273643":"Moving Average Convergence Divergence","1747501260":"Sell conditions","1747523625":"Go back","1747674345":"Please use `.` as a decimal separator for fractional numbers.","1747682136":"Contract was cancelled.","1748754976":"Run","1749675724":"Deriv charges no commission across all account types.","1750065391":"Login time:","1753226544":"remove","1753975551":"Upload passport photo page","1756678453":"break out","1761038852":"Let’s continue with providing proofs of address and identity.","1761762171":"Restart last trade on error (bot ignores the unsuccessful trade): {{ checkbox }}","1762707297":"Phone number","1763123662":"Upload your NIMC slip.","1766993323":"Only letters, numbers, and underscores are allowed.","1767726621":"Choose agent","1768861315":"Minute","1768918213":"Only letters, space, hyphen, period, and apostrophe are allowed.","1769068935":"Choose any of these exchanges to buy cryptocurrencies:","1771037549":"Add a Deriv real account","1771592738":"Conditional block","1772532756":"Create and edit","1777847421":"This is a very common password","1778815073":"{{website_name}} is not affiliated with any Payment Agent. Customers deal with Payment Agents at their sole risk. Customers are advised to check the credentials of Payment Agents, and check the accuracy of any information about Payments Agents (on Deriv or elsewhere) before transferring funds.","1778893716":"Click here","1779519903":"Should be a valid number.","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","1783740125":"Upload your selfie","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.","1788966083":"01-07-1999","1789497185":"Make sure your passport details are clear to read, with no blur or glare","1790770969":"FX-majors (standard/micro lots), FX-minors, Commodities, Cryptocurrencies","1791432284":"Search for country","1791971912":"Recent","1793913365":"To deposit money, please switch to your {{currency_symbol}} account.","1794815502":"Download your transaction history.","1797866111":"Add your DMT5 {{account_type}} account under Deriv (SVG) LLC (company no. 273 LLC 2020).","1801093206":"Get candle list","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","1806355993":"No commission","1806503050":"Please note that some payment methods might not be available in your country.","1808058682":"Blocks are loaded successfully","1808393236":"Login","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","1811972349":"Market","1811973475":"Returns a specific character from a given string","1812582011":"Connecting to server","1813700208":"Boom 300 Index","1813958354":"Remove comment","1815034361":"alphabetic","1815995250":"Buying contract","1816126006":"Trade on Deriv MT5 ({{platform_name_dmt5}}), the all-in-one FX and CFD trading platform.","1817154864":"This block gives you a random number from within a set range.","1820242322":"e.g. United States","1820332333":"Top up","1823177196":"Most popular","1824193700":"This block gives you the last digit of the latest tick value.","1827607208":"File not uploaded.","1830520348":"{{platform_name_dxtrade}} Password","1833481689":"Unlock","1833499833":"Proof of identity documents upload failed","1837762008":"Please submit your proof of identity and proof of address to verify your account in your account settings to access the cashier.","1838639373":"Resources","1840865068":"set {{ variable }} to Simple Moving Average Array {{ dummy }}","1841788070":"Palladium/USD","1841996888":"Daily loss limit","1842266423":"back","1842862156":"Welcome to your Deriv X dashboard","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.","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","1846664364":"{{platform_name_dxtrade}}","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","1851951013":"Please switch to your demo account to run your DBot.","1854480511":"Cashier is locked","1855566768":"List item position","1858251701":"minute","1859308030":"Give feedback","1863053247":"Please upload your identity document.","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.","1869787212":"Even","1869851061":"Passwords","1870933427":"Crypto","1871196637":"True if the result of the last trade matches the selection","1871664426":"Note","1871804604":"Regulated by the British Virgin Islands Financial Services Commission (License no. SIBA/L/18/1114)","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.","1876325183":"Minutes","1877225775":"Your proof of address is verified","1877410120":"What you need to do now","1877832150":"# from end","1879042430":"Appropriateness Test, WARNING:","1879412976":"Profit amount: <0>{{profit}}","1880029566":"Australian Dollar","1880097605":"prompt for {{ string_or_number }} with message {{ input_text }}","1880875522":"Create \"get %1\"","1881018702":"hour","1881587673":"Total stake since you last cleared your stats.","1882825238":"Restart trading conditions","1883531976":"Clerks","1885708031":"#","1887852176":"Site is being updated","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.","1894667135":"Please verify your proof of address","1898670234":"{{formatted_opening_time}} (GMT) on {{opening_day}},<0> {{opening_date}}.","1902547203":"MetaTrader 5 MacOS app","1903437648":"Blurry photo detected","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.","1906639368":"If this is the first time you try to create a password, or you have forgotten your password, please reset it.","1907884620":"Add a real Deriv Gaming account","1908239019":"Make sure all of the document is in the photo","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.","1917523456":"This block sends a message to a Telegram channel. You will need to create your own Telegram bot to use this block.","1917804780":"You will lose access to your Options account when it gets closed, so be sure to withdraw all your funds. (If you have a CFDs account, you can also transfer the funds from your Options account to your CFDs account.)","1918633767":"Second line of address is not in a proper format.","1918796823":"Please enter a stop loss amount.","1919030163":"Tips to take a good selfie","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","1923431535":"“Stop loss” is deactivated and will only be available when “Deal cancellation” expires.","1924365090":"Maybe later","1924765698":"Place of birth*","1925090823":"Sorry, trading is unavailable in {{clients_country}}.","1927244779":"Use only the following special characters: . , ' : ; ( ) @ # / -","1928930389":"GBP/NOK","1929309951":"Employment Status","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.","1934302388":"We couldn’t verify your personal details with our records, to enable deposit, withdrawals and trading, you need to upload proof of your address.","1939902659":"Signal","1940408545":"Delete this token","1941915555":"Try later","1942091675":"Cryptocurrency trading is not available for clients residing in the United Kingdom.","1943440862":"Calculates Bollinger Bands (BB) list from a list with a period","1944204227":"This block returns current account balance.","1947527527":"1. This link was sent by you","1948092185":"GBP/CAD","1949719666":"Here are the possible reasons:","1950413928":"Submit identity documents","1952580688":"Submit passport photo page","1955219734":"Town/City*","1957759876":"Upload identity document","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","1964097111":"USD","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","1971898712":"Add or manage account","1973536221":"You have no open positions yet.","1973564194":"You are limited to one fiat account. You won’t be able to change your account currency if you have already made your first deposit or created a real {{dmt5_label}} or {{platform_name_dxtrade}} account.","1974273865":"This scope will allow third-party apps to view your account activity, settings, limits, balance sheets, trade purchase history, and more.","1978130174":"Jurisdiction for your DMT5 CFDs account","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}}.","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.","1983387308":"Preview","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.","1986498784":"BTC/LTC","1987080350":"Demo","1987447369":"Your cashier is locked","1988153223":"Email address","1988302483":"Take profit:","1988601220":"Duration value","1990735316":"Rise Equals","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.","1998199587":"You can also exclude yourself entirely for a specified duration. If, at any time, you decide to trade again, you must then contact our Customer Support to remove this self-exclusion. There will be a 24-hour-cooling-off period before you can resume trading. ","2001222130":"Check your spam or junk folder. If it's not there, try resending the email.","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","2007092908":"Trade with leverage and low spreads for better returns on successful trades.","2008809853":"Please proceed to withdraw your funds before 30 November 2021.","2009620100":"DBot will not proceed with any new trades. Any ongoing trades will be completed by our system. Any unsaved changes will be lost.<0>Note: Please check your statement to view completed transactions.","2009770416":"Address:","2010759971":"Uploads successful","2010866561":"Returns the total profit/loss","2011609940":"Please input number greater than 0","2011808755":"Purchase Time","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.","2020545256":"Close your account?","2021037737":"Please update your details to continue.","2023659183":"Student","2023762268":"I prefer another trading website.","2024107855":"{{payment_agent}} agent contact details:","2025339348":"Move away from direct light — no glare","2027625329":"Simple Moving Average Array (SMAA)","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}}","2037481040":"Choose a way to fund your account","2037665157":"Expand All Blocks","2037906477":"get sub-list from #","2042050260":"- Purchase price: the purchase price (stake) of the contract","2042778835":"This complaints policy, which may change from time to time, applies to your account registered with {{legal_entity_name}}.","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","2048110615":"Email address*","2048134463":"File size exceeded.","2050080992":"Tron","2050170533":"Tick list","2051558666":"View transaction history","2053617863":"Please proceed to withdraw all your funds from your account.","2054889300":"Create \"%1\"","2055317803":"Copy the link to your mobile browser","2057082550":"Accept our updated <0>terms and conditions","2057419639":"Exit Spot","2058978040":"Your {{platform_name_dxtrade}} password is for logging in to your {{platform_name_dxtrade}} accounts on the web and mobile apps.","2060873863":"Your order {{order_id}} is complete","2062912059":"function {{ function_name }} {{ function_params }}","2063655921":"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.","2063812316":"Text Statement","2063890788":"Cancelled","2065278286":"Spread","2067903936":"Driving licence","2070002739":"Don’t accept","2070752475":"Regulatory Information","2074235904":"Last name is required.","2074497711":"The Telegram notification could not be sent","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}}","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.","2084925123":"Use our fiat onramp services to buy and deposit cryptocurrency into your Deriv account.","2085387371":"Must be numbers, letters, and special characters . , ' -","2085602195":"- Entry value: the value of the first tick of the contract","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","2089299875":"Total assets in your Deriv real accounts.","2089581483":"Expires on","2091671594":"Status","2093167705":"You can only make deposits. Please contact us via live chat for more information.","2093675079":"- Close: the closing price","2096014107":"Apply","2096456845":"Date of birth*","2097170986":"About Tether (Omni)","2097381850":"Calculates Simple Moving Average line from a list with a period","2100713124":"account","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","2104397115":"Please go to your account settings and complete your personal details to enable deposits and withdrawals.","2107381257":"Scheduled cashier system maintenance","2109208876":"Manage {{platform}} Demo {{account_title}} account password","2109312805":"The spread is the difference between the buy price and sell price. A variable spread means that the spread is constantly changing, depending on market conditions. A fixed spread remains constant but is subject to alteration, at the Broker's absolute discretion.","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","2115007481":"Total assets in your Deriv demo accounts.","2115223095":"Loss","2117073379":"Our cryptocurrency cashier is temporarily down due to system maintenance. You can access the Cashier in a few minutes when the maintenance is complete.","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","2118315870":"Where do you live?","2119449126":"Example output of the below example will be:","2120617758":"Set up your trade","2121227568":"NEO/USD","2127564856":"Withdrawals are locked","2131963005":"Please withdraw your funds from the following Deriv MT5 account(s):","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","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","2141873796":"Get more info on <0>CFDs, <1>multipliers, and <2>options.","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","2146892766":"Binary options 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","-1497654315":"Our accounts and services are unavailable for the Jersey postal code.","-755626951":"Complete your address details","-1024240099":"Address","-584911871":"Select wallet currency","-1461267236":"Please choose your currency","-1352330125":"CURRENCY","-1027595143":"Less than $25,000","-40491332":"$25,000 - $50,000","-1139806939":"$50,001 - $100,000","-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","-654781670":"Primary","-1717373258":"Secondary","-996132458":"Construction","-915003867":"Health","-1430012453":"Information & Communications Technology","-987824916":"Science & Engineering","-146630682":"Social & Cultural","-761306973":"Manufacturing","-739367071":"Employed","-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","-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","-2137323480":"Company Ownership","-1590574533":"Divorce Settlement","-1667683002":"Inheritance","-1237843731":"Investment Income","-777506574":"Sale of Property","-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.","-1356204661":"This Tax Identification Number (TIN) is invalid. You may continue with account creation, but to facilitate future payment processes, valid tax information will be required.","-1823540512":"Personal details","-1227878799":"Speculative","-1174064217":"Mr","-855506127":"Ms","-621555159":"Identity information","-204765990":"Terms of use","-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","-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","-189310067":"Account closed","-773766766":"Email and passwords","-1466827732":"Self exclusion","-1498206510":"Account limits","-241588481":"Login history","-966136867":"Connected apps","-213009361":"Two-factor authentication","-1214803297":"Dashboard-only path","-526636259":"Error 404","-1030759620":"Government Officers","-612752984":"These are default limits that we apply to your accounts.","-1598263601":"To learn more about trading limits and how they apply, please go to the <0>Help Centre.","-1411635770":"Learn more about account limits","-1340125291":"Done","-1786659798":"Trading limits - Item","-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.","-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.","-1359847094":"Trading limits - Maximum daily turnover","-1502578110":"Your account is fully authenticated and your withdrawal limits have been lifted.","-854023608":"To increase limit please verify your identity","-1500958859":"Verify","-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.","-190838815":"We need this for verification. If the information you provide is fake or inaccurate, you won’t be able to deposit and withdraw.","-223216785":"Second line of address*","-594456225":"Second line of address","-1315410953":"State/Province","-1940457555":"Postal/ZIP Code*","-1964954030":"Postal/ZIP Code","-1541554430":"Next","-71696502":"Previous","-516397235":"Be careful who you share this token with. Anyone with this token can perform the following actions on your account behalf","-989216986":"Add accounts","-684271315":"OK","-617480265":"Delete token","-316749685":"Are you sure you want to delete this token?","-786372363":"Learn more about API token","-55560916":"To access our mobile apps and other third-party apps, you'll first need to generate an API token.","-198329198":"API Token","-955038366":"Copy this token","-1668692965":"Hide this token","-1661284324":"Show this token","-605778668":"Never","-32386760":"Name","-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.","-1076138910":"Trade","-1666909852":"Payments","-5605257":"This scope will allow third-party apps to withdraw to payment agents and make inter-account transfers for you.","-488597603":"Trading information","-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. ","-1117963487":"Name your token and click on 'Create' to generate your token.","-2005211699":"Create","-2115275974":"CFDs","-988523882":"DMT5","-460645791":"You are limited to one fiat account. You won’t be able to change your account currency if you have already made your first deposit or created a real {{dmt5_label}} account.","-1146960797":"Fiat currencies","-1959484303":"Cryptocurrencies","-561724665":"You are limited to one fiat currency only","-2087317410":"Oops, something went wrong.","-1437206131":"JPEG JPG PNG PDF GIF","-820458471":"1 - 6 months old","-155705811":"A clear colour photo or scanned image","-587941902":"Issued under your name with your current address","-438669274":"JPEG JPG PNG PDF GIF","-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","-601903492":"Forex trading experience","-1012699451":"CFD trading experience","-1437017790":"Financial information","-39038029":"Trading experience","-1044962593":"Upload Document","-164448351":"Show less","-1361653502":"Show more","-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","-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.","-1120954663":"First name*","-1659980292":"First name","-1857534296":"John","-1485480657":"Other details","-1315571766":"Place of birth","-2040322967":"Citizenship","-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","-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.","-1387062433":"Account opening reason","-1451334536":"Continue trading","-1525879032":"Your documents for proof of address is expired. 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.","-231863107":"No","-1176889260":"Please select a document type.","-1515286538":"Please enter your document number. ","-1785463422":"Verify your identity","-78467788":"Please select the document type and enter the ID number.","-1117345066":"Choose the document type","-651192353":"Sample:","-1263033978":"Please ensure all your personal details are the same as in your chosen document. If you wish to update your personal details, go to account settings.","-937707753":"Go Back","-1926456107":"The ID you submitted is expired.","-555047589":"It looks like your identity document has expired. Please try again with a valid document.","-841187054":"Try Again","-2097808873":"We were unable to verify your ID with the details you provided. ","-228284848":"We were unable to verify your ID with the details you provided.","-1443800801":"Your ID number was submitted successfully","-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","-1874113454":"Please check and resubmit or choose a different document type.","-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:","-246893488":"JPEG, JPG, PNG, PDF, or GIF","-1454880310":"Must be valid for at least 6 months","-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","-839094775":"Back","-337979330":"We could not verify your proof of identity","-706528101":"As a precaution, we have disabled trading, deposits and withdrawals for this account. If you have any questions, please go to our Help Center.<0>Help Centre.","-856213726":"You must also submit a proof of address.","-1389323399":"You should enter {{min_number}}-{{max_number}} characters.","-1313806160":"Please request a new password and check your email for the new token.","-329713179":"Ok","-1598167506":"Success","-1077809489":"You have a new {{platform}} password to log in to your {{platform}} accounts on the web and mobile apps.","-2068479232":"{{platform}} password","-1332137219":"Strong passwords contain at least 8 characters that include uppercase and lowercase letters, numbers, and symbols.","-1597186502":"Reset {{platform}} password","-848721396":"These trading limits are optional, and you can strengthen them at any time. If you don’t wish to set a specific limit, leave the field blank. If you live in the United Kingdom, Customer Support can only remove or weaken your trading limits after 24 hours of receiving the request. If you live in the Isle of Man, Customer Support can only remove or weaken your trading limits after your trading limit period has expired.","-469096390":"These trading limits are optional, and you can strengthen them at any time. If you don’t wish to set a specific limit, leave the field blank. Customer Support can only remove or weaken your trading limits after 24 hours of receiving the request.","-42808954":"You can also exclude yourself entirely for a specified duration. This can only be removed once your self-exclusion has expired. If you wish to continue trading once your self-exclusion period expires, you must contact Customer Support by calling <0>+447723580049 to lift this self-exclusion. Requests by chat or email shall not be entertained. There will be a 24-hour cooling-off period before you can resume trading.","-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.","-1702324712":"These limits are optional, and you can adjust them at any time. You decide how much and how long you’d like to trade. If you don’t wish to set a specific limit, leave the field blank.","-1819875658":"You can also exclude yourself entirely for a specified duration. Once the self-exclusion period has ended, you can either extend it further or resume trading immediately. If you wish to reduce or remove the self-exclusion period, contact our <0>Customer Support.","-1031814119":"About trading limits and self-exclusion","-183468698":"Trading limits and self-exclusion","-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","-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.","-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).","-976364600":"Please click on the link in the email to change your DMT5 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.","-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.","-1166068675":"Your account will be opened with {{legal_entity_name}}, regulated by the UK Gaming Commission (UKGC), and will be subject to the laws of the Isle of Man.","-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.","-680528873":"Your account will be opened with {{legal_entity_name}} and will be subject to the laws of Samoa.","-1125193491":"Add account","-2068229627":"I am not a PEP, and I have not been a PEP in the last 12 months.","-428335668":"You will need to set a password to complete the process.","-1850792730":"Unlink from {{identifier_title}}","-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","-2145244263":"This field is required","-70342544":"We’re legally obliged to ask for your financial information.","-1894668798":"Other trading instruments experience","-1026468600":"Other trading instruments frequency","-179005984":"Save","-789291456":"Tax residence*","-1651554702":"Only alphabet is allowed","-1458676679":"You should enter 2-50 characters.","-1166111912":"Use only the following special characters: {{ permitted_characters }}","-884768257":"You should enter 0-35 characters.","-2113555886":"Only letters, numbers, space, and hyphen are allowed.","-874280157":"This Tax Identification Number (TIN) is invalid. You may continue using it, but to facilitate future payment processes, valid tax information will be required.","-1037916704":"Miss","-1113902570":"Details","-634958629":"We use the information you give us only for verification purposes. All information is kept confidential.","-731992635":"Title*","-352888977":"Title","-136976514":"Country of residence*","-945104751":"We’re legally obliged to ask for your tax information.","-1702919018":"Second line of address (optional)","-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","-2121071263":"Check this box to receive updates via email.","-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)","-1923892687":"Please withdraw your funds from the following Deriv X account(s):","-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.","-9323953":"Remaining characters: {{remaining_characters}}","-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","-1219849101":"Please select at least one reason","-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","-536187647":"Confirm revoke access?","-1357606534":"Permission","-570222048":"Revoke access","-506510414":"Date and time","-1708927037":"IP address","-365847515":"Apps you can use with your Deriv login:","-26491905":"You're using your {{identifier_title}} account to log in to your Deriv account. To change your login method into using a username and password, click the <0>Unlink button.","-596920538":"Unlink","-1319725774":"DMT5 Password","-1403020742":"Your DMT5 password is for logging in to your Deriv MT5 accounts on the desktop, web, and mobile apps.","-412891493":"Disable 2FA","-200487676":"Enable","-1840392236":"That's not the right code. Please try again.","-307075478":"6 digit 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.","-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:","-752939584":"How to set up 2FA for your Deriv account","-90649785":"Click here to copy key","-206376148":"Key copied!","-650175948":"A recent bank statement or government-issued letter with your name and address.","-2006895756":"1. Address","-716361389":"An accurate and complete address helps to speed up your verification process.","-890084320":"Save and submit","-902076926":"Before uploading your document, please ensure that your personal details are updated to match your proof of identity. This will help to avoid delays during the verification process.","-1517325716":"Deposit via the following payment methods:","-1547606079":"We accept the following cryptocurrencies:","-42592103":"Deposit cryptocurrencies","-639677539":"Buy cryptocurrencies","-1560098002":"Buy cryptocurrencies via fiat onramp","-541870313":"Deposit via payment agents","-72314872":"Deposit in your local currency via peer-to-peer exchange with fellow traders in your country.","-58126117":"Your simple access to crypto. Fast and secure way to exchange and purchase cryptocurrencies. 24/7 live chat support.","-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.","-2021135479":"This field is required.","-1975494965":"Cashier","-1870909526":"Our server cannot retrieve an address.","-582721696":"The current allowed withdraw amount is {{format_min_withdraw_amount}} to {{format_max_withdraw_amount}} {{currency}}","-1957498244":"more","-197251450":"Don't want to trade in {{currency_code}}? You can open another cryptocurrency account.","-1900848111":"This is your {{currency_code}} account.","-749765720":"Your fiat account currency is set to {{currency_code}}.","-803546115":"Manage your accounts ","-1463156905":"Learn more about payment methods","-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.","-89973258":"Resend email in {{seconds}}s","-1059419768":"Notes","-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.","-993393818":"Binance Smart Chain","-561858764":"Polygon (Matic)","-410890127":"Ethereum (ERC20)","-1059526741":"Ethereum (ETH)","-1615615253":"We do not support Tron, to deposit please use only Ethereum ({{token}}).","-1831000957":"Please select the network from where your deposit will come from.","-314177745":"Unfortunately, we couldn't get the address since our server was down. Please click Refresh to reload the address or try again later.","-1345040662":"Looking for a way to buy cryptocurrency?","-759000391":"We were unable to verify your information automatically. To enable this function, you must complete the following:","-1638172550":"To enable this feature you must complete the following:","-1632668764":"I accept","-666905139":"Deposits are locked","-316545835":"Please ensure <0>all details are <0>correct before making your transfer.","-1309258714":"From account number","-1247676678":"To account number","-816476007":"Account holder name","-1995606668":"Amount","-344403983":"Description","-922432739":"Please enter a valid client login ID.","-1024241603":"Insufficient balance.","-1979554765":"Please enter a valid description.","-1186807402":"Transfer","-1254233806":"You've transferred","-1179992129":"All payment agents","-1137412124":"Can’t find a suitable payment method for your country? Then try a payment agent.","-460879294":"You're not done yet. To receive the transferred funds, you must contact the payment agent for further instruction. A summary of this transaction has been emailed to you for your records.","-596416199":"By name","-1169636644":"By payment agent ID","-118683067":"Withdrawal limits: <0 />-<1 />","-1201279468":"To withdraw your funds, please choose the same payment method you used to make your deposits.","-1787304306":"Deriv P2P","-1321645628":"Your cashier is currently locked. Please contact us via live chat to find out how to unlock it.","-60779216":"Withdrawals are temporarily unavailable due to system maintenance. You can make your withdrawals when the maintenance is complete.","-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. ","-1158467524":"Your account is temporarily disabled. Please contact us via live chat to enable deposits and withdrawals again.","-929148387":"Please set your account currency to enable deposits and withdrawals.","-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.","-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.","-378858101":"Your <0>personal details are incomplete. Please go to your account settings and complete your personal details to enable deposits.","-1037495888":"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 live chat.","-949074612":"Please contact us via live chat.","-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.","-127614820":"Unfortunately, you can only make deposits. Please contact us via 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","-190084602":"Transaction","-811190405":"Time","-1332236294":"Please verify your identity","-1675848843":"Error","-283017497":"Retry","-203002433":"Deposit now","-720315013":"You have no funds in your {{currency}} account","-2052373215":"Please make a deposit to use this feature.","-299033842":"Recent transactions","-348296830":"{{transaction_type}} {{currency}}","-1929538515":"{{amount}} {{currency}} on {{submit_date}}","-1534990259":"Transaction hash:","-1612346919":"View all","-949073402":"I confirm that I have verified the client’s transfer information.","-1752211105":"Transfer now","-1272778997":"We've sent you an email.","-2013448791":"Want to exchange between e-wallet currencies? Try <0>Ewallet.Exchange","-2061807537":"Something’s not right","-1068036170":"We do not charge a transfer fee for transfers in the same currency between your Deriv fiat and {{platform_name_mt5}} 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.","-401630542":"We’ll charge a 2% transfer fee or {{minimum_fee}} {{currency}}, whichever is higher, for transfers between your Deriv cryptocurrency and DMT5 accounts and between your Deriv cryptocurrency 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.","-1221972195":"DMT5 accounts","-1344870129":"Deriv accounts","-1156059326":"You have {{number}} transfer remaining for today.","-1593609508":"Transfer between your accounts in Deriv","-464965808":"Transfer limits: <0 /> - <1 />","-553249337":"Transfers are locked","-1157701227":"You need at least two accounts","-417711545":"Create account","-1232852916":"We’re switching over to your {{currency}} account to view the transaction.","-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","-2004264970":"Your wallet address should have 25 to 64 characters.","-1707299138":"Your {{currency_symbol}} wallet address","-38063175":"{{account_text}} wallet","-1474202916":"Make a new withdrawal","-705272444":"Upload a proof of identity to verify your identity","-2024958619":"This is to protect your account from unauthorised withdrawals.","-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.","-113940416":"Current stake:","-1999539705":"Deal cancel. fee:","-447037544":"Buy price:","-1342699195":"Total profit/loss:","-1511825574":"Profit/Loss:","-726626679":"Potential profit/loss:","-338379841":"Indicative price:","-1525144993":"Payout limit:","-1167474366":"Tick ","-555886064":"Won","-529060972":"Lost","-571642000":"Day","-155989831":"Decrement value","-1192773792":"Don't show this again","-1769852749":"N/A","-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.","-1940333322":"DBot is not available for this account","-1210387519":"Go to DMT5 dashboard","-1223145005":"Loss amount: {{profit}}","-1062922595":"Reference ID (buy)","-2068574600":"Reference ID (sell)","-994038153":"Start Time","-1979852400":"Entry Spot","-427802309":"Profit/Loss","-668558002":"Journal.csv","-746652890":"Notifications","-824109891":"System","-507620484":"Unsaved","-764102808":"Google Drive","-1109191651":"Must be a number higher than 0","-1917772100":"Invalid number format","-1553945114":"Value must be higher than 2","-689786738":"Minimum duration: {{ min }}","-184183432":"Maximum duration: {{ max }}","-749186458":"Account switching is disabled while your bot is running. Please stop your bot before switching accounts.","-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.","-597939268":"Keep my contract","-1322453991":"You need to log in to run the bot.","-1483938124":"This strategy is currently not compatible with DBot.","-236548954":"Contract Update Error","-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","-2046396241":"This block is mandatory. Only one copy of this block is allowed. It is added to the canvas by default when you open DBot.","-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","-70949308":"4. Come back to DBot and add the Notify Telegram block to the workspace. Paste the Telegram API token and chat ID into the block fields accordingly.","-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","-984140537":"Add","-786915692":"You are connected to Google Drive","-1150107517":"Connect","-1759213415":"Find out how this app handles your data by reviewing Deriv's <0>Privacy policy, which is part of Deriv's <1>Terms and conditions.","-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","-1016171176":"Asset","-621128676":"Trade type","-671128668":"The amount that you pay to enter a trade.","-447853970":"Loss threshold","-410856998":"The bot will stop trading if your total profit exceeds this amount.","-1823621139":"Quick Strategy","-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","-224804428":"Transactions","-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.","-305283152":"Strategy name","-1003476709":"Save as collection","-636521735":"Save strategy","-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","-1696412885":"Import","-250192612":"Sort","-1566369363":"Zoom out","-2060170461":"Load","-1200116647":"Click here to start building your DBot.","-1040972299":"Purchase contract","-600546154":"Sell contract (optional)","-985351204":"Trade again","-112876186":"Analysis","-1769584466":"Stats","-1133736197":"Utility","-1682372359":"Text","-907562847":"Lists","-1646497683":"Loops","-251326965":"Miscellaneous","-1285759343":"Search","-1058262694":"Stopping the bot will prevent further trades. Any ongoing trades will be completed by our system.","-1473283434":"Please be aware that some completed transactions may not be displayed in the transaction table if the bot is stopped while placing trades.","-397015538":"You may refer to the statement page for details of all completed transactions.","-1442034178":"Contract bought","-2020280751":"Bot is stopping","-1436403979":"Contract closed","-1711732508":"Reference IDs","-386141434":"(Buy)","-482272687":"(Sell)","-1983189496":"ticks","-694277729":"(High)","-2028564707":"(Low)","-627895223":"Exit spot","-596238067":"Entry/Exit spot","-558594655":"The bot is not running","-478946875":"The stats are cleared","-9461328":"Security and privacy","-563774117":"Dashboard","-418247251":"Download your journal.","-870004399":"<0>Bought: {{longcode}} (ID: {{transaction_id}})","-1211474415":"Filters","-186972150":"There are no messages to display","-999254545":"All messages are filtered out","-686334932":"Build a bot from the start menu then hit the run button to run the bot.","-1717650468":"Online","-1825471709":"A whole new trading experience on a powerful yet easy to use platform.","-981017278":"Automated trading at your fingertips. No coding needed.","-398198412":"Trade on Deriv MT5 (DMT5), the all-in-one FX and CFD trading platform.","-1793883644":"Trade FX and CFDs on a customisable, easy-to-use trading platform.","-1309011360":"Open positions","-883103549":"Account deactivated","-821418875":"Trader","-679102561":"Contract Details","-430118939":"Complaints policy","-744999940":"Deriv account","-568280383":"Deriv Gaming","-1936757551":"Deriv Synthetic","-1546927062":"Deriv Financial","-895331276":"Complete your proof of address","-782679300":"Complete your proof of identity","-1019903756":"Synthetic","-1548220954":"Synthetic SVG","-328128497":"Financial","-533935232":"Financial BVI","-565431857":"Financial Labuan","-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","-700966800":"Dutch Index","-1863229260":"Australian Index","-946336619":"Wall Street Index","-945048133":"French Index","-1093355162":"UK Index","-932734062":"Hong Kong Index","-2030624691":"Japanese Index","-354063409":"US Index","-232855849":"Euro 50 Index","-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","-764111252":"Volatility 100 (1s) Index","-1374309449":"Volatility 200 (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","-841561409":"Put Spread","-144803045":"Only numbers and these special characters are allowed: {{permitted_characters}}","-1450516268":"Only letters, numbers, space, hyphen, period, and apostrophe are allowed.","-1072358250":"Letters, spaces, periods, hyphens, apostrophes only","-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","-681468758":"Your web browser is out of date and may affect your trading experience. Please <0>update your browser.","-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","-540474806":"Your Options account is scheduled to be closed","-618539786":"Your account is scheduled to be closed","-945275490":"Withdraw all funds from your Options account.","-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.","-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","-1751632759":"Get a faster mobile trading experience with the <0>{{platform_name_go}} app!","-1164554246":"You submitted expired identification documents","-219846634":"Let’s verify your ID","-529038107":"Install","-1738575826":"Please switch to your real account or create one to access the cashier.","-1329329028":"You’ve not set your 30-day turnover limit","-132893998":"Your access to the cashier has been temporarily disabled as you have not set your 30-day turnover limit. Please go to Self-exclusion and set the limit.","-1852207910":"MT5 withdrawal disabled","-764323310":"MT5 withdrawals have been disabled on your account. Please check your email for more details.","-1435762703":"Please Verify your identity","-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.","-1125797291":"Password updated.","-157145612":"Please log in with your updated password.","-87177461":"Please go to your account settings and complete your personal details to enable deposits.","-904632610":"Reset your balance","-470018967":"Reset balance","-156611181":"Please complete the financial assessment in your account settings to unlock it.","-1925176811":"Unable to process withdrawals in the moment","-980696193":"Withdrawals are temporarily unavailable due to system maintenance. You can make withdrawals when the maintenance is complete.","-1647226944":"Unable to process deposit in the moment","-488032975":"Deposits are temporarily unavailable due to system maintenance. You can make deposits when the maintenance is complete.","-67021419":"Our cashier is temporarily down due to system maintenance. You can access the cashier in a few minutes when the maintenance is complete.","-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.","-2087822170":"You are offline","-1669693571":"Check your connection.","-1998049070":"If you agree to our use of cookies, click on Accept. For more information, <0>see our policy.","-402093392":"Add Deriv Account","-277547429":"A Deriv account will allow you to fund (and withdraw from) your MT5 account(s).","-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","-583559763":"Menu","-2094580348":"Thanks for verifying your email","-1396326507":"Unfortunately, {{website_name}} is not available in your country.","-288996254":"Unavailable","-122970184":"Total assets in your Deriv and {{platform_name_dxtrade}} demo accounts.","-97270814":"Total assets in your Deriv and {{platform_name_dxtrade}} real accounts.","-1844355483":"{{platform_name_dxtrade}} Accounts","-1740162250":"Manage account","-1277942366":"Total assets","-1556699568":"Choose your citizenship","-1310654342":"As part of the changes in our product line-up, we will be closing Gaming accounts belonging to our UK clients.","-626152766":"As part of the changes in our product line-up, we are closing Options accounts belonging to our clients in Europe.","-490100162":"As part of the changes in our product line-up, we will be closing accounts belonging to our Isle of Man clients.","-1208958060":"You can no longer trade digital options on any of our platforms. You also can’t deposit funds into your account.<0/><1/>Any open positions on digital options have been closed with full payout.","-2050417883":"You’ll lose access to your Gaming account when it gets closed, so make sure to withdraw your funds as soon as possible.","-1950045402":"Withdraw all your funds","-168971942":"What this means for you","-905560792":"OK, I understand","-1308593541":"You will lose access to your account when it gets closed, so be sure to withdraw all your funds.","-2024365882":"Explore","-1197864059":"Create free demo account","-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","-259386249":"Add a Deriv Synthetic account","-241733171":"Add a Deriv Financial account","-1329687645":"Create a cryptocurrency account","-1429178373":"Create a new account","-1016775979":"Choose an account","-1369294608":"Already signed up?","-617844567":"An account with your details already exists.","-292363402":"Trading statistics report","-1656860130":"Options trading can become a real addiction, as can any other activity pushed to its limits. To avoid the danger of such an addiction, we provide a reality-check that gives you a summary of your trades and accounts on a regular basis.","-28080461":"Would like to check your statement first? <0>Check Statement","-611059051":"Please specify your preferred interval reality check in minutes:","-1876891031":"Currency","-11615110":"Turnover","-1370419052":"Profit / Loss","-437320982":"Session duration:","-3959715":"Current time:","-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","-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","-1917706589":"Your Deriv account is unlinked from {{social_identity_provider}}. Use your email and password for future log in.","-2017825013":"Got it","-505449293":"Enter a new password for your Deriv account.","-1787820992":"Platforms","-184713104":"Earn fixed payouts with options, or trade multipliers to amplify your gains with limited risk.","-1571775875":"Our flagship options and multipliers trading platform.","-1107320163":"Automate your trading, no coding needed.","-820028470":"Options & Multipliers","-895091803":"If you're looking for CFDs","-1447215751":"Not sure? Try this","-2338797":"<0>Maximise returns by <0>risking more than you put in.","-1682067341":"Earn <0>fixed returns by <0>risking only what you put in.","-1744351732":"Not sure where to start?","-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}}.","-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","-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.","-175369516":"Welcome to Deriv X","-1667427537":"Run Deriv X on your browser or download the mobile app","-305915794":"Run MT5 from your browser or download the MT5 app for your devices","-404375367":"Trade forex, basket indices, commodities, and cryptocurrencies with high leverage.","-811331160":"Trade CFDs on forex, stocks, stock indices, synthetic indices, and commodities with leverage.","-781132577":"Leverage","-1264604378":"Up to 1:1000","-637908996":"100%","-1420548257":"20+","-1373949478":"50+","-1686150678":"Up to 1:100","-1382029900":"70+","-1493055298":"90+","-1056874273":"25+ assets: synthetics","-223956356":"Leverage up to 1:1000","-1340877988":"Registered with the Financial Commission","-879901180":"170+ assets: forex (standard/micro), stocks, stock indices, commodities, basket indices, and cryptocurrencies","-1020615994":"Better spreads","-1789823174":"Regulated by the Vanuatu Financial Services Commission","-1040269115":"30+ assets: forex and commodities","-1372141447":"Straight-through processing","-318390366":"Regulated by the Labuan Financial Services Authority (Licence no. MB/18/0024)","-1556783479":"80+ assets: forex and cryptocurrencies","-875019707":"Leverage up to 1:100","-1752249490":"Malta Financial","-2068980956":"Leverage up to 1:30","-2098459063":"British Virgin Islands","-2050821902":"Demo Synthetic","-1434036215":"Demo Financial","-1416247163":"Financial STP","-1882063886":"Demo CFDs","-1347908717":"Demo Financial SVG","-785625598":"Use these credentials to log in to your {{platform}} account on the website and mobile apps.","-997127433":"Change Password","-162753510":"Add real account","-860609405":"Password","-742647506":"Fund transfer","-1874242353":"Fund top up","-1580554423":"Trade CFDs on our synthetic indices that simulate real-world market movements.","-712681566":"Peer-to-peer exchange","-1267880283":"{{field_name}} is required","-2084509650":"{{field_name}} is not properly formatted.","-1779241732":"First line of address is not in a proper format.","-188222339":"This should not exceed {{max_number}} characters.","-1673422138":"State/Province is not in a proper format.","-1385484963":"Confirm to change your {{platform}} password","-1990902270":"This will change the password to all of your {{platform}} accounts.","-1357917360":"Web terminal","-1454896285":"The MT5 desktop app is not supported by Windows XP, Windows 2003, and Windows Vista.","-673424733":"Demo account","-1066565281":"Server maintenance starts at 06:00 GMT every Sunday and may last up to 2 hours. Service may be disrupted during this time.","-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.","-1199152768":"Please explore our other platforms.","-205020823":"Explore {{platform_name_trader}}","-1982499699":"Explore {{platform_name_dbot}}","-1567989247":"Submit your proof of identity and address","-464262734":"Manage {{platform}} Real {{account_title}} account password","-184453418":"Enter your {{platform}} password","-1769158315":"real","-700260448":"demo","-1175356567":"Congratulations, you have successfully created your {{category}} <0>{{platform}} <1>{{type}} account. To start trading, transfer funds from your Deriv account into this account.","-1570793523":"Congratulations, you have successfully created your {{category}} <0>{{platform}} <1>{{type}} account.","-790488576":"Forgot password?","-1190393389":"Enter your {{platform}} password to add a {{platform}} {{account}} account.","-2057918502":"Hint: You may have entered your Deriv password, which is different from your {{platform}} password.","-1928229820":"Reset Deriv X investor password","-1917043724":"Reset DMT5 investor password","-1087845020":"main","-1950683866":"investor","-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","-490244964":"Forex, stocks, stock indices, cryptocurrencies","-1368041210":", synthetic indices","-877064208":"EUR","-1302404116":"Maximum leverage","-1284221303":"You’ll get a warning, known as margin call, if your account balance drops down close to the stop out level.","-1848799829":"To understand stop out, first you need to learn about margin level, which is the ratio of your equity (the total balance you would have if you close all your positions at that point) to the margin you're using at the moment. If your margin level drops below our stop out level, your positions may be closed automatically to protect you from further losses.","-224051432":"24/7","-511301450":"Indicates the availability of cryptocurrency trading on a particular account.","-1591882610":"Synthetics","-70716111":"FX-majors (standard/micro lots), FX-minors, basket indices, commodities, cryptocurrencies, and stocks and stock indices","-1041629137":"FX-majors, FX-minors, FX-exotics, and cryptocurrencies","-287097947":"FX-majors (standard/micro lots), FX-minors, Commodities, Cryptocurrencies (except UK)","-2102641225":"At bank rollover, liquidity in the forex markets is reduced and may increase the spread and processing time for client orders. This happens around 21:00 GMT during daylight saving time, and 22:00 GMT non-daylight saving time.","-495364248":"Margin call and stop out level will change from time to time based on market condition.","-536189739":"To protect your portfolio from adverse market movements due to the market opening gap, we reserve the right to decrease leverage on all offered symbols for financial accounts before market close and increase it again after market open. Please make sure that you have enough funds available in your {{platform}} account to support your positions at all times.","-1225160479":"Compare available accounts","-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","-1124208206":"Switch to your real account to create a DMT5 {{account_title}} {{type_title}} account.","-1576792859":"Proof of identity and address are required","-104382603":"Check your proof of address","-793684335":"Check your proof of identity","-1271218821":"Account added","-1422519943":"Add Your DMT5 {{account_type}} account under Deriv (V) Ltd, regulated by the Vanuatu Financial Services Commission.","-2032649678":"Add your DMT5 {{account_type}} STP account under Deriv (FX) Ltd regulated by Labuan Financial Services Authority (Licence no. MB/18/0024).","-801751276":"Add your DMT5 CFDs account under Deriv Investments (Europe) Limited regulated by the Malta Financial Services Authority (MFSA) (licence no. IS/70156).","-16048185":"To create this account first we need your proof of identity and address.","-1627989291":"To create this account first we need you to resubmit your proof of identity.","-1389025684":"To create this account first we need you to resubmit your proof of identity and address.","-1615750576":"You will be able to open this account once your submitted documents have been verified.","-352187285":"Choose a jurisdiction for your DMT5 {{account_type}} account","-1728185398":"Resubmit proof of address","-1961967032":"Resubmit proof of identity","-10956371":"You need a real account (fiat currency or cryptocurrency) in Deriv to create a real DMT5 account.","-1760596315":"Create a Deriv account","-705682181":"Malta","-194969520":"Counterparty company","-1131400885":"Deriv Investments (Europe) Limited","-409563066":"Regulator","-2073451889":"Malta Financial Services Authority (MFSA) (Licence no. IS/70156)","-362324454":"Commodities","-543177967":"Stock indices","-1089385344":"Deriv (SVG) LLC","-2019617323":"Deriv (BVI) Ltd","-112814932":"Deriv (FX) Ltd","-1747078152":"-","-1510474851":"British Virgin Islands Financial Services Commission (licence no. SIBA/L/18/1114)","-199154602":"Vanuatu Financial Services Commission","-761250329":"Labuan Financial Services Authority (Licence no. MB/18/0024)","-251202291":"Broker","-81650212":"MetaTrader 5 web","-2123571162":"Download","-941636117":"MetaTrader 5 Linux app","-2019704014":"Scan the QR code to download Deriv MT5.","-1324223697":"Use this password to log in to your DMT5 accounts on the desktop, web, and mobile apps.","-648956272":"Use this password to log in to your Deriv X accounts on the web and mobile apps.","-337314155":"Change {{platform}} password","-1814308691":"Please click on the link in the email to change your {{platform}} password.","-1282933308":"Not {{barrier}}","-968190634":"Equals {{barrier}}","-1747377543":"Under {{barrier}}","-337314714":"days","-442488432":"day","-1572548510":"Ups & Downs","-71301554":"Ins & Outs","-952298801":"Look Backs","-763273340":"Digits","-1790089996":"NEW!","-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.","-28115241":"{{platform_name_trader}} is not available for this account","-453920758":"Go to {{platform_name_mt5}} dashboard","-402175529":"History","-902712434":"Deal cancellation","-988484646":"Deal cancellation (executed)","-444882676":"Deal cancellation (active)","-13423018":"Reference ID","-1551639437":"No history","-1214703885":"You have yet to update either take profit or stop loss","-880722426":"Market is closed","-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","-439389714":"We’re working on it","-770929448":"Go to {{platform_name_smarttrader}}","-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.","-590131162":"Stay on {{website_domain}}","-1444663817":"Go to Binary.com","-1526466612":"You’ve selected a trade type that is currently unsupported, but we’re working on it.","-1043795232":"Recent positions","-1572796316":"Purchase price:","-153220091":"{{display_value}} Tick","-802374032":"Hour","-2039780875":"Purchase confirmation","-1672470173":"Require confirmation before purchasing a contract","-1342661765":"Lock contract purchase buttons","-939764287":"Charts","-1738427539":"Purchase","-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\".","-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.","-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.","-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.","-1281286610":"If you select \"Matches\", you will win the payout if the last digit of the last tick is the same as your prediction.","-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).","-1416078023":"If you select \"Touch\", you win the payout if the market touches the barrier at any time during the contract period.","-1272255095":"If the exit spot is equal to the barrier or the new barrier (if a reset occurs), you don't win the payout.","-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.","-299450697":"If you select \"High Tick\", you win the payout if the selected tick is the highest among the next five ticks.","-705681870":"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.","-420387848":"The high is the highest point ever reached by the market during the contract period.","-1666375348":"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.","-2024955268":"If you select “Up”, you will earn a profit by closing your position when the market price is higher than the entry spot.","-1598433845":"If you select “Down”, you will earn a profit by closing your position when the market price is lower than the entry spot.","-1092777202":"The Stop-out level on the chart indicates the price at which your potential loss equals your entire stake. When the market price reaches this level, your position will be closed automatically. This ensures that your loss does not exceed the amount you paid to purchase the contract.","-885323297":"These are optional parameters for each position that you open:","-584696680":"If you select “Take profit” and specify an amount that you’d like to earn, your position will be closed automatically when your profit is more than or equals to this amount. Your profit may be more than the amount you entered depending on the market price at closing.","-178096090":"“Take profit” cannot be updated. You may update it only when “Deal cancellation” expires.","-206909651":"The entry spot is the market price when your contract is processed by our servers.","-149836494":"Your transaction reference number is {{transaction_id}}","-1382749084":"Go back to trading","-1231210510":"Tick","-1239477911":"second","-1585766960":"min","-1652791614":"mins","-1977959027":"hours","-8998663":"Digit: {{last_digit}} ","-1435392215":"About deal cancellation","-1280319153":"Cancel your trade anytime within a chosen time-frame. Triggered automatically if your trade reaches the stop out level within the chosen time-frame.","-471757681":"Risk management","-976258774":"Not set","-843831637":"Stop loss","-771725194":"Deal Cancellation","-45873457":"NEW","-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","-741395299":"{{value}}","-1527492178":"Purchase Locked","-725375562":"You can lock/unlock the purchase button from the Settings menu","-1358367903":"Stake","-1513281069":"Barrier 2","-390994177":"Should be between {{min}} and {{max}}","-2055106024":"Toggle between advanced and simple duration settings","-1012793015":"End time","-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}})","-1043117679":"When your current loss equals or exceeds {{stop_out_percentage}}% of your stake, your contract will be closed at the nearest available asset price.","-477998532":"Your contract is closed automatically when your loss is more than or equals to this amount.","-243332856":"Last digit stats for latest 1000 ticks for {{ underlying_name }}","-339236213":"Multiplier","-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","-2004386410":"Win","-1072292603":"No Change","-1631669591":"string","-1768939692":"number","-795152863":"green","-1640576332":"blue","-804983649":"yellow","-94281841":"red","-1242470654":"Earned money","-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","-2035315547":"Low barrier","-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","-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","-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.","-1291088318":"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","-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 }}","-1214929127":"Stop loss must be a positive number.","-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","-1821552998":"trim spaces from {{ side }} of {{ input_text }}","-801766026":"right side","-474779821":"Trims spaces","-1219239717":"One or more mandatory blocks are missing from your workspace. Please add the required block(s) and then try again.","-250761331":"One or more mandatory blocks are disabled in your workspace. Please enable the required block(s) and then try again.","-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","-1723202824":"Please grant permission to view and manage Google Drive folders created with Binary Bot","-210953314":"There was an error retrieving data from Google Drive","-1521930919":"Select a Binary Bot strategy","-845301264":"There was an error listing files from Google Drive","-1452908801":"There was an error retrieving files from Google Drive","-232617824":"There was an error processing your request","-1800672151":"GBP Index","-1904030160":"Transaction performed by (App ID: {{app_id}})","-513103225":"Transaction time","-2066666313":"Credit/Debit","-2140412463":"Buy price","-1981004241":"Sell time","-600828210":"Indicative profit/loss","-706219815":"Indicative price","-3423966":"Take profit<0 />Stop loss","-2082644096":"Current stake","-538215347":"Net deposits","-280147477":"All transactions","-137444201":"Buy","-130601012":"Please select duration","-232254547":"Custom","-1577570698":"Start date","-1251526905":"Last 7 days","-360975483":"You've made no transactions of this type during this period.","-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","-2092611555":"Sorry, this app is unavailable in your current location.","-1488537825":"If you have an account, log in to continue.","-555592125":"Unfortunately, trading options isn't possible in your country","-1571816573":"Sorry, trading is unavailable in your current location.","-1714959941":"This chart display is not ideal for tick contracts","-1254554534":"Please change the chart duration to tick for a better trading experience.","-1603581277":"minutes","-1658230823":"Contract was sold for <0 />.","-1905867404":"Contract cancelled"} \ No newline at end of file +{"0":"","1014140":"You may also call <0>+447723580049 to place your complaint.","3215342":"Last 30 days","7100308":"Hour must be between 0 and 23.","11539750":"set {{ variable }} to Relative Strength Index Array {{ dummy }}","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","27582767":"{{amount}} {{currency}}","27830635":"Deriv (V) Ltd","28581045":"Add a real MT5 account","30801950":"Your account will be opened with {{legal_entity_name}}, regulated by the Malta Gaming Authority, and will be subject to the laws of Malta.","33433576":"Please use an e-wallet to withdraw your funds.","35089987":"Upload the front and back of your driving licence.","39720204":"AUD Index","41737927":"Thank you","44877997":"Residence permit","45453595":"Binary Coin","45941470":"Where would you like to start?","46523711":"Your proof of identity is verified","49963458":"Choose an option","50200731":"FX majors (standard/micro lots), FX minors, basket indices, commodities, and cryptocurrencies","54185751":"Less than $100,000","55340304":"Keep your current contract?","55916349":"All","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","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","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","76916358":"You have reached the withdrawal limit.<0/>Please upload your proof of identity and address to lift the limit to continue your withdrawal.","81450871":"We couldn’t find that page","82839270":"Upload the page of your passport that contains your photo.","83202647":"Collapse Block","85343079":"Financial assessment","85389154":"Steps required to continue verification on your mobile","89062902":"Trade on MT5","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.","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","107206831":"We’ll review your document and notify you of its status within 1-3 days.","108916570":"Duration: {{duration}} days","109073671":"Please use an e-wallet that you have used for deposits previously. Ensure the e-wallet supports withdrawal. See the list of e-wallets that support withdrawals <0>here.","111215238":"Move away from direct light","111718006":"End date","111931529":"Max. total stake over 7 days","113378532":"ETH/USD","113884303":"German Index","113933902":"Download the Deriv X app","115032488":"Buy price and P/L","116005488":"Indicators","117318539":"Password should have lower and uppercase English letters with numbers.","119261701":"Prediction:","119446122":"Contract type is not selected","120340777":"Complete your personal details","123454801":"{{withdraw_amount}} {{currency_symbol}}","124723298":"Upload a proof of address to verify your address","125443840":"6. Restart last trade on error","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.","130567238":"THEN","132689841":"Trade on web terminal","133523018":"Please go to the Deposit page to get an address.","133536621":"and","138055021":"Synthetic indices","139454343":"Confirm my limits","141626595":"Make sure your device has a working camera","142050447":"set {{ variable }} to create text with","142390699":"Connected to your mobile","143970826":"Payment problems?","145146541":"Our accounts and services are unavailable for the Jersey postal code","145736466":"Take a selfie","150486954":"Token name","151344063":"The exit spot is the market price when the contract is closed.","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 }}","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","162727973":"Please enter a valid payment agent ID.","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?","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.","176319758":"Max. total stake over 30 days","176654019":"$100,000 - $250,000","178413314":"First name should be between 2 and 50 characters.","179083332":"Date","181881956":"Contract Type: {{ contract_type }}","182628338":"Proof of identity and address verified","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","191372501":"Accumulation of Income/Savings","192436105":"No need for symbols, digits, or uppercase letters","192573933":"Verification complete","195972178":"Get character","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","203271702":"Try again","204797764":"Transfer to client","204863103":"Exit time","206010672":"Delete {{ delete_count }} Blocks","207824122":"Please withdraw your funds from the following Deriv account(s):","210385770":"If you have an active account, please log in to continue. Otherwise, please sign up.","211224838":"Investment","211461880":"Common names and surnames are easy to guess","211847965":"Your <0>personal details are incomplete. Please go to your account settings and complete your personal details to enable withdrawals.","216650710":"You are using a demo account","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","222468543":"The amount that you may add to your stake if you’re losing a trade.","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.","228079844":"Click here to upload","228521812":"Tests whether a string of text is empty. Returns a boolean value (true or false).","229355215":"Trade on {{platform_name_dbot}}","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. ","236642001":"Journal","240247367":"Profit table","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 }}","247418415":"Gaming trading can become a real addiction, as can any other activity pushed to its limits. To avoid the danger of such an addiction, we provide a reality-check that gives you a summary of your trades and accounts on a regular basis.","248565468":"Check your {{ identifier_title }} account email and click the link in the email to proceed.","248909149":"Send a secure link to your phone","249908265":"Are you a citizen of {{- residence}}?","251134918":"Account Information","251445658":"Dark theme","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:","258310842":"Workspace","258448370":"MT5","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.","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.","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.","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.","272042258":"When you set your limits, they will be aggregated across all your account types in {{platform_name_trader}}, {{platform_name_dbot}}, {{platform_name_smarttrader}} and {{platform_name_bbot}} on Deriv. For example, the losses made on all four platforms will add up and be counted towards the loss limit you set.","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","277469417":"Exclude time cannot be for more than five years.","278684544":"get sub-list from # from end","282319001":"Check your image","282564053":"Next, we'll need your proof of address.","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","287934290":"Are you sure you want to cancel this transaction?","289898640":"TERMS OF USE","292491635":"If you select “Stop loss” and specify an amount to limit your loss, your position will be closed automatically when your loss is more than or equals to this amount. Your loss may be more than the amount you entered depending on the market price at closing.","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","294305803":"Manage account settings","294335229":"Sell at market price","300762428":"Swiss Index","303959005":"Sell Price:","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.","310234308":"Close all your positions.","312142140":"Save new limits?","312300092":"Trims the spaces within a given string or text.","313298169":"Our cashier is temporarily down due to system maintenance. You can access the Cashier in a few minutes when the maintenance is complete.","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.","314357202":"Click the <0>Change password button to change your {{platform_name_dxtrade}} password.","315306603":"You have an account that do not have currency assigned. Please choose a currency to trade with this account.","316694303":"Is candle black?","317601768":"Themes","318865860":"close","318984807":"This block repeats the instructions contained within for a specific number of times.","323179846":"The time interval for each candle can be set from one minute to one day.","323209316":"Select a Deriv Bot Strategy","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","329404045":"<0>Switch to your real account<1> to create a {{platform}} {{account_title}} account.","333456603":"Withdrawal limits","334942497":"Buy time","335040248":"About us","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","346994074":"Selecting this will onboard you through Deriv (SVG) LLC (company no. 273 LLC 2020)","347029309":"Forex: standard/micro","347039138":"Iterate (2)","348951052":"Your cashier is currently locked","349047911":"Over","351744408":"Tests if a given text string is empty","353731490":"Job done","354945172":"Submit document","357477280":"No face found","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","362772494":"This should not exceed {{max}} characters.","363576009":"- High price: the highest price","363738790":"Browser","363990763":"Sell price:","368160866":"in list","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","372885537":"Trade CFDs on forex, stocks & stock indices, commodities, basket indices, and crypto.","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}}\"","375431605":"Demo Synthetic SVG","375714803":"Deal Cancellation Error","379523479":"To avoid loss of funds, do not share tokens with the Admin scope with unauthorised parties.","379730150":"US Tech Index","380606668":"tick","380694312":"Maximum consecutive trades","382781785":"Your contract is closed automatically when your profit is more than or equals to this amount.","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.","386278304":"Install the {{platform_name_trader}} web app","386502387":"Bot is not running","389923099":"Zoom in","390647540":"Real account","390890891":"Last quarter","391915203":"Hedging","392582370":"Fall Equals","396418990":"Offline","396961806":"We do not support Polygon (Matic), to deposit please use only Ethereum ({{token}}).","398816980":"Launch {{platform_name_trader}} in seconds the next time you want to trade.","399387585":"Please check your email for details. If you have any questions, please go to our <0>Help Centre.","401339495":"Verify address","402343402":"Due to an issue on our server, some of your {{platform}} accounts are unavailable at the moment. Please bear with us and thank you for your patience.","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.","420072489":"CFD trading frequency","422055502":"From","426031496":"Stop","427134581":"Try using another file type.","427617266":"Bitcoin","428709688":"Your preferred time interval between each report:","430975601":"Town/City is not in a proper format.","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.","437138731":"Create a new {{platform}} password","437453244":"Choose your preferred cryptocurrency","437485293":"File type not supported","437904704":"Maximum open positions","438067535":"Over $500,000","442520703":"$250,001 - $500,000","443559872":"Financial SVG","444484637":"Logic negation","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.","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).","453409608":"Your profit is the percentage change in market price times your stake and the multiplier of your choice.","454593402":"2. Please upload one of the following:","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.","459817765":"Pending","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","466369320":"Your gross profit is the percentage change in market price times your stake and the multiplier chosen here.","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\".","479420576":"Tertiary","481276888":"Goes Outside","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","491603904":"Unsupported browser","492198410":"Make sure everything is clear","496680295":"Choose country","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","502041595":"This block gives you a specific candle from within the selected time interval.","503137339":"Payout limit","505793554":"last letter","508390614":"Demo Financial STP","510815408":"Letters, numbers, spaces, hyphens only","514031715":"list {{ input_list }} is empty","514776243":"Your {{account_type}} password has been changed.","514948272":"Copy link","518955798":"7. Run Once at Start","520136698":"Boom 500 Index","521872670":"item","522283618":"Digital options trading experience","522703281":"divisible by","523123321":"- 10 to the power of a given number","527329988":"This is a top-100 common password","529056539":"Options","529597350":"If you had any open positions, we have closed them and refunded you.","530953413":"Authorised applications","531114081":"3. Contract Type","531675669":"Euro","535041346":"Max. total stake per day","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","543915570":"Forex, stocks, stock indices, cryptocurrencies, synthetic indices","545476424":"Total withdrawals","546534357":"If you select “Deal cancellation”, you’ll be able to cancel your trade within a chosen time frame should the market move against your favour. We’ll charge a small fee for this, but we’ll return your stake amount without profit or loss. If the stop-out amount is reached before the deal cancellation expires, your position will be cancelled automatically and we’ll return your stake amount without profit or loss. While “Deal cancellation” is active:","549479175":"Deriv Multipliers","551414637":"Click the <0>Change password button to change your DMT5 password.","551569133":"Learn more about trading limits","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.","556095366":"We'll process your details within a few minutes and notify its status via email.","556264438":"Time interval","559224320":"Our classic “drag-and-drop” tool for creating trading bots, featuring pop-up trading charts, for advanced users.","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","573173477":"Is candle {{ input_candle }} black?","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","589609985":"Linked with {{identifier_title}}","593459109":"Try a different currency","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","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","611786123":"FX-majors (standard/micro lots), FX-minors, Commodities, Cryptocurrencies, Stocks, and Stock Indices","613877038":"Chart","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.","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}}?","623192233":"Please complete the <0>Appropriateness Test to access your cashier.","623542160":"Exponential Moving Average Array (EMAA)","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.","629145209":"In case if the \"AND\" operation is selected, the block returns \"True\" only if both given values are \"True\"","632398049":"This block assigns a null value to an item or statement.","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.","636219628":"<0>c.If no settlement opportunity can be found, the complaint will proceed to the determination phase to be handled by the DRC.","639382772":"Please upload supported file type.","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.","642546661":"Upload back of license from your computer","643014039":"The trade length of your purchased contract.","644150241":"The number of contracts you have won since you last cleared your stats.","645016681":"Trading frequency in other financial instruments","645902266":"EUR/NZD","647192851":"Contract will be sold at the prevailing market price when the request is received by our servers. This price may differ from the indicated price.","647745382":"Input List {{ input_list }}","649317411":"On the basis of the information provided in relation to your knowledge and experience, we consider that the investments available via this website are not appropriate for you.<0/><1/>","649923867":"Adds a sign to a number to create a barrier offset. (deprecated)","651284052":"Low Tick","651684094":"Notify","652041791":"To create a Deriv X real account, create a Deriv real account first.","652298946":"Date of birth","654264404":"Up to 1:30","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.","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.","657444253":"Sorry, account opening is unavailable in your region.","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","662609119":"Download the MT5 app","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\".","672008428":"ZEC/USD","673915530":"Jurisdiction and choice of law","676159329":"Could not switch to default account.","677918431":"Market: {{ input_market }} > {{ input_submarket }} > {{ input_symbol }}","678517581":"Units","680334348":"This block was required to correctly convert your old strategy.","681926004":"Example of a blurry document","682056402":"Standard Deviation Down Multiplier {{ input_number }}","684282133":"Trading instruments","685391401":"If you're having trouble signing in, let us know via <0>chat","687212287":"Amount is a required field.","689137215":"Purchase price","691956534":"<0>You have added a {{currency}} account.<0> Make a deposit now to start trading.","693396140":"Deal cancellation (expired)","696870196":"- Open time: the opening time stamp","697630556":"This market is presently closed.","698748892":"Let’s try that again","699159918":"1. Filing complaints","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","705299518":"Next, upload the page of your passport that contains your photo.","706727320":"Binary options trading frequency","706755289":"This block performs trigonometric functions.","708055868":"Driving licence number","710123510":"repeat {{ while_or_until }} {{ boolean }}","711029377":"Please confirm the transaction details in order to complete the withdrawal:","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","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.","728042840":"To continue trading with us, please confirm where you live.","728824018":"Spanish Index","730473724":"This block performs the \"AND\" or the \"OR\" logic operation with the given values.","731382582":"BNB/USD","734390964":"Insufficient balance","734881840":"false","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","751692023":"We <0>do not guarantee a refund if you make a wrong transfer.","752024971":"Reached maximum number of digits","752633544":"You will need to submit proof of identity and address once you reach certain thresholds","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","755867072":"{{platform_name_mt5}} is not available in {{country}}","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.","762185380":"<0>Multiply returns by <0>risking only what you put in.","762871622":"{{remaining_time}}s","763019867":"Your Gaming account is scheduled to be closed","764366329":"Trading limits","764540515":"Stopping the bot is risky","766317539":"Language","770171141":"Go to {{hostname}}","772632060":"Do not send any other currency to the following address. Otherwise, you'll lose funds.","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)","776085955":"Strategies","781924436":"Call Spread/Put Spread","783974693":"Avoid recent years","784311461":"Exponential Moving Average (EMA)","784583814":"Linked to your computer","785969488":"Jump 75 Index","787116142":"The multiplier amount used to increase your stake if you’re losing a trade. Value must be higher than 2.","787727156":"Barrier","788005234":"NA","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","802436811":"View transaction details","802438383":"New proof of address is needed","802556390":"seconds","802989607":"Drag your XML file here","803500173":"Initial stake","807499069":"Financial commission complaints procedure","808323704":"You can also use \"Compare\" and \"Logic operation\" blocks to make test variables.","811876954":"You may transfer between your Deriv fiat, cryptocurrency, {{platform_name_mt5}}, and {{platform_name_dxtrade}} accounts.","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","823186089":"A block that can contain text.","824797920":"Is list empty?","826511719":"USD/SEK","827688195":"Disable Block","828219890":"then","828602451":"Returns the list of tick values in string format","830164967":"Last name","830993327":"No current transactions available","832217983":"40 transactions or more in the past 12 months","832398317":"Sell Error","832588873":"Order execution","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).","835058671":"Total buy price","835350845":"Add another word or two. Uncommon words are better.","837066896":"Your document is being reviewed, please check back in 1-3 days.","839618971":"ADDRESS","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.","845213721":"Logout","845304111":"Slow EMA Period {{ input_number }}","847888634":"Please withdraw all your funds.","849805216":"Choose an agent","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.","852583045":"Tick List String","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","860319618":"Tourism","862283602":"Phone number*","863328851":"Proof of identity","864610268":"First, enter your {{label}} and the expiry date.","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","869611522":"We’ll charge a 2% transfer fee or {{minimum_fee}} {{currency}}, whichever is higher, for transfers between your Deriv cryptocurrency and DMT5 accounts.","869823595":"Function","872549975":"You have {{number}} transfers remaining for today.","872661442":"Are you sure you want to update email <0>{{prev_email}} to <1>{{changed_email}}?","872817404":"Entry Spot Time","872957901":"Dark (Coming soon to DBot)","873166343":"1. 'Log' displays a regular message.","874461655":"Scan the QR code with your phone","874484887":"Take profit must be a positive number.","875532284":"Restart process on a different device","876086855":"Complete the financial assessment form","876292912":"Exit","879014472":"Reached maximum number of decimals","888274063":"Town/City","890299833":"Go to Reports","891097078":"USD Index","891337947":"Select country","892341141":"Your trading statistics since: {{date_time}}","893117915":"Variable","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.","898457777":"You have added a Deriv Financial account.","902045490":"3 minutes","903429103":"In candles list read {{ candle_property }} # from end {{ input_number }}","904696726":"API token","905134118":"Payout:","905227556":"Strong passwords contain at least 8 characters, combine uppercase and lowercase letters and numbers.","905564365":"MT5 CFDs","910888293":"Too many attempts","915735109":"Back to {{platform_name}}","918447723":"Real","920125517":"Add demo account","926813068":"Fixed/Variable","929608744":"You are unable to make withdrawals","930346117":"Capitalization doesn't help very much","930546422":"Touch","933126306":"Enter some text here","933193610":"Only letters, periods, hyphens, apostrophes, and spaces, please.","934835052":"Potential profit","934932936":"PERSONAL","936766426":"You are limited to one fiat account. You won’t be able to change your account currency if you have already made your first deposit.","937237342":"Strategy name cannot be empty","937682366":"Upload both of these documents to prove your identity.","937831119":"Last name*","937992258":"Table","938988777":"High barrier","940950724":"This trade type is currently not supported on {{website_name}}. Please go to <0>Binary.com for details.","943535887":"Please close your positions in the following Deriv MT5 account(s):","944499219":"Max. open positions","945532698":"Contract sold","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.","946944859":"Hit the button below and we'll send you an email with a link. Click that link to verify your withdrawal request.","947046137":"Your withdrawal will be processed within 24 hours","947363256":"Create list","947549448":"Total assets in your Deriv, {{platform_name_mt5}} and {{platform_name_dxtrade}} real accounts.","947758334":"City is required","947914894":"Top up  <0>","948156236":"Create {{type}} password","948545552":"150+","949859957":"Submit","952655566":"Payment agent","952927527":"Regulated by the Malta Financial Services Authority (MFSA) (licence no. IS/70156)","955352264":"Trade on {{platform_name_dxtrade}}","956448295":"Cut-off image detected","957182756":"Trigonometric functions","958430760":"In/Out","959031082":"set {{ variable }} to MACD Array {{ dropdown }} {{ dummy }}","960201789":"3. Sell conditions","961692401":"Bot","964780376":"We couldn’t verify your personal details with our records, to enable deposit, withdrawals and trading, you need to upload proof of your identity.","966457287":"set {{ variable }} to Exponential Moving Average {{ dummy }}","968576099":"Up/Down","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","981138557":"Redirect","981965437":"Scan the QR code below with your 2FA app. We recommend <0>Authy or <1>Google Authenticator.","982402892":"First line of address","982829181":"Barriers","987900242":"Total assets in your Deriv, {{platform_name_mt5}} and {{platform_name_dxtrade}} demo accounts.","988361781":"You have no trading activity yet.","988934465":"When prompted, you must enable camera access to continue","992294492":"Your postal code is invalid","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 }}","999008199":"text","1001160515":"Sell","1003876411":"Should start with letter or number and may contain a hyphen, period and slash.","1004127734":"Send email","1006458411":"Errors","1006664890":"Silent","1008240921":"Choose a payment agent and contact them for instructions.","1009032439":"All time","1010198306":"This block creates a list with strings and numbers.","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","1022934784":"1 minute","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}}.","1027098103":"Leverage gives you the ability to trade a larger position using your existing capital. Leverage varies across different symbols.","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.","1030021206":"change {{ variable }} by {{ number }}","1031602624":"We've sent a secure link to %{number}","1031731167":"Pound Sterling","1032173180":"Deriv","1032907147":"AUD/NZD","1035506236":"Choose a new password","1036353276":"Please create another Deriv or {{platform_name_mt5}} account.","1036867749":"The desired duration, stake, prediction, and/or barrier(s) for the contract is defined here.","1038575777":"Change password","1039755542":"Use a few words, avoid common phrases","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","1044230481":"This is an Ethereum ({{token}}) only address, please do not use {{prohibited_token}}.","1044540155":"100+","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","1048947317":"Sorry, this app is unavailable in {{clients_country}}.","1049384824":"Rise","1050844889":"Reports","1052137359":"Family name*","1052779010":"You are on your demo account","1053153674":"Jump 50 Index","1053159279":"Level of education","1055313820":"No document detected","1056381071":"Return to trade","1056821534":"Are you sure?","1057216772":"text {{ input_text }} is empty","1057749183":"Two-factor authentication (2FA)","1057765448":"Stop out level","1057904606":"The concept of the D’Alembert Strategy is said to be similar to the Martingale Strategy where you will increase your contract size after a loss. With the D’Alembert Strategy, you will also decrease your contract size after a successful trade.","1061308507":"Purchase {{ contract_type }}","1062536855":"Equals","1065498209":"Iterate (1)","1069347258":"The verification link you used is invalid or expired. Please request for a new one.","1069576070":"Purchase lock","1070624871":"Check proof of address document verification status","1076006913":"Profit/loss on the last {{item_count}} contracts","1077515534":"Date to","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","1088138125":"Tick {{current_tick}} - ","1096175323":"You’ll need a Deriv account","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.","1100870148":"To learn more about account limits and how they apply, please go to the <0>Help Centre.","1101560682":"stack","1101712085":"Buy Price","1102420931":"Next, upload the front and back of your driving licence.","1102995654":"Calculates Exponential Moving Average (EMA) list from a list of values with a period","1103309514":"Target","1103452171":"Cookies help us to give you a better experience and personalised content on our site.","1104912023":"Pending verification","1107474660":"Submit proof of address","1107555942":"To","1109217274":"Success!","1110102997":"Statement","1112582372":"Interval duration","1113119682":"This block gives you the selected candle value from a list of candles.","1113292761":"Less than 8MB","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","1125090693":"Must be a number","1126934455":"Length of token name must be between 2 and 32 characters.","1127149819":"Make sure§","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.","1129296176":"IMPORTANT NOTICE TO RECEIVE YOUR FUNDS","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","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.","1147625645":"Please proceed to withdraw all your funds from your account before <0>30 November 2021.","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).","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","1163836811":"Real Estate","1164773983":"Take profit and/or stop loss are not available while deal cancellation is active.","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}}","1174542625":"- Find the chat ID property in the response, and copy the value of the id property","1174748431":"Payment channel","1175183064":"Vanuatu","1176926166":"Experience with trading other financial instruments","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.","1180619731":"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, and up to {{ allowed_dxtrade }} transfers between your Deriv and {{platform_name_dxtrade}} accounts.","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с.","1188980408":"5 minutes","1189368976":"Please complete your personal details before you verify your identity.","1189886490":"Please create another Deriv, {{platform_name_mt5}}, or {{platform_name_dxtrade}} account.","1191429031":"Please click on the link in the email to change your <0>{{platform_name_dxtrade}} password.","1191644656":"Predict the market direction and select either “Up” or “Down” to open a position. We will charge a commission when you open a position.","1191778951":"Check your proof of identity and address","1192708099":"Duration unit","1195393249":"Notify {{ notification_type }} with sound: {{ notification_sound }} {{ input_message }}","1196006480":"Profit threshold","1197326289":"You are no longer able to trade digital options on any of our platforms. Also, you can’t make deposits into your Options account.","1198368641":"Relative Strength Index (RSI)","1199281499":"Last Digits List","1201533528":"Contracts won","1201773643":"numeric","1203297580":"This block sends a message to a Telegram channel.","1204223111":"In this example, the open prices from a list of candles are assigned to a variable called \"candle_list\".","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","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","1225150022":"Number of assets","1227074958":"random fraction","1227240509":"Trim spaces","1228208126":"Please Verify your address","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","1234292259":"Source of wealth","1235426525":"50%","1237330017":"Pensioner","1238311538":"Admin","1239940690":"Restarts the bot when an error is encountered.","1240027773":"Please Log in","1241238585":"You may transfer between your Deriv fiat, cryptocurrency, and {{platform_name_mt5}} accounts.","1243064300":"Local","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.","1250495155":"Token copied!","1254565203":"set {{ variable }} to create list with","1255909792":"last","1255963623":"To date/time {{ input_timestamp }} {{ dummy }}","1258097139":"What could we do to improve?","1258198117":"positive","1259598687":"GBP/JPY","1260259925":"Phone is not in a proper format.","1263387702":"All {{count}} account types use market execution. This means you agree with the broker's price in advance and will place orders at the broker's price.","1264096613":"Search for a given string","1265704976":"","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","1274819385":"3. Complaints and Disputes","1275474387":"Quick","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","1289646209":"Margin call","1290525720":"Example: ","1291887623":"Digital options trading frequency","1292891860":"Notify Telegram","1293660048":"Max. total loss per day","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","1301668579":"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 DMT5 Financial.","1302691457":"Occupation","1303016265":"Yes","1303530014":"We’re processing your withdrawal.","1304083330":"copy","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","1311799109":"We do not support Binance Smart Chain tokens to deposit, please use only Ethereum ({{token}}).","1313167179":"Please log in","1313302450":"The bot will stop trading if your total loss exceeds this amount.","1314671947":"DMT5 Accounts","1316216284":"You can use this password for all your {{platform}} accounts.","1319217849":"Check your mobile","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","1324110809":"Address information","1324922837":"2. The new variable will appear as a block under Set variable.","1327181172":"Financial Vanuatu","1327494533":"{{sell_value}} (Sell)","1329136554":"Jump 200 Index","1329325646":"The content of this block is called on every tick","1331199417":"Please enter the correct format. ","1331367811":"Client account number","1332168410":"Learn more","1332168769":"Disconnect","1333576137":"Please update your {{details}} to continue.","1333839457":"Submit identity card (front)","1334326985":"It may take a few minutes to arrive","1335967988":"Notice","1337846406":"This block gives you the selected candle value from a list of candles within the selected time interval.","1337864666":"Photo of your document","1338496204":"Ref. ID","1341840346":"View in Journal","1346204508":"Take profit","1346339408":"Managers","1347071802":"{{minutePast}}m ago","1348009461":"Please close your positions in the following Deriv X account(s):","1349289354":"Great, that's everything we need","1349295677":"in text {{ input_text }} get substring from {{ position1 }} {{ index1 }} to {{ position2 }} {{ index2 }}","1351152200":"Welcome to Deriv MT5 (DMT5) dashboard","1351906264":"This feature is not available for payment agents.","1353197182":"Please select","1355250245":"{{ calculation }} of list {{ input_list }}","1356574493":"Returns a specific portion of a given string of text.","1356607862":"Deriv password","1357129681":"{{num_day}} days {{num_hour}} hours {{num_minute}} minutes","1357213116":"Identity card","1358543466":"Not available","1359424217":"You have sold this contract at <0 />","1360929368":"Add a Deriv account","1362578283":"High","1363060668":"Your trading statistics since:","1363675688":"Duration is a required field.","1364958515":"Stocks","1366244749":"Limits","1367023655":"To ensure your loss does not exceed your stake, your contract will be closed automatically when your loss equals to <0/>.","1367488817":"4. Restart trading conditions","1367990698":"Volatility 10 Index","1369709538":"Our terms of use","1371193412":"Cancel","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).","1374627690":"Max. account balance","1376329801":"Last 60 days","1378419333":"Ether","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:","1392966771":"Mrs","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","1397046738":"View in statement","1397628594":"Insufficient funds","1399620764":"We're legally obliged to ask for your financial information.","1400341216":"We’ll review your documents and notify you of its status within 1 to 3 days.","1400637999":"(All fields are required)","1400732866":"View from camera","1400962248":"High-Close","1402208292":"Change text case","1403376207":"Update my details","1405584799":"with interval: {{ candle_interval_type }}","1408844944":"Click the plus icon to extend the functionality of this block.","1409444561":"Meanwhile, do you want to explore other accounts?","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","1415006332":"get sub-list from first","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","1417914636":"Login ID","1418115525":"This block repeats instructions as long as a given condition is true.","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","1424741507":"See more","1424779296":"If you've recently used bots but don't see them in this list, it may be because you:","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.","1434382099":"Displays a dialog window with a message","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.","1435380105":"Minimum deposit","1437396005":"Add comment","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","1445592224":"You accidentally gave us another email address (Usually a work or a personal one instead of the one you meant).","1449462402":"In review","1452260922":"Too many failed attempts","1452941569":"This block delays execution for a given number of seconds. You can place any blocks within this block. The execution of other blocks in your strategy will be paused until the instructions in this block are carried out.","1453317405":"This block gives you the balance of your account either as a number or a string of text.","1453362009":"Deriv Accounts","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.","1457603571":"No notifications","1461323093":"Display messages in the developer’s console.","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}}.","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","1467661678":"Cryptocurrency trading","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","1468937050":"Trade on {{platform_name_trader}}","1469150826":"Take Profit","1469764234":"Cashier Error","1469814942":"- Division","1470319695":"Returns either True or False","1471070549":"Can contract be sold?","1471741480":"Severe error","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","1481977420":"Please help us verify your withdrawal request.","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","1490583127":"DBot isn't quite ready for real 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","1496810530":"GBP/AUD","1499074768":"Add a real Deriv Multipliers account","1499080621":"Tried to perform an invalid operation.","1502039206":"Over {{barrier}}","1502325741":"Your password cannot be the same as your email address.","1503618738":"- Deal reference ID: the reference ID of the contract","1505898522":"Download stack","1508172198":"Synthetic BVI","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.","1516537408":"You can no longer trade on Deriv or deposit funds into your account.","1516559721":"Please select one file only","1516676261":"Deposit","1517503814":"Drop file or click here to upload","1519336051":"Try a different phone number","1520332426":"Net annual income","1524636363":"Authentication failed","1527251898":"Unsuccessful","1527906715":"This block adds the given number to the selected variable.","1529440614":"Use the <0>Deriv password to log in to {{brand_website_name}}, {{platform_name_go}}, {{platform_name_trader}}, {{platform_name_smarttrader}}, and {{platform_name_dbot}}.","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","1534569275":"As part of the changes in our markets, we will be closing our UK clients’ accounts.","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.","1539108340":"EUR Index","1540585098":"Decline","1541969455":"Both","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.","1548765374":"Verification of document number failed","1549098835":"Total withdrawn","1551172020":"AUD Basket","1552918367":"Send only {{currency}} ({{currency_symbol}}) to this address.","1557682012":"Account Settings","1558972889":"set {{ variable }} to Simple Moving Average {{ dummy }}","1560302445":"Copied","1562374116":"Students","1564392937":"When you set your limits or self-exclusion, they will be aggregated across all your account types in {{platform_name_trader}} and {{platform_name_dbot}}. For example, the losses made on both platforms will add up and be counted towards the loss limit you set.","1566037033":"Bought: {{longcode}} (ID: {{transaction_id}})","1567076540":"Only use an address for which you have proof of residence - ","1567586204":"Self-exclusion","1569624004":"Dismiss alert","1570484627":"Ticks list","1572504270":"Rounding operation","1572982976":"Server","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","1579484521":"Trading hub","1580498808":"Multiple faces found","1584109614":"Ticks String List","1584578483":"50+ assets: forex, stocks, stock indices, synthetics indices, and cryptocurrencies.","1584936297":"XML file contains unsupported elements. Please check or modify file.","1587046102":"Documents from that country are not currently supported — try another document type","1589640950":"Resale of this contract is not offered.","1589702653":"Proof of address","1594147169":"Please come back in","1594322503":"Sell is available","1596378630":"You have added a real Gaming account.<0/>Make a deposit now to start trading.","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","1602894348":"Create a password","1604171868":"Please withdraw all your funds as soon as possible.","1604916224":"Absolute","1605292429":"Max. total loss","1612105450":"Get substring","1613633732":"Interval should be between 10-60 minutes","1615897837":"Signal EMA Period {{ input_number }}","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","1623706874":"Use this block when you want to use multipliers as your trade type.","1630372516":"Try our Fiat onramp","1630417358":"Please go to your account settings and complete your personal details to enable withdrawals.","1631281562":"GBP Basket","1634594289":"Select language","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.","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.","1644908559":"Digit code is required.","1647186767":"The bot encountered an error while running.","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!","1653159197":"Payment agent withdrawal","1653180917":"We cannot verify you without using your camera","1654365787":"Unknown","1654496508":"Our system will finish any DBot trades that are running, and DBot will not place any new trades.","1654721858":"Upload anyway","1655627840":"UPPER CASE","1656155124":"Resend in <0 /> seconds","1658954996":"Plant and Machine Operators and Assemblers","1659074761":"Reset Put","1664508280":"Add your DMT5 {{account_type}} account under Deriv (BVI) Ltd, regulated by the British Virgin Islands Financial Services Commission (License no. SIBA/{{line_break}}L/18/1114).","1665272539":"Remember: You cannot log in to your account until the selected date.","1665738338":"Balance","1665756261":"Go to live chat","1667395210":"Your proof of identity was submitted successfully","1668138872":"Modify account settings","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.","1677027187":"Forex","1677990284":"My apps","1682409128":"Untitled Strategy","1682636566":"Resend email in","1683963454":"Your contract will be closed automatically at the next available asset price on {{date}} at {{timestamp}}.","1684148009":"Total assets in your Deriv and {{platform_name_mt5}} real accounts.","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.","1689738742":"Gold Index","1691335819":"To continue trading with us, please confirm who you are.","1691765860":"- Negation","1693614409":"Start time","1694331708":"You can switch between CFDs, digital options, and multipliers at any time.","1694517345":"Enter a new email address","1695807119":"Could not load Google Drive blocks","1700233813":"Transfer from {{selected_value}} is not allowed, Please choose another account from dropdown","1708413635":"For your {{currency_name}} ({{currency}}) account","1709859601":"Exit Spot Time","1711013665":"Anticipated account turnover","1711676335":"square root","1711929663":"Your funds have been transferred","1712357617":"Invalid email address.","1715011380":"Jump 25 Index","1715630945":"Returns the total profit in string format","1719248689":"EUR/GBP/USD","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","1722401148":"The amount that you may add to your stake after each successful trade.","1723398114":"A recent utility bill (e.g. electricity, water, gas, phone or internet)","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.","1724696797":"You are limited to one fiat account only.","1726472773":"Function with no return value","1726565314":"Close my account","1727681395":"Total assets in your Deriv and {{platform_name_mt5}} demo accounts.","1728121741":"Transactions.csv","1728183781":"About Tether","1729145421":"Risk warning","1731747596":"The block(s) highlighted in red are missing input values. Please update them and click \"Run bot\".","1732891201":"Sell price","1734185104":"Balance: %1","1734264460":"Disclaimer","1736292549":"Update postal code","1737352280":"Bot.init is not called","1738681493":"Remove your glasses, if necessary","1739384082":"Unemployed","1739668049":"Close your account","1740371444":"Underlying market is not selected","1740843997":"Buy cryptocurrencies in an instant. Enjoy easy, quick, and secure exchanges using your local payment methods.","1742256256":"Please upload one of the following documents:","1743448290":"Payment agents","1743902050":"Complete your financial assessment","1745523557":"- Square root","1746051371":"Download the app","1746273643":"Moving Average Convergence Divergence","1747501260":"Sell conditions","1747523625":"Go back","1747674345":"Please use `.` as a decimal separator for fractional numbers.","1747682136":"Contract was cancelled.","1748754976":"Run","1749675724":"Deriv charges no commission across all account types.","1750065391":"Login time:","1753226544":"remove","1753975551":"Upload passport photo page","1756678453":"break out","1761038852":"Let’s continue with providing proofs of address and identity.","1761762171":"Restart last trade on error (bot ignores the unsuccessful trade): {{ checkbox }}","1762707297":"Phone number","1763123662":"Upload your NIMC slip.","1766993323":"Only letters, numbers, and underscores are allowed.","1767726621":"Choose agent","1768861315":"Minute","1768918213":"Only letters, space, hyphen, period, and apostrophe are allowed.","1769068935":"Choose any of these exchanges to buy cryptocurrencies:","1771037549":"Add a Deriv real account","1771592738":"Conditional block","1772532756":"Create and edit","1777847421":"This is a very common password","1778815073":"{{website_name}} is not affiliated with any Payment Agent. Customers deal with Payment Agents at their sole risk. Customers are advised to check the credentials of Payment Agents, and check the accuracy of any information about Payments Agents (on Deriv or elsewhere) before transferring funds.","1778893716":"Click here","1779519903":"Should be a valid number.","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","1783740125":"Upload your selfie","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.","1788966083":"01-07-1999","1789497185":"Make sure your passport details are clear to read, with no blur or glare","1790770969":"FX-majors (standard/micro lots), FX-minors, Commodities, Cryptocurrencies","1791432284":"Search for country","1791971912":"Recent","1793913365":"To deposit money, please switch to your {{currency_symbol}} account.","1794815502":"Download your transaction history.","1797866111":"Add your DMT5 {{account_type}} account under Deriv (SVG) LLC (company no. 273 LLC 2020).","1801093206":"Get candle list","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","1806355993":"No commission","1806503050":"Please note that some payment methods might not be available in your country.","1808058682":"Blocks are loaded successfully","1808393236":"Login","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","1811972349":"Market","1811973475":"Returns a specific character from a given string","1812582011":"Connecting to server","1813700208":"Boom 300 Index","1813958354":"Remove comment","1815034361":"alphabetic","1815995250":"Buying contract","1816126006":"Trade on Deriv MT5 ({{platform_name_dmt5}}), the all-in-one FX and CFD trading platform.","1817154864":"This block gives you a random number from within a set range.","1820242322":"e.g. United States","1820332333":"Top up","1823177196":"Most popular","1824193700":"This block gives you the last digit of the latest tick value.","1827607208":"File not uploaded.","1830520348":"{{platform_name_dxtrade}} Password","1833481689":"Unlock","1833499833":"Proof of identity documents upload failed","1837762008":"Please submit your proof of identity and proof of address to verify your account in your account settings to access the cashier.","1838639373":"Resources","1840865068":"set {{ variable }} to Simple Moving Average Array {{ dummy }}","1841788070":"Palladium/USD","1841996888":"Daily loss limit","1842266423":"back","1842862156":"Welcome to your Deriv X dashboard","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.","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","1846664364":"{{platform_name_dxtrade}}","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","1851951013":"Please switch to your demo account to run your DBot.","1854480511":"Cashier is locked","1855566768":"List item position","1858251701":"minute","1859308030":"Give feedback","1863053247":"Please upload your identity document.","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.","1869787212":"Even","1869851061":"Passwords","1870933427":"Crypto","1871196637":"True if the result of the last trade matches the selection","1871664426":"Note","1871804604":"Regulated by the British Virgin Islands Financial Services Commission (License no. SIBA/L/18/1114)","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.","1876325183":"Minutes","1877225775":"Your proof of address is verified","1877410120":"What you need to do now","1877832150":"# from end","1879042430":"Appropriateness Test, WARNING:","1879412976":"Profit amount: <0>{{profit}}","1880029566":"Australian Dollar","1880097605":"prompt for {{ string_or_number }} with message {{ input_text }}","1880875522":"Create \"get %1\"","1881018702":"hour","1881587673":"Total stake since you last cleared your stats.","1882825238":"Restart trading conditions","1883531976":"Clerks","1885708031":"#","1887852176":"Site is being updated","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.","1894667135":"Please verify your proof of address","1898670234":"{{formatted_opening_time}} (GMT) on {{opening_day}},<0> {{opening_date}}.","1902547203":"MetaTrader 5 MacOS app","1903437648":"Blurry photo detected","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.","1906639368":"If this is the first time you try to create a password, or you have forgotten your password, please reset it.","1907884620":"Add a real Deriv Gaming account","1908239019":"Make sure all of the document is in the photo","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.","1917523456":"This block sends a message to a Telegram channel. You will need to create your own Telegram bot to use this block.","1917804780":"You will lose access to your Options account when it gets closed, so be sure to withdraw all your funds. (If you have a CFDs account, you can also transfer the funds from your Options account to your CFDs account.)","1918633767":"Second line of address is not in a proper format.","1918796823":"Please enter a stop loss amount.","1919030163":"Tips to take a good selfie","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","1923431535":"“Stop loss” is deactivated and will only be available when “Deal cancellation” expires.","1924365090":"Maybe later","1924765698":"Place of birth*","1925090823":"Sorry, trading is unavailable in {{clients_country}}.","1927244779":"Use only the following special characters: . , ' : ; ( ) @ # / -","1928930389":"GBP/NOK","1929309951":"Employment Status","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.","1934302388":"We couldn’t verify your personal details with our records, to enable deposit, withdrawals and trading, you need to upload proof of your address.","1939902659":"Signal","1940408545":"Delete this token","1941915555":"Try later","1942091675":"Cryptocurrency trading is not available for clients residing in the United Kingdom.","1943440862":"Calculates Bollinger Bands (BB) list from a list with a period","1944204227":"This block returns current account balance.","1947527527":"1. This link was sent by you","1948092185":"GBP/CAD","1949719666":"Here are the possible reasons:","1950413928":"Submit identity documents","1952580688":"Submit passport photo page","1955219734":"Town/City*","1957759876":"Upload identity document","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","1964097111":"USD","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","1971898712":"Add or manage account","1973536221":"You have no open positions yet.","1973564194":"You are limited to one fiat account. You won’t be able to change your account currency if you have already made your first deposit or created a real {{dmt5_label}} or {{platform_name_dxtrade}} account.","1974273865":"This scope will allow third-party apps to view your account activity, settings, limits, balance sheets, trade purchase history, and more.","1978130174":"Jurisdiction for your DMT5 CFDs account","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}}.","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.","1983387308":"Preview","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.","1986498784":"BTC/LTC","1987080350":"Demo","1987447369":"Your cashier is locked","1988153223":"Email address","1988302483":"Take profit:","1988601220":"Duration value","1990735316":"Rise Equals","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.","1998199587":"You can also exclude yourself entirely for a specified duration. If, at any time, you decide to trade again, you must then contact our Customer Support to remove this self-exclusion. There will be a 24-hour-cooling-off period before you can resume trading. ","2001222130":"Check your spam or junk folder. If it's not there, try resending the email.","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","2007092908":"Trade with leverage and low spreads for better returns on successful trades.","2008809853":"Please proceed to withdraw your funds before 30 November 2021.","2009620100":"DBot will not proceed with any new trades. Any ongoing trades will be completed by our system. Any unsaved changes will be lost.<0>Note: Please check your statement to view completed transactions.","2009770416":"Address:","2010759971":"Uploads successful","2010866561":"Returns the total profit/loss","2011609940":"Please input number greater than 0","2011808755":"Purchase Time","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.","2020545256":"Close your account?","2021037737":"Please update your details to continue.","2023659183":"Student","2023762268":"I prefer another trading website.","2024107855":"{{payment_agent}} agent contact details:","2025339348":"Move away from direct light — no glare","2027625329":"Simple Moving Average Array (SMAA)","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}}","2037481040":"Choose a way to fund your account","2037665157":"Expand All Blocks","2037906477":"get sub-list from #","2042050260":"- Purchase price: the purchase price (stake) of the contract","2042778835":"This complaints policy, which may change from time to time, applies to your account registered with {{legal_entity_name}}.","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","2048110615":"Email address*","2048134463":"File size exceeded.","2050080992":"Tron","2050170533":"Tick list","2051558666":"View transaction history","2053617863":"Please proceed to withdraw all your funds from your account.","2054889300":"Create \"%1\"","2055317803":"Copy the link to your mobile browser","2057082550":"Accept our updated <0>terms and conditions","2057419639":"Exit Spot","2058978040":"Your {{platform_name_dxtrade}} password is for logging in to your {{platform_name_dxtrade}} accounts on the web and mobile apps.","2060873863":"Your order {{order_id}} is complete","2062912059":"function {{ function_name }} {{ function_params }}","2063655921":"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.","2063812316":"Text Statement","2063890788":"Cancelled","2065278286":"Spread","2067903936":"Driving licence","2070002739":"Don’t accept","2070752475":"Regulatory Information","2074235904":"Last name is required.","2074497711":"The Telegram notification could not be sent","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}}","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.","2084925123":"Use our fiat onramp services to buy and deposit cryptocurrency into your Deriv account.","2085387371":"Must be numbers, letters, and special characters . , ' -","2085602195":"- Entry value: the value of the first tick of the contract","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","2089299875":"Total assets in your Deriv real accounts.","2089581483":"Expires on","2091671594":"Status","2093167705":"You can only make deposits. Please contact us via live chat for more information.","2093675079":"- Close: the closing price","2096014107":"Apply","2096456845":"Date of birth*","2097170986":"About Tether (Omni)","2097381850":"Calculates Simple Moving Average line from a list with a period","2100713124":"account","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","2104397115":"Please go to your account settings and complete your personal details to enable deposits and withdrawals.","2107381257":"Scheduled cashier system maintenance","2109208876":"Manage {{platform}} Demo {{account_title}} account password","2109312805":"The spread is the difference between the buy price and sell price. A variable spread means that the spread is constantly changing, depending on market conditions. A fixed spread remains constant but is subject to alteration, at the Broker's absolute discretion.","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","2115007481":"Total assets in your Deriv demo accounts.","2115223095":"Loss","2117073379":"Our cryptocurrency cashier is temporarily down due to system maintenance. You can access the Cashier in a few minutes when the maintenance is complete.","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","2118315870":"Where do you live?","2119449126":"Example output of the below example will be:","2120617758":"Set up your trade","2121227568":"NEO/USD","2127564856":"Withdrawals are locked","2131963005":"Please withdraw your funds from the following Deriv MT5 account(s):","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","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","2141873796":"Get more info on <0>CFDs, <1>multipliers, and <2>options.","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","2146892766":"Binary options 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","-1497654315":"Our accounts and services are unavailable for the Jersey postal code.","-755626951":"Complete your address details","-1024240099":"Address","-584911871":"Select wallet currency","-1461267236":"Please choose your currency","-1352330125":"CURRENCY","-1027595143":"Less than $25,000","-40491332":"$25,000 - $50,000","-1139806939":"$50,001 - $100,000","-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","-654781670":"Primary","-1717373258":"Secondary","-996132458":"Construction","-915003867":"Health","-1430012453":"Information & Communications Technology","-987824916":"Science & Engineering","-146630682":"Social & Cultural","-761306973":"Manufacturing","-739367071":"Employed","-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","-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","-2137323480":"Company Ownership","-1590574533":"Divorce Settlement","-1667683002":"Inheritance","-1237843731":"Investment Income","-777506574":"Sale of Property","-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.","-1356204661":"This Tax Identification Number (TIN) is invalid. You may continue with account creation, but to facilitate future payment processes, valid tax information will be required.","-1823540512":"Personal details","-1227878799":"Speculative","-1174064217":"Mr","-855506127":"Ms","-621555159":"Identity information","-204765990":"Terms of use","-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","-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","-189310067":"Account closed","-773766766":"Email and passwords","-1466827732":"Self exclusion","-1498206510":"Account limits","-241588481":"Login history","-966136867":"Connected apps","-213009361":"Two-factor authentication","-1214803297":"Dashboard-only path","-526636259":"Error 404","-1030759620":"Government Officers","-612752984":"These are default limits that we apply to your accounts.","-1598263601":"To learn more about trading limits and how they apply, please go to the <0>Help Centre.","-1411635770":"Learn more about account limits","-1340125291":"Done","-1786659798":"Trading limits - Item","-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.","-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.","-1359847094":"Trading limits - Maximum daily turnover","-1502578110":"Your account is fully authenticated and your withdrawal limits have been lifted.","-854023608":"To increase limit please verify your identity","-1500958859":"Verify","-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.","-190838815":"We need this for verification. If the information you provide is fake or inaccurate, you won’t be able to deposit and withdraw.","-223216785":"Second line of address*","-594456225":"Second line of address","-1315410953":"State/Province","-1940457555":"Postal/ZIP Code*","-1964954030":"Postal/ZIP Code","-1541554430":"Next","-71696502":"Previous","-516397235":"Be careful who you share this token with. Anyone with this token can perform the following actions on your account behalf","-989216986":"Add accounts","-684271315":"OK","-617480265":"Delete token","-316749685":"Are you sure you want to delete this token?","-786372363":"Learn more about API token","-55560916":"To access our mobile apps and other third-party apps, you'll first need to generate an API token.","-198329198":"API Token","-955038366":"Copy this token","-1668692965":"Hide this token","-1661284324":"Show this token","-605778668":"Never","-32386760":"Name","-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.","-1076138910":"Trade","-1666909852":"Payments","-5605257":"This scope will allow third-party apps to withdraw to payment agents and make inter-account transfers for you.","-488597603":"Trading information","-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. ","-1117963487":"Name your token and click on 'Create' to generate your token.","-2005211699":"Create","-2115275974":"CFDs","-988523882":"DMT5","-460645791":"You are limited to one fiat account. You won’t be able to change your account currency if you have already made your first deposit or created a real {{dmt5_label}} account.","-1146960797":"Fiat currencies","-1959484303":"Cryptocurrencies","-561724665":"You are limited to one fiat currency only","-2087317410":"Oops, something went wrong.","-1437206131":"JPEG JPG PNG PDF GIF","-820458471":"1 - 6 months old","-155705811":"A clear colour photo or scanned image","-587941902":"Issued under your name with your current address","-438669274":"JPEG JPG PNG PDF GIF","-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","-601903492":"Forex trading experience","-1012699451":"CFD trading experience","-1437017790":"Financial information","-39038029":"Trading experience","-1044962593":"Upload Document","-164448351":"Show less","-1361653502":"Show more","-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","-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.","-1120954663":"First name*","-1659980292":"First name","-1857534296":"John","-1485480657":"Other details","-1315571766":"Place of birth","-2040322967":"Citizenship","-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","-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.","-1387062433":"Account opening reason","-1451334536":"Continue trading","-1525879032":"Your documents for proof of address is expired. 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.","-231863107":"No","-1176889260":"Please select a document type.","-1515286538":"Please enter your document number. ","-1785463422":"Verify your identity","-78467788":"Please select the document type and enter the ID number.","-1117345066":"Choose the document type","-651192353":"Sample:","-1263033978":"Please ensure all your personal details are the same as in your chosen document. If you wish to update your personal details, go to account settings.","-937707753":"Go Back","-1926456107":"The ID you submitted is expired.","-555047589":"It looks like your identity document has expired. Please try again with a valid document.","-841187054":"Try Again","-2097808873":"We were unable to verify your ID with the details you provided. ","-228284848":"We were unable to verify your ID with the details you provided.","-1443800801":"Your ID number was submitted successfully","-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","-1874113454":"Please check and resubmit or choose a different document type.","-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:","-246893488":"JPEG, JPG, PNG, PDF, or GIF","-1454880310":"Must be valid for at least 6 months","-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","-839094775":"Back","-337979330":"We could not verify your proof of identity","-706528101":"As a precaution, we have disabled trading, deposits and withdrawals for this account. If you have any questions, please go to our Help Center.<0>Help Centre.","-856213726":"You must also submit a proof of address.","-1389323399":"You should enter {{min_number}}-{{max_number}} characters.","-1313806160":"Please request a new password and check your email for the new token.","-329713179":"Ok","-1598167506":"Success","-1077809489":"You have a new {{platform}} password to log in to your {{platform}} accounts on the web and mobile apps.","-2068479232":"{{platform}} password","-1332137219":"Strong passwords contain at least 8 characters that include uppercase and lowercase letters, numbers, and symbols.","-1597186502":"Reset {{platform}} password","-848721396":"These trading limits are optional, and you can strengthen them at any time. If you don’t wish to set a specific limit, leave the field blank. If you live in the United Kingdom, Customer Support can only remove or weaken your trading limits after 24 hours of receiving the request. If you live in the Isle of Man, Customer Support can only remove or weaken your trading limits after your trading limit period has expired.","-469096390":"These trading limits are optional, and you can strengthen them at any time. If you don’t wish to set a specific limit, leave the field blank. Customer Support can only remove or weaken your trading limits after 24 hours of receiving the request.","-42808954":"You can also exclude yourself entirely for a specified duration. This can only be removed once your self-exclusion has expired. If you wish to continue trading once your self-exclusion period expires, you must contact Customer Support by calling <0>+447723580049 to lift this self-exclusion. Requests by chat or email shall not be entertained. There will be a 24-hour cooling-off period before you can resume trading.","-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.","-1702324712":"These limits are optional, and you can adjust them at any time. You decide how much and how long you’d like to trade. If you don’t wish to set a specific limit, leave the field blank.","-1819875658":"You can also exclude yourself entirely for a specified duration. Once the self-exclusion period has ended, you can either extend it further or resume trading immediately. If you wish to reduce or remove the self-exclusion period, contact our <0>Customer Support.","-1031814119":"About trading limits and self-exclusion","-183468698":"Trading limits and self-exclusion","-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","-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.","-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).","-976364600":"Please click on the link in the email to change your DMT5 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.","-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.","-1166068675":"Your account will be opened with {{legal_entity_name}}, regulated by the UK Gaming Commission (UKGC), and will be subject to the laws of the Isle of Man.","-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.","-680528873":"Your account will be opened with {{legal_entity_name}} and will be subject to the laws of Samoa.","-1125193491":"Add account","-2068229627":"I am not a PEP, and I have not been a PEP in the last 12 months.","-428335668":"You will need to set a password to complete the process.","-1850792730":"Unlink from {{identifier_title}}","-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","-2145244263":"This field is required","-70342544":"We’re legally obliged to ask for your financial information.","-1894668798":"Other trading instruments experience","-1026468600":"Other trading instruments frequency","-179005984":"Save","-789291456":"Tax residence*","-1651554702":"Only alphabet is allowed","-1458676679":"You should enter 2-50 characters.","-1166111912":"Use only the following special characters: {{ permitted_characters }}","-884768257":"You should enter 0-35 characters.","-2113555886":"Only letters, numbers, space, and hyphen are allowed.","-874280157":"This Tax Identification Number (TIN) is invalid. You may continue using it, but to facilitate future payment processes, valid tax information will be required.","-1037916704":"Miss","-1113902570":"Details","-634958629":"We use the information you give us only for verification purposes. All information is kept confidential.","-731992635":"Title*","-352888977":"Title","-136976514":"Country of residence*","-945104751":"We’re legally obliged to ask for your tax information.","-1702919018":"Second line of address (optional)","-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","-2121071263":"Check this box to receive updates via email.","-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)","-1923892687":"Please withdraw your funds from the following Deriv X account(s):","-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.","-9323953":"Remaining characters: {{remaining_characters}}","-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","-1219849101":"Please select at least one reason","-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","-536187647":"Confirm revoke access?","-1357606534":"Permission","-570222048":"Revoke access","-506510414":"Date and time","-1708927037":"IP address","-365847515":"Apps you can use with your Deriv login:","-26491905":"You're using your {{identifier_title}} account to log in to your Deriv account. To change your login method into using a username and password, click the <0>Unlink button.","-596920538":"Unlink","-1319725774":"DMT5 Password","-1403020742":"Your DMT5 password is for logging in to your Deriv MT5 accounts on the desktop, web, and mobile apps.","-412891493":"Disable 2FA","-200487676":"Enable","-1840392236":"That's not the right code. Please try again.","-307075478":"6 digit 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.","-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:","-752939584":"How to set up 2FA for your Deriv account","-90649785":"Click here to copy key","-206376148":"Key copied!","-650175948":"A recent bank statement or government-issued letter with your name and address.","-2006895756":"1. Address","-716361389":"An accurate and complete address helps to speed up your verification process.","-890084320":"Save and submit","-902076926":"Before uploading your document, please ensure that your personal details are updated to match your proof of identity. This will help to avoid delays during the verification process.","-1517325716":"Deposit via the following payment methods:","-1547606079":"We accept the following cryptocurrencies:","-42592103":"Deposit cryptocurrencies","-639677539":"Buy cryptocurrencies","-1560098002":"Buy cryptocurrencies via fiat onramp","-541870313":"Deposit via payment agents","-72314872":"Deposit in your local currency via peer-to-peer exchange with fellow traders in your country.","-58126117":"Your simple access to crypto. Fast and secure way to exchange and purchase cryptocurrencies. 24/7 live chat support.","-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.","-2021135479":"This field is required.","-1975494965":"Cashier","-1870909526":"Our server cannot retrieve an address.","-582721696":"The current allowed withdraw amount is {{format_min_withdraw_amount}} to {{format_max_withdraw_amount}} {{currency}}","-1957498244":"more","-197251450":"Don't want to trade in {{currency_code}}? You can open another cryptocurrency account.","-1900848111":"This is your {{currency_code}} account.","-749765720":"Your fiat account currency is set to {{currency_code}}.","-803546115":"Manage your accounts ","-1463156905":"Learn more about payment methods","-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.","-89973258":"Resend email in {{seconds}}s","-1059419768":"Notes","-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.","-993393818":"Binance Smart Chain","-561858764":"Polygon (Matic)","-410890127":"Ethereum (ERC20)","-1059526741":"Ethereum (ETH)","-1615615253":"We do not support Tron, to deposit please use only Ethereum ({{token}}).","-1831000957":"Please select the network from where your deposit will come from.","-314177745":"Unfortunately, we couldn't get the address since our server was down. Please click Refresh to reload the address or try again later.","-1345040662":"Looking for a way to buy cryptocurrency?","-759000391":"We were unable to verify your information automatically. To enable this function, you must complete the following:","-1638172550":"To enable this feature you must complete the following:","-1632668764":"I accept","-666905139":"Deposits are locked","-316545835":"Please ensure <0>all details are <0>correct before making your transfer.","-1309258714":"From account number","-1247676678":"To account number","-816476007":"Account holder name","-1995606668":"Amount","-344403983":"Description","-922432739":"Please enter a valid client login ID.","-1024241603":"Insufficient balance.","-1979554765":"Please enter a valid description.","-1186807402":"Transfer","-1254233806":"You've transferred","-1179992129":"All payment agents","-1137412124":"Can’t find a suitable payment method for your country? Then try a payment agent.","-460879294":"You're not done yet. To receive the transferred funds, you must contact the payment agent for further instruction. A summary of this transaction has been emailed to you for your records.","-596416199":"By name","-1169636644":"By payment agent ID","-118683067":"Withdrawal limits: <0 />-<1 />","-1201279468":"To withdraw your funds, please choose the same payment method you used to make your deposits.","-1787304306":"Deriv P2P","-1321645628":"Your cashier is currently locked. Please contact us via live chat to find out how to unlock it.","-60779216":"Withdrawals are temporarily unavailable due to system maintenance. You can make your withdrawals when the maintenance is complete.","-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. ","-1158467524":"Your account is temporarily disabled. Please contact us via live chat to enable deposits and withdrawals again.","-929148387":"Please set your account currency to enable deposits and withdrawals.","-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.","-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.","-378858101":"Your <0>personal details are incomplete. Please go to your account settings and complete your personal details to enable deposits.","-1037495888":"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 live chat.","-949074612":"Please contact us via live chat.","-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.","-127614820":"Unfortunately, you can only make deposits. Please contact us via 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","-190084602":"Transaction","-811190405":"Time","-1332236294":"Please verify your identity","-1675848843":"Error","-283017497":"Retry","-203002433":"Deposit now","-720315013":"You have no funds in your {{currency}} account","-2052373215":"Please make a deposit to use this feature.","-299033842":"Recent transactions","-348296830":"{{transaction_type}} {{currency}}","-1929538515":"{{amount}} {{currency}} on {{submit_date}}","-1534990259":"Transaction hash:","-1612346919":"View all","-949073402":"I confirm that I have verified the client’s transfer information.","-1752211105":"Transfer now","-1272778997":"We've sent you an email.","-2013448791":"Want to exchange between e-wallet currencies? Try <0>Ewallet.Exchange","-2061807537":"Something’s not right","-1068036170":"We do not charge a transfer fee for transfers in the same currency between your Deriv fiat and {{platform_name_mt5}} 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.","-401630542":"We’ll charge a 2% transfer fee or {{minimum_fee}} {{currency}}, whichever is higher, for transfers between your Deriv cryptocurrency and DMT5 accounts and between your Deriv cryptocurrency 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.","-1221972195":"DMT5 accounts","-1344870129":"Deriv accounts","-1156059326":"You have {{number}} transfer remaining for today.","-1593609508":"Transfer between your accounts in Deriv","-464965808":"Transfer limits: <0 /> - <1 />","-553249337":"Transfers are locked","-1157701227":"You need at least two accounts","-417711545":"Create account","-1232852916":"We’re switching over to your {{currency}} account to view the transaction.","-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","-2004264970":"Your wallet address should have 25 to 64 characters.","-1707299138":"Your {{currency_symbol}} wallet address","-38063175":"{{account_text}} wallet","-1474202916":"Make a new withdrawal","-705272444":"Upload a proof of identity to verify your identity","-2024958619":"This is to protect your account from unauthorised withdrawals.","-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.","-113940416":"Current stake:","-1999539705":"Deal cancel. fee:","-447037544":"Buy price:","-1342699195":"Total profit/loss:","-1511825574":"Profit/Loss:","-726626679":"Potential profit/loss:","-338379841":"Indicative price:","-1525144993":"Payout limit:","-1167474366":"Tick ","-555886064":"Won","-529060972":"Lost","-571642000":"Day","-155989831":"Decrement value","-1192773792":"Don't show this again","-1769852749":"N/A","-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.","-1940333322":"DBot is not available for this account","-1210387519":"Go to DMT5 dashboard","-1223145005":"Loss amount: {{profit}}","-1062922595":"Reference ID (buy)","-2068574600":"Reference ID (sell)","-994038153":"Start Time","-1979852400":"Entry Spot","-427802309":"Profit/Loss","-668558002":"Journal.csv","-746652890":"Notifications","-824109891":"System","-507620484":"Unsaved","-764102808":"Google Drive","-1109191651":"Must be a number higher than 0","-1917772100":"Invalid number format","-1553945114":"Value must be higher than 2","-689786738":"Minimum duration: {{ min }}","-184183432":"Maximum duration: {{ max }}","-749186458":"Account switching is disabled while your bot is running. Please stop your bot before switching accounts.","-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.","-597939268":"Keep my contract","-1322453991":"You need to log in to run the bot.","-1483938124":"This strategy is currently not compatible with DBot.","-236548954":"Contract Update Error","-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","-2046396241":"This block is mandatory. Only one copy of this block is allowed. It is added to the canvas by default when you open DBot.","-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","-70949308":"4. Come back to DBot and add the Notify Telegram block to the workspace. Paste the Telegram API token and chat ID into the block fields accordingly.","-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","-984140537":"Add","-786915692":"You are connected to Google Drive","-1150107517":"Connect","-1759213415":"Find out how this app handles your data by reviewing Deriv's <0>Privacy policy, which is part of Deriv's <1>Terms and conditions.","-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","-1016171176":"Asset","-621128676":"Trade type","-671128668":"The amount that you pay to enter a trade.","-447853970":"Loss threshold","-410856998":"The bot will stop trading if your total profit exceeds this amount.","-1823621139":"Quick Strategy","-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","-224804428":"Transactions","-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.","-305283152":"Strategy name","-1003476709":"Save as collection","-636521735":"Save strategy","-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","-1696412885":"Import","-250192612":"Sort","-1566369363":"Zoom out","-2060170461":"Load","-1200116647":"Click here to start building your DBot.","-1040972299":"Purchase contract","-600546154":"Sell contract (optional)","-985351204":"Trade again","-112876186":"Analysis","-1769584466":"Stats","-1133736197":"Utility","-1682372359":"Text","-907562847":"Lists","-1646497683":"Loops","-251326965":"Miscellaneous","-1285759343":"Search","-1058262694":"Stopping the bot will prevent further trades. Any ongoing trades will be completed by our system.","-1473283434":"Please be aware that some completed transactions may not be displayed in the transaction table if the bot is stopped while placing trades.","-397015538":"You may refer to the statement page for details of all completed transactions.","-1442034178":"Contract bought","-2020280751":"Bot is stopping","-1436403979":"Contract closed","-1711732508":"Reference IDs","-386141434":"(Buy)","-482272687":"(Sell)","-1983189496":"ticks","-694277729":"(High)","-2028564707":"(Low)","-627895223":"Exit spot","-596238067":"Entry/Exit spot","-558594655":"The bot is not running","-478946875":"The stats are cleared","-9461328":"Security and privacy","-563774117":"Dashboard","-418247251":"Download your journal.","-870004399":"<0>Bought: {{longcode}} (ID: {{transaction_id}})","-1211474415":"Filters","-186972150":"There are no messages to display","-999254545":"All messages are filtered out","-686334932":"Build a bot from the start menu then hit the run button to run the bot.","-1717650468":"Online","-1825471709":"A whole new trading experience on a powerful yet easy to use platform.","-981017278":"Automated trading at your fingertips. No coding needed.","-398198412":"Trade on Deriv MT5 (DMT5), the all-in-one FX and CFD trading platform.","-1793883644":"Trade FX and CFDs on a customisable, easy-to-use trading platform.","-1309011360":"Open positions","-883103549":"Account deactivated","-821418875":"Trader","-679102561":"Contract Details","-430118939":"Complaints policy","-744999940":"Deriv account","-568280383":"Deriv Gaming","-1936757551":"Deriv Synthetic","-1546927062":"Deriv Financial","-895331276":"Complete your proof of address","-782679300":"Complete your proof of identity","-1019903756":"Synthetic","-1548220954":"Synthetic SVG","-328128497":"Financial","-533935232":"Financial BVI","-565431857":"Financial Labuan","-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","-700966800":"Dutch Index","-1863229260":"Australian Index","-946336619":"Wall Street Index","-945048133":"French Index","-1093355162":"UK Index","-932734062":"Hong Kong Index","-2030624691":"Japanese Index","-354063409":"US Index","-232855849":"Euro 50 Index","-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","-764111252":"Volatility 100 (1s) Index","-1374309449":"Volatility 200 (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","-841561409":"Put Spread","-144803045":"Only numbers and these special characters are allowed: {{permitted_characters}}","-1450516268":"Only letters, numbers, space, hyphen, period, and apostrophe are allowed.","-1072358250":"Letters, spaces, periods, hyphens, apostrophes only","-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","-681468758":"Your web browser is out of date and may affect your trading experience. Please <0>update your browser.","-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","-540474806":"Your Options account is scheduled to be closed","-618539786":"Your account is scheduled to be closed","-945275490":"Withdraw all funds from your Options account.","-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.","-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","-1751632759":"Get a faster mobile trading experience with the <0>{{platform_name_go}} app!","-1164554246":"You submitted expired identification documents","-219846634":"Let’s verify your ID","-529038107":"Install","-1738575826":"Please switch to your real account or create one to access the cashier.","-1329329028":"You’ve not set your 30-day turnover limit","-132893998":"Your access to the cashier has been temporarily disabled as you have not set your 30-day turnover limit. Please go to Self-exclusion and set the limit.","-1852207910":"MT5 withdrawal disabled","-764323310":"MT5 withdrawals have been disabled on your account. Please check your email for more details.","-1435762703":"Please Verify your identity","-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.","-1125797291":"Password updated.","-157145612":"Please log in with your updated password.","-87177461":"Please go to your account settings and complete your personal details to enable deposits.","-904632610":"Reset your balance","-470018967":"Reset balance","-156611181":"Please complete the financial assessment in your account settings to unlock it.","-1925176811":"Unable to process withdrawals in the moment","-980696193":"Withdrawals are temporarily unavailable due to system maintenance. You can make withdrawals when the maintenance is complete.","-1647226944":"Unable to process deposit in the moment","-488032975":"Deposits are temporarily unavailable due to system maintenance. You can make deposits when the maintenance is complete.","-67021419":"Our cashier is temporarily down due to system maintenance. You can access the cashier in a few minutes when the maintenance is complete.","-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.","-2087822170":"You are offline","-1669693571":"Check your connection.","-1998049070":"If you agree to our use of cookies, click on Accept. For more information, <0>see our policy.","-402093392":"Add Deriv Account","-277547429":"A Deriv account will allow you to fund (and withdraw from) your MT5 account(s).","-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","-583559763":"Menu","-2094580348":"Thanks for verifying your email","-1396326507":"Unfortunately, {{website_name}} is not available in your country.","-288996254":"Unavailable","-122970184":"Total assets in your Deriv and {{platform_name_dxtrade}} demo accounts.","-97270814":"Total assets in your Deriv and {{platform_name_dxtrade}} real accounts.","-1844355483":"{{platform_name_dxtrade}} Accounts","-1740162250":"Manage account","-1277942366":"Total assets","-1556699568":"Choose your citizenship","-1310654342":"As part of the changes in our product line-up, we will be closing Gaming accounts belonging to our UK clients.","-626152766":"As part of the changes in our product line-up, we are closing Options accounts belonging to our clients in Europe.","-490100162":"As part of the changes in our product line-up, we will be closing accounts belonging to our Isle of Man clients.","-1208958060":"You can no longer trade digital options on any of our platforms. You also can’t deposit funds into your account.<0/><1/>Any open positions on digital options have been closed with full payout.","-2050417883":"You’ll lose access to your Gaming account when it gets closed, so make sure to withdraw your funds as soon as possible.","-1950045402":"Withdraw all your funds","-168971942":"What this means for you","-905560792":"OK, I understand","-1308593541":"You will lose access to your account when it gets closed, so be sure to withdraw all your funds.","-2024365882":"Explore","-1197864059":"Create free demo account","-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","-259386249":"Add a Deriv Synthetic account","-241733171":"Add a Deriv Financial account","-1329687645":"Create a cryptocurrency account","-1429178373":"Create a new account","-1016775979":"Choose an account","-1369294608":"Already signed up?","-617844567":"An account with your details already exists.","-292363402":"Trading statistics report","-1656860130":"Options trading can become a real addiction, as can any other activity pushed to its limits. To avoid the danger of such an addiction, we provide a reality-check that gives you a summary of your trades and accounts on a regular basis.","-28080461":"Would like to check your statement first? <0>Check Statement","-611059051":"Please specify your preferred interval reality check in minutes:","-1876891031":"Currency","-11615110":"Turnover","-1370419052":"Profit / Loss","-437320982":"Session duration:","-3959715":"Current time:","-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","-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","-1917706589":"Your Deriv account is unlinked from {{social_identity_provider}}. Use your email and password for future log in.","-2017825013":"Got it","-505449293":"Enter a new password for your Deriv account.","-1787820992":"Platforms","-184713104":"Earn fixed payouts with options, or trade multipliers to amplify your gains with limited risk.","-1571775875":"Our flagship options and multipliers trading platform.","-1107320163":"Automate your trading, no coding needed.","-820028470":"Options & Multipliers","-895091803":"If you're looking for CFDs","-1447215751":"Not sure? Try this","-2338797":"<0>Maximise returns by <0>risking more than you put in.","-1682067341":"Earn <0>fixed returns by <0>risking only what you put in.","-1744351732":"Not sure where to start?","-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}}.","-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","-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.","-175369516":"Welcome to Deriv X","-1667427537":"Run Deriv X on your browser or download the mobile app","-305915794":"Run MT5 from your browser or download the MT5 app for your devices","-404375367":"Trade forex, basket indices, commodities, and cryptocurrencies with high leverage.","-811331160":"Trade CFDs on forex, stocks, stock indices, synthetic indices, and commodities with leverage.","-781132577":"Leverage","-1264604378":"Up to 1:1000","-637908996":"100%","-1420548257":"20+","-1373949478":"50+","-1686150678":"Up to 1:100","-1382029900":"70+","-1493055298":"90+","-1056874273":"25+ assets: synthetics","-223956356":"Leverage up to 1:1000","-1340877988":"Registered with the Financial Commission","-879901180":"170+ assets: forex (standard/micro), stocks, stock indices, commodities, basket indices, and cryptocurrencies","-1020615994":"Better spreads","-1789823174":"Regulated by the Vanuatu Financial Services Commission","-1040269115":"30+ assets: forex and commodities","-1372141447":"Straight-through processing","-318390366":"Regulated by the Labuan Financial Services Authority (Licence no. MB/18/0024)","-1556783479":"80+ assets: forex and cryptocurrencies","-875019707":"Leverage up to 1:100","-1752249490":"Malta Financial","-2068980956":"Leverage up to 1:30","-2098459063":"British Virgin Islands","-2050821902":"Demo Synthetic","-1434036215":"Demo Financial","-1416247163":"Financial STP","-1882063886":"Demo CFDs","-1347908717":"Demo Financial SVG","-785625598":"Use these credentials to log in to your {{platform}} account on the website and mobile apps.","-997127433":"Change Password","-162753510":"Add real account","-860609405":"Password","-742647506":"Fund transfer","-1874242353":"Fund top up","-1580554423":"Trade CFDs on our synthetic indices that simulate real-world market movements.","-712681566":"Peer-to-peer exchange","-1267880283":"{{field_name}} is required","-2084509650":"{{field_name}} is not properly formatted.","-1779241732":"First line of address is not in a proper format.","-188222339":"This should not exceed {{max_number}} characters.","-1673422138":"State/Province is not in a proper format.","-1385484963":"Confirm to change your {{platform}} password","-1990902270":"This will change the password to all of your {{platform}} accounts.","-1357917360":"Web terminal","-1454896285":"The MT5 desktop app is not supported by Windows XP, Windows 2003, and Windows Vista.","-673424733":"Demo account","-1066565281":"Server maintenance starts at 06:00 GMT every Sunday and may last up to 2 hours. Service may be disrupted during this time.","-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.","-1199152768":"Please explore our other platforms.","-205020823":"Explore {{platform_name_trader}}","-1982499699":"Explore {{platform_name_dbot}}","-1567989247":"Submit your proof of identity and address","-464262734":"Manage {{platform}} Real {{account_title}} account password","-184453418":"Enter your {{platform}} password","-1769158315":"real","-700260448":"demo","-1175356567":"Congratulations, you have successfully created your {{category}} <0>{{platform}} <1>{{type}} account. To start trading, transfer funds from your Deriv account into this account.","-1570793523":"Congratulations, you have successfully created your {{category}} <0>{{platform}} <1>{{type}} account.","-790488576":"Forgot password?","-1190393389":"Enter your {{platform}} password to add a {{platform}} {{account}} account.","-2057918502":"Hint: You may have entered your Deriv password, which is different from your {{platform}} password.","-1928229820":"Reset Deriv X investor password","-1917043724":"Reset DMT5 investor password","-1087845020":"main","-1950683866":"investor","-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","-490244964":"Forex, stocks, stock indices, cryptocurrencies","-1368041210":", synthetic indices","-877064208":"EUR","-1302404116":"Maximum leverage","-1284221303":"You’ll get a warning, known as margin call, if your account balance drops down close to the stop out level.","-1848799829":"To understand stop out, first you need to learn about margin level, which is the ratio of your equity (the total balance you would have if you close all your positions at that point) to the margin you're using at the moment. If your margin level drops below our stop out level, your positions may be closed automatically to protect you from further losses.","-224051432":"24/7","-511301450":"Indicates the availability of cryptocurrency trading on a particular account.","-1591882610":"Synthetics","-70716111":"FX-majors (standard/micro lots), FX-minors, basket indices, commodities, cryptocurrencies, and stocks and stock indices","-1041629137":"FX-majors, FX-minors, FX-exotics, and cryptocurrencies","-287097947":"FX-majors (standard/micro lots), FX-minors, Commodities, Cryptocurrencies (except UK)","-2102641225":"At bank rollover, liquidity in the forex markets is reduced and may increase the spread and processing time for client orders. This happens around 21:00 GMT during daylight saving time, and 22:00 GMT non-daylight saving time.","-495364248":"Margin call and stop out level will change from time to time based on market condition.","-536189739":"To protect your portfolio from adverse market movements due to the market opening gap, we reserve the right to decrease leverage on all offered symbols for financial accounts before market close and increase it again after market open. Please make sure that you have enough funds available in your {{platform}} account to support your positions at all times.","-1225160479":"Compare available accounts","-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","-1124208206":"Switch to your real account to create a DMT5 {{account_title}} {{type_title}} account.","-1576792859":"Proof of identity and address are required","-104382603":"Check your proof of address","-793684335":"Check your proof of identity","-1271218821":"Account added","-1422519943":"Add Your DMT5 {{account_type}} account under Deriv (V) Ltd, regulated by the Vanuatu Financial Services Commission.","-2032649678":"Add your DMT5 {{account_type}} STP account under Deriv (FX) Ltd regulated by Labuan Financial Services Authority (Licence no. MB/18/0024).","-801751276":"Add your DMT5 CFDs account under Deriv Investments (Europe) Limited regulated by the Malta Financial Services Authority (MFSA) (licence no. IS/70156).","-16048185":"To create this account first we need your proof of identity and address.","-1627989291":"To create this account first we need you to resubmit your proof of identity.","-1389025684":"To create this account first we need you to resubmit your proof of identity and address.","-1615750576":"You will be able to open this account once your submitted documents have been verified.","-352187285":"Choose a jurisdiction for your DMT5 {{account_type}} account","-1728185398":"Resubmit proof of address","-1961967032":"Resubmit proof of identity","-10956371":"You need a real account (fiat currency or cryptocurrency) in Deriv to create a real DMT5 account.","-1760596315":"Create a Deriv account","-705682181":"Malta","-194969520":"Counterparty company","-1131400885":"Deriv Investments (Europe) Limited","-409563066":"Regulator","-2073451889":"Malta Financial Services Authority (MFSA) (Licence no. IS/70156)","-362324454":"Commodities","-543177967":"Stock indices","-1089385344":"Deriv (SVG) LLC","-2019617323":"Deriv (BVI) Ltd","-112814932":"Deriv (FX) Ltd","-1747078152":"-","-1510474851":"British Virgin Islands Financial Services Commission (licence no. SIBA/L/18/1114)","-199154602":"Vanuatu Financial Services Commission","-761250329":"Labuan Financial Services Authority (Licence no. MB/18/0024)","-251202291":"Broker","-81650212":"MetaTrader 5 web","-2123571162":"Download","-941636117":"MetaTrader 5 Linux app","-2019704014":"Scan the QR code to download Deriv MT5.","-1324223697":"Use this password to log in to your DMT5 accounts on the desktop, web, and mobile apps.","-648956272":"Use this password to log in to your Deriv X accounts on the web and mobile apps.","-337314155":"Change {{platform}} password","-1814308691":"Please click on the link in the email to change your {{platform}} password.","-1282933308":"Not {{barrier}}","-968190634":"Equals {{barrier}}","-1747377543":"Under {{barrier}}","-337314714":"days","-442488432":"day","-1572548510":"Ups & Downs","-71301554":"Ins & Outs","-952298801":"Look Backs","-763273340":"Digits","-1790089996":"NEW!","-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.","-28115241":"{{platform_name_trader}} is not available for this account","-453920758":"Go to {{platform_name_mt5}} dashboard","-402175529":"History","-902712434":"Deal cancellation","-988484646":"Deal cancellation (executed)","-444882676":"Deal cancellation (active)","-13423018":"Reference ID","-1551639437":"No history","-1214703885":"You have yet to update either take profit or stop loss","-880722426":"Market is closed","-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","-439389714":"We’re working on it","-770929448":"Go to {{platform_name_smarttrader}}","-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.","-590131162":"Stay on {{website_domain}}","-1444663817":"Go to Binary.com","-1526466612":"You’ve selected a trade type that is currently unsupported, but we’re working on it.","-1043795232":"Recent positions","-1572796316":"Purchase price:","-153220091":"{{display_value}} Tick","-802374032":"Hour","-2039780875":"Purchase confirmation","-1672470173":"Require confirmation before purchasing a contract","-1342661765":"Lock contract purchase buttons","-939764287":"Charts","-1738427539":"Purchase","-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\".","-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.","-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.","-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.","-1281286610":"If you select \"Matches\", you will win the payout if the last digit of the last tick is the same as your prediction.","-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).","-1416078023":"If you select \"Touch\", you win the payout if the market touches the barrier at any time during the contract period.","-1272255095":"If the exit spot is equal to the barrier or the new barrier (if a reset occurs), you don't win the payout.","-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.","-299450697":"If you select \"High Tick\", you win the payout if the selected tick is the highest among the next five ticks.","-705681870":"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.","-420387848":"The high is the highest point ever reached by the market during the contract period.","-1666375348":"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.","-2024955268":"If you select “Up”, you will earn a profit by closing your position when the market price is higher than the entry spot.","-1598433845":"If you select “Down”, you will earn a profit by closing your position when the market price is lower than the entry spot.","-1092777202":"The Stop-out level on the chart indicates the price at which your potential loss equals your entire stake. When the market price reaches this level, your position will be closed automatically. This ensures that your loss does not exceed the amount you paid to purchase the contract.","-885323297":"These are optional parameters for each position that you open:","-584696680":"If you select “Take profit” and specify an amount that you’d like to earn, your position will be closed automatically when your profit is more than or equals to this amount. Your profit may be more than the amount you entered depending on the market price at closing.","-178096090":"“Take profit” cannot be updated. You may update it only when “Deal cancellation” expires.","-206909651":"The entry spot is the market price when your contract is processed by our servers.","-149836494":"Your transaction reference number is {{transaction_id}}","-1382749084":"Go back to trading","-1231210510":"Tick","-1239477911":"second","-1585766960":"min","-1652791614":"mins","-1977959027":"hours","-8998663":"Digit: {{last_digit}} ","-1435392215":"About deal cancellation","-1280319153":"Cancel your trade anytime within a chosen time-frame. Triggered automatically if your trade reaches the stop out level within the chosen time-frame.","-471757681":"Risk management","-976258774":"Not set","-843831637":"Stop loss","-771725194":"Deal Cancellation","-45873457":"NEW","-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","-741395299":"{{value}}","-1527492178":"Purchase Locked","-725375562":"You can lock/unlock the purchase button from the Settings menu","-1358367903":"Stake","-1513281069":"Barrier 2","-390994177":"Should be between {{min}} and {{max}}","-2055106024":"Toggle between advanced and simple duration settings","-1012793015":"End time","-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}})","-1043117679":"When your current loss equals or exceeds {{stop_out_percentage}}% of your stake, your contract will be closed at the nearest available asset price.","-477998532":"Your contract is closed automatically when your loss is more than or equals to this amount.","-243332856":"Last digit stats for latest 1000 ticks for {{ underlying_name }}","-339236213":"Multiplier","-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","-2004386410":"Win","-1072292603":"No Change","-1631669591":"string","-1768939692":"number","-795152863":"green","-1640576332":"blue","-804983649":"yellow","-94281841":"red","-1242470654":"Earned money","-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","-2035315547":"Low barrier","-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","-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","-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.","-1291088318":"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","-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 }}","-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","-1821552998":"trim spaces from {{ side }} of {{ input_text }}","-801766026":"right side","-474779821":"Trims spaces","-1219239717":"One or more mandatory blocks are missing from your workspace. Please add the required block(s) and then try again.","-250761331":"One or more mandatory blocks are disabled in your workspace. Please enable the required block(s) and then try again.","-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","-1723202824":"Please grant permission to view and manage Google Drive folders created with Binary Bot","-210953314":"There was an error retrieving data from Google Drive","-1521930919":"Select a Binary Bot strategy","-845301264":"There was an error listing files from Google Drive","-1452908801":"There was an error retrieving files from Google Drive","-232617824":"There was an error processing your request","-1800672151":"GBP Index","-1904030160":"Transaction performed by (App ID: {{app_id}})","-513103225":"Transaction time","-2066666313":"Credit/Debit","-2140412463":"Buy price","-1981004241":"Sell time","-600828210":"Indicative profit/loss","-706219815":"Indicative price","-3423966":"Take profit<0 />Stop loss","-2082644096":"Current stake","-538215347":"Net deposits","-280147477":"All transactions","-137444201":"Buy","-130601012":"Please select duration","-232254547":"Custom","-1577570698":"Start date","-1251526905":"Last 7 days","-360975483":"You've made no transactions of this type during this period.","-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","-2092611555":"Sorry, this app is unavailable in your current location.","-1488537825":"If you have an account, log in to continue.","-555592125":"Unfortunately, trading options isn't possible in your country","-1571816573":"Sorry, trading is unavailable in your current location.","-1714959941":"This chart display is not ideal for tick contracts","-1254554534":"Please change the chart duration to tick for a better trading experience.","-1603581277":"minutes","-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 f0a34afe46bb..683c8add33a5 100644 --- a/packages/translations/src/translations/ach.json +++ b/packages/translations/src/translations/ach.json @@ -3163,6 +3163,7 @@ "-311268215": "crwdns70560:0crwdne70560:0", "-1797602591": "crwdns170468:0{{ currency }}crwdnd170468:0{{ stop_loss }}crwdne170468:0", "-1214929127": "crwdns170470:0crwdne170470:0", + "-780745489": "crwdns1003450:0crwdne1003450:0", "-2142851225": "crwdns170472:0crwdne170472:0", "-625636913": "crwdns117222:0crwdne117222:0", "-1466383897": "crwdns157120:0{{ duration_unit }}crwdnd157120:0{{ duration_value }}crwdne157120:0", diff --git a/packages/translations/src/translations/es.json b/packages/translations/src/translations/es.json index bf28490ff13b..8c69b6d48504 100644 --- a/packages/translations/src/translations/es.json +++ b/packages/translations/src/translations/es.json @@ -3163,6 +3163,7 @@ "-311268215": "Este bloque convierte una cadena de texto que representa la fecha y la hora en segundos desde el Epoch Unix (1 de enero de 1970). El desplazamiento de hora y zona horaria es opcional. Ejemplo: 2019-01-01 21:03:45 GMT + 0800 se convertirá a 1546347825.", "-1797602591": "Stop Loss: {{ currency }} {{ stop_loss }}", "-1214929127": "El stop loss debe ser un número positivo.", + "-780745489": "If the contract type is “Both”, then the Purchase Conditions should include both Rise and Fall using the “Conditional Block\"", "-2142851225": "Opciones de operaciones con multiplicador", "-625636913": "El monto debe ser un número positivo.", "-1466383897": "Duración: {{ duration_unit }} {{ duration_value }}", diff --git a/packages/translations/src/translations/fr.json b/packages/translations/src/translations/fr.json index 14fb23faf4d3..7ef1b1a8a91a 100644 --- a/packages/translations/src/translations/fr.json +++ b/packages/translations/src/translations/fr.json @@ -3163,6 +3163,7 @@ "-311268215": "Ce bloc convertit une chaîne de texte qui représente la date et l'heure en secondes depuis l'époque Unix (1er janvier 1970). L'heure et le décalage du fuseau horaire sont facultatifs. Exemple: 2019-01-01 21:03:45 GMT + 0800 sera converti en 1546347825.", "-1797602591": "Stop Loss: {{ currency }} {{ stop_loss }}", "-1214929127": "Le Stop Loss doit être un nombre positif.", + "-780745489": "If the contract type is “Both”, then the Purchase Conditions should include both Rise and Fall using the “Conditional Block\"", "-2142851225": "Trade options avec Multiplicateur", "-625636913": "Le montant doit être un nombre positif.", "-1466383897": "Durée: {{ duration_unit }} {{ duration_value }}", diff --git a/packages/translations/src/translations/id.json b/packages/translations/src/translations/id.json index bb6d19979bca..86a5a895c901 100644 --- a/packages/translations/src/translations/id.json +++ b/packages/translations/src/translations/id.json @@ -191,7 +191,7 @@ "270610771": "Dalam contoh ini, harga open candle ditetapkan pada variabel \"candle_open_price\".", "270712176": "menurun", "270780527": "Anda telah mencapai batas untuk mengupload dokumen Anda.", - "272042258": "When you set your limits, they will be aggregated across all your account types in {{platform_name_trader}}, {{platform_name_dbot}}, {{platform_name_smarttrader}} and {{platform_name_bbot}} on Deriv. For example, the losses made on all four platforms will add up and be counted towards the loss limit you set.", + "272042258": "Pada saat Anda memasang batasan, batasan tersebut akan diperhitungkan pada semua jenis akun Anda di {{platform_name_trader}}, {{platform_name_dbot}}, {{platform_name_smarttrader}}, dan {{platform_name_bbot}} di Deriv. Contoh, kerugian yang dihasilkan pada keempat platform akan bertambah dan dihitung terhadap batas kerugian yang telah Anda tetapkan.", "272179372": "Blok ini umumnya digunakan untuk menyesuaikan parameter untuk trading berikutnya dan menerapkan logika batas kerugian/batas keuntungan.", "273350342": "Copy dan paste token ke aplikasi.", "273728315": "Tidak boleh 0 atau kosong", @@ -1970,7 +1970,7 @@ "-848721396": "Batasan trading ini adalah bersifat pilihan, dan Anda dapat merubahnya kapan saja. Jika Anda tidak ingin menetapkan batas tertentu, kosongkan kolom yang tersedia. Jika Anda menetap di Inggris, Customer Support hanya dapat menghapus atau merubah batasan trading Anda setelah 24 jam menerima permohonan Anda. Jika Anda menetap di Isle of Man, Customer Support hanya dapat menghapus atau merubah batasan trading Anda setelah periode batas trading Anda berakhir.", "-469096390": "Batasan trading ini adalah bersifat pilihan, dan Anda dapat merubahnya kapan saja. Jika Anda tidak ingin menetapkan batas tertentu, kosongkan kolom yang tersedia. Customer Support hanya dapat menghapus atau merubah batasan trading Anda setelah 24 jam menerima permohonan Anda.", "-42808954": "Anda juga dapat mengecualikan diri sepenuhnya pada durasi tertentu. Batasan ini hanya dapat dihapus setelah pengecualian diri Anda berakhir. Jika Anda ingin melanjutkan trading setelah periode pengecualian diri Anda berakhir, Anda harus menghubungi Customer Support dengan menghubungi <0>+447723580049 untuk menghapus pengecualian diri ini. Permintaan melalui obrolan langsung atau email tidak akan dilayani. Akan ada periode pendinginan selama 24 jam sebelum Anda dapat melanjutkan trading.", - "-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.", + "-1088698009": "Batas pengecualian diri ini membantu Anda mengontrol jumlah uang dan waktu yang Anda habiskan untuk bertrading pada {{platform_name_trader}}, {{platform_name_dbot}}, {{platform_name_smarttrader}} dan {{platform_name_bbot}} di Deriv. Batas yang Anda tetapkan di sini akan membantu Anda menjalankan <0>trading yang bertanggung jawab.", "-1702324712": "Batasan ini adalah bersifat opsional, dan Anda dapat menyesuaikannya kapan saja. Anda yang memutuskan berapa banyak dan berapa lama Anda ingin bertrading. Jika Anda tidak ingin menetapkan batas tertentu, kosongkan kolom.", "-1819875658": "Anda juga dapat mengecualikan diri Anda sepenuhnya untuk durasi tertentu. Setelah periode pengecualian diri berakhir, Anda dapat memperpanjangnya lebih lanjut atau melanjutkan trading dengan segera. Jika Anda ingin mengurangi atau menghapus periode pengecualian diri, hubungi <0>Customer Support kami.", "-1031814119": "Tentang batas trading dan pengecualian diri", @@ -2177,8 +2177,8 @@ "-949074612": "Silakan hubungi kami melalui obrolan langsung.", "-1318742415": "Akun Anda belum diautentikasi. Kirim <0>bukti identitas dan <1>bukti alamat untuk mengautentikasi akun dan mengajukan penarikan.", "-127614820": "Anda hanya dapat melakukan deposit. Hubungi kami melalui obrolan langsung untuk mengaktifkan penarikan.", - "-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.", + "-172277021": "Kasir dikunci untuk penarikan", + "-1624999813": "Sepertinya Anda tidak memiliki komisi untuk ditarik saat ini. Anda dapat melakukan penarikan setelah menerima komisi.", "-1077304626": "Jumlah ({{currency}})", "-1559994981": "Nilai perkiraan", "-190084602": "Transaksi", @@ -3163,6 +3163,7 @@ "-311268215": "Blok ini mengkonversi string teks yang mewakili tanggal dan waktu menjadi detik sejak Unix Epoch (1 Januari 1970). Offset waktu dan zona waktu bersifat opsional. Contoh: 2019-01-01 21:03:45 GMT + 0800 akan dikonversi ke 1546347825.", "-1797602591": "Batas Kerugian: {{ currency }} {{ stop_loss }}", "-1214929127": "Batas kerugian harus berupa angka positif.", + "-780745489": "Jika jenis kontrak adalah “Keduanya”, maka Ketentuan Pembelian harus mencakup Rise dan Fall menggunakan “Blok Bersyarat”", "-2142851225": "Opsi trading multiplier", "-625636913": "Jumlah harus berupa angka positif.", "-1466383897": "Durasi: {{ duration_unit }} {{ duration_value }}", diff --git a/packages/translations/src/translations/it.json b/packages/translations/src/translations/it.json index c4489413cd6f..17d2e34ba12b 100644 --- a/packages/translations/src/translations/it.json +++ b/packages/translations/src/translations/it.json @@ -3163,6 +3163,7 @@ "-311268215": "Questo blocco converte una stringa di testo che rappresenta data e orario in secondi dall'epoca Unix (1 gennaio 1970). Lo scarto di tempo e fuso orario è opzionale. Ad esempio: 01-01-2019, 21:03:45 GMT+0800 sarebbe convertito in 1546347825.", "-1797602591": "Stop Loss: {{ currency }} {{ stop_loss }}", "-1214929127": "Lo stop loss deve essere un numero positivo.", + "-780745489": "If the contract type is “Both”, then the Purchase Conditions should include both Rise and Fall using the “Conditional Block\"", "-2142851225": "Opzioni di trading del moltiplicatore", "-625636913": "L'importo deve essere un numero positivo.", "-1466383897": "Durata: {{ duration_unit }} {{ duration_value }}", diff --git a/packages/translations/src/translations/ko.json b/packages/translations/src/translations/ko.json index fcc8be9bf3c4..5e8e5dfa5378 100644 --- a/packages/translations/src/translations/ko.json +++ b/packages/translations/src/translations/ko.json @@ -191,7 +191,7 @@ "270610771": "이 예시에서, 캔들의 개장가격은 변수 \"candle_open_price\"에 할당됩니다.", "270712176": "하향", "270780527": "귀하께서는 업로드하실 수 있는 최대 문서의 수에 도달하셨습니다.", - "272042258": "When you set your limits, they will be aggregated across all your account types in {{platform_name_trader}}, {{platform_name_dbot}}, {{platform_name_smarttrader}} and {{platform_name_bbot}} on Deriv. For example, the losses made on all four platforms will add up and be counted towards the loss limit you set.", + "272042258": "귀하께서 한도를 설정하실 때에, 이 한도들은 Deriv에서 {{platform_name_trader}}, {{platform_name_dbot}}, {{platform_name_smarttrader}} 및 {{platform_name_bbot}} 에서 귀하의 모든 계좌 종류에 걸쳐서 합산될 것입니다. 예를 들어서, 이 네 플랫폼들 모두에서 초래된 손실은 합산될 것이며 귀하께서 설정하신 손실로 계산될 것입니다.", "272179372": "이 블록은 일반적으로 귀하의 다음 거래의 파라미터를 조정하고 손실제한/이익실현 논리를 시행하기 위해 활용됩니다.", "273350342": "토큰을 앱으로 복사 및 붙여넣기 하세요.", "273728315": "0 또는 비어있을 수 없습니다", @@ -1970,7 +1970,7 @@ "-848721396": "이 트레이딩 제한은 선택사항이며 귀하께서는 트레이딩 제한을 그 언제든지 강화시킬 수 있습니다. 만약 귀하께서 특정한 제한을 설정하는 것을 원하시지 않으시면, 해당 항목을 빈칸으로 놔두어주시기 바랍니다. 만약 귀하께서 영국에 거주하신다면, 고객지원은 오직 해당 요청이 받아진 이후 24시간이 지나고 나서 귀하의 거래 제한을 제거하거나 약화시킬 수 있습니다. 만약 귀하께서 맨섬에서 거주하신다면, 고객지원은 귀하의 거래제한 기간이 만료된 이후에만 귀하의 거래 제한을 오직 제거 또는 완화시킬 수 있습니다.", "-469096390": "이 거래 제한들은 선택사항이며, 귀하께서는 그 언제든지 제한을 강화시킬 수 있습니다. 만약 귀하께서 특정한 제한을 설정하고 싶지 않으시다면, 해당 항목을 빈칸으로 놔두어 주시기 바랍니다. 고객 지원은 해당 신청이 받아들여진 이후 24시간이 지난 후 귀하의 거래 제한을 오직 제거 또는 완화시킬 수 있습니다.", "-42808954": "귀하께서는 명시된 기간동안 완전한 자가제한을 하실 수 있습니다. 이는 단지 귀하의 자가제한이 만료되는 경우에만 자가제한을 해제하실 수 있습니다. 귀하의 자가제한 기간이 만료된 이후 거래를 진행하시고 싶으시면, 귀하께서는 해당 자가제한을 제거하기 위해 <0>+447723580049로 연락하셔서 고객 지원으로 반드시 연락하셔야 합니다. 챗 또는 이메일을 통한 연락은 하실 수 없습니다. 귀하께서 거래를 다시 시작하시기 이전에 24시간의 냉각기간이 있을 것입니다.", - "-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.", + "-1088698009": "이러한 자가제한은 귀하께서 Deriv에서의 {{platform_name_trader}}, {{platform_name_dbot}}, {{platform_name_smarttrader}} 및 {{platform_name_bbot}} 에서 트레이딩을 하심으로써 귀하께서 소요하시는 자금과 시간의 양을 조절하실 수 있도록 도와드립니다. 여기에서 귀하께서 설정하신 한도들은 귀하께서 <0>책임감있는 트레이딩을 하실 수 있도록 도움이 될 것입니다.", "-1702324712": "이러한 제한들은 선택사항이며, 귀하께서는 이를 언제든지 조정하실 수 있습니다. 어마를 그리고 얼마동안 거래를 하고 싶으신지를 귀하께서 결정합니다. 만약 귀하께서 특정한 제한을 설정하고 싶지 않으시면, 해당 입력란을 비워두시기 바랍니다.", "-1819875658": "귀하께서는 명시된 기간동안 완전히 자가제한 시키실 수 있습니다. 자가제한 기간이 종료되면, 귀하께서는 이를 연장시키거나 또는 즉시 거래를 재개하실 수 있습니다. 만약 귀하께서 자가제한 기간을 줄이거나 제거하시고 싶으시면, 우리의 <0>고객 지원팀에 연락하시기 바랍니다.", "-1031814119": "트레이딩 제한 및 자가 제한 소개", @@ -2177,8 +2177,8 @@ "-949074612": "라이브 챗을 통해 우리에게 연락해주시기 바랍니다.", "-1318742415": "귀하의 계좌는 아직 인증되지 않았습니다. 귀하의 계좌와 인출을 요청하기 위해 귀하의 <0>신분증과 <1>주소증명서를 제출해 주시기 바랍니다.", "-127614820": "안타깝게도, 귀하께서는 예금만 하실 수 있습니다. 인출을 활성화하시기 위해서는 라이브 챗을 통해 저희에게 연락해주시기 바랍니다.", - "-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.", + "-172277021": "캐셔는 인출에 대해서는 잠금상태입니다", + "-1624999813": "현재에는 귀하에게 인출 커미션이 따로 없는 것으로 보입니다. 귀하께서는 귀하의 커미션을 받으시면 인출이 가능하십니다.", "-1077304626": "금액 ({{currency}})", "-1559994981": "근삿값", "-190084602": "거래", @@ -3163,6 +3163,7 @@ "-311268215": "이 블록은 날짜와 초를 나타내는 텍스트 스트링을 유닉스 에포크 (1970 1월 1일)부터 경과된 초로 변환합니다. 시간과 시간대는 오프셋은 최적화 되어 있습니다. 예시: 2019-01-01 21:03:45 GMT+0800은 1546347825로 변환될 것입니다.", "-1797602591": "스탑 로스: {{ currency }} {{ stop_loss }}", "-1214929127": "손실제한은 반드시 양의 수여야 합니다.", + "-780745489": "If the contract type is “Both”, then the Purchase Conditions should include both Rise and Fall using the “Conditional Block\"", "-2142851225": "승수 거래 옵션", "-625636913": "금액은 반드시 양의 수여야 합니다.", "-1466383897": "기간: {{ duration_unit }} {{ duration_value }}", diff --git a/packages/translations/src/translations/pl.json b/packages/translations/src/translations/pl.json index 310a8d79a780..505fbd5cde4c 100644 --- a/packages/translations/src/translations/pl.json +++ b/packages/translations/src/translations/pl.json @@ -191,7 +191,7 @@ "270610771": "W tym przykładzie cena otwarcia świecy jest przypisana do zmiennej „candle_open_price”.", "270712176": "malejącp", "270780527": "Osiągnięto limit przesyłanych dokumentów.", - "272042258": "When you set your limits, they will be aggregated across all your account types in {{platform_name_trader}}, {{platform_name_dbot}}, {{platform_name_smarttrader}} and {{platform_name_bbot}} on Deriv. For example, the losses made on all four platforms will add up and be counted towards the loss limit you set.", + "272042258": "Ustawione przez Ciebie limity będą miały zastosowanie do wszystkich typów Twoich kont na {{platform_name_trader}}, {{platform_name_dbot}}, {{platform_name_smarttrader}} i {{platform_name_bbot}} Deriv. Na przykład, straty poniesione na wszystkich czterech platformach zsumują się i zostaną wzięte pod uwagę w odniesieniu do ustanowionego przez Ciebie limitu strat.", "272179372": "Ten blok jest powszechnie używany, aby dostosować parametry Twojego nowego zakładu i wprowadzić logikę stop stratom/uzyskaj zysk.", "273350342": "Skopiuj i wklej token w aplikacji.", "273728315": "Nie może być puste ani wynosić 0", @@ -1970,7 +1970,7 @@ "-848721396": "Te limity handlowe są opcjonalne i możesz je zwiększyć w dowolnej chwili. Jeśli nie chcesz ustawić określonego limitu, pozostaw pole puste. Jeśli mieszkasz w Wielkiej Brytanii, dział obsługi klienta może usunąć lub zmniejszyć Twoje limity handlowe dopiero po 24 godzinach od otrzymania takiej prośby. Jeśli mieszkasz na Wyspie Man, dział obsługi klienta może usunąć lub zmniejszyć Twoje limity handlowe po upływie określonego przez Ciebie okresu.", "-469096390": "Te limity handlowe są opcjonalne i możesz je zwiększyć w dowolnej chwili. Jeśli nie chcesz ustanowić konkretnego limitu, zostaw pole puste. Dział obsługi klienta może usunąć lub zmniejszyć Twoje limity handlowe dopiero po 24 godzinach od otrzymania takiej prośby.", "-42808954": "Możesz też całkowicie wykluczyć się z korzystania z serwisu na określony czas. Wówczas samodzielne wykluczenie można zlikwidować dopiero po upływie tego czasu. Jeśli chcesz kontynuować inwestowanie po tym okresie, skontaktuj się z działem obsługi klienta pod numerem <0>+447723580049, aby zlikwidować samodzielne wykluczenie. Wnioski wysłane przez czat lub e-mail nie będą rozpatrywane. Obowiązuje 24-godzinny okres przejściowy przed wznowieniem inwestowania.", - "-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.", + "-1088698009": "Te limity samodzielnego wykluczenia pomagają kontrolować inwestowaną kwotę pieniędzy i ilość czasu spędzanego na inwestowaniu na platformie {{platform_name_trader}}, {{platform_name_dbot}}, {{platform_name_smarttrader}} i {{platform_name_bbot}}. Ustawione przez Ciebie limity ułatwią Ci <0>odpowiedzialne inwestowanie.", "-1702324712": "Te limity są opcjonalne, możesz je zmienić w dowolnej chwili. To Ty decydujesz, jaką kwotę chcesz zainwestować i ile czasu spędzić na inwestowaniu. Jeśli nie chcesz określać konkretnych limitów, zostaw to pole puste.", "-1819875658": "Możesz też wybrać całkowite samo-wykluczenie na określony czas. Po zakończeniu okresu samo-wykluczenia możesz go przedłużyć lub natychmiast wznowić inwestowanie. Jeśli chcesz zmniejszyć lub usunąć okres samo-wykluczenia, skontaktuj się z <0>działem obsługi klienta.", "-1031814119": "O limitach i samo-wykluczeniu", @@ -2177,8 +2177,8 @@ "-949074612": "Skontaktuj się z nami przez czat na żywo.", "-1318742415": "Twoje konto nie zostało zweryfikowane. Prześlij <0>dowód tożsamości i <1>dowód adresu, aby zweryfikować swoje konto i złożyć wniosek o wypłatę.", "-127614820": "Niestety możesz tylko dokonywać wypłat. Skontaktuj się z nami przez czat na żywo, aby umożliwić wypłaty.", - "-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.", + "-172277021": "Wypłaty w sekcji Kasjer są zablokowane", + "-1624999813": "Wygląda na to, że obecnie nie masz żadnych prowizji do wypłaty. Możesz rozpocząć dokonywanie wypłat po otrzymaniu prowizji.", "-1077304626": "Kwota ({{currency}})", "-1559994981": "Szacowana wartość", "-190084602": "Transakcja", @@ -3163,6 +3163,7 @@ "-311268215": "Blok zamienia ciąg tekstu reprezentujący datę i godzinę na sekundy od początku epoki Uniksa (1 stycznia 1970 r.). Godzina i strefa czasowa są opcjonalne. Na przykład: 2019-01-01 21:03:45 GMT+0800 zostanie zamieniony na 1546347825.", "-1797602591": "Stop Stratom: {{ currency }} {{ stop_loss }}", "-1214929127": "Stop stratom musi być liczbą dodatnią.", + "-780745489": "If the contract type is “Both”, then the Purchase Conditions should include both Rise and Fall using the “Conditional Block\"", "-2142851225": "Opcje handlowe mnożnika", "-625636913": "Kwota musi być liczbą dodatnią.", "-1466383897": "Czas trwania: {{ duration_unit }} {{ duration_value }}", diff --git a/packages/translations/src/translations/pt.json b/packages/translations/src/translations/pt.json index bf0961dad425..88a3f9cf9836 100644 --- a/packages/translations/src/translations/pt.json +++ b/packages/translations/src/translations/pt.json @@ -3163,6 +3163,7 @@ "-311268215": "Este bloco converte uma sequência de texto que representa a data e a hora em segundos desde Unix Epoch (1 de janeiro de 1970). A hora e o deslocamento do fuso horário são opcionais. Exemplo: 2019-01-01 21:03:45 GMT+0800 será convertido em 1546347825.", "-1797602591": "Stop Loss: {{ currency }} {{ stop_loss }}", "-1214929127": "Stop loss deve ser um número positivo.", + "-780745489": "If the contract type is “Both”, then the Purchase Conditions should include both Rise and Fall using the “Conditional Block\"", "-2142851225": "Opções de multiplicador", "-625636913": "Valor deve ser um número positivo.", "-1466383897": "Duração: {{ duration_unit }} {{ duration_value }}", diff --git a/packages/translations/src/translations/ru.json b/packages/translations/src/translations/ru.json index 7c503f73266a..fa37d351a28b 100644 --- a/packages/translations/src/translations/ru.json +++ b/packages/translations/src/translations/ru.json @@ -169,7 +169,7 @@ "245187862": "DRC примет <0>решение по жалобе (обратите внимание, что DRC не указывает сроки объявления своего решения).", "245812353": "если {{ condition }} вернуть {{ value }}", "247418415": "Трейдинг может перерасти в зависимость, как и любая другая деятельность, доведенная до крайности. Чтобы избежать опасности возникновения подобной зависимости, мы проводим проверку реальности и предоставляем регулярный отчет о ваших сделках и счетах.", - "248565468": "Проверьте электронную почту вашего аккаунта {{ identifier_title }}, и нажмите на ссылку в письме, чтобы продолжить.", + "248565468": "Проверьте эл. почту вашего аккаунта {{ identifier_title }}, и нажмите на ссылку в письме, чтобы продолжить.", "248909149": "Отправьте защищенную ссылку на свой телефон", "249908265": "Вы гражданин {{- residence}}?", "251134918": "Информация о счете", @@ -343,7 +343,7 @@ "473154195": "Настройки", "474306498": "Жаль, что вы уходите. Ваш счет закрыт.", "475492878": "Попробуйте Синтетические индексы", - "476023405": "Вы не получили email?", + "476023405": "Не получили письмо?", "477557241": "Удалённые блоки для загрузки должны относиться к коллекции.", "478280278": "Этот блок отображает диалоговое окно с настраиваемым сообщением для запроса ввода. Ввод может быть либо текстовой строкой, либо числом и может быть назначен переменной. Когда отобразится диалоговое окно, ваша стратегия будет приостановлена и возобновится только после ввода ответа и нажатия «ОК».", "479420576": "Высшее", @@ -351,7 +351,7 @@ "483591040": "Удалить блоки ({{ delete_count }})?", "485379166": "Смотреть транзакции", "487239607": "Преобразует заданное Верно или Неверно в противоположное значение", - "488150742": "Отправить email еще раз", + "488150742": "Отправить еще раз", "489768502": "Изменить инвесторский пароль", "491603904": "Неподдерживаемый браузер", "492198410": "Убедитесь, что все хорошо видно", @@ -460,8 +460,8 @@ "639382772": "Пожалуйста, загрузите файл в поддерживаемом формате.", "640596349": "У вас пока нет уведомлений", "640730141": "Обновите эту страницу, чтобы перезапустить процесс проверки личности.", - "641420532": "Мы отправили вам email", - "642210189": "Пожалуйста, проверьте свой email. Вам должна прийти проверочная ссылка, необходимая для успешного завершения процесса.", + "641420532": "Мы отправили вам письмо", + "642210189": "Проверьте эл. почту. Вам должна прийти проверочная ссылка, необходимая для успешного завершения процесса.", "642546661": "Загрузите оборотную сторону прав со своего компьютера", "643014039": "Продолжительность купленного контракта.", "644150241": "Количество успешных контрактов с момента последней очистки статистики.", @@ -1093,7 +1093,7 @@ "1442747050": "Размер убытка: <0>{{profit}}", "1442840749": "Случайное целое число", "1443478428": "Выбранное предложение не существует", - "1445592224": "Вы по ошибке указали неправильный email (как правило, рабочий или личный email вместо нужного).", + "1445592224": "Вы по ошибке указали не тот эл. адрес (как правило, рабочий или личный вместо нужного).", "1449462402": "На рассмотрении", "1452260922": "Слишком много неудачных попыток.", "1452941569": "Этот блок задерживает выполнение на указанное количество секунд. Вы можете разместить любые блоки в этом блоке. Выполнение других блоков в вашей стратегии будет приостановлено, пока не будут выполнены инструкции в этом блоке.", @@ -1130,7 +1130,7 @@ "1490583127": "DBot пока не готов к использованию на реальных счетах", "1491392301": "<0>Продано за: {{sold_for}}", "1492686447": "Ваш счет MT5 Финансовый STP будет открыт в Deriv (FX) Ltd. Все операции на этом счете регулируются правилами и руководящими принципами Управления финансовых услуг Лабуана (LFSA). Правила и принципы Управления финансовых услуг Лабуана (LFSA) не распространяются ни на один из ваших других счетов, включая счет Deriv.", - "1493673429": "Изменить email", + "1493673429": "Изменить эл. адрес", "1496810530": "GBP/AUD", "1499074768": "Добавить реальный счет Deriv для мультипликаторов", "1499080621": "Попытка выполнить недопустимую операцию.", @@ -1268,7 +1268,7 @@ "1691765860": "- Отрицание", "1693614409": "Время начала", "1694331708": "Вы можете переключаться между CFD, цифровыми опционами и мультипликаторами в любое время.", - "1694517345": "Введите новый адрес электронной почты", + "1694517345": "Введите новый адрес эл. почты", "1695807119": "Не удалось загрузить блоки из Google Drive", "1700233813": "Перевод с {{selected_value}} не разрешен. Выберите другой счет из выпадающего списка.", "1708413635": "Для вашего счета в {{currency_name}} ({{currency}})", @@ -1276,7 +1276,7 @@ "1711013665": "Ожидаемый оборот на счете", "1711676335": "квадратный корень", "1711929663": "Ваши средства переведены", - "1712357617": "Неправильный e-mail.", + "1712357617": "Неправильный эл. адрес.", "1715011380": "Индекс Jump 25", "1715630945": "Возвращает общую прибыль в строковом формате", "1719248689": "EUR/GBP/USD", @@ -1566,7 +1566,7 @@ "2042778835": "Данная политика рассмотрения жалоб, которая может время от времени меняться, применяется к вашему счету, открытому в {{legal_entity_name}}.", "2044086432": "Закрытие ‒ это последний тик на момент или до времени окончания. Если вы выбираете определённое время окончания, временем окончания будет указанный момент.", "2046273837": "Последний тик", - "2048110615": "Email*", + "2048110615": "Эл. адрес*", "2048134463": "Превышен допустимый размер файла.", "2050080992": "Tron", "2050170533": "Список тиков", @@ -2001,7 +2001,7 @@ "-1265825026": "Время завершения перерыва должно быть больше текущего времени.", "-1332882202": "Перерыв не может превышать 6 недель.", "-1635977118": "Период ограничения не может быть менее 6 месяцев.", - "-1617352279": "Письмо находится в папке со спамом (иногда письма попадают туда).", + "-1617352279": "Письмо попало в папку со спамом.", "-547557964": "Мы не можем отправить письмо на этот адрес (из-за использования firewall или фильтрации).", "-976364600": "Нажмите на ссылку в письме, чтобы сбросить пароль DMT5.", "-742748008": "Проверьте электронную почту и нажмите на ссылку в письме, чтобы продолжить.", @@ -2120,7 +2120,7 @@ "-1196049878": "Первая строка адреса", "-1326406485": "Почтовый код/индекс", "-939625805": "Телефон", - "-442575534": "Не удалось подтвердить email", + "-442575534": "Не удалось подтвердить эл. адрес", "-1459042184": "Обновите ваши личные данные", "-1603543465": "Мы не можем подтвердить ваши личные данные, потому что отсутствует некоторая информация.", "-614516651": "Нужна помощь? <0>Свяжитесь с нами.", @@ -2177,8 +2177,8 @@ "-949074612": "Свяжитесь с нами через чат.", "-1318742415": "Ваш счет не был аутентифицирован. Отправьте нам подтверждение вашей <0>личности и <1>адреса, чтобы аутентифицировать счет и активировать вывод средств.", "-127614820": "К сожалению, вы можете только пополнять счет. Пожалуйста, свяжитесь с нами через чат, чтобы активировать вывод средств.", - "-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.", + "-172277021": "Касса заблокирована для вывода средств", + "-1624999813": "Кажется, на данный момент у вас нет комиссий, которые можно вывести. Вы можете вывести деньги, как только получите комиссионные.", "-1077304626": "Сумма ({{currency}})", "-1559994981": "Приблизительное значение", "-190084602": "Транзакция", @@ -2196,7 +2196,7 @@ "-1612346919": "Смотреть все", "-949073402": "Я подтверждаю, что реквизиты перевода указаны точно.", "-1752211105": "Перевести сейчас", - "-1272778997": "Мы отправили вам email.", + "-1272778997": "Мы отправили вам письмо.", "-2013448791": "Хотите обменять валюту с электронного кошелька? Попробуйте <0>Ewallet.Exchange", "-2061807537": "Что-то пошло не так", "-1068036170": "Мы не берем комиссию за переводы в одной и той же валюте между вашим фиатным счетом Deriv и счетом {{platform_name_mt5}}, и фиатным счетом Deriv и {{platform_name_dxtrade}}.", @@ -2618,7 +2618,7 @@ "-1823504435": "Открыть уведомления", "-1954045170": "Валюта не выбрана", "-583559763": "Меню", - "-2094580348": "Спасибо за подтверждение электронной почты", + "-2094580348": "Спасибо за подтверждение эл. почты", "-1396326507": "К сожалению, {{website_name}} недоступен в вашей стране.", "-288996254": "Недоступно", "-122970184": "Общая ценность активов на ваших демо-счетах Deriv и {{platform_name_dxtrade}}.", @@ -2690,7 +2690,7 @@ "-601615681": "Выберите тему", "-1152511291": "Тёмная", "-1428458509": "Светлая", - "-1917706589": "Ваш счет Deriv больше не связан с {{social_identity_provider}}. Используйте email и пароль для входа в систему в будущем.", + "-1917706589": "Ваш счет Deriv больше не связан с {{social_identity_provider}}. Используйте эл. адрес и пароль для входа в систему в будущем.", "-2017825013": "Понятно", "-505449293": "Введите новый пароль для вашего счета Deriv.", "-1787820992": "Платформы", @@ -3163,6 +3163,7 @@ "-311268215": "Этот блок преобразует строку текста, которая представляет дату и время, в секунды с начала эпохи Unix (1 января 1970 года). Время и часовой пояс не являются обязательными. Пример: 2019-01-01 21:03:45 GMT + 0800 будет преобразовано в 1546347825.", "-1797602591": "Стоп лосс: {{ currency }} {{ stop_loss }}", "-1214929127": "Стоп лосс должен быть положительным числом.", + "-780745489": "Если тип контракта — \"Оба\", то Условия покупки должны включать как повышение, так и падение с использованием \"условного блока\"", "-2142851225": "Параметры контракта с мультипликатором", "-625636913": "Сумма должна быть положительным числом.", "-1466383897": "Длительность: {{ duration_unit }} {{ duration_value }}", diff --git a/packages/translations/src/translations/th.json b/packages/translations/src/translations/th.json index 60b3283880db..9490cc38b2be 100644 --- a/packages/translations/src/translations/th.json +++ b/packages/translations/src/translations/th.json @@ -1,26 +1,26 @@ { "0": "[empty string]", - "1014140": "นอกจากนี้คุณยังสามารถโทร <0>447723580049 เพื่อวางข้อร้องเรียนของคุณ", + "1014140": "นอกจากนี้ คุณยังสามารถโทร <0>+447723580049 เพื่อทำการร้องเรียน", "3215342": "30 วันที่ผ่านมา", "7100308": "ชั่วโมงต้องอยู่ระหว่าง 0 ถึง 23\n", "11539750": "กำหนด {{ variable }} เป็น Relative Strength Index Array {{ dummy }}", "11872052": "ใช่ ฉันจะกลับมาในภายหลัง", - "14365404": "คำร้องขอล้มเหลวสำหรับ {{ message_type }} กำลังลองอีกครั้งใน {{ delay }} วินาที", + "14365404": "คำร้องขอนั้นล้มเหลวสำหรับ: {{ message_type }} กำลังลองอีกครั้งใน {{ delay }} วินาที", "15377251": "จำนวนกำไร: {{profit}}", "17843034": "ตรวจสอบสถานะของเอกสารหลักฐานการยืนยันตัวตน", "19424289": "ชื่อผู้ใช้", "19552684": "ตะกร้า USD", - "21035405": "โปรดอธิบายว่าทำไมคุณถึงจากไป (เลือกได้ไม่เกิน {{ allowed_reasons }} เหตุผล)", + "21035405": "โปรดอธิบายว่า ทำไมคุณถึงจากไป (เลือกได้ไม่เกิน {{ allowed_reasons }} เหตุผล)", "24900606": "ตะกร้า Gold", - "25854018": "บล็อกนี้แสดงข้อความในคอนโซลของนักพัฒนาซอฟต์แวร์ โดยมีอินพุตที่สามารถเป็นสตริงข้อความ ตัวเลข บูลีน หรืออาร์เรย์ของข้อมูล", + "25854018": "บล็อกนี้แสดงข้อความในแผงควบคุมหรือคอนโซลของนักพัฒนาซอฟต์แวร์ โดยตัวข้อมูลที่นำเข้าสามารถจะเป็นได้ทั้งสตริงข้อความ ตัวเลข ชนิดข้อมูลแบบตรรกะหรือบูลีน หรือข้อมูลหลายตัวที่นำมาต่อๆกันเป็นอาเรย์", "26566655": "บทสรุป", "26596220": "การเงิน", "27582767": "{{amount}} {{currency}}", "27830635": "Deriv (V) Ltd", "28581045": "เพิ่มบัญชี MT5 จริง", - "30801950": "บัญชีของคุณจะถูกเปิดด้วย {{legal_entity_name}} ได้รับการควบคุมโดย Malta Gaming Authority และจะอยู่ภายใต้กฎหมายของประเทศมอลตา", - "33433576": "กรุณาใช้ e-wallet เพื่อถอนเงินของคุณ", - "35089987": "Upload the front and back of your driving licence.", + "30801950": "บัญชีของคุณจะถูกเปิดโดย {{legal_entity_name}} ซึ่งได้รับการควบคุมโดย Malta Gaming Authority และจะอยู่ภายใต้กฎหมายของประเทศมอลตา", + "33433576": "กรุณาใช้กระเป๋าเงินอิเล็กทรอนิกส์หรือ e-wallet เพื่อถอนเงินของคุณ", + "35089987": "โปรดอัพโหลดใบขับขี่ของคุณทั้งด้านหน้าและด้านหลัง", "39720204": "ดัชนี AUD", "41737927": "ขอบคุณ", "44877997": "ใบอนุญาตพํานักอาศัย", @@ -28,63 +28,63 @@ "45941470": "คุณต้องการเริ่มต้นที่ไหน?", "46523711": "หลักฐานยืนยันตัวตนของคุณได้รับการยืนยันแล้ว", "49963458": "เลือกตัวเลือก", - "50200731": "FX majors (มาตรฐาน/ไมโครล็อต), FX minors, ดัชนีตะกร้าสินค้า, สินค้าโภคภัณฑ์ และสกุลเงินดิจิตอล", + "50200731": "คู่เงินสกุลหลักหรือ FX majors (ขนาดมาตรฐาน/ไมโครล็อต), คู่เงินสกุลรองหรือ FX minors, ดัชนีตะกร้า, สินค้าโภคภัณฑ์ และสกุลเงินดิจิตอล", "54185751": "น้อยกว่า $100,000", "55340304": "เก็บสัญญาปัจจุบันของคุณไว้หรือไม่", "55916349": "ทั้งหมด", "58254854": "ขอบเขต", - "59169515": "หากคุณเลือก \"Asian Rise\" คุณจะได้รับเงินก็ต่อเมื่อ tick สุดท้ายมีค่าสูงกว่าค่าเฉลี่ย", + "59169515": "หากคุณเลือก \"Asian Rise\" คุณจะได้รับเงินก็ต่อเมื่อค่า tick ตัวสุดท้ายมีมูลค่าสูงกว่าค่าเฉลี่ย", "59341501": "รูปแบบไฟล์ไม่ตรงต้นแบบ", "59662816": "ข้อจํากัดที่ระบุไว้ อาจมีการเปลี่ยนแปลงโดยไม่ต้องแจ้งให้ทราบล่วงหน้า", "62748351": "ความยาวของรายการ", - "63869411": "บล็อกนี้ใช้ทดสอบหมายเลขที่กําหนด ตามที่เลือก", - "64402604": "ตรวจสอบข้อมูลการถ่ายโอน", - "65185694": "Fiat onramp", + "63869411": "บล็อกนี้ใช้ทดสอบหมายเลขที่ให้มาตามสิ่งที่ได้เลือกไว้", + "64402604": "ตรวจสอบข้อมูลการโอนเงิน", + "65185694": "การแลกเปลี่ยน Fiat onramp", "65982042": "ผลรวม", "66519591": "รหัสผ่านของผู้ลงทุน", - "68885999": "ทำการซื้อขายซ้ำก่อนหน้านี้ เมื่อพบข้อผิดพลาด", - "69005593": "ตัวอย่างด้านล่าง เป็นการเริ่มใหม่หลังจาก 30 วินาที หรือมากกว่า หลังจาก 1 นาที แท่งเทียนจะเริ่มทำงาน", + "68885999": "ซื้อขายซ้ำในสัญญาที่กำลังทำก่อนหน้านี้ เมื่อพบข้อผิดพลาด", + "69005593": "ตัวอย่างด้านล่างนี้เป็นการเริ่มทำการเทรดใหม่อีกครั้งหลังจากเวลา 30 วินาทีหรือมากกว่าภายหลังจากที่แท่งเทียนเริ่มทำงานไป 1 นาที", "71016232": "OMG/USD", "71445658": "เปิด", - "71563326": "บริการชำระเงินที่รวดเร็วและปลอดภัยแบบสกุลเงิน fiat ไปยังสกุลเงินดิจิทัล ฝากเงินดิจิทัลจากทุกที่ในโลกโดยใช้บัตรเครดิต/บัตรเดบิตและการโอนเงินผ่านธนาคารของคุณ", + "71563326": "บริการชำระเงินที่แปลงสกุลเงินเฟียตเป็นสกุลเงินดิจิตอลอย่างรวดเร็วและปลอดภัยโดยคุณสามารถฝากเงินดิจิทัลได้จากทุกที่ในโลกโดยใช้บัตรเครดิต/บัตรเดบิตและการโอนเงินผ่านธนาคารของคุณ", "71853457": "$100,001 - $500,000", - "72500774": "โปรดกรอกถิ่นที่อยู่ที่เสียภาษี", - "73086872": "คุณได้กีดกันตนเองจากการซื้อขาย", - "73326375": "จุดต่ำ คือ จุดที่ต่ำที่สุดที่ตลาดได้ไปถึงในช่วงระยะเวลาของสัญญา\n\n", + "72500774": "โปรดระบุถิ่นที่อยู่ที่เสียภาษี", + "73086872": "คุณได้กันตนเองออกจากการซื้อขาย", + "73326375": "จุดต่ำคือจุดที่ต่ำที่สุดที่ตลาดได้ไปถึงในช่วงระยะเวลาของสัญญา", "74963864": "ต่ำกว่า", - "76916358": "คุณถึงขีดจำกัดการถอนแล้ว <0/>โปรดอัปโหลดหลักฐานยืนยันตัวตนและที่อยู่ของคุณเพื่อยกเลิกขีดจำกัดเพื่อดำเนินการถอนต่อไป", + "76916358": "คุณมาถึงขีดจำกัดการถอนแล้ว <0/>โปรดอัปโหลดหลักฐานยืนยันตัวตนและที่อยู่ของคุณเพื่อยกเลิกขีดจำกัดเพื่อดำเนินการถอนต่อไป", "81450871": "เราไม่พบหน้าเว็บนั้น\n", - "82839270": "Upload the page of your passport that contains your photo.", - "83202647": "ยุบบล็อก", + "82839270": "โปรดอัพโหลดหน้าหนังสือเดินทางของคุณที่มีรูปถ่ายของคุณอยู่", + "83202647": "พับเก็บบล็อก", "85343079": "การประเมินทางการเงิน", - "85389154": "ขั้นตอนที่จำเป็นในการยืนยันต่อไปบนมือถือของคุณ", + "85389154": "ขั้นตอนต่างๆที่จำเป็นเพื่อดำเนินการต่อในการยืนยันบนมือถือของคุณ", "89062902": "เทรดบน MT5", - "90266322": "2. เริ่มแชทด้วยเทเลแกรมบอทที่สร้างขึ้นใหม่ของคุณ และโปรดตรวจสอบให้แน่ใจว่าได้ส่งข้อความก่อนดำเนินการต่อ (เช่น Hello Bot!)", - "91993812": "กลยุทธ์ Martingalle เป็นเทคนิครูปแบบการซื้อขายที่คลาสสิก มีการใช้มานานกว่าร้อยปี และเป็นที่นิยมโดยนักคณิตศาสตร์ฝรั่งเศส Paul Pierre Levy ในศตวรรษที่ 18", + "90266322": "2. เริ่มการแชทกับตัวเทเลแกรมบอทที่สร้างขึ้นใหม่ของคุณ และโปรดทำให้แน่ใจว่าคุณได้ส่งข้อความไปหามันก่อนที่จะดำเนินการขั้นตอนต่อไป (เช่น Hello Bot!)", + "91993812": "กลยุทธ์ Martingalle เป็นเทคนิครูปแบบการซื้อขายที่คลาสสิกที่มีการใช้มานานมากกว่าหนึ่งร้อยปี และถูกทำให้เป็นที่นิยมโดยนักคณิตศาสตร์ชาวฝรั่งเศสชื่อ Paul Pierre Levy ในช่วงศตวรรษที่ 18", "96381225": "การยืนยันตัวตนล้มเหลว", - "98473502": "เราไม่มีข้อผูกมัดในการดำเนินการทดสอบความเหมาะสม หรือในการให้คำเตือนความเสี่ยงใด ๆ", + "98473502": "เราไม่ได้ถูกผูกมัดโดยกฏใดๆ ในการดำเนินการทดสอบความเหมาะสม หรือในการให้คำเตือนถึงคุณเกี่ยวกับความเสี่ยงใด ๆ", "98972777": "รายการสุ่ม", - "100239694": "อัปโหลดด้านหน้าบัตรประจำตัวประชาชนจากคอมพิวเตอร์ของคุณ", - "102226908": "ไม่สามารถเว้นช่องว่างได้", - "107206831": "We’ll review your document and notify you of its status within 1-3 days.", + "100239694": "โปรดอัปโหลดด้านหน้าของบัตรจากคอมพิวเตอร์ของคุณ", + "102226908": "ช่องนี้ไม่สามารถเว้นให้ว่างได้", + "107206831": "เราจะตรวจสอบเอกสารของคุณและแจ้งให้คุณทราบถึงสถานะของเอกสารภายใน 1-3 วันทำการ", "108916570": "ระยะเวลา {{duration}} วัน", - "109073671": "โปรดใช้ e-wallet ที่คุณใช้สำหรับการฝากเงินก่อนหน้านี้ ตรวจสอบให้แน่ใจว่า e-wallet รองรับการถอนเงิน ดูรายการกระเป๋าเงินอิเล็กทรอนิกส์ที่รองรับการถอนเงิน <0>ที่นี่", - "111215238": "หลีกเลี่ยงแสงโดยตรง", + "109073671": "โปรดใช้กระเป๋าเงินอิเล็กทรอนิกส์หรือ e-wallet ที่คุณได้ใช้สำหรับการฝากเงินก่อนหน้านี้ โปรดตรวจสอบให้แน่ใจว่า e-wallet นั้นรองรับการถอนเงิน ไปดูรายการ e-wallet ที่รองรับการถอนเงินได้ <0>ที่นี่", + "111215238": "หลีกเลี่ยงแสงที่ส่องมาตรงๆ", "111718006": "เวลาสิ้นสุด", - "111931529": "รวมเงินเดิมพันสูงสุด 7 วัน", + "111931529": "ยอดรวมเงินเดิมพันใน 7 วันขั้นสูงสุด", "113378532": "ETH/USD", "113884303": "German Index", "113933902": "ดาวน์โหลดแอป Deriv X", - "115032488": "ราคาซื้อและผลกำไรขาดทุน", + "115032488": "ราคาซื้อและผลกำไร/ขาดทุน", "116005488": "ตัวบ่งชี้", - "117318539": "รหัสผ่านควรประกอบด้วยตัวอักษรภาษาอังกฤษตัวพิมพ์เล็กและพิมพ์ใหญ่พร้อมตัวเลข", - "119261701": "คาดการณ์", + "117318539": "รหัสผ่านควรประกอบด้วยอักษรภาษาอังกฤษตัวพิมพ์เล็กและตัวพิมพ์ใหญ่พร้อมกับตัวเลข", + "119261701": "การคาดการณ์", "119446122": "ยังไม่ได้เลือกประเภทของสัญญา", "120340777": "กรอกรายละเอียดส่วนตัวของคุณ", "123454801": "{{withdraw_amount}} {{currency_symbol}}", "124723298": "อัปโหลดหลักฐานยืนยันที่อยู่เพื่อยืนยันที่อยู่ของคุณ", - "125443840": "6. การซื้อขายล่าสุดเกิดข้อผิดพลาด เริ่มใหม่อีกครั้ง", - "127307725": "บุคคลผู้อยู่ในข่ายอำนาจทางการเมือง (PEP) คือ ใครบางคนที่ได้รับการแต่งตั้ง และดำรงตำแหน่งโดดเด่นในที่สาธารณะ หรือผู้ร่วมงานที่ใกล้ชิดและสมาชิกในครอบครัวของ PEP ถือว่าเป็น PEP เช่นกัน", + "125443840": "6. เริ่มการซื้อขายล่าสุดใหม่อีกครั้งเนื่องจากมีข้อผิดพลาด", + "127307725": "บุคคลที่มีสถานภาพทางการเมือง (PEP) คือใครก็ตามที่ได้รับการแต่งตั้งและดำรงตำแหน่งราชการระดับสูง ทั้งนี้ผู้ใกล้ชิดและสมาชิกในครอบครัวของบุคคล PEP เองนั้นก็ถือว่าเป็น PEP เช่นกัน", "130567238": "จากนั้น", "132689841": "ซื้อขายบน web terminal", "133523018": "โปรดไปที่หน้าฝากเงินเพื่อรับที่อยู่", @@ -94,266 +94,266 @@ "141626595": "โปรดตรวจสอบให้แน่ใจว่า อุปกรณ์ของคุณมีกล้องที่ใช้งานได้", "142050447": "กำหนด {{ variable }} เพื่อสร้างข้อความด้วย", "142390699": "เชื่อมต่อกับโทรศัพท์มือถือของคุณ", - "143970826": "ปัญหาการชำระเงิน?", - "145146541": "บัญชีและบริการของเราไม่สามารถใช้ได้สำหรับรหัสไปรษณีย์ Jersey", + "143970826": "มีปัญหาในการชำระเงิน?", + "145146541": "บัญชีและบริการของเราไม่สามารถใช้ได้สำหรับพื้นที่ที่ใช้รหัสไปรษณีย์ Jersey", "145736466": "ถ่ายภาพเซลฟี่", "150486954": "ชื่อโทเคน", - "151344063": "จุดออก คือ ราคาตลาดเมื่อปิดสัญญา", + "151344063": "จุดออกคือราคาตลาดเมื่อปิดสัญญา", "151646545": "ไม่สามารถอ่านไฟล์ {{name}}", "152415091": "คณิตศาสตร์", - "152524253": "แลกเปลี่ยนตลาดโลกด้วยแพลตฟอร์มที่ใช้งานง่ายซึ่งเป็นที่นิยมของเรา", - "157593038": "จำนวนเต็มสุ่มตั้งแต่ {{ start_number }} ถึง {{ end_number }}", - "160746023": "Tether as an Omni token (USDT) is a version of Tether that is hosted on the Omni layer on the Bitcoin blockchain.", + "152524253": "ซื้อขายแลกเปลี่ยนอิงตลาดโลกต่างๆ ด้วยแพลตฟอร์มยอดนิยมและใช้งานง่ายของเรา", + "157593038": "เลขจำนวนเต็มที่สุ่มตั้งแต่ {{ start_number }} ถึง {{ end_number }}", + "160746023": "เหรียญดิจิทัล Tether Omni (USDT) นั้นเป็นเวอร์ชันหนึ่งของเหรียญโทเคน Tether ที่ถูกผูกมูลค่าไว้กับค่าเงิน USD โดยถูกสร้างขึ้นโดยใช้แพลตฟอร์ม Omni layer บนเครือข่าย Bitcoin blockchain", "160863687": "ตรวจจับไม่พบกล้อง", - "162727973": "โปรดใส่หมายเลข รหัสตัวแทนชำระเงินที่ถูกต้อง", - "164112826": "บล็อกนี้อนุญาตให้คุณโหลดบล็อกจาก URL หากคุณทำการเก็บไว้ในเซิร์ฟเวอร์ระยะไกล และจะถูกโหลดได้ก็ต่อเมื่อบอทของคุณกำลังทำงาน", - "164564432": "เงินฝากไม่สามารถใช้ได้ชั่วคราวเนื่องจากการบำรุงรักษาระบบ คุณสามารถฝากเงินได้เมื่อการบำรุงรักษาเสร็จสิ้น", - "165294347": "โปรดตั้งค่าประเทศที่คุณพำนักในการตั้งค่าบัญชีของคุณเพื่อเข้าถึงแคชเชียร์", + "162727973": "โปรดใส่หมายเลขรหัสตัวแทนชำระเงินที่ถูกต้อง", + "164112826": "บล็อกนี้อนุญาตให้คุณโหลดบล็อกจาก URL ได้หากว่าคุณเก็บบล๊อกเหล่านั้นไว้ในเซิร์ฟเวอร์ระยะไกลซึ่งบล๊อคเหล่านั้นจะถูกโหลดก็ต่อเมื่อบอทของคุณกำลังทำงาน", + "164564432": "เงินฝากไม่สามารถใช้ได้ชั่วคราวเนื่องจากมีการบำรุงรักษาระบบ คุณจะสามารถฝากเงินได้ก็ต่อเมื่อการบำรุงรักษาระบบเสร็จสิ้นแล้ว", + "165294347": "โปรดระบุประเทศที่คุณพำนักในการตั้งค่าบัญชีของคุณเพื่อเข้าถึงแคชเชียร์", "165312615": "ดำเนินการต่อในโทรศัพท์", - "165682516": "หากคุณไม่ว่าอะไร ช่วยบอกได้ไหมว่ามีแพลตฟอร์มอื่นอีกไหมที่คุณใช้ในการซื้อขาย?", - "170185684": "ละเลย", - "170244199": "ฉันกำลังปิดบัญชีด้วยเหตุผลอื่น", + "165682516": "หากคุณไม่ว่าอะไร ช่วยบอกได้ไหมว่าคุณใช้แพลตฟอร์มอื่นใดบ้างในการเทรด?", + "170185684": "วางเฉย", + "170244199": "ฉันกำลังปิดบัญชีของฉันด้วยเหตุผลอื่นๆ", "171307423": "กู้คืน", - "171579918": "ไปที่การยกเว้นตนเอง", + "171579918": "ไปที่ระบบการกันตนเอง", "171638706": "ตัวแปร", "173991459": "เรากําลังส่งคําขอของคุณไปยังบล็อกเชน", - "176319758": "รวมเงินเดิมพันสูงสุด 30 วัน", + "176319758": "ยอดรวมเงินเดิมพันใน 30 วันขั้นสูงสุด", "176654019": "$100,000 - $250,000", - "178413314": "ชื่อควรมีความยาวระหว่าง 2 ถึง 50 ตัวอักษร", + "178413314": "ชื่อแรกควรมีความยาวระหว่าง 2 ถึง 50 ตัวอักษร", "179083332": "วันที่", "181881956": "ประเภทสัญญา: {{ contract_type }}", - "182628338": "หลักฐานยืนยันตัวตนและที่อยู่ที่ได้รับการยืนยัน", - "184024288": "กรณีที่ต่ำกว่า", - "189705706": "บล็อกนี้ใช้ตัวแปร \"i\" สำหรับควบคุมการทำซ้ำ ในการทำซ้ำแต่ละครั้งค่าของ \"i\" จะถูกกำหนดโดยรายการในรายการที่กำหนด", + "182628338": "หลักฐานยืนยันตัวตนและที่อยู่ที่ได้รับการยืนยันแล้ว", + "184024288": "ตัวพิมพ์เล็ก", + "189705706": "บล็อกนี้ใช้ตัวแปร \"i\" ในการควบคุมการทำซ้ำ ซึ่งแต่ละครั้งที่มีการทำซ้ำนั้นค่าของ \"i\" จะถูกกำหนดโดยสิ่งที่อยู่ในลิสต์รายการที่กำหนดมา", "189759358": "สร้างรายการโดยการทำซ้ำจากรายการที่กำหนด", - "191372501": "ผลรวมสะสมของรายได้/ออมทรัพย์", - "192436105": "ไม่จำเป็นต้องมีสัญลักษณ์ ตัวเลข หรือตัวอักษรตัวพิมพ์ใหญ่", + "191372501": "ผลรวมสะสมของรายได้/เงินออมทรัพย์", + "192436105": "ไม่จำเป็นต้องมีสัญลักษณ์ ตัวเลข หรืออักษรตัวพิมพ์ใหญ่", "192573933": "การตรวจสอบเสร็จสมบูรณ์", - "195972178": "รับตัวอักษร", - "196998347": "เราเก็บดูแลเงินทุนของลูกค้าไว้ในบัญชีธนาคาร แยกออกจากบัญชีการดำเนินงานของเรา ซึ่งจะไม่เป็นส่วนหนึ่งของสินทรัพย์ของบริษัทในกรณีที่ล้มละลาย ซึ่งเป็นไปตามข้อกำหนดของ <0>Gambling Commission สำหรับการแยกเงินของลูกค้าในระดับ: <1>การป้องกันระดับกลาง", - "197190401": "Expiry date", + "195972178": "รับอักขระ", + "196998347": "เราเก็บรักษาเงินทุนของลูกค้าไว้ในบัญชีธนาคารที่แยกออกจากบัญชีที่ใช้ในการดำเนินงานของเรา ดังนั้นจึงจะไม่ถือว่าเป็นส่วนหนึ่งของสินทรัพย์ของบริษัทในกรณีที่มีการล้มละลาย ซึ่งอันนี้ก็เป็นไปตามข้อกำหนดของ <0>Gambling Commission ที่ระบุให้มีการแยกเงินของลูกค้าออกมาตามระดับ: <1>การป้องกันระดับกลาง", + "197190401": "วันหมดอายุ", "201091938": "30 วัน", "203271702": "ลองอีกครั้ง", "204797764": "การโอนไปยังลูกค้า\n", "204863103": "เวลาสิ้นสุด", - "206010672": "บล็อกลบ {{ delete_count }}", - "207824122": "โปรดถอนเงินของคุณจากบัญชี Deriv ต่อไปนี้:", - "210385770": "หากคุณมีบัญชีที่ใช้งานอยู่ โปรดเข้าสู่ระบบเพื่อดำเดินการต่อ ไม่เช่นนั้นโปรดทำการลงทะเบียน", + "206010672": "ลบ {{ delete_count }} บล๊อค", + "207824122": "โปรดถอนเงินของคุณจากบัญชี Deriv (เดี่ยวหรือหลายๆบัญชี) ต่อไปนี้:", + "210385770": "หากคุณมีบัญชีที่กำลังใช้งานอยู่แล้วโปรดเข้าสู่ระบบเพื่อดำเนินการต่อไปไม่เช่นนั้นก็โปรดทำการลงทะเบียนเข้าใช้", "211224838": "การลงทุน", - "211461880": "ชื่อและนามสกุลทั่วไปสามารถคาดเดาได้ง่าย", - "211847965": "<0>รายละเอียดส่วนบุคคลของคุณไม่สมบูรณ์ โปรดไปที่การตั้งค่าบัญชีของคุณและกรอกรายละเอียดส่วนบุคคลของคุณเพื่อเปิดใช้งานการถอน", + "211461880": "ชื่อและนามสกุลทั่วไปนั้นสามารถคาดเดาได้ง่าย", + "211847965": "<0>รายละเอียดส่วนบุคคล ของคุณไม่สมบูรณ์ โปรดไปที่การตั้งค่าบัญชีของคุณและกรอกรายละเอียดส่วนบุคคลเพื่อเปิดใช้งานการถอนเงิน", "216650710": "คุณกำลังใช้บัญชีทดลอง", "217403651": "เซนต์วินเซนต์และเกรนาดีนส์", - "217504255": "ส่งรายละเอียดประเมิณข้อมูลทางการเงินเรียบร้อยแล้ว", - "218441288": "Identity card number", + "217504255": "ส่งรายละเอียดการประเมินข้อมูลทางการเงินเรียบร้อยแล้ว", + "218441288": "หมายเลขบัตรประชาชน", "220014242": "อัปโหลดภาพเซลฟี่จากคอมพิวเตอร์ของคุณ", "220186645": "ข้อความว่าง", - "220232017": "สาธิต CFD", - "222468543": "จำนวณเงินที่คุณอาจต้องเพิ่มในเงินเดิมพันของคุณหากคุณสูญเสียการซื้อขาย", - "223120514": "จากตัวอย่างนี้ แต่ละจุดของบรรทัด SMA คือค่าเฉลี่ยเลขคณิตของราคาปิดในช่วง 50 วันที่ผ่านมา", - "223607908": "ตัวเลขหลักสุดท้ายของ 1000 ticksล่าสุดสำหรับ {{underlying_name}}", + "220232017": "การสาธิต CFDs", + "222468543": "จำนวนเงินที่คุณอาจต้องเพิ่มไปในเงินเดิมพันหากคุณขาดทุนในการเทรด", + "223120514": "จากตัวอย่างนี้ แต่ละจุดของเส้นค่าเฉลี่ยเคลื่อนที่แบบปกติหรือ SMA คือค่าเฉลี่ยเลขคณิตของราคาปิดในช่วง 50 วันที่ผ่านมา", + "223607908": "สถิติตัวเลขหลักสุดท้ายของ 1000 ticks ล่าสุดสำหรับ {{underlying_name}}", "224650827": "IOT/USD", - "224929714": "การเดิมพันตามเหตุการณ์เสมือนในสหราชอาณาจักรและเกาะแมนนําเสนอโดย {{legal_entity_name}}, มิลเลนเนียมเฮาส์, ชั้น 1, ถนนวิคตอเรีย, ดักลาส IM2 4RW, เกาะแมน, ได้รับอนุญาตและควบคุมในสหราชอาณาจักรโดยคณะกรรมการการพนันภายใต้ <0>จํานวน 39172 และโดยคณะกรรมการกํากับดูแลการพนันในเกาะแมน (<1>ดูใบอนุญาต)", - "225887649": "บล็อกนี้มีข้อบังคับใช้ โดยจะเพิ่มในกลยุทธ์ของคุณตามค่าเริ่มต้นเมื่อคุณสร้างกลยุทธ์ใหม่ คุณไม่สามารถคัดลอกเพิ่มบล็อกนี้ได้มากกว่าหนึ่งบล็อกไปยังผืนผ้าใบ", + "224929714": "การวางเดิมพันตามเหตุการณ์เสมือนในสหราชอาณาจักรและเกาะไอล์ออฟแมนนั้น ถูกนําเสนอโดย {{legal_entity_name}}, มิลเลนเนียมเฮาส์, ชั้น 1, ถนนวิคตอเรีย, ดักลาส IM2 4RW, เกาะไอล์ออฟแมน ซึ่งบริษัทนี้ได้รับอนุญาตและถูกกำกับดูแลในสหราชอาณาจักรโดยคณะกรรมการการพนัน ภายใต้ <0>บัญชีเลขที่ 39172 และโดยคณะกรรมการกํากับดูแลการพนันในเกาะไอล์ออฟแมน (<1>ดูใบอนุญาต)", + "225887649": "บล็อกนี้มีถูกบังคับสั่งให้มีอยู่ เพราะมันถูกใส่เพิ่มเข้ามาในกลยุทธ์ของคุณตามค่าเริ่มต้นเวลาที่คุณสร้างกลยุทธ์ใหม่ คุณไม่สามารถคัดลอกบล็อกนี้ในจำนวนมากกว่าหนึ่งบล็อกไปยังผืนผ้าใบได้", "227591929": "การลงบันทึกเวลา {{ input_datetime }} {{ dummy }}", - "227903202": "เราจะเรียกเก็บค่าธรรมเนียมการโอน 1% สำหรับการโอนเงินในสกุลเงินต่างๆ ระหว่างบัญชี Deriv fiat และ {{platform_name_mt5}} ของคุณ", + "227903202": "เราจะเรียกเก็บค่าธรรมเนียมการโอน 1% สำหรับการโอนเงินในสกุลเงินต่างๆ ระหว่างบัญชีเงินสกุลรัฐ Deriv และบัญชี {{platform_name_mt5}} ของคุณ", "228079844": "คลิกที่นี่เพื่ออัปโหลด", - "228521812": "ทดสอบว่าสตริงข้อความว่างเปล่าหรือไม่ ส่งคืนค่าบูลีน (จริง หรือ เท็จ)", - "229355215": "ซื้อขายใน {{platform_name_dbot}}", + "228521812": "ทดสอบว่าสตริงข้อความว่างเปล่าหรือไม่ แล้วคืนค่าข้อมูลแบบบูลีน (จริง หรือ เท็จ)", + "229355215": "ซื้อขายบน {{platform_name_dbot}}", "233500222": "- สูง: ราคาสูงสุด", - "235583807": "SMA เป็นตัวบ่งชี้ที่ใช้บ่อยในการวิเคราะห์ทางเทคนิค โดยจะคํานวณราคาตลาดเฉลี่ยในช่วงเวลาที่กําหนด และใช้ในการระบุทิศทางของแนวโน้มตลาดว่าจะขึ้นหรือลง ตัวอย่างเช่น หาก SMA กําลังเคลื่อนที่สูงขึ้น หมายถึงแนวโน้มของตลาดจะเพิ่มขึ้น ", + "235583807": "SMA เป็นตัวบ่งชี้ที่ใช้บ่อยในการวิเคราะห์ทางเทคนิค โดยจะคํานวณราคาตลาดเฉลี่ยในช่วงเวลาที่กําหนด และมักจะถูกนำมาใช้ในการระบุทิศทางของแนวโน้มตลาดว่าจะขึ้นหรือลง ตัวอย่างเช่น หาก SMA กําลังเคลื่อนที่สูงขึ้น นั่นหมายถึงแนวโน้มของตลาดจะเพิ่มขึ้น ", "236642001": "บันทึก", "240247367": "ตารางกำไร", - "243614144": "สิ่งนี้สามารถใช้ได้เฉพาะกับลูกค้าที่มีอยู่เท่านั้น", + "243614144": "สิ่งนี้มีให้ใช้ได้เฉพาะกับลูกค้าที่มีอยู่เท่านั้น", "245005091": "ต่ำกว่า", - "245187862": "DRC จะทำการ <0>การตัดสินใจเกี่ยวกับการร้องเรียน (โปรดทราบว่า DRC ไม่ได้กล่าวถึงกรอบเวลาในการประกาศการตัดสินใจ)", + "245187862": "DRC จะทำการ <0>การตัดสินใจเกี่ยวกับข้อร้องเรียน (โปรดทราบว่า DRC ไม่ได้ระบุกรอบเวลาในการประกาศการตัดสินใจ)", "245812353": "ถ้า {{ condition }} ส่งคืน {{ value }}", - "247418415": "การซื้อขายเกมอาจกลายเป็นสิ่งเสพติดที่แท้จริงเช่นเดียวกับกิจกรรมอื่น ๆ ที่ถูกผลักดันให้ถึงขีด จํากัด เพื่อหลีกเลี่ยงอันตรายจากการเสพติดดังกล่าวเราให้การตรวจสอบความเป็นจริงที่ให้สรุปการซื้อขายและบัญชีของคุณเป็นประจํา", - "248565468": "ตรวจสอบอีเมลบัญชี {{ identifier_title }} ของคุณ และคลิกลิงก์ในอีเมลเพื่อดําเนินการต่อ", + "247418415": "เกมการซื้อขายแลกเปลี่ยนอาจกลายเป็นสิ่งเสพติดอย่างแท้จริงเช่นเดียวกับกิจกรรมอื่นใดที่ทำมากจนเกินขีดจํากัด ดังนั้น เพื่อหลีกเลี่ยงอันตรายจากการเสพติดดังกล่าว เราจึงให้บริการเช็คสภาพความเป็นจริงผ่านการจัดส่งข้อสรุปการซื้อขายและบัญชีของคุณอย่างเป็นประจํา", + "248565468": "เช็คอีเมล์บัญชี {{ identifier_title }} ของคุณแล้วคลิกลิงก์ในอีเมล์เพื่อดําเนินการต่อ", "248909149": "ส่งลิงก์ที่ปลอดภัยไปยังโทรศัพท์ของคุณ", - "249908265": "Are you a citizen of {{- residence}}?", + "249908265": "คุณเป็นพลเมืองของ {{- residence}} ใช่หรือไม่?", "251134918": "ข้อมูลเกี่ยวกับบัญชี", - "251445658": "ธีมมืด", - "254912581": "บล็อกนี้คล้ายกับ EMA ยกเว้นว่าจะให้ EMA ทั้งหมดแก่คุณตามรายการอินพุต และช่วงเวลาที่กำหนด", + "251445658": "ธีมสีเข้ม", + "254912581": "บล็อกนี้คล้ายกับ EMA ยกเว้นแต่ว่ามันจะให้คุณเห็นสาย EMA ทั้งหมดตามรายการข้อมูลที่ป้อนเข้าไปและช่วงเวลาที่กำหนดไว้", "256031314": "ธุรกิจเงินสด", "256602726": "หากคุณปิดบัญชีของคุณ:", "258310842": "พื้นที่ทำงาน", "258448370": "MT5", "260069181": "เกิดข้อผิดพลาดขณะพยายามโหลด URL", - "260086036": "วางบล็อกที่นี่เพื่อดำเนินงาน 1 ครั้งเมื่อบอทของคุณเริ่มทำงาน", + "260086036": "วางบล็อกที่นี่เพื่อดำเนินงานต่างๆ ในทันทีที่บอทของคุณเริ่มทำงาน", "260361841": "หมายเลขประจำตัวผู้เสียภาษีต้องมีความยาวไม่เกิน 25 อักขระ", - "264976398": "3. 'ข้อผิดพลาด' ข้อความจะแสดงเป็นสีแดงเพื่อเน้นในสิ่งที่ต้องทำการแก้ไขโดยทันที", + "264976398": "3. กรณีมี 'ข้อผิดพลาด' ข้อความเตือนจะเป็นสีแดงเพื่อเน้นว่าเป็นสิ่งที่ต้องแก้ไขโดยทันที", "265644304": "ประเภทการซื้อขาย", "267992618": "แพลตฟอร์มเหล่านี้ขาดคุณสมบัติหรือฟังก์ชันที่สำคัญ", - "268940240": "ยอดคงเหลือของคุณ ({{format_balance}} {{currency}}) น้อยกว่าการถอนขั้นต่ำในปัจจุบันที่อนุญาต ({{format_min_withdraw_amount}} {{currency}}) โปรดเติมเงินในบัญชีของคุณเพื่อดำเนินการถอนต่อไป", + "268940240": "ยอดคงเหลือของคุณ ({{format_balance}} {{currency}}) นั้นน้อยกว่าขีดการถอนขั้นต่ำในปัจจุบันที่อนุญาตคือ ({{format_min_withdraw_amount}} {{currency}}) ดังนั้น โปรดเติมเงินในบัญชีของคุณเสียก่อนที่จะดำเนินการถอนต่อไป", "269607721": "อัปโหลด", - "270339490": "หากคุณเลือก \"Over\" คุณจะได้รับเงินก็ต่อเมื่อ ตัวเลขหลักสุดท้ายของ tick สุดท้าย มากกว่าตัวเลขที่คุณคาดการณ์ไว้", - "270610771": "จากตัวอย่างนี้ ราคาเปิดจากรายการของแท่งเทียน ถูกกำหนดให้กับตัวแปร \"candle_open_price\"", - "270712176": "จากมากไปหาน้อย", - "270780527": "คุณอัปโหลดเอกสารถึงขีด จำกัด แล้ว", - "272042258": "When you set your limits, they will be aggregated across all your account types in {{platform_name_trader}}, {{platform_name_dbot}}, {{platform_name_smarttrader}} and {{platform_name_bbot}} on Deriv. For example, the losses made on all four platforms will add up and be counted towards the loss limit you set.", - "272179372": "โดยทั่วไปบล็อกนี้ใช้เพื่อปรับพารามิเตอร์ของการซื้อขายครั้งต่อไปของคุณ และเพื่อใช้หยุดการขาดทุน/การทำกำไร", - "273350342": "คัดลอกและวางโทเคนลงในแอพ", + "270339490": "หากคุณเลือก \"Over\" คุณจะได้รับเงินตอบแทนก็ต่อเมื่อตัวเลขหลักสุดท้ายของค่าจุด tick ตัวสุดท้ายนั้นมากกว่าตัวเลขที่คุณคาดการณ์ไว้", + "270610771": "จากตัวอย่างนี้ ราคาเปิดของกราฟแท่งเทียนนั้นถูกกำหนดให้ขึ้นกับตัวแปร \"candle_open_price\"", + "270712176": "ที่เรียงข้อมูลจากมากไปหาน้อย", + "270780527": "คุณได้อัปโหลดเอกสารมากจนถึงขีดจำกัดแล้ว", + "272042258": "ในยามที่คุณตั้งค่าขีดจำกัดของคุณ ตัวเลขเหล่านั้นจะถูกรวมไปในทุกประเภทบัญชีของคุณใน {{platform_name_trader}}, {{platform_name_dbot}}, {{platform_name_smarttrader}} และ {{platform_name_bbot}} บน Deriv ตัวอย่างเช่น การขาดทุนที่เกิดขึ้นบนทั้ง 4 แพลตฟอร์มนั้นจะบวกรวมกันและถูกนับเข้าไปสู่เส้นขีดจำกัดที่คุณตั้งเอาไว้", + "272179372": "โดยทั่วไป บล็อกนี้ถูกใช้เพื่อปรับพารามิเตอร์ของการซื้อขายครั้งต่อไปของคุณ และเพื่อนำเอาตรรกะของตัวหยุดการขาดทุน/ตัวปิดเทรดเอากำไรออกมาใช้", + "273350342": "คัดลอกและวางโทเคนลงในแอป", "273728315": "ไม่ควรเป็น 0 หรือ ว่างเปล่า", "274268819": "ดัชนีผันผวน 100", "275116637": "Deriv X", - "277469417": "เวลาของการยกเว้นต้องไม่เกินห้าปี", + "277469417": "ระยะเวลาของการใช้ระบบการกันตัวเองต้องไม่เกินห้าปี", "278684544": "รับรายการย่อยจาก # จากสุดท้าย", "282319001": "ตรวจสอบรูปภาพของคุณ", - "282564053": "ต่อไป เราต้องการหลักฐานที่อยู่ของคุณ.", - "283986166": "การพักตัวเองบนเว็บไซต์นี้ใช้ได้กับบัญชี {{brand_website_name}} ของท่านเท่านั้น และไม่รวมถึงบริษัทหรือเว็บไซต์อื่นๆ", - "284527272": "แอนตี้โหมด", + "282564053": "ขั้นตอนต่อไปคือเราจำเป็นต้องใช้หลักฐานแสดงที่อยู่ของคุณ", + "283986166": "ระบบการกันตัวเองบนเว็บไซต์นั้นจะใช้ได้กับบัญชี {{brand_website_name}} ของคุณเท่านั้นและไม่รวมถึงบริษัทหรือเว็บไซต์อื่นๆ", + "284527272": "ตัวเลขที่เกิดน้อยครั้งที่สุดหรือแอนตี้โหมด", "284772879": "สัญญา", "287934290": "คุณแน่ใจหรือว่าต้องการยกเลิกธุรกรรมนี้?", "289898640": "ข้อตกลงในการใช้งาน", - "292491635": "หากคุณเลือก “หยุดการขาดทุน” และระบุจำนวนที่จำกัดการขาดทุนของคุณ ตำแหน่งของคุณจะถูกปิดโดยอัตโนมัติเมื่อการขาดทุนของคุณมากกว่าหรือเท่ากับจำนวณที่ระบุ\nการขาดทุนของคุณอาจมากกว่าจำนวนเงินที่คุณวางเงินทั้งนี้ขึ้นอยู่กับราคาตลาดเมื่อปิดทำการ", - "292526130": "การวิเคราะห์ Tickและแท่งเทียน", - "292589175": "นี่จะแสดง SMA สำหรับช่วงเวลาที่ระบุโดยใช้รายการแท่งเทียน", + "292491635": "หากคุณเลือก “ตัวหยุดการขาดทุน” และระบุจำนวนเงินเพื่อจำกัดการสูญเสียของคุณ ตำแหน่งการค้าของคุณจะถูกปิดโดยอัตโนมัติเมื่อการขาดทุนของคุณนั้นมีค่ามากกว่าหรือเท่ากับจำนวนนี้ที่ระบุไว้ ทั้งนี้การขาดทุนของคุณอาจมากกว่าจำนวนเงินที่ระบุไว้โดยขึ้นอยู่กับราคาตลาด ณเวลาที่ปิดสัญญา", + "292526130": "การวิเคราะห์ค่าจุด tick และแท่งเทียน", + "292589175": "นี่จะแสดงเส้นค่าเฉลี่ยเคลื่อนที่แบบปกติหรือ SMA โดยใช้รายการแท่งเทียนสำหรับช่วงเวลาที่ระบุโดยเฉพาะเจาะจง", "292887559": "ไม่อนุญาตให้โอนไปที่ {{selected_value}} โปรดเลือกบัญชีอื่นจากเมนูด้านล่าง", "294305803": "จัดการการตั้งค่าบัญชี", "294335229": "ขายที่ราคาตลาด", "300762428": "Swiss Index", "303959005": "ราคาขาย:", - "304309961": "เรากําลังตรวจสอบคําขอถอนเงินของคุณ คุณอาจยังคงยกเลิกธุรกรรมนี้หากคุณต้องการ เมื่อเราเริ่มประมวลผลคุณจะไม่สามารถยกเลิกได้", - "310234308": "ปิดตำแหน่งทั้งหมดของคุณ", + "304309961": "เรากําลังตรวจสอบคําขอถอนเงินของคุณ คุณอาจยังสามารถยกเลิกธุรกรรมนี้ได้หากต้องการ แต่เมื่อใดที่เราเริ่มการประมวลผลแล้ว คุณจะไม่สามารถทำการยกเลิกได้", + "310234308": "ปิดตำแหน่งการค้าทั้งหมดของคุณ", "312142140": "บันทึกขีดจํากัดใหม่หรือไม่?", "312300092": "ตัดแต่งช่องว่างภายในสตริงหรือข้อความที่กำหนด", - "313298169": "แคชเชียร์ของเราหยุดให้บริการชั่วคราวเนื่องจากการบำรุงรักษาระบบ คุณสามารถเข้าถึงแคชเชียร์ได้ภายในไม่กี่นาทีเมื่อการบำรุงรักษาเสร็จสิ้น", - "313741895": "บล็อกนี้ส่งคืน “จริง” หากแท่งเทียนสุดท้ายเป็นสีดำ สามารถวางที่ใดก็ได้บนผืนผ้าใบ ยกเว้นภายในบล็อกรูทพารามิเตอร์การซื้อขาย", + "313298169": "แคชเชียร์ของเราหยุดให้บริการชั่วคราวเนื่องจากมีการบำรุงรักษาระบบ คุณสามารถเข้าถึงแคชเชียร์ได้ภายในไม่กี่นาทีเมื่อการบำรุงรักษาเสร็จสิ้น", + "313741895": "บล็อกนี้จะส่งคืนค่า “จริง” หากว่าแท่งเทียนสุดท้ายเป็นสีดำ มันสามารถถูกวางที่ใดก็ได้บนผืนผ้าใบ เว้นแต่ภายในบล็อกรูทพารามิเตอร์การซื้อขาย", "314357202": "คลิกปุ่ม <0>เปลี่ยนรหัสผ่าน เพื่อเปลี่ยนรหัสผ่าน {{platform_name_dxtrade}} ของคุณ", - "315306603": "คุณมีบัญชีที่ไม่มีการกำหนดสกุลเงิน โปรดเลือกสกุลเงินเพื่อจะทำการซื้อขายกับบัญชีนี้", + "315306603": "คุณมีบัญชีที่ไม่มีการกำหนดสกุลเงิน โปรดเลือกสกุลเงินเพื่อจะทำการซื้อขายด้วยบัญชีนี้", "316694303": "แท่งเทียนเป็นสีดำหรือไม่", "317601768": "ธีม", "318865860": "ปิด", - "318984807": "บล็อกนี้ตามคำแนะนำจะเป็นการทำซ้ำตามจำนวนที่ระบุ", - "323179846": "ช่วงเวลาสำหรับแท่งเทียนแต่ละแท่งสามารถทำการตั้งค่าได้ตั้งแต่ 1 นาทีถึง 1 วัน", - "323209316": "เลือกกลยุทธ์ Deriv บอท", - "325662004": "เพิ่มบล็อก", + "318984807": "บล็อกนี้จะทำซ้ำตามคำสั่งที่ได้รับภายในตามจำนวนครั้งที่ระบุ", + "323179846": "ช่วงระยะเวลาสำหรับแท่งเทียนแต่ละแท่งนั้นสามารถถูกตั้งค่าได้ตั้งแต่ 1 นาทีถึง 1 วัน", + "323209316": "เลือกกลยุทธ์สำหรับ Deriv Bot", + "325662004": "ขยายบล็อก", "325763347": "ผลลัพธ์", - "326770937": "ถอน {{currency}} ({{currency_symbol}}) ไปยังกระเป๋าเงินของคุณ", + "326770937": "ถอน {{currency}} ({{currency_symbol}}) ไปยังกระเป๋าเงินอิเล็กทรอนิกส์ของคุณ", "327534692": "ไม่อนุญาตให้ใช้ค่าระยะเวลา หากต้องการใช้บอท โปรดป้อน {{min}}", "328539132": "ทำซ้ำตามจำนวนครั้งที่ระบุในคำสั่ง", "329404045": "<0>สลับไปยังบัญชีจริงของคุณ<1> เพื่อสร้างบัญชี {{platform}} {{account_title}}", - "333456603": "วงเงินในการถอน", - "334942497": "เวลาซื้อ", + "333456603": "วงเงินที่จำกัดสำหรับการถอน", + "334942497": "เวลาที่ซื้อ", "335040248": "เกี่ยวกับเรา", - "337023006": "เวลาเริ่มต้นไม่สามารถเป็นช่วงเวลาที่ผ่านมาได้", + "337023006": "เวลาเริ่มต้นไม่สามารถเป็นช่วงเวลาในอดีตได้", "339449279": "เวลาที่เหลืออยู่", "339610914": "Spread Up/Spread Down", "339879944": "GBP/USD", "340807218": "ไม่พบคําอธิบาย", "342181776": "ยกเลิกธุรกรรม", - "343873723": "บล็อกแสดงข้อความนี้ คุณสามารถกำหนดสีของข้อความและเลือกเสียงแจ้งเตือนจาก 6 รูปแบบเสียง", - "344418897": "ขีดจำกัดการซื้อขายและการป้องกันตนเอง ช่วยให้คุณควบคุมจำนวนเงินและเวลาที่คุณใช้ใน {{brand_website_name}} และใช้ <0>การซื้อขายอย่างมีความรับผิดชอบ", - "345320063": "ประทับเวลาไม่ถูกต้อง", - "346994074": "การเลือกตัวเลือกนี้จะช่วยให้ท่านผ่านทาง Deriv (SVG) LLC (หมายเลขบริษัท 273 LLC 2020)", - "347029309": "Forex: มาตรฐาน/ไมโคร", + "343873723": "บล็อกนี้จะใช้แสดงข้อความ โดยคุณสามารถกำหนดสีของข้อความและเลือกเสียงแจ้งเตือนจาก 6 รูปแบบเสียง", + "344418897": "การตั้งขีดจำกัดการซื้อขายและระบบการกันตนเองนั้นช่วยให้คุณควบคุมจำนวนเงินและเวลาที่ใช้ใน {{brand_website_name}} และเป็นการฝึก <0>การซื้อขายอย่างมีความรับผิดชอบ", + "345320063": "การประทับรับรองเวลาไม่ถูกต้อง", + "346994074": "การเลือกตัวนี้จะช่วยให้ท่านเข้าร่วมผ่านทางบริษัท Deriv (SVG) LLC (หมายเลขบริษัท 273 LLC 2020)", + "347029309": "ฟอเร็กซ์: มาตรฐาน/ไมโคร", "347039138": "ทำซ้ำ (2)", "348951052": "แคชเชียร์ของคุณถูกล็อคอยู่ในขณะนี้", "349047911": "สูงกว่า", - "351744408": "ทดสอบถ้าให้สตริงข้อความว่างเปล่า", + "351744408": "ทดสอบว่า สตริงข้อความนั้นว่างเปล่าหรือไม่", "353731490": "งานที่เสร็จแล้ว", "354945172": "ส่งเอกสาร", - "357477280": "ไม่พบใบหน้า", + "357477280": "ตรวจไม่พบใบหน้า", "359053005": "โปรดใส่ชื่อโทเคน", "359649435": "รายการแท่งเทียนที่ระบุไม่ถูกต้อง", - "359809970": "บล็อกนี้คุณสามารถเลือกค่าของแท่งเทียนจากรายการแท่งเทียนในช่วงเวลาที่เลือก คุณสามารถเลือกจากราคาเปิด ราคาปิด ราคาสูง ราคาต่ำ และเวลาเปิด", + "359809970": "บล็อกนี้ทำให้คุณสามารถเลือกค่าของแท่งเทียนจากรายการแท่งเทียนในช่วงเวลาที่เลือกได้ โดยคุณสามารถเลือกจากราคาเปิด ราคาปิด ราคาสูง ราคาต่ำ และเวลาเปิด", "360224937": "ตรรกะ", - "362772494": "ไม่ควรเกิน {{max}} ตัวอักษร", + "362772494": "ไม่ควรเกิน {{max}} อักขระ", "363576009": "ราคาสูง: ราคาสูงสุด", "363738790": "เบราว์เซอร์", "363990763": "ราคาขาย:", "368160866": "ในรายการ", "371151609": "ใช้ครั้งล่าสุด", - "371710104": "ขอบเขตนี้จะอนุญาตให้แอพของบริษัทอื่นซื้อและขายสัญญาให้คุณ ต่ออายุการซื้อที่หมดอายุ และเติมเงินในบัญชีสาธิตของคุณ", - "372291654": "เวลาของการยกเว้นต้องเป็นหลังจากวันนี้", + "371710104": "ขอบเขตนี้จะอนุญาตให้แอปของบริษัทอื่นมาซื้อและขายสัญญาให้คุณได้ ต่ออายุคำสั่งซื้อที่หมดอายุของคุณได้ และเติมเงินเข้าในบัญชีดลองของคุณได้", + "372291654": "เวลาการกันตัวเองจะต้องเป็นภายหลังจากวันนี้", "372645383": "เป็นจริง หากทิศทางตลาดเหมือนกับที่เลือกไว้", - "372885537": "เทรด CFD ของฟอเร็กซ์, หุ้นและดัชนีหุ้น, สินค้าโภคภัณฑ์, ดัชนีตะกร้า และคริปโต", + "372885537": "เทรดสัญญาการซื้อขายส่วนต่างของฟอเร็กซ์, หุ้นและดัชนีหุ้น, สินค้าโภคภัณฑ์, ดัชนีตะกร้า และเงินสกุลดิจิตอล", "373021397": "สุ่ม", - "373306660": "{{label}} is required.", - "373495360": "บล็อกนี้ส่งคืนบรรทัด SMA ทั้งหมด ที่มีรายการของค่าทั้งหมดสำหรับช่วงเวลาที่กำหนด", + "373306660": "{{label}} นั้นจำเป็นต้องมีในที่นี้", + "373495360": "บล็อกนี้ส่งคืนเส้นค่าเฉลี่ยเคลื่อนที่แบบปกติหรือ SMA มาทั้งหมดโดยที่มีรายการของมูลค่าต่างๆ ทั้งหมดสำหรับช่วงเวลาที่กำหนด", "374537470": "ไม่พบผลลัพธ์สำหรับ \"{{text}}\"", - "375431605": "สาธิตสังเคราะห์ SVG", - "375714803": "การยกเลิกข้อตกลงผิดพลาด", - "379523479": "เพื่อหลีกเลี่ยงการสูญเสียเงินทุน อย่าแบ่งปันโทเค่นกับขอบเขตผู้ดูแลระบบกับบุคคลที่ไม่ได้รับอนุญาต", + "375431605": "บัญชีทดลองดัชนีสังเคราะห์ SVG", + "375714803": "ข้อผิดพลาดในการยกเลิกดีล", + "379523479": "ในการหลีกเลี่ยงการสูญเสียเงินทุน อย่าแบ่งปันโทเคนกับข้อมูลขอบเขตผู้ดูแลระบบให้กับบุคคลที่ไม่ได้รับอนุญาต", "379730150": "US Tech Index", - "380606668": "tick", + "380606668": "จุดแสดงราคาแนวโน้มตลาด", "380694312": "จำนวนสูงสุดในการซื้อขายต่อเนื่อง", - "382781785": "สัญญาของคุณจะถูกปิดโดยอัตโนมัติ เมื่อผลกำไรของคุณมีมากกว่าหรื่อเท่ากับจำนวนนี้", - "384303768": "บล็อกนี้ส่งคืน “จริง” หากแท่งเทียนสุดท้ายเป็นสีดำ สามารถวางที่ใดก็ได้บนผืนผ้าใบ ยกเว้นภายในบล็อกรูทพารามิเตอร์การซื้อขาย", + "382781785": "สัญญาของคุณจะถูกปิดโดยอัตโนมัติเมื่อผลกำไรของคุณมีมากกว่าหรือเท่ากับจำนวนนี้", + "384303768": "บล็อกนี้จะคืนค่าว่า “จริง” หากแท่งเทียนสุดท้ายเป็นสีดำ มันจะถูกวางไว้ที่ใดก็ได้บนผืนผ้าใบ เว้นแต่ภายในบล็อกพื้นฐานเพื่อระบุพารามิเตอร์การซื้อขาย", "386278304": "ติดตั้งเว็บแอป {{platform_name_trader}}", - "386502387": "บอทไม่ได้ทำงาน", - "389923099": "ขยายเข้า", + "386502387": "บอทไม่ทำงาน", + "389923099": "ซูมเข้า", "390647540": "บัญชีจริง", "390890891": "ไตรมาสที่แล้ว", "391915203": "การป้องกันความเสี่ยง", - "392582370": "Fall Equals", + "392582370": "สัญญาแบบ Fall Equals", "396418990": "ออฟไลน์", - "396961806": "เราไม่สนับสนุนรูปหลายเหลี่ยม (Matic) ในการฝาก โปรดใช้ Ethereum เท่านั้น ({{token}})", - "398816980": "เปิด {{platform_name_trader}} ในไม่กี่วินาทีในครั้งต่อไปที่คุณต้องการซื้อขาย", - "399387585": "โปรดตรวจสอบรายละเอียดอีเมลของคุณ หากคุณมีข้อสงสัยใดๆ โปรดไปที่ <0> ศูนย์ช่วยเหลือ ของเรา", + "396961806": "เราไม่รองรับเหรียญ Polygon (Matic) ในการฝากเงิน โปรดใช้เหรียญ Ethereum ({{token}}) เท่านั้น", + "398816980": "เปิดใช้ {{platform_name_trader}} ในเวลาเพียงไม่กี่วินาทีในครั้งต่อไปที่คุณต้องการซื้อขาย", + "399387585": "โปรดตรวจสอบรายละเอียดอีเมล์ของคุณ หากมีข้อสงสัยใดๆ โปรดไปที่ <0> ศูนย์ช่วยเหลือ ของเรา", "401339495": "ยืนยันที่อยู่", - "402343402": "เนื่องจากปัญหาบนเซิร์ฟเวอร์ของเราบัญชี {{platform}} บางบัญชีของคุณไม่พร้อมใช้งานในขณะนี้ หมีกับเราและขอขอบคุณสําหรับความอดทนของคุณ", - "403456289": "สูตรสำหรับ SMA คือ", + "402343402": "เนื่องจากปัญหาบนเซิร์ฟเวอร์ของเรา บัญชี {{platform}} บางบัญชีของคุณนั้นยังไม่พร้อมใช้งานในขณะนี้ โปรดใจเย็นกับเราและขอขอบคุณสําหรับความอดทนของคุณ", + "403456289": "สูตรสำหรับเส้นค่าเฉลี่ยเคลื่อนที่แบบปกติหรือ SMA คือ", "404743411": "เงินฝากทั้งหมด", "406359555": "รายละเอียดของสัญญา", - "406497323": "ทำการขายสัญญาที่ใช้งานของคุณ ถ้าจำเป็น", + "406497323": "ขายสัญญาที่กำลังใช้อยู่ของคุณได้ถ้าจำเป็น (ไม่บังคับ)", "411482865": "เพิ่มบัญชี {{deriv_account}}", "412433839": "ฉันยอมรับ <0>ข้อกำหนดและเงื่อนไข", - "413594348": "อนุญาตให้ใช้เฉพาะตัวอักษร ตัวเลข ช่องว่าง ขีดกลาง จุด และเครื่องหมายทับเท่านั้น", - "417864079": "คุณจะไม่สามารถเปลี่ยนสกุลเงินได้เมื่อคุณทำการฝากเงิน.", + "413594348": "อนุญาตให้ใช้เฉพาะตัวอักษร ตัวเลข ช่องว่าง ขีดกลาง เครื่องหมายจุด และเครื่องหมายทับเท่านั้น", + "417864079": "คุณจะไม่สามารถเปลี่ยนสกุลเงินได้หลังจากที่คุณทำการฝากเงินไปแล้ว", "420072489": "ความถี่ในการซื้อขาย CFD", "422055502": "จาก", "426031496": "หยุด", - "427134581": "ลองใช้ไฟล์ประเภทอื่น", + "427134581": "ให้ลองใช้ไฟล์ประเภทอื่น", "427617266": "Bitcoin", - "428709688": "ช่วงเวลาที่คุณต้องการระหว่างแต่ละรายงาน:", + "428709688": "ระยะห่างช่วงเวลาที่คุณต้องการในระหว่างแต่ละรายงาน:", "430975601": "เมือง/จังหวัด ไม่ได้อยู่ในรูปแบบที่ถูกต้อง", - "432508385": "ทำกำไร: {{ currency }} {{ take_profit }}", + "432508385": "ตัวปิดเทรดเอากำไร: {{ currency }} {{ take_profit }}", "432519573": "เอกสารถูกอัปโหลดแล้ว", - "433348384": "บัญชีจริงไม่สามารถใช้งานได้กับบุคคลที่มีสถานภาพทางการเมือง (PEPs)", + "433348384": "บัญชีจริงนั้นไม่มีให้ใช้งานสำหรับบุคคลที่มีสถานภาพทางการเมือง (PEPs)", "433616983": "2. ขั้นตอนการตรวจสอบ", "434548438": "เน้นนิยามฟังก์ชัน", "434896834": "ฟังก์ชันที่กำหนดเอง", - "436364528": "บัญชีของคุณจะถูกเปิดด้วย {{legal_entity_name}} และจะอยู่ภายใต้กฎหมายของเซนต์วินเซนต์และเกรนาดีนส์", + "436364528": "บัญชีของคุณจะถูกเปิดโดย {{legal_entity_name}} และจะอยู่ภายใต้กฎหมายของเซนต์วินเซนต์และเกรนาดีนส์", "437138731": "สร้างรหัสผ่าน {{platform}} ใหม่", "437453244": "เลือกสกุลเงินดิจิทัลที่คุณต้องการ", "437485293": "ประเภทไฟล์ที่ไม่รองรับ", - "437904704": "โพซิชั่นที่เปิดอยู่สูงสุด", + "437904704": "ตำแหน่งการค้าที่เปิดได้สูงสุด", "438067535": "มากกว่า $500,000", "442520703": "$250,001 - $500,000", - "443559872": "SVG การเงิน", + "443559872": "การเงิน SVG", "444484637": "การปฏิเสธตรรกะ", "450983288": "การฝากเงินของคุณไม่สําเร็จเนื่องจากข้อผิดพลาดบนบล็อกเชน โปรดติดต่อผู้ให้บริการกระเป๋าเงินคริปโตของคุณสําหรับข้อมูลเพิ่มเติม", "451852761": "ดำเนินการต่อในโทรศัพท์ของคุณ", - "452054360": "คล้ายกับ RSI บล็อกนี้จะแสดงรายการค่าสําหรับแต่ละรายการในรายการอินพุต", - "453175851": "บัญชี MT5 Financial STP ของคุณจะถูกเปิดผ่าน {{legal_entity_name}} การซื้อขายทั้งหมดในบัญชีนี้จะอยู่ภายใต้ข้อบังคับและหลักเกณฑ์ของ Labuan Financial Services Authority (LFSA) ไม่มีบัญชีอื่น ๆ ของคุณรวมถึงบัญชี Deriv ของคุณอยู่ภายใต้ข้อบังคับและหลักเกณฑ์ของ Labuan Financial Services Authority (LFSA)", - "453409608": "กำไรของคุณคือเปอร์เซ็นต์การเปลี่ยนแปลงของราคาตลาดคูณกับเงินเดิมพันของคุณและตัวคูณที่คุณเลือก", + "452054360": "ในลักษณะคล้ายกับเครื่องมือชี้วัด RSI ตัวบล็อกนี้จะแสดงลิสต์รายการมูลค่าของแต่ละรายการในรายการข้อมูลนำเข้าหรือ input", + "453175851": "บัญชี MT5 Financial STP ของคุณจะถูกเปิดผ่าน {{legal_entity_name}} โดยการซื้อขายทั้งหมดในบัญชีนี้จะอยู่ภายใต้ข้อบังคับและหลักเกณฑ์ของ Labuan Financial Services Authority (LFSA) ทั้งนี้ บัญชีอื่นๆ ของคุณรวมถึงบัญชี Deriv ของคุณไม่ได้อยู่ภายใต้ข้อบังคับและหลักเกณฑ์ของ Labuan Financial Services Authority (LFSA)", + "453409608": "กําไรของคุณคือเปอร์เซ็นต์การเปลี่ยนแปลงราคาในตลาดคูณกับจำนวนเงินเดิมพันของคุณและตัวคูณที่คุณเลือกใช้", "454593402": "2. โปรดอัปโหลดหนึ่งในรายการต่อไปนี้:", "456746157": "ให้สิทธิ์การเข้าถึงกล้องของคุณจากการตั้งค่าเบราว์เซอร์ของคุณ", - "457020083": "มันจะใช้เวลานานกว่าที่จะยืนยันคุณถ้าเราไม่สามารถอ่านได้", - "457494524": "1. จากไลบรารีบล็อก ให้ใส่ชื่อสําหรับตัวแปรใหม่ แล้วคลิก สร้าง", - "459817765": "ค้างอยู่", - "460975214": "ทำแบบทดสอบความเหมาะสมของคุณให้เสร็จ", - "461795838": "โปรดติดต่อเราผ่านแชทสดเพื่อปลดล็อก", - "462079779": "การขายไม่ได้ถูกนำเสนอ", + "457020083": "มันจะใช้เวลานานกว่าที่จะทำการยืนยันตัวคุณถ้าเราไม่สามารถอ่านได้", + "457494524": "1. จากห้องสมุดชิ้นส่วนบล็อก ให้ใส่ชื่อสําหรับตัวแปรใหม่ แล้วคลิก สร้าง", + "459817765": "รอดำเนินการอยู่", + "460975214": "ทำแบบทดสอบประเมินความเหมาะสมของคุณให้เสร็จ", + "461795838": "โปรดติดต่อเราผ่านแชทสดเพื่อปลดล็อกสิ่งนี้", + "462079779": "ไม่นำเสนอการเอาไปขายต่อ", "463361726": "เลือกรายการ", - "465993338": "ออสการ์บด", - "466369320": "กําไรขั้นต้นของคุณคือเปอร์เซ็นต์ของการเปลี่ยนแปลงราคาในตลาดคูณด้วยเงินเดิมพันของคุณและตัวคูณที่คุณเลือกที่นี่", + "465993338": "ระบบการเดิมพัน Oscar's Grind", + "466369320": "กําไรขั้นต้นของคุณคือเปอร์เซ็นต์ของการเปลี่ยนแปลงราคาในตลาดคูณกับจำนวนเงินเดิมพันของคุณและตัวคูณที่คุณเลือกใช้ที่นี่", "473154195": "การตั้งค่า", - "474306498": "เราเสียใจที่เห็นคุณจากไป บัญชีของคุณถูกปิดแล้ว", + "474306498": "เราเสียใจที่เห็นคุณจากไป บัญชีของคุณนั้นถูกปิดแล้ว", "475492878": "ลองดัชนีสังเคราะห์", - "476023405": "ไม่ได้รับอีเมลใช่ไหม?", - "477557241": "การโหลดใช้งานรีโมทบล็อกต้องเป็นรายการที่บันทึกไว้ในคอลเลคชั่น", - "478280278": "บล็อกนี้แสดงกล่องโต้ตอบที่ใช้ข้อความที่กำหนดเองเพื่อให้พร้อมท์สำหรับอินพุต อินพุตสามารถเป็นสตริงของข้อความหรือตัวเลข และสามารถกำหนดให้กับตัวแปรได้ เมื่อกล่องโต้ตอบปรากฏขึ้น กลยุทธ์ของคุณจะหยุดชั่วคราวและจะกลับมาทำงานต่อหลังจากที่คุณป้อนคำตอบแล้วคลิก \"ตกลง\"", + "476023405": "คุณไม่ได้รับอีเมล์ใช่ไหม?", + "477557241": "รีโมทบล็อกเพื่อโหลดใช้งานจะต้องเป็นรายการที่บันทึกไว้ในคอลเลคชั่น", + "478280278": "บล็อกนี้แสดงกล่องข้อความโต้ตอบที่ใช้ข้อความที่ซึ่งกำหนดเองเพื่อกระตุ้นให้มีการใส่ข้อมูลหรือ input เข้าไป โดย input นั้นสามารถจะเป็นได้ทั้งสตริงข้อความหรือตัวเลขและสามารถกำหนดให้กับตัวแปรได้ ทั้งนี้ เมื่อกล่องข้อความโต้ตอบปรากฏขึ้น กลยุทธ์ของคุณจะหยุดไว้ชั่วคราวและจะกลับมาทำงานต่อภายหลังจากที่คุณป้อนคำตอบแล้วคลิก \"ตกลง\"", "479420576": "ลำดับที่สาม", "481276888": "ออกนอกขอบเขต", - "483591040": "ต้องการลบบล็อก {{ delete_count }} ทั้งหมดหรือไม่?", + "483591040": "ต้องการลบ {{ delete_count }} บล็อกทั้งหมดหรือไม่?", "485379166": "ดูธุรกรรม", - "487239607": "แปลง จริง หรือ เท็จ ที่กำหนดเป็นค่าตรงข้าม", - "488150742": "ส่งอีเมลอีกครั้ง", + "487239607": "แปลงค่า จริง หรือ เท็จ ที่กำหนดให้มาเป็นค่าตรงข้าม", + "488150742": "ส่งอีเมล์อีกครั้ง", "489768502": "เปลี่ยนรหัสผ่านของผู้ลงทุน", - "491603904": "เบราว์เซอร์ที่ไม่ได้รับการสนับสนุน", + "491603904": "เบราว์เซอร์ที่ไม่รองรับ", "492198410": "ตรวจสอบให้แน่ใจว่าทุกอย่างชัดเจน", "496680295": "เลือกประเทศ", "497518317": "ฟังก์ชันที่คืนค่า", @@ -361,133 +361,133 @@ "499522484": "1. สำหรับ \"สตริง\": 1325.68 USD", "500855527": "ผู้บริหารระดับสูง เจ้าหน้าที่อาวุโส และสมาชิกของสภานิติบัญญัติ", "500920471": "บล็อกนี้เป็นการดำเนินการทางเลขคณิตระหว่าง 2 ตัวเลข", - "501401157": "อนุญาตให้ฝากได้เท่านั้น", - "501537611": "*จำนวนสูงสุดของโพซิชั่นที่เปิด", - "502041595": "บล็อกนี้จะให้ค่าของแท่งเทียนจากช่วงเวลาที่คุณเลือกระบุ", - "503137339": "ขีดจำกัดการชำระเงิน", + "501401157": "คุณได้รับอนุญาตให้ฝากเงินได้เท่านั้น", + "501537611": "*จำนวนสูงสุดของตำแหน่งค้าที่เปิดได้", + "502041595": "บล็อกนี้จะให้ค่าของแท่งเทียนที่เฉพาะเจาะจงจากภายในช่วงเวลาที่คุณเลือกไว้", + "503137339": "ขีดจำกัดของค่าตอบแทน", "505793554": "อักษรตัวสุดท้าย", - "508390614": "ทดลอง Financial STP", + "508390614": "บัญชีทดลอง Financial STP", "510815408": "ตัวอักษร ตัวเลข ช่องว่าง ยัติภังค์เท่านั้น", - "514031715": "รายการ {{ input_list }} ว่าง", - "514776243": "บัญชี {{account_type}} ของคุณรหัสผ่านได้มีการเปลี่ยนแปลง", + "514031715": "รายการ {{ input_list }} นั้นว่าง", + "514776243": "รหัสผ่านเข้าสู่บัญชี {{account_type}} ของคุณได้มีการเปลี่ยนแปลง", "514948272": "คัดลอกลิงก์", - "518955798": "7. รันเมื่อเริ่มใช้งาน", + "518955798": "7. คลิกคำสั่ง Run เมื่อเริ่มใช้งาน", "520136698": "ดัชนี Boom 500", "521872670": "รายการ", - "522283618": "ประสบการณ์การซื้อขายดิจิทัลออปชัน", - "522703281": "แบ่งออกโดย", - "523123321": "- 10 ยกกำลังของตัวเลขที่กำหนด", - "527329988": "นี่คือรหัสผ่านทั่วไป 100 อันดับ", - "529056539": "ออปชัน", - "529597350": "หากคุณมีตำแหน่งที่เปิดอยู่ เราได้ปิดและคืนเงินให้คุณแล้ว", - "530953413": "แอพพลิเคชั่นที่ยินยอมให้ใช้", + "522283618": "ประสบการณ์การซื้อขายตราสารสิทธิดิจิทัล", + "522703281": "แบ่งออกได้โดย", + "523123321": "- 10 ยกกำลังของตัวเลขที่กำหนดให้มา", + "527329988": "นี่คือรหัสผ่านทั่วไป 100 อันดับแรก", + "529056539": "ตราสารสิทธิ", + "529597350": "หากคุณมีตำแหน่งการค้าใดที่เปิดอยู่ เราได้ปิดมันและคืนเงินให้คุณแล้ว", + "530953413": "แอปพลิเคชั่นที่ยินยอมให้ใช้", "531114081": "3. ประเภทของสัญญา", "531675669": "Euro", - "535041346": "รวมเงินเดิมพันสูงสูดต่อวัน", + "535041346": "รวมยอดเงินเดิมพันต่อวันขั้นสูงสุด", "538228086": "ปิด-ต่ำ", "541650045": "จัดการรหัสผ่าน {{platform}}", - "541700024": "First, enter your driving licence number and the expiry date.", - "542038694": "Only letters, numbers, space, underscore, and hyphen are allowed for {{label}}.", - "542305026": "นอกจากนี้ต้องส่งหลักฐานยืนยันตัวตนของคุณด้วย", - "543413346": "คุณไม่มีตำแหน่งที่เปิดสำหรับสินทรัพย์นี้ หากต้องการดูตำแหน่งอื่นๆ ที่เปิดอยู่ คลิกไปที่รายงาน", - "543915570": "Forex, หุ้น, ดัชนีหุ้น, สกุลเงินดิจิตอล, ดัชนีสังเคราะห์", + "541700024": "ขั้นตอนแรกคือให้กรอกข้อมูลหมายเลขใบขับขี่และวันหมดอายุบัตร", + "542038694": "เฉพาะตัวอักษร ตัวเลข เว้นวรรค เส้นใต้ และเส้นขีดกลางเท่านั้นที่ได้รับอนุญาตสำหรับ {{label}}", + "542305026": "คุณต้องส่งหลักฐานยืนยันตัวตนของคุณอีกด้วย", + "543413346": "คุณไม่มีตำแหน่งที่เปิดสำหรับสินทรัพย์นี้ หากต้องการดูตำแหน่งอื่นๆ ที่กำลังเปิดอยู่ให้คลิก ไปที่รายงาน", + "543915570": "ฟอเร็กซ์, หุ้น, ดัชนีหุ้น, สกุลเงินดิจิตอล, ดัชนีสังเคราะห์", "545476424": "เงินถอนทั้งหมด", - "546534357": "หากคุณเลือก“ การยกเลิกข้อตกลง” คุณสามารถยกเลิกการซื้อขายภายในกรอบเวลาที่เลือก หากตลาดเคลื่อนไปตามที่คุณคาดการณ์จะมีการเรียกเก็บค่าธรรมเนียมเล็กน้อย สำหรับการยกเลิก เราจะคืนจำนวนเงินเดิมพันของคุณโดยไม่มีกำไรหรือขาดทุน หากยุติการซื้อขายถึงที่กำหนดก่อนที่จะทำการยกเลิกข้อตกลง ตำแหน่งของคุณจะถูกยกเลิกโดยอัตโนมัติ และเราจะคืนจำนวนเงินเดิมพันของคุณโดยไม่มีกำไรหรือขาดทุนในขณะที่ “การยกเลิกข้อตกลง” เปิดการใช้งาน", + "546534357": "หากคุณเลือก “การยกเลิกข้อตกลง” คุณสามารถยกเลิกการซื้อขายภายในกรอบเวลาที่เลือกได้หากว่าตลาดไม่เคลื่อนตัวไปตามที่คุณคาดการณ์ไว้ โดยเราจะเรียกเก็บค่าธรรมเนียมเล็กน้อย สำหรับการยกเลิกนี้ แต่เราจะคืนจำนวนเงินเดิมพันของคุณให้โดยไม่มีกำไรหรือขาดทุน ทั้งนี้ หากมูลค่าการซื้อขายนั้นได้แตะถึงขีดจำนวนเงินค้ำประกันขั้นต่ำที่อนุญาตหรือ stop out ก่อนที่การยกเลิกข้อตกลงจะหมดอายุ ตำแหน่งการค้าของคุณจะถูกยกเลิกโดยอัตโนมัติและเราจะคืนจำนวนเงินเดิมพันของคุณโดยไม่มีกำไรหรือขาดทุน ในขณะที่ “การยกเลิกข้อตกลง” ยังมีผลใช้งานอยู่:", "549479175": "ตัวคูณ Deriv", "551414637": "คลิกปุ่ม <0>เปลี่ยนรหัสผ่าน เพื่อเปลี่ยนรหัสผ่าน DMT5 ของคุณ", - "551569133": "เรียนรู้เพิ่มเติมเกี่ยวกับขีด จำกัด การซื้อขาย", - "554410233": "นี่คือรหัสผ่านทั่วไป 10 อันดับ", - "555351771": "หลังจากกำหนดพารามิเตอร์ซื้อขายและซื้อขายออปชันคุณอาจต้องการสั่งให้บอทของคุณซื้อสัญญาเมื่อตรงตามเงื่อนไข คุณสามารถใช้บล็อกเงื่อนไขและตัวบ่งชี้บล็อกเพื่อช่วยบอทของคุณในการตัดสินใจ", - "556095366": "เราจะประมวลผลรายละเอียดของคุณภายในไม่กี่นาทีและแจ้งสถานะทางอีเมล", + "551569133": "เรียนรู้เพิ่มเติมเกี่ยวกับขีดจำกัดการซื้อขาย", + "554410233": "นี่คือรหัสผ่านทั่วไป 10 อันดับแรก", + "555351771": "หลังจากกำหนดพารามิเตอร์การซื้อขายและตัวเลือกการซื้อขายแล้ว คุณอาจต้องการสั่งให้บอทของคุณซื้อสัญญาเมื่อตรงตามเงื่อนไขที่ตั้งไว้โดยเฉพาะ และเพื่อให้คุณทำเช่นนั้นได้ คุณสามารถใช้บล็อกเงื่อนไขและบล๊อกตัวบ่งชี้มาช่วยบอทของคุณในการตัดสินใจ", + "556095366": "เราจะประมวลผลรายละเอียดของคุณภายในไม่กี่นาทีและแจ้งสถานะทางอีเมล์", "556264438": "ช่วงเวลา", - "559224320": "เครื่องมือ \"ลากแล้ววาง\" แบบคลาสสิกของเราสำหรับการสร้างบอทซื้อขาย มีแผนภูมิการซื้อขายแบบป๊อปอัปสำหรับผู้ใช้ขั้นสูง", + "559224320": "เครื่องมือ \"ลากแล้ววาง\" แบบคลาสสิกของเราสำหรับการสร้างบอทซื้อขายนั้นมีลูกเล่นเป็นแผนภูมิการซื้อขายแบบป๊อปอัปสำหรับผู้ใช้ขั้นสูง", "561982839": "เปลี่ยนสกุลเงินของคุณ", "562599414": "บล็อกนี้ส่งคืนราคาซื้อสำหรับประเภทการเทรดที่เลือก บล็อกนี้สามารถใช้ได้เฉพาะใน \"เงื่อนไขการซื้อ\" รูทบล็อก", - "563034502": "เราจะพยายามแก้ไขข้อร้องเรียนของคุณภายใน 15 วันทําการ เราจะแจ้งให้คุณทราบถึงผลที่ได้พร้อมกับคําอธิบายจุดยืนของเรา และเสนอมาตรการแก้ไขใดๆ ที่เราตั้งใจจะดำเนินการ", - "563166122": "เราจะรับทราบการร้องเรียนของคุณ ตรวจสอบอย่างรอบคอบ และแจ้งให้คุณทราบเกี่ยวกับขั้นตอนการจัดการ เราอาจขอข้อมูลเพิ่มเติมหรือคําชี้แจงเพื่ออํานวยความสะดวกในการแก้ไขปัญหาการร้องเรียน", + "563034502": "เราจะพยายามแก้ไขข้อร้องเรียนของคุณภายใน 15 วันทําการ เราจะแจ้งให้คุณทราบถึงผลที่ได้พร้อมกับคําอธิบายจุดยืนของเรา และเสนอมาตรการเยียวยาแก้ไขใดๆ ที่เราตั้งใจจะดำเนินการ", + "563166122": "เราจะรับทราบข้อร้องเรียนของคุณ ตรวจสอบมันอย่างรอบคอบ และแจ้งให้คุณทราบเกี่ยวกับขั้นตอนการจัดการ ทั้งนี้ เราอาจขอข้อมูลเพิ่มเติมหรือคําชี้แจงเพื่ออํานวยความสะดวกในการแก้ไขปัญหาการร้องเรียน", "563652273": "ไปที่บล็อก", "565410797": "ภาพด้านล่างอธิบายให้เห็นว่าบล็อก Simple Moving Average Array ทำงานอย่างไร", "566274201": "1. ตลาด", - "567019968": "ตัวแปรเป็นหนึ่งในองค์ประกอบที่สำคัญที่สุดและมีประสิทธิภาพในการสร้างบอท เนื่องจากเป็นวิธีการเก็บข้อมูลไม่ว่าจะเป็นข้อความหรือตัวเลข ข้อมูลที่เก็บไว้เป็นตัวแปรสามารถใช้และเปลี่ยนแปลงตามคําแนะนําที่กําหนด ตัวแปรสามารถใช้ชื่ออะไรก็ได้ แต่ปกติจะใช้ชื่อเป็นสัญลักษณ์ เพื่อง่ายต่อการเรียกใช้งานในระหว่างดำเนินการตามคำสั่ง", + "567019968": "ตัวแปรเป็นหนึ่งในองค์ประกอบที่สำคัญที่สุดและมีประสิทธิภาพในการสร้างบอท เนื่องจากเป็นวิธีการเก็บข้อมูลไม่ว่าจะเป็นข้อความหรือตัวเลข ทั้งนี้ ข้อมูลที่ถูกเก็บไว้ในฐานะเป็นตัวแปรนั้นสามารถจะถูกใช้และถูกเปลี่ยนแปลงตามคําสั่งที่ให้มาได้ ตัวแปรต่างๆสามารถใช้ชื่อว่าอะไรก็ได้ แต่โดยปกติแล้วมักจะใช้ชื่อเป็นสัญลักษณ์ที่เป็นประโยชน์เพื่อให้ง่ายต่อการเรียกใช้งานในระหว่างการดำเนินการตามคำสั่ง", "567163880": "สร้างรหัสผ่าน {{platform}}", "567755787": "โปรดระบุเลขประจำตัวผู้เสียภาษี", "569057236": "เอกสารของคุณออกในประเทศใด", - "571921777": "ระดับการป้องกันเงินทุน", - "573173477": "แท่งเทียน {{ input_candle }} สีดำหรือไม่?", + "571921777": "ระดับการคุ้มครองเงินทุน", + "573173477": "แท่งเทียน {{ input_candle }} เป็นสีดำหรือไม่?", "577215477": "นับด้วย {{ variable }} จาก {{ start_number }} ถึง {{ end_number }} โดย {{ step_size }}", "577779861": "ถอนเงิน", "577883523": "4. รางวัลและคําสั่ง", - "578640761": "คอลสเปรด", + "578640761": "สัญญาการซื้อแบบมีหลักประกันส่วนต่าง", "579529868": "แสดงรายละเอียดทั้งหมด — รวมทั้ง 2 บรรทัดล่างสุด", - "580431127": "เริ่มการซื้อ/ขายใหม่ เนื่องจากเกิดข้อผิดพลาด (ปิดการใช้งานเพื่อประสิทธิภาพที่ดีขึ้น): {{ checkbox }}", + "580431127": "ทำการซื้อ/ขายใหม่เพราะมีข้อผิดพลาด (ปิดใช้งานเพื่อประสิทธิภาพที่ดีขึ้น): {{ checkbox }}", "580665362": "Stays In/Goes Out", "580774080": "ใส่ที่", "581168980": "กฎหมาย", "582945649": "2 นาที", "584028307": "ให้เท่ากับ", - "587577425": "รักษาความปลอดภัยบัญชีของฉัน", + "587577425": "ปกป้องบัญชีของฉัน", "589609985": "ถูกเชื่อมโยงด้วย {{identifier_title}}", "593459109": "ลองใช้สกุลเงินอื่น", "595136687": "บันทึกกลยุทธ์", "597089493": "ที่นี่คุณสามารถตัดสินใจที่จะขายสัญญาก่อนที่จะหมดอายุ อนุญาตให้คัดลอกบล็อกนี้ได้หนึ่งชุดเท่านั้น", "597481571": "ข้อความปฏิเสธความรับผิดชอบ", "597707115": "โปรดเล่าประสบการณ์การซื้อขายของคุณ", - "599469202": "ที่ผ่านมา{{secondPast}}", + "599469202": "{{secondPast}} วินาทีที่ผ่านมา", "602278674": "ยืนยันตัวตน", "606240547": "- ลอการิทึมธรรมชาติ", "606877840": "กลับไปวันนี้", "607807243": "รับแท่งเทียน", - "609519227": "นี่คือที่อยู่อีเมลที่เชื่อมโยงกับบัญชี Deriv ของคุณ", + "609519227": "นี่คือที่อยู่อีเมล์ที่เชื่อมโยงกับบัญชี Deriv ของคุณ", "609650241": "ตรวจพบการวนซ้ำไม่สิ้นสุด", - "610537973": "ข้อมูลต่างๆ ที่คุณให้เป็นความลับและจะใช้สำหรับการตรวจสอบเท่านั้น", + "610537973": "ข้อมูลใดๆ ที่คุณให้จะถูกเก็บเป็นความลับและถูกใช้ในจุดประสงค์เพื่อการตรวจสอบยืนยันเท่านั้น", "611020126": "ดูที่อยู่บนบล็อกเชน", - "611786123": "FX-majors (มาตรฐาน/ไมโครล็อต), FX-minors, สินค้าโภคภัณฑ์, คริปโตเคอเรนซี่, หุ้น และดัชนีหุ้น", + "611786123": "คู่เงินหลักหรือ FX-majors (ขนาดมาตรฐาน/ไมโครล็อต), คู่เงินรองหรือ FX-minors, สินค้าโภคภัณฑ์, คริปโตเคอเรนซี่, หุ้น และดัชนีหุ้น", "613877038": "แผนภูมิ", - "617345387": "หากคุณเลือก \"Reset-Up” คุณจะได้รับการชำระเงิน เมื่อจุดออกสุดท้ายมีค่าสูงกว่าจุดเข้า หรือ จุด ณ เวลารีเซ็ต", + "617345387": "หากคุณเลือก \"Reset-Up” คุณจะได้รับค่าตอบแทนต่อเมื่อจุดออกนั้นมีมูลค่าสูงกว่าจุดเข้าหรือสูงกว่าจุด ณ เวลารีเซ็ต", "618520466": "ตัวอย่างเอกสารที่ตัดออก", - "619268911": "<0>a คณะกรรมการการเงินจะตรวจสอบความถูกต้องของการร้องเรียนภายใน 5 วันทําการ", + "619268911": "<0>a คณะกรรมการการเงินจะตรวจสอบความถูกต้องเที่ยงตรงของข้อร้องเรียนภายใน 5 วันทําการ", "619407328": "คุณแน่ใจหรือไม่ว่าคุณต้องการยกเลิกการเชื่อมโยงจาก {{identifier_title}}?", - "623192233": "โปรดทำ <0>การทดสอบความเหมาะสม เพื่อเข้าถึงแคชเชียร์ของคุณ", - "623542160": "Exponential Moving Average Array (EMAA)", - "626175020": "ส่วนเบี่ยงเบนมาตรฐานตัวคูณขึ้น {{ input_number }}", + "623192233": "โปรดทำ <0>การทดสอบประเมินความเหมาะสม เพื่อเข้าถึงแคชเชียร์ของคุณ", + "623542160": "แถวลำดับเส้นค่าเฉลี่ยเคลื่อนที่แบบเอ็กซ์โพเนนเชียล (EMAA)", + "626175020": "ค่าส่วนเบี่ยงเบนมาตรฐานตัวคูณขาขึ้น {{ input_number }}", "626809456": "ส่งอีกครั้ง", - "627292452": "<0>หลักฐานยืนยันตัวตนหรือหลักฐานยืนยันที่อยู่ของคุณ ไม่เป็นไปตามข้อกำหนดของเรา โปรดตรวจสอบอีเมลของคุณสำหรับคำแนะนำเพิ่มเติม", - "627814558": "บล็อกนี้ส่งคืนค่าเมื่อเงื่อนไขเป็นจริง ใช้บล็อกนี้ภายในบล็อกฟังก์ชันด้านบน", - "629145209": "ในกรณีที่เลือก \"AND\" การดำเนินการบล็อกจะส่งกลับ \"จริง\" เฉพาะเมื่อทั้งสองค่าที่ระบุเป็น \"จริง\"", - "632398049": "บล็อกนี้กำหนดค่า Null ให้กับรายการหรือข้อความ", - "634219491": "คุณยังไม่ได้ระบุหมายเลขประจำตัวผู้เสียภาษีของคุณ ข้อมูลนี้จำเป็นสำหรับข้อกำหนดทางกฎหมายและระเบียบข้อบังคับ โปรดไปที่ <0>รายละเอียดส่วนบุคคล ในการตั้งค่าบัญชีของคุณ และกรอกหมายเลขประจำตัวผู้เสียภาษีล่าสุดของคุณ", - "636219628": "<0>c หากไม่พบโอกาสในการยุติข้อร้องเรียนจะดำเนินการต่อไปยังขั้นตอนการพิจารณาเพื่อให้ DRC ดำเนินการในการจัดการ", - "639382772": "โปรดอัปโหลดประเภทไฟล์ที่รองรับ", - "640596349": "คุณยังไม่ได้รับ การแจ้งเตื่อน", - "640730141": "รีเฟรชหน้านี้เพื่อเริ่มกระบวนการยืนยันตัวตน", - "641420532": "เราได้ส่งอีเมลถึงคุณแล้ว", - "642210189": "โปรดตรวจสอบอีเมล์ของคุณสำหรับลิงค์การยืนยันเพื่อการดำเนินการให้สมบูรณ์", + "627292452": "<0>หลักฐานยืนยันตัวตนหรือหลักฐานยืนยันที่อยู่ของคุณ ไม่เป็นไปตามข้อกำหนดของเรา โปรดเช็คอีเมล์ของคุณสำหรับคำแนะนำเพิ่มเติม", + "627814558": "บล็อกนี้ส่งคืนค่าเมื่อเงื่อนไขนั้นเป็นจริง ให้ใช้บล็อกนี้ภายในบล็อกฟังก์ชันต่างๆ ที่อยู่ด้านบน", + "629145209": "ในกรณีที่เลือกการดำเนินการ \"AND\" ตัวบล็อกจะส่งกลับว่า \"จริง\" ก็เฉพาะเมื่อทั้งสองค่าที่ระบุนั้นเป็น \"จริง\"", + "632398049": "บล็อกนี้กำหนดค่าว่าไม่ทราบข้อมูลหรือ null ให้กับรายการหรือข้อความ", + "634219491": "คุณยังไม่ได้ระบุหมายเลขประจำตัวผู้เสียภาษีของคุณ ข้อมูลนี้มีความจำเป็นเนื่องจากข้อกำหนดทางกฎหมายและระเบียบข้อบังคับ โปรดไปที่ <0>รายละเอียดส่วนบุคคล ในการตั้งค่าบัญชีของคุณ และกรอกหมายเลขประจำตัวผู้เสียภาษีล่าสุดของคุณ", + "636219628": "<0>c หากไม่พบโอกาสในการหาข้อยุติ ข้อร้องเรียนนั้นจะถูกนำไปยังขั้นตอนการพิจารณาเพื่อให้ DRC เข้าจัดการต่อไป", + "639382772": "โปรดอัปโหลดประเภทไฟล์ที่มีการรองรับ", + "640596349": "คุณยังไม่ได้รับการแจ้งเตือนใดๆ", + "640730141": "สั่งรีเฟรชข้อมูลหน้านี้เพื่อเริ่มกระบวนการยืนยันตัวตนอีกครั้ง", + "641420532": "เราได้ส่งอีเมล์ถึงคุณแล้ว", + "642210189": "โปรดเช็คอีเมล์ของคุณสำหรับลิงค์การยืนยันเพื่อทำให้กระบวนการเสร็จสมบูรณ์", "642546661": "อัปโหลดด้านหลังใบขับขี่จากคอมพิวเตอร์ของคุณ", "643014039": "ระยะเวลาการเทรดของสัญญาที่คุณซื้อ", - "644150241": "จำนวนสัญญาที่คุณได้รับตั้งแต่คุณล้างสถิติครั้งล่าสุด", - "645016681": "ความถี่ในการซื้อขายในตราสารทางการเงินอื่น", + "644150241": "จำนวนสัญญาที่คุณได้กำไรตั้งแต่การล้างสถิติครั้งล่าสุดของคุณ", + "645016681": "ความถี่ในการซื้อขายในตราสารทางการเงินอื่นๆ", "645902266": "EUR/NZD", - "647192851": "สัญญาจะถูกจำหน่ายที่ราคาทั่วไปของตลาดเมื่อระบบซื้อขายได้รับการแจ้งความจำนง ราคานี้อาจจะแตกต่างจากราคาที่ระบุ", - "647745382": "รายการอินพุต {{ input_list }}", - "649317411": "บนพื้นฐานของข้อมูลที่สัมพันธ์กับความรู้และประสบการณ์ของคุณ เราพิจารณาว่าการลงทุนที่มีอยู่ทางเว็บไซต์แห่งนี้ไม่เหมาะสมกับคุณ<0/><1/>", - "649923867": "เพิ่มเครื่องหมายให้กับตัวเลขเพื่อสร้าง barrier offset", + "647192851": "สัญญาจะถูกจำหน่ายที่ราคาทั่วไปของตลาดเมื่อระบบเซิร์ฟเวอร์ของเราได้รับคำขอที่แจ้งความจำนงดังกล่าว โดยราคานี้อาจจะแตกต่างไปจากราคาที่ระบุได้", + "647745382": "ลิสต์รายการข้อมูลที่นำเข้า {{ input_list }}", + "649317411": "เนื่องมาจากพื้นฐานของข้อมูลที่สัมพันธ์กับความรู้และประสบการณ์ของคุณ เราได้พิจารณาแล้วว่า การลงทุนที่มีอยู่ในเว็บไซต์นี้ไม่เหมาะสมกับคุณ<0/><1/>", + "649923867": "เพิ่มเครื่องหมายให้กับตัวเลขเพื่อสร้างระยะตั้งฉากเส้นระดับราคาเป้าหมาย (เลิกใช้แล้ว)", "651284052": "Low Tick", - "651684094": "แจ้ง", - "652041791": "เมื่อต้องการสร้างบัญชีจริง Deriv X ให้สร้างบัญชีจริง Deriv ก่อน", + "651684094": "การแจ้งเตือน", + "652041791": "ในการสร้างบัญชีจริง Deriv X นั้นให้สร้างบัญชีจริง Deriv มาก่อน", "652298946": "วันเกิด", "654264404": "สูงถึง 1:30", "654507872": "จริง-เท็จ", "654924603": "มาร์ติงเกล", - "655937299": "เราจะอัปเดตขีดจำกัดของคุณ คลิก <0>ตกลง เพื่อรับทราบว่าคุณต้องรับผิดชอบอย่างเต็มที่ต่อการกระทำของคุณและเราไม่รับผิดชอบต่อการเสพติดหรือการสูญเสียใดๆ", - "657325150": "บล็อกนี้ใช้เพื่อกำหนด ตัวเลือกการซื้อขายภายในรูทบล็อกพารามิเตอร์ซื้อขาย ตัวเลือกบางอย่างสามารถใช้ได้กับการซื้อขายบางประเภทเท่านั้น พารามิเตอร์ เช่น ระยะเวลาและเงินเดิมพันนั้นเป็นเรื่องปกติในประเภทการซื้อขายส่วนใหญ่ การคาดการณ์จะใช้สำหรับประเภทการซื้อขายเช่นตัวเลข ในขณะที่ barrier ใช้สำหรับการซื้อขาย สัมผัส/ไม่สัมผัส สิ้นสุดระหว่าง/สิ้นสุดภายนอก เป็นต้น", - "657444253": "ขออภัย ไม่สามารถเปิดบัญชีได้ในภูมิภาคของคุณ", - "659482342": "โปรดจําไว้ว่าเป็นความรับผิดชอบของคุณในการรักษาคําตอบของคุณให้ถูกต้องและเป็นปัจจุบัน คุณสามารถอัปเดตรายละเอียดส่วนบุคคลของคุณได้ตลอดเวลาในการตั้งค่า จํานวน", - "660481941": "ในการเข้าถึงแอพมือถือของคุณ และแอพอื่นๆของบุคคลภายนอก คุณจะต้องสร้างโทเคน API ก่อน", + "655937299": "เราจะอัปเดตขีดจำกัดของคุณ คลิก <0>ตกลง เพื่อรับทราบว่า คุณต้องรับผิดชอบต่อการกระทำของคุณอย่างเต็มที่และเราไม่รับผิดชอบต่อการเสพติดหรือการสูญเสียใดๆ", + "657325150": "บล็อกนี้ใช้เพื่อกำหนดตัวเลือกการซื้อขายภายในรูทบล็อกสำหรับพารามิเตอร์ในการซื้อขาย โดยตัวเลือกบางอย่างสามารถใช้ได้กับการซื้อขายบางประเภทเท่านั้น ทั้งนี้ พารามิเตอร์เช่น ระยะเวลาและเงินเดิมพันนั้นพบได้โดยปกติอยู่แล้วในประเภทการซื้อขายส่วนใหญ่ ส่วนการคาดการณ์จะใช้สำหรับประเภทการซื้อขายเน้นตัวเลขทศนิยม ในขณะที่ระยะตั้งฉากเส้นระดับราคาเป้าหมายหรือ barrier นั้นจะใช้สำหรับประเภทการซื้อขายที่เกี่ยวข้องกับเส้น barrier เช่นดูว่า แตะ/ไม่แตะ หรือ สิ้นสุดภายใน/สิ้นสุดภายนอก เป็นต้น", + "657444253": "ขออภัย การเปิดบัญชีไม่สามารถทำได้ในภูมิภาคของคุณ", + "659482342": "โปรดจําไว้ว่า มันเป็นความรับผิดชอบของคุณในการให้คําตอบที่ถูกต้องและเป็นปัจจุบัน โดยคุณสามารถเข้าไปอัปเดตรายละเอียดส่วนบุคคลของคุณได้ตลอดเวลาที่ปุ่มการตั้งค่าบัญชีของคุณ", + "660481941": "เพื่อให้คุณเข้าถึงแอปมือถือของคุณและแอปที่พัฒนาโดยบุคคลภายนอก คุณจะต้องสร้างรหัสโทเคน API เสียก่อน", "660991534": "เสร็จสิ้น", - "662609119": "ดาวน์โหลดแอพ MT5", - "665089217": "โปรดส่ง <0>หลักฐานระบุตัวตน ของคุณเพื่อยืนยันความถูกต้องของบัญชีและเข้าถึงแคชเชียร์ของคุณ", + "662609119": "ดาวน์โหลดแอป MT5", + "665089217": "โปรดส่ง <0>หลักฐานระบุตัวตน ของคุณเพื่อยืนยันความถูกต้องของบัญชีและการเข้าถึงแคชเชียร์ของคุณ", "665777772": "XLM/USD", - "665872465": "จากตัวอย่างด้านล่าง ราคาเปิดที่เลือก ซึ่งจะถูกกำหนดให้กับตัวแปรที่เรียกว่า \"op\"", + "665872465": "จากตัวอย่างด้านล่าง ราคาเปิดนั้นได้ถูกเลือกแล้วและจากนั้นก็ถูกกำหนดให้กับตัวแปรที่เรียกว่า \"op\"", "672008428": "ZEC/USD", "673915530": "เขตอำนาจศาลและกฎหมายบังคับ", "676159329": "ไม่สามารถสลับไปยังบัญชีเริ่มต้นได้", @@ -495,56 +495,56 @@ "678517581": "หน่วย", "680334348": "บล็อกนี้จำเป็นต้องแปลงกลยุทธ์เก่าของคุณอย่างถูกต้อง", "681926004": "ตัวอย่างของเอกสารที่ไม่ชัดเจน", - "682056402": "ส่วนเบี่ยงเบนมาตรฐานตัวคูณลง {{ input_number }}", + "682056402": "ส่วนเบี่ยงเบนมาตรฐานตัวคูณขาลง {{ input_number }}", "684282133": "เครื่องมือการซื้อขาย", "685391401": "หากคุณมีปัญหาในการลงชื่อเข้าใช้ โปรดแจ้งให้เราทราบผ่านช่องทาง <0>แชท", "687212287": "โปรดระบุจำนวนในช่อง", "689137215": "ราคาซื้อ", "691956534": "<0>คุณได้เพิ่มบัญชี {{currency}} <0> ทำการฝากเงินเพื่อเริ่มการซื้อขาย ", "693396140": "การยกเลิกข้อตกลง (หมดอายุ)", - "696870196": "เวลาเปิด: การประทับเวลาเปิด", - "697630556": "ตลาดนี้ปิดทําการแล้ว", + "696870196": "เวลาเปิด: การประทับรับรองเวลาเปิด", + "697630556": "ตลาดนี้ปิดทําการแล้วตอนนี้", "698748892": "ลองอีกครั้ง", - "699159918": "1. การร้องเรียน", + "699159918": "1. การยื่นข้อร้องเรียน", "700259824": "สกุลเงินของบัญชี", - "701034660": "เรายังคงดําเนินการคําขอถอนเงินของคุณ <0 />โปรดรอให้การทําธุรกรรมเสร็จสมบูรณ์ก่อนที่จะปิดการใช้งานบัญชีของคุณ", + "701034660": "เรายังคงประมวลผลคําร้องขอถอนเงินของคุณอยู่ <0 />โปรดรอให้การทําธุรกรรมเสร็จสมบูรณ์ก่อนที่จะปิดการใช้งานบัญชีของคุณ", "701462190": "จุดเข้า", "701647434": "ค้นหาสตริง", - "705299518": "Next, upload the page of your passport that contains your photo.", - "706727320": "ความถี่ในการซื้อขายไบนารีออปชัน", + "705299518": "ขั้นตอนต่อไปคือ โปรดอัพโหลดหน้าหนังสือเดินทางของคุณที่มีรูปถ่ายของคุณอยู่", + "706727320": "ความถี่ในการซื้อขายไบนารีออปชั่น", "706755289": "บล็อกนี้ดำเนินการเกี่ยวกับฟังก์ชันตรีโกณมิติ", - "708055868": "Driving licence number", + "708055868": "หมายเลขใบขับขี่", "710123510": "ทำซ้ำ {{ while_or_until }} {{ boolean }}", - "711029377": "โปรดยืนยันรายละเอียดของธุรกรรมเพื่อทำให้การถอนสมบรูณ์:", - "711999057": "เรียบร้อยแล้ว", + "711029377": "โปรดยืนยันรายละเอียดของธุรกรรมเพื่อทำให้การถอนเสร็จสมบรูณ์:", + "711999057": "สำเร็จแล้ว", "712101776": "ถ่ายภาพหน้าหนังสือเดินทางที่มีรูปภาพของคุณ", - "712635681": "บล็อกนี้คุณสามารถเลือกค่าของแท่งเทียนจากรายการแท่งเทียน คุณสามารถเลือกจากราคาเปิด ราคาปิด ราคาสูง ราคาต่ำ และเวลาเปิด", + "712635681": "บล็อกนี้นำเสนอมูลค่าของแท่งเทียนที่ได้รับการเลือกออกมาจากลิสต์รายการแท่งเทียน คุณสามารถเลือกจากราคาเปิด ราคาปิด ราคาสูง ราคาต่ำ และเวลาเปิดได้", "713054648": "ส่ง", "714080194": "โปรดส่งหลักฐาน", - "714746816": "แอปสำหรับ Windows MetaTrader 5", - "715841616": "โปรดใส่หมายเลขโทรศัพท์ให้ถูกต้อง (เช่น +15417541234).", + "714746816": "แอป MetaTrader 5 สำหรับ Windows", + "715841616": "โปรดใส่หมายเลขโทรศัพท์ที่ถูกต้อง (เช่น +15417541234).", "716428965": "(ปิดแล้ว)", "718504300": "รหัสไปรษณีย์", "720293140": "ออกจากระบบ", - "720519019": "รีเซ็ตรหัสผ่าน", + "720519019": "ตั้งรหัสผ่านใหม่", "721011817": "- เพิ่มเลขตัวแรกเพื่อยกกำลังเลขตัวที่สอง", - "723045653": "คุณจะเข้าสู่ระบบบัญชี Deriv ของคุณด้วยที่อยู่อีเมลนี้", + "723045653": "คุณจะเข้าสู่ระบบบัญชี Deriv ของคุณด้วยที่อยู่อีเมล์นี้", "723961296": "จัดการรหัสผ่าน", - "724203548": "คุณสามารถส่งการร้องเรียนของคุณไปที่แพลตฟอร์ม <0>การระงับข้อพิพาททางออนไลน์ของคณะกรรมาธิการยุโรป (ODR) ไม่สามารถใช้ได้กับลูกค้าในสหราชอาณาจักร", - "728042840": "เพื่อทำการซื้อขายกับเราต่อไป โปรดยืนยันที่อยู่อาศัยของคุณ", + "724203548": "คุณสามารถส่งข้อร้องเรียนของคุณไปที่แพลตฟอร์ม <0>การระงับข้อพิพาททางออนไลน์ของคณะกรรมาธิการยุโรป (ODR) อนึ่ง ช่องทางนี้ไม่สามารถใช้ได้กับลูกค้าในสหราชอาณาจักร", + "728042840": "โปรดยืนยันที่อยู่อาศัยของคุณเพื่อทำการซื้อขายกับเราต่อไป", "728824018": "Spanish Index", "730473724": "บล็อกนี้ทำการดำเนินการเชิงตรรกะ \"AND\" หรือ \"OR\" ด้วยค่าที่กำหนด", "731382582": "BNB/USD", "734390964": "ยอดคงเหลือไม่เพียงพอ", - "734881840": "ผิด", - "744110277": "Bollinger Bands Array (BBA)", + "734881840": "เท็จ", + "744110277": "ตัวชี้วัด Bollinger Bands Array (BBA)", "745656178": "ใช้บล็อกนี้เพื่อขายสัญญาของคุณในราคาตลาด", "745674059": "ส่งคืนอักขระเฉพาะจากสตริงข้อความที่กำหนด ตามตัวเลือกที่เลือก ", - "746112978": "คอมพิวเตอร์ของคุณอาจใช้เวลาชั่วขณะเพื่ออัปเดต", + "746112978": "คอมพิวเตอร์ของคุณอาจใช้เวลาไม่กี่วินาทีเพื่ออัปเดต", "751692023": "เรา <0>ไม่ รับประกันการคืนเงิน หากคุณโอนเงินผิด", "752024971": "ถึงจํานวนตัวเลขสูงสุดแล้ว", "752633544": "คุณจะต้องส่งหลักฐานยืนยันตัวตนและที่อยู่เมื่อถึงเกณฑ์ที่กำหนด", - "752992217": "บล็อกนี้ให้ค่าคงที่ตามที่คุณเลือก", + "752992217": "บล็อกนี้ให้มูลค่าคงที่ตามที่คุณเลือก", "753088835": "ค่าเริ่มต้น", "753184969": "ในการให้บริการ เราขออนุญาตสอบถามข้อมูลจากคุณเพื่อประเมินผลิตภัณฑ์และบริการที่เหมาะสมให้กับคุณ (ซึ่งรายละเอียดจะเกี่ยวข้องกับประสบการณ์และความรู้ของคุณเพื่อให้เข้าใจถึงระดับความเสี่ยงที่เกี่ยวข้องในผลิตภัณฑ์แต่ละประเภท)<0/><1/>", "753727511": "ประเภท", @@ -572,7 +572,7 @@ "784311461": "Exponential Moving Average (EMA)", "784583814": "การเชื่อมโยงไปยังคอมพิวเตอร์ของคุณ", "785969488": "ดัชนีข้าม 75", - "787116142": "The multiplier amount used to increase your stake if you’re losing a trade. Value must be higher than 2.", + "787116142": "จำนวนของตัวคูณที่นำมาใช้เพื่อเพิ่มค่าเงินเดิมพันของคุณหากคุณกำลังเสียท่าในการเทรด มูลค่าจะต้องสูงกว่า 2", "787727156": "Barrier", "788005234": "NA", "793526589": "หากต้องการร้องเรียนเกี่ยวกับการให้บริการของเรา โปรดส่งอีเมลไปที่ <0>complaints@deriv.com และแจ้งรายละเอียดของการร้องเรียนของคุณ โปรดส่งภาพหน้าจอที่เกี่ยวข้องของการซื้อขาย หรือระบบเพื่อให้เราเข้าใจได้ดียิ่งขึ้น", @@ -581,7 +581,7 @@ "795859446": "บันทึกรหัสผ่าน", "797007873": "ทำตามขั้นตอนต่อไปนี้เพื่อกู้คืนการเข้าถึงกล้อง:", "797500286": "เชิงลบ", - "800228448": "นโยบายการร้องเรียนนี้ อาจมีการเปลี่ยนแปลงเป็นครั้งคราวมีผลบังคับใช้กับบัญชีของคุณที่ลงทะเบียนกับ {{legal_entity_name_svg}} และ {{legal_entity_name_fx}}", + "800228448": "นโยบายการร้องเรียนนี้ ซึ่งอาจมีการเปลี่ยนแปลงเป็นครั้งคราว มีผลบังคับใช้กับบัญชี (ทั้งเดี่ยวหรือหลายบัญชี) ของคุณที่ลงทะเบียนกับ {{legal_entity_name_svg}} และ {{legal_entity_name_fx}}", "800521289": "รายละเอียดส่วนบุคคลของคุณไม่สมบูรณ์", "802436811": "ดูรายละเอียดธุรกรรม", "802438383": "ต้องการหลักฐานยืนยันที่อยู่ใหม่", @@ -598,56 +598,56 @@ "823186089": "บล็อกที่สามารถมีข้อความ", "824797920": "รายการว่างเปล่าหรือไม่?", "826511719": "USD/SEK", - "827688195": "ยกเลิกการใช้งานบล็อก", - "828219890": "แล้ว", - "828602451": "คืนรายการค่า tick ในรูปแบบของสตริง", + "827688195": "ปิดใช้งานบล็อก", + "828219890": "แล้วจากนั้น", + "828602451": "คืนรายการมูลค่า tick ในรูปแบบของสตริง", "830164967": "ชื่อสกุล", - "830993327": "ไม่มีธุรกรรมปัจจุบัน", - "832217983": "มีมากกว่า 40 ธุรกรรมภายใน 12 เดือนที่ผ่านมา", - "832398317": "ขายผิดพลาด", + "830993327": "ไม่มีธุรกรรมอยู่ในเวลานี้", + "832217983": "มีมากกว่า 40 ธุรกรรมในระยะเวลา 12 เดือนที่ผ่านมา", + "832398317": "ข้อผิดพลาดในการขาย", "832588873": "การดำเนินการสั่งซื้อ", - "832721563": "หากคุณเลือก \"Low Tick\" คุณจะได้รับเงินก็ต่อเมื่อ tick ที่เลือกมีค่าน้อยที่สุดใน 5 tick ถัดไป", - "834966953": "1551661986 วินาทีนับตั้งแต่ 1 มกราคม 1970 (UTC) แปลเป็น 03/04/2019 @ 1:13 am (UTC)", + "832721563": "หากคุณเลือก \"Low Tick\" คุณจะได้รับเงินตอบแทนก็ต่อเมื่อจุด tick ที่เลือกมีมูลค่าน้อยที่สุดในบรรดาจุด tick 5 จุดถัดไป", + "834966953": "1551661986 วินาทีนับตั้งแต่ 1 มกราคม 1970 (UTC) แปลได้เป็น 03/04/2019 @ 1:13 am (UTC)", "835058671": "ราคาซื้อรวม", - "835350845": "เพิ่มคำอื่นหรือสองคำ ไม่ใช่คำทั่วไปจะดีที่สุด", + "835350845": "เพิ่มคำอื่นอีกหนึ่งหรือสองคำ หากไม่ใช่คำทั่วไปจะดีที่สุด", "837066896": "เอกสารของคุณกำลังอยู่ระหว่างการพิจารณา โปรดตรวจสอบอีกครั้งใน 1-3 วัน", "839618971": "ที่อยู่", - "839805709": "หากต้องการยืนยันคุณอย่างราบรื่นเราต้องการภาพถ่ายที่ดีกว่า", + "839805709": "เราจำเป็นต้องได้ภาพถ่ายที่ดีกว่านี้ของคุณเพื่อยืนยันตัวตนคุณอย่างราบรื่น", "841434703": "ปิดการใช้งาน stack", "841543189": "ดูธุรกรรมบนบล็อกเชน", "843333337": "คุณสามารถทำการฝากเงินเท่านั้น โปรดกรอก <0>การประเมินทางการเงิน เพื่อปลดล็อกการถอนเงิน", "845213721": "ออกจากระบบ", - "845304111": "ช่วงเวลา EMA ช้า {{ input_number }}", + "845304111": "ช่วงเวลา EMA ที่ช้า {{ input_number }}", "847888634": "กรุณาถอนเงินทั้งหมดของคุณ", "849805216": "เลือกตัวแทน", "850582774": "โปรดอัปเดตข้อมูลส่วนบุคคลของคุณ", - "851054273": "หากคุณเลือก \"สูงกว่า\" คุณจะได้รับเงินก็ต่อเมื่อ จุดออกสุดท้ายมีค่าสูงกว่าค่า Barrier", - "851264055": "สร้างรายการที่มีด้วยรายการที่กําหนดซ้ำสําหรับจํานวนครั้งที่ระบุ", - "851508288": "บล็อกนี้จำกัดหมายเลขที่กำหนดภายในช่วงที่ตั้งไว้", - "852583045": "สตริงรายการ Tick", + "851054273": "หากคุณเลือก \"สูงกว่า\" คุณจะได้รับเงินตอบแทนก็ต่อเมื่อจุดออกสุดท้ายมีค่าสูงกว่าค่าของเส้นระดับราคาเป้าหมายหรือ barrier", + "851264055": "สร้างลิสต์รายการขึ้นโดยใส่รายการที่ให้มาและที่มีการซ้ำตามจํานวนครั้งที่ระบุ", + "851508288": "บล็อกนี้จำกัดหมายเลขที่กำหนดภายในช่วงที่ตั้งค่าไว้", + "852583045": "สตริงลิสต์รายการ Tick", "854399751": "รหัสตัวเลขหลักต้องประกอบด้วยตัวเลขเท่านั้น", "854630522": "เลือกบัญชีคริปโตเคอเรนซี่", "857363137": "ดัชนีความผันผวน 300 (1s)", - "857445204": "ปัจจุบัน Deriv รองรับการถอน Tether eUSDT ไปยัง Ethereum wallet เพื่อให้แน่ใจว่าการทำธุรกรรมประสบความสำเร็จให้ป้อนที่อยู่ wallet ที่เข้ากันได้กับโทเค็นที่คุณต้องการถอน <0>เรียนรู้เพิ่มเติม", + "857445204": "ปัจจุบัน Deriv รองรับการถอนเหรียญโทเคน Tether eUSDT ไปยังกระเป๋าเงินของ Ethereum ทั้งนี้ เพื่อให้แน่ใจว่าการทำธุรกรรมนั้นประสบความสำเร็จ ให้คุณป้อนที่อยู่ของกระเป๋าเงินที่เข้ากันได้กับเหรียญโทเคนที่คุณต้องการถอน <0>เรียนรู้เพิ่มเติม", "857986403": "ทําอะไรสักอย่าง", "860319618": "การท่องเที่ยว", "862283602": "หมายเลขโทรศัพท์*", "863328851": "หลักฐานยืนยันตัวตน", - "864610268": "First, enter your {{label}} and the expiry date.", + "864610268": "ในขั้นตอนแรกให้คุณกรอกข้อมูล {{label}} และวันหมดอายุ", "864957760": "เลขบวก", "865424952": "สูง-ถึง-ต่ำ", "865642450": "2. ลงชื่อเข้าใช้จากเบราว์เซอร์อื่น", - "866496238": "โปรดตรวจสอบให้แน่ใจว่า รายละเอียดใบขับขี่ของคุณ สามารถมองเห็นได้ชัดเจน", + "866496238": "โปรดทำให้แน่ใจว่า รายละเอียดใบขับขี่ของคุณนั้นมองเห็นได้ชัดเจน ไม่เบลอหรือมีเงาสะท้อน", "868826608": "ยกเว้นจาก {{brand_website_name}} จนถึง", - "869611522": "เราจะเรียกเก็บค่าธรรมเนียมการโอน 2% หรือ {{minimum_fee}} {{currency}} แล้วแต่จำนวนใดจะสูงกว่า สำหรับการโอนเงินระหว่างสกุลเงินดิจิทัล Deriv ของคุณและบัญชี DMT5", + "869611522": "เราจะเรียกเก็บค่าธรรมเนียมการโอน 2% หรือ {{minimum_fee}} {{currency}} โดยแล้วแต่ว่าจำนวนใดจะสูงกว่า สำหรับการโอนเงินระหว่างบัญชีสกุลเงินดิจิทัล Deriv ของคุณและบัญชี DMT5", "869823595": "ฟังก์ชัน", - "872549975": "คุณมีการโอน {{number}} ที่เหลือสำหรับวันนี้", - "872661442": "คุณแน่ใจหรือไม่ว่าต้องการอัปเดตอีเมล <0>{{prev_email}} เป็น <1>{{changed_email}}", + "872549975": "คุณมีการโอนที่เหลืออยู่ {{number}} ครั้งสำหรับวันนี้", + "872661442": "คุณแน่ใจหรือไม่ว่าต้องการอัปเดตอีเมล์ <0>{{prev_email}} ไปเป็น <1>{{changed_email}}", "872817404": "เวลาจุดเข้า", - "872957901": "Dark (เร็วๆนี้กับ DBot)", - "873166343": "1. 'Log' แสดงข้อความที่ผิดปกติ", - "874461655": "สแกนรหัส QR ด้วยโทรศัพท์ของคุณ", - "874484887": "การทํากําไรต้องเป็นจํานวนบวก", + "872957901": "ธีมสีเข้ม (เร็วๆนี้กับ DBot)", + "873166343": "1. 'Log' แสดงข้อความปกติ", + "874461655": "สแกนรหัสคิวอาร์โค๊ดด้วยโทรศัพท์ของคุณ", + "874484887": "ตัวปิดการค้าเพื่อทํากําไรต้องเป็นจํานวนบวก", "875532284": "เริ่มกระบวนการใหม่ในอุปกรณ์อื่น", "876086855": "โปรดกรอกแบบฟอร์มการประเมินทางการเงินให้สมบรูณ์", "876292912": "ออก", @@ -682,7 +682,7 @@ "934932936": "ส่วนบุคคล", "936766426": "คุณถูก จํากัด ไว้ที่บัญชีเฟียตเดียว คุณจะไม่สามารถเปลี่ยนสกุลเงินในบัญชีได้หากคุณทําการฝากเงินครั้งแรกแล้ว", "937237342": "ชื่อกลยุทธ์ไม่สามารถเว้นว่างได้", - "937682366": "Upload both of these documents to prove your identity.", + "937682366": "อัปโหลดเอกสารทั้งสองฉบับนี้เพื่อการพิสูจน์ตัวตนของคุณ", "937831119": "ชื่อสกุล*", "937992258": "ตาราง", "938988777": "Barrier สูง", @@ -702,7 +702,7 @@ "948545552": "150+", "949859957": "ส่ง", "952655566": "ตัวแทนรับชำระเงิน", - "952927527": "ควบคุมโดยหน่วยงานบริการทางการเงินมอลตา (MFSA) (ใบอนุญาตเลขที่. IS/70156)", + "952927527": "ควบคุมดูแลโดยหน่วยงานบริการทางการเงินมอลตา (MFSA) (ใบอนุญาตเลขที่. IS/70156)", "955352264": "ซื้อขายใน {{platform_name_dxtrade}}", "956448295": "ตรวจพบภาพตัด", "957182756": "ฟังก์ชันตรีโกณมิติ", @@ -710,47 +710,47 @@ "959031082": "กำหนด {{ variable }} เป็น MACD Array {{ dropdown }} {{ dummy }}", "960201789": "3. เงื่อนไขการขาย", "961692401": "บอท", - "964780376": "เราไม่สามารถยืนยันรายละเอียดส่วนบุคคลของคุณกับบันทึกของเรา เพื่อเปิดใช้งานการฝากเงิน การถอนเงิน และการซื้อขาย คุณจําเป็นต้องอัปโหลดหลักฐานการยืนยันตัวตนของคุณ", + "964780376": "เราไม่สามารถตรวจสอบยืนยันรายละเอียดส่วนบุคคลของคุณในบันทึกของเราได้ ดังนั้นเพื่อเปิดใช้งานการฝากเงิน การถอนเงิน และการซื้อขาย คุณจําเป็นต้องอัปโหลดหลักฐานการยืนยันตัวตนของคุณ", "966457287": "กำหนด {{ variable }} เป็น Exponential Moving Average {{ dummy }}", "968576099": "ขึ้น/ลง", - "969987233": "ชนะและได้รับเงินสูงสุด หากจุดออกอยู่ระหว่างแนวล่างและแนวบน ในสัดส่วนความแตกต่างระหว่างจุดออกและแนวล่างที่ต่ำกว่า", + "969987233": "คุณจะชนะเงินตอบแทนจำนวนสูงสุด หากจุดออกนั้นอยู่ในระหว่างเส้นระดับราคาเป้าหมายอันล่างและอันบน เมื่อเปรียบเทียบสัดส่วนกับความแตกต่างระหว่างจุดออกและเส้นระดับราคาเป้าหมายอันล่าง", "970915884": "AN", "974888153": "สูง-ต่ำ", "975668699": "ข้าพเจ้ายืนยันและยอมรับ <0>ข้อกำหนดและเงื่อนไข ของ {{company}}", "975950139": "ประเทศที่พำนัก", "977929335": "ไปที่การตั้งค่าบัญชีของฉัน", "981138557": "เปลี่ยนเส้นทาง", - "981965437": "สแกน QR โค้ดด้านล่างด้วยแอป 2FAเราขอแนะนำ <0>Authy หรือ <1>Google Authenticator", + "981965437": "สแกนคิวอาร์โค๊ดด้านล่างด้วยแอปที่ใช้ 2FA ของคุณ โดยเราขอแนะนำให้ใช้ <0>Authy หรือ <1>Google Authenticator", "982402892": "บรรทัดแรกของที่อยู่", - "982829181": "Barriers", + "982829181": "เส้นระดับราคาเป้าหมาย", "987900242": "สินทรัพย์ทั้งหมดในบัญชีทดลอง Deriv {{platform_name_mt5}} และ {{platform_name_dxtrade}} ของคุณ", "988361781": "คุณยังไม่มีกิจกรรมการซื้อขาย", - "988934465": "เมื่อได้รับแจ้งเตือน คุณต้องเปิดใช้งานการเข้าถึงกล้องเพื่อดําเนินการต่อ", + "988934465": "เมื่อได้รับการแจ้งเตือน คุณต้องเปิดใช้งานการเข้าถึงกล้องเพื่อดําเนินการต่อ", "992294492": "รหัสไปรษณีย์ของคุณไม่ถูกต้อง", - "993827052": "การเลือกเขตอำนาจศาลนี้จะทำให้คุณมีบัญชี STP ทางการเงินการซื้อขายของคุณจะเข้าสู่ตลาดโดยตรงและมีสเปรดที่เข้มงวดมากขึ้น", + "993827052": "การเลือกเขตอำนาจศาลนี้จะทำให้คุณมีบัญชี STP Financial ทั้งนี้การซื้อขายของคุณจะเข้าสู่ตลาดโดยตรงและมีค่าสเปรดที่แน่นขึ้น", "995563717": "ไม่ใช่ {{ boolean }}", "999008199": "ข้อความ", "1001160515": "ขาย", - "1003876411": "ควรขึ้นต้นด้วยตัวอักษรหรือตัวเลข และอาจมียัติภังค์ จุด และเครื่องหมายทับ", - "1004127734": "ส่งอีเมล", + "1003876411": "ควรขึ้นต้นด้วยตัวอักษรหรือตัวเลข และอาจมียัติภังค์ เครื่องหมายจุด และเครื่องหมายทับ", + "1004127734": "ส่งอีเมล์", "1006458411": "ข้อผิดพลาด", "1006664890": "เงียบ", "1008240921": "เลือกตัวแทนชำระเงิน และติดต่อพวกเขาเพื่อขอคำแนะนำ", "1009032439": "ทุกเวลา", - "1010198306": "บล็อกนี้สร้างรายการที่มีสตริงและตัวเลข", - "1012102263": "คุณจะไม่สามารถเข้าสู่ระบบบัญชีของคุณได้จนกว่าจะถึงวันนี้ (สูงสุด 6 สัปดาห์นับจากวันนี้)", - "1015201500": "กำหนดการซื้อขายออปชันของคุณ เช่นระยะเวลา และเงินเดิมพัน", - "1016220824": "คุณต้องสลับไปยังบัญชีเงินจริงเพื่อใช้คุณสมบัตินี้ <0/>คุณสามารถทําได้โดยการเลือกบัญชีจริงจาก<1>ตัวสลับบัญชี", + "1010198306": "บล็อกนี้สร้างลิสต์รายการที่มีสตริงและตัวเลข", + "1012102263": "คุณจะไม่สามารถเข้าสู่ระบบบัญชีของคุณได้จนกว่าจะถึงวันที่ดังนี้ (สูงสุด 6 สัปดาห์นับจากวันนี้)", + "1015201500": "กำหนดตัวเลือกการซื้อขายของคุณเช่นระยะเวลาและเงินเดิมพัน", + "1016220824": "คุณจำเป็นต้องสลับไปยังบัญชีเงินจริงเพื่อใช้ลูกเล่นนี้ <0/>คุณสามารถทําได้โดยการเลือกบัญชีจริงจาก<1>ตัวสลับบัญชี", "1018803177": "ส่วนเบี่ยงเบนมาตรฐาน", "1019265663": "คุณยังไม่มีการทำธุรกรรม", "1019508841": "Barrier 1", "1022934784": "1 นาที", - "1023237947": "1. จากตัวอย่างด้านล่าง คำแนะนำจะถูกทำซ้ำตราบใดที่ค่าของ x น้อยกว่าหรือเท่ากับ 10 เมื่อค่าของ x เกินกว่า 10 ลูปจะถูกยกเลิก", - "1023643811": "บล็อกนี้ใช้ซื้อสัญญาประเภทที่ระบุ", + "1023237947": "1. จากตัวอย่างด้านล่าง คำแนะนำจะถูกทำซ้ำตราบใดที่ค่าของ x นั้นน้อยกว่าหรือเท่ากับ 10 ดังนั้นเมื่อค่าของ x เกินกว่า 10 แล้วการวนลูปจึงจะถูกยกเลิก", + "1023643811": "บล็อกนี้ใช้ซื้อสัญญาประเภทที่ระบุไว้โดยเฉพาะ", "1023795011": "คู่/คี่", - "1024205076": "ดำเนินการทางตรรกะ", - "1026046972": "โปรดป้อนจำนวนเงินที่ชำระที่ต่ำกว่า {{max_payout}}.", - "1027098103": "เลเวอเรจช่วยให้คุณสามารถซื้อขายตำแหน่งที่ใหญ่ขึ้นโดยใช้เงินทุนที่มีอยู่ เลเวอเรจจะแตกต่างกันไปในแต่ละสัญลักษณ์", + "1024205076": "การดำเนินการทางตรรกะ", + "1026046972": "โปรดป้อนจำนวนเงินตอบแทนที่ต่ำกว่า {{max_payout}}.", + "1027098103": "เลเวอเรจช่วยให้คุณสามารถเทรดตำแหน่งการค้าที่ใหญ่ขึ้นโดยใช้เงินทุนที่มีอยู่ ของคุณ ซึ่งตัวเลเวอเรจจะมีความหลากหลายแตกต่างกันไปในแต่ละสัญลักษณ์", "1028211549": "ต้องกรอกข้อมูลทุกช่อง", "1028758659": "สัญชาติ*", "1029164365": "เราสันนิษฐานว่าคุณมีประสบการณ์ ความรู้ และความเชี่ยวชาญที่จะตัดสินใจในการลงทุนของตนเองได้ และได้ประเมินความเสี่ยงที่เกี่ยวข้องไว้แล้วอย่างเหมาะสม.", @@ -803,56 +803,56 @@ "1082406746": "กรุณาใส่จำนวนเงินเดิมพันที่อย่างน้อย {{min_stake}}.", "1083781009": "เลขประจำตัวผู้เสียภาษี", "1083826534": "เปิดใช้งานบล็อก", - "1088138125": "Tick {{current_tick}} - ", + "1088138125": "ค่า Tick {{current_tick}} - ", "1096175323": "คุณจะต้องมีบัญชี Deriv", - "1098622295": "\"i\" เริ่มต้นด้วยค่า 1 และจะเพิ่มขึ้น 2 ทุกครั้งการทำซ้ำจนกว่า \"i\" ถึงค่า 12 แล้วการทำซ้ำจะสิ้นสุดลง", - "1100870148": "หากต้องการเรียนรู้เพิ่มเติมเกี่ยวกับข้อ จำกัด ของบัญชี และวิธีการใช้งานโปรดไปที่ <0>ศูนย์ช่วยเหลือ.", + "1098622295": "\"i\" เริ่มต้นด้วยค่า 1 และจะเพิ่มขึ้นทีละ 2 ในทุกครั้งของการทำซ้ำจนกว่าตัว \"i\" นั้นจะมีมูลค่าถึง 12 หลังจากนั้นการวนลูปซ้ำจะสิ้นสุดลง", + "1100870148": "หากต้องการเรียนรู้เพิ่มเติมเกี่ยวกับข้อจำกัดของบัญชีและวิธีการใช้งาน โปรดไปที่ <0>ศูนย์ช่วยเหลือ.", "1101560682": "สแตค", "1101712085": "ราคาซื้อ", - "1102420931": "Next, upload the front and back of your driving licence.", - "1102995654": "คำนวณรายการ Exponential Moving Average (EMA) จากรายการมูลค่าในระยะเวลาหนึ่ง", + "1102420931": "ขั้นตอนต่อไปคือ โปรดอัพโหลดใบขับขี่ของคุณทั้งด้านหน้าและด้านหลัง", + "1102995654": "คำนวณลิสต์รายการเส้น Exponential Moving Average (EMA) จากลิสต์รายการที่ระบุมูลค่าและระยะเวลา", "1103309514": "เป้าหมาย", - "1103452171": "คุกกี้ช่วยให้เราได้รับประสบการณ์ที่ดีขึ้นและเนื้อหาส่วนบุคคลบนเว็บไซต์ของเรา", - "1104912023": "รอการตรวจสอบ", + "1103452171": "หน่วยความจำของเวปหรือ cookies ช่วยให้เรานำเสนอสิ่งต่อไปนี้ให้คุณได้แก่ประสบการณการใช้งานเว็บไซต์ของเราที่ดีขึ้นและเนื้อหาที่ปรับให้เข้ากับคุณ", + "1104912023": "รอการตรวจสอบยืนยัน", "1107474660": "ส่งหลักฐานยืนยันที่อยู่", "1107555942": "ถึง", - "1109217274": "เรียบร้อยแล้ว", + "1109217274": "สำเร็จแล้ว!", "1110102997": "รายการบัญชี", "1112582372": "ช่วงเวลา", "1113119682": "บล็อกนี้ให้คุณเลือกค่าแท่งเทียนจากรายการของแท่งเทียน", "1113292761": "น้อยกว่า 8MB", - "1117863275": "ความปลอดภัยและการรักษาความปลอดภัย", - "1118294625": "คุณได้เลือกที่จะแยกตัวเองออกจากการซื้อขายบนเว็บไซต์ของเราจนถึง {{exclusion_end}} หากคุณไม่สามารถทำการซื้อขายหรือฝากเงินได้หลังจากระยะเวลาการยกเว้นตัวเอง โปรดติดต่อเราผ่านแชทสด", - "1119887091": "การตรวจสอบ", + "1117863275": "ความมั่นคงและความปลอดภัย", + "1118294625": "คุณได้เลือกที่จะกันตัวเองออกจากการซื้อขายบนเว็บไซต์ของเราจนถึง {{exclusion_end}} หากคุณไม่สามารถทำการซื้อขายหรือฝากเงินได้หลังจากช่วงระยะเวลาการกันตัวเอง โปรดติดต่อเราผ่านแชทสด", + "1119887091": "การตรวจสอบยืนยัน", "1119986999": "หลักฐานยืนยันที่อยู่ของคุณถูกนำส่งเรียบร้อยแล้ว", "1120985361": "ข้อตกลงและเงื่อนไขล่าสุด", "1122910860": "โปรดกรอก<0>การประเมินทางการเงินของคุณ", "1123927492": "คุณยังไม่ได้เลือกสกุลเงินในบัญชีของคุณ", "1125090693": "ต้องเป็นตัวเลข", - "1126934455": "ความยาวของชื่อโทเค็นจะต้องอยู่ระหว่าง 2 ถึง 32 ตัวอักษร", + "1126934455": "ความยาวของชื่อโทเคนจะต้องอยู่ระหว่าง 2 ถึง 32 ตัวอักษร", "1127149819": "โปรดตรวจสอบให้แน่ใจว่า§", "1128404172": "ยกเลิก", - "1129124569": "หากคุณเลือก \"Under\" คุณจะได้รับเงินก็ต่อเมื่อ ตัวเลขหลักสุดท้ายของค่า tick สุดท้าย น้อยกว่าตัวเลขที่คุณคาดการณ์ไว้", + "1129124569": "หากคุณเลือก \"Under\" คุณจะได้รับเงินตอบแทนก็ต่อเมื่อตัวเลขหลักสุดท้ายของค่า tick จุดสุดท้ายนั้นมีค่าน้อยกว่าตัวเลขที่คุณคาดการณ์ไว้", "1129296176": "ประกาศสำคัญเพื่อรับเงินของคุณ", "1129842439": "โปรดป้อนจำนวนเงินทำกำไรที่ต้องการ", - "1130744117": "เราจะพยายามแก้ไขข้อร้องเรียนของคุณภายใน 10 วันทําการ เราจะแจ้งให้คุณทราบถึงผลที่ได้พร้อมกับคําอธิบายจุดยืนของเรา และเสนอมาตรการแก้ไขใดๆ ที่เราตั้งใจจะดำเนินการ", + "1130744117": "เราจะพยายามแก้ไขข้อร้องเรียนของคุณภายใน 10 วันทําการ เราจะแจ้งให้คุณทราบถึงผลที่ได้พร้อมกับคําอธิบายจุดยืนของเรา และเสนอมาตรการเยียวยาแก้ไขใดๆ ที่เราตั้งใจจะดำเนินการ", "1130791706": "N", - "1133651559": "ไลฟ์แชท", - "1134879544": "ตัวอย่างของเอกสารที่มีแสงจ้า", + "1133651559": "แชทสด", + "1134879544": "ตัวอย่างของเอกสารที่มีแสงสะท้อน", "1139483178": "เปิดใช้งาน stack", "1143730031": "ทิศทางคือ {{ direction_type }}", - "1144028300": "Relative Strength Index Array (RSIA)", - "1145927365": "รันบล็อกข้างในหลังจากจำนวนวินาทีที่กำหนด", + "1144028300": "ตัวชี้วัด Relative Strength Index Array (RSIA)", + "1145927365": "เรียกใช้บล็อกภายในหลังจากจำนวนวินาทีที่กำหนด", "1146064568": "ไปที่หน้าฝากเงิน", - "1147269948": "Barrier ไม่สามารถเป็นศูนย์ได้", + "1147269948": "เส้นระดับราคาเป้าหมายไม่อาจเป็นศูนย์ได้", "1147625645": "โปรดดำเนินการถอนเงินทั้งหมดออกจากบัญชีของคุณก่อน <0>30 พฤศจิกายน 2021", "1151964318": "ทั้งสองด้าน", - "1152294962": "Upload the front of your driving licence.", - "1154021400": "รายการ", + "1152294962": "โปรดอัพโหลดด้านหน้าของใบขับขี่ของคุณ", + "1154021400": "ลิสต์รายการ", "1154239195": "หัวข้อและชื่อ", "1155011317": "บล็อกนี้แปลงวันที่และเวลาเป็นจำนวนวินาทีตั้งแต่ Unix Epoch (1970-01-01 00:00:00)", - "1158678321": "<0>b ประธานคณะกรรมการระงับข้อพิพาท (DRC) จะติดต่อคุณและเราภายใน 5 วันทำการเพื่อรับข้อมูลที่จำเป็นทั้งหมด และดูว่ามีโอกาสที่จะยุติข้อร้องเรียนในระหว่างขั้นตอนการตรวจสอบหรือไม่", - "1160761178": "ไม่มีการจ่ายเงิน หากจุดออกต่ำกว่า หรือ เท่ากับแนวล่าง", + "1158678321": "<0>b ประธานคณะกรรมการระงับข้อพิพาท (DRC) จะติดต่อทั้งทางคุณและทางเราภายใน 5 วันทำการเพื่อรับข้อมูลที่จำเป็นทั้งหมด และดูว่ามีโอกาสที่จะยุติข้อร้องเรียนได้ในระหว่างขั้นตอนการตรวจสอบหรือไม่", + "1160761178": "ไม่มีการจ่ายเงินตอบแทน หากจุดออกนั้นต่ำกว่าหรือเท่ากับเส้นระดับราคาเป้าหมายอันล่าง", "1161924555": "โปรดเลือกตัวเลือก", "1163836811": "อสังหาริมทรัพย์", "1164773983": "การทำกำไร/หยุดการขาดทุน ไม่สามารถใช้งานได้ในขณะที่การยกเลิกข้อตกลงนั้นใช้งานอยู่", @@ -897,7 +897,7 @@ "1211912982": "กำลังเริ่มรันบอท", "1214893428": "การสร้างบัญชีไม่สามารถใช้งานบนมือถือได้ในขณะนี้ โปรดเข้าสู่ระบบด้วยคอมพิวเตอร์ของคุณเพื่อสร้างบัญชีใหม่", "1216408337": "อาชีพอิสระ", - "1217481729": "Tether as an ERC20 token (eUSDT) is a version of Tether that is hosted on Ethereum.", + "1217481729": "เหรียญดิจิทัล Tether ERC20 (eUSDT) นั้นเป็นเวอร์ชันหนึ่งของเหรียญโทเคน Tether ที่ถูกสร้างขึ้นบนแพลตฟอร์มเครือข่าย Ethereum", "1218546232": "Fiat onramp คืออะไร?", "1219844088": "ทำ %1", "1221250438": "หากต้องการเปิดใช้งานการถอน โปรดส่ง <0>หลักฐานแสดงตัว (POI) และ <1>หลักฐานที่อยู่ (POA) และกรอก<2>การประเมินทางการเงินในบัญชีของคุณ การตั้งค่า", @@ -908,67 +908,67 @@ "1227074958": "เศษส่วนแบบสุ่ม", "1227240509": "พื้นที่ปรับแต่ง", "1228208126": "โปรดยืนยันที่อยู่ของคุณ", - "1228534821": "ตัวแทนการชําระเงินบางสกุลอาจไม่รองรับบางสกุลเงินในประเทศของคุณ", + "1228534821": "ตัวแทนการชําระเงินในประเทศของคุณนั้นอาจจะไม่รองรับค่าเงินบางสกุล", "1229883366": "เลขประจำตัวผู้เสียภาษี", "1230884443": "รัฐ/จังหวัด (สามารถเลือกได้)", "1231282282": "ใช้เฉพาะอักขระพิเศษต่อไปนี้: {{permitted_characters}}", "1232291311": "ยอดการถอนสูงสุดที่เหลืออยู่", "1232353969": "มี 0-5 การทำธุรกรรมใน 12 เดือนที่ผ่านมา", - "1233300532": "ชำระเงิน", + "1233300532": "เงินตอบแทน", "1234292259": "แหล่งที่มาของรายได้", "1235426525": "50%", "1237330017": "ผู้รับบำนาญ", "1238311538": "ผู้ดูแลระบบ", - "1239940690": "เริ่มบอทใหม่เมื่อพบข้อผิดพลาด", + "1239940690": "เริ่มการทำงานของบอทใหม่เมื่อพบข้อผิดพลาด", "1240027773": "โปรดเข้าสู่ระบบ", - "1241238585": "คุณสามารถโอนระหว่างบัญชี Deriv fiat สกุลเงินดิจิทัล และบัญชี {{platform_name_mt5}} ได้", + "1241238585": "คุณสามารถโอนระหว่างบัญชีเงินเฟียต Deriv บัญชีสกุลเงินดิจิทัล และบัญชี {{platform_name_mt5}} ของคุณได้", "1243064300": "ท้องถิ่น", - "1246207976": "ป้อนรหัสการรับรองความถูกต้องที่สร้างโดยแอพ 2FA ของคุณ", - "1246880072": "เลือกประเทศที่ออก", - "1247280835": "แคชเชียร์สกุลเงินดิจิทัลของเราหยุดให้บริการชั่วคราวเนื่องจากการบำรุงรักษาระบบ คุณสามารถทำการฝากและถอนเงินดิจิตอลได้ในเวลาไม่กี่นาทีเมื่อการบำรุงรักษาเสร็จสิ้น", + "1246207976": "ป้อนรหัสพิสูจน์ตัวตนเพื่อยืนยันเข้ารับบริการที่สร้างขึ้นโดยแอป 2FA ของคุณ", + "1246880072": "เลือกประเทศที่ออกเอกสาร", + "1247280835": "แคชเชียร์สกุลเงินดิจิทัลของเรานั้นหยุดให้บริการชั่วคราวเนื่องจากมีการบำรุงรักษาระบบ คุณสามารถทำการฝากและถอนเงินดิจิตอลได้ในเวลาไม่กี่นาทีเมื่อการบำรุงรักษาเสร็จสิ้น", "1248018350": "แหล่งที่มาของรายได้", - "1248940117": "<0>a การตัดสินใจของ DRC มีผลผูกพันกับเรา การตัดสินใจของ DRC จะมีผลผูกพันกับคุณก็ต่อเมื่อคุณยอมรับ", - "1250495155": "คัดลอกโทเคนแล้ว", - "1254565203": "กำหนด {{ variable }} เพื่อสร้างรายการด้วย", + "1248940117": "<0>a การตัดสินใจของ DRC มีผลผูกพันกับเรา การตัดสินใจของ DRC จะมีผลผูกพันกับคุณก็ต่อเมื่อคุณยอมรับเท่านั้น", + "1250495155": "คัดลอกโทเคนแล้ว!", + "1254565203": "กำหนด {{ variable }} เพื่อสร้างลิสต์รายการด้วย", "1255909792": "สุดท้าย", "1255963623": "ถึงวันที่/เวลา {{ input_timestamp }} {{ dummy }}", "1258097139": "เราจะปรับปรุงอะไรได้บ้าง?", "1258198117": "เชิงบวก", "1259598687": "GBP/JPY", - "1260259925": "โทรศัพท์ ไม่ได้อยู่ในรูปแบบที่ถูกต้อง", - "1263387702": "บัญชีทั้ง {{count}} ประเภทใช้การดําเนินการทางตลาด ซึ่งหมายความว่าคุณเห็นด้วยกับราคาของโบรกเกอร์ล่วงหน้า และจะวางคําสั่งซื้อในราคาโบรกเกอร์", + "1260259925": "โทรศัพท์ไม่ได้อยู่ในรูปแบบที่ถูกต้อง", + "1263387702": "บัญชีทั้ง {{count}} ประเภทใช้การดําเนินการทางตลาด ซึ่งหมายความว่า คุณเห็นด้วยล่วงหน้ากับราคาของโบรกเกอร์และจะวางคําสั่งซื้อขายตามราคาของโบรกเกอร์", "1264096613": "ค้นหาสตริงที่กำหนด", "1265704976": "", - "1270581106": "หากคุณเลือก \"ไม่สัมผัส\" คุณจะได้รับเงินก็ต่อเมื่อ ตลาดไม่แตะค่า Barrier เลย ณ เวลาใดๆ ในระยะเวลาของสัญญา", + "1270581106": "หากคุณเลือก \"ไม่แตะ\" คุณจะได้รับเงินตอบแทนก็ต่อเมื่อความเคลื่อนไหวตลาดไม่แตะค่าเส้นระดับราคาเป้าหมายหรือ barrier เลย ณ เวลาใดๆ ในช่วงระยะเวลาของสัญญา", "1272012156": "GBP/CHF", "1272337240": "วัน", "1272681097": "ชั่วโมง", "1274819385": "3. การร้องเรียนและข้อพิพาท", "1275474387": "รวดเร็ว", - "1281045211": "เรียงลําดับรายการในรายการที่กําหนด ตามค่าตัวเลขหรือตัวอักษรทั้งในลําดับจากน้อยไปหามาก หรือจากมากไปหาน้อย", + "1281045211": "เรียงลําดับรายการในลิสต์รายการที่กําหนด ตามมูลค่าตัวเลขหรือตัวอักษรทั้งในลําดับจากน้อยไปหามากหรือจากมากไปหาน้อย", "1281290230": "เลือก", "1282951921": "ลงเท่านั้น", - "1284522768": "หากเลือก \"แพ้\" ระบบจะส่งคืน \"จริง\" หากการซื้อขายครั้งสุดท้ายของคุณไม่สำเร็จ ไม่อย่างนั้นจะส่งคืนสตริงว่าง", + "1284522768": "หากเลือก \"แพ้\" ระบบจะส่งคืนค่าว่า \"จริง\" หากการซื้อขายครั้งสุดท้ายของคุณไม่สำเร็จ ถ้าไม่อย่างนั้นระบบจะส่งคืนสตริงที่ว่างเปล่า", "1286094280": "ถอนเงิน", "1286507651": "ปิดหน้าจอการยืนยันตัวตน", "1288965214": "หนังสือเดินทาง", - "1289646209": "เรียกมาร์จิ้น", + "1289646209": "การเรียกหลักประกัน", "1290525720": "ตัวอย่าง: ", - "1291887623": "ความถี่ในการซื้อขายดิจิทัลออปชัน", - "1292891860": "ส่งข้อความทางเทเลแกรม", - "1293660048": "รวมขาดทุนสูงสุดต่อวัน", - "1294756261": "บล็อกนี้สร้างฟังก์ชัน ซึ่งเป็นกลุ่มคำแนะนำที่สามารถดำเนินการได้ตลอดเวลา วางบล็อกอื่นๆ ในที่นี่เพื่อดำเนินการตามที่คุณต้องการในกลยุทธ์ของคุณ เมื่อคำแนะนำทั้งหมดในฟังก์ชันได้รับการดำเนินการ บอทของคุณจะยังคงมีบล็อกที่เหลืออยู่ในกลยุทธ์ของคุณ คลิกที่ช่อง “ทำอะไรสักอย่าง” เพื่อตั้งชื่อที่คุณเลือก คลิกที่ไอคอนเครื่องหมายบวกเพื่อส่งค่า (เป็นตัวแปรที่มีชื่อ) ไปยังฟังก์ชันของคุณ", - "1295284664": "โปรดยอมรับข้อตกลง <0>ข้อกำหนดและเงื่อนไขล่าสุด ของเราเพื่อดำเนินการต่อ", + "1291887623": "ความถี่ในการซื้อขายตราสารสิทธิดิจิทัล", + "1292891860": "ส่งข้อความแจ้ง Telegram", + "1293660048": "ยอดรวมขาดทุนรายวันขั้นสูงสุด", + "1294756261": "บล็อกนี้สร้างฟังก์ชัน ซึ่งเป็นกลุ่มคำสั่งที่สามารถดำเนินการได้ตลอดเวลา วางบล็อกอื่นๆ ลงที่นี่เพื่อให้มีการดำเนินการตามที่คุณต้องการในกลยุทธ์ของคุณ เมื่อคำสั่งทั้งหมดในฟังก์ชันได้ถูกดำเนินการแล้วบอทของคุณจะยังคงทำงานตามบล็อกที่เหลืออยู่ในกลยุทธ์ของคุณ โปรดคลิกที่ช่อง “ทำอะไรสักอย่าง” เพื่อตั้งชื่อที่คุณเลือก แล้วคลิกที่ไอคอนเครื่องหมายบวกเพื่อส่งค่า (ในฐานะที่เป็นตัวแปรที่มีชื่อแล้ว) ไปยังฟังก์ชันของคุณ", + "1295284664": "โปรดยอมรับ <0>ข้อกำหนดและเงื่อนไขล่าสุด ของเราเพื่อดำเนินการต่อ", "1296380713": "ปิดสัญญาของฉัน", "1299479533": "8 ชั่วโมง", - "1301668579": "เรากำลังดำเดินการเพื่อให้คุณสามารถใช้งานได้เร็วๆนี้ หากคุณมีบัญชีอื่น ให้ทำการสลับไปใช้บัญชีนั้นเพื่อดำเนินการซื้อขายต่อ คุณอาจเพิ่มบัญชี DMT5 Financial", + "1301668579": "เรากำลังดำเนินการเพื่อให้คุณสามารถใช้งานได้เร็วๆนี้ หากคุณมีบัญชีอื่นอยู่ก็ให้สลับไปใช้บัญชีนั้นก่อนเพื่อดำเนินการซื้อขายต่อ หรือคุณอาจเพิ่มบัญชี DMT5 Financial", "1302691457": "อาชีพ", "1303016265": "ใช่", "1303530014": "เรากําลังดําเนินการถอนเงินของคุณ", "1304083330": "คัดลอก", "1304620236": "เปิดใช้งานกล้อง", "1304788377": "<0/><1/>หากการร้องเรียนของคุณเกี่ยวข้องกับแนวทางปฏิบัติในการประมวลผลข้อมูลของเรา คุณสามารถส่งข้อร้องเรียนอย่างเป็นทางการที่ <2>ข้อมูลและคณะกรรมการคุ้มครองข้อมูล (มอลตา) บนเว็บไซต์ของพวกเขาหรือร้องเรียนไปยังหน่วยงานกํากับดูแลใดๆ ภายในสหภาพยุโรป", - "1305217290": "Upload the back of your identity card.", + "1305217290": "โปรดอัพโหลดด้านหลังของบัตรประจำตัวประชาชนของคุณ", "1308625834": "ตั้งค่าช่วงเวลาเริ่มต้นสําหรับบล็อกที่อ่านรายการของแท่งเทียน", "1309017029": "การเปิดใช้งานนี้จะช่วยให้คุณสามารถบันทึกบล็อกของคุณ เป็นหนึ่งในคอลเลคชั่นที่สามารถรวมเข้ากับบอทอื่นๆได้อย่างง่ายดาย", "1309044871": "คืนรายการค่า tick ล่าสุดในรูปแบบของสตริง", @@ -1009,7 +1009,7 @@ "1348009461": "โปรดปิดสถานะของคุณในบัญชี Deriv X ต่อไปนี้:", "1349289354": "เยี่ยม นั่นคือสิ่งที่เราต้องการ", "1349295677": "ในข้อความ {{ input_text }} รับสตริงย่อยจาก {{ position1 }} {{ index1 }} ถึง {{ position2 }} {{ index2 }}", - "1351152200": "ยินดีต้อนรับสู่แดชบอร์ด Deriv MT5 (DMT5)", + "1351152200": "ยินดีต้อนรับสู่หน้ากระดาน Deriv MT5 (DMT5)", "1351906264": "คุณลักษณะนี้ไม่สามารถใช้ได้สำหรับตัวแทนการชำระเงิน", "1353197182": "โปรดเลือก", "1355250245": "{{ calculation }} จากรายการ {{ input_list }}", @@ -1101,7 +1101,7 @@ "1453362009": "บัญชี Deriv", "1454648764": "รหัสอ้างอิงข้อตกลง", "1454865058": "อย่าป้อนที่อยู่ที่เชื่อมโยงกับการซื้อ ICO หรือ การขายจำนวณมาก หากทำเช่นนั้นโทเค็น ICO จะไม่ถูกโอนเข้าบัญชีของคุณ", - "1455741083": "Upload the back of your driving licence.", + "1455741083": "โปรดอัพโหลดด้านหลังของใบขับขี่ของคุณ", "1457603571": "ไม่มีการแจ้งเตือน", "1461323093": "แสดงข้อความในคอนโซลของนักพัฒนาซอฟต์แวร์", "1464190305": "บล็อกนี้จะถ่ายโอนการควบคุมกลับไปที่บล็อกเงื่อนไขการซื้อ ทำให้คุณสามารถซื้อสัญญาอื่นได้ โดยไม่ต้องหยุดหรือรีสตาร์ทการทำงานบอทของคุณ", @@ -1146,7 +1146,7 @@ "1510735345": "บล็อกนี้จะให้รายการตัวเลขหลักสุดท้ายของค่า 1000 tick", "1512469749": "จากตัวอย่างข้างต้นจะสันนิษฐานว่าตัวแปร candle_open_price มีการประมวลผลภายในบล็อกอื่น", "1516537408": "คุณไม่สามารถซื้อขายบน Deriv หรือฝากเงินเข้าบัญชีของคุณได้อีกต่อไป", - "1516559721": "Please select one file only", + "1516559721": "โปรดเลือกเพียง 1 ไฟล์เท่านั้น", "1516676261": "ฝากเงิน", "1517503814": "วางไฟล์หรือคลิกที่นี่เพื่ออัพโหลด", "1519336051": "ลองใช้หมายเลขโทรศัพท์อื่น", @@ -1208,7 +1208,7 @@ "1619070150": "คุณกำลังถูกเปลี่ยนเส้นทางไปยังเว็บไซต์ภายนอก", "1620278321": "ชื่อและนามสกุลตัวเองสามารถคาดเดาได้ง่าย", "1620346110": "กำหนดสกุลเงิน", - "1621024661": "Tether as a TRC20 token (tUSDT) is a version of Tether that is hosted on Tron.", + "1621024661": "เหรียญดิจิทัล Tether TRC20 (tUSDT) นั้นเป็นเวอร์ชันหนึ่งของเหรียญโทเคน Tether ที่ถูกสร้างขึ้นบนแพลตฟอร์มเครือข่าย Tron", "1622662457": "จากวันที่", "1623706874": "ใช้บล็อกนี้เมื่อคุณต้องการใช้ตัวคูณเป็นประเภทการค้าของคุณ", "1630372516": "ลอง Fiat onramp ของเรา", @@ -1243,7 +1243,7 @@ "1656155124": "ส่งอีกครั้งใน <0 /> วินาที", "1658954996": "ผู้ผลิต เจ้าหน้าที่ปฏิบัติการในโรงงานและเครื่องจักร", "1659074761": "Reset Put", - "1664508280": "เพิ่มบัญชี DMT5 {{account_type}} ของคุณภายใต้ Deriv (BVI) Ltd ซึ่งควบคุมโดยคณะกรรมการบริการทางการเงินหมู่เกาะบริติชเวอร์จิน (ใบอนุญาตเลขที่. SIBA/{{line_break}}L/18/1114)", + "1664508280": "เพิ่มบัญชี DMT5 {{account_type}} ของคุณภายใต้บริษัท Deriv (BVI) Ltd ซึ่งถูกควบคุมดูแลโดยคณะกรรมการบริการทางการเงินหมู่เกาะบริติชเวอร์จิน (ใบอนุญาตเลขที่. SIBA/{{line_break}}L/18/1114)", "1665272539": "โปรดจําไว้ว่า: คุณไม่สามารถเข้าสู่ระบบบัญชีของคุณได้จนกว่าจะถึงวันที่เลือก", "1665738338": "ยอดคงเหลือ", "1665756261": "ไปที่แชทสด", @@ -1257,7 +1257,7 @@ "1677990284": "แอปของฉัน", "1682409128": "กลยุทธ์ที่ไม่มีชื่อ", "1682636566": "ส่งอีเมลอีกครั้งที่", - "1683963454": "Your contract will be closed automatically at the next available asset price on {{date}} at {{timestamp}}.", + "1683963454": "สัญญาของคุณจะถูกปิดโดยอัตโนมัติที่จุดแสดงราคาอันถัดไปของสินทรัพย์ในวันที่ {{date}} เวลา {{timestamp}}", "1684148009": "รวมสินทรัพย์ในบัญชีจริง Deriv และ {{platform_name_mt5}} ของคุณ", "1684419981": "นี่คืออะไร?", "1686800117": "{{error_msg}}", @@ -1303,14 +1303,14 @@ "1739668049": "ปิดบัญชี ของคุณ", "1740371444": "ยังไม่ได้เลือกตลาดที่อ้างอิง", "1740843997": "ซื้อสกุลเงินดิจิทัลในทันที เพลิดเพลินไปกับการแลกเปลี่ยนที่ง่าย รวดเร็ว และปลอดภัย โดยใช้วิธีการชําระเงินในท้องถิ่นของคุณ", - "1742256256": "Please upload one of the following documents:", + "1742256256": "โปรดอัปโหลดหนึ่งในรายการเอกสารต่อไปนี้:", "1743448290": "ตัวแทนชำระเงิน", "1743902050": "ทำการประเมินทางการเงินของคุณให้เสร็จสมบูรณ์", "1745523557": "- รากที่สอง", "1746051371": "ดาวน์โหลดแอป", "1746273643": "Moving Average Convergence Divergence", "1747501260": "เงื่อนไขการขาย", - "1747523625": "Go back", + "1747523625": "ย้อนกลับ", "1747674345": "โปรดใช้ `. 'เป็นตัวคั่นทศนิยมสำหรับตัวเลขบางส่วน", "1747682136": "สัญญาถูกยกเลิก", "1748754976": "เริ่มทำงาน", @@ -1322,7 +1322,7 @@ "1761038852": "ดำเนินการต่อด้วยการให้หลักฐานยืนยันที่อยู่และหลักฐานยืนยันตัวตน", "1761762171": "เริ่มการซื้อขายใหม่ เนื่องจากเกิดข้อผิดพลาด (บอทละเว้นการซื้อขายที่ไม่สำเร็จ): {{ checkbox }}", "1762707297": "หมายเลขโทรศัพท์", - "1763123662": "Upload your NIMC slip.", + "1763123662": "อัพโหลดสลิป NIMC ของคุณ", "1766993323": "ตัวอักษร ตัวเลข และขีดล่างเท่านั้นที่อนุญาตให้ใช้", "1767726621": "เลือกตัวแทน", "1768861315": "นาที", @@ -1340,7 +1340,7 @@ "1782395995": "คาดการณ์ตัวเลขหลักสุดท้าย", "1782690282": "เมนูบล็อก", "1782703044": "ลงชื่อเข้าใช้", - "1783740125": "Upload your selfie", + "1783740125": "อัพโหลดรูปเซลฟี่ของคุณ", "1787135187": "โปรดระบุรหัสไปรษณีย์", "1787492950": "ตัวบ่งชี้ในแท็บแผนภูมิมีไว้ใช้เพื่อบ่งชี้เท่านั้น และอาจแตกต่างกันเล็กน้อยในส่วนพื้นที่ทำงานของ {{platform_name_dbot}}", "1788966083": "01-07-1999", @@ -1370,7 +1370,7 @@ "1813958354": "ลบความคิดเห็น", "1815034361": "ตามลำดับอักษร", "1815995250": "สัญญาซื้อ", - "1816126006": "การซื้อขายใน Deriv MT5 ({{platform_name_dmt5}}) เป็นแพลตฟอร์มการซื้อขาย FX และ CFD แบบครบวงจร", + "1816126006": "การซื้อขายใน Deriv MT5 ({{platform_name_dmt5}}) เป็นแพลตฟอร์มการซื้อขายฟอเร็กซ์หรือ FX และสัญญาการซื้อขายส่วนต่างหรือ CFD แบบครบวงจร", "1817154864": "บล็อกนี้ให้ตัวเลขสุ่มจากภายในช่วงที่กําหนด", "1820242322": "ตัวอย่างเช่น สหรัฐอเมริกา", "1820332333": "เติมเงิน", @@ -1379,7 +1379,7 @@ "1827607208": "ไฟล์ยังไม่ถูกอัปโหลด", "1830520348": "รหัสผ่าน {{platform_name_dxtrade}}", "1833481689": "ปลดล็อค", - "1833499833": "Proof of identity documents upload failed", + "1833499833": "การอัพโหลดเอกสารเพื่อยืนยันตัวตนล้มเหลว", "1837762008": "โปรดส่งหลักฐานยืนยันตัวตนและหลักฐานที่อยู่เพื่อยืนยันบัญชีของคุณในการตั้งค่าบัญชีเพื่อเข้าถึงแคชเชียร์", "1838639373": "แหล่งข้อมูล", "1840865068": "กำหนด {{ variable }} เป็น Simple Moving Average Array {{ dummy }}", @@ -1403,7 +1403,7 @@ "1854480511": "แคชเชียร์ถูกล็อค", "1855566768": "ตําแหน่งรายการ", "1858251701": "นาที", - "1859308030": "Give feedback", + "1859308030": "ให้ข้อเสนอแนะ", "1863053247": "โปรดอัปโหลดเอกสารระบุตัวตนของคุณ", "1866811212": "ฝากเงินในสกุลเงินท้องถิ่นของคุณผ่านตัวแทนการชำระเงินอิสระที่ได้รับอนุญาตในประเทศของคุณ", "1866836018": "<0/><1/> หากการร้องเรียนของคุณเกี่ยวข้องกับแนวทางปฏิบัติในการประมวลผลข้อมูลของเรา คุณสามารถส่งข้อร้องเรียนอย่างเป็นทางการที่หน่วยงานกำกับดูแลในพื้นที่ของคุณ", @@ -1450,7 +1450,7 @@ "1913777654": "สลับบัญชีหรือไม่", "1914014145": "วันนี้", "1914270645": "ช่วงเวลาแท่งเทียนเริ่มต้น: {{ candle_interval_type }}", - "1914725623": "Upload the page that contains your photo.", + "1914725623": "โปรดอัพโหลดหน้าเอกสารที่มีรูปถ่ายของคุณอยู่", "1917523456": "บล็อกนี้ส่งข้อความไปยังช่องเทเลแกรม คุณจะต้องสร้างเทเลแกรมบอทของคุณเองเพื่อใช้งานบล็อกนี้", "1917804780": "คุณจะสูญเสียการเข้าถึงบัญชีตัวเลือกของคุณเมื่อปิดดังนั้นอย่าลืมถอนเงินทั้งหมดของคุณ (หากคุณมีบัญชี CFD คุณสามารถโอนเงินจากบัญชีตัวเลือกของคุณไปยังบัญชี CFD ของคุณ)", "1918633767": "บรรทัดที่สองของที่อยู่ ไม่ได้อยู่ในรูปแบบที่ถูกต้อง", @@ -1500,17 +1500,17 @@ "1968368585": "สถานะการจ้างงาน", "1971898712": "เพิ่มหรือจัดการบัญชี", "1973536221": "คุณยังไม่มีตำแหน่งที่เปิด", - "1973564194": "คุณถูก จํากัด ไว้ที่บัญชีเฟียตเดียว คุณจะไม่สามารถเปลี่ยนสกุลเงินบัญชีของคุณได้หากคุณทําการฝากเงินครั้งแรกหรือสร้างบัญชี {{dmt5_label}} หรือ {{platform_name_dxtrade}} จริง", + "1973564194": "คุณถูกจํากัดไว้ที่บัญชีเงินเฟียตเดียว คุณจะไม่สามารถเปลี่ยนสกุลเงินในบัญชีของคุณได้หากคุณได้ทําการฝากเงินครั้งแรกหรือสร้างบัญชี {{dmt5_label}} หรือ {{platform_name_dxtrade}} เพื่อใช้จริงไว้แล้ว", "1974273865": "ขอบเขตนี้จะทำให้แอพของบริษัทอื่นสามารถดูกิจกรรมในบัญชี การตั้งค่า ขีดจำกัด งบดุล ประวัติการซื้อการค้า และอื่นๆ", - "1978130174": "เขตอำนาจศาลสำหรับบัญชี DMT5 CFD ของคุณ", - "1981940238": "นโยบายการร้องเรียนนี้ อาจมีการเปลี่ยนแปลงเป็นครั้งคราวมีผลบังคับใช้กับบัญชีของคุณที่ลงทะเบียนกับ {{legal_entity_name_svg}} และ {{legal_entity_name_v}}", + "1978130174": "เขตอำนาจศาลสำหรับบัญชี DMT5 เพื่อค้า CFDs ของคุณ", + "1981940238": "นโยบายการร้องเรียนนี้ ซึ่งอาจมีการเปลี่ยนแปลงเป็นครั้งคราว มีผลบังคับใช้กับบัญชี (ทั้งเดี่ยวหรือหลายบัญชี) ของคุณที่ลงทะเบียนกับ {{legal_entity_name_svg}} และ {{legal_entity_name_v}}", "1982912252": "Relative Strength Index (RSI) จากรายการในระยะเวลาหนึ่ง", "1983001416": "กำหนดตัวเลือกการค้าของคุณ เช่น ตัวคูณและเงินเดิมพัน บล็อกนี้สามารถใช้ได้เฉพาะกับประเภทการค้าตัวคูณเท่านั้น หากคุณเลือกประเภทการค้าอื่น บล็อกนี้จะถูกแทนที่ด้วยบล็อกตัวเลือกการค้า", "1983387308": "ดูตัวอย่าง", "1983544897": "ไม่สามารถระบุ P.O. Box ได้ในช่องที่อยู่", "1983676099": "โปรดตรวจสอบอีเมล์ของคุณสำหรับรายละเอียดเพิ่มเติม", "1984700244": "ขอข้อมูลอินพุต", - "1984742793": "Uploading documents", + "1984742793": "การอัปโหลดเอกสาร", "1985366224": "ในแต่ละวัน คุณสามารถโอนเงินระหว่างบัญชี Deriv ได้สูงสุด {{ allowed_internal }} รายการและโอนได้สูงสุด {{ allowed_mt5 }} รายการระหว่างบัญชี Deriv และ {{platform_name_mt5}}", "1985637974": "บล็อกต่างๆ ที่วางในบล็อกนี้จะถูกดำเนินการในทุก tick หากช่วงเวลาเริ่มต้นของแท่งเทียนถูกตั้งค่าเป็น 1 นาทีในบล็อกรูทพารามิเตอร์ การซื้อขายในบล็อกนี้จะถูกดำเนินการทุกๆนาที วางบล็อกนี้ไว้นอกบล็อกรูทใดๆ", "1986498784": "BTC/LTC", @@ -1577,13 +1577,13 @@ "2057082550": "ยอมรับการอัปเดตของเรา <0>ข้อกำหนดและเงื่อนไข", "2057419639": "จุดออก", "2058978040": "รหัสผ่าน {{platform_name_dxtrade}} ของคุณมีไว้สำหรับลงชื่อเข้าใช้บัญชี {{platform_name_dxtrade}} ของคุณบนเว็บและแอปมือถือ", - "2060873863": "Your order {{order_id}} is complete", + "2060873863": "คำสั่งค้าของคุณ {{order_id}} เสร็จสมบูรณ์แล้ว", "2062912059": "ฟังก์ชัน {{ function_name }} {{ function_params }}", "2063655921": "การซื้อสัญญา \"ปิด-ต่ำ\" คุณจะทำเงินที่ตัวคูณหลายเท่าของความแตกต่างระหว่างค่าปิด และต่ำตลอดระยะเวลาของสัญญา", "2063812316": "ข้อความรายการบัญชี", "2063890788": "ยกเลิกเรียบร้อยแล้ว", "2065278286": "สเปรด", - "2067903936": "Driving licence", + "2067903936": "ใบขับขี่", "2070002739": "ไม่ยอมรับ", "2070752475": "ข้อมูลเกี่ยวกับกฎระเบียบ", "2074235904": "โปรดระบุนามสกุล", @@ -1600,7 +1600,7 @@ "2088735355": "ข้อจำกัดเซสชั่นและการเข้าสู่ระบบของคุณ", "2089087110": "ดัชนีตะกร้า", "2089299875": "สินทรัพย์ทั้งหมดในบัญชีจริง Deriv ของคุณ", - "2089581483": "Expires on", + "2089581483": "หมดอายุภายใน", "2091671594": "สถานะ", "2093167705": "คุณสามารถทำการฝากเงินเท่านั้น โปรดติดต่อเราผ่านการแชทสดสำหรับข้อมูลเพิ่มเติม", "2093675079": "- ปิด: ราคาปิด", @@ -1650,16 +1650,16 @@ "2145995536": "สร้างบัญชีใหม่", "2146336100": "ในข้อความ %1 ได้รับ %2", "2146892766": "ประสบการณ์การซื้อขายไบนารีออปชัน", - "-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.", + "-153346659": "อัพโหลดรูปเซลฟี่ของคุณ", + "-602131304": "หมายเลขหนังสือเดินทาง", + "-1051213440": "โปรดอัพโหลดด้านหน้าและด้านหลังของบัตรประจำตัวประชาชนของคุณ", + "-1600807543": "ขั้นตอนแรก ให้กรอกหมายเลขบัตรประจำตัวประชาชนและวันหมดอายุบัตรของคุณ", + "-1139923664": "ขั้นตอนต่อไปคือ โปรดอัพโหลดด้านหน้าและด้านหลังของบัตรประจำตัวประชาชนของคุณ", + "-783705755": "โปรดอัพโหลดด้านหน้าของบัตรประจำตัวประชาชนของคุณ", + "-566750665": "สลิป NIMC และหลักฐานแสดงอายุ", + "-1465944279": "หมายเลขสลิป NIMC", + "-429612996": "ขั้นตอนต่อไป อัพโหลดทั้งสองประเภทเอกสารดังต่อไปนี้", + "-376981174": "โปรดอัพโหลดหลักฐานแสดงอายุได้แก่: ใบเกิด หรือเอกสารที่ประกาศอายุ", "-612174191": "โปรดระบุที่อยู่ของบรรทัดแรก", "-242734402": "โปรดใช้อักขระ {{max}} เท่านั้น", "-378415317": "โปรดระบุรัฐ", @@ -1874,7 +1874,7 @@ "-2005211699": "สร้าง", "-2115275974": "CFD", "-988523882": "DMT5", - "-460645791": "คุณถูก จํากัด ไว้ที่บัญชีเฟียตเดียว คุณจะไม่สามารถเปลี่ยนสกุลเงินบัญชีของคุณได้หากคุณทําการฝากเงินครั้งแรกหรือสร้างบัญชี {{dmt5_label}}", + "-460645791": "คุณถูกจํากัดไว้ที่บัญชีเฟียตเดียว คุณจะไม่สามารถเปลี่ยนสกุลเงินในบัญชีของคุณได้หากคุณได้ทําการฝากเงินครั้งแรกหรือสร้างบัญชี {{dmt5_label}} เพื่อใช้จริงไว้แล้ว", "-1146960797": "สกุลเงิน Fiat", "-1959484303": "สกุลเงินดิจิตอล", "-561724665": "คุณถูก จำกัด เพียงหนึ่งสกุลเงิน fiat เท่านั้น", @@ -1948,12 +1948,12 @@ "-1084991359": "ไม่จำเป็นต้องใช้หลักฐานยืนยันตัวตน", "-1981334109": "บัญชีของคุณไม่จำเป็นต้องยืนยันตัวตนในขณะนี้ เราจะแจ้งให้คุณทราบหากจำเป็นต้องมีการยืนยันตัวตน", "-182918740": "การส่งหลักฐานยืนยันตัวตนของคุณล้มเหลวเนื่องจาก:", - "-246893488": "JPEG, JPG, PNG, PDF, or GIF", - "-1454880310": "Must be valid for at least 6 months", - "-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", + "-246893488": "ไฟล์ภาพ JPEG, JPG, PNG, PDF หรือ GIF", + "-1454880310": "ต้องยังมีอายุใช้งานได้อีกอย่างน้อย 6 เดือน", + "-100534371": "ก่อนอัพโหลด โปรดตรวจสอบให้แน่ใจว่าคุณได้หันหน้าไปทางด้านหน้าในรูปเซลฟี่ โดยใบหน้าของคุณนั้นอยู่ในกรอบ และสามารถมองเห็นดวงตาของคุณได้ชัดเจนในรูปแม้ว่าคุณจะสวมแว่นตาก็ตาม", + "-1529523673": "ทำการยืนยันและอัปโหลด", + "-705047643": "ขออภัย เกิดข้อผิดพลาดขึ้น กรุณาเลือกแฟ้มอื่น", + "-1664309884": "คลิกที่นี่เพื่ออัปโหลด", "-1725454783": "ล้มเหลว", "-839094775": "กลับ", "-337979330": "เราไม่สามารถยืนยันหลักฐานยืนยันตัวตนของคุณได้", @@ -1970,7 +1970,7 @@ "-848721396": "ขีดจำกัดการซื้อขายเหล่านี้เป็นทางเลือก และคุณสามารถปรับแต่งได้ตลอดเวลา หากคุณไม่ต้องการกำหนดขีด จำกัด ให้ทำการเว้นช่องว่างไว้ หากคุณอาศัยอยู่ในสหราชอาณาจักร ฝ่ายบริการลูกค้าสามารถลบหรือลดขีด จำกัด การซื้อขายของคุณได้หลังจาก 24 ชั่วโมงหลังจากได้รับคําขอ หากคุณอาศัยอยู่ในไอล์ออฟแมน ฝ่ายบริการลูกค้าสามารถลบหรือลดขีดจำกัด การซื้อขายของคุณได้หลังจากระยะเวลาจำกัดการซื้อขายของคุณหมดอายุลง", "-469096390": "ขีดจำกัดการซื้อขายเหล่านี้เป็นทางเลือก และคุณสามารถปรับแต่งได้ตลอดเวลา หากคุณไม่ต้องการกำหนดขีด จำกัด ให้ทำการเว้นช่องว่างไว้ ฝ่ายบริการลูกค้าสามารถลบหรือลดขีดจำกัดการซื้อขายของคุณได้ หลังจากได้รับคำขอเป็นเวลา 24 ชั่วโมงเท่านั้น", "-42808954": "คุณยังสามารถป้องกันตนเองทั้งหมดในช่วงเวลาที่กำหนด สิ่งนี้จะลบออกได้ก็ต่อเมื่อการป้องกันตนเองของคุณหมดอายุลง หากคุณต้องการซื้อขายต่อเมื่อระยะเวลาการป้องกันตนเองสิ้นสุดลง คุณต้องติดต่อฝ่ายบริการลูกค้าโดยโทรไปที่ <0>+447723580049 เพื่อยกเลิกการป้องกันตนเอง การร้องขอทางแชทหรืออีเมลไม่เพียงพอ จะมีช่วงเวลาในการพัก 24 ชั่วโมงก่อนที่คุณจะสามารถซื้อขายต่อได้", - "-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.", + "-1088698009": "ขีดจำกัดของระบบการกันตนเองจะช่วยให้คุณสามารถควบคุมจำนวนเงินและเวลาที่คุณใช้ในการซื้อขายบน {{platform_name_trader}}, {{platform_name_dbot}},{{platform_name_smarttrader}}, และ {{platform_name_bbot}} บน Deriv ได้ ทั้งนี้ ขีดจำกัดที่คุณกำหนดไว้ที่นี่จะช่วยให้คุณทำ <0>การซื้อขายอย่างรับผิดชอบ", "-1702324712": "ขีดจำกัดเป็นทางเลือกและคุณสามารถปรับเปลี่ยนได้ตลอดเวลา ขึ้นอยู่กับคุณว่าต้องการซื้อขายแค่ไหนและระยะเวลาที่คุณต้องการ หากคุณไม่ต้องการกำหนดขีดจำกัด สามารถเว้นเป็นช่องว่างได้", "-1819875658": "คุณยังสามารถป้องกันตนเองทั้งหมดในช่วงเวลาที่กำหนด เมื่อช่วงเวลาการป้องกันตนเองสิ้นสุดลงคุณสามารถขยายเวลาเพิ่มเติมหรือทำการซื้อขายต่อได้ทันที หากคุณต้องการลดหรือยกเลิกช่วงเวลาการป้องกันตนเอง โปรดติดต่อ <0>ฝ่ายบริการลูกค้า ของเรา", "-1031814119": "เกี่ยวกับขีดจำกัดการซื้อขายและการป้องกันตนเอง", @@ -2003,7 +2003,7 @@ "-1635977118": "เวลาของการยกเว้นต้องไม่น้อยกว่า 6 เดือน", "-1617352279": "อีเมลอยู่ในโฟลเดอร์สแปรมของคุณ (บางครั้งบางอย่างอาจหายไปที่นั่น)", "-547557964": "ไม่สามารถส่งอีเมลไปยังที่อยู่นี้ (โดยปกติเกิดจากไฟร์วอลล์หรือการตั้งค่า)", - "-976364600": "โปรดคลิกที่ลิงค์ในอีเมลเพื่อเปลี่ยนรหัสผ่าน DMT5 ของคุณ", + "-976364600": "โปรดคลิกที่ลิงก์ในอีเมล์เพื่อเปลี่ยนรหัสผ่าน DMT5 ของคุณ", "-742748008": "ตรวจสอบอีเมลของคุณและคลิกลิงก์ในอีเมลเพื่อดำเนินการต่อ", "-84068414": "หากยังไม่ได้รับอีเมล โปรดติดต่อเราทาง <0>แชทสด", "-2073934245": "บริการซื้อขายทางการเงินในเว็บไซต์นี้เหมาะสำหรับลูกค้าที่ยอมรับความเป็นไปได้ของการขาดทุนเงินทั้งหมดที่พวกเขาลงทุนและผู้ที่เข้าใจ และมีประสบการณ์เกี่ยวกับความเสี่ยงที่เกี่ยวข้องกับการซื้อสัญญาทางการเงิน การทำธุรกรรมในสัญญาทางการเงินมีความเสี่ยงสูง หากสัญญาที่คุณซื้อหมดอายุ คุณจะสูญเสียเงินลงทุนทั้งหมด ซึ่งรวมถึงค่าธรรมเนียมของสัญญาดังกล่าวด้วย", @@ -2075,7 +2075,7 @@ "-26491905": "คุณกําลังใช้บัญชีผู้ใช้ {{identifier_title}} ของคุณเพื่อเข้าสู่ระบบบัญชีผู้ใช้ Deriv ของคุณ เมื่อต้องการเปลี่ยนวิธีการเข้าสู่ระบบของคุณให้เป็นชื่อผู้ใช้และรหัสผ่าน ให้คลิกปุ่ม <0>ยกเลิกการเชื่อมโยง", "-596920538": "ยก เลิก", "-1319725774": "รหัสผ่าน DMT5", - "-1403020742": "รหัสผ่าน DMT5 ของคุณใช้สําหรับเข้าสู่ระบบบัญชี Deriv MT5 ของคุณบนเดสก์ท็อป เว็บ และแอปบนอุปกรณ์เคลื่อนที่", + "-1403020742": "รหัสผ่าน DMT5 ของคุณนั้นจะใช้สําหรับเข้าใช้ระบบบัญชี Deriv MT5 ของคุณบนเดสก์ท็อป เว็บ และแอปบนอุปกรณ์เคลื่อนที่", "-412891493": "ปิดใช้งาน 2FA", "-200487676": "เปิดใช้งาน", "-1840392236": "นั่นไม่ใช่รหัสที่ถูกต้อง โปรดลองอีกครั้ง", @@ -2177,8 +2177,8 @@ "-949074612": "กรุณาติดต่อเราผ่านทาง แชทสด", "-1318742415": "บัญชีของคุณยังไม่ได้รับการยืนยัน โปรดส่ง <0>หลักฐานระบุตัวตน และ <1>หลักฐานแสดงที่อยู่ เพื่อตรวจสอบบัญชีและขอถอนเงิน", "-127614820": "ขออภัย คุณสามารถฝากเงินได้เท่านั้น โปรดติดต่อเราผ่านแชทสดเพื่อเปิดใช้งานการถอนเงิน", - "-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.", + "-172277021": "แคชเชียร์ถูกล็อคสำหรับการถอนเงิน", + "-1624999813": "ดูเหมือนว่า คุณไม่มีค่าคอมมิชชั่นที่จะถอนได้ในขณะนี้ คุณสามารถทำการถอนเงินได้เมื่อคุณได้รับค่าคอมมิชชั่นแล้ว", "-1077304626": "จำนวน ({{currency}})", "-1559994981": "ค่าโดยประมาณ", "-190084602": "การทำธุรกรรม", @@ -2203,7 +2203,7 @@ "-2056016338": "คุณจะไม่ถูกเรียกเก็บค่าธรรมเนียมการโอนสำหรับการโอนเงินในสกุลเงินเดียวกันระหว่างบัญชี Deriv fiat และ {{platform_name_mt5}} ของคุณ", "-599632330": "เราจะเรียกเก็บค่าธรรมเนียมการโอน 1% สำหรับการโอนเงินในสกุลเงินต่างๆ ระหว่างบัญชี Deriv fiat และ {{platform_name_mt5}} และระหว่างบัญชี Deriv fiat และ {{platform_name_dxtrade}}", "-1196994774": "เราจะเรียกเก็บค่าธรรมเนียมการโอน 2% หรือ {{minimum_fee}} {{currency}} แล้วแต่จำนวนใดจะสูงกว่า สำหรับการโอนเงินระหว่างบัญชีสกุลเงินดิจิทัล Deriv ของคุณ", - "-401630542": "เราจะเรียกเก็บค่าธรรมเนียมการโอน 2% หรือ {{minimum_fee}} {{currency}} แล้วแต่จำนวนใดจะสูงกว่า สำหรับการโอนเงินระหว่างสกุลเงินดิจิทัล Deriv ของคุณและบัญชี DMT5 และระหว่างบัญชีสกุลเงินดิจิทัล Deriv และบัญชี {{platform_name_dxtrade}}", + "-401630542": "เราจะเรียกเก็บค่าธรรมเนียมการโอน 2% หรือ {{minimum_fee}} {{currency}} โดยแล้วแต่ว่าจำนวนใดจะสูงกว่า สำหรับการโอนเงินระหว่างบัญชีสกุลเงินดิจิทัล Deriv และบัญชี DMT5 ของคุณและระหว่างบัญชีสกุลเงินดิจิทัล Deriv และบัญชี {{platform_name_dxtrade}} ของคุณ", "-1151983985": "ขีดจำกัดของการโอนอาจแตกต่างกันไปขึ้นอยู่กับอัตราแลกเปลี่ยน", "-1747571263": "โปรดทราบว่าการโอนบางอย่างอาจไม่สามารถทำได้", "-757062699": "การโอนอาจไม่สามารถใช้ได้เนื่องจากความผันผวนสูงหรือปัญหาทางเทคนิคและเมื่อตลาดแลกเปลี่ยนถูกปิด", @@ -2267,7 +2267,7 @@ "-328036042": "โปรดป้อนจำนวนเงินหยุดการขาดทุน ที่สูงกว่าการขาดทุนที่อาจเกิดขึ้นในปัจจุบัน", "-2127699317": "หยุดการขาดทุนไม่ถูกต้อง ค่าของหยุดการขาดทุนไม่สามารถมากกว่าค่าของเงินเดิมพัน", "-1940333322": "DBot ไม่สามารถใช้ได้กับบัญชีนี้", - "-1210387519": "ไปที่แดชบอร์ด DMT5", + "-1210387519": "ไปที่หน้ากระดาน DMT5", "-1223145005": "จำนวนขาดทุน: {{profit}}", "-1062922595": "หมายเลขอ้างอิง (ซื้อ)", "-2068574600": "หมายเลขอ้างอิง (ขาย)", @@ -2281,7 +2281,7 @@ "-764102808": "Google Drive", "-1109191651": "ต้องเป็นตัวเลขที่มากกว่า 0", "-1917772100": "รูปแบบตัวเลขไม่ถูกต้อง", - "-1553945114": "Value must be higher than 2", + "-1553945114": "มูลค่าต้องสูงกว่า 2", "-689786738": "ระยะเวลาขั้นต่ำ: {{ min }}", "-184183432": "ระยะเวลาสูงสุด: {{ max }}", "-749186458": "การสลับบัญชีถูกปิดการใช้งานในขณะที่บอทกำลังทำงาน โปรดหยุดบอทก่อนทำการสลับบัญชี", @@ -2461,7 +2461,7 @@ "-1717650468": "ออนไลน์", "-1825471709": "ประสบการณ์การซื้อขายใหม่ทั้งหมดบนแพลตฟอร์มที่มีประสิทธิภาพและใช้งานง่าย", "-981017278": "ซื้อขายอัตโนมัติ โดยไม่จำเป็นต้องเข้ารหัส", - "-398198412": "การซื้อขายใน Deriv MT5 (DMT5) เป็นแพลตฟอร์มการซื้อขาย FX และ CFD แบบครบวงจร", + "-398198412": "ทำการซื้อขายใน Deriv MT5 (DMT5) ซึ่งเป็นแพลตฟอร์มการซื้อขายฟอเร็กซ์หรือ FX และสัญญาการซื้อขายส่วนต่างหรือ CFD แบบครบวงจร", "-1793883644": "เทรด FX และ CFD บนแพลตฟอร์มการซื้อขายที่ปรับแต่งได้และใช้งานง่าย", "-1309011360": "ตําแหน่งที่เปิด", "-883103549": "บัญชีถูกปิดใช้งาน", @@ -2475,7 +2475,7 @@ "-895331276": "กรอกหลักฐานยืนยันที่อยู่ของคุณ", "-782679300": "กรอกหลักฐานยืนยันตัวตนของคุณ", "-1019903756": "บัญชี Synthetic", - "-1548220954": "SVG สังเคราะห์", + "-1548220954": "สังเคราะห์ SVG", "-328128497": "บัญชี Financial", "-533935232": "การเงิน BVI", "-565431857": "ลาบวนทางการเงิน", @@ -2563,7 +2563,7 @@ "-540474806": "บัญชีตัวเลือกของคุณมีกําหนดจะปิด", "-618539786": "บัญชีของคุณมีกำหนดจะปิด", "-945275490": "ถอนเงินทั้งหมดจากบัญชีตัวเลือกของคุณ", - "-2093768906": "{{name}} has released your funds.
Would you like to give your feedback?", + "-2093768906": "{{name}} ได้ปล่อยเงินของคุณแล้ว
คุณต้องการจะให้ความคิดเห็นของคุณหรือไม่?", "-705744796": "ยอดเงินในบัญชีทดลองของคุณถึงขีด จำกัด สูงสุดแล้วและคุณจะไม่สามารถทำการซื้อขายใหม่ได้ รีเซ็ตยอดเงินของคุณเพื่อทำการซื้อขายต่อจากบัญชีทดลองของคุณ", "-1585069798": "โปรดคลิกลิงก์ต่อไปนี้เพื่อทำการทดสอบความเหมาะสมของคุณ", "-1287141934": "ดูข้อมูลเพิ่มเติม", @@ -2608,7 +2608,7 @@ "-402093392": "เพิ่มบัญชี Deriv", "-277547429": "บัญชี Deriv จะอนุญาตให้คุณฝากเงิน (และถอนเงินจากบัญชี MT5) ของคุณได้", "-1721181859": "คุณจะต้องมีบัญชี {{deriv_account}}", - "-1989074395": "โปรดเพิ่มบัญชี {{deriv_account}} ก่อนเพิ่มบัญชี {{dmt5_account}} การฝากเงินและถอนเงินสําหรับบัญชี {{dmt5_label}} ของคุณทำได้โดยการโอนเงินเข้าและออกผ่านบัญชี {{deriv_label}} ของคุณ", + "-1989074395": "โปรดเพิ่มบัญชี {{deriv_account}} เสียก่อนที่จะเพิ่มบัญชี {{dmt5_account}} การฝากเงินและถอนเงินสําหรับบัญชี {{dmt5_label}} ของคุณนั้นทำได้โดยการโอนเงินเข้าและออกผ่านบัญชี {{deriv_label}} ของคุณ", "-689237734": "ประมวลผล", "-1642457320": "ศูนย์การช่วยเหลือ", "-1966944392": "สถานะเครือข่าย: {{status}}", @@ -2705,8 +2705,8 @@ "-1744351732": "ไม่แน่ใจว่าจะเริ่มต้นที่ไหน?", "-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}}", + "-1941013000": "นโยบายการร้องเรียนนี้ ซึ่งอาจมีการเปลี่ยนแปลงเป็นครั้งคราว มีผลบังคับใช้กับบัญชี (ทั้งเดี่ยวหรือหลายบัญชี) ของคุณที่ลงทะเบียนกับ {{legal_entity_name_svg}}, {{legal_entity_name_fx}} และ {{legal_entity_name_v}}", + "-594812204": "นโยบายการร้องเรียนนี้ ซึ่งอาจมีการเปลี่ยนแปลงเป็นครั้งคราว มีผลบังคับใช้กับบัญชี (ทั้งเดี่ยวหรือหลายบัญชี) ของคุณที่ลงทะเบียนกับ {{legal_entity_name_svg}}", "-1639808836": "หากคุณไม่พอใจกับผลลัพธ์คุณสามารถส่งต่อการร้องเรียนของคุณไปที่ <0>บริการตัดสินการเดิมพันอิสระ (IBAS) โดยกรอกแบบฟอร์มการตัดสินของ IBAS โปรดทราบว่า IBAS เกี่ยวข้องกับข้อพิพาทที่เกิดจากการทำธุรกรรมเท่านั้น", "-1505742956": "<0/><1/> คุณยังสามารถอ้างถึงข้อพิพาทของคุณไปยัง Malta Gaming Authority โดยผ่าน <2>หน่วยสนับสนุนผู้เล่น", "-1406192787": "หากคุณไม่พอใจกับผลลัพธ์ คุณสามารถส่งเรื่องร้องเรียนของคุณไปยัง <0>คณะกรรมการทางการเงิน", @@ -2756,7 +2756,7 @@ "-1434036215": "บัญชีทดลอง Financial", "-1416247163": "บัญชี Financial STP", "-1882063886": "สาธิต CFD", - "-1347908717": "สาธิตการเงิน SVG", + "-1347908717": "บัญชีทดลอง Financial SVG", "-785625598": "ใช้ข้อมูลรับรองเหล่านี้เพื่อเข้าสู่ระบบบัญชี {{platform}} ของคุณบนเว็บไซต์และแอปสําหรับอุปกรณ์เคลื่อนที่", "-997127433": "เปลี่ยนรหัสผ่าน", "-162753510": "เพิ่มบัญชีจริง", @@ -2791,7 +2791,7 @@ "-1190393389": "ใส่รหัสผ่าน {{platform}} ของคุณเพื่อเพิ่มบัญชี {{platform}} {{account}} ของคุณ", "-2057918502": "คําแนะนํา: คุณอาจป้อนรหัสผ่าน Deriv ของคุณซึ่งต่างจากรหัสผ่าน {{platform}} ของคุณ", "-1928229820": "รีเซ็ตรหัสผ่านนักลงทุน Deriv X", - "-1917043724": "รีเซ็ตรหัสผ่านนักลงทุน DMT5", + "-1917043724": "ตั้งรหัสผ่านใหม่ของนักลงทุน DMT5", "-1087845020": "หลัก", "-1950683866": "นักลงทุน", "-89838213": "คุณสามารถเติมเงินในบัญชีทดลองจำนวน <0> หากมียอดคงเหลือในบัญชี <1> หรือน้อยกว่า", @@ -2825,9 +2825,9 @@ "-104382603": "ตรวจสอบหลักฐานที่อยู่ของคุณ", "-793684335": "ตรวจสอบหลักฐานยืนยันตัวตนของคุณ", "-1271218821": "บัญชีที่เพิ่มเข้ามา", - "-1422519943": "เพิ่มบัญชี DMT5 {{account_type}} ของคุณภายใต้ Deriv (V) Ltd ซึ่งควบคุมโดยคณะกรรมาธิการบริการทางการเงินวานูอาตู", - "-2032649678": "เพิ่มบัญชี DMT5 {{account_type}} STP ของคุณภายใต้ Deriv (FX) Ltd ควบคุมโดย Labuan Financial Services Authority (ใบอนุญาตเลขที่. MB/18/0024)", - "-801751276": "เพิ่มบัญชี DMT5 CFD ของคุณภายใต้ Deriv Investments (Europe) Limited ซึ่งควบคุมโดยหน่วยงานบริการทางการเงินมอลตา (MFSA) (ใบอนุญาตเลขที่. IS/70156)", + "-1422519943": "เพิ่มบัญชี DMT5 {{account_type}} ของคุณภายใต้บริษัท Deriv (V) Ltd ซึ่งถูกควบคุมดูแลโดยคณะกรรมาธิการบริการทางการเงินวานูอาตู", + "-2032649678": "เพิ่มบัญชี DMT5 {{account_type}} STP ของคุณภายใต้บริษัท Deriv (FX) Ltd ซึ่งถูกควบคุมดูแลโดย Labuan Financial Services Authority (ใบอนุญาตเลขที่. MB/18/0024)", + "-801751276": "เพิ่มบัญชี DMT5 CFD ของคุณภายใต้บริษัท Deriv Investments (Europe) Limited ซึ่งถูกควบคุมดูแลโดยหน่วยงานบริการทางการเงินมอลตา (MFSA) (ใบอนุญาตเลขที่. IS/70156)", "-16048185": "ในการสร้างบัญชีนี้ก่อน เราต้องการหลักฐานยืนยันตัวตนและที่อยู่ของคุณ", "-1627989291": "ในการสร้างบัญชีนี้ก่อน เราจำเป็นต้องให้คุณส่งหลักฐานยืนยันตัวตนของคุณอีกครั้ง", "-1389025684": "ในการสร้างบัญชีนี้ก่อน เราจำเป็นต้องให้คุณส่งหลักฐานยืนยันตัวตนและที่อยู่ของคุณอีกครั้ง", @@ -2835,9 +2835,9 @@ "-352187285": "เลือกเขตอำนาจศาลสำหรับบัญชี DMT5 {{account_type}} ของคุณ", "-1728185398": "ส่งหลักฐานที่อยู่ใหม่", "-1961967032": "ส่งหลักฐานยืนยันตัวตนอีกครั้ง", - "-10956371": "คุณต้องมีบัญชีจริง (สกุลเงิน fiat หรือสกุลเงินดิจิตอล) ใน Deriv เพื่อสร้างบัญชีจริง DMT5", + "-10956371": "คุณต้องมีบัญชีจริง (สกุลเงินเฟียตหรือสกุลเงินดิจิตอล) ใน Deriv เพื่อสร้างบัญชีจริง DMT5", "-1760596315": "สร้างบัญชี Deriv", - "-705682181": "Malta", + "-705682181": "มอลตา", "-194969520": "บริษัทคู่ค้า", "-1131400885": "บริษัท เดริฟ อินเวนต์ (ยุโรป) จำกัด", "-409563066": "ผู้ควบคุม", @@ -2967,7 +2967,7 @@ "-390994177": "ควรอยู่ระหว่าง {{min}} ถึง {{max}}", "-2055106024": "สลับระหว่างการตั้งค่าระยะเวลาขั้นสูง และแบบง่าย", "-1012793015": "เวลาสิ้นสุด", - "-2037881712": "Your contract will be closed automatically at the next available asset price on <0>.", + "-2037881712": "สัญญาของคุณจะถูกปิดโดยอัตโนมัติที่จุดแสดงราคาอันถัดไปของสินทรัพย์ในวันที่ <0>", "-629549519": "ค่าคอมมิชชั่น <0/>", "-2131859340": "ยุติการซื้อขาย <0/>", "-1686280757": "<0>{{commission_percentage}}% ของ (<1/> * {{multiplier}})", @@ -3163,6 +3163,7 @@ "-311268215": "บล็อกนี้แปลงสตริงข้อความที่แสดงวันที่และเวลาเป็นวินาที ตั้งแต่ Unix Epoch (1 มกราคม 1970) การชดเชยเวลาและโซนเวลาเป็นทางเลือก ตัวอย่าง 2019-01-01 21:03:45 GMT + 0800 จะถูกแปลงเป็น 1546347825", "-1797602591": "หยุดการขาดทุน: {{ currency }} {{ stop_loss }}", "-1214929127": "การหยุดขาดทุนต้องเป็นจํานวนบวก", + "-780745489": "หากประเภทของสัญญาเป็น “Both” ซึ่งแปลว่าทั้งสองอย่าง เงื่อนไขการซื้อจึงควรรวมทั้ง Rise และ Fall โดยใช้ “Conditional Block”", "-2142851225": "ตัวเลือกการค้าตัวคูณ", "-625636913": "จำนวนต้องเป็นจำนวนบวก", "-1466383897": "ช่วงเวลา: {{ duration_unit }} {{ duration_value }}", @@ -3270,7 +3271,7 @@ "-1452908801": "พบข้อผิดพลาดในขณะเรียกไฟล์จาก Google Drive", "-232617824": "เกิดข้อผิดพลาดขณะกำลังดำเนินการตามคำขอของคุณ", "-1800672151": "ดัชนี GBP", - "-1904030160": "Transaction performed by (App ID: {{app_id}})", + "-1904030160": "ดำเนินธุรกรรมโดย (App ID: {{app_id}})", "-513103225": "เวลาทำธุรกรรม", "-2066666313": "เครดิต/เดบิต", "-2140412463": "ราคาซื้อ", diff --git a/packages/translations/src/translations/tr.json b/packages/translations/src/translations/tr.json index fd9c5630dcfb..e4b5fb9f8f10 100644 --- a/packages/translations/src/translations/tr.json +++ b/packages/translations/src/translations/tr.json @@ -17,10 +17,10 @@ "26596220": "Finans", "27582767": "{{amount}} {{currency}}", "27830635": "Deriv (V) Ltd", - "28581045": "Add a real MT5 account", + "28581045": "Gerçek bir MT5 hesabı ekleyin", "30801950": "Hesabınız, Malta Oyun Otoritesi tarafından düzenlenen {{legal_entity_name}} ile açılacak ve Malta yasalarına tabi olacaktır.", "33433576": "Lütfen paranızı çekmek için bir e-cüzdan kullanın.", - "35089987": "Upload the front and back of your driving licence.", + "35089987": "Ehliyetinizin önünü ve arkasını yükleyin.", "39720204": "AUD Endeksi", "41737927": "Teşekkür ederim", "44877997": "Oturma izni", @@ -38,7 +38,7 @@ "59662816": "Belirtilen sınırlar önceden bildirilmeksizin değiştirilebilir.", "62748351": "Liste Uzunluğu", "63869411": "Bu blok, seçime göre belirli bir numarayı test eder", - "64402604": "Check transfer information", + "64402604": "Transfer bilgilerini kontrol edin", "65185694": "Fiat onramp", "65982042": "Toplam", "66519591": "Yatırımcı şifresi", @@ -54,7 +54,7 @@ "74963864": "Altında", "76916358": "Para çekme sınırına ulaştınız. <0/>Para çekme işleminize devam etmek ve sınırı yükseltmek için lütfen kimlik kanıtınızı ve adresinizi yükleyin.", "81450871": "Bu sayfayı bulamadık", - "82839270": "Upload the page of your passport that contains your photo.", + "82839270": "Pasaportunuzun fotoğrafınızı içeren sayfasını yükleyin.", "83202647": "Bloğu Daralt", "85343079": "Finansal değerlendirme", "85389154": "Cep telefonunuzda doğrulamaya devam etmek için gereken adımlar", @@ -66,7 +66,7 @@ "98972777": "rastgele madde", "100239694": "Bilgisayarınızdan kartın ön tarafını yükleyin", "102226908": "Alan boş bırakılamaz", - "107206831": "We’ll review your document and notify you of its status within 1-3 days.", + "107206831": "Belgenizi inceleyeceğiz ve 1-3 gün içinde durumunu size bildireceğiz.", "108916570": "Süre: {{duration}} gün", "109073671": "Lütfen daha önce para yatırmak için kullandığınız bir e-cüzdan kullanın. E-cüzdanın para çekme işlemini desteklediğinden emin olun. Para çekme işlemlerini destekleyen e-cüzdanların listesini <0>burada bulabilirsiniz.", "111215238": "Direkt ışıktan uzaklaşın", @@ -3163,6 +3163,7 @@ "-311268215": "Bu blok, tarih ve saati temsil eden bir metin dizisini Unix Epoch'tan (1 Ocak 1970) bu yana saniyelere dönüştürür. Saat ve saat dilimi farkı isteğe bağlıdır. Örnek: 2019-01-01 21:03:45 GMT+0800, 1546347825'e dönüştürülecek.", "-1797602591": "Zarar Durdur : {{ currency }} {{ stop_loss }}", "-1214929127": "Zarar durdur pozitif bir sayı olmalıdır.", + "-780745489": "If the contract type is “Both”, then the Purchase Conditions should include both Rise and Fall using the “Conditional Block\"", "-2142851225": "Çarpan ticaret seçenekleri", "-625636913": "Miktar pozitif bir sayı olmalıdır.", "-1466383897": "Süre: {{ duration_unit }} {{ duration_value }}", diff --git a/packages/translations/src/translations/vi.json b/packages/translations/src/translations/vi.json index 9eaecb8b4938..638ee3ecee26 100644 --- a/packages/translations/src/translations/vi.json +++ b/packages/translations/src/translations/vi.json @@ -3163,6 +3163,7 @@ "-311268215": "Khung này chuyển đổi một chuỗi văn bản đại diện cho ngày và thời gian thành giây kể từ Unix Epoch (ngày 1 tháng 1 năm 1970). Thời gian và múi giờ bù là tùy chọn. Ví dụ: 2019-01-01 21:03:45 GMT + 0800 sẽ được chuyển đổi thành 1546347825.", "-1797602591": "Cắt lỗ: {{ currency }} {{ stop_loss }}", "-1214929127": "Số cắt lỗ phải là một số dương.", + "-780745489": "If the contract type is “Both”, then the Purchase Conditions should include both Rise and Fall using the “Conditional Block\"", "-2142851225": "Quyền chọn giao dịch cấp số nhân", "-625636913": "Số nhập vào phải là một số dương.", "-1466383897": "Thời lượng: {{ duration_unit }} {{ duration_value }}", diff --git a/packages/translations/src/translations/zh_cn.json b/packages/translations/src/translations/zh_cn.json index 118bb8e59e51..81f71d462a68 100644 --- a/packages/translations/src/translations/zh_cn.json +++ b/packages/translations/src/translations/zh_cn.json @@ -3163,6 +3163,7 @@ "-311268215": "此程序块将代表日期和时间的文本字符串转换为自Unix 纪元(1970年1月1日)以来的秒数。时间和时区偏移是可选项。示例:2019年1月1日21:03:45 GMT + 0800将转换为1546347825。", "-1797602591": "止损: {{ currency }} {{ stop_loss }}", "-1214929127": "止损必须是正数.", + "-780745489": "如果合约类型为 “两者都选”,购买条件须包含上涨和下跌并使用 “条件程序块”", "-2142851225": "乘数交易期权", "-625636913": "金额必须是正数.", "-1466383897": "持续时间: {{ duration_unit }} {{ duration_value }}", diff --git a/packages/translations/src/translations/zh_tw.json b/packages/translations/src/translations/zh_tw.json index 5936316ffa61..43d93068763a 100644 --- a/packages/translations/src/translations/zh_tw.json +++ b/packages/translations/src/translations/zh_tw.json @@ -3163,6 +3163,7 @@ "-311268215": "此區塊將代表日期和時間的文字字串轉換為自Unix 紀元(1970年1月1日)以來的秒數。時間和時區偏移是可選項。例子:2019年1月1日21:03:45 GMT + 0800將轉換為1546347825。", "-1797602591": "止損: {{ currency }} {{ stop_loss }}", "-1214929127": "止損必須是正數。", + "-780745489": "如果合約類型為「兩者都選」,須包含上漲和下跌並使用「條件區塊」", "-2142851225": "乘數交易期權", "-625636913": "金額必須是正數。", "-1466383897": "持續時間: {{ duration_unit }} {{ duration_value }}",