From c8a3164db258636dd2ce1a0d3d8eb407e3e3a91b Mon Sep 17 00:00:00 2001 From: nazaninreihani Date: Tue, 2 Apr 2019 17:26:17 -0400 Subject: [PATCH 001/119] self exclusion message for uk clients --- www/i18n/en.json | 5 ++++- .../self-exclusion.controller.js | 7 +++++-- .../self-exclusion.template.html | 20 +++++++++++++++++++ 3 files changed, 29 insertions(+), 3 deletions(-) diff --git a/www/i18n/en.json b/www/i18n/en.json index 5dfbe8809d..db9dd8dbe3 100644 --- a/www/i18n/en.json +++ b/www/i18n/en.json @@ -384,7 +384,10 @@ "success": "Success", "warning": "Warning", "not_zero": "Value can not be 0", - "error": "Sorry, an error occurred while processing your request." + "error": "Sorry, an error occurred while processing your request.", + "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", + "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", + "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit" }, "profile": { "personal_details": "Personal Details", diff --git a/www/js/pages/self-exclusion/self-exclusion.controller.js b/www/js/pages/self-exclusion/self-exclusion.controller.js index 59359553e7..70161021cd 100644 --- a/www/js/pages/self-exclusion/self-exclusion.controller.js +++ b/www/js/pages/self-exclusion/self-exclusion.controller.js @@ -9,9 +9,10 @@ (function() { angular.module("binary.pages.self-exclusion.controllers").controller("SelfExclusionController", SelfExclusion); - SelfExclusion.$inject = ["$scope", "$translate", "alertService", "websocketService", "validationService"]; + SelfExclusion.$inject = ["$scope", "$translate", "alertService", "websocketService", + "accountService", "validationService"]; - function SelfExclusion($scope, $translate, alertService, websocketService, + function SelfExclusion($scope, $translate, alertService, websocketService, accountService, validationService) { const vm = this; vm.hasError = false; @@ -26,6 +27,8 @@ vm.isDataLoaded = false; vm.disableForZeroValues = false; vm.data = {}; + const account = accountService.getDefault(); + vm.country = account.country; const noZeroValues = ['max_balance', 'max_turnover', 'max_losses', 'max_7day_turnover', 'max_7day_losses', 'max_30day_turnover', 'max_30day_losses', 'max_open_bets']; diff --git a/www/js/pages/self-exclusion/self-exclusion.template.html b/www/js/pages/self-exclusion/self-exclusion.template.html index b114b1b38a..d06d09a3de 100644 --- a/www/js/pages/self-exclusion/self-exclusion.template.html +++ b/www/js/pages/self-exclusion/self-exclusion.template.html @@ -13,6 +13,26 @@

+
+
+
+
+ {{ 'self-exclusion.ukgc_info_1' | translate }} +
+
+
+
+ {{ 'self-exclusion.ukgc_info_2' | translate }} +
+
+
+
+ {{ 'self-exclusion.ukgc_info_3' | translate }} + www.gamstop.co.uk. +
+
+
+
From 99014d9e77ddd727e28798f4b51881a5fe0031df Mon Sep 17 00:00:00 2001 From: nazaninreihani Date: Mon, 22 Apr 2019 09:31:25 -0400 Subject: [PATCH 002/119] self exclusion notes --- .idea/codeStyles/Project.xml | 10 ++++++++++ .idea/codeStyles/codeStyleConfig.xml | 5 +++++ .idea/inspectionProfiles/Project_Default.xml | 8 ++++++++ .idea/jsLinters/jshint.xml | 16 ++++++++++++++++ .idea/misc.xml | 6 ++++++ .idea/mobile.iml | 13 +++++++++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 7 +++++++ .../self-exclusion.controller.js | 8 ++++++-- .../self-exclusion.template.html | 18 +++++++++++++++--- 10 files changed, 94 insertions(+), 5 deletions(-) create mode 100644 .idea/codeStyles/Project.xml create mode 100644 .idea/codeStyles/codeStyleConfig.xml create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/jsLinters/jshint.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/mobile.iml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml new file mode 100644 index 0000000000..ad7bfc73ea --- /dev/null +++ b/.idea/codeStyles/Project.xml @@ -0,0 +1,10 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 0000000000..79ee123c2b --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000000..001f05ccca --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/.idea/jsLinters/jshint.xml b/.idea/jsLinters/jshint.xml new file mode 100644 index 0000000000..3d8b3cbfcf --- /dev/null +++ b/.idea/jsLinters/jshint.xml @@ -0,0 +1,16 @@ + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000000..28a804d893 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/mobile.iml b/.idea/mobile.iml new file mode 100644 index 0000000000..5da5fb5a42 --- /dev/null +++ b/.idea/mobile.iml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000000..348e586c61 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000000..8e3404f991 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/www/js/pages/self-exclusion/self-exclusion.controller.js b/www/js/pages/self-exclusion/self-exclusion.controller.js index 70161021cd..d4c2526596 100644 --- a/www/js/pages/self-exclusion/self-exclusion.controller.js +++ b/www/js/pages/self-exclusion/self-exclusion.controller.js @@ -9,10 +9,10 @@ (function() { angular.module("binary.pages.self-exclusion.controllers").controller("SelfExclusionController", SelfExclusion); - SelfExclusion.$inject = ["$scope", "$translate", "alertService", "websocketService", + SelfExclusion.$inject = ["$scope", "$state", "$translate", "alertService", "websocketService", "accountService", "validationService"]; - function SelfExclusion($scope, $translate, alertService, websocketService, accountService, + function SelfExclusion($scope, $state, $translate, alertService, websocketService, accountService, validationService) { const vm = this; vm.hasError = false; @@ -112,6 +112,10 @@ vm.hasError = true; }); + vm.goToContact = () => { + $state.go('contact'); + }; + const init = () => getLimits(); init(); diff --git a/www/js/pages/self-exclusion/self-exclusion.template.html b/www/js/pages/self-exclusion/self-exclusion.template.html index d06d09a3de..6352206912 100644 --- a/www/js/pages/self-exclusion/self-exclusion.template.html +++ b/www/js/pages/self-exclusion/self-exclusion.template.html @@ -13,19 +13,31 @@

+
+
+
+
+ {{ 'self-exclusion.info' | translate }} + + {{ 'profile.customer_support' | translate }}. + +
+
+
+
-
+
{{ 'self-exclusion.ukgc_info_1' | translate }}
-
+
{{ 'self-exclusion.ukgc_info_2' | translate }}
-
+
{{ 'self-exclusion.ukgc_info_3' | translate }} www.gamstop.co.uk. From ccdf33b488a926594287485bcaf44367945948f9 Mon Sep 17 00:00:00 2001 From: nazaninreihani Date: Mon, 22 Apr 2019 09:33:26 -0400 Subject: [PATCH 003/119] self exclusion notes --- www/i18n/en.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/www/i18n/en.json b/www/i18n/en.json index db9dd8dbe3..622bfa7ada 100644 --- a/www/i18n/en.json +++ b/www/i18n/en.json @@ -385,6 +385,8 @@ "warning": "Warning", "not_zero": "Value can not be 0", "error": "Sorry, an error occurred while processing your request.", + "customer_support": "customer support", + "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit" From dc4a1e57a6eba584cfc2efa725726218a4626a5c Mon Sep 17 00:00:00 2001 From: nazaninreihani Date: Mon, 22 Apr 2019 10:47:37 -0400 Subject: [PATCH 004/119] show bottom note in self exclusion --- www/i18n/en.json | 5 ++++- .../self-exclusion.controller.js | 12 +++++++++-- .../self-exclusion.template.html | 20 +++++++++++++++++++ 3 files changed, 34 insertions(+), 3 deletions(-) diff --git a/www/i18n/en.json b/www/i18n/en.json index 622bfa7ada..b5a95a6f2b 100644 --- a/www/i18n/en.json +++ b/www/i18n/en.json @@ -389,7 +389,10 @@ "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", - "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit" + "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit", + "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", + "info_bottom_2": "Since you feel the need to self-exclude, we strongly encourage you to exclude yourself from similar services that you may have signed up for.", + "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " }, "profile": { "personal_details": "Personal Details", diff --git a/www/js/pages/self-exclusion/self-exclusion.controller.js b/www/js/pages/self-exclusion/self-exclusion.controller.js index d4c2526596..6839305095 100644 --- a/www/js/pages/self-exclusion/self-exclusion.controller.js +++ b/www/js/pages/self-exclusion/self-exclusion.controller.js @@ -9,10 +9,10 @@ (function() { angular.module("binary.pages.self-exclusion.controllers").controller("SelfExclusionController", SelfExclusion); - SelfExclusion.$inject = ["$scope", "$state", "$translate", "alertService", "websocketService", + SelfExclusion.$inject = ["$scope", "$state", "$translate", "$ionicScrollDelegate", "alertService", "websocketService", "accountService", "validationService"]; - function SelfExclusion($scope, $state, $translate, alertService, websocketService, accountService, + function SelfExclusion($scope, $state, $translate, $ionicScrollDelegate, alertService, websocketService, accountService, validationService) { const vm = this; vm.hasError = false; @@ -26,6 +26,7 @@ vm.disableUpdateButton = true; vm.isDataLoaded = false; vm.disableForZeroValues = false; + let isUpdated = false; vm.data = {}; const account = accountService.getDefault(); vm.country = account.country; @@ -58,6 +59,12 @@ }); vm.limits = _.clone(vm.data); vm.disableUpdateButton = false; + if (isUpdated) { + isUpdated = false; + if (vm.country === 'gb') { + $ionicScrollDelegate.scrollBottom(); + } + } }); $scope.$on("set-self-exclusion:error", (e, error) => { @@ -100,6 +107,7 @@ let stringify = JSON.stringify(data); stringify = stringify.replace(/:(\d+)([,}])/g, ':"$1"$2'); websocketService.sendRequestFor.setSelfExclusion(JSON.parse(stringify)); + isUpdated = true; } $scope.$on('get_limits', (e, limits) => { diff --git a/www/js/pages/self-exclusion/self-exclusion.template.html b/www/js/pages/self-exclusion/self-exclusion.template.html index 6352206912..738b0f4285 100644 --- a/www/js/pages/self-exclusion/self-exclusion.template.html +++ b/www/js/pages/self-exclusion/self-exclusion.template.html @@ -469,6 +469,26 @@

+
+
+
+
+ {{ 'self-exclusion.info_bottom_1' | translate }} +
+
+
+
+ {{ 'self-exclusion.info_bottom_2' | translate }} +
+
+
+
+ {{ 'self-exclusion.info_bottom_3' | translate }} + www.gamstop.co.uk. +
+
+
+
From 94530713bd857641b8d4531516a564698981afac Mon Sep 17 00:00:00 2001 From: nazaninreihani Date: Mon, 22 Apr 2019 10:53:57 -0400 Subject: [PATCH 005/119] fix eslint error --- .../self-exclusion.controller.js | 26 +++++++++++++++---- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/www/js/pages/self-exclusion/self-exclusion.controller.js b/www/js/pages/self-exclusion/self-exclusion.controller.js index 6839305095..2895863280 100644 --- a/www/js/pages/self-exclusion/self-exclusion.controller.js +++ b/www/js/pages/self-exclusion/self-exclusion.controller.js @@ -9,11 +9,27 @@ (function() { angular.module("binary.pages.self-exclusion.controllers").controller("SelfExclusionController", SelfExclusion); - SelfExclusion.$inject = ["$scope", "$state", "$translate", "$ionicScrollDelegate", "alertService", "websocketService", - "accountService", "validationService"]; - - function SelfExclusion($scope, $state, $translate, $ionicScrollDelegate, alertService, websocketService, accountService, - validationService) { + SelfExclusion.$inject = [ + "$scope", + "$state", + "$translate", + "$ionicScrollDelegate", + "alertService", + "websocketService", + "accountService", + "validationService" + ]; + + function SelfExclusion( + $scope, + $state, + $translate, + $ionicScrollDelegate, + alertService, + websocketService, + accountService, + validationService + ) { const vm = this; vm.hasError = false; vm.validation = validationService; From 4ecb10a1a55c783812262a5826ddedb07b38939c Mon Sep 17 00:00:00 2001 From: Nazanin Reihani Date: Wed, 24 Apr 2019 08:50:19 -0400 Subject: [PATCH 006/119] remove commited files by mistake --- .idea/codeStyles/Project.xml | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 .idea/codeStyles/Project.xml diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml deleted file mode 100644 index ad7bfc73ea..0000000000 --- a/.idea/codeStyles/Project.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - \ No newline at end of file From a50ce5592147bdfbcd095c7ff833c07d3b7d9b3d Mon Sep 17 00:00:00 2001 From: Nazanin Reihani Date: Wed, 24 Apr 2019 08:50:31 -0400 Subject: [PATCH 007/119] remove commited files by mistake --- .idea/codeStyles/codeStyleConfig.xml | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 .idea/codeStyles/codeStyleConfig.xml diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml deleted file mode 100644 index 79ee123c2b..0000000000 --- a/.idea/codeStyles/codeStyleConfig.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - \ No newline at end of file From 2dff53d49aa6778425fbf8fa2197bff40367b801 Mon Sep 17 00:00:00 2001 From: Nazanin Reihani Date: Wed, 24 Apr 2019 08:50:40 -0400 Subject: [PATCH 008/119] remove commited files by mistake --- .idea/inspectionProfiles/Project_Default.xml | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 .idea/inspectionProfiles/Project_Default.xml diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml deleted file mode 100644 index 001f05ccca..0000000000 --- a/.idea/inspectionProfiles/Project_Default.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - \ No newline at end of file From 050b7765a97231f33e8168d7f9a4cc6f589f4de1 Mon Sep 17 00:00:00 2001 From: Nazanin Reihani Date: Wed, 24 Apr 2019 08:50:51 -0400 Subject: [PATCH 009/119] remove commited files by mistake --- .idea/jsLinters/jshint.xml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .idea/jsLinters/jshint.xml diff --git a/.idea/jsLinters/jshint.xml b/.idea/jsLinters/jshint.xml deleted file mode 100644 index 3d8b3cbfcf..0000000000 --- a/.idea/jsLinters/jshint.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - \ No newline at end of file From 49e0af5667b9b5ba0e7c182866e6529d3bd34b59 Mon Sep 17 00:00:00 2001 From: Nazanin Reihani Date: Wed, 24 Apr 2019 08:51:00 -0400 Subject: [PATCH 010/119] remove commited files by mistake --- .idea/misc.xml | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 .idea/misc.xml diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index 28a804d893..0000000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - \ No newline at end of file From f0b3480d2156d0562a9edd98f68c8c854e297ba2 Mon Sep 17 00:00:00 2001 From: Nazanin Reihani Date: Wed, 24 Apr 2019 08:51:10 -0400 Subject: [PATCH 011/119] remove commited files by mistake --- .idea/mobile.iml | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 .idea/mobile.iml diff --git a/.idea/mobile.iml b/.idea/mobile.iml deleted file mode 100644 index 5da5fb5a42..0000000000 --- a/.idea/mobile.iml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file From 491c68445c79fdbdb0f6cd8bdea799bc0d1d3968 Mon Sep 17 00:00:00 2001 From: Nazanin Reihani Date: Wed, 24 Apr 2019 08:51:21 -0400 Subject: [PATCH 012/119] remove commited files by mistake --- .idea/modules.xml | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 .idea/modules.xml diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 348e586c61..0000000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file From e748e2cc7bd5e1a97e8411b8ba8972af5830731b Mon Sep 17 00:00:00 2001 From: Nazanin Reihani Date: Wed, 24 Apr 2019 08:51:33 -0400 Subject: [PATCH 013/119] remove commited files by mistake --- .idea/vcs.xml | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 .idea/vcs.xml diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 8e3404f991..0000000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file From ca9467dc5f2ef66005c49240af4fc9b98171bb54 Mon Sep 17 00:00:00 2001 From: nazaninreihani Date: Wed, 24 Apr 2019 08:57:29 -0400 Subject: [PATCH 014/119] fix exclude until datepicker --- .../self-exclusion/self-exclusion.template.html | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/www/js/pages/self-exclusion/self-exclusion.template.html b/www/js/pages/self-exclusion/self-exclusion.template.html index 738b0f4285..04a53d55be 100644 --- a/www/js/pages/self-exclusion/self-exclusion.template.html +++ b/www/js/pages/self-exclusion/self-exclusion.template.html @@ -439,11 +439,13 @@

- +
{{ 'self-exclusion.exclude_me_hint' | translate }}
From 3f7a131edf247a212ef67054c15869e517b6f29b Mon Sep 17 00:00:00 2001 From: nazaninreihani Date: Wed, 24 Apr 2019 09:50:34 -0400 Subject: [PATCH 015/119] fix style of datetime-local input indicator --- scss/shared/_general.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scss/shared/_general.scss b/scss/shared/_general.scss index a862dbf691..10298607a7 100644 --- a/scss/shared/_general.scss +++ b/scss/shared/_general.scss @@ -228,10 +228,10 @@ input { top: 2px; position: relative; } - &[type="date"] { + &[type="date"], &[type="datetime-local"] { min-height: 30px!important; } - &[type="date"]::-webkit-calendar-picker-indicator { + &[type="date"]::-webkit-calendar-picker-indicator, &[type="datetime-local"]::-webkit-calendar-picker-indicator { color: $secondaryContentColor; } } From 6dfd59025103b182ed5ac0778f7f177d80a5092a Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 25 Apr 2019 07:50:52 +0200 Subject: [PATCH 016/119] New translations en.json (Italian) --- www/i18n/it.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/www/i18n/it.json b/www/i18n/it.json index 1a9ba85b51..13664dfdd3 100644 --- a/www/i18n/it.json +++ b/www/i18n/it.json @@ -384,7 +384,15 @@ "success": "Riuscito", "warning": "Attenzione", "not_zero": "Value can not be 0", - "error": "Siamo spiacenti, si è verificato un errore durante l'elaborazione della tua richiesta." + "error": "Siamo spiacenti, si è verificato un errore durante l'elaborazione della tua richiesta.", + "customer_support": "customer support", + "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", + "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", + "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", + "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit", + "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", + "info_bottom_2": "Since you feel the need to self-exclude, we strongly encourage you to exclude yourself from similar services that you may have signed up for.", + "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " }, "profile": { "personal_details": "Informazioni personali", From 76e8fb8043763286ac7925e1296a5e28c7b77f81 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 25 Apr 2019 07:50:55 +0200 Subject: [PATCH 017/119] New translations en.json (Spanish) --- www/i18n/es.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/www/i18n/es.json b/www/i18n/es.json index 347009b677..1e27ab76c5 100644 --- a/www/i18n/es.json +++ b/www/i18n/es.json @@ -384,7 +384,15 @@ "success": "Éxito", "warning": "Aviso", "not_zero": "Value can not be 0", - "error": "Sorry, an error occurred while processing your request." + "error": "Sorry, an error occurred while processing your request.", + "customer_support": "customer support", + "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", + "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", + "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", + "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit", + "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", + "info_bottom_2": "Since you feel the need to self-exclude, we strongly encourage you to exclude yourself from similar services that you may have signed up for.", + "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " }, "profile": { "personal_details": "Datos personales", From 64d6da2c3e10b3a7ce3f43dbdf9555d4e24e91e0 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 25 Apr 2019 07:50:58 +0200 Subject: [PATCH 018/119] New translations en.json (Chinese Simplified) --- www/i18n/zh_cn.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/www/i18n/zh_cn.json b/www/i18n/zh_cn.json index 3044ea2947..99948d31e9 100644 --- a/www/i18n/zh_cn.json +++ b/www/i18n/zh_cn.json @@ -384,7 +384,15 @@ "success": "成功", "warning": "警告", "not_zero": "值不能为0", - "error": "对不起,您的请求处理发生错误。" + "error": "对不起,您的请求处理发生错误。", + "customer_support": "customer support", + "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", + "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", + "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", + "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit", + "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", + "info_bottom_2": "Since you feel the need to self-exclude, we strongly encourage you to exclude yourself from similar services that you may have signed up for.", + "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " }, "profile": { "personal_details": "个人详细信息", From 7e6d743bba014a81cc83b70e8afeff4fb920764e Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 25 Apr 2019 07:51:01 +0200 Subject: [PATCH 019/119] New translations en.json (Chinese Traditional) --- www/i18n/zh_tw.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/www/i18n/zh_tw.json b/www/i18n/zh_tw.json index d3fba83954..f19df0eea8 100644 --- a/www/i18n/zh_tw.json +++ b/www/i18n/zh_tw.json @@ -384,7 +384,15 @@ "success": "成功", "warning": "警告", "not_zero": "值不能為0", - "error": "對不起,在處理您的請求時發生錯誤。" + "error": "對不起,在處理您的請求時發生錯誤。", + "customer_support": "customer support", + "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", + "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", + "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", + "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit", + "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", + "info_bottom_2": "Since you feel the need to self-exclude, we strongly encourage you to exclude yourself from similar services that you may have signed up for.", + "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " }, "profile": { "personal_details": "個人詳細資訊", From e984490bbea5f17a9efb6ff0dcd4b2ef9110ba8d Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 25 Apr 2019 07:51:03 +0200 Subject: [PATCH 020/119] New translations en.json (French) --- www/i18n/fr.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/www/i18n/fr.json b/www/i18n/fr.json index 5741d32fad..2a1dad0c45 100644 --- a/www/i18n/fr.json +++ b/www/i18n/fr.json @@ -384,7 +384,15 @@ "success": "Succès", "warning": "Avertissement", "not_zero": "La Valeur ne peut pas être 0", - "error": "Désolé, une erreur s’est produite lors du traitement de votre demande." + "error": "Désolé, une erreur s’est produite lors du traitement de votre demande.", + "customer_support": "customer support", + "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", + "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", + "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", + "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit", + "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", + "info_bottom_2": "Since you feel the need to self-exclude, we strongly encourage you to exclude yourself from similar services that you may have signed up for.", + "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " }, "profile": { "personal_details": "Informations personnelles", From 61377c1beaebe66481379da2353d63bb844565c5 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 25 Apr 2019 07:51:06 +0200 Subject: [PATCH 021/119] New translations en.json (German) --- www/i18n/de.json | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/www/i18n/de.json b/www/i18n/de.json index 0fff24b4aa..1c0f7b5de2 100644 --- a/www/i18n/de.json +++ b/www/i18n/de.json @@ -384,7 +384,15 @@ "success": "Erfolg", "warning": "Achtung", "not_zero": "Wert kann nicht 0 sein", - "error": "Leider ist während der Bearbeitung Ihrer Anfrage ein Fehler aufgetreten." + "error": "Leider ist während der Bearbeitung Ihrer Anfrage ein Fehler aufgetreten.", + "customer_support": "customer support", + "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", + "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", + "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", + "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit", + "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", + "info_bottom_2": "Since you feel the need to self-exclude, we strongly encourage you to exclude yourself from similar services that you may have signed up for.", + "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " }, "profile": { "personal_details": "Persönliche Angaben", @@ -790,4 +798,4 @@ "what_is_this": "Was ist das?", "submit": "Absenden" } -} \ No newline at end of file +} From 24aed2576175e371f3d840d95bd4249c878e40af Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 25 Apr 2019 07:51:08 +0200 Subject: [PATCH 022/119] New translations en.json (Indonesian) --- www/i18n/id.json | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/www/i18n/id.json b/www/i18n/id.json index e3ac2e00e6..ed580a0929 100644 --- a/www/i18n/id.json +++ b/www/i18n/id.json @@ -384,7 +384,15 @@ "success": "Sukses", "warning": "Peringatan", "not_zero": "Nilai tidak boleh 0", - "error": "Maaf, terjadi error saat memproses permintaan Anda." + "error": "Maaf, terjadi error saat memproses permintaan Anda.", + "customer_support": "customer support", + "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", + "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", + "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", + "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit", + "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", + "info_bottom_2": "Since you feel the need to self-exclude, we strongly encourage you to exclude yourself from similar services that you may have signed up for.", + "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " }, "profile": { "personal_details": "Detail Pribadi", @@ -790,4 +798,4 @@ "what_is_this": "Apa ini?", "submit": "Kirim" } -} \ No newline at end of file +} From ab52d4f3be3ddf02090604e4722fe034696dbce4 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 25 Apr 2019 07:51:11 +0200 Subject: [PATCH 023/119] New translations en.json (Polish) --- www/i18n/pl.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/www/i18n/pl.json b/www/i18n/pl.json index 7811fdd729..05460bb07d 100644 --- a/www/i18n/pl.json +++ b/www/i18n/pl.json @@ -384,7 +384,15 @@ "success": "Udało się", "warning": "Ostrzeżenie", "not_zero": "Wartość nie może wynosić 0", - "error": "Przepraszamy, podczas przetwarzania żądania wystąpił błąd." + "error": "Przepraszamy, podczas przetwarzania żądania wystąpił błąd.", + "customer_support": "customer support", + "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", + "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", + "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", + "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit", + "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", + "info_bottom_2": "Since you feel the need to self-exclude, we strongly encourage you to exclude yourself from similar services that you may have signed up for.", + "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " }, "profile": { "personal_details": "Dane osobowe", From c17b71722c56a291072de17dc2389db38767c66e Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 25 Apr 2019 07:51:15 +0200 Subject: [PATCH 024/119] New translations en.json (Portuguese) --- www/i18n/pt.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/www/i18n/pt.json b/www/i18n/pt.json index c8f91b1d4d..67ecec6901 100644 --- a/www/i18n/pt.json +++ b/www/i18n/pt.json @@ -384,7 +384,15 @@ "success": "Sucesso", "warning": "Aviso", "not_zero": "Valor não pode ser 0", - "error": "Lamentamos, ocorreu um erro durante o processamento do seu pedido." + "error": "Lamentamos, ocorreu um erro durante o processamento do seu pedido.", + "customer_support": "customer support", + "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", + "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", + "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", + "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit", + "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", + "info_bottom_2": "Since you feel the need to self-exclude, we strongly encourage you to exclude yourself from similar services that you may have signed up for.", + "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " }, "profile": { "personal_details": "Dados pessoais", From a278cb2446418b0c79c19c115cad44c444582b11 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 25 Apr 2019 07:51:18 +0200 Subject: [PATCH 025/119] New translations en.json (Russian) --- www/i18n/ru.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/www/i18n/ru.json b/www/i18n/ru.json index d24dcee6f6..85b5210ddb 100644 --- a/www/i18n/ru.json +++ b/www/i18n/ru.json @@ -384,7 +384,15 @@ "success": "Готово", "warning": "Предупреждение", "not_zero": "Значение не может быть равно 0", - "error": "Извините, при обработке Вашего запроса произошла ошибка." + "error": "Извините, при обработке Вашего запроса произошла ошибка.", + "customer_support": "customer support", + "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", + "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", + "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", + "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit", + "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", + "info_bottom_2": "Since you feel the need to self-exclude, we strongly encourage you to exclude yourself from similar services that you may have signed up for.", + "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " }, "profile": { "personal_details": "Личные данные", From be86593b5e5f7bd1ef35623c2913eb16b0751a5f Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 25 Apr 2019 07:51:21 +0200 Subject: [PATCH 026/119] New translations en.json (Thai) --- www/i18n/th.json | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/www/i18n/th.json b/www/i18n/th.json index 5b560b4e2c..e21080424c 100644 --- a/www/i18n/th.json +++ b/www/i18n/th.json @@ -384,7 +384,15 @@ "success": "เรียบร้อยแล้ว", "warning": "คำเตือน", "not_zero": "ค่าไม่สามารถเป็น 0", - "error": "ขออภัย มีความผิดพลาดเกิดขึ้นขณะที่ประมวลผลความประสงค์ของท่าน" + "error": "ขออภัย มีความผิดพลาดเกิดขึ้นขณะที่ประมวลผลความประสงค์ของท่าน", + "customer_support": "customer support", + "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", + "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", + "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", + "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit", + "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", + "info_bottom_2": "Since you feel the need to self-exclude, we strongly encourage you to exclude yourself from similar services that you may have signed up for.", + "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " }, "profile": { "personal_details": "รายละเอียดส่วนบุคคล", @@ -790,4 +798,4 @@ "what_is_this": "นี้คืออะไร?", "submit": "ส่ง" } -} \ No newline at end of file +} From 119b78e5fd7e4b9329cdfe4c7832bf0821f96d9c Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 25 Apr 2019 07:51:24 +0200 Subject: [PATCH 027/119] New translations en.json (Vietnamese) --- www/i18n/vi.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/www/i18n/vi.json b/www/i18n/vi.json index 61290f187e..1a6bceb806 100644 --- a/www/i18n/vi.json +++ b/www/i18n/vi.json @@ -384,7 +384,15 @@ "success": "Thành công", "warning": "Cảnh báo", "not_zero": "Giá trị không thể là 0", - "error": "Rất tiếc, đã xảy ra lỗi khi đang xử lý yêu cầu của bạn." + "error": "Rất tiếc, đã xảy ra lỗi khi đang xử lý yêu cầu của bạn.", + "customer_support": "customer support", + "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", + "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", + "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", + "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit", + "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", + "info_bottom_2": "Since you feel the need to self-exclude, we strongly encourage you to exclude yourself from similar services that you may have signed up for.", + "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " }, "profile": { "personal_details": "Thông tin cá nhân", From 596a3518f8b0dd7905fe70384231b6e187cfa821 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 25 Apr 2019 07:51:26 +0200 Subject: [PATCH 028/119] New translations en.json (Acholi) --- www/i18n/ach.json | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/www/i18n/ach.json b/www/i18n/ach.json index 0bc0ec2fcc..35ae55b9d3 100644 --- a/www/i18n/ach.json +++ b/www/i18n/ach.json @@ -384,7 +384,15 @@ "success": "crwdns18039:0crwdne18039:0", "warning": "crwdns19405:0crwdne19405:0", "not_zero": "crwdns45950:0crwdne45950:0", - "error": "crwdns45951:0crwdne45951:0" + "error": "crwdns45951:0crwdne45951:0", + "customer_support": "crwdns53682:0crwdne53682:0", + "info": "crwdns53684:0crwdne53684:0", + "ukgc_info_1": "crwdns53686:0crwdne53686:0", + "ukgc_info_2": "crwdns53688:0crwdne53688:0", + "ukgc_info_3": "crwdns53690:0crwdne53690:0", + "info_bottom_1": "crwdns53692:0crwdne53692:0", + "info_bottom_2": "crwdns53694:0crwdne53694:0", + "info_bottom_3": "crwdns53696:0crwdne53696:0" }, "profile": { "personal_details": "crwdns18040:0crwdne18040:0", @@ -790,4 +798,4 @@ "what_is_this": "crwdns45935:0crwdne45935:0", "submit": "crwdns45936:0crwdne45936:0" } -} \ No newline at end of file +} From 3821459274c5a1ee69a1ab21ec5e9f13d8fb87c2 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 25 Apr 2019 18:20:57 +0200 Subject: [PATCH 029/119] New translations en.json (Vietnamese) --- www/i18n/vi.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/www/i18n/vi.json b/www/i18n/vi.json index 1a6bceb806..4a0ffdf661 100644 --- a/www/i18n/vi.json +++ b/www/i18n/vi.json @@ -385,14 +385,14 @@ "warning": "Cảnh báo", "not_zero": "Giá trị không thể là 0", "error": "Rất tiếc, đã xảy ra lỗi khi đang xử lý yêu cầu của bạn.", - "customer_support": "customer support", - "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", - "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", - "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", - "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit", - "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", - "info_bottom_2": "Since you feel the need to self-exclude, we strongly encourage you to exclude yourself from similar services that you may have signed up for.", - "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " + "customer_support": "hỗ trợ khách hàng", + "info": "Giao dịch trực tuyến có thể gây nghiện. Điền thông tin vào mẫu dưới đây để giới hạn mức chơi trên trang web hoặc gửi thư đã được kí hoặc fax cho nhóm hỗ trợ khách hàng của chúng tôi. Khi được thiết lập, bạn có thể thắt chặt giới hạn của mình. Giới hạn này sẽ chỉ bị loại bỏ hoặc nới lỏng sau 7 ngày ngày tự loại trừ, không thể bị loại bỏ hoặc thay thế từ khi bạn đã xác nhận chúng. Để loại bỏ hoặc tăng giới hạn của bạn, vui lòng liên hệ", + "ukgc_info_1": "Nếu bạn đang cân nhắc việc tự loại trừ, bạn có thể muốn đăng ký với GAMSTOP.", + "ukgc_info_2": "GAMSTOP là một dịch vụ miễn phí cho phép bạn tự loại trừ khỏi tất cả các công ty cờ bạc trực tuyến được cấp phép ở Vương Quốc Anh.", + "ukgc_info_3": "Để tìm hiểu thêm và đăng ký với GAMSTOP, xin vui lòng truy cập", + "info_bottom_1": "Tự loại trừ trên trang web này chỉ áp dụng cho tài khoản %1 của bạn và không bao gồm các công ty hoặc trang web khác.", + "info_bottom_2": "Vì bạn cảm thấy cần tự loại trừ, chúng tôi thực sự khuyên bạn nên loại trừ bản thân khỏi các dịch vụ tương tự mà bạn có thể đã đăng ký.", + "info_bottom_3": "Để tự loại trừ khỏi tất cả công ty cờ bạc trực tuyến có giấy phép của Anh Quốc, đi tới " }, "profile": { "personal_details": "Thông tin cá nhân", From 678a8b43931fc0d957fa36541ed7f9bc8ef79733 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Sat, 27 Apr 2019 00:50:30 +0200 Subject: [PATCH 030/119] New translations en.json (Thai) --- www/i18n/th.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/th.json b/www/i18n/th.json index e21080424c..57796a3d64 100644 --- a/www/i18n/th.json +++ b/www/i18n/th.json @@ -385,7 +385,7 @@ "warning": "คำเตือน", "not_zero": "ค่าไม่สามารถเป็น 0", "error": "ขออภัย มีความผิดพลาดเกิดขึ้นขณะที่ประมวลผลความประสงค์ของท่าน", - "customer_support": "customer support", + "customer_support": "ฝ่ายบริการลูกค้า", "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", From f7a42100de6e18e5f50e11ef6c8ce6573d17bbdc Mon Sep 17 00:00:00 2001 From: Ashkan Date: Sat, 27 Apr 2019 01:00:33 +0200 Subject: [PATCH 031/119] New translations en.json (Thai) --- www/i18n/th.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/www/i18n/th.json b/www/i18n/th.json index 57796a3d64..1b2dce163e 100644 --- a/www/i18n/th.json +++ b/www/i18n/th.json @@ -386,10 +386,10 @@ "not_zero": "ค่าไม่สามารถเป็น 0", "error": "ขออภัย มีความผิดพลาดเกิดขึ้นขณะที่ประมวลผลความประสงค์ของท่าน", "customer_support": "ฝ่ายบริการลูกค้า", - "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", - "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", - "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", - "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit", + "info": "การซื้อขายผลิตภัณฑ์ทางการเงินอาจทำให้ท่านเสพติดได้ โปรดกรอกข้อมูลในแบบฟอร์มด้านล่างเพื่อกำหนดวงเงินการใช้เว็บไซต์ หรือ ส่งจดหมายที่มีการลงนาม หรือ ส่งแฟกซ์มายังฝ่ายบริการลูกค้า เมื่อมีการตั้งค่าดังกล่าวแล้ว ท่านจะทำได้เพียงลดวงเงินเท่านั้น วงเงินจะถูกปรับหรือผ่อนปรนหลังจาก 7 วันของวันที่กำหนดให้พัก แต่ท่านจะไม่สามารถลบหรือเปลี่ยนแปลงได้หลังจากได้ทำการยืนยันแล้ว หากท่านต้องการลบหรือเพิ่มวงเงินของท่าน โปรดติดต่อ ฝ่ายลูกค้าสัมพันธ์", + "ukgc_info_1": "หากท่านกำลังพิจารณาพักตัวเองจากการใช้งานระบบ ท่านอาจต้องการลงทะเบียนกับ GAMSTOP", + "ukgc_info_2": "GAMSTOP เป็นบริการฟรีที่ช่วยให้ท่านสามารถพักตัวเองจากบริษัทด้านการพนันออน์ไลน์ทั้งหมด และได้รับใบอนุญาตในสหราชอาณาจักร", + "ukgc_info_3": "เพื่อหาข้อมูลเพิ่มเติมและลงทะเบียนกับ GAMSTOP โปรดเยี่ยมชมที่", "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", "info_bottom_2": "Since you feel the need to self-exclude, we strongly encourage you to exclude yourself from similar services that you may have signed up for.", "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " From 1dbc5e62a7e48ba799c4b4c9d0ecdb5bcf487ae5 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Sat, 27 Apr 2019 01:10:30 +0200 Subject: [PATCH 032/119] New translations en.json (Thai) --- www/i18n/th.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/www/i18n/th.json b/www/i18n/th.json index 1b2dce163e..89b054c39d 100644 --- a/www/i18n/th.json +++ b/www/i18n/th.json @@ -390,9 +390,9 @@ "ukgc_info_1": "หากท่านกำลังพิจารณาพักตัวเองจากการใช้งานระบบ ท่านอาจต้องการลงทะเบียนกับ GAMSTOP", "ukgc_info_2": "GAMSTOP เป็นบริการฟรีที่ช่วยให้ท่านสามารถพักตัวเองจากบริษัทด้านการพนันออน์ไลน์ทั้งหมด และได้รับใบอนุญาตในสหราชอาณาจักร", "ukgc_info_3": "เพื่อหาข้อมูลเพิ่มเติมและลงทะเบียนกับ GAMSTOP โปรดเยี่ยมชมที่", - "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", - "info_bottom_2": "Since you feel the need to self-exclude, we strongly encourage you to exclude yourself from similar services that you may have signed up for.", - "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " + "info_bottom_1": "การพักตัวเองบนเว็บไซต์นี้ใช้ได้กับบัญชี Binary.com ของท่านเท่านั้น และไม่รวมถึงบริษัทหรือเว็บไซต์อื่นๆ", + "info_bottom_2": "หากท่านรู้สึกว่า ท่านต้องการพักการใช้งาน เราแนะนำให้ท่านพักการใช้งานจากการบริการอื่นๆที่มีลักษณะเดียวกันที่ท่านได้ลงทะเบียนไว้", + "info_bottom_3": "เพื่อพักตัวเองจากบริษัทการพนันออนไลน์ทั้งหมดที่ได้รับใบอนุญาตในสหราชอาณาจักร กรุณาไปที่ " }, "profile": { "personal_details": "รายละเอียดส่วนบุคคล", From 80c572561c1cd2c3f762bd638cbd7e688589c4da Mon Sep 17 00:00:00 2001 From: Ashkan Date: Sun, 28 Apr 2019 06:10:31 +0200 Subject: [PATCH 033/119] New translations en.json (Russian) --- www/i18n/ru.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/www/i18n/ru.json b/www/i18n/ru.json index 85b5210ddb..322093d3bb 100644 --- a/www/i18n/ru.json +++ b/www/i18n/ru.json @@ -385,14 +385,14 @@ "warning": "Предупреждение", "not_zero": "Значение не может быть равно 0", "error": "Извините, при обработке Вашего запроса произошла ошибка.", - "customer_support": "customer support", - "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", - "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", - "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", - "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit", - "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", - "info_bottom_2": "Since you feel the need to self-exclude, we strongly encourage you to exclude yourself from similar services that you may have signed up for.", - "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " + "customer_support": "служба поддержки", + "info": "Онлайн торговля может перерасти в зависимость. Заполните форму для ограничения Вашей работы на сайте или отправьте службе поддержки подписанное письмо (в отсканированном виде или по факсу). После установления ограничений Вы можете только усилить их. Ограничения могут быть сняты или смягчены по истечении 7 дней, за исключением даты самоисключения, которая не может быть изменена или отменена после её подтверждения. Для снятия или увеличения лимитов ограничения, пожалуйста, свяжитесь со следующим отделом:", + "ukgc_info_1": "Если Вы планируете самоисключение, рекомендуем зарегистрироваться в GAMSTOP.", + "ukgc_info_2": "GAMSTOP − это бесплатный сервис, позволяющий Вам самоисключаться из торговли на сайтах любых компаний, лицензированных в Великобритании.", + "ukgc_info_3": "Чтобы узнать больше и зарегистрироваться на GAMSTOP, посетите", + "info_bottom_1": "Самоисключение на данном сайте применимо лишь к Вашему счёту на Binary.com и не распространяется на другие сайты компании.", + "info_bottom_2": "Если Вы считаете, что настало время для самоисключения, рекомендуем исключить себя со схожих сервисов и сайтов, на которых Вы зарегистрированы.", + "info_bottom_3": "Чтобы произвести самоисключение во всех компаниях, предоставляющих услуги онлайн торговли и лицензированных в Великобритании, Вы можете обратиться в следующий сервис:" }, "profile": { "personal_details": "Личные данные", From 2c98d665804ba904b4a446bacd270f9a3b0e6e9b Mon Sep 17 00:00:00 2001 From: Ashkan Date: Mon, 29 Apr 2019 05:10:43 +0200 Subject: [PATCH 034/119] New translations en.json (Indonesian) --- www/i18n/id.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/www/i18n/id.json b/www/i18n/id.json index ed580a0929..208330b06e 100644 --- a/www/i18n/id.json +++ b/www/i18n/id.json @@ -387,12 +387,12 @@ "error": "Maaf, terjadi error saat memproses permintaan Anda.", "customer_support": "customer support", "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", - "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", - "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", - "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit", - "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", - "info_bottom_2": "Since you feel the need to self-exclude, we strongly encourage you to exclude yourself from similar services that you may have signed up for.", - "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " + "ukgc_info_1": "Jika Anda mempertimbangkan pengecualian diri, Anda mungkin ingin mendaftar pada GAMESTOP.", + "ukgc_info_2": "GAMESTOP adalah layanan gratis yang memungkinkan Anda untuk mengecualikan diri dari semua perusahaan online game yang berlisensi di Inggris Raya.", + "ukgc_info_3": "Untuk mengetahui lebih lanjut dan mendaftar GAMSTOP, silahkan kunjungi", + "info_bottom_1": "Pengecualian diri pada situs web ini hanya berlaku untuk akun Binary.com Anda dan tidak termasuk perusahaan atau situs web lain.", + "info_bottom_2": "Berhubung Anda merasa perlu mengecualikan diri, kami sangat menyarankan Anda untuk mengecualikan diri Anda dari layanan serupa yang mungkin telah Anda daftarkan.", + "info_bottom_3": "Untuk mengecualikan diri dari semua perusahaan yang berlisensi di Inggris Raya, Anda dapat mengunjungi " }, "profile": { "personal_details": "Detail Pribadi", From 4d5f0b834976462899425eee51577790a9dea442 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Mon, 29 Apr 2019 05:20:32 +0200 Subject: [PATCH 035/119] New translations en.json (Indonesian) --- www/i18n/id.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/id.json b/www/i18n/id.json index 208330b06e..9b66026d57 100644 --- a/www/i18n/id.json +++ b/www/i18n/id.json @@ -386,7 +386,7 @@ "not_zero": "Nilai tidak boleh 0", "error": "Maaf, terjadi error saat memproses permintaan Anda.", "customer_support": "customer support", - "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", + "info": "Trading online dapat menyebabkan masalah ketagihan. Isi formulir di bawah ini untuk membatasi partisipasi Anda pada situs web. Anda dapat juga mengirimkan surat atau faks yang telah Anda tandatangani kepada tim customer support kami. Setelah pengaturan batas ditetapkan, Anda hanya dapat memperkecil batasan tersebut. Batas hanya akan dihapus atau ditingkatkan setelah 7 hari dimana tanggal pengecualian diri tidak dapat dirubah. Untuk menghapus atau meningkatkan batasan, silahkan hubungi\n\nUntuk menghapus atau menambah batas Anda, silakan hubungi", "ukgc_info_1": "Jika Anda mempertimbangkan pengecualian diri, Anda mungkin ingin mendaftar pada GAMESTOP.", "ukgc_info_2": "GAMESTOP adalah layanan gratis yang memungkinkan Anda untuk mengecualikan diri dari semua perusahaan online game yang berlisensi di Inggris Raya.", "ukgc_info_3": "Untuk mengetahui lebih lanjut dan mendaftar GAMSTOP, silahkan kunjungi", From f1857bcce9ac1486a19d3ad1ccaf59ded72a91cf Mon Sep 17 00:00:00 2001 From: Ashkan Date: Mon, 29 Apr 2019 05:30:31 +0200 Subject: [PATCH 036/119] New translations en.json (Spanish) --- www/i18n/es.json | 98 ++++++++++++++++++++++++------------------------ 1 file changed, 49 insertions(+), 49 deletions(-) diff --git a/www/i18n/es.json b/www/i18n/es.json index 1e27ab76c5..4a86e05462 100644 --- a/www/i18n/es.json +++ b/www/i18n/es.json @@ -4,9 +4,9 @@ "add_account": "Añadir cuenta", "paste_token": "Pegue su token aquí", "get_token": "¿Cómo obtener un token?", - "signin_with_binary_com": "Sign In", + "signin_with_binary_com": "Iniciar Sesión", "next": "Siguiente", - "regulatory_information": "Regulatory Information" + "regulatory_information": "Información regulatoria" }, "alert": { "error": "¡Error!", @@ -48,9 +48,9 @@ "digits_digit_odd_digit_even": "Digits Odd/Even", "digits_digit_matches_digit_differs": "Digits Matches/Differs", "up_down": "Arriba/Abajo", - "higher_lower": "Higher/Lower", - "rise_fall": "Rise/Fall", - "high_low_ticks": "High/Low Ticks", + "higher_lower": "Superior/Inferior", + "rise_fall": "Alza/Baja", + "high_low_ticks": "Ticks Altos/Bajos", "markets_are_closed": "Lo sentimos, todos los mercados están cerrados. Por favor, inténtelo más tarde", "cancel": "Cancelar", "select_market": "Seleccione mercado", @@ -58,8 +58,8 @@ "select_tradetype": "Seleccione el tipo de operación", "select_tick": "Select Tick", "select_digit": "Seleccione el dígito", - "selected_tick": "Selected Tick", - "last_digit": "Last Digit" + "selected_tick": "Tick Seleccionado", + "last_digit": "Último dígito" }, "trade": { "payout": "Pago", @@ -76,51 +76,51 @@ "transaction_id": "Referencia de la Transacción", "buy_again": "Comprar de nuevo", "sell": "Vender", - "barrier": "Barrier Offset", - "return": "Return", - "tick": "tick" + "barrier": "Desplazamiento de barrera", + "return": "Ganancias", + "tick": "intervalo" }, "app": { "exit_title": "Salir", "exit_confirmation": "¿Está seguro que quiere salir?", "connection_error": "¡No hay conexión a Internet!", "ssl_cert_failed": "Your connection is not private!", - "sign_out": "Sign Out" + "sign_out": "Salir" }, "reality-check": { - "title": "Reality Check", - "about": "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.", + "title": "Verificación de la realidad", + "about": "El comercio de opciones binarias puede convertirse en una verdadera adicción, al igual que cualquier otra actividad llevada a sus límites. Para evitar el peligro de caer en una adicción, le ofrecemos un procedimiento de verificación de la realidad que le facilita un resumen de sus contratos y operaciones de manera regular.", "login_time": "Login Time:", - "current_time": "Current Time:", + "current_time": "Hora actual:", "session_duration": "Session Duration:", - "interval_question": "Please specify your preferred reality-check interval in minutes:", - "loginid": "Login ID", - "currency": "Currency", - "buy_amount": "Turnover", - "profit_loss": "Profit/Loss", + "interval_question": "Por favor indique su intervalo de verificacón de realidad preferido en minutos:", + "loginid": "Identificación de acceso", + "currency": "Moneda", + "buy_amount": "Volumen de ventas", + "profit_loss": "Ganancias/Pérdidas", "buy_count": "Contracts Bought", "sell_count": "Contracts Sold", "open_contract_count": "Open Contracts", - "potential_profit": "Potential Profit", + "potential_profit": "Beneficios potenciales", "interval": "Reality Check Interval in Minutes", - "continue": "Continue Trading", - "logout": "Logout", - "days": "days", - "hours": "hours", - "minutes": "minutes", - "interval_error": "Please enter a number between 10 to 60.", - "view_statement": "View Statement", - "integer_error": "Interval should be integer." + "continue": "Continuar Operando", + "logout": "Cerrar sesión", + "days": "días", + "hours": "horas", + "minutes": "minutos", + "interval_error": "Por favor, introduzca un número entre 10 y 60.", + "view_statement": "Vea su extracto", + "integer_error": "El intervalo debe ser entero." }, "new-virtual-account": { - "continue": "Continue", + "continue": "Continuar", "signup": "Sign Up", - "signup_question": "Don't have an account?", - "verification_code": "Verification code", - "password": "Choose a password", - "residence": "Country of residence", - "select": "Select your country", - "password_hint": "Password must be minimum of six lower and uppercase letters with numbers", + "signup_question": "¿Aún no tiene una cuenta?", + "verification_code": "Código de verificación", + "password": "Elija una contraseña", + "residence": "País de residencia", + "select": "Seleccione su país", + "password_hint": "La contraseña debe tener un mínimo de seis letras minúsculas y mayúsculas con números", "code_hint": "Please check your email for the value of this token", "hide_pass": "Hide password", "show_pass": "Show password", @@ -159,23 +159,23 @@ "general_pattern_error": "Only letters, space, hyphen, period, and apostrophe are allowed.", "length_range_error": "This field must be within {{min}}-{{max}} characters.", "maxlength_error": "This field can be at most {{max}} characters long.", - "address_pattern_error": "Only letters, numbers, space, and these special characters are allowed: - . ' # ; : ( ) , @ /", - "postcode_pattern_error": "Only letters, numbers, and hyphen are allowed.", + "address_pattern_error": "Se permite sólo el uso de letras, números, espacios y los siguientes caracteres especiales: - . ' # ; : ( ) , @ /", + "postcode_pattern_error": "Se permiten sólo letras, números y guiones.", "phone_pattern_error": "Only numbers, spaces and hyphen are allowed.", - "tax_identification_number_pattern_error": "Only letters, numbers, and hyphen are allowed.", - "continue": "Continue", - "cancel": "Cancel", - "not_pep_verify": "I acknowledge that I am not a politically exposed person (PEP)", - "pep_info": "A PEP is an individual who is or has been entrusted with a prominent public function. This status extends to a PEP’s relatives and close associates.", - "forex_trading_experience": "Forex trading experience", - "forex_trading_frequency": "Forex trading frequency", - "binary_options_trading_experience": "Binary options trading experience", - "binary_options_trading_frequency": "Binary options trading frequency", - "cfd_trading_experience": "CFD trading experience", - "cfd_trading_frequency": "CFD trading frequency", + "tax_identification_number_pattern_error": "Se permiten sólo letras, números y guiones.", + "continue": "Continuar", + "cancel": "Cancelar", + "not_pep_verify": "Declaro que no soy una persona políticamente expuesta (PEP)", + "pep_info": "Una persona expuesta políticamente o PEP es un individuo al que le ha sido encomendada una función pública prominente. Este estatus se extiende a los parientes y socios de esta persona.", + "forex_trading_experience": "Experiencia de comercio en forex", + "forex_trading_frequency": "Frecuencia de comercio en forex", + "binary_options_trading_experience": "Experiencia en operación con opciones binarias", + "binary_options_trading_frequency": "Frecuencia en operación con opciones binarias", + "cfd_trading_experience": "Experiencia en operación con CFD", + "cfd_trading_frequency": "Frecuencia en operación con CFD", "other_instruments_trading_experience": "Trading experience in other financial instruments", "other_instruments_trading_frequency": "Trading frequency in other financial instruments", - "employment_industry": "Industry of employment", + "employment_industry": "Sector laboral", "education_level": "Level of education", "income_source": "Income source", "net_income": "Net annual income", From 628b8a9e0864b8e164e7b31a349c859bd8fd8956 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Mon, 29 Apr 2019 05:40:30 +0200 Subject: [PATCH 037/119] New translations en.json (Spanish) --- www/i18n/es.json | 126 +++++++++++++++++++++++------------------------ 1 file changed, 63 insertions(+), 63 deletions(-) diff --git a/www/i18n/es.json b/www/i18n/es.json index 4a86e05462..afcf546a67 100644 --- a/www/i18n/es.json +++ b/www/i18n/es.json @@ -176,38 +176,38 @@ "other_instruments_trading_experience": "Trading experience in other financial instruments", "other_instruments_trading_frequency": "Trading frequency in other financial instruments", "employment_industry": "Sector laboral", - "education_level": "Level of education", + "education_level": "Nivel de educación", "income_source": "Income source", - "net_income": "Net annual income", - "occupation": "Occupation", - "estimated_worth": "Estimated net worth", - "employment_status": "Employment status", - "account_turnover": "Anticipated account turnover", - "source_of_wealth": "Source of wealth", - "account_opening_reason": "Account opening reason", - "details": "Details", - "pep_declaration": "PEP Declaration", + "net_income": "Ingreso neto anual", + "occupation": "Ocupación", + "estimated_worth": "Valor neto estimado", + "employment_status": "Situación laboral", + "account_turnover": "Volumen anticipado de la cuenta", + "source_of_wealth": "Fuente de riqueza", + "account_opening_reason": "Motivo para abrir la cuenta", + "details": "Detalles", + "pep_declaration": "Declaración de PEP", "trading_experience": "Trading Experience", - "security": "Security", - "address": "Address", - "financial_info": "Financial Information", - "tax_information": "Tax Information", - "professional_client": "Professional Client", + "security": "Seguridad", + "address": "Dirección", + "financial_info": "Información financiera", + "tax_information": "Información tributaria", + "professional_client": "Cliente profesional", "professional_client_info": "By default, all clients are treated as retail, do you prefer to be treated as a professional client if you match the necessary criteria?", - "professional_client_verify": "I want to be treated as a professional client.", - "what_is_this": "What is this?", - "read_more": "Read more.", - "required_to_collect_tin": "Binary Investments (Europe) Ltd. is required to collect your tax information.", - "required_to_obtain_information": "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).", - "on_the_basis_of_information": "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.", - "appropriateness_test": "Appropriateness Test: ", + "professional_client_verify": "Quiero ser tratado como un cliente profesional.", + "what_is_this": "¿Qué es esto?", + "read_more": "Lea más.", + "required_to_collect_tin": "Binary Investments (Europe) Ltd. está obligado a recopilar su información tributaria.", + "required_to_obtain_information": "Al ofrecerle nuestros servicios, estamos obligados a obtener información de usted con el fin de evaluar si un determinado producto o servicio es adecuado para usted (es decir, si posee la experiencia y el conocimiento necesario para entender los riesgos).", + "on_the_basis_of_information": "Sobre la base de la información proporcionada en relación con sus conocimientos y experiencia, consideramos que las inversiones disponibles a través de esta página web no son apropiadas para usted.", + "appropriateness_test": "Prueba de idoneidad: ", "warning": "WARNING:", - "by_clicking": "By clicking ", - "accept": "Accept", - "exposing_at_risk": "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.", - "decline": "Decline", - "secret_question": "Secret question", - "secret_answer": "Secret answer", + "by_clicking": "Haciendo clic ", + "accept": "Aceptar", + "exposing_at_risk": "debajo y procediendo con la apertura de la cuenta debe tener en cuenta que puede exponerse a riesgos (que pueden ser significativos, incluyendo el riesgo de pérdida de la suma total invertida) que puede que no conozca y no tenga experiencia para evaluar correctamente o mitigar.", + "decline": "Rechazar", + "secret_question": "Pregunta secreta", + "secret_answer": "Respuesta secreta", "secret_answer_pattern_error": "Only letters, numbers, space, hyphen, period, and apostrophe are allowed.", "confirm_tax_info": "I hereby confirm that the tax information I provided is true and complete. I will also inform Binary Investments (Europe) Ltd. about any changes to this information.", "multi_tax_residence_info": "You may be considered a tax resident in more than one jurisdiction. Please consult your tax advisor and verify that your tax information is accurate." @@ -257,43 +257,43 @@ "tick_trade_app": "Tick-trade app", "all_time": "Lifetime", "jump_to_date": "Jump to date", - "date": "Date", - "ref": "Reference", - "profit_loss": "Profit/Loss", - "no_transaction": "There is no transaction to show.", - "go": "Go" + "date": "Fecha", + "ref": "Referencia", + "profit_loss": "Ganancias/Pérdidas", + "no_transaction": "No hay ninguna operación para mostrar.", + "go": "Ir" }, "transaction-details": { - "ref": "Reference ID", - "contract_type": "Contract Type", - "transaction_id": "Transaction ID", - "buy": "Buy", - "sell": "Sell", - "start_time": "Start Time", - "entry_spot": "Entry Spot", - "barrier": "Barrier", - "payout": "Potential Payout", - "buy_price": "Purchase Price", - "exit_spot": "Exit Spot", - "exit_spot_time": "Exit Spot Time", - "sell_price": "Sell Price", - "profit_loss": "Profit/Loss", - "end_time": "End Time", - "ASIANU": "Asian Up", - "ASIAND": "Asian Down", - "CALL": "Higher", - "CALLE": "Higher or equal", - "PUT": "Lower", - "PUTE": "Lower or equal", - "DIGITMATCH": "Digit Matches", - "DIGITDIFF": "Digit Differs", - "DIGITODD": "Digit Odd", - "DIGITEVEN": "Digit Even", - "DIGITOVER": "Digit Over", - "DIGITUNDER": "Digit Under", - "EXPIRYMISS": "Ends Outside", - "EXPIRYRANGE": "Ends Between", - "EXPIRYRANGEE": "Ends Between", + "ref": "ID de Referencia", + "contract_type": "Tipo de contrato", + "transaction_id": "ID de la transacción", + "buy": "Comprar", + "sell": "Venta", + "start_time": "Hora de comienzo", + "entry_spot": "Punto de entrada", + "barrier": "Límite", + "payout": "Pago Potencial", + "buy_price": "Precio de Compra", + "exit_spot": "Punto de Salida", + "exit_spot_time": "Tiempo de Punto de Salida", + "sell_price": "Precio venta", + "profit_loss": "Ganado/Perdido", + "end_time": "Hora de finalización", + "ASIANU": "Asiáticas arriba", + "ASIAND": "Asiáticas abajo", + "CALL": "Superior", + "CALLE": "Mayor o igual", + "PUT": "Inferior", + "PUTE": "Inferior o igual", + "DIGITMATCH": "Dígito coincide", + "DIGITDIFF": "Dígito Difiere", + "DIGITODD": "Dígito Impar", + "DIGITEVEN": "Dígito par", + "DIGITOVER": "Dígito Sobre", + "DIGITUNDER": "Dígito por Debajo", + "EXPIRYMISS": "Finaliza fuera", + "EXPIRYRANGE": "Finaliza Entre", + "EXPIRYRANGEE": "Finaliza Entre", "LBFLOATCALL": "Close-Low", "LBFLOATPUT": "High-Close", "LBHIGHLOW": "High-Low", From 165e3d316ea6fba0772f1ded3d8035dc56052b9d Mon Sep 17 00:00:00 2001 From: Ashkan Date: Mon, 29 Apr 2019 05:50:31 +0200 Subject: [PATCH 038/119] New translations en.json (Spanish) --- www/i18n/es.json | 102 +++++++++++++++++++++++------------------------ 1 file changed, 51 insertions(+), 51 deletions(-) diff --git a/www/i18n/es.json b/www/i18n/es.json index afcf546a67..4bda0b19a7 100644 --- a/www/i18n/es.json +++ b/www/i18n/es.json @@ -121,18 +121,18 @@ "residence": "País de residencia", "select": "Seleccione su país", "password_hint": "La contraseña debe tener un mínimo de seis letras minúsculas y mayúsculas con números", - "code_hint": "Please check your email for the value of this token", - "hide_pass": "Hide password", - "show_pass": "Show password", - "enter_email": "Please enter your email", - "token_invalid": "Please submit a valid verification token.", - "invalid_email": "Please submit a valid email address.", - "password_pattern_error": "Password should have lower and uppercase letters with numbers.", + "code_hint": "Por favor verifique su correo electrónico para el valor de este token", + "hide_pass": "Ocultar contraseña", + "show_pass": "Mostrar contraseña", + "enter_email": "Por favor, introduzca su correo electrónico", + "token_invalid": "Por favor, envíe un token de verificación válido.", + "invalid_email": "Por favor, envíe una dirección de correo electrónico válida.", + "password_pattern_error": "La contraseña debe tener letras minúsculas y mayúsculas con números.", "range_length_error": "This field must be within {{min}}-{{max}} characters.", - "required": "This field is required." + "required": "Este campo es obligatorio." }, "new-account-maltainvest": { - "financial_account_opening": "Financial Account Opening", + "financial_account_opening": "Abrir Cuenta Financiera", "salutation": "Title", "first_name": "First name", "last_name": "Family name", @@ -294,19 +294,19 @@ "EXPIRYMISS": "Finaliza fuera", "EXPIRYRANGE": "Finaliza Entre", "EXPIRYRANGEE": "Finaliza Entre", - "LBFLOATCALL": "Close-Low", - "LBFLOATPUT": "High-Close", - "LBHIGHLOW": "High-Low", - "RANGE": "Stays Between", + "LBFLOATCALL": "Cerrar-Bajo", + "LBFLOATPUT": "Cerrar-Alto", + "LBHIGHLOW": "Alto-Bajo", + "RANGE": "Permanece dentro", "RESETCALL": "Reset Call", "RESETPUT": "Reset Put", - "UPORDOWN": "Goes Outside", - "ONETOUCH": "Touches", - "NOTOUCH": "Does Not Touch", + "UPORDOWN": "Sale fuera", + "ONETOUCH": "Toca", + "NOTOUCH": "No toque", "CALLSPREAD": "Call Spread", "PUTSPREAD": "Put Spread", - "TICKHIGH": "High Tick", - "TICKLOW": "Low Tick" + "TICKHIGH": "Tick alto", + "TICKLOW": "Tick bajo" }, "statement": { "statement": "Declaración", @@ -387,52 +387,52 @@ "error": "Sorry, an error occurred while processing your request.", "customer_support": "customer support", "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", - "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", - "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", - "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit", + "ukgc_info_1": "Si está considerando la autoexclusión, le recomendamos registrarse en GAMSTOP.", + "ukgc_info_2": "GAMSTOP es un servicio gratuito que le permite autoexcluirse de todas las empresas de apuestas en línea con licencia en Gran Bretaña.", + "ukgc_info_3": "Para más detalles e inscribirse en GAMSTOP, por favor visite", "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", - "info_bottom_2": "Since you feel the need to self-exclude, we strongly encourage you to exclude yourself from similar services that you may have signed up for.", - "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " + "info_bottom_2": "Dado que siente la necesidad de autoexcluirse, le recomendamos encarecidamente que también se autoexcluya de servicios similares en los que se haya inscrito.", + "info_bottom_3": "Para autoexcluirse de todas las empresas de apuestas online licenciadas en Gran Bretaña, diríjase a " }, "profile": { "personal_details": "Datos personales", "name": "Nombre", "date_of_birth": "Fecha de nacimiento", - "country_of_residence": "Country of residence", + "country_of_residence": "País de residencia", "email_address": "Dirección de correo electrónico", "first_line_of_home_address": "Primera línea de dirección", "second_line_of_home_address": "Segunda línea de dirección", "town_city": "Pueblo/Ciudad", "state_province": "Estado/Provincia", - "address_postcode": "Postal code/ZIP", + "address_postcode": "Código postal/CP", "telephone": "Teléfono", "update_profile": "Actualizar perfil", "success": "Éxito", "success_message": "Se han actualizado sus preferencias.", "this_field_is_required": "Campo obligatorio.", "tax_residence": "Residencia fiscal", - "tax_identification_number": "Tax identification number", + "tax_identification_number": "Número de identificación fiscal", "place_of_birth": "Lugar de nacimiento", - "citizenship": "Citizenship", + "citizenship": "Ciudadanía", "select": "Por favor, seleccione", - "general_pattern_error": "Only letters, space, hyphen, period, and apostrophe are allowed.", - "address_pattern_error": "Only letters, numbers, space, and these special characters are allowed: - . ' # ; : ( ) , @ /", + "general_pattern_error": "Se permite sólo el uso de letras, espacios, guiones, puntos y apóstrofes.", + "address_pattern_error": "Se permite sólo el uso de letras, números, espacios y los siguientes caracteres especiales: - . ' # ; : ( ) , @ /", "maxlength_error": "This field can be at most {{max}} characters long.", "range_length_error": "This field must be within {{min}}-{{max}} characters.", - "postcode_pattern_error": "Only letters, numbers, and hyphen are allowed.", + "postcode_pattern_error": "Se permiten sólo letras, números y guiones.", "phone_pattern_error": "Only numbers, spaces and hyphen are allowed.", - "tax_identification_number_pattern_error": "Only letters, numbers, and hyphen are allowed.", + "tax_identification_number_pattern_error": "Se permiten sólo letras, números y guiones.", "cancel": "Cancelar", "continue": "Continuar", - "account_opening_reason": "Account opening reason", - "is_optional": "(Optional)", - "address": "Address", - "details": "Details", - "tax_information": "Tax Information", - "email_preferences": "Email Preferences", + "account_opening_reason": "Motivo para abrir la cuenta", + "is_optional": "(Opcional)", + "address": "Dirección", + "details": "Detalles", + "tax_information": "Información tributaria", + "email_preferences": "Preferencias de correo electrónico", "receive_emails": "Receive emails on Binary.com products, services, and events", "to_change": "To change your name, date of birth, country of residence, or email, please contact", - "customer_support": "Customer Support" + "customer_support": "Atención al cliente" }, "accept-terms-and-conditions": { "has_updated_its": "ha actualizado sus", @@ -463,27 +463,27 @@ "financial_assessment": "Evaluación financiera", "forex_trading_experience": "Experiencia de comercio con Forex", "forex_trading_frequency": "Frecuencia de comercio en forex", - "binary_options_trading_experience": "Binary options trading experience", - "binary_options_trading_frequency": "Binary options trading frequency", - "cfd_trading_experience": "CFD trading experience", - "cfd_trading_frequency": "CFD trading frequency", + "binary_options_trading_experience": "Experiencia en operación con opciones binarias", + "binary_options_trading_frequency": "Frecuencia en operación con opciones binarias", + "cfd_trading_experience": "Experiencia en operación con CFD", + "cfd_trading_frequency": "Frecuencia en operación con CFD", "other_instruments_trading_experience": "Trading experience in other financial instruments", "other_instruments_trading_frequency": "Trading frequency in other financial instruments", - "employment_industry": "Industry of employment", - "education_level": "Level of education", + "employment_industry": "Sector laboral", + "education_level": "Nivel de educación", "income_source": "Income source", - "net_income": "Net annual income", - "estimated_worth": "Estimated net worth", + "net_income": "Ingreso neto anual", + "estimated_worth": "Valor neto estimado", "select": "Por favor, seleccione", "update": "Actualizar", "financial_assessment_info": "Los servicios contractuales financieros de este sitio solo son adecuados para los clientes que pueden hacer frente a la pérdida del dinero que invierten y que comprenden y tienen experiencia con los riesgos implícitos en la adquisición de contratos financieros. Las transacciones en los contractos financieros implican un alto grado de riesgo. Si los contratos comprados caducan sin valor, sufrirá la pérdida total de su inversión, la que consistirá en la prima contractual.", "no_change": "No ha cambiado nada.", "success": "Éxito", "success_message": "Se han actualizado sus preferencias.", - "account_turnover": "Anticipated account turnover", - "employment_status": "Employment status", - "source_of_wealth": "Source of wealth", - "occupation": "Occupation", + "account_turnover": "Volumen anticipado de la cuenta", + "employment_status": "Estado laboral", + "source_of_wealth": "Fuente de riqueza", + "occupation": "Ocupación", "trading_experience": "Trading Experience", "financial_information": "Información financiera" }, @@ -495,7 +495,7 @@ "account_balance": "Maximum Account Cash Balance", "payouts": "Maximum Aggregate Payouts on Open Positions", "payouts_per_symbol_and_contract_type": "Maximum Aggregate Payouts on Open Positions per Symbol and Contract Type", - "maximum_daily_turnover": "Maximum Daily Turnover", + "maximum_daily_turnover": "Volumen de ventas diario máximo", "commodities": "Materias primas", "forex": "Forex", "smart_fx": "Smart FX", From 9d0abb7b358b5b9c82f9c4c16074b6997ef19872 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Mon, 29 Apr 2019 06:00:34 +0200 Subject: [PATCH 039/119] New translations en.json (Spanish) --- www/i18n/es.json | 52 ++++++++++++++++++++++++------------------------ 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/www/i18n/es.json b/www/i18n/es.json index 4bda0b19a7..1e42bd1486 100644 --- a/www/i18n/es.json +++ b/www/i18n/es.json @@ -133,30 +133,30 @@ }, "new-account-maltainvest": { "financial_account_opening": "Abrir Cuenta Financiera", - "salutation": "Title", - "first_name": "First name", - "last_name": "Family name", - "date_of_birth": "Date of birth", - "residence": "Country of residence", - "place_of_birth": "Place of birth", - "citizenship": "Citizenship", - "tax_residence": "Tax residence", - "tax_identification_number": "Tax identification number", - "address_line_1": "First line of home address", - "address_line_2": "Second line of home address", - "address_city": "Town/City", - "address_state": "State/Province", - "address_postcode": "Postal code/ZIP", - "phone": "Telephone", - "info": "The financial trading services contained within this site are only suitable for customers who are able to bear the loss of all the money they invest and who understand and have experience of the risk involved in the acquistion of financial contracts. Transactions in financial contracts carry a high degree of risk. If purchased contracts expire worthless, you will suffer a total loss of your investment, which consists of the contract premium.", - "open_account": "Open Account", - "select": "Please select", - "required": "This field is required.", - "is_optional": "(Optional)", - "read_and_agreed_to": "I have read and agree to the ", - "terms_and_conditions": "terms and conditions ", - "of_the_site": "of the site.", - "general_pattern_error": "Only letters, space, hyphen, period, and apostrophe are allowed.", + "salutation": "Título", + "first_name": "Nombre", + "last_name": "Apellido", + "date_of_birth": "Fecha de nacimiento", + "residence": "País de residencia", + "place_of_birth": "Lugar de nacimiento", + "citizenship": "Ciudadanía", + "tax_residence": "Residencia fiscal", + "tax_identification_number": "Número de identificación fiscal", + "address_line_1": "Primera línea de dirección de residencia", + "address_line_2": "Segunda línea de domicilio", + "address_city": "Pueblo/Ciudad", + "address_state": "Estado/Provincia", + "address_postcode": "Código postal/CP", + "phone": "Teléfono", + "info": "Los servicios contractuales financieros de este sitio solo son adecuados para los Clientes que pueden lidiar con la pérdida del dinero que invierten y que comprenden y tienen experiencia con los riesgos implícitos en la adquisición de contratos financieros. Las transacciones en los contractos financieros implican muchas posibilidades de riesgo. Si los contratos comprados caducan sin valor, sufrirá la pérdida total de su inversión, que consistirá en la prima contractual.", + "open_account": "Abrir una cuenta", + "select": "Por favor, seleccione", + "required": "Este campo es obligatorio.", + "is_optional": "(Opcional)", + "read_and_agreed_to": "He leído y estoy de acuerdo con los ", + "terms_and_conditions": "términos y condiciones ", + "of_the_site": "del sitio.", + "general_pattern_error": "Se permite sólo el uso de letras, espacios, guiones, puntos y apóstrofes.", "length_range_error": "This field must be within {{min}}-{{max}} characters.", "maxlength_error": "This field can be at most {{max}} characters long.", "address_pattern_error": "Se permite sólo el uso de letras, números, espacios y los siguientes caracteres especiales: - . ' # ; : ( ) , @ /", @@ -234,8 +234,8 @@ "select": "Please select", "secret_question": "Secret question", "secret_answer": "Secret answer", - "is_optional": "(Optional)", - "read_and_agreed_to": "I have read and agree to the ", + "is_optional": "(Opcional)", + "read_and_agreed_to": "He leído y estoy de acuerdo con los ", "terms_and_conditions": "terms and conditions ", "of_the_site": "of the site.", "general_pattern_error": "Only letters, space, hyphen, period, and apostrophe are allowed.", From 15b8fa98a8976d055d40ea71e18ea385c5dc4e1e Mon Sep 17 00:00:00 2001 From: Ashkan Date: Mon, 29 Apr 2019 06:10:53 +0200 Subject: [PATCH 040/119] New translations en.json (Spanish) --- www/i18n/es.json | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/www/i18n/es.json b/www/i18n/es.json index 1e42bd1486..bf2d1b077e 100644 --- a/www/i18n/es.json +++ b/www/i18n/es.json @@ -208,27 +208,27 @@ "decline": "Rechazar", "secret_question": "Pregunta secreta", "secret_answer": "Respuesta secreta", - "secret_answer_pattern_error": "Only letters, numbers, space, hyphen, period, and apostrophe are allowed.", - "confirm_tax_info": "I hereby confirm that the tax information I provided is true and complete. I will also inform Binary Investments (Europe) Ltd. about any changes to this information.", - "multi_tax_residence_info": "You may be considered a tax resident in more than one jurisdiction. Please consult your tax advisor and verify that your tax information is accurate." + "secret_answer_pattern_error": "Se permite sólo el uso de letras, números, espacios, guiones, puntos y apóstrofes.", + "confirm_tax_info": "Por la presente declaro que la información tributaria que he proporcionado es verdadera y completa. También informaré Binary Investments (Europe) Ltd. acerca de cualquier cambio a esta información.", + "multi_tax_residence_info": "Es posible que usted sea considerado residente fiscal en más de una juridsicción. Por favor, consulte a su asesor fiscal y verifique que su información fiscal sea correcta." }, "new-account-real": { - "real_account_opening": "Real Money Account Opening", - "details": "Details", - "address": "Address", - "security": "Security", - "salutation": "Title", + "real_account_opening": "Abra una Cuenta con Dinero Real", + "details": "Detalles", + "address": "Dirección", + "security": "Seguridad", + "salutation": "Título", "first_name": "First name", "last_name": "Family name", "date_of_birth": "Date of birth", "residence": "Country of residence", "place_of_birth": "Place of birth", "citizenship": "Citizenship", - "address_line_1": "First line of home address", - "address_line_2": "Second line of home address", - "address_city": "Town/City", - "address_state": "State/Province", - "address_postcode": "Postal code/ZIP", + "address_line_1": "Primera línea de dirección de residencia", + "address_line_2": "Segunda línea de dirección", + "address_city": "Pueblo/Ciudad", + "address_state": "Estado/Provincia", + "address_postcode": "Código postal/CP", "phone": "Telephone", "open_account": "Open Account", "select": "Please select", @@ -241,7 +241,7 @@ "general_pattern_error": "Only letters, space, hyphen, period, and apostrophe are allowed.", "length_range_error": "This field must be within {{min}}-{{max}} characters.", "maxlength_error": "This field can be at most {{max}} characters long.", - "address_pattern_error": "Only letters, numbers, space, and these special characters are allowed: - . ' # ; : ( ) , @ /", + "address_pattern_error": "Se permite sólo el uso de letras, números, espacios y los siguientes caracteres especiales: - . ' # ; : ( ) , @ /", "postcode_pattern_error": "Only letters, numbers, and hyphen are allowed.", "phone_pattern_error": "Only numbers, spaces and hyphen are allowed.", "secret_answer_pattern_error": "Only letters, numbers, space, hyphen, period, and apostrophe are allowed.", @@ -589,7 +589,7 @@ "payment_email": "For payments-related queries", "support_email": "For general support", "marketing_email": "For affiliate, partnership, and other marketing-related queries", - "company_addresses": "Company addresses", + "company_addresses": "Direcciones de la compañía", "malta": "Malta", "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, Mompalao Building, Suite 2, Tower Road, Msida MSD1825", "japan": "Japón", From 0e410b3fa7059a42a6f5de098ba343356ada50e4 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Mon, 29 Apr 2019 06:20:32 +0200 Subject: [PATCH 041/119] New translations en.json (Spanish) --- www/i18n/es.json | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/www/i18n/es.json b/www/i18n/es.json index bf2d1b077e..3245cce23e 100644 --- a/www/i18n/es.json +++ b/www/i18n/es.json @@ -218,42 +218,42 @@ "address": "Dirección", "security": "Seguridad", "salutation": "Título", - "first_name": "First name", - "last_name": "Family name", - "date_of_birth": "Date of birth", - "residence": "Country of residence", - "place_of_birth": "Place of birth", - "citizenship": "Citizenship", + "first_name": "Nombre", + "last_name": "Apellido", + "date_of_birth": "Fecha de nacimiento", + "residence": "País de residencia", + "place_of_birth": "Lugar de nacimiento", + "citizenship": "Ciudadanía", "address_line_1": "Primera línea de dirección de residencia", "address_line_2": "Segunda línea de dirección", "address_city": "Pueblo/Ciudad", "address_state": "Estado/Provincia", "address_postcode": "Código postal/CP", - "phone": "Telephone", - "open_account": "Open Account", - "select": "Please select", - "secret_question": "Secret question", - "secret_answer": "Secret answer", + "phone": "Teléfono", + "open_account": "Abrir una cuenta", + "select": "Por favor, seleccione", + "secret_question": "Pregunta secreta", + "secret_answer": "Respuesta secreta", "is_optional": "(Opcional)", "read_and_agreed_to": "He leído y estoy de acuerdo con los ", - "terms_and_conditions": "terms and conditions ", - "of_the_site": "of the site.", - "general_pattern_error": "Only letters, space, hyphen, period, and apostrophe are allowed.", + "terms_and_conditions": "términos y condiciones ", + "of_the_site": "del sitio.", + "general_pattern_error": "Se permite sólo el uso de letras, espacios, guiones, puntos y apóstrofes.", "length_range_error": "This field must be within {{min}}-{{max}} characters.", "maxlength_error": "This field can be at most {{max}} characters long.", "address_pattern_error": "Se permite sólo el uso de letras, números, espacios y los siguientes caracteres especiales: - . ' # ; : ( ) , @ /", - "postcode_pattern_error": "Only letters, numbers, and hyphen are allowed.", + "postcode_pattern_error": "Se permiten sólo letras, números y guiones.", "phone_pattern_error": "Only numbers, spaces and hyphen are allowed.", - "secret_answer_pattern_error": "Only letters, numbers, space, hyphen, period, and apostrophe are allowed.", - "required": "This field is required.", - "not_pep_verify": "I acknowledge that I am not a politically exposed person (PEP)", - "pep_info": "A PEP is an individual who is or has been entrusted with a prominent public function. This status extends to a PEP’s relatives and close associates.", - "account_opening_reason": "Account opening reason", - "what_is_this": "What is this?" + "secret_answer_pattern_error": "Se permite sólo el uso de letras, números, espacios, guiones, puntos y apóstrofes.", + "required": "Este campo es obligatorio.", + "not_pep_verify": "Declaro que no soy una persona políticamente expuesta (PEP)", + "pep_info": "Una persona expuesta políticamente o PEP es un individuo al que le ha sido encomendada una función pública prominente. Este estatus se extiende a los parientes y socios de esta persona.", + "account_opening_reason": "Motivo para abrir la cuenta", + "what_is_this": "¿Qué es esto?" }, "profit-table": { - "profit_table": "Profit Table", - "all_apps": "All apps", + "profit_table": "Tabla de ganancias", + "all_apps": "Todas las apps", "tick_trade_app": "Tick-trade app", "all_time": "Lifetime", "jump_to_date": "Jump to date", From cd4d7e4664106ea75bb9312e415dce282a07252a Mon Sep 17 00:00:00 2001 From: Ashkan Date: Mon, 29 Apr 2019 06:30:33 +0200 Subject: [PATCH 042/119] New translations en.json (Spanish) --- www/i18n/es.json | 136 +++++++++++++++++++++++------------------------ 1 file changed, 68 insertions(+), 68 deletions(-) diff --git a/www/i18n/es.json b/www/i18n/es.json index 3245cce23e..2d4f13689a 100644 --- a/www/i18n/es.json +++ b/www/i18n/es.json @@ -254,7 +254,7 @@ "profit-table": { "profit_table": "Tabla de ganancias", "all_apps": "Todas las apps", - "tick_trade_app": "Tick-trade app", + "tick_trade_app": "App Tick Trade", "all_time": "Lifetime", "jump_to_date": "Jump to date", "date": "Fecha", @@ -332,29 +332,29 @@ "language": "Idioma", "settings": "Configuración", "resources": "Recursos", - "regulatory_information": "Regulatory Information", + "regulatory_information": "Información regulatoria", "mt5": "MetaTrader 5", - "contact_us": "Contact Us", + "contact_us": "Contáctenos", "open_real": "Upgrade To A Real Account", "open_financial": "Open A Financial Account", - "create_account": "Create Account", - "accounts_list": "Accounts List", - "network_status": "Network Status" + "create_account": "Crear cuenta", + "accounts_list": "Lista de cuentas", + "network_status": "Estado de la red" }, "settings": { "settings": "Configuración", - "self_exclusion": "Self Exclusion", - "change_password": "Change Password", - "financial_assessment": "Financial Assessment", + "self_exclusion": "Auto-exclusión", + "change_password": "Cambiar contraseña", + "financial_assessment": "Evaluación financiera", "limits": "Límites", - "account_categorisation": "Account Categorisation" + "account_categorisation": "Clasificación de la cuenta" }, "self-exclusion": { - "self_exclusion": "Self Exclusion Facilities", - "maximum_account_cash_balance": "Maximum account cash balance", - "max_balance_hint": "Once this limit is reached, you may no longer deposit.", - "daily_turnover_limit": "Daily turnover limit", - "max_turnover_hint": "Maximum aggregate contract purchases per day.", + "self_exclusion": "Características de autoexclusión", + "maximum_account_cash_balance": "Saldo de caja máximo en la cuenta", + "max_balance_hint": "Una vez que se alcance este límite ya no podrá depositar.", + "daily_turnover_limit": "Límite diario de volumen de transacciones", + "max_turnover_hint": "Máximo de adquisiciones de contratos agregados por día.", "daily_limit_on_losses": "Daily limit on losses", "max_losses_hint": "Maximum aggregate loss per day.", "7_day_turnover_limit": "7-day turnover limit", @@ -372,20 +372,20 @@ "time_out_hint": "Please enter date in the format MM/DD/YYYY HH:mm (local time). ", "exclude_me_from_the_website_until": "Exclude me from the website until", "exclude_me_hint": "Please enter date in the format MM/DD/YYYY.", - "update_settings": "Update Settings", - "please_enter_an_integer_value": "Please enter an integer value with max length of {{max}}", + "update_settings": "Actualizar configuración", + "please_enter_an_integer_value": "Por favor, ingrese un valor entero con longitud máxima de {{max}}", "enter_valid_value": "Please enter a value with up to {{fractionalDigits}} decimal places and max length of {{max}}", - "valid_range_hint": "Please enter a number between 0 and {{max}}", - "date_is_not_valid": "Exclude time must be after today", - "date_can_not_be_greater_than": "Exclude time cannot be greater than {{max}}", - "date_can_not_less_than": "Exclude time cannot be less than {{max}}", - "save_prompt": "Content saved successfully", - "session_timeout_warning": "Your session duration limit will end in 10 seconds.", + "valid_range_hint": "Por favor, ingrese un número entre 0 y {{max}}", + "date_is_not_valid": "El tiempo de exclusión debe ser después de hoy", + "date_can_not_be_greater_than": "El tiempo de exclusión no puede ser mayor que {{max}}", + "date_can_not_less_than": "El tiempo de exclusión no puede ser menor a {{max}}", + "save_prompt": "Contenido guardado con éxito", + "session_timeout_warning": "Su sesión expirará en 10 segundos.", "success": "Éxito", "warning": "Aviso", "not_zero": "Value can not be 0", - "error": "Sorry, an error occurred while processing your request.", - "customer_support": "customer support", + "error": "Lo sentimos, ha ocurrido un error mientras se procesaba su petición.", + "customer_support": "atención al cliente", "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", "ukgc_info_1": "Si está considerando la autoexclusión, le recomendamos registrarse en GAMSTOP.", "ukgc_info_2": "GAMSTOP es un servicio gratuito que le permite autoexcluirse de todas las empresas de apuestas en línea con licencia en Gran Bretaña.", @@ -505,7 +505,7 @@ "stocks": "Acciones", "otc_stocks": "Acciones OTC", "volidx": "Volidx", - "volatility_indices": "Volatility Indices", + "volatility_indices": "Índices de Volatilidad", "subject_to_change": "Los límites establecidos están sujetos a cambios sin previo aviso.", "trading_limits": "Límites", "withdrawal_limits": "Límite de retiro", @@ -520,8 +520,8 @@ }, "resources": { "resources": "Recursos", - "trading_times": "Trading Times", - "asset_index": "Asset Index" + "trading_times": "Horarios comerciales", + "asset_index": "Índice de activos" }, "trading-times": { "trading_times": "Horario de comercio", @@ -533,9 +533,9 @@ "settles": "Se queda en", "upcoming_events": "Próximos eventos", "GMT_times": "Todos los horarios en el sitio web corresponden a GMT (Greenwich Mean Time).", - "closes_early_(at_21:00)": "Closes early (at 21:00)", - "closes_early_(at_18:00)": "Closes early (at 18:00)", - "fridays": "Fridays" + "closes_early_(at_21:00)": "Cierra temprano (a las 21:00)", + "closes_early_(at_18:00)": "Cierra temprano (a las 18:00)", + "fridays": "Viernes" }, "asset-index": { "asset_index": "Índice de activos", @@ -546,21 +546,21 @@ }, "mt": { "you_do_not_have_mt5_account": "Usted no posee ninguna cuenta en MetaTrader, por favor cree una e inténtelo nuevamente.", - "create_account": "Create New Account", - "feature_is_not_available": "Sorry, this feature is not available in your jurisdiction.", + "create_account": "Crear una cuenta nueva", + "feature_is_not_available": "Lo sentimos, esta función no está disponible en su jurisdicción.", "meta_trader_accounts": "Cuentas en Meta Trader", "demo_account": "Cuenta de prueba", - "real_money_account": "Real-Money Account", - "login": "Login", + "real_money_account": "Cuenta de dinero real", + "login": "Iniciar sesión", "balance": "Saldo", "name": "Nombre", "start_trading_with_mt5": "Comenzar a operar con MT5", "upgrade_real_account": "To create a real money account for MT5, please upgrade to Binary.com Real Account.", - "standard": "Standard", - "advanced": "Advanced", - "mam_advanced": "MAM Advanced", - "volatility_indices": "Volatility Indices", - "mam_volatility_indices": "MAM Volatility Indices", + "standard": "Estándar", + "advanced": "Avanzado", + "mam_advanced": "MAM Avanzado", + "volatility_indices": "Índices de Volatilidad", + "mam_volatility_indices": "Índices de Volatilidad MAM", "upgrade": "Upgrade" }, "authentication": { @@ -583,11 +583,11 @@ "russia": "Rusia", "united_kingdom": "Reino Unido", "toll_free": "(gratuito)", - "not_located": "If you are not located in the above-mentioned countries, simply dial any of our contact numbers for help.", + "not_located": "Si usted no se encuentra en los países mencionados anteriormente, simplemente marque cualquiera de nuestros números de contacto para obtener ayuda.", "calls": "*Todas las llamadas se graban con fines de capacitación y supervisión", "email": "Correo electrónico", - "payment_email": "For payments-related queries", - "support_email": "For general support", + "payment_email": "Para consultas relacionadas con los pagos", + "support_email": "Para soporte general", "marketing_email": "For affiliate, partnership, and other marketing-related queries", "company_addresses": "Direcciones de la compañía", "malta": "Malta", @@ -645,38 +645,38 @@ "financial": "Investment", "account_real": "Real Account", "account_financial": "Financial Account", - "fiat_currencies": "Fiat Currency", - "crypto_currencies": "Cryptocurrency", + "fiat_currencies": "Dinero fiat", + "crypto_currencies": "Criptomonedas", "please_select_currency": "Please set the currency for your existing account {{loginid}}, in order to create more accounts.", - "set_currency": "Set Currency", - "existing_accounts": "Your Existing Accounts", - "create_new": "Create New Account", - "create": "Create", - "account": "Account", - "available_markets": "Available Markets", - "available_currencies": "Available Currencies", - "action": "Action", - "type": "Type", - "currency": "Currency", - "no_more_account": "You have created all accounts available to you.", - "commodities": "Commodities", + "set_currency": "Definir moneda", + "existing_accounts": "Sus Cuentas Existentes", + "create_new": "Crear una cuenta nueva", + "create": "Crear", + "account": "Cuenta", + "available_markets": "Mercados disponibles", + "available_currencies": "Divisas disponibles", + "action": "Acción", + "type": "Tipo", + "currency": "Moneda", + "no_more_account": "Usted ha creado todas las cuentas disponibles.", + "commodities": "Materias primas", "forex": "Forex", "smarties": "Smarties", - "indices": "Indices", - "stocks": "Stocks", - "volidx": "Volatility Indices", - "note": "Note: You can only have one fiat currency account and one of each cryptocurrency account.", + "indices": "Índices", + "stocks": "Acciones", + "volidx": "Índices de Volatilidad", + "note": "Nota: Sólo puede tener una cuenta en moneda fiat y una cuenta de cada criptomoneda.", "excluded_until": "This account is excluded until {{time}}", - "is_disabled": "This account is disabled", + "is_disabled": "Esta cuenta está deshabilitada", "account_warning": "Note: For any enquiries regarding disabled or excluded accounts, please contact", - "customer_support": "customer support." + "customer_support": "atención al cliente." }, "financial-information-options": { - "under_1_year": "0-1 year", - "1_2_years": "1-2 years", - "over_3_years": "Over 3 years", - "0_5_transactions": "0-5 transactions in the past 12 months", - "6_10_transactions": "6-10 transactions in the past 12 months", + "under_1_year": "0-1 año", + "1_2_years": "1-2 años", + "over_3_years": "Durante 3 años", + "0_5_transactions": "0-5 transacciones en los úlitmos 12 meses", + "6_10_transactions": "6-10 transacciones en los úlitmos 12 meses", "transactions_more": "40 transactions or more in the past 12 months", "construction": "Construction", "education": "Education", From aec7597b06a7e0b2e4b8d1d2006489326194d0af Mon Sep 17 00:00:00 2001 From: Ashkan Date: Mon, 29 Apr 2019 06:40:32 +0200 Subject: [PATCH 043/119] New translations en.json (Spanish) --- www/i18n/es.json | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/www/i18n/es.json b/www/i18n/es.json index 2d4f13689a..ad31243980 100644 --- a/www/i18n/es.json +++ b/www/i18n/es.json @@ -677,26 +677,26 @@ "over_3_years": "Durante 3 años", "0_5_transactions": "0-5 transacciones en los úlitmos 12 meses", "6_10_transactions": "6-10 transacciones en los úlitmos 12 meses", - "transactions_more": "40 transactions or more in the past 12 months", - "construction": "Construction", - "education": "Education", - "finance": "Finance", - "health": "Health", - "tourism": "Tourism", - "other": "Other", - "others": "Others", - "chief_executives": "Chief Executives, Senior Officials and Legislators", - "managers": "Managers", - "professionals": "Professionals", - "clerks": "Clerks", - "personal_care": "Personal Care, Sales and Service Workers", - "agricultural": "Agricultural, Forestry and Fishery Workers", - "craft": "Craft, Metal, Electrical and Electronics Workers", - "machine": "Plant and Machine Operators and Assemblers", - "helpers": "Cleaners and Helpers", - "mining": "Mining, Construction, Manufacturing and Transport Workers", - "armed_forces": "Armed Forces", - "government_officers": "Government Officers", + "transactions_more": "40 transacciones o más en los úlitmos 12 meses", + "construction": "Construcción", + "education": "Educación", + "finance": "Finanzas", + "health": "Salud", + "tourism": "Turismo", + "other": "Otro", + "others": "Otros", + "chief_executives": "Directores ejecutivos, altos funcionarios y legisladores", + "managers": "Gestores", + "professionals": "Profesionales", + "clerks": "Empleados", + "personal_care": "Trabajadores de cuidado personal, ventas y servicios", + "agricultural": "Trabajadores agrícolas, forestales y pesqueros", + "craft": "Trabajadores de la industria metalúrgica, eléctrica y electrónica", + "machine": "Operadores y ensambladores de plantas y máquinas", + "helpers": "Personal de aseo y ayudantes", + "mining": "Trabajadores de la minería, construcción, manufactura y transporte", + "armed_forces": "Fuerzas Armadas", + "government_officers": "Funcionarios de gobierno", "primary": "Primary", "secondary": "Secondary", "tertiary": "Tertiary", @@ -746,11 +746,11 @@ "secret_question_8": "Favourite artist", "speculative": "Speculative", "income_earning": "Income Earning", - "hedging": "Hedging" + "hedging": "Cobertura" }, "ios-pwa-prompt": { "title": "Install Binary TickTrade", - "close": "Close", + "close": "Cerrar", "installation_text": "Install Binary TickTrade on your home screen for quick and easy access when you're on the go.", "installation_help": "Just tab {{icon}} then 'Add to Home Screen'" }, From 55e96216ca030fb5ce92de7348122c924d75997a Mon Sep 17 00:00:00 2001 From: Ashkan Date: Mon, 29 Apr 2019 07:10:37 +0200 Subject: [PATCH 044/119] New translations en.json (German) --- www/i18n/de.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/www/i18n/de.json b/www/i18n/de.json index 1c0f7b5de2..103b575723 100644 --- a/www/i18n/de.json +++ b/www/i18n/de.json @@ -385,14 +385,14 @@ "warning": "Achtung", "not_zero": "Wert kann nicht 0 sein", "error": "Leider ist während der Bearbeitung Ihrer Anfrage ein Fehler aufgetreten.", - "customer_support": "customer support", + "customer_support": "kundenunterstützung", "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", - "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", - "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", - "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit", + "ukgc_info_1": "Wenn Sie einen Selbstausschluss erwägen, können Sie sich bei GAMSTOP registrieren.", + "ukgc_info_2": "GAMSTOP ist ein kostenloser Service, der es Ihnen ermöglicht, sich aus allen Online-Glücksspiel-Unternehmen, die in Großbritannien zugelassen sind, selbst auszuschließen.", + "ukgc_info_3": "Um mehr zu erfahren und um sich mit GAMSTOP zu registrieren, besuchen Sie bitte", "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", - "info_bottom_2": "Since you feel the need to self-exclude, we strongly encourage you to exclude yourself from similar services that you may have signed up for.", - "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " + "info_bottom_2": "Da Sie das Bedürfnis haben, sich selbst auszuschließen, empfehlen wir Ihnen sich von ähnlichen Diensten, für die Sie sich eventuell angemeldet haben, abzumelden.", + "info_bottom_3": "Um sich von allen Online-Glücksspiel-Unternehmen, die in Großbritannien lizenziert sind, selbst auszuschließen, gehen Sie bitte zu " }, "profile": { "personal_details": "Persönliche Angaben", From 9b21d5f447d7ab601f53725438d153f42250605b Mon Sep 17 00:00:00 2001 From: Ashkan Date: Mon, 29 Apr 2019 07:31:21 +0200 Subject: [PATCH 045/119] New translations en.json (Spanish) --- www/i18n/es.json | 92 ++++++++++++++++++++++++------------------------ 1 file changed, 46 insertions(+), 46 deletions(-) diff --git a/www/i18n/es.json b/www/i18n/es.json index ad31243980..40000b9595 100644 --- a/www/i18n/es.json +++ b/www/i18n/es.json @@ -355,22 +355,22 @@ "max_balance_hint": "Una vez que se alcance este límite ya no podrá depositar.", "daily_turnover_limit": "Límite diario de volumen de transacciones", "max_turnover_hint": "Máximo de adquisiciones de contratos agregados por día.", - "daily_limit_on_losses": "Daily limit on losses", - "max_losses_hint": "Maximum aggregate loss per day.", - "7_day_turnover_limit": "7-day turnover limit", - "7_day_turnover_hint": "Maximum aggregate contract purchases over a 7-day period.", - "7_day_limit_on_losses": "7-day limit on losses", - "7_day_losses_hint": "Maximum aggregate loss over a 7-day period.", - "30_day_turnover_limit": "30-day turnover limit", - "30_day_turnover_hint": "Maximum aggregate contract purchases over a 30-day period.", - "30_day_limit_on_losses": "30-day limit on losses", - "30_day_losses_hint": "Maximum aggregate loss over a 30-day period.", - "maximum_number_of_open_positions": "Maximum number of open positions", - "session_duration_limit_in_minutes": "Session duration limit, in minutes", - "session_duration_hint": "You will be automatically logged out after such time.", - "time_out_until": "Time out until", + "daily_limit_on_losses": "Límite diario de pérdidas", + "max_losses_hint": "Máximo de pérdidas por día.", + "7_day_turnover_limit": "El límite de volumen de transacciones de 7 días", + "7_day_turnover_hint": "Máximo de adquisiciones de contratos por un período de 7 días.", + "7_day_limit_on_losses": "El límite de pérdidas de 7 días", + "7_day_losses_hint": "Máximo de pérdidas por un período de 7 días.", + "30_day_turnover_limit": "El límite de volumen de transacciones de 30 días", + "30_day_turnover_hint": "Máximo de adquisiciones de contratos por un período de 30 días.", + "30_day_limit_on_losses": "El límite de pérdidas de 30 días", + "30_day_losses_hint": "Máximo de pérdidas por un período de 30 días.", + "maximum_number_of_open_positions": "Número máximo de posiciones abiertas", + "session_duration_limit_in_minutes": "Límite de la duración de la sesión, en minutos", + "session_duration_hint": "Usted será automáticamente desconectado después de ese tiempo.", + "time_out_until": "Pausa hasta", "time_out_hint": "Please enter date in the format MM/DD/YYYY HH:mm (local time). ", - "exclude_me_from_the_website_until": "Exclude me from the website until", + "exclude_me_from_the_website_until": "Excluirme del sitio web hasta", "exclude_me_hint": "Please enter date in the format MM/DD/YYYY.", "update_settings": "Actualizar configuración", "please_enter_an_integer_value": "Por favor, ingrese un valor entero con longitud máxima de {{max}}", @@ -588,7 +588,7 @@ "email": "Correo electrónico", "payment_email": "Para consultas relacionadas con los pagos", "support_email": "Para soporte general", - "marketing_email": "For affiliate, partnership, and other marketing-related queries", + "marketing_email": "Para consultas sobre el programa de afiliados, asociaciones y otras relacionadas con el área de marketing", "company_addresses": "Direcciones de la compañía", "malta": "Malta", "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, Mompalao Building, Suite 2, Tower Road, Msida MSD1825", @@ -612,39 +612,39 @@ "set_country": "Por favor seleccione el país de residencia antes de actualizar a una cuenta de dinero real.", "complete_financial_assessment": "Por favor complete el formulario de evaluación financiera para aumentar el límite de retiro y negociación de su cuenta.", "financial_assessment_not_completed": "Financial Assessment Is Not Completed", - "tax_information": "Tax Information", + "tax_information": "Información tributaria", "complete_profile": "Por favor complete su perfil para aumentar el límite de retiro y negociación de su cuenta.", - "tnc": "Terms and Conditions", + "tnc": "Términos y condiciones", "accept_tnc": "Por favor acepte los términos y condiciones actualizados para aumentar el límite de retiro y negociación de su cuenta.", "max_turnover_limit": "Account Maximum Turnover Limit", "set_max_turnover_limit": "Please set Self Exclusion 30-day turnover limit to lift your deposit limits.", "account_age_verification": "Age Verification", "needs_age_verification": "Es necesario verificar su edad. Por favor, póngase en contacto con nuestro servicio de atención al cliente para obtener más información.", - "choose_account_currency": "Please set the currency of your account.", + "choose_account_currency": "Configure la moneda de su cuenta.", "account_currency": "Account Currency" }, "set-currency": { "select_currency": "Select Currency", - "select_currency_text": "Please select the currency of this account:", - "fiat_currency": "Fiat Currency", - "cryptocurrency": "Cryptocurrency", - "confirm": "Confirm" + "select_currency_text": "Seleccione la moneda para esta cuenta:", + "fiat_currency": "Dinero fiat", + "cryptocurrency": "Criptomonedas", + "confirm": "Confirmar" }, "cryptocurrencies": { "bitcoin": "Bitcoin", "bitcoin_cash": "Bitcoin Cash", - "ether": "Ether", - "ether_classic": "Ether Classic", + "ether": "Ethereum", + "ether_classic": "Ethereum Classic", "litecoin": "Litecoin", "dai": "Dai" }, "accounts-management": { "real": "Real", "virtual": "Virtual", - "gaming": "Gaming", - "financial": "Investment", - "account_real": "Real Account", - "account_financial": "Financial Account", + "gaming": "Apuestas", + "financial": "Inversión", + "account_real": "Cuenta real", + "account_financial": "Cuenta Financiera", "fiat_currencies": "Dinero fiat", "crypto_currencies": "Criptomonedas", "please_select_currency": "Please set the currency for your existing account {{loginid}}, in order to create more accounts.", @@ -697,17 +697,17 @@ "mining": "Trabajadores de la minería, construcción, manufactura y transporte", "armed_forces": "Fuerzas Armadas", "government_officers": "Funcionarios de gobierno", - "primary": "Primary", - "secondary": "Secondary", - "tertiary": "Tertiary", - "salaried": "Salaried Employee", - "self_employed": "Self-Employed", - "investment": "Investments & Dividends", - "pension": "Pension", - "net_income_1": "Less than $25,000", - "net_income_2": "$25,000 - $50,000", - "net_income_3": "$50,001 - $100,000", - "net_income_4": "$100,001 - $500,000", + "primary": "Primario", + "secondary": "Secundario", + "tertiary": "Terciario", + "salaried": "Empleado Asalariado", + "self_employed": "Autónomo", + "investment": "Inversiones y Dividendos", + "pension": "Pensión", + "net_income_1": "Menos de $25.000", + "net_income_2": "$25.000 - $50.000", + "net_income_3": "$50.001 - $100.000", + "net_income_4": "$100.001 - $500.000", "net_income_5": "Over $500,000", "estimated_worth_1": "Less than $100,000", "estimated_worth_2": "$100,000 - $250,000", @@ -741,10 +741,10 @@ "secret_question_3": "Name of first love", "secret_question_4": "Memorable town/city", "secret_question_5": "Memorable date", - "secret_question_6": "Favourite dish", - "secret_question_7": "Brand of first car", - "secret_question_8": "Favourite artist", - "speculative": "Speculative", + "secret_question_6": "Plato favorito", + "secret_question_7": "Marca de su primer coche", + "secret_question_8": "Artista favorito", + "speculative": "Especulativo", "income_earning": "Income Earning", "hedging": "Cobertura" }, @@ -756,9 +756,9 @@ }, "professional-client-information": { "professional_client": "What is Professional Client?", - "clients_need_to_satisfy": "Clients need to satisfy at least two of the following criteria in order to receive Professional Client status:", + "clients_need_to_satisfy": "Los clientes deben cumplir con al menos dos de los siguientes criterios para ser reconocidos como cliente profesional:", "significant_transactions": "You’ve carried out significant transactions on markets similar to the ones we offer, averaging 10 transactions per quarter for the previous four quarters", - "size_of_instrument": "The size of your instrument portfolio exceeds EUR 500,000 or its equivalent", + "size_of_instrument": "El tamaño de su cartera de instrumentos excede los 500.000 EUR o su equivalente", "worked_in_financial_sector": "You’ve worked in the financial sector for at least one year in a role that requires knowledge of your intended transactions on our platform", "treated_as_professional_client": "If you choose to be treated as a Professional Client, we’ll regard you as having the required market knowledge and experience. As such, we’ll take steps to ensure that your request for Professional Client status meets the above criteria, including a request for the following:", "statements": "Statements that reflect your transactions from the previous four quarters", From ba7a5b3eeb2e408c4efd2685b420bea0a0b5356b Mon Sep 17 00:00:00 2001 From: Ashkan Date: Mon, 29 Apr 2019 07:40:32 +0200 Subject: [PATCH 046/119] New translations en.json (Spanish) --- www/i18n/es.json | 82 ++++++++++++++++++++++++------------------------ 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/www/i18n/es.json b/www/i18n/es.json index 40000b9595..dc6507051b 100644 --- a/www/i18n/es.json +++ b/www/i18n/es.json @@ -708,20 +708,20 @@ "net_income_2": "$25.000 - $50.000", "net_income_3": "$50.001 - $100.000", "net_income_4": "$100.001 - $500.000", - "net_income_5": "Over $500,000", - "estimated_worth_1": "Less than $100,000", - "estimated_worth_2": "$100,000 - $250,000", - "estimated_worth_3": "$250,001 - $500,000", - "estimated_worth_4": "$500,001 - $1,000,000", - "estimated_worth_5": "Over $1,000,000", - "account_turnover_1": "Less than $25,000", - "account_turnover_2": "$25,000 - $50,000", - "account_turnover_3": "$50,001 - $100,000", - "account_turnover_4": "$100,001 - $500,000", - "account_turnover_5": "Over $500,000", - "employed": "Employed", - "pensioner": "Pensioner", - "student": "Student", + "net_income_5": "Más de $500.000", + "estimated_worth_1": "Menos de $100.000", + "estimated_worth_2": "$100.000 - $250.000", + "estimated_worth_3": "$250.001 - $500.000", + "estimated_worth_4": "$500.001 - $1.000.000", + "estimated_worth_5": "Más de $1.000.000", + "account_turnover_1": "Menos de $25.000", + "account_turnover_2": "$25.000 - $50.000", + "account_turnover_3": "$50.001 - $100.000", + "account_turnover_4": "$100.001 - $500.000", + "account_turnover_5": "Más de $500.000", + "employed": "Empleado", + "pensioner": "Jubilado", + "student": "Estudiante", "unemployed": "Unemployed", "accumulation_of_income_savings": "Accumulation of Income/Savings", "cash_business": "Cash Business", @@ -759,43 +759,43 @@ "clients_need_to_satisfy": "Los clientes deben cumplir con al menos dos de los siguientes criterios para ser reconocidos como cliente profesional:", "significant_transactions": "You’ve carried out significant transactions on markets similar to the ones we offer, averaging 10 transactions per quarter for the previous four quarters", "size_of_instrument": "El tamaño de su cartera de instrumentos excede los 500.000 EUR o su equivalente", - "worked_in_financial_sector": "You’ve worked in the financial sector for at least one year in a role that requires knowledge of your intended transactions on our platform", - "treated_as_professional_client": "If you choose to be treated as a Professional Client, we’ll regard you as having the required market knowledge and experience. As such, we’ll take steps to ensure that your request for Professional Client status meets the above criteria, including a request for the following:", - "statements": "Statements that reflect your transactions from the previous four quarters", - "portfolio": "Proof of your portfolio held elsewhere", - "employment": "Proof of your employment" + "worked_in_financial_sector": "Usted ha trabajado en el sector financiero durante al menos un año en una posición que requiere conocer las transacciones que planea efectuar en nuestra plataforma", + "treated_as_professional_client": "Si elige ser tratado como cliente profesional, consideraremos que posee el conocimiento y experiencia de mercado necesarios. En tal caso, tomaremos algunas medidas para garantizar que su solicitud cumpla con los criterios mencionados anteriormente, incluyendo la petición de lo siguiente:", + "statements": "Declaraciones que reflejen sus transacciones de los cuatro últimos trimestres", + "portfolio": "Prueba de su cartera en otros lugares", + "employment": "Prueba de su empleo" }, "pep-information": { "pep": "What is PEP?", - "what_is_pep": "A Politically Exposed Person (PEP) is an individual who is or has been entrusted with a prominent public function including his/her immediate family members or persons known to be close associates of such persons, but does not include middle ranking or more junior officials. Such individuals include Heads of State, Ministers, Parliamentary Secretaries, Members of Parliament, Judges, Ambassadors, Senior Government Officials, High Ranking Officers in the Armed Forces, Audit Committees of the boards of central banks, and Directors of state-owned corporations. The “immediate family members” of the above examples will also be considered as PEP, and these include their spouses/partners, parents, and children. Additionally, “persons known to be close associates” of PEPs include their business partners, will also be considered as such. As a general rule, a person considered to be a PEP and who has ceased to be entrusted with a prominent public function for a period of at least twelve months no longer qualifies as a PEP." + "what_is_pep": "Una Persona Políticamente Expuesta (PEP) es un individuo a quien se le ha confiado o se le ha confiado una función pública prominente, incluyendo a sus familiares inmediatos o a asociados cercanos de dichas personas, sin incluir a los funcionarios de rango medio o más bajo. Estas personas incluyen jefes de estado, ministros, secretarios del parlamento, miembros del parlamento, jueces, embajadores, altos funcionarios de gobierno, altos oficiales de las fuerzas armadas, comités de auditoría de los consejos de administración de los bancos centrales y directores de empresas estatales. Los \"miembros de la familia inmediata\" de los cargos mencionados anteriormente, es decir, sus cónyuges/parejas, padres e hijos, también serán considerados como PEP. Del mismo modo, se considerarán como PEP a los \"asociados cercanos\" de las PEP incluyen sus socios comerciales. Como regla general, ya no califica como PEP una persona que haya cesado de sus funciones públicas prominentes por un periodo de al menos doce meses." }, "what-is-tax-information": { - "tax_information_title": "Tax Information", - "required_by": "This requirement is mandated by the Common Reporting Standard (CRS) and the Foreign Account Tax Compliance Act (FATCA).", + "tax_information_title": "Información tributaria", + "required_by": "Este es un requisito del Estándar Común de Reporte (ECR/CRS) y de la Ley de cumplimiento tributario de cuentas extranjeras (FATCA).", "please_enter": "Please enter your ", - "tax_information": "tax information", + "tax_information": "información tributaria", "to_continue": "to continue.", - "information_will_be_safe": "Rest assured that your information will only be used for CRS/FATCA reporting purposes and will be kept safe.", - "contact_for_clarification": "If we have reason to believe that your tax information is incomplete, we may contact you for clarification." + "information_will_be_safe": "Descanse tranquilo, teniendo la seguridad de que su información sólo se utilizará para informes CRS/FATCA y que se mantendrá segura.", + "contact_for_clarification": "Si tenemos motivos para creer que su información tributaria está incompleta, podemos contactarlo para aclarar su situación." }, "professional-client-confirmation": { - "professional_clients": "Professional Clients", - "professional_clients_receive": "A Professional Client receives a lower degree of client protection due to the following:", - "posses_of_experience": "We presume that you possess the experience, knowledge, and expertise to make your own investment decisions and properly assess the risks involved", - "appropriateness_test": "We’re not obliged to conduct an appropriateness test, nor provide you with any risk warnings", - "keep_informed": "As a Professional Client, you must keep us informed about any changes that may affect your status.", - "accept": "Accept", - "decline": "Decline", - "you_may_decline": "Note: You may decline and continue as a Retail Client." + "professional_clients": "Clientes profesionales", + "professional_clients_receive": "Un cliente profesional recibe un menor grado de protección al cliente debido a lo siguiente:", + "posses_of_experience": "Suponemos que posee la experiencia, el conocimiento y la competencia para tomar sus propias decisiones de inversión y evaluar adecuadamente los riesgos involucrados", + "appropriateness_test": "No estamos obligados a llevar a cabo una prueba de idoneidad ni a brindarle ningún tipo de advertencia con respecto a los riesgos", + "keep_informed": "Como cliente profesional, debe mantenernos informados sobre cualquier cambio que pueda afectar su estatus.", + "accept": "Aceptar", + "decline": "Rechazar", + "you_may_decline": "Nota: Puede rechazar y continuar como cliente independiente." }, "account-categorisation": { - "account_categorisation": "Account Categorisation", - "processing": "Your application to be treated as a professional client is being processed.", - "professional": "You are categorised as a professional client.", - "error": "Sorry, an error occurred while processing your request.", - "retail_info": "By default, all clients are treated as retail. Do you prefer to be treated as a professional client if you match the necessary criteria?", - "professional_client_verify": "I want to be treated as a professional client.", - "what_is_this": "What is this?", - "submit": "Submit" + "account_categorisation": "Clasificación de la cuenta", + "processing": "Su solicitud para ser tratado como un cliente profesional es procesada.", + "professional": "Está categorizado como un cliente profesional.", + "error": "Lo sentimos, ha ocurrido un error mientras se procesaba su petición.", + "retail_info": "De manera predeterminada, todos los clientes son tratados como inversionistas minoristas. ¿Prefiere que lo tratemos como cliente profesional en caso de que cumpla con los requisitos necesarios?", + "professional_client_verify": "Quiero ser tratado como un cliente profesional.", + "what_is_this": "¿Qué es esto?", + "submit": "Enviar" } } From 3bf25303aa55884b04105807d90851e7fac8b070 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Mon, 29 Apr 2019 07:50:32 +0200 Subject: [PATCH 047/119] New translations en.json (Spanish) --- www/i18n/es.json | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/www/i18n/es.json b/www/i18n/es.json index dc6507051b..087594380c 100644 --- a/www/i18n/es.json +++ b/www/i18n/es.json @@ -722,25 +722,25 @@ "employed": "Empleado", "pensioner": "Jubilado", "student": "Estudiante", - "unemployed": "Unemployed", - "accumulation_of_income_savings": "Accumulation of Income/Savings", - "cash_business": "Cash Business", - "company_ownership": "Company Ownership", - "divorce_settlement": "Divorce Settlement", - "inheritance": "Inheritance", - "investment_income": "Investment Income", - "sale_of_property": "Sale of Property" + "unemployed": "Desempleado", + "accumulation_of_income_savings": "Acumulación de ingresos/ahorros", + "cash_business": "Negocio de efectivo", + "company_ownership": "Propiedad de la empresa", + "divorce_settlement": "Acuerdo de divorcio", + "inheritance": "Herencia", + "investment_income": "Rendimiento por inversión", + "sale_of_property": "Venta de propiedad" }, "account-options": { - "mr": "Mr", - "miss": "Miss", - "mrs": "Mrs", - "ms": "Ms", - "secret_question_1": "Mother's maiden name", - "secret_question_2": "Name of your pet", - "secret_question_3": "Name of first love", - "secret_question_4": "Memorable town/city", - "secret_question_5": "Memorable date", + "mr": "Sr", + "miss": "Señorita", + "mrs": "Sra", + "ms": "Sra", + "secret_question_1": "Apellido de soltera de su madre", + "secret_question_2": "Nombre de su mascota", + "secret_question_3": "Nombre de su primer amor", + "secret_question_4": "Pueblo/ciudad memorable", + "secret_question_5": "Fecha memorable", "secret_question_6": "Plato favorito", "secret_question_7": "Marca de su primer coche", "secret_question_8": "Artista favorito", From ece2daa0bfb819025cd060918dd1091259b3efe6 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Mon, 29 Apr 2019 08:10:58 +0200 Subject: [PATCH 048/119] New translations en.json (Chinese Simplified) --- www/i18n/zh_cn.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/www/i18n/zh_cn.json b/www/i18n/zh_cn.json index 99948d31e9..9f918bdbe1 100644 --- a/www/i18n/zh_cn.json +++ b/www/i18n/zh_cn.json @@ -385,14 +385,14 @@ "warning": "警告", "not_zero": "值不能为0", "error": "对不起,您的请求处理发生错误。", - "customer_support": "customer support", - "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", - "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", - "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", - "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit", - "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", - "info_bottom_2": "Since you feel the need to self-exclude, we strongly encourage you to exclude yourself from similar services that you may have signed up for.", - "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " + "customer_support": "客服部", + "info": "在线交易可能使人上瘾。请填写下表以限制您对本网站的参与。您也可发送签名信或传真到我们的客服团队。一旦设定好,您只能收紧您的限制。限制只能在 7 天后取消或放宽,自我禁止期在确认后不能取消或更改。若要解除或增加您的限制,请联系", + "ukgc_info_1": "如果您要自我禁止, 您可考虑在 GAMSTOP 注册。", + "ukgc_info_2": "GAMSTOP 免费提供服务, 使您能够自我禁止在英国授权的所有在线博彩公司交易。", + "ukgc_info_3": "要了解更多, 并在 GAMSTOP 注册, 请访问", + "info_bottom_1": "此网站上的自我禁止功能仅适用于您的 Binary.com账户, 不包括其他公司或网站。", + "info_bottom_2": "由于您觉得有必要启用自我禁止功能, 我们强烈鼓励您禁止自己使用已经注册的类似服务。", + "info_bottom_3": "要自我禁止在所有英国注册的在线博彩公司交易, 可前往 " }, "profile": { "personal_details": "个人详细信息", From 74f4f0317d3150b35b9b6628c6b4bcab2e0750bc Mon Sep 17 00:00:00 2001 From: Ashkan Date: Mon, 29 Apr 2019 08:11:01 +0200 Subject: [PATCH 049/119] New translations en.json (Chinese Traditional) --- www/i18n/zh_tw.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/www/i18n/zh_tw.json b/www/i18n/zh_tw.json index f19df0eea8..aa79629078 100644 --- a/www/i18n/zh_tw.json +++ b/www/i18n/zh_tw.json @@ -385,14 +385,14 @@ "warning": "警告", "not_zero": "值不能為0", "error": "對不起,在處理您的請求時發生錯誤。", - "customer_support": "customer support", - "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", - "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", - "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", - "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit", - "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", - "info_bottom_2": "Since you feel the need to self-exclude, we strongly encourage you to exclude yourself from similar services that you may have signed up for.", - "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " + "customer_support": "客服部", + "info": "線上交易可能使人上癮。請填寫下表以限制您對本網站的參與,您也可以傳送簽名信或傳真到我們的客服團隊。設定好後,您將只能收緊限制。限制只能在7天后取消或放寬,而自我禁止期在您確認後就不能取消或更改。若要解除或增加您的限制,請聯繫", + "ukgc_info_1": "如果您要自我禁止, 您可考慮在 GAMSTOP 註冊。", + "ukgc_info_2": "GAMSTOP 免費提供服務, 使您能夠自我禁止在英國授權的所有線上博彩公司交易。", + "ukgc_info_3": "要瞭解更多, 並在 GAMSTOP 註冊, 請前往", + "info_bottom_1": "此網站的自我禁止功能僅適用于您的 Binary.com帳戶, 不包括其他公司或網站。", + "info_bottom_2": "由於您覺得有必要啟用自我禁止功能, 我們強烈鼓勵您禁止自己使用已註冊的類似服務。", + "info_bottom_3": "要自我禁止在英國註冊的所有線上博彩公司交易, 可前往 " }, "profile": { "personal_details": "個人詳細資訊", From 6be8b673238f5705877594cc3bd5af3071285132 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 30 Apr 2019 10:40:39 +0200 Subject: [PATCH 050/119] New translations en.json (Italian) --- www/i18n/it.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/www/i18n/it.json b/www/i18n/it.json index 13664dfdd3..60b9c51883 100644 --- a/www/i18n/it.json +++ b/www/i18n/it.json @@ -385,13 +385,13 @@ "warning": "Attenzione", "not_zero": "Value can not be 0", "error": "Siamo spiacenti, si è verificato un errore durante l'elaborazione della tua richiesta.", - "customer_support": "customer support", + "customer_support": "servizio clienti", "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", - "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", - "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", - "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit", + "ukgc_info_1": "Se stai valutando l'autoesclusione, potresti volere registrarti con GAMSTOP.", + "ukgc_info_2": "GAMSTOP è un servizio gratuito che ti permette di autoescluderti da qualsiasi società di gioco d'azzardo online autorizzata in Gran Bretagna.", + "ukgc_info_3": "Per saperne di più e per iscriverti con GAMSTOP, visita il sito", "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", - "info_bottom_2": "Since you feel the need to self-exclude, we strongly encourage you to exclude yourself from similar services that you may have signed up for.", + "info_bottom_2": "Dal momento che hai deciso di autoescluderti, ti consigliamo vivamente di autoescluderti anche da altri servizi simili ai quali sei iscritto.", "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " }, "profile": { @@ -588,8 +588,8 @@ "email": "Email", "payment_email": "Per le richieste legate ai pagamenti", "support_email": "Per l'assistenza generale", - "marketing_email": "For affiliate, partnership, and other marketing-related queries", - "company_addresses": "Company addresses", + "marketing_email": "Per le richieste relative agli associati, alle partnership e al marketing", + "company_addresses": "Indirizzi della società", "malta": "Malta", "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, Mompalao Building, Suite 2, Tower Road, Msida MSD1825", "japan": "Giappone", @@ -612,9 +612,9 @@ "set_country": "Prima di passare a un account con soldi reali, si prega di impostare il paese di residenza.", "complete_financial_assessment": "Per aumentare il limite dei prelievi e del trading, si prega di compilare il modulo della valutazione finanziaria.", "financial_assessment_not_completed": "Financial Assessment Is Not Completed", - "tax_information": "Tax Information", + "tax_information": "Informazioni Aggiuntive", "complete_profile": "Per aumentare il limite dei prelievi e del trading, completa il profilo del tuo account.", - "tnc": "Terms and Conditions", + "tnc": "Termini e condizioni", "accept_tnc": "Per aumentare il limite dei prelievi e del trading, accetta i Termini e condizioni aggiornati.", "max_turnover_limit": "Account Maximum Turnover Limit", "set_max_turnover_limit": "Per aumentare il limite dei prelievi e del trading, imposta il limite di fatturato di 30 giorni dell'Auto esclusione.", From ffb0d3ae8c0e870602101f369dad197abebafec6 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 30 Apr 2019 10:40:42 +0200 Subject: [PATCH 051/119] New translations en.json (French) --- www/i18n/fr.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/www/i18n/fr.json b/www/i18n/fr.json index 2a1dad0c45..df3712e31b 100644 --- a/www/i18n/fr.json +++ b/www/i18n/fr.json @@ -385,14 +385,14 @@ "warning": "Avertissement", "not_zero": "La Valeur ne peut pas être 0", "error": "Désolé, une erreur s’est produite lors du traitement de votre demande.", - "customer_support": "customer support", + "customer_support": "service clientèle", "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", - "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", - "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", - "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit", + "ukgc_info_1": "Si vous envisagez de vous auto-exclure, vous pouvez vous inscrire auprès de GAMSTOP.", + "ukgc_info_2": "GAMSTOP est un service gratuit qui vous permet de vous auto exclure de toutes les sociétés de jeu en ligne sous licence en Grande-Bretagne.", + "ukgc_info_3": "Pour trouver plus d'information et pour signer avec GAMSTOP, veuillez visiter", "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", - "info_bottom_2": "Since you feel the need to self-exclude, we strongly encourage you to exclude yourself from similar services that you may have signed up for.", - "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " + "info_bottom_2": "Étant donné que vous ressentez le besoin de vous auto exclure, nous vous encourageons vivement à vous exclure des services similaires que vous pouvez avoir contracté.", + "info_bottom_3": "Pour vous auto exclure de toutes les compagnies de jeu en ligne sous licence en Grande-Bretagne, allez à " }, "profile": { "personal_details": "Informations personnelles", From 4855ab4595c859177e162a607bc0100f9430a2ea Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 30 Apr 2019 10:40:45 +0200 Subject: [PATCH 052/119] New translations en.json (Polish) --- www/i18n/pl.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/www/i18n/pl.json b/www/i18n/pl.json index 05460bb07d..c971a42c7c 100644 --- a/www/i18n/pl.json +++ b/www/i18n/pl.json @@ -385,14 +385,14 @@ "warning": "Ostrzeżenie", "not_zero": "Wartość nie może wynosić 0", "error": "Przepraszamy, podczas przetwarzania żądania wystąpił błąd.", - "customer_support": "customer support", + "customer_support": "dział obsługi klienta", "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", - "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", - "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", - "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit", + "ukgc_info_1": "Jeśli rozważasz skorzystanie z opcji samodzielnego wykluczenia, możesz zarejestrować się w GAMSTOP.", + "ukgc_info_2": "GAMSTOP to darmowa usługa, która umożliwia samodzielne wykluczenie z dostępu do wszystkich firm oferujących handel online z licencją w Wielkiej Brytanii.", + "ukgc_info_3": "Aby uzyskać więcej informacji i zarejestrować się z GAMSTOP, odwiedź", "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", - "info_bottom_2": "Since you feel the need to self-exclude, we strongly encourage you to exclude yourself from similar services that you may have signed up for.", - "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " + "info_bottom_2": "Skoro czujesz potrzebę skorzystania z opcji samo-wykluczenia, zachęcamy do samo-wykluczenia również z podobnych usług, z których być może korzystasz.", + "info_bottom_3": "Aby dokonać samo-wyłączenia ze wszystkich firm oferujących handel online w Wielkiej Brytanii, przejdź do " }, "profile": { "personal_details": "Dane osobowe", From d20541705405f62c83de1c2c174a62212819eded Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 30 Apr 2019 10:40:52 +0200 Subject: [PATCH 053/119] New translations en.json (Portuguese) --- www/i18n/pt.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/www/i18n/pt.json b/www/i18n/pt.json index 67ecec6901..c163b70489 100644 --- a/www/i18n/pt.json +++ b/www/i18n/pt.json @@ -385,14 +385,14 @@ "warning": "Aviso", "not_zero": "Valor não pode ser 0", "error": "Lamentamos, ocorreu um erro durante o processamento do seu pedido.", - "customer_support": "customer support", + "customer_support": "apoio ao cliente", "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", - "ukgc_info_1": "If you are considering self-exclusion, you may wish to register with GAMSTOP.", - "ukgc_info_2": "GAMSTOP is a free service that enables you to self-exclude from all online gambling companies licensed in Great Britain.", - "ukgc_info_3": "To find out more and to sign up with GAMSTOP, please visit", + "ukgc_info_1": "Caso você esteja considerando a auto-exclusão, é provável que queira registrar no GAMSTOP.", + "ukgc_info_2": "O GAMSTOP é um serviço gratuito que lhe permite excluir-se de todas as empresas de jogos de azar online licenciadas no Reino Unido.", + "ukgc_info_3": "Para saber mais e para se inscrever no GAMSTOP, visite", "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", - "info_bottom_2": "Since you feel the need to self-exclude, we strongly encourage you to exclude yourself from similar services that you may have signed up for.", - "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " + "info_bottom_2": "Visto que você sente a necessidade de se autoexcluir, recomendamos fortemente que se exclua de serviços semelhantes em quais esteja inscrito.", + "info_bottom_3": "Para se excluir de todas as empresas de jogos de azar online licenciadas no Reino Unido, pode visitar " }, "profile": { "personal_details": "Dados pessoais", From 73a9c42605c59756ef79e9fe4b0f44072cb5a7de Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 30 Apr 2019 21:30:37 +0200 Subject: [PATCH 054/119] New translations en.json (Thai) --- www/i18n/th.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/www/i18n/th.json b/www/i18n/th.json index 89b054c39d..a1e0d5d12f 100644 --- a/www/i18n/th.json +++ b/www/i18n/th.json @@ -385,14 +385,14 @@ "warning": "คำเตือน", "not_zero": "ค่าไม่สามารถเป็น 0", "error": "ขออภัย มีความผิดพลาดเกิดขึ้นขณะที่ประมวลผลความประสงค์ของท่าน", - "customer_support": "ฝ่ายบริการลูกค้า", + "customer_support": "ฝ่ายลูกค้าสัมพันธ์", "info": "การซื้อขายผลิตภัณฑ์ทางการเงินอาจทำให้ท่านเสพติดได้ โปรดกรอกข้อมูลในแบบฟอร์มด้านล่างเพื่อกำหนดวงเงินการใช้เว็บไซต์ หรือ ส่งจดหมายที่มีการลงนาม หรือ ส่งแฟกซ์มายังฝ่ายบริการลูกค้า เมื่อมีการตั้งค่าดังกล่าวแล้ว ท่านจะทำได้เพียงลดวงเงินเท่านั้น วงเงินจะถูกปรับหรือผ่อนปรนหลังจาก 7 วันของวันที่กำหนดให้พัก แต่ท่านจะไม่สามารถลบหรือเปลี่ยนแปลงได้หลังจากได้ทำการยืนยันแล้ว หากท่านต้องการลบหรือเพิ่มวงเงินของท่าน โปรดติดต่อ ฝ่ายลูกค้าสัมพันธ์", "ukgc_info_1": "หากท่านกำลังพิจารณาพักตัวเองจากการใช้งานระบบ ท่านอาจต้องการลงทะเบียนกับ GAMSTOP", "ukgc_info_2": "GAMSTOP เป็นบริการฟรีที่ช่วยให้ท่านสามารถพักตัวเองจากบริษัทด้านการพนันออน์ไลน์ทั้งหมด และได้รับใบอนุญาตในสหราชอาณาจักร", "ukgc_info_3": "เพื่อหาข้อมูลเพิ่มเติมและลงทะเบียนกับ GAMSTOP โปรดเยี่ยมชมที่", "info_bottom_1": "การพักตัวเองบนเว็บไซต์นี้ใช้ได้กับบัญชี Binary.com ของท่านเท่านั้น และไม่รวมถึงบริษัทหรือเว็บไซต์อื่นๆ", - "info_bottom_2": "หากท่านรู้สึกว่า ท่านต้องการพักการใช้งาน เราแนะนำให้ท่านพักการใช้งานจากการบริการอื่นๆที่มีลักษณะเดียวกันที่ท่านได้ลงทะเบียนไว้", - "info_bottom_3": "เพื่อพักตัวเองจากบริษัทการพนันออนไลน์ทั้งหมดที่ได้รับใบอนุญาตในสหราชอาณาจักร กรุณาไปที่ " + "info_bottom_2": "หากท่านรู้สึกว่า ท่านต้องการพักการใช้งาน เราแนะนำให้ท่านพักการใช้งานจากการบริการอื่นๆ ที่มีลักษณะเดียวกันที่ท่านได้ลงทะเบียนไว้", + "info_bottom_3": "การพักตัวเองจากเหล่าบริษัทการพนันออนไลน์ที่ได้รับใบอนุญาตในสหราชอาณาจักร กรุณาไปที่ " }, "profile": { "personal_details": "รายละเอียดส่วนบุคคล", From ef9a3ec411fc9ca94a161e4fc8fb0229bf18928c Mon Sep 17 00:00:00 2001 From: nazaninreihani Date: Wed, 1 May 2019 12:21:12 -0400 Subject: [PATCH 055/119] Change Malta office address --- www/i18n/en.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/en.json b/www/i18n/en.json index b5a95a6f2b..afa18fdb50 100644 --- a/www/i18n/en.json +++ b/www/i18n/en.json @@ -591,7 +591,7 @@ "marketing_email": "For affiliate, partnership, and other marketing-related queries", "company_addresses": "Company addresses", "malta": "Malta", - "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, Mompalao Building, Suite 2, Tower Road, Msida MSD1825", + "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033", "japan": "Japan", "japan_address": "Binary KK, Hiroo Miyata Bldg 3F, 9-16, Hiroo 1-chome, Shibuya-ku, Tokyo 150-0012, Japan", "malaysia": "Malaysia", From a0441ae628c9b0154a2cb55cef8d33f437ffc2e4 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 2 May 2019 05:20:30 +0200 Subject: [PATCH 056/119] New translations en.json (French) --- www/i18n/fr.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/i18n/fr.json b/www/i18n/fr.json index df3712e31b..a119054c3d 100644 --- a/www/i18n/fr.json +++ b/www/i18n/fr.json @@ -386,11 +386,11 @@ "not_zero": "La Valeur ne peut pas être 0", "error": "Désolé, une erreur s’est produite lors du traitement de votre demande.", "customer_support": "service clientèle", - "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", + "info": "La spéculation financière peut s'avérer addictive. Veuillez remplir le formulaire ci-dessous pour limiter votre participation sur le site Web ou envoyer une lettre ou un fax signé à notre équipe du service clientèle. Une fois vos limites fixées, vous pourrez uniquement les restreindre. Elles ne pourront être supprimées ou élargies qu'au bout de 7 jours, sauf si une date d'auto-exclusion a été sélectionnée, laquelle ne peut être supprimée ou modifiée une fois confirmée. Pour supprimer ou augmenter vos limites, veuillez contacter", "ukgc_info_1": "Si vous envisagez de vous auto-exclure, vous pouvez vous inscrire auprès de GAMSTOP.", "ukgc_info_2": "GAMSTOP est un service gratuit qui vous permet de vous auto exclure de toutes les sociétés de jeu en ligne sous licence en Grande-Bretagne.", "ukgc_info_3": "Pour trouver plus d'information et pour signer avec GAMSTOP, veuillez visiter", - "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", + "info_bottom_1": "L'auto-exclusion sur ce site Web s'applique uniquement à votre compte Binary.com et n'inclut pas d'autres sociétés ou sites Web.", "info_bottom_2": "Étant donné que vous ressentez le besoin de vous auto exclure, nous vous encourageons vivement à vous exclure des services similaires que vous pouvez avoir contracté.", "info_bottom_3": "Pour vous auto exclure de toutes les compagnies de jeu en ligne sous licence en Grande-Bretagne, allez à " }, From eb25c79983468fc3254c1f360430c97671d87692 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 2 May 2019 07:00:37 +0200 Subject: [PATCH 057/119] New translations en.json (Italian) --- www/i18n/it.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/it.json b/www/i18n/it.json index 60b9c51883..1277a1b708 100644 --- a/www/i18n/it.json +++ b/www/i18n/it.json @@ -591,7 +591,7 @@ "marketing_email": "Per le richieste relative agli associati, alle partnership e al marketing", "company_addresses": "Indirizzi della società", "malta": "Malta", - "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, Mompalao Building, Suite 2, Tower Road, Msida MSD1825", + "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033", "japan": "Giappone", "japan_address": "Binary KK, Hiroo Miyata Bldg 3F, 9-16, Hiroo 1-chome, Shibuya-ku, Tokyo 150-0012, Giappone", "malaysia": "Malesia", From 5d4d2a3684e2b1447ec28a98a61298963e6f2d92 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 2 May 2019 07:00:40 +0200 Subject: [PATCH 058/119] New translations en.json (Spanish) --- www/i18n/es.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/es.json b/www/i18n/es.json index 087594380c..35b546d2ec 100644 --- a/www/i18n/es.json +++ b/www/i18n/es.json @@ -591,7 +591,7 @@ "marketing_email": "Para consultas sobre el programa de afiliados, asociaciones y otras relacionadas con el área de marketing", "company_addresses": "Direcciones de la compañía", "malta": "Malta", - "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, Mompalao Building, Suite 2, Tower Road, Msida MSD1825", + "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033", "japan": "Japón", "japan_address": "Binary KK, Hiroo Miyata Bldg 3F, 9-16, Hiroo 1-chome, Shibuya-ku, Tokio 150-0012, Japón", "malaysia": "Malasia", From 2d6213fee3cc65521ce76751868e86f81744f9a5 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 2 May 2019 07:00:43 +0200 Subject: [PATCH 059/119] New translations en.json (Chinese Simplified) --- www/i18n/zh_cn.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/zh_cn.json b/www/i18n/zh_cn.json index 9f918bdbe1..62bb6c2515 100644 --- a/www/i18n/zh_cn.json +++ b/www/i18n/zh_cn.json @@ -591,7 +591,7 @@ "marketing_email": "与联盟、合作伙伴和其他与市场营销相关的查询专用", "company_addresses": "公司地址", "malta": "马耳他", - "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, Mompalao Building, Suite 2, Tower Road, Msida MSD1825", + "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033", "japan": "日本", "japan_address": "Binary KK, Hiroo Miyata Bldg 3F, 9-16, Hiroo 1-chome, Shibuya-ku, Tokyo 150-0012, Japan", "malaysia": "马来西亚", From 69c04795a2bc7e769c4b5f0850f13db906999940 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 2 May 2019 07:00:46 +0200 Subject: [PATCH 060/119] New translations en.json (Chinese Traditional) --- www/i18n/zh_tw.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/zh_tw.json b/www/i18n/zh_tw.json index aa79629078..60eaf41512 100644 --- a/www/i18n/zh_tw.json +++ b/www/i18n/zh_tw.json @@ -591,7 +591,7 @@ "marketing_email": "與聯盟、合作夥伴和其他與市場行銷相關的查詢專用", "company_addresses": "公司地址", "malta": "馬爾他", - "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, Mompalao Building, Suite 2, Tower Road, Msida MSD1825", + "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033", "japan": "日本", "japan_address": "Binary KK, Hiroo Miyata Bldg 3F, 9-16, Hiroo 1-chome, Shibuya-ku, Tokyo 150-0012, Japan", "malaysia": "馬來西亞", From c1b70bc3da9952ad71225d3ad8428d2535848c20 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 2 May 2019 07:00:48 +0200 Subject: [PATCH 061/119] New translations en.json (French) --- www/i18n/fr.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/fr.json b/www/i18n/fr.json index a119054c3d..72c8f86587 100644 --- a/www/i18n/fr.json +++ b/www/i18n/fr.json @@ -591,7 +591,7 @@ "marketing_email": "Pour le programme d'affiliation, partenariat et autres requêtes axés sur le marketing ", "company_addresses": "Adresses de la société", "malta": "Malte", - "malta_address": "Binary (Europe) Ltd et Binary Investments (Europe) Ltd, Mompalao Building, Suite 2, Tower Road, Msida MSD1825", + "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033", "japan": "Japon", "japan_address": "Binary KK, Hiroo Miyata Bldg 3F, 9-16, Hiroo 1-chome, Shibuya-ku, Tokyo 150-0012, Japon", "malaysia": "Malaisie", From 4d87c761727bdd6e4d8e9e8ca105d1a2526cf6f9 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 2 May 2019 07:00:51 +0200 Subject: [PATCH 062/119] New translations en.json (German) --- www/i18n/de.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/de.json b/www/i18n/de.json index 103b575723..ada9d56e3d 100644 --- a/www/i18n/de.json +++ b/www/i18n/de.json @@ -591,7 +591,7 @@ "marketing_email": "Für Partner, Partnerschaft und andere Marketing-bezogene Anfragen", "company_addresses": "Firmenanschriften", "malta": "Malta", - "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, Mompalao Building, Suite 2, Tower Road, Msida MSD1825", + "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033", "japan": "Japan", "japan_address": "Binary KK, Hiroo Miyata Bldg 3F, 9-16, Hiroo 1-chome, Shibuya-ku, Tokio 150-0012, Japan", "malaysia": "Malaysia", From 57b1d324132e31e87ec06b8c906e85314214a9b2 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 2 May 2019 07:00:53 +0200 Subject: [PATCH 063/119] New translations en.json (Indonesian) --- www/i18n/id.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/id.json b/www/i18n/id.json index 9b66026d57..ed28beefbc 100644 --- a/www/i18n/id.json +++ b/www/i18n/id.json @@ -591,7 +591,7 @@ "marketing_email": "Untuk afiliasi, kemitraan, dan pertanyaan terkait pemasaran lainnya", "company_addresses": "Alamat perusahaan", "malta": "Malta", - "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, Mompalao Building, Suite 2, Tower Road, Msida MSD1825", + "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033", "japan": "Jepang", "japan_address": "Binary KK, Hiroo Miyata Bldg 3F, 9-16, Hiroo 1-chome, Shibuya-ku, Tokyo 150-0012, Jepang", "malaysia": "Malaysia", From b95f034df6d8427b8f15331044187317580fb794 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 2 May 2019 07:00:55 +0200 Subject: [PATCH 064/119] New translations en.json (Polish) --- www/i18n/pl.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/pl.json b/www/i18n/pl.json index c971a42c7c..fad9a67c4b 100644 --- a/www/i18n/pl.json +++ b/www/i18n/pl.json @@ -591,7 +591,7 @@ "marketing_email": "Pytania związane ze współpracą, programem partnerskim i kwestiami marketingowymi", "company_addresses": "Siedziby firmy", "malta": "Malta", - "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, Mompalao Building, Suite 2, Tower Road, Msida MSD1825", + "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033", "japan": "Japonia", "japan_address": "Binary KK, Hiroo Miyata Bldg 3F, 9-16, Hiroo 1-chome, Shibuya-ku, Tokyo 150-0012, Japan", "malaysia": "Malezja", From 94f7d73c446216d08af89ddaab41af6eb89ec24f Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 2 May 2019 07:00:58 +0200 Subject: [PATCH 065/119] New translations en.json (Portuguese) --- www/i18n/pt.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/pt.json b/www/i18n/pt.json index c163b70489..0c06e10e25 100644 --- a/www/i18n/pt.json +++ b/www/i18n/pt.json @@ -591,7 +591,7 @@ "marketing_email": "Para afiliados, parcerias e outras questões relacionadas com marketing", "company_addresses": "Endereços da empresa", "malta": "Malta", - "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, Mompalao Building, Suite 2, Tower Road, Msida MSD1825", + "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033", "japan": "Japão", "japan_address": "Binary KK, Edif. Hiroo Miyata 3F, 9-16, Hiroo 1-chome, Shibuya-ku, Tóquio 150-0012, Japão", "malaysia": "Malásia", From 91878c60fb4009b5269fe9c85951aa8c0850737e Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 2 May 2019 07:01:00 +0200 Subject: [PATCH 066/119] New translations en.json (Russian) --- www/i18n/ru.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/ru.json b/www/i18n/ru.json index 322093d3bb..8a9db1bd28 100644 --- a/www/i18n/ru.json +++ b/www/i18n/ru.json @@ -591,7 +591,7 @@ "marketing_email": "По вопросам партнёрства и других маркетинговых запросов", "company_addresses": "Адреса компании", "malta": "Мальта", - "malta_address": "Binary (Europe) Ltd и Binary Investments (Europe) Ltd, Mompalao Building, Suite 2, Tower Road, Msida MSD1825", + "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033", "japan": "Япония", "japan_address": "Binary KK, Hiroo Miyata Bldg 3F, 9-16, Hiroo 1-chome, Shibuya-ku, Tokyo 150-0012, Japan", "malaysia": "Малайзия", From 01c37a0e10050fb6ee5c561ce985c039098a98fd Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 2 May 2019 07:01:03 +0200 Subject: [PATCH 067/119] New translations en.json (Thai) --- www/i18n/th.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/th.json b/www/i18n/th.json index a1e0d5d12f..76e2ee1343 100644 --- a/www/i18n/th.json +++ b/www/i18n/th.json @@ -591,7 +591,7 @@ "marketing_email": "สำหรับพันธมิตร หุ้นส่วน และคำถามที่เกี่ยวกับการตลาดอื่นๆ", "company_addresses": "ที่อยู่บริษัทฯ", "malta": "มอลตา", - "malta_address": "Binary (Europe) Ltd และ Binary Investments (Europe) Ltd ตั้งอยู่ที่อาคาร Mompalao Suite 2 ถนนทาวเวอร์ Msida MSD1825", + "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033", "japan": "ญี่ปุ่น", "japan_address": "Binary KK ตั้งอยู่ที่ 9-16 อาคาร Hiroo Miyata ชั้น 3, Hiroo 1-chome, Shibuya-ku โตเกียว 150-0012 ประเทศญี่ปุ่น", "malaysia": "มาเลเซีย", From d854d14051f1e47c63c17e5eed42fd905a9ff5b0 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 2 May 2019 07:01:06 +0200 Subject: [PATCH 068/119] New translations en.json (Vietnamese) --- www/i18n/vi.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/vi.json b/www/i18n/vi.json index 4a0ffdf661..8ec3895203 100644 --- a/www/i18n/vi.json +++ b/www/i18n/vi.json @@ -591,7 +591,7 @@ "marketing_email": "Dành cho các vấn đề liên quan đến liên kết, hợp tác và các câu hỏi về tiếp thị", "company_addresses": "Địa chỉ công ty", "malta": "Cộng hòa Malta", - "malta_address": "Công ty TNHH Binary (châu Âu) và công ty TNHH Đầu tư Binary (châu Âu), Tòa nhà Mompalao, Khu 2, ĐườngTower, Msida MSD1825", + "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033", "japan": "Nhật Bản", "japan_address": "Binary KK, Tòa nhà Hiroo Miyata 3F, 9-16, Hiroo 1-chome, Shibuya-ku, Tokyo 150-0012, Nhật Bản", "malaysia": "Ma-lay-si-a", From 49a3266d27067640028da447e69fe2164707a028 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 2 May 2019 07:01:08 +0200 Subject: [PATCH 069/119] New translations en.json (Acholi) --- www/i18n/ach.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/ach.json b/www/i18n/ach.json index 35ae55b9d3..72b48d88ed 100644 --- a/www/i18n/ach.json +++ b/www/i18n/ach.json @@ -591,7 +591,7 @@ "marketing_email": "crwdns45161:0crwdne45161:0", "company_addresses": "crwdns45162:0crwdne45162:0", "malta": "crwdns19705:0crwdne19705:0", - "malta_address": "crwdns19706:0crwdne19706:0", + "malta_address": "crwdns53728:0crwdne53728:0", "japan": "crwdns19707:0crwdne19707:0", "japan_address": "crwdns19708:0crwdne19708:0", "malaysia": "crwdns19710:0crwdne19710:0", From 1a1c3c877d3b8e1fe04c3370a0041d01cab27fb2 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 2 May 2019 11:41:35 +0200 Subject: [PATCH 070/119] New translations en.json (Vietnamese) --- www/i18n/vi.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/vi.json b/www/i18n/vi.json index 8ec3895203..08cb0725ba 100644 --- a/www/i18n/vi.json +++ b/www/i18n/vi.json @@ -591,7 +591,7 @@ "marketing_email": "Dành cho các vấn đề liên quan đến liên kết, hợp tác và các câu hỏi về tiếp thị", "company_addresses": "Địa chỉ công ty", "malta": "Cộng hòa Malta", - "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033", + "malta_address": "Binary (Châu Âu) công ty TNHH & Đầu tư Binary (Châu Âu), W Business Centre, tầng 3, Triq Dun Karm, Birkirkara, BKR 9033", "japan": "Nhật Bản", "japan_address": "Binary KK, Tòa nhà Hiroo Miyata 3F, 9-16, Hiroo 1-chome, Shibuya-ku, Tokyo 150-0012, Nhật Bản", "malaysia": "Ma-lay-si-a", From d394e271a08a28e1de2c427e6378d54dd36875ee Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 2 May 2019 19:10:38 +0200 Subject: [PATCH 071/119] New translations en.json (Portuguese) --- www/i18n/pt.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/i18n/pt.json b/www/i18n/pt.json index 0c06e10e25..ab2153ddc7 100644 --- a/www/i18n/pt.json +++ b/www/i18n/pt.json @@ -386,11 +386,11 @@ "not_zero": "Valor não pode ser 0", "error": "Lamentamos, ocorreu um erro durante o processamento do seu pedido.", "customer_support": "apoio ao cliente", - "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", + "info": "Negociar nos mercados financeiros pode se tornar viciante. Preencha o formulário abaixo para limitar a sua participação no site ou envie uma carta assinada ou fax à nossa equipe de apoio ao cliente. Uma vez definidos, você apenas poderá apertar ainda mais os seus limites. Os limites somente serão removidos ou desapertados após 7 dias, com a exceção da data de auto-exclusão, que não pode ser removida ou alterada uma vez que você a tiver confirmado. Para remover ou aumentar os seus limites, contate", "ukgc_info_1": "Caso você esteja considerando a auto-exclusão, é provável que queira registrar no GAMSTOP.", "ukgc_info_2": "O GAMSTOP é um serviço gratuito que lhe permite excluir-se de todas as empresas de jogos de azar online licenciadas no Reino Unido.", "ukgc_info_3": "Para saber mais e para se inscrever no GAMSTOP, visite", - "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", + "info_bottom_1": "A autoexclusão neste site apenas se aplica à sua conta Binary.com e não inclui outras empresas ou sites.", "info_bottom_2": "Visto que você sente a necessidade de se autoexcluir, recomendamos fortemente que se exclua de serviços semelhantes em quais esteja inscrito.", "info_bottom_3": "Para se excluir de todas as empresas de jogos de azar online licenciadas no Reino Unido, pode visitar " }, From 710c279bad3384bff469e5ecb224b6a882058bcb Mon Sep 17 00:00:00 2001 From: Ashkan Date: Thu, 2 May 2019 19:20:35 +0200 Subject: [PATCH 072/119] New translations en.json (Portuguese) --- www/i18n/pt.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/pt.json b/www/i18n/pt.json index ab2153ddc7..c5da5d2a2e 100644 --- a/www/i18n/pt.json +++ b/www/i18n/pt.json @@ -591,7 +591,7 @@ "marketing_email": "Para afiliados, parcerias e outras questões relacionadas com marketing", "company_addresses": "Endereços da empresa", "malta": "Malta", - "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033", + "malta_address": "Binary (Europe) Ltd e Binary Investments (Europe) Ltd, W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033", "japan": "Japão", "japan_address": "Binary KK, Edif. Hiroo Miyata 3F, 9-16, Hiroo 1-chome, Shibuya-ku, Tóquio 150-0012, Japão", "malaysia": "Malásia", From b46d9e5ac650261b7f46baa20fb72736f5126033 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Fri, 3 May 2019 11:10:41 +0200 Subject: [PATCH 073/119] New translations en.json (Italian) --- www/i18n/it.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/www/i18n/it.json b/www/i18n/it.json index 1277a1b708..79be67f010 100644 --- a/www/i18n/it.json +++ b/www/i18n/it.json @@ -102,7 +102,7 @@ "sell_count": "Contratti venduti", "open_contract_count": "Apri contratti", "potential_profit": "Profitto potenziale", - "interval": "Reality Check Interval in Minutes", + "interval": "Intervallo di verifica della situazione effettiva in minuti", "continue": "Continua il trading", "logout": "Logout", "days": "giorni", @@ -114,7 +114,7 @@ }, "new-virtual-account": { "continue": "Continua", - "signup": "Sign Up", + "signup": "Registrati", "signup_question": "Non hai ancora un conto?", "verification_code": "Codice di verifica", "password": "Scegli una password", @@ -161,7 +161,7 @@ "maxlength_error": "Questo campo può contenere al massimo {{max}} caratteri.", "address_pattern_error": "Sono consentiti solo lettere, numeri, spazi, trattini, e questi caratteri speciali: - . ' # ; : ( ) , @ /", "postcode_pattern_error": "Sono consentiti solo lettere, numeri e trattini.", - "phone_pattern_error": "Only numbers, spaces and hyphen are allowed.", + "phone_pattern_error": "Sono consentiti solo numeri, spazi e trattini.", "tax_identification_number_pattern_error": "Sono consentiti solo lettere, numeri e trattini.", "continue": "Continua", "cancel": "Annulla", @@ -173,14 +173,14 @@ "binary_options_trading_frequency": "Frequenza del trading di opzioni binarie", "cfd_trading_experience": "Esperienza di trading di CFD", "cfd_trading_frequency": "Frequenza del trading di CFD", - "other_instruments_trading_experience": "Trading experience in other financial instruments", - "other_instruments_trading_frequency": "Trading frequency in other financial instruments", - "employment_industry": "Industry of employment", - "education_level": "Level of education", - "income_source": "Income source", - "net_income": "Net annual income", + "other_instruments_trading_experience": "Esperienza di trading in altri strumenti finanziari", + "other_instruments_trading_frequency": "Frequenza del trading in altri strumenti finanziari", + "employment_industry": "Settori di occupazione", + "education_level": "Livello di istruzione", + "income_source": "Fonte di reddito", + "net_income": "Reddito annuale netto", "occupation": "Occupazione", - "estimated_worth": "Estimated net worth", + "estimated_worth": "Patrimonio netto stimato", "employment_status": "Stato di occupazione", "account_turnover": "Fatturato previsto sull'account", "source_of_wealth": "Fonte di ricchezza", From ca9d6cf6faa1b82db4b9cd15bc7aa31f07e0f212 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Fri, 3 May 2019 14:46:53 +0200 Subject: [PATCH 074/119] New translations en.json (Italian) --- www/i18n/it.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/www/i18n/it.json b/www/i18n/it.json index 79be67f010..e0eb506b9e 100644 --- a/www/i18n/it.json +++ b/www/i18n/it.json @@ -193,7 +193,7 @@ "financial_info": "Informazioni finanziarie", "tax_information": "Informazioni Aggiuntive", "professional_client": "Cliente Professionale", - "professional_client_info": "By default, all clients are treated as retail, do you prefer to be treated as a professional client if you match the necessary criteria?", + "professional_client_info": "Normalmente i clienti vengono considerati clienti al dettaglio. Desideri essere considerato cliente professionale, previa verifica dei requisiti richiesti?", "professional_client_verify": "Voglio essere trattato come cliente professionale.", "what_is_this": "Cos'è questo?", "read_more": "Per saperne di più.", @@ -201,7 +201,7 @@ "required_to_obtain_information": "Per usufruire dei nostri servizi, richiediamo delle informazioni necessarie per valutare se un dato prodotto o servizio è adegutao a te (ossia se possiedi l'esperienza e la conoscenza per comprendere i rischi connessi).", "on_the_basis_of_information": "Sulla base delle informazioni fornite, relative alla tua formazione ed esperienza, riteniamo che gli investimenti disponibili su questo sito internet non siano adatti a te.", "appropriateness_test": "Test di adeguatezza: ", - "warning": "WARNING:", + "warning": "ATTENZIONE:", "by_clicking": "Cliccando ", "accept": "Accetta", "exposing_at_risk": "qui sotto e procedendo con l'Apertura di un account dovresti notare che potresti esporti a dei rischi (che possono essere cospicui, incluso il rischio di perdita dell'intera somma investita) senza avere la conoscenza e l'esperienza giusta per valutarli e attenuarli.", @@ -243,7 +243,7 @@ "maxlength_error": "Questo campo può contenere al massimo {{max}} caratteri.", "address_pattern_error": "Sono consentiti solo lettere, numeri, spazi, trattini, e questi caratteri speciali: - . ' # ; : ( ) , @ /", "postcode_pattern_error": "Sono consentiti solo lettere, numeri e trattini.", - "phone_pattern_error": "Only numbers, spaces and hyphen are allowed.", + "phone_pattern_error": "Sono consentiti solo numeri, spazi e trattini.", "secret_answer_pattern_error": "Sono consentiti solo lettere, numeri, spazi, trattini, punti e apostrofi.", "required": "Questo campo è obbligatorio.", "not_pep_verify": "Dichiaro di non essere una persona politicamente esposta (PEP)", @@ -335,8 +335,8 @@ "regulatory_information": "Informazioni regolamentari", "mt5": "MetaTrader 5", "contact_us": "Contattaci", - "open_real": "Upgrade To A Real Account", - "open_financial": "Open A Financial Account", + "open_real": "Passa a un conto reale", + "open_financial": "Apri un conto finanziario", "create_account": "Crea un account", "accounts_list": "Elenco degli account", "network_status": "Stato della rete" @@ -383,7 +383,7 @@ "session_timeout_warning": "Il limite di durata della tua sessione terminerà tra 10 secondi.", "success": "Riuscito", "warning": "Attenzione", - "not_zero": "Value can not be 0", + "not_zero": "Il valore non può essere 0", "error": "Siamo spiacenti, si è verificato un errore durante l'elaborazione della tua richiesta.", "customer_support": "servizio clienti", "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", From a265d9673f817909f2037994bd242b6ff1f1019b Mon Sep 17 00:00:00 2001 From: Ashkan Date: Fri, 3 May 2019 15:00:56 +0200 Subject: [PATCH 075/119] New translations en.json (Italian) --- www/i18n/it.json | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/www/i18n/it.json b/www/i18n/it.json index e0eb506b9e..832b78d65d 100644 --- a/www/i18n/it.json +++ b/www/i18n/it.json @@ -386,13 +386,13 @@ "not_zero": "Il valore non può essere 0", "error": "Siamo spiacenti, si è verificato un errore durante l'elaborazione della tua richiesta.", "customer_support": "servizio clienti", - "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", + "info": "Il trading online può creare dipendenza. Compila il modulo sottostante per limitare la tua partecipazione sul sito web, oppure invia una lettera o un fax firmato al nostro team di assistenza clienti. Una volta impostati i limiti, potrai solamente incrementarli; inoltre saranno rimossi o ridotti dopo 7 giorni a eccezione della data di auto-esclusione, che non può essere rimossa o modificata una volta confermata. Per rimuovere o aumentare i limiti, ti preghiamo di contattare l'assistenza clienti", "ukgc_info_1": "Se stai valutando l'autoesclusione, potresti volere registrarti con GAMSTOP.", "ukgc_info_2": "GAMSTOP è un servizio gratuito che ti permette di autoescluderti da qualsiasi società di gioco d'azzardo online autorizzata in Gran Bretagna.", "ukgc_info_3": "Per saperne di più e per iscriverti con GAMSTOP, visita il sito", - "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", + "info_bottom_1": "L'autoesclusione su questo sito web si applica solamente al conto Binary.com del Cliente e non include altri siti web o società.", "info_bottom_2": "Dal momento che hai deciso di autoescluderti, ti consigliamo vivamente di autoescluderti anche da altri servizi simili ai quali sei iscritto.", - "info_bottom_3": "To self-exclude from all online gambling companies licensed in Great Britain, you may go to " + "info_bottom_3": "Per autoescludersi da qualsiasi società di gioco d'azzardo online autorizzata in Gran Bretagna, aprire il link seguente: " }, "profile": { "personal_details": "Informazioni personali", @@ -420,7 +420,7 @@ "maxlength_error": "Questo campo può contenere al massimo {{max}} caratteri.", "range_length_error": "Questo campo deve contenere da {{min}} a {{max}} caratteri.", "postcode_pattern_error": "Sono consentiti solo lettere, numeri e trattini.", - "phone_pattern_error": "Only numbers, spaces and hyphen are allowed.", + "phone_pattern_error": "Sono consentiti solo numeri, spazi e trattini.", "tax_identification_number_pattern_error": "Sono consentiti solo lettere, numeri e trattini.", "cancel": "Annulla", "continue": "Continua", @@ -430,8 +430,8 @@ "details": "Dettagli", "tax_information": "Informazioni Aggiuntive", "email_preferences": "Preferenze e-mail", - "receive_emails": "Receive emails on Binary.com products, services, and events", - "to_change": "To change your name, date of birth, country of residence, or email, please contact", + "receive_emails": "Ricevere e-mail su prodotti, servizi ed eventi di Binary.com", + "to_change": "Per modificare nome, data di nascita, paese di residenza o e-mail, contatta", "customer_support": "Assistenza clienti" }, "accept-terms-and-conditions": { @@ -445,7 +445,7 @@ }, "update": { "your_version_is_out_of_date_please_update": "La tua versione di Tick Trade è obsoleta. Aggiorna la tua app con la versione più recente.", - "download_the_android_app": "Download The Android App" + "download_the_android_app": "Scarica l'app per Android" }, "change-password": { "change_password": "Modifica password", @@ -467,13 +467,13 @@ "binary_options_trading_frequency": "Frequenza del trading di opzioni binarie", "cfd_trading_experience": "Esperienza di trading di CFD", "cfd_trading_frequency": "Frequenza del trading di CFD", - "other_instruments_trading_experience": "Trading experience in other financial instruments", - "other_instruments_trading_frequency": "Trading frequency in other financial instruments", - "employment_industry": "Industry of employment", - "education_level": "Level of education", - "income_source": "Income source", - "net_income": "Net annual income", - "estimated_worth": "Estimated net worth", + "other_instruments_trading_experience": "Esperienza di trading in altri strumenti finanziari", + "other_instruments_trading_frequency": "Frequenza del trading in altri strumenti finanziari", + "employment_industry": "Settori di occupazione", + "education_level": "Livello di istruzione", + "income_source": "Fonte di reddito", + "net_income": "Reddito annuale netto", + "estimated_worth": "Patrimonio netto stimato", "select": "Seleziona", "update": "Aggiorna", "financial_assessment_info": "I servizi di trading finanziario contenuti in questo sito sono adatti solo per i clienti in grado di subire la perdita di tutti i soldi investiti e che comprendono ed hanno esperienza dei rischi connessi all'acquisizione di contratti finanziari. Le transazioni su contratti finanziari hanno un alto livello di rischio. Se i contratti acquistati scadono in negativo, subirai una perdita totale del tuo investimento che consiste nel premio del contratto.", @@ -491,8 +491,8 @@ "trading_withdrawal_limits": "Limiti di trading e dei prelievi", "item": "Voce", "limit": "Limite", - "open_positions": "Maximum Number of Open Positions", - "account_balance": "Maximum Account Cash Balance", + "open_positions": "Numero massimo di posizioni aperte", + "account_balance": "Massimo saldo di cassa del conto", "payouts": "Maximum Aggregate Payouts on Open Positions", "payouts_per_symbol_and_contract_type": "Maximum Aggregate Payouts on Open Positions per Symbol and Contract Type", "maximum_daily_turnover": "Turnover Massimo Giornaliero", From e05feee72affa4f49079029065a84a4ef9b07c5f Mon Sep 17 00:00:00 2001 From: Ashkan Date: Fri, 3 May 2019 15:11:18 +0200 Subject: [PATCH 076/119] New translations en.json (Italian) --- www/i18n/it.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/www/i18n/it.json b/www/i18n/it.json index 832b78d65d..89ad8cc2ea 100644 --- a/www/i18n/it.json +++ b/www/i18n/it.json @@ -493,8 +493,8 @@ "limit": "Limite", "open_positions": "Numero massimo di posizioni aperte", "account_balance": "Massimo saldo di cassa del conto", - "payouts": "Maximum Aggregate Payouts on Open Positions", - "payouts_per_symbol_and_contract_type": "Maximum Aggregate Payouts on Open Positions per Symbol and Contract Type", + "payouts": "Pagamenti totali massimi su posizioni aperte", + "payouts_per_symbol_and_contract_type": "Pagamenti totali massimi su posizioni aperte per simbolo e topologia contrattuale", "maximum_daily_turnover": "Turnover Massimo Giornaliero", "commodities": "Materie prime", "forex": "Forex", @@ -555,13 +555,13 @@ "balance": "Saldo", "name": "Nome", "start_trading_with_mt5": "Inizia a fare trading con MT5", - "upgrade_real_account": "To create a real money account for MT5, please upgrade to Binary.com Real Account.", + "upgrade_real_account": "Per creare un conto reale per MT5, passa a un conto reale Binary.com.", "standard": "Standard", "advanced": "Avanzato", "mam_advanced": "MAM avanzato", "volatility_indices": "Indici di volatilità", "mam_volatility_indices": "Indici di volatilità MAM", - "upgrade": "Upgrade" + "upgrade": "Aggiorna" }, "authentication": { "authentication": "Convalida", @@ -591,7 +591,7 @@ "marketing_email": "Per le richieste relative agli associati, alle partnership e al marketing", "company_addresses": "Indirizzi della società", "malta": "Malta", - "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033", + "malta_address": "Binary (Europe) Ltd e Binary Investments (Europe) Ltd, W Business Centre, terzo piano, Triq Dun Karm, Birkirkara, BKR 9033", "japan": "Giappone", "japan_address": "Binary KK, Hiroo Miyata Bldg 3F, 9-16, Hiroo 1-chome, Shibuya-ku, Tokyo 150-0012, Giappone", "malaysia": "Malesia", @@ -605,26 +605,26 @@ "notifications": { "no_notification": "Non esiste alcuna notifica da mostrare.", "please_authenticate": "Convalida il tuo account ora per approfittare di tutte le opzioni di prelievo disponibili.", - "account_authentication": "Account Authentication", + "account_authentication": "Autenticazione del conto", "please_contact": "Il tuo account è limitato. Per ricevere assistenza, contatta l'assistenza clienti.", - "account_restriction": "Account Restriction", + "account_restriction": "Restrizione del conto", "account_country": "Paese di residenza", "set_country": "Prima di passare a un account con soldi reali, si prega di impostare il paese di residenza.", "complete_financial_assessment": "Per aumentare il limite dei prelievi e del trading, si prega di compilare il modulo della valutazione finanziaria.", - "financial_assessment_not_completed": "Financial Assessment Is Not Completed", + "financial_assessment_not_completed": "La valutazione finanziaria non è completa", "tax_information": "Informazioni Aggiuntive", "complete_profile": "Per aumentare il limite dei prelievi e del trading, completa il profilo del tuo account.", "tnc": "Termini e condizioni", "accept_tnc": "Per aumentare il limite dei prelievi e del trading, accetta i Termini e condizioni aggiornati.", - "max_turnover_limit": "Account Maximum Turnover Limit", + "max_turnover_limit": "Limite massimo del volume delle operazioni del conto", "set_max_turnover_limit": "Per aumentare il limite dei prelievi e del trading, imposta il limite di fatturato di 30 giorni dell'Auto esclusione.", - "account_age_verification": "Age Verification", + "account_age_verification": "Verifica dell'età", "needs_age_verification": "L'account ha bisogno della verifica dell'età, per ulteriori informazioni contatta l'assistenza clienti.", "choose_account_currency": "Imposta la valuta del tuo account.", - "account_currency": "Account Currency" + "account_currency": "Valuta del conto" }, "set-currency": { - "select_currency": "Select Currency", + "select_currency": "Seleziona la valuta", "select_currency_text": "Seleziona la valuta di questo account:", "fiat_currency": "Moneta Fiat", "cryptocurrency": "Criptovaluta", From 825fc84fc93f72faac4e91796c3ac108d014f05f Mon Sep 17 00:00:00 2001 From: Ashkan Date: Fri, 3 May 2019 15:40:48 +0200 Subject: [PATCH 077/119] New translations en.json (Italian) --- www/i18n/it.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/it.json b/www/i18n/it.json index 89ad8cc2ea..18c9ed6407 100644 --- a/www/i18n/it.json +++ b/www/i18n/it.json @@ -647,7 +647,7 @@ "account_financial": "Conto finanziario", "fiat_currencies": "Moneta Fiat", "crypto_currencies": "Criptovaluta", - "please_select_currency": "Please set the currency for your existing account {{loginid}}, in order to create more accounts.", + "please_select_currency": "Imposta la valuta per il conto esistente {{loginid}} al fine di creare altri conti.", "set_currency": "Imposta la valuta", "existing_accounts": "I tuoi conti esistenti", "create_new": "Crea un nuovo account", From ea38f17e8291e2a3c186b222737f4ea2c5b237d3 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Fri, 3 May 2019 15:51:18 +0200 Subject: [PATCH 078/119] New translations en.json (Italian) --- www/i18n/it.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/www/i18n/it.json b/www/i18n/it.json index 18c9ed6407..ca8c8f783a 100644 --- a/www/i18n/it.json +++ b/www/i18n/it.json @@ -666,9 +666,9 @@ "stocks": "Azioni", "volidx": "Indici di volatilità", "note": "Nota: puoi avere solo un conto di moneta reale e uno per ogni conto di criptovaluta.", - "excluded_until": "This account is excluded until {{time}}", + "excluded_until": "Questo conto è escluso fino alle {{time}}", "is_disabled": "Questo conto è disattivato", - "account_warning": "Note: For any enquiries regarding disabled or excluded accounts, please contact", + "account_warning": "Nota: Per qualsiasi richiesta relativa a conti disattivati o esclusi, ti preghiamo di contattare", "customer_support": "servizio clienti." }, "financial-information-options": { @@ -749,9 +749,9 @@ "hedging": "Hedging" }, "ios-pwa-prompt": { - "title": "Install Binary TickTrade", + "title": "Installa Binary TickTrade", "close": "Chiudi", - "installation_text": "Install Binary TickTrade on your home screen for quick and easy access when you're on the go.", + "installation_text": "Installa Binary TickTrade sullo schermo della home per accedere velocemente e con facilità in qualsiasi momento.", "installation_help": "Just tab {{icon}} then 'Add to Home Screen'" }, "professional-client-information": { From 3a6770ed7a16fd770807e6b766a589bc8e656325 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Fri, 3 May 2019 18:40:33 +0200 Subject: [PATCH 079/119] New translations en.json (Thai) --- www/i18n/th.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/th.json b/www/i18n/th.json index 76e2ee1343..c6e25484c8 100644 --- a/www/i18n/th.json +++ b/www/i18n/th.json @@ -591,7 +591,7 @@ "marketing_email": "สำหรับพันธมิตร หุ้นส่วน และคำถามที่เกี่ยวกับการตลาดอื่นๆ", "company_addresses": "ที่อยู่บริษัทฯ", "malta": "มอลตา", - "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033", + "malta_address": "Binary (Europe) Ltd และ Binary Investments (Europe) Ltd มีที่ตั้งสำนักงานอยู่ที่ อาคาร W Business Centre ชั้น 3 Triq Dun Karm, Birkirkara, BKR 9033 ประเทศมอลตา", "japan": "ญี่ปุ่น", "japan_address": "Binary KK ตั้งอยู่ที่ 9-16 อาคาร Hiroo Miyata ชั้น 3, Hiroo 1-chome, Shibuya-ku โตเกียว 150-0012 ประเทศญี่ปุ่น", "malaysia": "มาเลเซีย", From 84a6e23cd136ec457f44ebcbbb290b9606582cf6 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Fri, 3 May 2019 18:51:13 +0200 Subject: [PATCH 080/119] New translations en.json (Thai) --- www/i18n/th.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/www/i18n/th.json b/www/i18n/th.json index c6e25484c8..b23595d23c 100644 --- a/www/i18n/th.json +++ b/www/i18n/th.json @@ -386,11 +386,11 @@ "not_zero": "ค่าไม่สามารถเป็น 0", "error": "ขออภัย มีความผิดพลาดเกิดขึ้นขณะที่ประมวลผลความประสงค์ของท่าน", "customer_support": "ฝ่ายลูกค้าสัมพันธ์", - "info": "การซื้อขายผลิตภัณฑ์ทางการเงินอาจทำให้ท่านเสพติดได้ โปรดกรอกข้อมูลในแบบฟอร์มด้านล่างเพื่อกำหนดวงเงินการใช้เว็บไซต์ หรือ ส่งจดหมายที่มีการลงนาม หรือ ส่งแฟกซ์มายังฝ่ายบริการลูกค้า เมื่อมีการตั้งค่าดังกล่าวแล้ว ท่านจะทำได้เพียงลดวงเงินเท่านั้น วงเงินจะถูกปรับหรือผ่อนปรนหลังจาก 7 วันของวันที่กำหนดให้พัก แต่ท่านจะไม่สามารถลบหรือเปลี่ยนแปลงได้หลังจากได้ทำการยืนยันแล้ว หากท่านต้องการลบหรือเพิ่มวงเงินของท่าน โปรดติดต่อ ฝ่ายลูกค้าสัมพันธ์", - "ukgc_info_1": "หากท่านกำลังพิจารณาพักตัวเองจากการใช้งานระบบ ท่านอาจต้องการลงทะเบียนกับ GAMSTOP", - "ukgc_info_2": "GAMSTOP เป็นบริการฟรีที่ช่วยให้ท่านสามารถพักตัวเองจากบริษัทด้านการพนันออน์ไลน์ทั้งหมด และได้รับใบอนุญาตในสหราชอาณาจักร", - "ukgc_info_3": "เพื่อหาข้อมูลเพิ่มเติมและลงทะเบียนกับ GAMSTOP โปรดเยี่ยมชมที่", - "info_bottom_1": "การพักตัวเองบนเว็บไซต์นี้ใช้ได้กับบัญชี Binary.com ของท่านเท่านั้น และไม่รวมถึงบริษัทหรือเว็บไซต์อื่นๆ", + "info": "การซื้อขายผลิตภัณฑ์ทางการเงินอาจทำให้ท่านเสพติดได้ โปรดกรอกข้อมูลในแบบฟอร์มด้านล่างเพื่อกำหนดเงื่อนไขการใช้เว็บไซต์ของท่าน หรือ โดยการส่งจดหมายที่มีการลงนามของท่าน หรือ ดำเนินการส่งโทรสารมายังฝ่ายลูกค้าสัมพันธ์ เมื่อมีการตั้งค่าดังกล่าวแล้ว ท่านจะทำได้เพียงลดวงเงินเท่านั้น วงเงินจะถูกปรับลด หรือ ผ่อนปรนหลังจาก 7 วัน ของวันที่กำหนดให้พัก แต่ท่านจะไม่สามารถทำการยกเลิก หรือ เปลี่ยนแปลงได้หลังจากได้ทำการยืนยันแล้ว หากท่านต้องการยกเลิก หรือ เพิ่มวงเงินของท่าน โปรดติดต่อ", + "ukgc_info_1": "หากท่านกำลังพิจารณาพักตัวเองจากการใช้งานระบบ ท่านควรดำเนินการลงทะเบียนกับ GAMSTOP", + "ukgc_info_2": "GAMSTOP เป็นบริการฟรีที่ช่วยให้ท่านสามารถพักตัวเองจากบริษัทด้านการพนันออนไลน์ทั้งหมด โดยเป็นบริการที่ได้รับใบอนุญาตในสหราชอาณาจักร", + "ukgc_info_3": "เพื่อศึกษาข้อมูลเพิ่มเติม และลงทะเบียนใช้งานกับ GAMSTOP โปรดเยี่ยมชมที่", + "info_bottom_1": "การพักตัวเองบนเว็บไซต์นี้ใช้ได้กับบัญชี Binary.com ของท่านเท่านั้น และไม่รวมถึงบริษัทฯ หรือ เว็บไซต์อื่นๆ", "info_bottom_2": "หากท่านรู้สึกว่า ท่านต้องการพักการใช้งาน เราแนะนำให้ท่านพักการใช้งานจากการบริการอื่นๆ ที่มีลักษณะเดียวกันที่ท่านได้ลงทะเบียนไว้", "info_bottom_3": "การพักตัวเองจากเหล่าบริษัทการพนันออนไลน์ที่ได้รับใบอนุญาตในสหราชอาณาจักร กรุณาไปที่ " }, From aa4d98801a0d123ea5fecbf753d52e843cb45d9f Mon Sep 17 00:00:00 2001 From: Ashkan Date: Sat, 4 May 2019 20:11:21 +0200 Subject: [PATCH 081/119] New translations en.json (Russian) --- www/i18n/ru.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/ru.json b/www/i18n/ru.json index 8a9db1bd28..f2d573523e 100644 --- a/www/i18n/ru.json +++ b/www/i18n/ru.json @@ -591,7 +591,7 @@ "marketing_email": "По вопросам партнёрства и других маркетинговых запросов", "company_addresses": "Адреса компании", "malta": "Мальта", - "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033", + "malta_address": "Binary (Europe) Ltd и Binary Investments (Europe) Ltd, W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033", "japan": "Япония", "japan_address": "Binary KK, Hiroo Miyata Bldg 3F, 9-16, Hiroo 1-chome, Shibuya-ku, Tokyo 150-0012, Japan", "malaysia": "Малайзия", From f902f26919397b954f1ed382397d89bfe5508208 Mon Sep 17 00:00:00 2001 From: nazaninreihani Date: Mon, 6 May 2019 12:01:33 -0400 Subject: [PATCH 082/119] Add responsible trading, fix outage service and language page --- www/i18n/en.json | 3 +- www/index.html | 1 + www/js/configs/app.config.js | 2 +- www/js/main-layout.controller.js | 11 +++- .../language/language.controller.js | 56 ++++++++----------- .../services/supported-languages.service.js | 13 +++++ www/js/share/services/websocket.service.js | 11 +++- .../layout/main-layout.template.html | 6 ++ 8 files changed, 62 insertions(+), 41 deletions(-) create mode 100644 www/js/share/services/supported-languages.service.js diff --git a/www/i18n/en.json b/www/i18n/en.json index afa18fdb50..236092a74e 100644 --- a/www/i18n/en.json +++ b/www/i18n/en.json @@ -339,7 +339,8 @@ "open_financial": "Open A Financial Account", "create_account": "Create Account", "accounts_list": "Accounts List", - "network_status": "Network Status" + "network_status": "Network Status", + "responsible_trading": "Responsible Trading" }, "settings": { "settings": "Settings", diff --git a/www/index.html b/www/index.html index 753e7fb274..cfcd3d9116 100644 --- a/www/index.html +++ b/www/index.html @@ -122,6 +122,7 @@ + diff --git a/www/js/configs/app.config.js b/www/js/configs/app.config.js index 72b46f0b17..ad16bcb91e 100644 --- a/www/js/configs/app.config.js +++ b/www/js/configs/app.config.js @@ -7,7 +7,7 @@ const isBinaryMe = window.location.host === 'ticktrade.binary.me'; angular.module("binary").constant("config", { - app_id : isBinaryMe ? "15488" : "10", + app_id : isBinaryMe ? "15488" : "1396", serverUrl : "frontend.binaryws.com", serverCertFP : "", qaMachinesCertFP: "", diff --git a/www/js/main-layout.controller.js b/www/js/main-layout.controller.js index bdb7d9d5e9..c4286d02ac 100644 --- a/www/js/main-layout.controller.js +++ b/www/js/main-layout.controller.js @@ -155,13 +155,18 @@ angular } }); - vm.linkToRegulatory = `https://www.binary.com/${localStorage.getItem("language") || "en"}/regulation.html`; vm.goToRegulatory = function() { - window.open(vm.linkToRegulatory, "_blank"); + const linkToRegulatory = `https://www.binary.com/${localStorage.getItem("language") || "en"}/regulation.html`; + window.open(linkToRegulatory, "_blank"); }; vm.goToNetworkStatus = () => { window.open("https://binarycom.statuspage.io/", "_blank"); - } + }; + + vm.goToResponsbileTrading = () => { + const linkToResponsibleTrading = `https://www.binary.com/${localStorage.getItem("language") || "en"}/responsible-trading.html`; + window.open(linkToResponsibleTrading, "_blank"); + }; }); diff --git a/www/js/share/components/language/language.controller.js b/www/js/share/components/language/language.controller.js index 9ccc90c063..b2b7755070 100644 --- a/www/js/share/components/language/language.controller.js +++ b/www/js/share/components/language/language.controller.js @@ -10,9 +10,9 @@ (function() { angular.module("binary.share.components.language.controllers").controller("LanguageController", Language); - Language.$inject = ["$scope", "config", "languageService", "websocketService", "appStateService"]; + Language.$inject = ["$scope", "config", "languageService", "supportedLanguagesService", "websocketService", "appStateService"]; - function Language($scope, config, languageService, websocketService, appStateService) { + function Language($scope, config, languageService, supportedLanguagesService, websocketService, appStateService) { const vm = this; vm.languages = []; vm.appSupportedLanguages = []; @@ -21,38 +21,24 @@ vm.showSpinner = false; vm.ios = ionic.Platform.isIOS(); vm.android = ionic.Platform.isAndroid(); - websocketService.sendRequestFor.websiteStatus(true); - $scope.$on("website_status", (e, website_status) => { - if (!vm.isLanguageReady && website_status) { - vm.languages = []; - vm.languagesList = website_status.supported_languages; - vm.appSupportedLanguages = config.appSupportedLanguages; - _.forEach(vm.appSupportedLanguages, value => { - vm.value = value.toUpperCase(); - if (vm.languagesList.indexOf(vm.value) > -1) { - const LanguageCode = vm.value.toLowerCase(); - const languageNativeName = languageService.getLanguageNativeName(LanguageCode); - vm.languages.push({ - id : LanguageCode, - title: languageNativeName - }); - } - }); - vm.isLanguageReady = true; - appStateService.isLanguageReady = true; - $scope.$apply(); - } - if (!vm.isLanguageReady && !website_status) { - vm.languages = []; - vm.languages.push({ - id : "en", - title: "English" - }); - vm.isLanguageReady = true; - appStateService.isLanguageReady = true; - $scope.$apply(); - } - }); + + const init = () => { + const supportedLanguages = supportedLanguagesService.supportedLanguages; + vm.appSupportedLanguages = config.appSupportedLanguages; + _.forEach(vm.appSupportedLanguages, value => { + vm.value = value.toUpperCase(); + if (supportedLanguages.indexOf(vm.value) > -1) { + const LanguageCode = vm.value.toLowerCase(); + const languageNativeName = languageService.getLanguageNativeName(LanguageCode); + vm.languages.push({ + id : LanguageCode, + title: languageNativeName + }); + } + }); + vm.isLanguageReady = true; + appStateService.isLanguageReady = true; + }; $scope.$on('authorize', (e, authorize) => { vm.showSpinner = false; @@ -65,5 +51,7 @@ languageService.update(vm.language); vm.showSpinner = true; }; + + init(); } })(); diff --git a/www/js/share/services/supported-languages.service.js b/www/js/share/services/supported-languages.service.js new file mode 100644 index 0000000000..359b2b5aeb --- /dev/null +++ b/www/js/share/services/supported-languages.service.js @@ -0,0 +1,13 @@ +/** + * @name supportedLanguagesService + * @author Nazanin Reihani Haghighi + * @contributors [] + * @since 06/05/2019 + * @copyright Binary Ltd + */ + +angular.module("binary").service("supportedLanguagesService", function() { + this.supportedLanguages = ["en"]; + + this.setSupportedLanguages = langs => this.supportedLanguages = langs; +}); diff --git a/www/js/share/services/websocket.service.js b/www/js/share/services/websocket.service.js index 3681340195..59d6197b69 100644 --- a/www/js/share/services/websocket.service.js +++ b/www/js/share/services/websocket.service.js @@ -22,7 +22,8 @@ angular localStorageService, clientService, config, - notificationService + notificationService, + supportedLanguagesService ) => { let dataStream = ""; const messageBuffer = []; @@ -118,7 +119,7 @@ angular appStateService.isLoggedin = false; - + const onFailed = () => { $rootScope.$broadcast("connection:error", true); @@ -639,6 +640,12 @@ angular appStateService.currenciesConfig = message.website_status.currencies_config; $rootScope.$broadcast("website_status", message.website_status); localStorage.termsConditionsVersion = message.website_status.terms_conditions_version; + const supportedLanguages = message.website_status.supported_languages; + if (supportedLanguages.length) { + supportedLanguagesService.setSupportedLanguages( + message.website_status.supported_languages + ); + } } else if (message.hasOwnProperty("error")) { trackJs.track(`${message.error.code}: ${message.error.message}`); } diff --git a/www/js/share/templates/layout/main-layout.template.html b/www/js/share/templates/layout/main-layout.template.html index c972c32eeb..c577a2ce68 100644 --- a/www/js/share/templates/layout/main-layout.template.html +++ b/www/js/share/templates/layout/main-layout.template.html @@ -97,6 +97,12 @@
{{ 'menu.regulatory_information' | translate }} + +
+ +
+ {{ 'menu.responsible_trading' | translate }} +
From 7f07442d535fa459a3ebc78590c123753f8e0bfd Mon Sep 17 00:00:00 2001 From: nazaninreihani Date: Mon, 6 May 2019 12:03:49 -0400 Subject: [PATCH 083/119] remove app id --- www/js/configs/app.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/js/configs/app.config.js b/www/js/configs/app.config.js index ad16bcb91e..72b46f0b17 100644 --- a/www/js/configs/app.config.js +++ b/www/js/configs/app.config.js @@ -7,7 +7,7 @@ const isBinaryMe = window.location.host === 'ticktrade.binary.me'; angular.module("binary").constant("config", { - app_id : isBinaryMe ? "15488" : "1396", + app_id : isBinaryMe ? "15488" : "10", serverUrl : "frontend.binaryws.com", serverCertFP : "", qaMachinesCertFP: "", From 6e019a3aa6eedeeb1edf6e8e92a30427db3aa4bc Mon Sep 17 00:00:00 2001 From: nazaninreihani Date: Mon, 6 May 2019 12:19:35 -0400 Subject: [PATCH 084/119] change responsible trading icon --- www/js/share/templates/layout/main-layout.template.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/js/share/templates/layout/main-layout.template.html b/www/js/share/templates/layout/main-layout.template.html index c577a2ce68..1702850593 100644 --- a/www/js/share/templates/layout/main-layout.template.html +++ b/www/js/share/templates/layout/main-layout.template.html @@ -99,7 +99,7 @@
- +
{{ 'menu.responsible_trading' | translate }}
From 5dfae23a9b3734ca9dae32dae2a748ce80dc5a75 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Mon, 6 May 2019 21:10:40 +0200 Subject: [PATCH 085/119] New translations en.json (Polish) --- www/i18n/pl.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/www/i18n/pl.json b/www/i18n/pl.json index fad9a67c4b..ad1c57fed5 100644 --- a/www/i18n/pl.json +++ b/www/i18n/pl.json @@ -386,11 +386,11 @@ "not_zero": "Wartość nie może wynosić 0", "error": "Przepraszamy, podczas przetwarzania żądania wystąpił błąd.", "customer_support": "dział obsługi klienta", - "info": "Online trading can become addictive. Fill in the form below to limit your participation on the website or send a signed letter or fax to our customer support team. Once set, you can only tighten your limits. Limits will only be removed or loosened after 7 days with the exception of the self-exclusion date, which cannot be removed or altered once you have confirmed it. To remove or increase your limits, please contact", + "info": "Handlowanie online może być uzależniające. Wypełnij poniższy formularz, aby ograniczyć swoją działalność na portalu lub wyślij podpisany list lub faks do naszego działu obsługi klienta. Po ustanowieniu limitów, możesz je tylko zwiększać. Limity zostaną usunięte lub zmienione dopiero po 7 dniach, chyba że obowiązuje okres samodzielnego wyłączenia, który nie może zostać usunięty, ani zmieniony, jeśli został wcześniej potwierdzony. Aby znieść lub zwiększyć limity, proszę skontaktować się z", "ukgc_info_1": "Jeśli rozważasz skorzystanie z opcji samodzielnego wykluczenia, możesz zarejestrować się w GAMSTOP.", "ukgc_info_2": "GAMSTOP to darmowa usługa, która umożliwia samodzielne wykluczenie z dostępu do wszystkich firm oferujących handel online z licencją w Wielkiej Brytanii.", "ukgc_info_3": "Aby uzyskać więcej informacji i zarejestrować się z GAMSTOP, odwiedź", - "info_bottom_1": "Self-exclusion on this website only applies to your Binary.com account and does not include other companies or websites.", + "info_bottom_1": "Opcja samo-wykluczenia dostępna na tej witrynie odnosi się wyłącznie do Twojego konta Binary.com i nie obejmuje innych firm czy witryn internetowych.", "info_bottom_2": "Skoro czujesz potrzebę skorzystania z opcji samo-wykluczenia, zachęcamy do samo-wykluczenia również z podobnych usług, z których być może korzystasz.", "info_bottom_3": "Aby dokonać samo-wyłączenia ze wszystkich firm oferujących handel online w Wielkiej Brytanii, przejdź do " }, @@ -591,7 +591,7 @@ "marketing_email": "Pytania związane ze współpracą, programem partnerskim i kwestiami marketingowymi", "company_addresses": "Siedziby firmy", "malta": "Malta", - "malta_address": "Binary (Europe) Ltd & Binary Investments (Europe) Ltd, W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033", + "malta_address": "Binary (Europe) Ltd i Binary Investments (Europe) Ltd, W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033", "japan": "Japonia", "japan_address": "Binary KK, Hiroo Miyata Bldg 3F, 9-16, Hiroo 1-chome, Shibuya-ku, Tokyo 150-0012, Japan", "malaysia": "Malezja", From 390bde265c7e28432f4157fb623d7f77600e964a Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 09:00:49 +0200 Subject: [PATCH 086/119] New translations en.json (Italian) --- www/i18n/it.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www/i18n/it.json b/www/i18n/it.json index ca8c8f783a..9160a3afd6 100644 --- a/www/i18n/it.json +++ b/www/i18n/it.json @@ -339,7 +339,8 @@ "open_financial": "Apri un conto finanziario", "create_account": "Crea un account", "accounts_list": "Elenco degli account", - "network_status": "Stato della rete" + "network_status": "Stato della rete", + "responsible_trading": "Responsible Trading" }, "settings": { "settings": "Impostazioni", From 9c7e7dd33e9a20735bb01e22c3d1b3fb17e43544 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 09:00:53 +0200 Subject: [PATCH 087/119] New translations en.json (Spanish) --- www/i18n/es.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www/i18n/es.json b/www/i18n/es.json index 35b546d2ec..f14d63fe8e 100644 --- a/www/i18n/es.json +++ b/www/i18n/es.json @@ -339,7 +339,8 @@ "open_financial": "Open A Financial Account", "create_account": "Crear cuenta", "accounts_list": "Lista de cuentas", - "network_status": "Estado de la red" + "network_status": "Estado de la red", + "responsible_trading": "Responsible Trading" }, "settings": { "settings": "Configuración", From 876b10a31cef1c2784cc1760a847c3e97cfe920f Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 09:00:55 +0200 Subject: [PATCH 088/119] New translations en.json (Chinese Simplified) --- www/i18n/zh_cn.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www/i18n/zh_cn.json b/www/i18n/zh_cn.json index 62bb6c2515..1c27ecd5f5 100644 --- a/www/i18n/zh_cn.json +++ b/www/i18n/zh_cn.json @@ -339,7 +339,8 @@ "open_financial": "开立金融账户", "create_account": "开立账户", "accounts_list": "账户列表", - "network_status": "网络状态" + "network_status": "网络状态", + "responsible_trading": "Responsible Trading" }, "settings": { "settings": "设置", From 57c6e2c3d58b13a4f6a7f3351cd3e05a8e32471d Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 09:00:58 +0200 Subject: [PATCH 089/119] New translations en.json (Chinese Traditional) --- www/i18n/zh_tw.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www/i18n/zh_tw.json b/www/i18n/zh_tw.json index 60eaf41512..210b62085b 100644 --- a/www/i18n/zh_tw.json +++ b/www/i18n/zh_tw.json @@ -339,7 +339,8 @@ "open_financial": "開立金融帳戶", "create_account": "開立帳戶", "accounts_list": "帳戶清單", - "network_status": "網路狀態" + "network_status": "網路狀態", + "responsible_trading": "Responsible Trading" }, "settings": { "settings": "設置", From 4c9ba7447edef0ad50805bcabeda7f592da8f7cb Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 09:01:04 +0200 Subject: [PATCH 090/119] New translations en.json (French) --- www/i18n/fr.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www/i18n/fr.json b/www/i18n/fr.json index 72c8f86587..621767f038 100644 --- a/www/i18n/fr.json +++ b/www/i18n/fr.json @@ -339,7 +339,8 @@ "open_financial": "Ouvrir un Compte Financier", "create_account": "Créer un compte", "accounts_list": "Liste des comptes", - "network_status": "Statut réseau" + "network_status": "Statut réseau", + "responsible_trading": "Responsible Trading" }, "settings": { "settings": "Paramètres", From 93929563804e92046780c10b892d01539b564067 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 09:01:09 +0200 Subject: [PATCH 091/119] New translations en.json (German) --- www/i18n/de.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www/i18n/de.json b/www/i18n/de.json index ada9d56e3d..f8276d7fd6 100644 --- a/www/i18n/de.json +++ b/www/i18n/de.json @@ -339,7 +339,8 @@ "open_financial": "Finanzkonto eröffnen", "create_account": "Konto einrichten", "accounts_list": "Kontenliste", - "network_status": "Netzwerkstatus" + "network_status": "Netzwerkstatus", + "responsible_trading": "Responsible Trading" }, "settings": { "settings": "Einstellungen", From 16d069c1e29c87680b7321096903ec530d336554 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 09:01:12 +0200 Subject: [PATCH 092/119] New translations en.json (Indonesian) --- www/i18n/id.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www/i18n/id.json b/www/i18n/id.json index ed28beefbc..8f1303ba34 100644 --- a/www/i18n/id.json +++ b/www/i18n/id.json @@ -339,7 +339,8 @@ "open_financial": "Daftar Akun Finansial", "create_account": "Daftar Akun", "accounts_list": "Daftar Akun", - "network_status": "Status Jaringan" + "network_status": "Status Jaringan", + "responsible_trading": "Responsible Trading" }, "settings": { "settings": "Pengaturan", From 8af4c02bfa005d054183b5aa6f258ad9c3a9095c Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 09:01:15 +0200 Subject: [PATCH 093/119] New translations en.json (Polish) --- www/i18n/pl.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www/i18n/pl.json b/www/i18n/pl.json index ad1c57fed5..12cbab27e8 100644 --- a/www/i18n/pl.json +++ b/www/i18n/pl.json @@ -339,7 +339,8 @@ "open_financial": "Otwórz konto finansowe", "create_account": "Utwórz konto", "accounts_list": "Lista kont", - "network_status": "Status sieci" + "network_status": "Status sieci", + "responsible_trading": "Responsible Trading" }, "settings": { "settings": "Ustawienia", From 63816256f7840c67c3bd420480de5f887bf97342 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 09:01:17 +0200 Subject: [PATCH 094/119] New translations en.json (Portuguese) --- www/i18n/pt.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www/i18n/pt.json b/www/i18n/pt.json index c5da5d2a2e..23e5febcfb 100644 --- a/www/i18n/pt.json +++ b/www/i18n/pt.json @@ -339,7 +339,8 @@ "open_financial": "Abrir uma conta financeira", "create_account": "Criar conta", "accounts_list": "Lista de contas", - "network_status": "Status da rede" + "network_status": "Status da rede", + "responsible_trading": "Responsible Trading" }, "settings": { "settings": "Configurações", From 581e5e4decff5869ae86ef436ec7d712e08c583d Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 09:01:20 +0200 Subject: [PATCH 095/119] New translations en.json (Russian) --- www/i18n/ru.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www/i18n/ru.json b/www/i18n/ru.json index f2d573523e..831bac1376 100644 --- a/www/i18n/ru.json +++ b/www/i18n/ru.json @@ -339,7 +339,8 @@ "open_financial": "Открыть Финансовый счёт", "create_account": "Открыть счёт", "accounts_list": "Список счетов", - "network_status": "Статус сети" + "network_status": "Статус сети", + "responsible_trading": "Responsible Trading" }, "settings": { "settings": "Настройки", From c259a9e4c28ddc7b2139f41611fc35151dd1723d Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 09:01:26 +0200 Subject: [PATCH 096/119] New translations en.json (Thai) --- www/i18n/th.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www/i18n/th.json b/www/i18n/th.json index b23595d23c..394c281008 100644 --- a/www/i18n/th.json +++ b/www/i18n/th.json @@ -339,7 +339,8 @@ "open_financial": "เปิดบัญชีทางการเงิน 1 บัญชี", "create_account": "สร้างบัญชี", "accounts_list": "รายการบัญชี", - "network_status": "สถานะของเครือข่าย" + "network_status": "สถานะของเครือข่าย", + "responsible_trading": "Responsible Trading" }, "settings": { "settings": "การตั้งค่า", From f21a9db452d8f19a62b556a5640585916e4eb9b7 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 09:01:29 +0200 Subject: [PATCH 097/119] New translations en.json (Vietnamese) --- www/i18n/vi.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www/i18n/vi.json b/www/i18n/vi.json index 08cb0725ba..4ce9ebc973 100644 --- a/www/i18n/vi.json +++ b/www/i18n/vi.json @@ -339,7 +339,8 @@ "open_financial": "Mở một Tài khoản Tài chính", "create_account": "Tạo Tài khoản", "accounts_list": "Danh sách tài khoản", - "network_status": "Tình trạng Kết nối" + "network_status": "Tình trạng Kết nối", + "responsible_trading": "Responsible Trading" }, "settings": { "settings": "Cài đặt", From c8a05fe6f0aa4d8cd70ee59beb320f2114454bad Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 09:01:32 +0200 Subject: [PATCH 098/119] New translations en.json (Acholi) --- www/i18n/ach.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www/i18n/ach.json b/www/i18n/ach.json index 72b48d88ed..d4664794fc 100644 --- a/www/i18n/ach.json +++ b/www/i18n/ach.json @@ -339,7 +339,8 @@ "open_financial": "crwdns45003:0crwdne45003:0", "create_account": "crwdns45004:0crwdne45004:0", "accounts_list": "crwdns45005:0crwdne45005:0", - "network_status": "crwdns45006:0crwdne45006:0" + "network_status": "crwdns45006:0crwdne45006:0", + "responsible_trading": "crwdns53748:0crwdne53748:0" }, "settings": { "settings": "crwdns18010:0crwdne18010:0", From 54131ceff278e6bc6fa1763ed0edad6281c3e65b Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 09:30:49 +0200 Subject: [PATCH 099/119] New translations en.json (Italian) --- www/i18n/it.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/it.json b/www/i18n/it.json index 9160a3afd6..0d665ab179 100644 --- a/www/i18n/it.json +++ b/www/i18n/it.json @@ -340,7 +340,7 @@ "create_account": "Crea un account", "accounts_list": "Elenco degli account", "network_status": "Stato della rete", - "responsible_trading": "Responsible Trading" + "responsible_trading": "Trading responsabile" }, "settings": { "settings": "Impostazioni", From 74752c6c768cb9d8d8e38055beb2ee7b60b6e8f3 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 09:30:54 +0200 Subject: [PATCH 100/119] New translations en.json (Spanish) --- www/i18n/es.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/es.json b/www/i18n/es.json index f14d63fe8e..740ad87adc 100644 --- a/www/i18n/es.json +++ b/www/i18n/es.json @@ -340,7 +340,7 @@ "create_account": "Crear cuenta", "accounts_list": "Lista de cuentas", "network_status": "Estado de la red", - "responsible_trading": "Responsible Trading" + "responsible_trading": "Comercio Responsable" }, "settings": { "settings": "Configuración", From 47d665602aaef6e8d66e68e4135d4e131bc28439 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 09:30:56 +0200 Subject: [PATCH 101/119] New translations en.json (Chinese Simplified) --- www/i18n/zh_cn.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/zh_cn.json b/www/i18n/zh_cn.json index 1c27ecd5f5..1006732f99 100644 --- a/www/i18n/zh_cn.json +++ b/www/i18n/zh_cn.json @@ -340,7 +340,7 @@ "create_account": "开立账户", "accounts_list": "账户列表", "network_status": "网络状态", - "responsible_trading": "Responsible Trading" + "responsible_trading": "负责任的交易" }, "settings": { "settings": "设置", From fcb68566a1362313699d948621a3dd3fa5501993 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 09:30:59 +0200 Subject: [PATCH 102/119] New translations en.json (Chinese Traditional) --- www/i18n/zh_tw.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/zh_tw.json b/www/i18n/zh_tw.json index 210b62085b..42554d2b60 100644 --- a/www/i18n/zh_tw.json +++ b/www/i18n/zh_tw.json @@ -340,7 +340,7 @@ "create_account": "開立帳戶", "accounts_list": "帳戶清單", "network_status": "網路狀態", - "responsible_trading": "Responsible Trading" + "responsible_trading": "負責任交易" }, "settings": { "settings": "設置", From 5a5508d37e1ede9a85fbda4e36f72f8a67b8c3cd Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 09:31:06 +0200 Subject: [PATCH 103/119] New translations en.json (French) --- www/i18n/fr.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/fr.json b/www/i18n/fr.json index 621767f038..48c36d2f9c 100644 --- a/www/i18n/fr.json +++ b/www/i18n/fr.json @@ -340,7 +340,7 @@ "create_account": "Créer un compte", "accounts_list": "Liste des comptes", "network_status": "Statut réseau", - "responsible_trading": "Responsible Trading" + "responsible_trading": "Trading responsable" }, "settings": { "settings": "Paramètres", From 8b0f5736d84a2d9c163610e88883e8e527a89c21 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 09:31:09 +0200 Subject: [PATCH 104/119] New translations en.json (German) --- www/i18n/de.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/de.json b/www/i18n/de.json index f8276d7fd6..899a4013c7 100644 --- a/www/i18n/de.json +++ b/www/i18n/de.json @@ -340,7 +340,7 @@ "create_account": "Konto einrichten", "accounts_list": "Kontenliste", "network_status": "Netzwerkstatus", - "responsible_trading": "Responsible Trading" + "responsible_trading": "Verantwortungsbewusstes Handeln" }, "settings": { "settings": "Einstellungen", From 5681c17ea7f77e113b2254d2a97912480c1eed9f Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 09:31:12 +0200 Subject: [PATCH 105/119] New translations en.json (Indonesian) --- www/i18n/id.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/id.json b/www/i18n/id.json index 8f1303ba34..d1dbf1836b 100644 --- a/www/i18n/id.json +++ b/www/i18n/id.json @@ -340,7 +340,7 @@ "create_account": "Daftar Akun", "accounts_list": "Daftar Akun", "network_status": "Status Jaringan", - "responsible_trading": "Responsible Trading" + "responsible_trading": "Tanggung Jawab Trading" }, "settings": { "settings": "Pengaturan", From ef348079d1c72fce6fd2b87e425e8bd98928217c Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 09:31:15 +0200 Subject: [PATCH 106/119] New translations en.json (Polish) --- www/i18n/pl.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/pl.json b/www/i18n/pl.json index 12cbab27e8..5d35cc285b 100644 --- a/www/i18n/pl.json +++ b/www/i18n/pl.json @@ -340,7 +340,7 @@ "create_account": "Utwórz konto", "accounts_list": "Lista kont", "network_status": "Status sieci", - "responsible_trading": "Responsible Trading" + "responsible_trading": "Odpowiedzialny handel" }, "settings": { "settings": "Ustawienia", From 021a8274ba3e514bd6d1bef65c3b262ea26fc1d9 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 09:31:19 +0200 Subject: [PATCH 107/119] New translations en.json (Portuguese) --- www/i18n/pt.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/pt.json b/www/i18n/pt.json index 23e5febcfb..23e6d25e49 100644 --- a/www/i18n/pt.json +++ b/www/i18n/pt.json @@ -340,7 +340,7 @@ "create_account": "Criar conta", "accounts_list": "Lista de contas", "network_status": "Status da rede", - "responsible_trading": "Responsible Trading" + "responsible_trading": "Negociação Responsável" }, "settings": { "settings": "Configurações", From e1c565f55dc2a308adeffff75611491fed7dcf56 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 09:31:22 +0200 Subject: [PATCH 108/119] New translations en.json (Russian) --- www/i18n/ru.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/ru.json b/www/i18n/ru.json index 831bac1376..bd65e64a1f 100644 --- a/www/i18n/ru.json +++ b/www/i18n/ru.json @@ -340,7 +340,7 @@ "create_account": "Открыть счёт", "accounts_list": "Список счетов", "network_status": "Статус сети", - "responsible_trading": "Responsible Trading" + "responsible_trading": "Ответственная торговля" }, "settings": { "settings": "Настройки", From d3a90687194bcd8d50108fb29fd6453f29d19101 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 09:31:25 +0200 Subject: [PATCH 109/119] New translations en.json (Thai) --- www/i18n/th.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/th.json b/www/i18n/th.json index 394c281008..62868f4309 100644 --- a/www/i18n/th.json +++ b/www/i18n/th.json @@ -340,7 +340,7 @@ "create_account": "สร้างบัญชี", "accounts_list": "รายการบัญชี", "network_status": "สถานะของเครือข่าย", - "responsible_trading": "Responsible Trading" + "responsible_trading": "ความรับผิดชอบต่อการซื้อขาย" }, "settings": { "settings": "การตั้งค่า", From f286d590b8e69b2c2edf829e8bafb06056f6c2dc Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 09:31:28 +0200 Subject: [PATCH 110/119] New translations en.json (Vietnamese) --- www/i18n/vi.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/vi.json b/www/i18n/vi.json index 4ce9ebc973..7a01c5759e 100644 --- a/www/i18n/vi.json +++ b/www/i18n/vi.json @@ -340,7 +340,7 @@ "create_account": "Tạo Tài khoản", "accounts_list": "Danh sách tài khoản", "network_status": "Tình trạng Kết nối", - "responsible_trading": "Responsible Trading" + "responsible_trading": "Giao Dịch Có Trách Nhiệm" }, "settings": { "settings": "Cài đặt", From 88b59f4c8415917e49a696df79d2d73b741ceaf4 Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 12:20:49 +0200 Subject: [PATCH 111/119] New translations en.json (Thai) --- www/i18n/th.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/th.json b/www/i18n/th.json index 62868f4309..28d3a4fefb 100644 --- a/www/i18n/th.json +++ b/www/i18n/th.json @@ -340,7 +340,7 @@ "create_account": "สร้างบัญชี", "accounts_list": "รายการบัญชี", "network_status": "สถานะของเครือข่าย", - "responsible_trading": "ความรับผิดชอบต่อการซื้อขาย" + "responsible_trading": "การซื้อขายอย่างรับผิดชอบ" }, "settings": { "settings": "การตั้งค่า", From c1c81187d10096728b46d578bb20e8fa5ac3d4fd Mon Sep 17 00:00:00 2001 From: Ashkan Date: Tue, 7 May 2019 19:30:59 +0200 Subject: [PATCH 112/119] New translations en.json (Polish) --- www/i18n/pl.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/i18n/pl.json b/www/i18n/pl.json index 5d35cc285b..519e2bcad3 100644 --- a/www/i18n/pl.json +++ b/www/i18n/pl.json @@ -340,7 +340,7 @@ "create_account": "Utwórz konto", "accounts_list": "Lista kont", "network_status": "Status sieci", - "responsible_trading": "Odpowiedzialny handel" + "responsible_trading": "Odpowiedzialne handlowanie" }, "settings": { "settings": "Ustawienia", From 44d54f21c42922e072ce2f0e487dd4739ad9fb1e Mon Sep 17 00:00:00 2001 From: nazaninreihani Date: Tue, 28 May 2019 10:11:19 -0400 Subject: [PATCH 113/119] Fix issue of app stuck in purchase mood --- www/js/pages/trade/components/chart/chart.controller.js | 4 ++-- www/js/pages/trade/proposal.service.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/www/js/pages/trade/components/chart/chart.controller.js b/www/js/pages/trade/components/chart/chart.controller.js index 0da3b6fda3..4c5d7f58b0 100644 --- a/www/js/pages/trade/components/chart/chart.controller.js +++ b/www/js/pages/trade/components/chart/chart.controller.js @@ -22,9 +22,9 @@ $scope.$on("portfolio", (e, portfolio) => { const contractId = vm.purchasedContract.contractId; - if (!_.isEmpty(contractId)) { + if (!!contractId) { portfolio.contracts.forEach(contract => { - if (contract.contract_id.toString() === contractId) { + if (contract.contract_id === contractId) { chartService.addContract({ startTime: contract.date_start + 1, duration : parseInt(vm.proposal.duration), diff --git a/www/js/pages/trade/proposal.service.js b/www/js/pages/trade/proposal.service.js index e120595fd1..234e5362b9 100644 --- a/www/js/pages/trade/proposal.service.js +++ b/www/js/pages/trade/proposal.service.js @@ -71,7 +71,7 @@ const options = JSON.parse(localStorage.options); const proposal = create(); proposal.symbol = options.underlying.symbol; - proposal.duration = options.tick; + proposal.duration = parseInt(options.tick); if (options.tradeType === "Higher/Lower") { proposal.barrier = _.isEmpty(options.barrier) ? "" : options.barrier; } else { @@ -120,7 +120,7 @@ } proposal.symbol = options.underlying.symbol; - proposal.duration = options.tick; + proposal.duration = parseInt(options.tick); if (options.tradeType === "Higher/Lower") { proposal.barrier = _.isEmpty(options.barrier) ? "" : options.barrier; } else { From 009fe28634c8fdafb9a4f3f0150db1e278b9adda Mon Sep 17 00:00:00 2001 From: nazaninreihani Date: Tue, 28 May 2019 10:12:32 -0400 Subject: [PATCH 114/119] refactor --- www/js/pages/trade/components/chart/chart.controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/js/pages/trade/components/chart/chart.controller.js b/www/js/pages/trade/components/chart/chart.controller.js index 4c5d7f58b0..c193206193 100644 --- a/www/js/pages/trade/components/chart/chart.controller.js +++ b/www/js/pages/trade/components/chart/chart.controller.js @@ -22,7 +22,7 @@ $scope.$on("portfolio", (e, portfolio) => { const contractId = vm.purchasedContract.contractId; - if (!!contractId) { + if (contractId) { portfolio.contracts.forEach(contract => { if (contract.contract_id === contractId) { chartService.addContract({ From 6e26af973e46d08283c2b5971dfea324de9e7074 Mon Sep 17 00:00:00 2001 From: nazaninreihani Date: Tue, 28 May 2019 10:37:11 -0400 Subject: [PATCH 115/119] support both string and integer as contract_id --- www/js/pages/trade/components/chart/chart.controller.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/js/pages/trade/components/chart/chart.controller.js b/www/js/pages/trade/components/chart/chart.controller.js index c193206193..bd09cd9f71 100644 --- a/www/js/pages/trade/components/chart/chart.controller.js +++ b/www/js/pages/trade/components/chart/chart.controller.js @@ -22,9 +22,9 @@ $scope.$on("portfolio", (e, portfolio) => { const contractId = vm.purchasedContract.contractId; - if (contractId) { + if ((typeof contractId === "string" && !_.isEmpty(contractId)) || contractId) { portfolio.contracts.forEach(contract => { - if (contract.contract_id === contractId) { + if ((typeof contractId === "string" && contract.contract_id.toString() === contractId) || contract.contract_id === contractId) { chartService.addContract({ startTime: contract.date_start + 1, duration : parseInt(vm.proposal.duration), From a9eb200d42b64a5b10f8409a926a0c7fea8d007b Mon Sep 17 00:00:00 2001 From: nazaninreihani Date: Tue, 28 May 2019 12:22:21 -0400 Subject: [PATCH 116/119] fix statement variable types --- www/js/pages/statement/statement.controller.js | 1 + .../transaction-detail/transaction-detail.controller.js | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/www/js/pages/statement/statement.controller.js b/www/js/pages/statement/statement.controller.js index 740c2be3b3..e75cf6b330 100644 --- a/www/js/pages/statement/statement.controller.js +++ b/www/js/pages/statement/statement.controller.js @@ -341,6 +341,7 @@ // details functions vm.sendContractDetailRequest = id => { if (id) { + id = parseInt(id); sessionStorage.setItem("id", id); $state.go("transaction-detail"); } diff --git a/www/js/pages/transaction-detail/transaction-detail.controller.js b/www/js/pages/transaction-detail/transaction-detail.controller.js index 902b658f27..474409baa1 100644 --- a/www/js/pages/transaction-detail/transaction-detail.controller.js +++ b/www/js/pages/transaction-detail/transaction-detail.controller.js @@ -17,8 +17,9 @@ const vm = this; vm.currency = sessionStorage.getItem("currency"); const id = sessionStorage.getItem("id"); + const contractId = parseInt(id); const extraParams = { - req_id: id + req_id: contractId }; const sendDetailsRequest = () => { if (appStateService.isLoggedin) { @@ -31,7 +32,7 @@ $scope.$on("proposal:open-contract", (e, proposal_open_contract, req_id) => { const proposalOpenContract = proposal_open_contract; const reqId = req_id; - if (reqId === id) { + if (reqId === contractId) { $scope.$applyAsync(() => { vm.contract = proposalOpenContract; }); From 6b3f0beeb99621701c4fc5b8d2fcb88d28584550 Mon Sep 17 00:00:00 2001 From: nazaninreihani Date: Tue, 28 May 2019 12:31:12 -0400 Subject: [PATCH 117/119] fix statement variable types --- www/js/pages/statement/statement.controller.js | 1 - 1 file changed, 1 deletion(-) diff --git a/www/js/pages/statement/statement.controller.js b/www/js/pages/statement/statement.controller.js index e75cf6b330..740c2be3b3 100644 --- a/www/js/pages/statement/statement.controller.js +++ b/www/js/pages/statement/statement.controller.js @@ -341,7 +341,6 @@ // details functions vm.sendContractDetailRequest = id => { if (id) { - id = parseInt(id); sessionStorage.setItem("id", id); $state.go("transaction-detail"); } From d60a652a7e4a584d8f8b9c676bdf728e33cabe43 Mon Sep 17 00:00:00 2001 From: Morteza Tavanarad Date: Fri, 7 Jun 2019 14:46:54 +0800 Subject: [PATCH 118/119] Fixed the issue of loading languages list in signin page --- www/js/share/components/language/language.controller.js | 4 ++-- www/js/share/services/websocket.service.js | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/www/js/share/components/language/language.controller.js b/www/js/share/components/language/language.controller.js index b2b7755070..87561cfb0a 100644 --- a/www/js/share/components/language/language.controller.js +++ b/www/js/share/components/language/language.controller.js @@ -44,6 +44,8 @@ vm.showSpinner = false; }); + $scope.$on('supported_languages', init); + vm.language = languageService.read(); vm.changeLanguage = function(language) { @@ -51,7 +53,5 @@ languageService.update(vm.language); vm.showSpinner = true; }; - - init(); } })(); diff --git a/www/js/share/services/websocket.service.js b/www/js/share/services/websocket.service.js index 59d6197b69..e6b448c481 100644 --- a/www/js/share/services/websocket.service.js +++ b/www/js/share/services/websocket.service.js @@ -645,6 +645,7 @@ angular supportedLanguagesService.setSupportedLanguages( message.website_status.supported_languages ); + $rootScope.$broadcast("supported_languages"); } } else if (message.hasOwnProperty("error")) { trackJs.track(`${message.error.code}: ${message.error.message}`); From 920cd6b4d2a6810b71ed058a1ba14922adba8a77 Mon Sep 17 00:00:00 2001 From: Morteza Tavanarad Date: Fri, 7 Jun 2019 15:14:54 +0800 Subject: [PATCH 119/119] Fixed the issue of loading languages in settings page --- www/js/share/components/language/language.controller.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/www/js/share/components/language/language.controller.js b/www/js/share/components/language/language.controller.js index 87561cfb0a..07ecae4f5b 100644 --- a/www/js/share/components/language/language.controller.js +++ b/www/js/share/components/language/language.controller.js @@ -36,8 +36,11 @@ }); } }); - vm.isLanguageReady = true; - appStateService.isLanguageReady = true; + + if (vm.languages.length) { + vm.isLanguageReady = true; + appStateService.isLanguageReady = true; + } }; $scope.$on('authorize', (e, authorize) => { @@ -53,5 +56,7 @@ languageService.update(vm.language); vm.showSpinner = true; }; + + init(); } })();