From 5a148658dec3ae59b78a6d6afc976fdbe55f9be2 Mon Sep 17 00:00:00 2001 From: Javier Date: Tue, 20 Dec 2016 09:27:52 -0300 Subject: [PATCH 01/45] fix icon position --- src/sass/shame.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sass/shame.scss b/src/sass/shame.scss index 7ee9f7499..693e952c9 100644 --- a/src/sass/shame.scss +++ b/src/sass/shame.scss @@ -158,7 +158,7 @@ input[type=number] { .input-notification { float: right; - margin-right: 10px; + margin-right: 25px; } .pr { From 9eb51188ac21c47fd7e73fa980a3990152bf73b6 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Tue, 20 Dec 2016 14:49:46 -0300 Subject: [PATCH 02/45] updates sign target, android version --- Gruntfile.js | 4 ++-- app-template/bitpay/appConfig.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 65e831f8f..765b9f9ac 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -61,10 +61,10 @@ module.exports = function(grunt) { stdin: true, }, desktopsign: { - cmd: 'gpg -u 1112CFA1 --output webkitbuilds/<%= pkg.title %>-linux.zip.sig --detach-sig webkitbuilds/<%= pkg.title %>-linux.zip && gpg -u 1112CFA1 --output webkitbuilds/<%= pkg.title %>-win.exe.sig --detach-sig webkitbuilds/<%= pkg.title %>-win.exe' + cmd: 'gpg -u 1112CFA1 --output webkitbuilds/<%= pkg.title %>-linux.zip.sig --detach-sig webkitbuilds/<%= pkg.title %>-linux.zip && gpg -u 1112CFA1 --output webkitbuilds/<%= pkg.title %>.dmg.sig --detach-sig webkitbuilds/<%= pkg.title %>.dmg ; gpg -u 1112CFA1 --output webkitbuilds/<%= pkg.title %>-win.exe.sig --detach-sig webkitbuilds/<%= pkg.title %>-win.exe' }, desktopverify: { - cmd: 'gpg --verify webkitbuilds/<%= pkg.title %>-linux.zip.sig webkitbuilds/<%= pkg.title %>-linux.zip && gpg --verify webkitbuilds/<%= pkg.title %>-win.exe.sig webkitbuilds/<%= pkg.title %>-win.exe' + cmd: 'gpg --verify webkitbuilds/<%= pkg.title %>-linux.zip.sig webkitbuilds/<%= pkg.title %>-linux.zip && gpg --verify webkitbuilds/<%= pkg.title %>.dmg.sig webkitbuilds/<%= pkg.title %>.dmg ; gpg --verify webkitbuilds/<%= pkg.title %>-win.exe.sig webkitbuilds/<%= pkg.title %>-win.exe' }, }, watch: { diff --git a/app-template/bitpay/appConfig.json b/app-template/bitpay/appConfig.json index 51d9152fc..b45708c54 100644 --- a/app-template/bitpay/appConfig.json +++ b/app-template/bitpay/appConfig.json @@ -22,7 +22,7 @@ "pushSenderId": "1036948132229", "description": "Secure Bitcoin Wallet", "version": "1.2.1", - "androidVersion": "12100", + "androidVersion": "121000", "_extraCSS": null, "_enabledExtensions": { "coinbase": true, From 76031e9bcd683b02b7dca77fe7828a10d51432ef Mon Sep 17 00:00:00 2001 From: Javier Date: Tue, 20 Dec 2016 15:56:20 -0300 Subject: [PATCH 03/45] fix address text --- src/sass/views/tab-receive.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sass/views/tab-receive.scss b/src/sass/views/tab-receive.scss index 084baed3b..14be6295e 100644 --- a/src/sass/views/tab-receive.scss +++ b/src/sass/views/tab-receive.scss @@ -117,6 +117,7 @@ transform: translate(-150%, -40%); } .item { + white-space: nowrap; padding-top: 5px; padding-bottom: 5px; font-size: .7rem; From a2c6639962887844c23b56d863840ac25ee84e1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Baz=C3=A1n?= Date: Thu, 22 Dec 2016 12:27:43 -0300 Subject: [PATCH 04/45] manual loading and some details fixes --- src/js/controllers/amazon.js | 38 ++++++++---- src/js/controllers/confirm.js | 3 +- .../controllers/modals/amazonCardDetails.js | 32 +++++++--- src/js/services/amazonService.js | 2 +- src/js/services/onGoingProcess.js | 6 +- src/js/services/walletService.js | 62 ------------------- 6 files changed, 58 insertions(+), 85 deletions(-) diff --git a/src/js/controllers/amazon.js b/src/js/controllers/amazon.js index 402f831de..d0e36efe6 100644 --- a/src/js/controllers/amazon.js +++ b/src/js/controllers/amazon.js @@ -1,7 +1,7 @@ 'use strict'; angular.module('copayApp.controllers').controller('amazonController', - function($scope, $timeout, $ionicModal, $log, lodash, amazonService, platformInfo, externalLinkService, popupService, gettextCatalog) { + function($scope, $timeout, $ionicModal, $log, $ionicScrollDelegate, lodash, amazonService, platformInfo, externalLinkService, popupService, ongoingProcess) { $scope.network = amazonService.getEnvironment(); @@ -12,7 +12,7 @@ angular.module('copayApp.controllers').controller('amazonController', var initAmazon = function() { amazonService.getPendingGiftCards(function(err, gcds) { if (err) { - popupService.showAlert(gettextCatalog.getString('Error'), err); + popupService.showAlert('Error', err); return; } $scope.giftCards = lodash.isEmpty(gcds) ? null : gcds; @@ -24,7 +24,7 @@ angular.module('copayApp.controllers').controller('amazonController', claimCode: $scope.cardClaimCode }); if (lodash.isEmpty(card)) { - popupService.showAlert(gettextCatalog.getString('Error'), gettextCatalog.getString('Card not found')); + popupService.showAlert('Error', 'Card not found'); return; } $scope.openCardModal(card); @@ -34,18 +34,29 @@ angular.module('copayApp.controllers').controller('amazonController', }; $scope.updatePendingGiftCards = lodash.debounce(function() { - + ongoingProcess.set('updateGiftCards', true); amazonService.getPendingGiftCards(function(err, gcds) { + if (lodash.isEmpty(gcds)) { + $timeout(function() { + ongoingProcess.set('updateGiftCards', false); + }, 1000); + } $timeout(function() { - $scope.giftCards = gcds; + $scope.giftCards = lodash.isEmpty(gcds) ? null : gcds; $scope.$digest(); }); + var index = 0; lodash.forEach(gcds, function(dataFromStorage) { + if (++index == Object.keys(gcds).length) { + $timeout(function() { + ongoingProcess.set('updateGiftCards', false); + }, 1000); + } if (dataFromStorage.status == 'PENDING') { $log.debug("creating gift card"); amazonService.createGiftCard(dataFromStorage, function(err, giftCard) { if (err) { - popupService.showAlert(gettextCatalog.getString('Error'), err); + popupService.showAlert('Error', err); return; } if (giftCard.status != 'PENDING') { @@ -65,10 +76,10 @@ angular.module('copayApp.controllers').controller('amazonController', $log.debug("Saving new gift card"); amazonService.getPendingGiftCards(function(err, gcds) { if (err) { - popupService.showAlert(gettextCatalog.getString('Error'), err); + popupService.showAlert('Error', err); return; } - $scope.giftCards = gcds; + $scope.giftCards = lodash.isEmpty(gcds) ? null : gcds; $timeout(function() { $scope.$digest(); }); @@ -80,7 +91,9 @@ angular.module('copayApp.controllers').controller('amazonController', }); }); - }, 1000); + }, 1000, { + 'leading': true + }); $scope.openCardModal = function(card) { $scope.card = card; @@ -92,8 +105,11 @@ angular.module('copayApp.controllers').controller('amazonController', $scope.amazonCardDetailsModal.show(); }); - $scope.$on('UpdateAmazonList', function(event) { - initAmazon(); + $scope.$on('modal.hidden', function() { + $scope.updatePendingGiftCards(); + $timeout(function() { + $ionicScrollDelegate.resize(); + }, 10); }); }; diff --git a/src/js/controllers/confirm.js b/src/js/controllers/confirm.js index f7365ec65..49fafd5cf 100644 --- a/src/js/controllers/confirm.js +++ b/src/js/controllers/confirm.js @@ -783,6 +783,7 @@ angular.module('copayApp.controllers').controller('confirmController', function( invoiceUrl: $scope.paypro.url, invoiceTime: giftCardInvoiceTime }; + ongoingProcess.set('createGiftCard', true); debounceCreate(count, dataSrc, onSendStatusChange); } }, onSendStatusChange); @@ -795,7 +796,6 @@ angular.module('copayApp.controllers').controller('confirmController', function( }); var debounceCreateGiftCard = function(count, dataSrc, onSendStatusChange) { - amazonService.createGiftCard(dataSrc, function(err, giftCard) { $log.debug("creating gift card " + count); if (err) { @@ -830,6 +830,7 @@ angular.module('copayApp.controllers').controller('confirmController', function( } amazonService.savePendingGiftCard(newData, null, function(err) { + ongoingProcess.set('createGiftCard', false); $log.debug("Saving new gift card with status: " + newData.status); $scope.amazonGiftCard = newData; }); diff --git a/src/js/controllers/modals/amazonCardDetails.js b/src/js/controllers/modals/amazonCardDetails.js index b567c99b1..fee456e87 100644 --- a/src/js/controllers/modals/amazonCardDetails.js +++ b/src/js/controllers/modals/amazonCardDetails.js @@ -1,18 +1,22 @@ 'use strict'; -angular.module('copayApp.controllers').controller('amazonCardDetailsController', function($scope, $log, $timeout, bwcError, amazonService, lodash, ongoingProcess, popupService, gettextCatalog, externalLinkService) { +angular.module('copayApp.controllers').controller('amazonCardDetailsController', function($scope, $log, $timeout, $ionicScrollDelegate, bwcError, amazonService, lodash, ongoingProcess, popupService, externalLinkService) { $scope.cancelGiftCard = function() { - ongoingProcess.set('Canceling gift card...', true); + ongoingProcess.set('cancelGiftCard', true); amazonService.cancelGiftCard($scope.card, function(err, data) { - ongoingProcess.set('Canceling gift card...', false); + ongoingProcess.set('cancelGiftCard', false); if (err) { - popupService.showAlert(gettextCatalog.getString('Error'), bwcError.msg(err)); + popupService.showAlert('Error', bwcError.msg(err)); return; } $scope.card.cardStatus = data.cardStatus; + $timeout(function() { + $ionicScrollDelegate.resize(); + $ionicScrollDelegate.scrollTop(); + }, 10); amazonService.savePendingGiftCard($scope.card, null, function(err) { - $scope.$emit('UpdateAmazonList'); + $scope.refreshGiftCard(); }); }); }; @@ -21,23 +25,34 @@ angular.module('copayApp.controllers').controller('amazonCardDetailsController', amazonService.savePendingGiftCard($scope.card, { remove: true }, function(err) { - $scope.$emit('UpdateAmazonList'); $scope.cancel(); }); }; $scope.refreshGiftCard = function() { + ongoingProcess.set('updateGiftCard', true); amazonService.getPendingGiftCards(function(err, gcds) { + if (lodash.isEmpty(gcds)) { + $timeout(function() { + ongoingProcess.set('updateGiftCard', false); + }, 1000); + } if (err) { - popupService.showAlert(gettextCatalog.getString('Error'), err); + popupService.showAlert('Error', err); return; } + var index = 0; lodash.forEach(gcds, function(dataFromStorage) { + if (++index == Object.keys(gcds).length) { + $timeout(function() { + ongoingProcess.set('updateGiftCard', false); + }, 1000); + } if (dataFromStorage.status == 'PENDING' && dataFromStorage.invoiceId == $scope.card.invoiceId) { $log.debug("creating gift card"); amazonService.createGiftCard(dataFromStorage, function(err, giftCard) { if (err) { - popupService.showAlert(gettextCatalog.getString('Error'), bwcError.msg(err)); + popupService.showAlert('Error', bwcError.msg(err)); return; } if (!lodash.isEmpty(giftCard)) { @@ -46,7 +61,6 @@ angular.module('copayApp.controllers').controller('amazonCardDetailsController', amazonService.savePendingGiftCard(newData, null, function(err) { $log.debug("Saving new gift card"); $scope.card = newData; - $scope.$emit('UpdateAmazonList'); $timeout(function() { $scope.$digest(); }); diff --git a/src/js/services/amazonService.js b/src/js/services/amazonService.js index 4d82bc337..a26d87dd9 100644 --- a/src/js/services/amazonService.js +++ b/src/js/services/amazonService.js @@ -8,7 +8,7 @@ angular.module('copayApp.services').factory('amazonService', function($http, $lo * Development: 'testnet' * Production: 'livenet' */ - credentials.NETWORK = 'livenet'; + credentials.NETWORK = 'testnet'; if (credentials.NETWORK == 'testnet') { credentials.BITPAY_API_URL = "https://test.bitpay.com"; diff --git a/src/js/services/onGoingProcess.js b/src/js/services/onGoingProcess.js index b543430ab..3248a7be2 100644 --- a/src/js/services/onGoingProcess.js +++ b/src/js/services/onGoingProcess.js @@ -39,7 +39,11 @@ angular.module('copayApp.services').factory('ongoingProcess', function($log, $ti 'sendingByEmail': gettext('Preparing addresses...'), 'sending2faCode': gettext('Sending 2FA code...'), 'buyingBitcoin': gettext('Buying Bitcoin...'), - 'sellingBitcoin': gettext('Selling Bitcoin...') + 'sellingBitcoin': gettext('Selling Bitcoin...'), + 'updateGiftCards': gettext('Updating Gift Cards...'), + 'updateGiftCard': gettext('Updating Gift Card...'), + 'cancelGiftCard': gettext('Canceling Gift Card...'), + 'createGiftCard': gettext('Creating Gift Card...') }; root.clear = function() { diff --git a/src/js/services/walletService.js b/src/js/services/walletService.js index 4546dc4af..b12f94ce8 100644 --- a/src/js/services/walletService.js +++ b/src/js/services/walletService.js @@ -12,23 +12,6 @@ angular.module('copayApp.services').factory('walletService', function($log, $tim var errors = bwcService.getErrors(); - // UI Related - root.openStatusModal = function(type, txp, cb) { - var scope = $rootScope.$new(true); - scope.type = type; - scope.tx = txFormatService.processTx(txp); - scope.color = txp.color; - scope.cb = cb; - - $ionicModal.fromTemplateUrl('views/modals/tx-status.html', { - scope: scope, - animation: 'slide-in-up' - }).then(function(modal) { - scope.txStatusModal = modal; - scope.txStatusModal.show(); - }); - }; - var _signWithLedger = function(wallet, txp, cb) { $log.info('Requesting Ledger Chrome app to sign the transaction'); @@ -961,23 +944,10 @@ angular.module('copayApp.services').factory('walletService', function($log, $tim if (err) return cb(bwcError.msg(err)); $rootScope.$emit('Local/TxAction', wallet.id); - var type = root.getViewStatus(wallet, broadcastedTxp); - - if (!customStatusHandler) { - root.openStatusModal(type, broadcastedTxp, function() {}); - } - return cb(null, broadcastedTxp); }); } else { $rootScope.$emit('Local/TxAction', wallet.id); - - var type = root.getViewStatus(wallet, signedTxp); - - if (!customStatusHandler) { - root.openStatusModal(type, signedTxp, function() {}); - } - return cb(null, signedTxp); } }); @@ -1053,38 +1023,6 @@ angular.module('copayApp.services').factory('walletService', function($log, $tim } catch (e) {} } - root.getViewStatus = function(wallet, txp) { - var status = txp.status; - var type; - var INMEDIATE_SECS = 10; - - if (status == 'broadcasted') { - type = 'broadcasted'; - } else { - - var n = txp.actions.length; - var action = lodash.find(txp.actions, { - copayerId: wallet.credentials.copayerId - }); - - if (!action) { - type = 'created'; - } else if (action.type == 'accept') { - // created and accepted at the same time? - if (n == 1 && action.createdOn - txp.createdOn < INMEDIATE_SECS) { - type = 'created'; - } else { - type = 'accepted'; - } - } else if (action.type == 'reject') { - type = 'rejected'; - } else { - throw new Error('Unknown type:' + type); - } - } - return type; - }; - root.getSendMaxInfo = function(wallet, opts, cb) { opts = opts || {}; wallet.getSendMaxInfo(opts, function(err, res) { From 3bef5ce7fffce993cbd635eb66d03e0da2c9f281 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Baz=C3=A1n?= Date: Thu, 22 Dec 2016 12:32:43 -0300 Subject: [PATCH 05/45] fixes --- src/js/controllers/amazon.js | 6 ++---- src/js/services/amazonService.js | 2 +- src/js/services/onGoingProcess.js | 8 ++++---- 3 files changed, 7 insertions(+), 9 deletions(-) diff --git a/src/js/controllers/amazon.js b/src/js/controllers/amazon.js index d0e36efe6..0c6863d9e 100644 --- a/src/js/controllers/amazon.js +++ b/src/js/controllers/amazon.js @@ -82,7 +82,8 @@ angular.module('copayApp.controllers').controller('amazonController', $scope.giftCards = lodash.isEmpty(gcds) ? null : gcds; $timeout(function() { $scope.$digest(); - }); + $ionicScrollDelegate.resize(); + }, 10); }); }); } else $log.debug("pending gift card not available yet"); @@ -107,9 +108,6 @@ angular.module('copayApp.controllers').controller('amazonController', $scope.$on('modal.hidden', function() { $scope.updatePendingGiftCards(); - $timeout(function() { - $ionicScrollDelegate.resize(); - }, 10); }); }; diff --git a/src/js/services/amazonService.js b/src/js/services/amazonService.js index a26d87dd9..4d82bc337 100644 --- a/src/js/services/amazonService.js +++ b/src/js/services/amazonService.js @@ -8,7 +8,7 @@ angular.module('copayApp.services').factory('amazonService', function($http, $lo * Development: 'testnet' * Production: 'livenet' */ - credentials.NETWORK = 'testnet'; + credentials.NETWORK = 'livenet'; if (credentials.NETWORK == 'testnet') { credentials.BITPAY_API_URL = "https://test.bitpay.com"; diff --git a/src/js/services/onGoingProcess.js b/src/js/services/onGoingProcess.js index 3248a7be2..dab0a629a 100644 --- a/src/js/services/onGoingProcess.js +++ b/src/js/services/onGoingProcess.js @@ -40,10 +40,10 @@ angular.module('copayApp.services').factory('ongoingProcess', function($log, $ti 'sending2faCode': gettext('Sending 2FA code...'), 'buyingBitcoin': gettext('Buying Bitcoin...'), 'sellingBitcoin': gettext('Selling Bitcoin...'), - 'updateGiftCards': gettext('Updating Gift Cards...'), - 'updateGiftCard': gettext('Updating Gift Card...'), - 'cancelGiftCard': gettext('Canceling Gift Card...'), - 'createGiftCard': gettext('Creating Gift Card...') + 'updateGiftCards': 'Updating Gift Cards...', + 'updateGiftCard': 'Updating Gift Card...', + 'cancelGiftCard': 'Canceling Gift Card...', + 'createGiftCard': 'Creating Gift Card...' }; root.clear = function() { From 8a5411cd42118f68cb9914a02124117adf81daad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Baz=C3=A1n?= Date: Thu, 22 Dec 2016 14:45:00 -0300 Subject: [PATCH 06/45] fix send feedback repeated buttons --- src/js/controllers/feedback/send.js | 3 ++- www/views/feedback/send.html | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/js/controllers/feedback/send.js b/src/js/controllers/feedback/send.js index aef8df948..1ad539a94 100644 --- a/src/js/controllers/feedback/send.js +++ b/src/js/controllers/feedback/send.js @@ -1,6 +1,6 @@ 'use strict'; -angular.module('copayApp.controllers').controller('sendController', function($scope, $state, $log, $timeout, $stateParams, $ionicNavBarDelegate, $ionicHistory, $ionicConfig, $window, gettextCatalog, popupService, configService, lodash, feedbackService, ongoingProcess) { +angular.module('copayApp.controllers').controller('sendController', function($scope, $state, $log, $timeout, $stateParams, $ionicNavBarDelegate, $ionicHistory, $ionicConfig, $window, gettextCatalog, popupService, configService, lodash, feedbackService, ongoingProcess, platformInfo) { $scope.sendFeedback = function(feedback, goHome) { @@ -42,6 +42,7 @@ angular.module('copayApp.controllers').controller('sendController', function($sc }; $scope.$on("$ionicView.beforeEnter", function(event, data) { + $scope.isCordova = platformInfo.isCordova; $scope.score = (data.stateParams && data.stateParams.score) ? parseInt(data.stateParams.score) : null; $scope.feedback = {}; diff --git a/www/views/feedback/send.html b/www/views/feedback/send.html index 4f6f4e409..3d735756f 100644 --- a/www/views/feedback/send.html +++ b/www/views/feedback/send.html @@ -10,7 +10,7 @@ - @@ -40,7 +40,7 @@
-
From 73c2b4488a69e7d51ff4ffea2ba7195fffe38be1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Baz=C3=A1n?= Date: Thu, 22 Dec 2016 15:13:53 -0300 Subject: [PATCH 07/45] fix design issue on specific amount feature --- src/js/controllers/addresses.js | 7 +++++++ src/js/controllers/tab-receive.js | 30 +++--------------------------- src/js/routes.js | 2 +- src/sass/views/addresses.scss | 1 - www/views/addresses.html | 15 +++++++++------ www/views/tab-receive.html | 5 ----- 6 files changed, 20 insertions(+), 40 deletions(-) diff --git a/src/js/controllers/addresses.js b/src/js/controllers/addresses.js index 90cf0bb5e..d5289295d 100644 --- a/src/js/controllers/addresses.js +++ b/src/js/controllers/addresses.js @@ -100,6 +100,13 @@ angular.module('copayApp.controllers').controller('addressesController', functio }); }; + $scope.requestSpecificAmount = function() { + $state.go('tabs.receive.amount', { + customAmount: true, + toAddress: $stateParams.toAddress + }); + } + $scope.showInformation = function() { $timeout(function() { $scope.showInfo = !$scope.showInfo; diff --git a/src/js/controllers/tab-receive.js b/src/js/controllers/tab-receive.js index 3aeb9d577..9607e6c91 100644 --- a/src/js/controllers/tab-receive.js +++ b/src/js/controllers/tab-receive.js @@ -50,8 +50,9 @@ angular.module('copayApp.controllers').controller('tabReceiveController', functi }; $scope.showAddresses = function() { - $state.transitionTo('tabs.receive.addresses', { - walletId: $scope.wallet.credentials.walletId + $state.go('tabs.receive.addresses', { + walletId: $scope.wallet.credentials.walletId, + toAddress: $scope.addr }); }; @@ -140,31 +141,6 @@ angular.module('copayApp.controllers').controller('tabReceiveController', functi }); }; - var goRequestAmount = function() { - $scope.menu.hide(); - $state.go('tabs.receive.amount', { - customAmount: true, - toAddress: $scope.addr - }); - } - - $scope.showMenu = function(allAddresses, $event) { - var requestAmountObj = { - text: gettextCatalog.getString('Request Specific amount'), - action: goRequestAmount, - }; - - $scope.items = [requestAmountObj]; - $scope.height = $scope.items.length * MENU_ITEM_HEIGHT; - - $ionicPopover.fromTemplateUrl('views/includes/menu-popover.html', { - scope: $scope - }).then(function(popover) { - $scope.menu = popover; - $scope.menu.show($event); - }); - }; - $scope.$on("$ionicView.beforeEnter", function(event, data) { $scope.wallets = profileService.getWallets(); diff --git a/src/js/routes.js b/src/js/routes.js index 278d24646..290f2393b 100644 --- a/src/js/routes.js +++ b/src/js/routes.js @@ -614,7 +614,7 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr */ .state('tabs.receive.addresses', { - url: '/addresses/:walletId', + url: '/addresses/:walletId/:toAddress', views: { 'tab-receive@tabs': { controller: 'addressesController', diff --git a/src/sass/views/addresses.scss b/src/sass/views/addresses.scss index 5401945f7..f8bb4ced6 100644 --- a/src/sass/views/addresses.scss +++ b/src/sass/views/addresses.scss @@ -47,7 +47,6 @@ font-size: .9rem; } &.view-all { - margin: 20px 0px 20px 0px; cursor: pointer; cursor: hand; i { diff --git a/www/views/addresses.html b/www/views/addresses.html index b7c9a4c90..30c4a2371 100644 --- a/www/views/addresses.html +++ b/www/views/addresses.html @@ -26,11 +26,19 @@
- It's a good idea to avoid reusing addresses-this both protects your privacy and keeps your bitcoins secure against hypothetical attacks by quantum computers. Hide + It's a good idea to avoid reusing addresses - this both protects your privacy and keeps your bitcoins secure against hypothetical attacks by quantum computers. Hide
+
+ Request Specific amount + +
+
+ View All Addresses + +
Unused Addresses @@ -61,11 +69,6 @@
{{w.balanceStr}}
- -
- View All Addresses - -
diff --git a/www/views/tab-receive.html b/www/views/tab-receive.html index fed491ad4..d07713685 100644 --- a/www/views/tab-receive.html +++ b/www/views/tab-receive.html @@ -1,11 +1,6 @@ {{'Receive' | translate}} - - -
From f9a821ba70c7a94abf79f83065fe1a22955f1875 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Baz=C3=A1n?= Date: Thu, 22 Dec 2016 15:16:14 -0300 Subject: [PATCH 08/45] remove unused variable --- src/js/controllers/tab-receive.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/js/controllers/tab-receive.js b/src/js/controllers/tab-receive.js index 9607e6c91..a7eb191cb 100644 --- a/src/js/controllers/tab-receive.js +++ b/src/js/controllers/tab-receive.js @@ -3,7 +3,6 @@ angular.module('copayApp.controllers').controller('tabReceiveController', function($rootScope, $scope, $timeout, $log, $ionicModal, $state, $ionicHistory, $ionicPopover, storageService, platformInfo, walletService, profileService, configService, lodash, gettextCatalog, popupService, bwcError) { var listeners = []; - var MENU_ITEM_HEIGHT = 55; $scope.isCordova = platformInfo.isCordova; $scope.isNW = platformInfo.isNW; $scope.walletAddrs = {}; From faafef9950be48095def2c99885ffd97b1507d5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Baz=C3=A1n?= Date: Wed, 21 Dec 2016 11:27:44 -0300 Subject: [PATCH 09/45] check balance refactor --- src/js/controllers/tab-send.js | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/js/controllers/tab-send.js b/src/js/controllers/tab-send.js index 7c1ac8fc9..57b24e97b 100644 --- a/src/js/controllers/tab-send.js +++ b/src/js/controllers/tab-send.js @@ -133,13 +133,9 @@ angular.module('copayApp.controllers').controller('tabSendController', function( lodash.each(wallets, function(w) { walletService.getStatus(w, {}, function(err, status) { ++index; - if (index == wallets.length) $scope.checkingBalance = false; - if (err || !status) { + if (err && !status) { $log.error(err); - return; - } - - if (status.availableBalanceSat > 0) { + } else if (status.availableBalanceSat > 0) { $scope.hasFunds = true; $rootScope.everHasFunds = true; } @@ -148,6 +144,7 @@ angular.module('copayApp.controllers').controller('tabSendController', function( if ($scope.hasFunds != true) { $ionicScrollDelegate.freezeScroll(true); } + $scope.checkingBalance = false; $timeout(function() { $scope.$apply(); }); From 3fd5f50c84f841330c0d9a53ec8414ffa06bb198 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Baz=C3=A1n?= Date: Fri, 23 Dec 2016 11:12:05 -0300 Subject: [PATCH 10/45] fix finish button --- src/js/controllers/customAmount.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/js/controllers/customAmount.js b/src/js/controllers/customAmount.js index ea3e56ceb..b3c17137f 100644 --- a/src/js/controllers/customAmount.js +++ b/src/js/controllers/customAmount.js @@ -18,8 +18,7 @@ angular.module('copayApp.controllers').controller('customAmountController', func $scope.finish = function() { $ionicHistory.nextViewOptions({ - disableAnimate: false, - historyRoot: true + disableAnimate: false }); $ionicHistory.goBack(-2); }; From 8c18ef33b559c89e24a926e863d405208d3b1042 Mon Sep 17 00:00:00 2001 From: Javier Date: Fri, 23 Dec 2016 10:32:09 -0300 Subject: [PATCH 11/45] add color - fix addressbook checks --- src/sass/views/address-book.scss | 38 ++++++++++++++++++++++++++++++-- src/sass/views/join.scss | 16 ++++++++++++-- www/views/addressbook.add.html | 12 +++++----- www/views/join.html | 10 ++++----- 4 files changed, 59 insertions(+), 17 deletions(-) diff --git a/src/sass/views/address-book.scss b/src/sass/views/address-book.scss index 96fefb608..e03c8456b 100644 --- a/src/sass/views/address-book.scss +++ b/src/sass/views/address-book.scss @@ -14,9 +14,43 @@ padding: 0 10px; font-size: 24px; cursor: pointer; + line-height: 155px; } - .qr-icon { - line-height: 45px; + .icon { + &.valid { + padding-top: 3px; + color: #13E5B6; + } + &.invalid { + padding-top: 3px; + color: #DF2121; + } + } + .add-address-input-group { + background-color: #fff; + .item-stacked-label { + padding: 1rem; + } + .input-label { + text-transform: uppercase; + font-size: 12px; + font-weight: bold; + } + } + .add-address-list { + .item { + color: $dark-gray; + padding-top: 1.3rem; + padding-bottom: 1.3rem; + &.item-divider { + color: $mid-gray; + padding-bottom: .5rem; + font-size: .9rem; + } + } + .item-note { + color: $light-gray; + } } } #view-address-book { diff --git a/src/sass/views/join.scss b/src/sass/views/join.scss index 601fff97c..15d368f9d 100644 --- a/src/sass/views/join.scss +++ b/src/sass/views/join.scss @@ -8,8 +8,20 @@ padding: 0 10px; font-size: 24px; cursor: pointer; - } - .qr-icon { line-height: 45px; } + .item-stacked-label .icon { + padding: 0px; + margin: 0px; + } + .icon { + &.valid { + padding-top: 3px; + color: #13E5B6; + } + &.invalid { + padding-top: 3px; + color: #DF2121; + } + } } diff --git a/www/views/addressbook.add.html b/www/views/addressbook.add.html index 088fbf47d..afeda0c80 100644 --- a/www/views/addressbook.add.html +++ b/www/views/addressbook.add.html @@ -1,4 +1,4 @@ - + Add Contact @@ -16,8 +16,8 @@
-
-
diff --git a/www/views/preferencesBwsUrl.html b/www/views/preferencesBwsUrl.html index 397472245..bb9928073 100644 --- a/www/views/preferencesBwsUrl.html +++ b/www/views/preferencesBwsUrl.html @@ -17,8 +17,7 @@
- {{appName}} depends on Bitcore Wallet Service (BWS) for blockchain information, networking and Copayer synchronization. - The default configuration points to https://bws.bitpay.com (BitPay's public BWS instance). + {{appName}} depends on Bitcore Wallet Service (BWS) for blockchain information, networking and Copayer synchronization. The default configuration points to https://bws.bitpay.com (BitPay's public BWS instance).
From 3c956c8fa2b0793910d29c659eac26870db19f8e Mon Sep 17 00:00:00 2001 From: Gustavo Maximiliano Cortez Date: Thu, 29 Dec 2016 10:02:44 -0300 Subject: [PATCH 37/45] Fix date format on walletDetails list --- www/views/walletDetails.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/views/walletDetails.html b/www/views/walletDetails.html index 13c8ad9d4..4ec6c5d3b 100644 --- a/www/views/walletDetails.html +++ b/www/views/walletDetails.html @@ -273,7 +273,7 @@
From 245ca449f61430c0a07e8b11b347372e525c6fc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Baz=C3=A1n?= Date: Wed, 28 Dec 2016 17:19:17 -0300 Subject: [PATCH 38/45] some translations fixes --- i18n/po/template.pot | 57 +++++++++++++--------- www/views/backupWarning.html | 2 +- www/views/includes/backupWarningPopup.html | 7 --- www/views/tab-home.html | 2 +- 4 files changed, 37 insertions(+), 31 deletions(-) delete mode 100644 www/views/includes/backupWarningPopup.html diff --git a/i18n/po/template.pot b/i18n/po/template.pot index 37c106e1e..284ea705a 100644 --- a/i18n/po/template.pot +++ b/i18n/po/template.pot @@ -45,8 +45,8 @@ msgid "About" msgstr "" #: src/js/services/confirmDialog.js:8 +#: www/views/confirm.html:126 #: www/views/confirm.html:134 -#: www/views/confirm.html:144 #: www/views/modals/txp-details.html:169 #: www/views/modals/txp-details.html:176 msgid "Accept" @@ -93,7 +93,7 @@ msgstr "" msgid "Add Funds" msgstr "" -#: www/views/confirm.html:78 +#: www/views/confirm.html:72 msgid "Add Memo" msgstr "" @@ -157,10 +157,6 @@ msgstr "" msgid "All Addresses" msgstr "" -#: www/views/backupWarning.html:15 -msgid "All clear, let's do this" -msgstr "" - #: www/views/modals/wallet-balance.html:18 msgid "All of your bitcoin wallet balance may not be available for immediate spending." msgstr "" @@ -394,6 +390,7 @@ msgstr "" #: www/views/feedback/send.html:5 #: www/views/includes/confirm-tx.html:30 #: www/views/includes/note.html:6 +#: www/views/includes/password.html:22 #: www/views/modals/confirmation.html:13 msgid "Cancel" msgstr "" @@ -644,11 +641,8 @@ msgstr "" msgid "Create Shared Wallet" msgstr "" -#: www/views/tab-home.html:66 -msgid "Create a bitcoin wallet" -msgstr "" - #: www/views/onboarding/tour.html:46 +#: www/views/tab-home.html:66 #: www/views/tab-send.html:16 msgid "Create bitcoin wallet" msgstr "" @@ -832,6 +826,10 @@ msgstr "" msgid "Enter your password" msgstr "" +#: www/views/includes/password.html:8 +msgid "Enter your spending password" +msgstr "" + #. Trying to import a malformed wallet export QR code #: src/js/controllers/activity.js:45 #: src/js/controllers/addressbook.js:50 @@ -997,7 +995,7 @@ msgstr "" msgid "Family vacation funds" msgstr "" -#: www/views/confirm.html:85 +#: www/views/confirm.html:79 #: www/views/includes/confirm-tx.html:19 #: www/views/modals/txp-details.html:95 #: www/views/tx-details.html:73 @@ -1110,7 +1108,7 @@ msgstr "" msgid "Go back" msgstr "" -#: www/views/includes/backupWarningPopup.html:4 +#: www/views/backupWarning.html:15 #: www/views/includes/confirmBackupPopup.html:8 msgid "Got it" msgstr "" @@ -1276,7 +1274,7 @@ msgid "Incorrect code format" msgstr "" #: src/js/services/bwcError.js:44 -#: www/views/confirm.html:122 +#: www/views/confirm.html:116 msgid "Insufficient funds" msgstr "" @@ -1526,7 +1524,7 @@ msgstr "" msgid "No wallet found!" msgstr "" -#: www/views/confirm.html:119 +#: www/views/confirm.html:113 msgid "No wallets available" msgstr "" @@ -1716,7 +1714,7 @@ msgstr "" msgid "Payment Rejected" msgstr "" -#: www/views/confirm.html:150 +#: www/views/confirm.html:140 #: www/views/includes/walletActivity.html:11 #: www/views/modals/txp-details.html:182 #: www/views/modals/txp-details.html:42 @@ -1827,7 +1825,7 @@ msgstr "" #: src/js/controllers/modals/txpDetails.js:38 #: src/js/controllers/tx-details.js:64 -#: www/views/confirm.html:151 +#: www/views/confirm.html:141 msgid "Proposal Created" msgstr "" @@ -1952,6 +1950,10 @@ msgstr "" msgid "Repeat the password" msgstr "" +#: www/views/includes/password.html:5 +msgid "Repeat the spending password" +msgstr "" + #: www/views/preferences.html:51 msgid "Request Fingerprint" msgstr "" @@ -1984,6 +1986,10 @@ msgstr "" msgid "Retry Camera" msgstr "" +#: www/views/includes/password.html:31 +msgid "SET" +msgstr "" + #: www/views/addressbook.add.html:56 #: www/views/includes/note.html:9 #: www/views/preferencesAlias.html:21 @@ -2017,7 +2023,6 @@ msgstr "" msgid "Scanning Wallet funds..." msgstr "" -#: www/views/includes/backupWarningPopup.html:2 #: www/views/includes/screenshotWarningModal.html:7 msgid "Screenshots are not secure" msgstr "" @@ -2153,6 +2158,10 @@ msgstr "" msgid "Set up a password" msgstr "" +#: www/views/includes/password.html:4 +msgid "Set up a spending password" +msgstr "" + #: www/views/tab-settings.html:3 #: www/views/tabs.html:19 msgid "Settings" @@ -2499,7 +2508,7 @@ msgstr "" msgid "Transaction already broadcasted" msgstr "" -#: www/views/confirm.html:152 +#: www/views/confirm.html:142 msgid "Transaction created" msgstr "" @@ -2929,10 +2938,18 @@ msgstr "" msgid "Your password" msgstr "" +#: www/views/includes/password.html:12 +msgid "Your spending password" +msgstr "" + #: www/views/onboarding/backupRequest.html:10 msgid "Your wallet is never saved to cloud storage or standard device backups." msgstr "" +#: www/views/includes/password.html:39 +msgid "Your wallet key will be encrypted. The Spending Password cannot be recovered. Be sure to write it down" +msgstr "" + #: src/js/services/walletService.js:825 msgid "Your wallet key will be encrypted. The Spending Password cannot be recovered. Be sure to write it down." msgstr "" @@ -2949,10 +2966,6 @@ msgstr "" msgid "address not yet available" msgstr "" -#: www/views/includes/backupWarningPopup.html:3 -msgid "if you take a screenshot, your backup may be viewed by others apps. You can make a safe backup with paper and a pen." -msgstr "" - #: www/views/includes/available-balance.html:8 msgid "locked by pending payments" msgstr "" diff --git a/www/views/backupWarning.html b/www/views/backupWarning.html index 0f426c151..67848cca0 100644 --- a/www/views/backupWarning.html +++ b/www/views/backupWarning.html @@ -12,7 +12,7 @@
Anyone with your backup phrase can access or spend your bitcoin.
- +
diff --git a/www/views/includes/backupWarningPopup.html b/www/views/includes/backupWarningPopup.html deleted file mode 100644 index df7c0bcd9..000000000 --- a/www/views/includes/backupWarningPopup.html +++ /dev/null @@ -1,7 +0,0 @@ -
-

Screenshots are not secure

- if you take a screenshot, your backup may be viewed by others apps. You can make a safe backup with paper and a pen. - -
diff --git a/www/views/tab-home.html b/www/views/tab-home.html index 2cb7387dd..a0b17d7e6 100644 --- a/www/views/tab-home.html +++ b/www/views/tab-home.html @@ -63,7 +63,7 @@ - Create a bitcoin wallet + Create bitcoin wallet Date: Thu, 29 Dec 2016 11:22:50 -0300 Subject: [PATCH 39/45] adding UTF8 encoding support script --- Gruntfile.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index b847b7b71..5f7b369db 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -115,6 +115,7 @@ module.exports = function(grunt) { angular: { src: [ 'bower_components/qrcode-generator/js/qrcode.js', + 'bower_components/qrcode-generator/js/qrcode_UTF8.js', 'bower_components/moment/min/moment-with-locales.js', 'bower_components/angular-moment/angular-moment.js', 'bower_components/ng-lodash/build/ng-lodash.js', @@ -221,8 +222,8 @@ module.exports = function(grunt) { macPlist: { 'CFBundleURLTypes': [ { - 'CFBundleURLName' : 'URI Handler', - 'CFBundleURLSchemes' : ['bitcoin', '<%= pkg.name %>'] + 'CFBundleURLName': 'URI Handler', + 'CFBundleURLSchemes': ['bitcoin', '<%= pkg.name %>'] } ] } From dcb9387ef43efc1d89d58b9225830375121107c5 Mon Sep 17 00:00:00 2001 From: Kirvx Date: Thu, 29 Dec 2016 15:34:31 +0100 Subject: [PATCH 40/45] Update fr.po --- i18n/po/fr.po | 787 ++++++++++++++++++++++++++++---------------------- 1 file changed, 445 insertions(+), 342 deletions(-) diff --git a/i18n/po/fr.po b/i18n/po/fr.po index 4b93aff7f..855658aa2 100644 --- a/i18n/po/fr.po +++ b/i18n/po/fr.po @@ -12,7 +12,7 @@ msgstr "" "Last-Translator: cmgustavo83\n" "Language-Team: French\n" "Language: fr\n" -"PO-Revision-Date: 2016-12-13 08:00-0500\n" +"PO-Revision-Date: 2016-12-29 07:42-0500\n" #: www/views/modals/paypro.html:34 msgid "(Trusted)" @@ -20,7 +20,7 @@ msgstr "(Fiable)" #: www/views/includes/txp.html:27 #: www/views/modals/search.html:27 -#: www/views/walletDetails.html:249 +#: www/views/walletDetails.html:266 msgid "(possible double spend)" msgstr "(double dépense possible)" @@ -32,7 +32,7 @@ msgstr "* Une proposition de paiement peut être supprimée si vous en êtes le msgid "5-star ratings help us get BitPay into more hands, and more users means more resources can be committed to the app!" msgstr "Une note de 5 étoiles permet à BitPay de gagner en popularité, et plus d'utilisateurs signifie davantage de ressources allouées à l'appli !" -#: src/js/controllers/confirm.js:454 +#: src/js/controllers/confirm.js:466 msgid "A SMS containing a confirmation code was sent to your phone." msgstr "Un SMS contenant un code de confirmation a été envoyé à votre téléphone." @@ -41,20 +41,24 @@ msgstr "Un SMS contenant un code de confirmation a été envoyé à votre télé msgid "A member of the team will review your feedback as soon as possible." msgstr "Un membre de l’équipe passera en revue votre avis dès que possible." -#: src/js/controllers/confirm.js:212 +#: src/js/controllers/confirm.js:220 msgid "A total of {{amountAboveMaxSizeStr}} were excluded. The maximum size allowed for a transaction was exceeded." msgstr "Un total de {{amountAboveMaxSizeStr}} a été exclu. La taille maximale autorisée pour une transaction a été dépassée." -#: src/js/controllers/confirm.js:206 +#: src/js/controllers/confirm.js:214 msgid "A total of {{amountBelowFeeStr}} were excluded. These funds come from UTXOs smaller than the network fee provided." msgstr "Un total de {{amountBelowFeeStr}} a été exclu. Ces fonds proviennent d'UTXOs plus petites que les frais de réseau prévus." #: src/js/controllers/preferencesAbout.js:6 -#: www/views/tab-settings.html:159 +#: www/views/tab-settings.html:149 msgid "About" msgstr "À propos" #: src/js/services/confirmDialog.js:8 +#: www/views/confirm.html:126 +#: www/views/confirm.html:134 +#: www/views/modals/txp-details.html:169 +#: www/views/modals/txp-details.html:176 msgid "Accept" msgstr "Accepter" @@ -67,7 +71,7 @@ msgstr "Acceptée" msgid "Account" msgstr "Compte" -#: www/views/join.html:71 +#: www/views/join.html:69 #: www/views/tab-create-personal.html:42 #: www/views/tab-create-shared.html:72 #: www/views/tab-import-hardware.html:19 @@ -86,7 +90,7 @@ msgstr "Ajouter un account" msgid "Add BitPay Card Account?" msgstr "Ajouter un compte BitPay Card ?" -#: www/views/tab-home.html:155 +#: www/views/tab-home.html:156 msgid "Add BitPay Visa® Card" msgstr "Ajouter une BitPay Visa® Card" @@ -107,32 +111,29 @@ msgstr "Ajouter une note" msgid "Add a Contact" msgstr "Ajouter un contact" -#: www/views/join.html:90 -#: www/views/join.html:99 -#: www/views/tab-create-personal.html:59 -#: www/views/tab-create-personal.html:67 -#: www/views/tab-create-shared.html:89 -#: www/views/tab-create-shared.html:97 -msgid "Add a Password" +#: www/views/join.html:84 +#: www/views/tab-create-personal.html:55 +#: www/views/tab-create-shared.html:85 +msgid "Add a password" msgstr "Ajouter un mot de passe" -#: www/views/join.html:92 -#: www/views/tab-create-personal.html:61 -#: www/views/tab-create-shared.html:91 +#: www/views/join.html:87 +#: www/views/tab-create-personal.html:58 +#: www/views/tab-create-shared.html:88 msgid "Add an optional password to secure the recovery phrase" msgstr "Ajouter un mot de passe optionnel pour sécuriser la phrase de récupération" -#: src/js/controllers/confirm.js:266 +#: src/js/controllers/confirm.js:274 msgid "Add description" msgstr "Ajouter une description" #: www/views/add.html:3 msgid "Add wallet" -msgstr "Ajouter portefeuille" +msgstr "Ajouter un portefeuille" #: www/views/addressbook.view.html:23 #: www/views/customAmount.html:26 -#: www/views/modals/paypro.html:25 +#: www/views/modals/paypro.html:24 #: www/views/paymentUri.html:15 msgid "Address" msgstr "Adresse" @@ -146,11 +147,11 @@ msgstr "Répertoire" msgid "Address Type" msgstr "Type d'adresse" -#: www/views/addresses.html:55 +#: www/views/addresses.html:61 msgid "Addresses With Balance" msgstr "Adresses avec un solde" -#: www/views/tab-settings.html:152 +#: www/views/tab-settings.html:142 msgid "Advanced" msgstr "Paramètres avancés" @@ -166,14 +167,18 @@ msgstr "Tout" msgid "All Addresses" msgstr "Toutes les adresses" -#: www/views/backupWarning.html:15 -msgid "All clear, let's do this" -msgstr "Tout est normal, allons-y !" +#: www/views/modals/wallet-balance.html:18 +msgid "All of your bitcoin wallet balance may not be available for immediate spending." +msgstr "Tout le solde de votre portefeuille bitcoin peut ne pas être disponible pour des dépenses immédiates." -#: www/views/tab-receive.html:38 +#: www/views/tab-receive.html:33 msgid "All signing devices must be added to this multisig wallet before bitcoin addresses can be created." msgstr "Tous les appareils de signature doivent être ajoutés à ce portefeuille multisig avant que les adresses bitcoin ne puissent être créées." +#: www/views/tab-scan.html:21 +msgid "Allow Camera Access" +msgstr "Autoriser l'accès à la caméra" + #: www/views/onboarding/notifications.html:7 msgid "Allow notifications" msgstr "Autoriser les notifications" @@ -187,10 +192,6 @@ msgstr "C'est presque terminé ! Vérifions." msgid "Alternative Currency" msgstr "Devise alternative" -#: www/views/tab-home.html:138 -msgid "Amazon.com Gift Cards" -msgstr "Cartes cadeaux Amazon.com" - #: www/views/amount.html:43 #: www/views/customAmount.html:32 #: www/views/includes/output.html:7 @@ -202,10 +203,18 @@ msgstr "Montant" msgid "Amount below minimum allowed" msgstr "Montant en dessous du minimum autorisé" +#: src/js/controllers/confirm.js:389 +msgid "Amount too big" +msgstr "Le montant est trop élevé" + #: www/views/tab-home.html:14 msgid "An update to this app is available" msgstr "Une mise à jour de cette appli est disponible" +#: src/js/controllers/tab-home.js:139 +msgid "An update to this app is available. For your security, please update to the latest version." +msgstr "Une mise à jour de cette application est disponible. Pour votre sécurité, veuillez mettre à jour vers la dernière version." + #: www/views/backupWarning.html:14 msgid "Anyone with your backup phrase can access or spend your bitcoin." msgstr "Quelqu'un disposant de votre phrase de sauvegarde peut accéder ou dépenser vos bitcoins." @@ -231,7 +240,7 @@ msgid "Are you sure you want to remove this transaction?" msgstr "Êtes-vous certain(e) de vouloir supprimer cette transaction ?" #: src/js/controllers/onboarding/backupRequest.js:16 -msgid "Are you sure you want to skip the backup?" +msgid "Are you sure you want to skip it?" msgstr "Êtes-vous sûr(e) de vouloir ignorer la sauvegarde ?" #: src/js/controllers/preferencesBitpayCard.js:7 @@ -242,8 +251,7 @@ msgstr "Êtes-vous sûr(e) de vouloir supprimer votre compte BitPay Card de cet msgid "Auditable" msgstr "Vérifiable" -#: www/views/walletDetails.html:121 -#: www/views/walletDetails.html:60 +#: www/views/modals/wallet-balance.html:42 msgid "Available" msgstr "Disponible" @@ -256,12 +264,16 @@ msgid "Average confirmation time: {{fee.nbBlocks * 1 msgstr "Temps de confirmation moyen : {{fee.nbBlocks * 10}} minutes" #: www/views/join.html:118 -#: www/views/tab-create-personal.html:85 -#: www/views/tab-create-shared.html:115 +#: www/views/tab-create-personal.html:87 +#: www/views/tab-create-shared.html:117 #: www/views/tab-import-phrase.html:46 msgid "BIP32 path for address derivation" msgstr "Chemin BIP32 pour la dérivation de l'adresse" +#: src/js/controllers/walletDetails.js:63 +msgid "BWS Error" +msgstr "Erreur BWS" + #: www/views/preferences.html:41 msgid "Backup" msgstr "Sauvegarder" @@ -272,7 +284,7 @@ msgstr "Sauvegarde requise" #: www/views/includes/backupNeededPopup.html:9 msgid "Backup now" -msgstr "Sauvegarder" +msgstr "Sauvegarder maintenant" #: www/views/onboarding/backupRequest.html:11 #: www/views/tab-export-file.html:87 @@ -295,6 +307,10 @@ msgstr "Solde par adresse" msgid "Be sure to store your recovery phrase in a secure place. If this app is deleted, your money cannot be recovered without it." msgstr "N’oubliez pas de conserver votre phrase de récupération dans un endroit sûr. Si cette application est supprimée, votre argent ne peut pas être récupéré sans elle." +#: src/js/controllers/tab-settings.js:52 +msgid "BitPay Help Center" +msgstr "Centre d’aide BitPay" + #: www/views/addressbook.add.html:38 msgid "Bitcoin Address" msgstr "Adresse bitcoin" @@ -349,7 +365,7 @@ msgstr "Diffusion de la transaction" msgid "Browser unsupported" msgstr "Navigateur non supporté" -#: www/views/tab-home.html:118 +#: www/views/tab-home.html:119 msgid "Buy & Sell Bitcoin" msgstr "Acheter & vendre des bitcoins" @@ -357,7 +373,7 @@ msgstr "Acheter & vendre des bitcoins" msgid "Buy Bitcoin" msgstr "Acheter des bitcoins" -#: www/views/tab-home.html:169 +#: www/views/tab-home.html:170 msgid "Buy an Amazon Gift Card" msgstr "Acheter une carte cadeau Amazon" @@ -365,7 +381,7 @@ msgstr "Acheter une carte cadeau Amazon" msgid "Buy and sell" msgstr "Acheter et vendre" -#: www/views/tab-home.html:162 +#: www/views/tab-home.html:163 msgid "Buy or Sell Bitcoin" msgstr "Acheter ou vendre des bitcoins" @@ -377,9 +393,9 @@ msgstr "Achat de bitcoins..." msgid "Calculating fee" msgstr "Calcul des frais" -#: src/js/controllers/confirm.js:510 +#: src/js/controllers/confirm.js:514 #: src/js/services/confirmDialog.js:9 -#: src/js/services/popupService.js:58 +#: src/js/services/popupService.js:59 #: www/views/addressbook.add.html:10 #: www/views/feedback/send.html:5 #: www/views/includes/confirm-tx.html:30 @@ -397,16 +413,12 @@ msgstr "Impossible de créer le portefeuille" msgid "Cannot join the same wallet more that once" msgstr "Impossible de rejoindre le même portefeuille plus d'une fois" -#: src/js/controllers/amazon.js:25 -msgid "Card not found" -msgstr "Carte introuvable" - #: www/views/preferencesBitpayCard.html:10 -#: www/views/tab-home.html:99 +#: www/views/tab-home.html:100 msgid "Cards" msgstr "Cartes" -#: www/views/modals/paypro.html:29 +#: www/views/modals/paypro.html:30 msgid "Certified by" msgstr "Certifié par" @@ -431,6 +443,7 @@ msgid "Clear cache" msgstr "Vider le cache" #: www/views/modals/paypro.html:4 +#: www/views/modals/wallet-balance.html:3 #: www/views/modals/wallets.html:5 msgid "Close" msgstr "Fermer" @@ -443,7 +456,7 @@ msgstr "Couleur" msgid "Commit hash" msgstr "Commit hash" -#: src/js/controllers/confirm.js:509 +#: src/js/controllers/confirm.js:513 #: src/js/controllers/copayers.js:42 #: src/js/services/confirmDialog.js:10 #: www/views/backup.html:53 @@ -458,16 +471,16 @@ msgstr "Confirmer" msgid "Confirm & Finish" msgstr "Confirmer & Terminer" -#: src/js/services/walletService.js:839 +#: src/js/services/walletService.js:828 +#: src/js/services/walletService.js:829 msgid "Confirm you new spending password" msgstr "Confirmez votre nouveau code de dépenses" -#: www/views/tx-details.html:77 +#: www/views/tx-details.html:79 msgid "Confirmations" msgstr "Confirmations" -#: www/views/walletDetails.html:122 -#: www/views/walletDetails.html:61 +#: www/views/modals/wallet-balance.html:61 msgid "Confirming" msgstr "Confirmation" @@ -483,10 +496,6 @@ msgstr "Connexion à Coinbase..." msgid "Connecting to Glidera..." msgstr "Connexion à Glidera..." -#: www/views/glideraUri.html:16 -msgid "Connecting..." -msgstr "Connexion..." - #: src/js/services/bwcError.js:53 msgid "Connection reset by peer" msgstr "Connexion réinitialisée par un pair" @@ -547,6 +556,10 @@ msgstr "Impossible d'accéder au portefeuille via le serveur. Veuillez vérifier msgid "Could not access wallet" msgstr "Impossible d’accéder au portefeuille" +#: src/js/controllers/confirm.js:383 +msgid "Could not add message to imported wallet without shared encrypting key" +msgstr "Could not add message to imported wallet without shared encrypting key" + #: src/js/controllers/modals/txpDetails.js:172 msgid "Could not broadcast payment" msgstr "Impossible de diffuser le paiement" @@ -555,7 +568,7 @@ msgstr "Impossible de diffuser le paiement" msgid "Could not build transaction" msgstr "Impossible de créer la transaction" -#: src/js/services/walletService.js:755 +#: src/js/services/walletService.js:741 msgid "Could not create address" msgstr "Impossible de créer l'adresse" @@ -571,7 +584,7 @@ msgstr "Impossible de créer en utilisant la clé publique étendue spécifiée" msgid "Could not create: Invalid wallet recovery phrase" msgstr "Impossible de créer : Phrase de récupération du portefeuille invalide" -#: src/js/controllers/import.js:79 +#: src/js/controllers/import.js:80 msgid "Could not decrypt file, check your password" msgstr "Impossible de déchiffrer le fichier, vérifiez votre mot de passe" @@ -587,7 +600,7 @@ msgstr "Impossible d'obtenir les frais dynamiques" msgid "Could not get dynamic fee for level: {{feeLevel}}" msgstr "Impossible d'obtenir les frais dynamiques pour ce choix : {{feeLevel}}" -#: src/js/controllers/confirm.js:655 +#: src/js/controllers/confirm.js:664 msgid "Could not get the destination bitcoin address" msgstr "Impossible d'obtenir l'adresse bitcoin de destination" @@ -618,7 +631,7 @@ msgstr "Impossible de rejeter le paiement" msgid "Could not remove card" msgstr "Impossible de supprimer la carte" -#: src/js/controllers/confirm.js:449 +#: src/js/controllers/confirm.js:461 msgid "Could not send confirmation code to your phone" msgstr "Impossible d'envoyer le code de confirmation à votre téléphone" @@ -626,14 +639,10 @@ msgstr "Impossible d'envoyer le code de confirmation à votre téléphone" msgid "Could not send payment" msgstr "Impossible d'envoyer le paiement" -#: src/js/controllers/tab-home.js:200 +#: src/js/controllers/tab-home.js:212 msgid "Could not update" msgstr "Impossible de mettre à jour" -#: src/js/services/walletService.js:147 -msgid "Could not update Wallet" -msgstr "Impossible de mettre à jour le portefeuille" - #: www/views/tab-create-personal.html:3 msgid "Create Personal Wallet" msgstr "Créer un portefeuille personnel" @@ -642,15 +651,13 @@ msgstr "Créer un portefeuille personnel" msgid "Create Shared Wallet" msgstr "Créer un portefeuille partagé" +#: www/views/onboarding/tour.html:46 #: www/views/tab-home.html:66 -msgid "Create a bitcoin wallet" -msgstr "Créer un portefeuille bitcoin" - #: www/views/tab-send.html:16 msgid "Create bitcoin wallet" msgstr "Créer un portefeuille bitcoin" -#: www/views/tab-create-personal.html:103 +#: www/views/tab-create-personal.html:105 msgid "Create new wallet" msgstr "Créer" @@ -658,12 +665,12 @@ msgstr "Créer" msgid "Create shared wallet" msgstr "Créer un portefeuille partagé" -#: www/views/tab-create-shared.html:133 +#: www/views/tab-create-shared.html:135 msgid "Create {{formData.requiredCopayers}}-of-{{formData.totalCopayers}} wallet" -msgstr "Créer un portefeuille {{formData.requiredCopayers}}--sur--{{formData.totalCopayers}}" +msgstr "Créer un portefeuille {{formData.requiredCopayers}}-sur-{{formData.totalCopayers}}" #: www/views/modals/txp-details.html:83 -#: www/views/tx-details.html:58 +#: www/views/tx-details.html:60 msgid "Created by" msgstr "Créée par" @@ -709,8 +716,8 @@ msgid "Deleting payment proposal" msgstr "Suppression de la proposition de paiement" #: www/views/join.html:116 -#: www/views/tab-create-personal.html:83 -#: www/views/tab-create-shared.html:113 +#: www/views/tab-create-personal.html:85 +#: www/views/tab-create-shared.html:115 #: www/views/tab-import-phrase.html:44 msgid "Derivation Path" msgstr "Chemin de dérivation" @@ -720,15 +727,18 @@ msgid "Derivation Strategy" msgstr "Stratégie de dérivation" #: www/views/modals/coinbase-tx-details.html:9 -#: www/views/modals/paypro.html:17 msgid "Details" msgstr "Détails" #: www/views/advancedSettings.html:55 -#: www/views/advancedSettings.html:71 msgid "Development Utilities" msgstr "Utilitaires de développement" +#: www/views/includes/backupNeededPopup.html:10 +#: www/views/onboarding/backupRequest.html:12 +msgid "Do it later" +msgstr "La faire plus tard" + #: www/views/tab-export-file.html:27 msgid "Do not include private key" msgstr "Ne pas inclure la clé privée" @@ -742,7 +752,7 @@ msgstr "Vous ne voyez pas votre langue sur Crowdin ? Contactez le propriétaire msgid "Download" msgstr "Télécharger" -#: www/views/addresses.html:23 +#: www/views/addresses.html:18 msgid "Each bitcoin wallet can generate billions of addresses from your 12-word backup. A new address is automatically generated and shown each time you receive a payment." msgstr "Chaque portefeuille bitcoin peut générer des milliards d’adresses depuis votre sauvegarde de 12 mots. Une nouvelle adresse est automatiquement générée et affichée à chaque fois que vous recevez un paiement." @@ -799,18 +809,12 @@ msgstr "Autorisez la caméra commencer." msgid "Enabled Integrations" msgstr "Intégrations activées" -#: www/views/join.html:86 -#: www/views/tab-create-personal.html:55 -#: www/views/tab-create-shared.html:85 -msgid "Encrypt with a Password" -msgstr "Chiffrer avec un mot de passe" - #: www/views/amount.html:4 msgid "Enter Amount" msgstr "Saisissez un montant" -#: src/js/services/walletService.js:852 -#: src/js/services/walletService.js:867 +#: src/js/services/walletService.js:842 +#: src/js/services/walletService.js:857 msgid "Enter Spending Password" msgstr "Saisissez le code de dépenses" @@ -818,11 +822,11 @@ msgstr "Saisissez le code de dépenses" msgid "Enter Two Factor for BitPay Card" msgstr "Saisissez le code à deux facteurs pour votre BitPay Card" -#: src/js/services/walletService.js:837 +#: src/js/services/walletService.js:824 msgid "Enter new spending password" msgstr "Saisissez un nouveau code de dépenses" -#: www/views/join.html:78 +#: www/views/join.html:76 #: www/views/tab-create-personal.html:48 #: www/views/tab-create-shared.html:78 msgid "Enter the recovery phrase (BIP39)" @@ -840,48 +844,44 @@ msgstr "Saisissez votre code de dépenses" #: src/js/controllers/activity.js:45 #: src/js/controllers/addressbook.js:50 #: src/js/controllers/addressbookAdd.js:30 -#: src/js/controllers/addresses.js:24 -#: src/js/controllers/addresses.js:32 +#: src/js/controllers/addresses.js:23 +#: src/js/controllers/addresses.js:31 +#: src/js/controllers/addresses.js:83 #: src/js/controllers/addresses.js:84 -#: src/js/controllers/addresses.js:85 -#: src/js/controllers/amazon.js:15 -#: src/js/controllers/amazon.js:25 -#: src/js/controllers/amazon.js:46 -#: src/js/controllers/amazon.js:66 -#: src/js/controllers/amount.js:265 -#: src/js/controllers/amount.js:272 -#: src/js/controllers/amount.js:280 -#: src/js/controllers/amount.js:309 -#: src/js/controllers/amount.js:322 -#: src/js/controllers/amount.js:329 -#: src/js/controllers/amount.js:338 +#: src/js/controllers/amount.js:253 +#: src/js/controllers/amount.js:260 +#: src/js/controllers/amount.js:268 +#: src/js/controllers/amount.js:298 +#: src/js/controllers/amount.js:311 +#: src/js/controllers/amount.js:318 +#: src/js/controllers/amount.js:327 #: src/js/controllers/bitpayCard.js:145 #: src/js/controllers/bitpayCard.js:68 #: src/js/controllers/bitpayCardIntro.js:27 -#: src/js/controllers/confirm.js:152 -#: src/js/controllers/confirm.js:165 -#: src/js/controllers/confirm.js:171 -#: src/js/controllers/confirm.js:449 -#: src/js/controllers/confirm.js:460 +#: src/js/controllers/confirm.js:160 +#: src/js/controllers/confirm.js:173 +#: src/js/controllers/confirm.js:179 +#: src/js/controllers/confirm.js:461 #: src/js/controllers/confirm.js:472 -#: src/js/controllers/confirm.js:621 -#: src/js/controllers/confirm.js:649 -#: src/js/controllers/confirm.js:655 -#: src/js/controllers/confirm.js:683 -#: src/js/controllers/confirm.js:689 -#: src/js/controllers/confirm.js:696 -#: src/js/controllers/confirm.js:703 -#: src/js/controllers/confirm.js:721 -#: src/js/controllers/confirm.js:740 -#: src/js/controllers/confirm.js:754 -#: src/js/controllers/confirm.js:797 +#: src/js/controllers/confirm.js:484 +#: src/js/controllers/confirm.js:630 +#: src/js/controllers/confirm.js:658 +#: src/js/controllers/confirm.js:664 +#: src/js/controllers/confirm.js:692 +#: src/js/controllers/confirm.js:698 +#: src/js/controllers/confirm.js:705 +#: src/js/controllers/confirm.js:712 +#: src/js/controllers/confirm.js:730 +#: src/js/controllers/confirm.js:749 +#: src/js/controllers/confirm.js:763 +#: src/js/controllers/confirm.js:815 #: src/js/controllers/copayers.js:54 -#: src/js/controllers/create.js:101 -#: src/js/controllers/create.js:129 -#: src/js/controllers/create.js:142 -#: src/js/controllers/create.js:149 -#: src/js/controllers/create.js:164 -#: src/js/controllers/create.js:182 +#: src/js/controllers/create.js:109 +#: src/js/controllers/create.js:137 +#: src/js/controllers/create.js:150 +#: src/js/controllers/create.js:157 +#: src/js/controllers/create.js:172 +#: src/js/controllers/create.js:190 #: src/js/controllers/export.js:110 #: src/js/controllers/export.js:138 #: src/js/controllers/export.js:144 @@ -894,47 +894,44 @@ msgstr "Saisissez votre code de dépenses" #: src/js/controllers/glidera.js:27 #: src/js/controllers/glidera.js:82 #: src/js/controllers/glideraUri.js:13 -#: src/js/controllers/import.js:114 -#: src/js/controllers/import.js:164 -#: src/js/controllers/import.js:192 -#: src/js/controllers/import.js:201 -#: src/js/controllers/import.js:216 -#: src/js/controllers/import.js:228 -#: src/js/controllers/import.js:239 -#: src/js/controllers/import.js:248 -#: src/js/controllers/import.js:261 -#: src/js/controllers/import.js:273 -#: src/js/controllers/import.js:283 -#: src/js/controllers/import.js:293 -#: src/js/controllers/import.js:317 -#: src/js/controllers/import.js:329 -#: src/js/controllers/import.js:50 -#: src/js/controllers/import.js:63 -#: src/js/controllers/import.js:84 -#: src/js/controllers/import.js:96 -#: src/js/controllers/join.js:108 -#: src/js/controllers/join.js:122 +#: src/js/controllers/import.js:115 +#: src/js/controllers/import.js:165 +#: src/js/controllers/import.js:193 +#: src/js/controllers/import.js:202 +#: src/js/controllers/import.js:217 +#: src/js/controllers/import.js:229 +#: src/js/controllers/import.js:240 +#: src/js/controllers/import.js:249 +#: src/js/controllers/import.js:262 +#: src/js/controllers/import.js:274 +#: src/js/controllers/import.js:284 +#: src/js/controllers/import.js:294 +#: src/js/controllers/import.js:318 +#: src/js/controllers/import.js:330 +#: src/js/controllers/import.js:51 +#: src/js/controllers/import.js:64 +#: src/js/controllers/import.js:85 +#: src/js/controllers/import.js:97 +#: src/js/controllers/join.js:115 #: src/js/controllers/join.js:129 -#: src/js/controllers/join.js:143 -#: src/js/controllers/join.js:161 -#: src/js/controllers/join.js:86 -#: src/js/controllers/modals/amazonCardDetails.js:10 -#: src/js/controllers/modals/amazonCardDetails.js:32 -#: src/js/controllers/modals/amazonCardDetails.js:40 +#: src/js/controllers/join.js:136 +#: src/js/controllers/join.js:150 +#: src/js/controllers/join.js:168 +#: src/js/controllers/join.js:93 #: src/js/controllers/modals/txpDetails.js:113 #: src/js/controllers/paperWallet.js:47 #: src/js/controllers/preferencesBitpayCard.js:16 #: src/js/controllers/preferencesDelete.js:22 #: src/js/controllers/preferencesFee.js:9 #: src/js/controllers/preferencesGlidera.js:60 -#: src/js/controllers/tab-home.js:154 -#: src/js/controllers/tab-receive.js:24 +#: src/js/controllers/tab-home.js:166 +#: src/js/controllers/tab-receive.js:23 #: src/js/controllers/tabsController.js:7 #: src/js/controllers/tx-details.js:18 msgid "Error" msgstr "Erreur" -#: src/js/controllers/confirm.js:353 +#: src/js/controllers/confirm.js:361 msgid "Error at confirm" msgstr "Erreur à la confirmation" @@ -958,13 +955,13 @@ msgstr "La limite quotidienne de 500$ par utilisateur a été dépassée" msgid "Experimental Features" msgstr "Fonctionnalités expérimentales" -#: src/js/controllers/confirm.js:311 +#: src/js/controllers/confirm.js:319 #: www/views/confirm.html:30 #: www/views/modals/txp-details.html:114 msgid "Expired" msgstr "Expiré" -#: www/views/modals/paypro.html:52 +#: www/views/modals/paypro.html:54 #: www/views/modals/txp-details.html:120 msgid "Expires" msgstr "Expire" @@ -982,7 +979,7 @@ msgstr "Exporter vers un fichier" msgid "Export wallet" msgstr "Exporter le portefeuille" -#: src/js/services/walletService.js:999 +#: src/js/services/walletService.js:969 #: www/views/tab-export-qrCode.html:9 msgid "Exporting via QR not supported for this wallet" msgstr "L'exportation via QR n'est pas supportée pour ce portefeuille" @@ -1008,16 +1005,13 @@ msgstr "Impossible d'exporter" msgid "Family vacation funds" msgstr "Fonds pour les vacances familiales" +#: www/views/confirm.html:79 #: www/views/includes/confirm-tx.html:19 #: www/views/modals/txp-details.html:95 -#: www/views/tx-details.html:71 +#: www/views/tx-details.html:73 msgid "Fee" msgstr "Frais" -#: www/views/confirm.html:79 -msgid "Fee: {{feeLevel}}" -msgstr "Frais : {{feeLevel}}" - #: src/js/controllers/feedback/send.js:23 msgid "Feedback could not be submitted. Please try again later." msgstr "Vos commentaires n'ont pas pu être envoyés. Veuillez réessayer plus tard." @@ -1041,8 +1035,8 @@ msgstr "La numérisation digitale a échoué" msgid "Finish" msgstr "Terminer" -#: www/views/tab-create-personal.html:95 -#: www/views/tab-create-shared.html:125 +#: www/views/tab-create-personal.html:97 +#: www/views/tab-create-shared.html:127 msgid "For audit purposes" msgstr "À des fins de vérification" @@ -1055,15 +1049,14 @@ msgid "French" msgstr "Français" #: www/views/confirm.html:60 -#: www/views/confirm.html:62 #: www/views/modals/txp-details.html:74 -#: www/views/tx-details.html:48 +#: www/views/tx-details.html:50 msgid "From" msgstr "De" #: www/views/tab-export-qrCode.html:5 msgid "From the destination device, go to Add wallet > Import wallet and scan this QR code" -msgstr "Depuis le périphérique de destination, allez sur « Ajouter portefeuille » > « Importer » et numérisez ce code QR" +msgstr "Depuis l'appareil de destination, allez sur « Ajouter un portefeuille » > « Importer » et numérisez ce code QR" #: src/js/services/bwcError.js:74 msgid "Funds are locked by pending spend proposals" @@ -1097,6 +1090,10 @@ msgstr "Obtenir les actualités et mises à jour de BitPay" msgid "Get started" msgstr "Commencer" +#: www/views/addressbook.html:20 +msgid "Get started by adding your first one." +msgstr "Commencez par ajouter votre premier contact." + #: src/js/services/onGoingProcess.js:38 msgid "Getting addresses..." msgstr "Obtention d'adresses..." @@ -1105,22 +1102,31 @@ msgstr "Obtention d'adresses..." msgid "Getting fee levels..." msgstr "Obtention des niveaux de frais..." -#: www/views/glidera.html:39 -msgid "Glidera Inc. (Glidera) is providing the service of buying or selling bitcoin to BitPay users. To enable this service, Glidera has registered with US Treasury Department’s FinCEN as a Money Service Business (#31000042625755). Users of BitPay must agree to the service agreement presented by Glidera prior to obtaining Glidera’s service of buying or selling bitcoin." -msgstr "Glidera Inc. (Glidera) fournit le service d’achat ou de vente de bitcoins aux utilisateurs de BitPay. Pour autoriser ce service, Glidera a été enregistré avec le FinCEN du département du Trésor des États-Unis comme une Money Service Business (#31000042625755). Les utilisateurs de BitPay doivent accepter le contrat de service présenté par Glidera avant d’obtenir le service d’achat ou de vente de bitcoins par Glidera." +#: src/js/controllers/onboarding/terms.js:23 +#: src/js/controllers/preferencesAbout.js:16 +#: src/js/controllers/preferencesLanguage.js:14 +#: src/js/controllers/tab-home.js:141 +#: src/js/controllers/tab-settings.js:55 +#: src/js/controllers/translators.js:11 +#: src/js/controllers/tx-details.js:128 +msgid "Go Back" +msgstr "Retour" #: src/js/controllers/bitpayCardIntro.js:35 #: src/js/controllers/onboarding/backupRequest.js:13 #: src/js/controllers/onboarding/backupRequest.js:19 -#: www/views/includes/backupLaterPopup.html:4 msgid "Go back" msgstr "Retour" -#: www/views/includes/backupWarningPopup.html:4 +#: www/views/backupWarning.html:15 #: www/views/includes/confirmBackupPopup.html:8 msgid "Got it" msgstr "J'ai compris" +#: www/views/onboarding/tour.html:18 +msgid "Got it →" +msgstr "J'ai compris →" + #: www/views/preferences.html:20 #: www/views/preferencesInformation.html:47 msgid "Hardware Wallet" @@ -1130,15 +1136,15 @@ msgstr "Portefeuille matériel" msgid "Hardware wallet" msgstr "Portefeuille matériel" -#: www/views/glidera.html:34 -msgid "Have the OAuth Code?" -msgstr "Vous avez le code OAuth ?" - #: www/views/tab-settings.html:27 msgid "Help & Support" msgstr "Aide & Support" -#: www/views/addresses.html:29 +#: src/js/controllers/tab-settings.js:53 +msgid "Help and support information is available at the BitPay Help Center website." +msgstr "Des informations d'assistance et de support sont disponibles sur le site internet du centre d'aide de BitPay." + +#: www/views/addresses.html:24 msgid "Hide" msgstr "Masquer" @@ -1146,7 +1152,7 @@ msgstr "Masquer" msgid "Hide Balance" msgstr "Masquer le solde" -#: www/views/join.html:48 +#: www/views/join.html:46 #: www/views/tab-create-personal.html:25 #: www/views/tab-create-shared.html:55 #: www/views/tab-export-file.html:23 @@ -1160,9 +1166,9 @@ msgstr "Masquer les options avancées" msgid "Home" msgstr "Accueil" -#: src/js/controllers/feedback/send.js:55 -#: src/js/controllers/feedback/send.js:59 -#: src/js/controllers/feedback/send.js:63 +#: src/js/controllers/feedback/send.js:56 +#: src/js/controllers/feedback/send.js:60 +#: src/js/controllers/feedback/send.js:64 msgid "How could we improve your experience?" msgstr "Comment pourrions-nous améliorer votre expérience ?" @@ -1183,10 +1189,10 @@ msgid "I have read, understood, and agree with the Terms of use." msgstr "J'ai lu, compris et suis d'accord avec les conditions d'utilisation." #: www/views/join.html:112 -#: www/views/tab-create-personal.html:79 -#: www/views/tab-create-shared.html:109 +#: www/views/tab-create-personal.html:81 +#: www/views/tab-create-shared.html:111 msgid "I have written it down" -msgstr "Je l'ai bien écrite" +msgstr "Je l'ai bien écrit" #: src/js/controllers/feedback/rateCard.js:34 msgid "I like the app" @@ -1197,7 +1203,6 @@ msgid "I think this app is terrible." msgstr "Je pense que l'appli est mauvaise." #: src/js/controllers/onboarding/backupRequest.js:12 -#: www/views/includes/backupLaterPopup.html:7 #: www/views/includes/screenshotWarningModal.html:9 msgid "I understand" msgstr "Je comprends" @@ -1210,14 +1215,6 @@ msgstr "Je comprends que si cette application est déplacée vers un autre appar msgid "I understand that my funds are held securely on this device, not by a company." msgstr "Je comprends que mes fonds sont en toute sécurité sur cet appareil et non détenus par une entreprise." -#: www/views/onboarding/backupRequest.html:12 -msgid "I'll backup my wallet later" -msgstr "Je sauvegarderai mon portefeuille plus tard" - -#: www/views/includes/backupNeededPopup.html:10 -msgid "I'll do it later" -msgstr "Je le ferai plus tard" - #: www/views/backup.html:29 msgid "I've written it down" msgstr "Je l'ai bien écrite" @@ -1230,10 +1227,6 @@ msgstr "Si ceci est activé, la carte des transactions récentes - une liste des msgid "If enabled, wallets will also try to spend unconfirmed funds. This option may cause transaction delays." msgstr "Si ceci est activé, les portefeuilles vont également essayer de dépenser des fonds non confirmés. Cette option peut entraîner des retards de transaction." -#: www/views/includes/backupLaterPopup.html:3 -msgid "If something happens to this device, this app is deleted, or your password forgotten, neither you nor Bitpay can recover your funds." -msgstr "Si quelque chose arrive à cet appareil, que cette appli est supprimée ou votre mot de passe oublié, ni vous ni Bitpay ne peuvent récupérer vos fonds." - #: src/js/controllers/onboarding/backupRequest.js:11 msgid "If this device is replaced or this app is deleted, neither you nor BitPay can recover your funds without a backup." msgstr "Si cet appareil est remplacé ou si cette appli est supprimée, ni vous ni BitPay ne peuvent récupérer vos fonds sans une sauvegarde." @@ -1261,7 +1254,7 @@ msgstr "Importer la sauvegarde" #: www/views/add.html:38 msgid "Import wallet" -msgstr "Importer" +msgstr "Importer un portefeuille" #: src/js/services/onGoingProcess.js:23 msgid "Importing Wallet..." @@ -1277,7 +1270,7 @@ msgstr "Afin de vérifier la sauvegarde de votre portefeuille, veuillez saisir v msgid "Incomplete" msgstr "Non terminé" -#: www/views/tab-receive.html:35 +#: www/views/tab-receive.html:30 msgid "Incomplete wallet" msgstr "Portefeuille non terminé" @@ -1286,7 +1279,7 @@ msgid "Incorrect address network" msgstr "Adresse réseau incorrecte" #. Trying to import a malformed wallet export QR code -#: src/js/controllers/import.js:50 +#: src/js/controllers/import.js:51 msgid "Incorrect code format" msgstr "Format du code incorrect" @@ -1300,13 +1293,13 @@ msgid "Insufficient funds for fee" msgstr "Fonds insuffisants pour les frais" #: www/views/modals/search.html:70 -#: www/views/walletDetails.html:236 +#: www/views/walletDetails.html:253 msgid "Invalid" msgstr "Invalide" -#: src/js/controllers/create.js:149 -#: src/js/controllers/import.js:293 -#: src/js/controllers/join.js:129 +#: src/js/controllers/create.js:157 +#: src/js/controllers/import.js:294 +#: src/js/controllers/join.js:136 msgid "Invalid account number" msgstr "Numéro de compte invalide" @@ -1318,9 +1311,9 @@ msgstr "Adresse invalide" msgid "Invalid data" msgstr "Données invalides" -#: src/js/controllers/create.js:129 -#: src/js/controllers/import.js:228 -#: src/js/controllers/join.js:108 +#: src/js/controllers/create.js:137 +#: src/js/controllers/import.js:229 +#: src/js/controllers/join.js:115 msgid "Invalid derivation path" msgstr "Chemin de dérivation invalide" @@ -1328,7 +1321,7 @@ msgstr "Chemin de dérivation invalide" msgid "Invitation to share a {{appName}} Wallet" msgstr "Invitation pour partager un portefeuille {{appName}}" -#: src/js/controllers/feedback/send.js:71 +#: src/js/controllers/feedback/send.js:72 msgid "Is there anything we could do better?" msgstr "Y a-t-il quelque chose que nous pourrions améliorer ?" @@ -1340,8 +1333,8 @@ msgstr "Est-ce correct ?" msgid "Is this email address correct?" msgstr "Cette adresse e-mail est-elle correcte ?" -#: www/views/addresses.html:29 -msgid "It's a good idea to avoid reusing addresses-this both protects your privacy and keeps your bitcoins secure against hypothetical attacks by quantum computers." +#: www/views/addresses.html:24 +msgid "It's a good idea to avoid reusing addresses - this both protects your privacy and keeps your bitcoins secure against hypothetical attacks by quantum computers." msgstr "C’est une bonne idée d'éviter la réutilisation des adresses. Cela fois protège votre anonymat et garde vos bitcoins en sécurité contre les attaques hypothétiques des ordinateurs quantiques." #: src/js/controllers/backup.js:76 @@ -1363,7 +1356,7 @@ msgstr "Rejoins mon portefeuille {{appName}}. Voici le code d'invitation : {{sec #: www/views/add.html:30 #: www/views/join.html:5 msgid "Join shared wallet" -msgstr "Rejoindre" +msgstr "Rejoindre un portefeuille partagé" #: src/js/services/onGoingProcess.js:24 msgid "Joining Wallet..." @@ -1394,6 +1387,10 @@ msgstr "Vérifions votre phrase de sauvegarde." msgid "Loading transaction info..." msgstr "Chargement des infos de transaction..." +#: www/views/modals/wallet-balance.html:80 +msgid "Locked" +msgstr "Verrouillé" + #: src/js/services/bwcError.js:86 msgid "Locktime in effect. Please wait to create a new spend proposal" msgstr "Locktime effectif. Veuillez patienter pour créer une nouvelle proposition de dépense" @@ -1406,6 +1403,10 @@ msgstr "Locktime effectif. Veuillez patienter pour supprimer cette proposition d msgid "Make a payment to" msgstr "Faire un paiement à" +#: www/views/onboarding/tour.html:33 +msgid "Makes sense →" +msgstr "C’est logique →" + #: src/js/controllers/modals/search.js:61 msgid "Matches:" msgstr "Correspondances :" @@ -1422,7 +1423,7 @@ msgstr "Ça peut aller" #: src/js/controllers/tx-details.js:100 #: www/views/modals/paypro.html:48 #: www/views/modals/txp-details.html:89 -#: www/views/tx-details.html:64 +#: www/views/tx-details.html:66 msgid "Memo" msgstr "Note" @@ -1448,7 +1449,8 @@ msgid "More Options" msgstr "Plus d'options" #: www/views/modals/search.html:67 -#: www/views/walletDetails.html:234 +#: www/views/tx-details.html:19 +#: www/views/walletDetails.html:251 msgid "Moved" msgstr "Déplacés" @@ -1484,7 +1486,7 @@ msgstr "Erreur de connexion réseau" msgid "New Proposal" msgstr "Nouvelle proposition" -#: src/js/controllers/addresses.js:85 +#: src/js/controllers/addresses.js:84 msgid "New address could not be generated. Please try again." msgstr "La nouvelle adresse n'a pas pu être générée. Veuillez réessayer." @@ -1492,7 +1494,7 @@ msgstr "La nouvelle adresse n'a pas pu être générée. Veuillez réessayer." msgid "New personal wallet" msgstr "Nouveau portefeuille personnel" -#: www/views/tab-home.html:146 +#: www/views/tab-home.html:147 msgid "Next steps" msgstr "Prochaines étapes" @@ -1500,7 +1502,7 @@ msgstr "Prochaines étapes" msgid "No" msgstr "Non" -#: www/views/tab-receive.html:12 +#: www/views/tab-receive.html:7 msgid "No Wallet" msgstr "Aucun portefeuille" @@ -1524,11 +1526,11 @@ msgstr "Aucune proposition en attente" msgid "No recent transactions" msgstr "Aucune transaction récente" -#: www/views/walletDetails.html:179 +#: www/views/walletDetails.html:196 msgid "No transactions yet" msgstr "Aucune transaction" -#: src/js/controllers/amount.js:309 +#: src/js/controllers/amount.js:298 msgid "No wallet found!" msgstr "Aucun portefeuille trouvé !" @@ -1548,7 +1550,7 @@ msgstr "Normaux" msgid "Not authorized" msgstr "Non autorisé" -#: src/js/controllers/confirm.js:171 +#: src/js/controllers/confirm.js:179 msgid "Not enough funds for fee" msgstr "Pas assez de fonds pour les frais" @@ -1588,7 +1590,7 @@ msgid "Now is a perfect time to assess your surroundings. Nearby windows? Hidden msgstr "C'est un bon moment pour observer autour de vous. Personne aux fenêtres ? Derrière vous ? Aucune caméra cachée ?" #: src/js/services/popupService.js:15 -#: src/js/services/popupService.js:57 +#: src/js/services/popupService.js:58 msgid "OK" msgstr "Ok" @@ -1604,7 +1606,7 @@ msgstr "OK" msgid "Official English Disclaimer" msgstr "Clause de non-responsabilité anglaise officielle" -#: src/js/controllers/feedback/send.js:58 +#: src/js/controllers/feedback/send.js:59 msgid "Oh no!" msgstr "Oh non !" @@ -1612,7 +1614,41 @@ msgstr "Oh non !" msgid "On this screen you can see all your wallets, accounts, and assets." msgstr "Sur cet écran vous pouvez voir tous vos portefeuilles, comptes et actifs." -#: www/views/tab-receive.html:41 +#: src/js/controllers/preferencesLanguage.js:13 +#: src/js/controllers/translators.js:10 +msgid "Open Crowdin" +msgstr "Ouvrir Crowdin" + +#: src/js/controllers/preferencesAbout.js:15 +msgid "Open GitHub" +msgstr "Ouvrir GitHub" + +#: src/js/controllers/preferencesAbout.js:13 +msgid "Open GitHub Project" +msgstr "Ouvrir le projet GitHub" + +#: src/js/controllers/tab-settings.js:54 +msgid "Open Help Center" +msgstr "Ouvrir le centre d'aide" + +#: src/js/controllers/tx-details.js:127 +msgid "Open Insight" +msgstr "Ouvrir Insight" + +#: www/views/tab-scan.html:22 +msgid "Open Settings" +msgstr "Ouvrir les paramètres" + +#: src/js/controllers/preferencesLanguage.js:11 +#: src/js/controllers/translators.js:8 +msgid "Open Translation Community" +msgstr "Ouvrir la communauté de traduction" + +#: src/js/controllers/onboarding/terms.js:22 +msgid "Open Website" +msgstr "Ouvrir le site internet" + +#: www/views/tab-receive.html:36 msgid "Open wallet" msgstr "Ouvrir le portefeuille" @@ -1620,16 +1656,22 @@ msgstr "Ouvrir le portefeuille" msgid "Order the BitPay Card" msgstr "Commander la BitPay Card" +#: www/views/join.html:100 +#: www/views/join.html:93 +#: www/views/tab-create-personal.html:64 +#: www/views/tab-create-personal.html:70 +#: www/views/tab-create-shared.html:100 +#: www/views/tab-create-shared.html:94 #: www/views/tab-import-file.html:18 #: www/views/tab-import-phrase.html:36 msgid "Password" msgstr "Mot de passe" -#: src/js/controllers/import.js:63 +#: src/js/controllers/import.js:64 msgid "Password required. Make sure to enter your password in advanced options" msgstr "Mot de passe requis. Veuillez saisir votre mot de passe dans les options avancées" -#: www/views/join.html:35 +#: www/views/join.html:33 msgid "Paste invitation here" msgstr "Collez l'invitation ici" @@ -1641,7 +1683,7 @@ msgstr "Collez le code texte de sauvegarde" msgid "Pay 0% fees to turn bitcoin into dollars." msgstr "Aucun frais pour échanger des bitcoins en dollars." -#: www/views/modals/paypro.html:21 +#: www/views/modals/paypro.html:18 msgid "Pay To" msgstr "Payer à" @@ -1682,7 +1724,9 @@ msgstr "Paiement reçu" msgid "Payment Rejected" msgstr "Paiement rejeté" +#: www/views/confirm.html:140 #: www/views/includes/walletActivity.html:11 +#: www/views/modals/txp-details.html:182 #: www/views/modals/txp-details.html:42 msgid "Payment Sent" msgstr "Paiement envoyé" @@ -1727,17 +1771,17 @@ msgstr "Veuillez écrire soigneusement cette phrase." msgid "Please connect a camera to get started." msgstr "Veuillez connecter une caméra pour commencer." -#: src/js/controllers/import.js:239 +#: src/js/controllers/import.js:240 msgid "Please enter the recovery phrase" msgstr "Veuillez saisir la phrase de récupération" -#: src/js/controllers/create.js:101 -#: src/js/controllers/join.js:86 +#: src/js/controllers/create.js:109 +#: src/js/controllers/join.js:93 msgid "Please enter the required fields" msgstr "Veuillez saisir les champs requis" -#: src/js/controllers/create.js:142 -#: src/js/controllers/join.js:122 +#: src/js/controllers/create.js:150 +#: src/js/controllers/join.js:129 msgid "Please enter the wallet recovery phrase" msgstr "Veuillez saisir la phrase de récupération du portefeuille" @@ -1749,11 +1793,11 @@ msgstr "Veuillez sélectionner chaque mot dans le bon ordre." msgid "Please upgrade Copay to perform this action" msgstr "Veuillez mettre à jour Copay pour effectuer cette action" -#: src/js/controllers/confirm.js:453 +#: src/js/controllers/confirm.js:465 msgid "Please, enter the code below" msgstr "Veuillez saisir le code ci-dessous" -#: src/js/controllers/import.js:201 +#: src/js/controllers/import.js:202 msgid "Please, select your backup file" msgstr "Veuillez sélectionner votre fichier de sauvegarde" @@ -1791,6 +1835,7 @@ msgstr "Proposition acceptée" #: src/js/controllers/modals/txpDetails.js:38 #: src/js/controllers/tx-details.js:64 +#: www/views/confirm.html:141 msgid "Proposal Created" msgstr "Proposition créée" @@ -1802,7 +1847,7 @@ msgstr "Proposition supprimée" msgid "Proposal Rejected" msgstr "Proposition rejetée" -#: www/views/walletDetails.html:164 +#: www/views/walletDetails.html:181 msgid "Proposals" msgstr "Propositions" @@ -1822,7 +1867,7 @@ msgstr "Code QR" msgid "Quick review!" msgstr "Revue rapide !" -#: src/js/controllers/create.js:70 +#: src/js/controllers/create.js:69 #: src/js/controllers/join.js:53 msgid "Random" msgstr "Aléatoire" @@ -1831,11 +1876,11 @@ msgstr "Aléatoire" msgid "Rate on the app store" msgstr "Évaluer dans la boutique" -#: www/views/addresses.html:43 +#: www/views/addresses.html:49 msgid "Read less" msgstr "En savoir moins" -#: www/views/addresses.html:42 +#: www/views/addresses.html:48 msgid "Read more" msgstr "En savoir plus" @@ -1845,7 +1890,8 @@ msgid "Receive" msgstr "Recevoir" #: www/views/modals/search.html:51 -#: www/views/walletDetails.html:220 +#: www/views/tx-details.html:18 +#: www/views/walletDetails.html:237 msgid "Received" msgstr "Reçus" @@ -1853,12 +1899,12 @@ msgstr "Reçus" msgid "Received Funds" msgstr "Fonds reçus" -#: www/views/walletDetails.html:242 +#: www/views/walletDetails.html:259 msgid "Receiving" msgstr "Réception" #: www/views/bitpayCard.html:55 -#: www/views/walletDetails.html:199 +#: www/views/walletDetails.html:216 msgid "Recent" msgstr "Récentes" @@ -1884,8 +1930,8 @@ msgstr "Destinataire(s)" msgid "Recovery phrase" msgstr "Phrase de récupération" -#: www/views/walletDetails.html:114 -#: www/views/walletDetails.html:35 +#: www/views/walletDetails.html:122 +#: www/views/walletDetails.html:36 msgid "Recreate" msgstr "Recréer" @@ -1922,7 +1968,7 @@ msgstr "Confirmez le code de dépenses" msgid "Request Fingerprint" msgstr "Demander l'empreinte digitale" -#: src/js/controllers/tab-receive.js:153 +#: www/views/addresses.html:30 msgid "Request Specific amount" msgstr "Demander un montant précis" @@ -1946,14 +1992,18 @@ msgstr "Récupération des informations d'entrée" msgid "Retry" msgstr "Rééssayer" +#: www/views/tab-scan.html:23 +msgid "Retry Camera" +msgstr "Réessayer la caméra" + #: www/views/includes/password.html:31 msgid "SET" msgstr "DÉFINIR" -#: www/views/addressbook.add.html:58 +#: www/views/addressbook.add.html:56 #: www/views/includes/note.html:9 #: www/views/preferencesAlias.html:21 -#: www/views/preferencesBwsUrl.html:18 +#: www/views/preferencesBwsUrl.html:23 #: www/views/preferencesNotifications.html:42 msgid "Save" msgstr "Valider" @@ -1967,11 +2017,11 @@ msgstr "Numériser" msgid "Scan QR Codes" msgstr "Numérisez des codes QR" -#: src/js/controllers/addresses.js:119 +#: www/views/addresses.html:38 msgid "Scan addresses for funds" msgstr "Analyser les adresses pour des fonds" -#: www/views/walletDetails.html:39 +#: www/views/walletDetails.html:40 msgid "Scan status finished with error" msgstr "Analyse terminée avec des erreurs" @@ -1983,7 +2033,6 @@ msgstr "Veuillez scanner votre empreinte digitale" msgid "Scanning Wallet funds..." msgstr "Analyse des fonds du portefeuille..." -#: www/views/includes/backupWarningPopup.html:2 #: www/views/includes/screenshotWarningModal.html:7 msgid "Screenshots are not secure" msgstr "Les captures d’écran ne sont pas sécurisées" @@ -2000,6 +2049,10 @@ msgstr "Recherchez ou saisissez une adresse bitcoin" msgid "Search transactions" msgstr "Rechercher des transactions" +#: www/views/preferencesAltCurrency.html:14 +msgid "Search your currency" +msgstr "Rechercher votre monnaie" + #: www/views/preferences.html:37 msgid "Security" msgstr "Sécurité " @@ -2036,7 +2089,7 @@ msgstr "Envoyer un avis" msgid "Send Money" msgstr "Envoyer de l'argent" -#: src/js/controllers/addresses.js:124 +#: www/views/allAddresses.html:14 msgid "Send addresses by email" msgstr "Envoyer les adresses par e-mail" @@ -2049,11 +2102,11 @@ msgstr "Envoyer les bitcoins" msgid "Send by email" msgstr "Envoyer par e-mail" -#: src/js/controllers/confirm.js:247 +#: src/js/controllers/confirm.js:255 msgid "Send from" msgstr "Envoyer à partir de" -#: src/js/controllers/amount.js:97 +#: www/views/includes/itemSelector.html:8 msgid "Send max amount" msgstr "Envoyer le montant maximal" @@ -2064,7 +2117,7 @@ msgstr "Nous envoyer un avis à la place" #: www/views/confirm.html:15 #: www/views/includes/txp.html:14 #: www/views/modals/txp-details.html:19 -#: www/views/walletDetails.html:241 +#: www/views/walletDetails.html:258 msgid "Sending" msgstr "Envoi" @@ -2084,13 +2137,14 @@ msgstr "Envoi du montant maximal" msgid "Sending transaction" msgstr "Envoi de la transaction" -#: src/js/controllers/confirm.js:505 +#: src/js/controllers/confirm.js:509 msgid "Sending {{amountStr}} from your {{name}} wallet" msgstr "Envoi de {{amountStr}} depuis votre portefeuille {{name}}" #: www/views/modals/search.html:60 #: www/views/modals/tx-status.html:9 -#: www/views/walletDetails.html:229 +#: www/views/tx-details.html:17 +#: www/views/walletDetails.html:246 msgid "Sent" msgstr "Envoyés" @@ -2124,7 +2178,7 @@ msgid "Settings" msgstr "Paramètres" #: www/views/customAmount.html:20 -#: www/views/tab-receive.html:70 +#: www/views/tab-receive.html:65 #: www/views/tab-settings.html:43 msgid "Share" msgstr "Partager" @@ -2150,7 +2204,7 @@ msgstr "Partagez cette invitation avec vos copayers" msgid "Shared Wallet" msgstr "Portefeuille partagé" -#: www/views/join.html:47 +#: www/views/join.html:45 #: www/views/tab-create-personal.html:24 #: www/views/tab-create-shared.html:54 #: www/views/tab-export-file.html:22 @@ -2178,10 +2232,10 @@ msgstr "Signature de la transaction" #: www/views/onboarding/backupRequest.html:6 msgid "Since only you control your money, you’ll need to save your backup phrase in case this app is deleted." -msgstr "Puisque vous êtes le seul à pouvoir contrôler votre argent, vous aurez à enregistrer votre phrase de sauvegarde au cas où cette appli est supprimée." +msgstr "Puisque vous seul contrôlez votre argent, vous devrez enregistrer votre phrase de sauvegarde au cas où cette appli est supprimée." -#: www/views/tab-create-personal.html:94 -#: www/views/tab-create-shared.html:124 +#: www/views/tab-create-personal.html:96 +#: www/views/tab-create-shared.html:126 msgid "Single Address Wallet" msgstr "Portefeuille d'adresse unique" @@ -2193,7 +2247,7 @@ msgstr "Ignorer" msgid "Spanish" msgstr "Espagnol" -#: src/js/controllers/create.js:73 +#: src/js/controllers/create.js:72 #: src/js/controllers/join.js:56 msgid "Specify Recovery Phrase..." msgstr "Spécifier la phrase de récupération..." @@ -2242,21 +2296,17 @@ msgstr "CETTE ACTION NE PEUT PAS ÊTRE ANNULÉE" msgid "Take control of your money,
get started with bitcoin." msgstr "Prenez le contrôle de votre argent,
commencez avec bitcoin." -#: www/views/walletDetails.html:128 -#: www/views/walletDetails.html:70 +#: www/views/walletDetails.html:145 +#: www/views/walletDetails.html:65 msgid "Tap and hold to show" msgstr "Appuyez et maintenez pour afficher" -#: www/views/walletDetails.html:109 -#: www/views/walletDetails.html:30 -#: www/views/walletDetails.html:40 +#: www/views/walletDetails.html:117 +#: www/views/walletDetails.html:31 +#: www/views/walletDetails.html:41 msgid "Tap to retry" msgstr "Tapotez pour réessayer" -#: www/views/tab-settings.html:142 -msgid "Tell a friend" -msgstr "En parler à un ami" - #: www/views/termsOfUse.html:3 msgid "Terms Of Use" msgstr "Conditions d'utilisation" @@ -2268,22 +2318,22 @@ msgstr "Conditions d'utilisation" msgid "Terms of Use" msgstr "Conditions d'utilisation" -#: www/views/tab-create-personal.html:90 +#: www/views/tab-create-personal.html:92 msgid "Testnet" msgstr "Testnet" #: src/js/controllers/feedback/send.js:27 -#: src/js/controllers/feedback/send.js:70 +#: src/js/controllers/feedback/send.js:71 #: www/views/feedback/complete.html:16 #: www/views/feedback/rateApp.html:4 msgid "Thank you!" msgstr "Merci !" -#: src/js/controllers/feedback/send.js:66 +#: src/js/controllers/feedback/send.js:67 msgid "Thanks!" msgstr "Merci !" -#: src/js/controllers/feedback/send.js:67 +#: src/js/controllers/feedback/send.js:68 msgid "That's exciting to hear. We'd love to earn that fifth star from you – how could we improve your experience?" msgstr "C'est intéressant à entendre. Nous aimerions obtenir une note de 5 étoiles de votre part – comment pourrions-nous améliorer votre expérience ?" @@ -2291,6 +2341,18 @@ msgstr "C'est intéressant à entendre. Nous aimerions obtenir une note de 5 ét msgid "The Ledger Chrome application is not installed" msgstr "L'application Ledger pour Chrome n'est pas installée" +#: www/views/modals/wallet-balance.html:55 +msgid "The amount of bitcoin immediately spendable from this wallet." +msgstr "Le montant des bitcoins immédiatement disponibles depuis ce portefeuille." + +#: www/views/modals/wallet-balance.html:93 +msgid "The amount of bitcoin stored in this wallet that is allocated as inputs to your pending transaction proposals. The amount is determined using unspent transaction outputs associated with this wallet and may be more than the actual amounts associated with your pending transaction proposals." +msgstr "Le montant des bitcoins stockés dans ce portefeuille qui est alloué en tant qu'entrées à vos propositions de transaction en attente. Le montant est déterminé en utilisant les sorties de transaction non dépensées associées à ce portefeuille et peut être plus important que les montants réels associés à vos propositions de transaction en attente." + +#: www/views/modals/wallet-balance.html:74 +msgid "The amount of bitcoin stored in this wallet with less than 1 blockchain confirmation." +msgstr "Le montant des bitcoins stockés dans ce portefeuille avec moins d'une confirmation blockchain." + #: www/views/tab-import-phrase.html:5 msgid "The derivation path" msgstr "Le chemin de dérivation" @@ -2303,15 +2365,19 @@ msgstr "Le taux de change varie avec le marché." msgid "The higher the fee, the greater the incentive a miner has to include that transaction in a block. Current fees are determined based on network load and the selected policy." msgstr "Plus les frais sont importants, plus les mineurs sont incités à inclure votre transaction dans un bloc. Les frais actuels sont déterminés en fonction de la charge du réseau et du choix sélectionné." -#: www/views/addresses.html:42 +#: www/views/addresses.html:48 msgid "The maximum number of consecutive unused addresses (20) has been reached. When one of your unused addresses receives a payment, a new address will be generated and shown in your Receive tab." msgstr "Le nombre maximal d’adresses inutilisées consécutives (20) a été atteint. Lorsqu'une de vos adresses inutilisées reçoit un paiement, une nouvelle adresse sera générée et affichée dans votre onglet Recevoir." +#: src/js/controllers/onboarding/terms.js:21 +msgid "The official English Terms of Service are available on the BitPay website." +msgstr "Les conditions d'utilisation officielles en anglais sont disponibles sur le site internet de BitPay." + #: www/views/tab-import-phrase.html:4 msgid "The password of the recovery phrase (if set)" msgstr "Le mot de passe de la phrase de récupération (si configuré)" -#: src/js/services/walletService.js:951 +#: src/js/services/walletService.js:934 msgid "The payment was created but could not be completed. Please try again from home screen" msgstr "Le paiement a été créé mais n'a pas pu être achevé. Veuillez réessayer depuis l'écran d'accueil" @@ -2319,9 +2385,9 @@ msgstr "Le paiement a été créé mais n'a pas pu être achevé. Veuillez rées msgid "The payment was removed by creator" msgstr "Le paiement a été supprimé par le créateur" -#: www/views/join.html:101 -#: www/views/tab-create-personal.html:69 -#: www/views/tab-create-shared.html:99 +#: www/views/join.html:88 +#: www/views/tab-create-personal.html:59 +#: www/views/tab-create-shared.html:89 #: www/views/tab-import-phrase.html:38 msgid "The recovery phrase could require a password to be imported" msgstr "La phrase de récupération pourrait demander un mot de passe pour être importée" @@ -2330,7 +2396,7 @@ msgstr "La phrase de récupération pourrait demander un mot de passe pour être msgid "The request could not be understood by the server" msgstr "La demande n'a pas été comprise par le serveur" -#: www/views/addresses.html:43 +#: www/views/addresses.html:49 msgid "The restore process will stop when 20 addresses are generated in a row which contain no funds. To safely generate more addresses, make a payment to one of the unused addresses which has already been generated." msgstr "Le processus de restauration s’arrête lorsque 20 adresses sont générées consécutivement sans qu'elles ne contiennent de fonds. Pour générer plus d'adresses en toute sécurité, effectuez un paiement à l’une des adresses inutilisées qui a déjà été générée." @@ -2338,6 +2404,10 @@ msgstr "Le processus de restauration s’arrête lorsque 20 adresses sont géné msgid "The spend proposal is not pending" msgstr "La proposition de dépense n'est pas en attente" +#: www/views/modals/wallet-balance.html:36 +msgid "The total amount of bitcoin stored in this wallet." +msgstr "Le montant total des bitcoins stockés dans ce portefeuille." + #: www/views/preferencesHistory.html:26 msgid "The transaction history and every new incoming transaction are cached in the app. This feature clean this up and synchronizes again from the server" msgstr "L’historique des transactions et chaque nouvelle transaction entrante sont mis en cache dans l’application. Cette fonctionnalité efface cela et synchronise à nouveau à partir du serveur" @@ -2350,14 +2420,14 @@ msgstr "L’URL du service de portefeuille" msgid "There are no wallets to make this payment" msgstr "Il n'y a pas de portefeuilles pour faire ce paiement" -#: src/js/controllers/import.js:192 -#: src/js/controllers/import.js:216 -#: src/js/controllers/import.js:283 +#: src/js/controllers/import.js:193 +#: src/js/controllers/import.js:217 +#: src/js/controllers/import.js:284 msgid "There is an error in the form" msgstr "Il y a une erreur dans la forme" -#: src/js/controllers/feedback/send.js:55 -#: src/js/controllers/feedback/send.js:59 +#: src/js/controllers/feedback/send.js:56 +#: src/js/controllers/feedback/send.js:60 msgid "There's obviously something we're doing wrong." msgstr "Il y a visiblement quelque chose que nous faisons mal." @@ -2369,10 +2439,6 @@ msgstr "Ces fonctionnalités ne sont pas tout à fait prêtes pour le grand publ msgid "These features make it easier to test complex functionality on all devices. They may be unstable." msgstr "Ces fonctionnalités facilitent les tests de fonctionnalités complexes sur tous les appareils. Elles peuvent être instables." -#: www/views/advancedSettings.html:73 -msgid "These utilities may be unstable. Proceed at your own risk." -msgstr "Ces utilitaires peuvent être instables. À utiliser à vos propres risques." - #: src/js/controllers/feedback/rateCard.js:37 msgid "This app is fantastic!" msgstr "Cette appli est fantastique !" @@ -2381,13 +2447,13 @@ msgstr "Cette appli est fantastique !" msgid "This app stores your bitcoin with cutting-edge security." msgstr "Cette appli conserve vos bitcoins avec une sécurité de pointe." -#: src/js/controllers/confirm.js:438 +#: src/js/controllers/confirm.js:450 msgid "This bitcoin payment request has expired." msgstr "Cette demande de paiement bitcoin a expiré." #: www/views/join.html:108 -#: www/views/tab-create-personal.html:75 -#: www/views/tab-create-shared.html:105 +#: www/views/tab-create-personal.html:77 +#: www/views/tab-create-shared.html:107 msgid "This password cannot be recovered. If the password is lost, there is no way you could recover your funds." msgstr "Ce mot de passe ne peut pas être récupéré. Si le mot de passe est perdu, il n’y a aucun moyen pour vous de récupérer vos fonds." @@ -2395,35 +2461,38 @@ msgstr "Ce mot de passe ne peut pas être récupéré. Si le mot de passe est pe msgid "This recovery phrase was created with a password. To recover this wallet both the recovery phrase and password are needed." msgstr "Cette phrase de récupération a été créée avec un mot de passe. Pour récupérer ce portefeuille, la phrase de récupération et le mot de passe sont requis." -#: www/views/walletDetails.html:113 -#: www/views/walletDetails.html:34 +#: www/views/walletDetails.html:121 +#: www/views/walletDetails.html:35 msgid "This wallet is not registered at the given Bitcore Wallet Service (BWS). You can recreate it from the local information." msgstr "Ce portefeuille n'est pas enregistré dans le Bitcore Wallet Service (BWS) donné. Vous pouvez le recréer depuis l'information locale." #: www/views/modals/txp-details.html:131 -#: www/views/tx-details.html:91 +#: www/views/tx-details.html:93 msgid "Timeline" msgstr "Chronologie" #: www/views/confirm.html:33 -#: www/views/confirm.html:61 #: www/views/includes/output.html:2 #: www/views/modals/txp-details.html:104 #: www/views/modals/txp-details.html:53 -#: www/views/tx-details.html:37 -#: www/views/tx-details.html:49 +#: www/views/tx-details.html:39 +#: www/views/tx-details.html:51 msgid "To" msgstr "À" #: www/views/tab-send.html:12 msgid "To get started, buy bitcoin or share your address. You can receive bitcoin from any wallet or service." -msgstr "Pour commencer, achetez des bitcoins ou partagez votre adresse. Vous pouvez recevoir des bitcoins par n'importe quel portefeuille ou service." +msgstr "Pour commencer, achetez des bitcoins ou partagez votre adresse. Vous pouvez recevoir des bitcoins de n'importe quel portefeuille ou service." #: www/views/tab-send.html:13 msgid "To get started, you'll need to create a bitcoin wallet and get some bitcoin." msgstr "Pour commencer, vous aurez besoin de créer un portefeuille bitcoin et d'obtenir quelques bitcoins." -#: www/views/walletDetails.html:171 +#: www/views/modals/wallet-balance.html:23 +msgid "Total" +msgstr "Total" + +#: www/views/walletDetails.html:188 msgid "Total Locked Balance" msgstr "Solde verrouillé total" @@ -2449,8 +2518,12 @@ msgstr "Historique des transactions" msgid "Transaction already broadcasted" msgstr "Transaction déjà diffusée" +#: www/views/confirm.html:142 +msgid "Transaction created" +msgstr "Transaction créée" + #: src/js/controllers/activity.js:45 -#: src/js/controllers/tab-home.js:154 +#: src/js/controllers/tab-home.js:166 #: src/js/controllers/tx-details.js:18 msgid "Transaction not found" msgstr "Transaction introuvable" @@ -2476,8 +2549,12 @@ msgstr "Convertissez des bitcoins en dollars et dépensez partout où Visa& msgid "Type the Recovery Phrase (usually 12 words)" msgstr "Saisissez la phrase de récupération (généralement 12 mots)" +#: src/js/controllers/backup.js:75 +msgid "Uh oh..." +msgstr "Oh là là..." + #: www/views/modals/search.html:36 -#: www/views/tx-details.html:79 +#: www/views/tx-details.html:81 msgid "Unconfirmed" msgstr "Non confirmée" @@ -2485,23 +2562,27 @@ msgstr "Non confirmée" msgid "Unit" msgstr "Unité" -#: www/views/walletDetails.html:165 +#: www/views/walletDetails.html:182 msgid "Unsent transactions" msgstr "Transactions non envoyées" -#: www/views/addresses.html:35 +#: www/views/addresses.html:41 msgid "Unused Addresses" msgstr "Adresses inutilisées" -#: www/views/addresses.html:41 +#: www/views/addresses.html:47 msgid "Unused Addresses Limit" msgstr "Limite des adresses inutilisées" +#: src/js/controllers/tab-home.js:138 +msgid "Update Available" +msgstr "Mise à jour disponible" + #: www/views/proposals.html:15 msgid "Updating pending proposals. Please stand by" msgstr "Mise à jour des propositions en attente. Veuillez patienter" -#: www/views/walletDetails.html:189 +#: www/views/walletDetails.html:206 msgid "Updating transaction history. Please stand by." msgstr "Mise à jour de l'historique des transactions. Veuillez patienter." @@ -2529,15 +2610,27 @@ msgstr "Version" msgid "View" msgstr "Voir" -#: www/views/addresses.html:66 +#: www/views/addresses.html:34 msgid "View All Addresses" msgstr "Voir toutes les adresses" -#: www/views/tx-details.html:117 +#: src/js/controllers/onboarding/terms.js:20 +msgid "View Terms of Service" +msgstr "Voir les conditions d'utilisation" + +#: src/js/controllers/tx-details.js:126 +msgid "View Transaction on Insight" +msgstr "Voir la transaction sur Insight" + +#: src/js/controllers/tab-home.js:140 +msgid "View Update" +msgstr "Voir la mise à jour" + +#: www/views/tx-details.html:119 msgid "View on blockchain" msgstr "Voir sur la blockchain" -#: www/views/walletDetails.html:153 +#: www/views/walletDetails.html:170 msgid "WARNING: Key derivation is not working on this device/wallet. Actions cannot be performed on this wallet." msgstr "ATTENTION : La dérivation de la clé ne fonctionne pas sur cet appareil / portefeuille. Impossible d’effectuer des actions sur ce portefeuille." @@ -2598,7 +2691,7 @@ msgstr "Informations du portefeuille" msgid "Wallet Invitation" msgstr "Invitation de portefeuille" -#: www/views/join.html:59 +#: www/views/join.html:57 #: www/views/tab-create-personal.html:35 #: www/views/tab-create-shared.html:65 msgid "Wallet Key" @@ -2620,7 +2713,7 @@ msgstr "Réseau du portefeuille" msgid "Wallet Operation" msgstr "Opérations de portefeuille" -#: www/views/join.html:76 +#: www/views/join.html:74 #: www/views/tab-create-personal.html:47 #: www/views/tab-create-shared.html:77 msgid "Wallet Recovery Phrase" @@ -2679,8 +2772,8 @@ msgstr "Nom du portefeuille" msgid "Wallet needs backup" msgstr "Le portefeuille a besoin d'une sauvegarde" -#: www/views/tab-receive.html:56 -#: www/views/walletDetails.html:145 +#: www/views/tab-receive.html:51 +#: www/views/walletDetails.html:162 msgid "Wallet not backed up" msgstr "Le portefeuille n'est pas sauvegardé" @@ -2688,7 +2781,7 @@ msgstr "Le portefeuille n'est pas sauvegardé" msgid "Wallet not found" msgstr "Portefeuille introuvable" -#: src/js/controllers/tab-home.js:199 +#: src/js/controllers/tab-home.js:211 msgid "Wallet not registered" msgstr "Portefeuille non enregistré" @@ -2723,7 +2816,11 @@ msgstr "Attention !" msgid "Warning: this transaction has unconfirmed inputs" msgstr "ATTENTION : Cette transaction a des entrées non confirmées" -#: src/js/controllers/feedback/send.js:63 +#: src/js/controllers/onboarding/backupRequest.js:10 +msgid "Watch out!" +msgstr "Méfiez-vous !" + +#: src/js/controllers/feedback/send.js:64 msgid "We'd love to do better." msgstr "Nous serions ravis de faire mieux." @@ -2731,11 +2828,11 @@ msgstr "Nous serions ravis de faire mieux." msgid "We'll confirm on the next screen." msgstr "Nous allons la confirmer sur l’écran suivant." -#: src/js/controllers/feedback/send.js:71 +#: src/js/controllers/feedback/send.js:72 msgid "We're always looking for ways to improve BitPay." msgstr "Nous cherchons toujours des moyens afin d'améliorer BitPay." -#: src/js/controllers/feedback/send.js:75 +#: src/js/controllers/feedback/send.js:76 msgid "We're always looking for ways to improve BitPay. How could we improve your experience?" msgstr "Nous cherchons toujours des moyens afin d'améliorer BitPay. Comment pourrions-nous améliorer votre expérience ?" @@ -2756,18 +2853,10 @@ msgstr "Lorsque ce portefeuille a été créé, il se nommait “{{walletNam msgid "Where would you like to receive email notifications about payments?" msgstr "Souhaitez-vous recevoir des notifications par e-mail à propos des paiements ?" -#: www/views/addresses.html:23 +#: www/views/addresses.html:18 msgid "Why?" msgstr "Pourquoi ?" -#: www/views/includes/backupLaterPopup.html:2 -msgid "Without a backup, you could lose money" -msgstr "Sans une sauvegarde, vous risquez de perdre de l'argent" - -#: src/js/controllers/onboarding/backupRequest.js:10 -msgid "Without a backup, you could lose money." -msgstr "Sans une sauvegarde, vous risquez de perdre de l'argent." - #: www/views/feedback/rateApp.html:10 msgid "Would you be willing to rate BitPay in the app store?" msgstr "Seriez-vous prêt à évaluer BitPay dans la boutique d'application ?" @@ -2778,9 +2867,9 @@ msgstr "Souhaitez-vous ajouter ce compte ({{email}}) à votre portefeuille ?" #: www/views/onboarding/notifications.html:4 msgid "Would you like to receive push notifications about payments?" -msgstr "Souhaitez-vous recevoir des notifications à propos des paiements ?" +msgstr "Souhaitez-vous recevoir des notifications relatives aux paiements ?" -#: src/js/controllers/import.js:248 +#: src/js/controllers/import.js:249 msgid "Wrong number of recovery words:" msgstr "Nombre incorrect de mots de récupération :" @@ -2794,17 +2883,26 @@ msgid "Yes" msgstr "Oui" #: src/js/controllers/onboarding/backupRequest.js:18 -msgid "Yes, skip backup" -msgstr "Oui, ignorer la sauvegarde" +msgid "Yes, skip" +msgstr "Oui, ignorer" #: src/js/controllers/onboarding/backupRequest.js:17 msgid "You can create a backup later from your wallet settings." msgstr "Vous pouvez créer une sauvegarde plus tard à partir des paramètres de votre portefeuille." +#: src/js/controllers/preferencesLanguage.js:12 +#: src/js/controllers/translators.js:9 +msgid "You can make contributions by signing up on our Crowdin community translation website. We’re looking forward to hearing from you!" +msgstr "Vous pouvez faire des contributions en vous inscrivant sur notre site internet de traduction communautaire Crowdin. Nous sommes impatients de vous y voir !" + #: www/views/tab-scan.html:16 msgid "You can scan bitcoin addresses, payment requests, paper wallets, and more." msgstr "Vous pouvez numériser des adresses bitcoin, des demandes de paiement, des portefeuilles de papier et plus." +#: src/js/controllers/preferencesAbout.js:14 +msgid "You can see the latest developments and contribute to this open source app by visiting our project on GitHub." +msgstr "Vous pouvez voir les derniers développements et contribuer à cette application open source en visitant notre projet sur GitHub." + #: www/views/onboarding/tour.html:14 msgid "You can spend bitcoin at millions of websites and stores worldwide." msgstr "Vous pouvez dépenser des bitcoins dans des millions de sites internet et de boutiques à travers le monde." @@ -2821,10 +2919,6 @@ msgstr "Vous pouvez l’échanger contre d'autres monnaies comme le dollar amér msgid "You control your bitcoin." msgstr "Vous contrôlez vos bitcoins." -#: www/views/addressbook.html:20 -msgid "You haven’t added any contacts to your address book yet. Get started by adding your first one." -msgstr "Vous n’avez pas encore ajouté de contact à votre répertoire. Commencez par en ajouter un." - #: www/views/preferencesNotifications.html:30 msgid "You'll receive email notifications about payments sent and received from your wallets." msgstr "Vous recevrez des notifications par e-mail concernant les paiements envoyés et reçus depuis vos portefeuilles." @@ -2837,6 +2931,10 @@ msgstr "Votre portefeuille bitcoin est sauvegardé !" msgid "Your bitcoin wallet is ready!" msgstr "Votre portefeuille bitcoin est prêt !" +#: www/views/feedback/send.html:42 +msgid "Your ideas, feedback, or comments" +msgstr "Vos idées, vos commentaires ou observations" + #: www/views/tab-create-shared.html:22 msgid "Your name" msgstr "Votre nom" @@ -2858,26 +2956,23 @@ msgstr "Votre code de dépenses" msgid "Your wallet is never saved to cloud storage or standard device backups." msgstr "Votre portefeuille n’est jamais enregistré en dehors de votre appareil ou dans des sauvegardes qui lui sont propres." +#: src/js/services/walletService.js:825 #: www/views/includes/password.html:39 -msgid "Your wallet key will be encrypted. The Spending Password cannot be recovered. Be sure to write it down" -msgstr "La clé de votre portefeuille sera chiffrée. Le code de dépenses ne peut pas être récupéré. N'oubliez pas de l'écrire" +msgid "Your wallet key will be encrypted. The Spending Password cannot be recovered. Be sure to write it down." +msgstr "La clé de votre portefeuille sera chiffrée. Le code de dépenses ne peut pas être récupéré. N'oubliez pas de l'écrire." #: www/views/includes/walletSelector.html:23 #: www/views/includes/wallets.html:13 #: www/views/tab-home.html:84 -#: www/views/walletDetails.html:127 -#: www/views/walletDetails.html:69 +#: www/views/walletDetails.html:144 +#: www/views/walletDetails.html:64 msgid "[Balance Hidden]" msgstr "[Solde masqué]" -#: www/views/tab-receive.html:48 +#: www/views/tab-receive.html:43 msgid "address not yet available" msgstr "adresse indisponible" -#: www/views/includes/backupWarningPopup.html:3 -msgid "if you take a screenshot, your backup may be viewed by others apps. You can make a safe backup with paper and a pen." -msgstr "si vous prenez une capture d’écran, votre sauvegarde peut être vue par d’autres applications. Vous pouvez faire une sauvegarde sécurisée avec du papier et un stylo." - #: www/views/includes/available-balance.html:8 msgid "locked by pending payments" msgstr "verrouillés par les paiements en attente" @@ -2886,19 +2981,27 @@ msgstr "verrouillés par les paiements en attente" msgid "me" msgstr "moi" +#: www/views/addressbook.add.html:32 +msgid "name@example.com" +msgstr "nom@exemple.com" + #: www/views/preferencesHistory.html:14 msgid "preparing..." msgstr "préparation..." +#: www/views/preferencesBwsUrl.html:19 +msgid "{{appName}} depends on Bitcore Wallet Service (BWS) for blockchain information, networking and Copayer synchronization. The default configuration points to https://bws.bitpay.com (BitPay's public BWS instance)." +msgstr "{{appName}} repose sur Bitcore Wallet Service (BWS) pour les informations de blockchain, le réseau et la synchronisation des Copayers. La configuration par défaut est orientée vers https://bws.bitpay.com (instance BWS publique de BitPay)." + #: www/views/includes/confirm-tx.html:23 msgid "{{feeRateStr}} of the transaction" msgstr "{{feeRateStr}} de la transaction" -#: src/js/controllers/confirm.js:185 +#: src/js/controllers/confirm.js:193 msgid "{{fee}} will be deducted for bitcoin networking fees." msgstr "{{fee}} seront déduits pour les frais de réseau Bitcoin." -#: www/views/walletDetails.html:192 +#: www/views/walletDetails.html:209 msgid "{{updatingTxHistoryProgress}} transactions downloaded" msgstr "{{updatingTxHistoryProgress}} transactions téléchargées" From cd331a64db8176f645f25d1cc7cb8557e8639b0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Baz=C3=A1n?= Date: Thu, 29 Dec 2016 13:37:00 -0300 Subject: [PATCH 41/45] fix import if no words enter --- src/js/controllers/import.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/js/controllers/import.js b/src/js/controllers/import.js index e40858bed..df1aaf62d 100644 --- a/src/js/controllers/import.js +++ b/src/js/controllers/import.js @@ -238,6 +238,7 @@ angular.module('copayApp.controllers').controller('importController', if (!words) { popupService.showAlert(gettextCatalog.getString('Error'), gettextCatalog.getString('Please enter the recovery phrase')); + return; } else if (words.indexOf('xprv') == 0 || words.indexOf('tprv') == 0) { return _importExtendedPrivateKey(words, opts); } else if (words.indexOf('xpub') == 0 || words.indexOf('tpuv') == 0) { From d624f4a2f7bbfcce32d96288a593772051a32938 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Baz=C3=A1n?= Date: Thu, 29 Dec 2016 14:37:31 -0300 Subject: [PATCH 42/45] fix addressbook add scanner and some refactors --- src/js/controllers/addressbookAdd.js | 2 +- src/js/controllers/join.js | 4 ++-- src/js/controllers/onboarding/welcomeController.js | 7 ------- www/views/addressbook.add.html | 2 +- www/views/join.html | 2 +- www/views/onboarding/welcome.html | 1 - 6 files changed, 5 insertions(+), 13 deletions(-) diff --git a/src/js/controllers/addressbookAdd.js b/src/js/controllers/addressbookAdd.js index 15c5ae9e8..7cd72b2f7 100644 --- a/src/js/controllers/addressbookAdd.js +++ b/src/js/controllers/addressbookAdd.js @@ -10,7 +10,7 @@ angular.module('copayApp.controllers').controller('addressbookAddController', fu 'email': '' }; - $scope.onQrCodeScanned = function(data, addressbookForm) { + $scope.onQrCodeScannedAddressBook = function(data, addressbookForm) { $timeout(function() { var form = addressbookForm; if (data && form) { diff --git a/src/js/controllers/join.js b/src/js/controllers/join.js index 6c9d4a58a..bbeebf63a 100644 --- a/src/js/controllers/join.js +++ b/src/js/controllers/join.js @@ -33,7 +33,7 @@ angular.module('copayApp.controllers').controller('joinController', } }; - this.onQrCodeScanned = function(data) { + this.onQrCodeScannedJoin = function(data) { $scope.secret = data; if ($scope.joinForm) { $scope.joinForm.secret.$setViewValue(data); @@ -44,7 +44,7 @@ angular.module('copayApp.controllers').controller('joinController', if ($stateParams.url) { var data = $stateParams.url; data = data.replace('copay:', ''); - this.onQrCodeScanned(data); + this.onQrCodeScannedJoin(data); } var updateSeedSourceSelect = function() { diff --git a/src/js/controllers/onboarding/welcomeController.js b/src/js/controllers/onboarding/welcomeController.js index 1a7e3a6a6..0c76a18b6 100644 --- a/src/js/controllers/onboarding/welcomeController.js +++ b/src/js/controllers/onboarding/welcomeController.js @@ -8,13 +8,6 @@ angular.module('copayApp.controllers').controller('welcomeController', function( startupService.ready(); }); - $scope.goImport = function(code) { - $state.go('onboarding.import', { - fromOnboarding: true, - code: code - }); - }; - $scope.createProfile = function() { $log.debug('Creating profile'); profileService.createProfile(function(err) { diff --git a/www/views/addressbook.add.html b/www/views/addressbook.add.html index 55f39d2ed..8c78f5ab2 100644 --- a/www/views/addressbook.add.html +++ b/www/views/addressbook.add.html @@ -47,7 +47,7 @@ valid-address required>
- +
diff --git a/www/views/join.html b/www/views/join.html index 7d0d2e557..da4651de2 100644 --- a/www/views/join.html +++ b/www/views/join.html @@ -36,7 +36,7 @@ wallet-secret required>
- +
diff --git a/www/views/onboarding/welcome.html b/www/views/onboarding/welcome.html index 4d335f31a..98364bdac 100644 --- a/www/views/onboarding/welcome.html +++ b/www/views/onboarding/welcome.html @@ -1,6 +1,5 @@ -

Take control of your money,
get started with bitcoin.

From ce0d9280f98b3e3c15854b70b12a4d3a13367cfa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Baz=C3=A1n?= Date: Thu, 29 Dec 2016 15:54:13 -0300 Subject: [PATCH 43/45] fix typo --- www/views/paperWallet.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/views/paperWallet.html b/www/views/paperWallet.html index 139645165..ee9393ba7 100644 --- a/www/views/paperWallet.html +++ b/www/views/paperWallet.html @@ -31,7 +31,7 @@ slide-success-show="sendStatus === 'success'" slide-success-on-confirm="onSuccessConfirm()" slide-success-hide-on-confirm="true"> - Founds transferred + Funds transferred From 9c3880f5dabbc81fb6ac9de2c00bec9c149c098c Mon Sep 17 00:00:00 2001 From: Javier Date: Fri, 30 Dec 2016 13:54:16 -0300 Subject: [PATCH 44/45] update translations - spanish --- i18n/po/es.po | 2607 +++++++++++++++++++++++++------------------------ 1 file changed, 1355 insertions(+), 1252 deletions(-) diff --git a/i18n/po/es.po b/i18n/po/es.po index 19e5be482..cfdbe97b5 100644 --- a/i18n/po/es.po +++ b/i18n/po/es.po @@ -9,2901 +9,3004 @@ msgstr "" "X-Crowdin-Language: es-ES\n" "X-Crowdin-File: template.pot\n" "Content-Type: text/plain; charset=UTF-8\n" -"Last-Translator: cmgustavo83\n" +"Last-Translator: cmgustavo83 \n" "Language-Team: Spanish\n" -"Language: es\n" -"PO-Revision-Date: 2016-12-13 08:01-0500\n" +"Language: es_ES\n" +"PO-Revision-Date: 2016-12-30 21:16-0500\n" -#: www/views/modals/paypro.html:34 +#: www/views/modals/paypro.html:34 msgid "(Trusted)" msgstr "(De confianza)" -#: www/views/includes/txp.html:27 -#: www/views/modals/search.html:27 -#: www/views/walletDetails.html:249 +#: www/views/includes/txp.html:27 +#: www/views/modals/search.html:27 +#: www/views/walletDetails.html:266 msgid "(possible double spend)" msgstr "(Posible doble gasto)" -#: www/views/modals/txp-details.html:154 +#: www/views/modals/txp-details.html:154 msgid "* A payment proposal can be deleted if 1) you are the creator, and no other copayer has signed, or 2) 24 hours have passed since the proposal was created." -msgstr "* Una propuesta de pago puede ser eliminada si 1) Ud. es el creador, y ningún otro copayer la haya firmado, o 2) hayan transcurrido 24 horas desde la creación de la propuesta." +msgstr "* Una propuesta de pago puede ser eliminada si 1) Tú eres el creador, y ningún otro copayer la haya firmado, o 2) hayan transcurrido 24 horas desde la creación de la propuesta." -#: www/views/feedback/rateApp.html:7 +#: www/views/feedback/rateApp.html:7 msgid "5-star ratings help us get BitPay into more hands, and more users means more resources can be committed to the app!" -msgstr "Una calificación de 5 estrellas nos ayuda a que BitPay sea más utilizado, y más usuarios significa más razones para seguir comprometidos con esta aplicación!" +msgstr "Una calificación de 5 estrellas nos ayuda a que BitPay sea más utilizado, mientras más usuarios más son las razones para seguir comprometidos con esta aplicación!" -#: src/js/controllers/confirm.js:454 +#: src/js/controllers/confirm.js:466 msgid "A SMS containing a confirmation code was sent to your phone." msgstr "Un SMS con el código de confirmación fue enviado a tu teléfono." -#: src/js/controllers/feedback/send.js:27 -#: www/views/feedback/complete.html:17 +#: src/js/controllers/feedback/send.js:27 +#: www/views/feedback/complete.html:17 msgid "A member of the team will review your feedback as soon as possible." -msgstr "Un miembro del equipo revisará sus comentarios tan pronto como sea posible." +msgstr "Un miembro del equipo revisará tus comentarios tan pronto como sea posible." -#: src/js/controllers/confirm.js:212 +#: src/js/controllers/confirm.js:220 msgid "A total of {{amountAboveMaxSizeStr}} were excluded. The maximum size allowed for a transaction was exceeded." msgstr "Se excluyeron un total de {{amountAboveMaxSizeStr}}. Fue excedido el tamaño máximo permitido para una transacción." -#: src/js/controllers/confirm.js:206 +#: src/js/controllers/confirm.js:214 msgid "A total of {{amountBelowFeeStr}} were excluded. These funds come from UTXOs smaller than the network fee provided." -msgstr "Se excluyeron un total de {{amountBelowFeeStr}}. Estos fondos provienen del UTXOs más pequeños que la comisión de red suministrada." +msgstr "Se excluyeron un total de {{amountBelowFeeStr}}. Estos fondos provienen del UTXOs más pequeños que la comisión de red provista." -#: src/js/controllers/preferencesAbout.js:6 -#: www/views/tab-settings.html:159 +#: src/js/controllers/preferencesAbout.js:6 +#: www/views/tab-settings.html:149 msgid "About" msgstr "Acerca de" -#: src/js/services/confirmDialog.js:8 +#: src/js/services/confirmDialog.js:8 +#: www/views/confirm.html:126 +#: www/views/confirm.html:134 +#: www/views/modals/txp-details.html:169 +#: www/views/modals/txp-details.html:176 msgid "Accept" msgstr "Aceptar" -#: src/js/controllers/modals/txpDetails.js:39 -#: src/js/controllers/tx-details.js:65 +#: src/js/controllers/modals/txpDetails.js:39 +#: src/js/controllers/tx-details.js:65 msgid "Accepted" msgstr "Aceptado" -#: www/views/preferencesInformation.html:59 +#: www/views/preferencesInformation.html:59 msgid "Account" msgstr "Cuenta" -#: www/views/join.html:71 -#: www/views/tab-create-personal.html:42 -#: www/views/tab-create-shared.html:72 -#: www/views/tab-import-hardware.html:19 +#: www/views/join.html:69 +#: www/views/tab-create-personal.html:42 +#: www/views/tab-create-shared.html:72 +#: www/views/tab-import-hardware.html:19 msgid "Account Number" msgstr "Número de cuenta" -#: www/views/bitpayCard.html:51 +#: www/views/bitpayCard.html:51 msgid "Activity" msgstr "Actividad" -#: src/js/controllers/bitpayCardIntro.js:34 +#: src/js/controllers/bitpayCardIntro.js:34 msgid "Add Account" msgstr "Agregar Cuenta" -#: src/js/controllers/bitpayCardIntro.js:30 +#: src/js/controllers/bitpayCardIntro.js:30 msgid "Add BitPay Card Account?" msgstr "¿Agregar cuenta de tarjeta BitPay?" -#: www/views/tab-home.html:155 +#: www/views/tab-home.html:156 msgid "Add BitPay Visa® Card" msgstr "Añadir tarjeta BitPay Visa®" -#: www/views/addressbook.add.html:4 -#: www/views/addressbook.html:22 +#: www/views/addressbook.add.html:4 +#: www/views/addressbook.html:22 msgid "Add Contact" msgstr "Agregar contacto" -#: www/views/bitpayCard.html:23 +#: www/views/bitpayCard.html:23 msgid "Add Funds" msgstr "Añadir fondos" -#: www/views/confirm.html:72 +#: www/views/confirm.html:72 msgid "Add Memo" -msgstr "Añadir Nota" +msgstr "Añadir nota" -#: www/views/tab-send.html:42 +#: www/views/tab-send.html:42 msgid "Add a Contact" msgstr "Agregar un contacto" -#: www/views/join.html:90 -#: www/views/join.html:99 -#: www/views/tab-create-personal.html:59 -#: www/views/tab-create-personal.html:67 -#: www/views/tab-create-shared.html:89 -#: www/views/tab-create-shared.html:97 -msgid "Add a Password" +#: www/views/join.html:84 +#: www/views/tab-create-personal.html:55 +#: www/views/tab-create-shared.html:85 +msgid "Add a password" msgstr "Agregar una contraseña" -#: www/views/join.html:92 -#: www/views/tab-create-personal.html:61 -#: www/views/tab-create-shared.html:91 +#: www/views/join.html:87 +#: www/views/tab-create-personal.html:58 +#: www/views/tab-create-shared.html:88 msgid "Add an optional password to secure the recovery phrase" msgstr "Agregar una contraseña opcional para asegurar la frase de recuperación" -#: src/js/controllers/confirm.js:266 +#: src/js/controllers/confirm.js:274 msgid "Add description" -msgstr "Añadir Descripción" +msgstr "Añadir descripción" -#: www/views/add.html:3 +#: www/views/add.html:3 msgid "Add wallet" -msgstr "Agregar monedero" +msgstr "Agregar billetera" -#: www/views/addressbook.view.html:23 -#: www/views/customAmount.html:26 -#: www/views/modals/paypro.html:25 -#: www/views/paymentUri.html:15 +#: www/views/addressbook.view.html:23 +#: www/views/customAmount.html:26 +#: www/views/modals/paypro.html:24 +#: www/views/paymentUri.html:15 msgid "Address" msgstr "Dirección" -#: www/views/addressbook.html:6 -#: www/views/tab-settings.html:20 +#: www/views/addressbook.html:6 +#: www/views/tab-settings.html:20 msgid "Address Book" msgstr "Agenda de contactos" -#: www/views/preferencesInformation.html:35 +#: www/views/preferencesInformation.html:35 msgid "Address Type" -msgstr "Tipo de Dirección" +msgstr "Tipo de dirección" -#: www/views/addresses.html:55 +#: www/views/addresses.html:61 msgid "Addresses With Balance" msgstr "Direcciones con fondos" -#: www/views/tab-settings.html:152 +#: www/views/tab-settings.html:142 msgid "Advanced" msgstr "Avanzado" -#: www/views/advancedSettings.html:3 +#: www/views/advancedSettings.html:3 msgid "Advanced Settings" msgstr "Preferencias Avanzadas" -#: www/views/bitpayCard.html:57 +#: www/views/bitpayCard.html:57 msgid "All" msgstr "Todos" -#: www/views/allAddresses.html:3 +#: www/views/allAddresses.html:3 msgid "All Addresses" msgstr "Todas las direcciones" -#: www/views/backupWarning.html:15 -msgid "All clear, let's do this" -msgstr "Todo claro, vamos a hacer esto" +#: www/views/modals/wallet-balance.html:18 +msgid "All of your bitcoin wallet balance may not be available for immediate spending." +msgstr "Todo el balance de tu billetera puede que no esté disponible para su uso inmediato." -#: www/views/tab-receive.html:38 +#: www/views/tab-receive.html:33 msgid "All signing devices must be added to this multisig wallet before bitcoin addresses can be created." -msgstr "Todos los dispositivos de los firmantes deben ser agregados a este monedero compartido antes de que se puedan crear direcciones bitcoin." +msgstr "Todos los dispositivos de los firmantes deben ser agregados a esta billetera compartido antes de que se puedan crear direcciones bitcoin." -#: www/views/onboarding/notifications.html:7 +#: www/views/tab-scan.html:21 +msgid "Allow Camera Access" +msgstr "Permitir el acceso de la cámara" + +#: www/views/onboarding/notifications.html:7 msgid "Allow notifications" msgstr "Permitir notificaciones" -#: www/views/onboarding/disclaimer.html:14 +#: www/views/onboarding/disclaimer.html:14 msgid "Almost done! Let's review." msgstr "¡Casi listo! Vamos a revisar." -#: www/views/preferencesAltCurrency.html:4 -#: www/views/tab-settings.html:81 +#: www/views/preferencesAltCurrency.html:4 +#: www/views/tab-settings.html:81 msgid "Alternative Currency" msgstr "Moneda Alternativa" -#: www/views/tab-home.html:138 -msgid "Amazon.com Gift Cards" -msgstr "Tarjetas de regalo de Amazon.com" - -#: www/views/amount.html:43 -#: www/views/customAmount.html:32 -#: www/views/includes/output.html:7 -#: www/views/paymentUri.html:16 +#: www/views/amount.html:43 +#: www/views/customAmount.html:32 +#: www/views/includes/output.html:7 +#: www/views/paymentUri.html:16 msgid "Amount" msgstr "Importe" -#: src/js/services/bwcError.js:110 +#: src/js/services/bwcError.js:110 msgid "Amount below minimum allowed" msgstr "Cantidad por debajo del mínimo permitido" -#: www/views/tab-home.html:14 +#: src/js/controllers/confirm.js:389 +msgid "Amount too big" +msgstr "Monto demasiado grande" + +#: www/views/tab-home.html:14 msgid "An update to this app is available" -msgstr "Una actualización de esta aplicación está disponible" +msgstr "Actualización disponible" -#: www/views/backupWarning.html:14 +#: src/js/controllers/tab-home.js:139 +msgid "An update to this app is available. For your security, please update to the latest version." +msgstr "Actualización disponible. Por seguridad, actualiza a la versión más reciente." + +#: www/views/backupWarning.html:14 msgid "Anyone with your backup phrase can access or spend your bitcoin." -msgstr "Cualquier con tu copia de seguridad puede acceder o gastar tus bitcoins." +msgstr "Cualquier persona con tu copia de seguridad puede gastar tus bitcoins." -#: www/views/backupWarning.html:10 +#: www/views/backupWarning.html:10 msgid "Are you being watched?" msgstr "¿Estás siendo observado?" -#: src/js/controllers/copayers.js:43 +#: src/js/controllers/copayers.js:43 msgid "Are you sure you want to cancel and delete this wallet?" -msgstr "¿Está seguro que desea cancelar y borrar este monedero?" +msgstr "¿Estás seguro de cancelar y borrar esta billetera?" -#: src/js/controllers/preferencesDelete.js:11 +#: src/js/controllers/preferencesDelete.js:11 msgid "Are you sure you want to delete this wallet?" -msgstr "¿Estas seguro de borrar este monedero?" +msgstr "¿Estás seguro de borrar esta billetera?" -#: src/js/controllers/modals/txpDetails.js:127 +#: src/js/controllers/modals/txpDetails.js:127 msgid "Are you sure you want to reject this transaction?" -msgstr "¿Está seguro de que desea rechazar esta transacción?" +msgstr "¿Estás seguro de rechazar esta transacción?" -#: src/js/controllers/modals/txpDetails.js:144 +#: src/js/controllers/modals/txpDetails.js:144 msgid "Are you sure you want to remove this transaction?" -msgstr "¿Está seguro que desea eliminar esta transacción?" +msgstr "¿Estás seguro de eliminar esta transacción?" -#: src/js/controllers/onboarding/backupRequest.js:16 -msgid "Are you sure you want to skip the backup?" -msgstr "¿Está seguro que desea omitir la copia de seguridad?" +#: src/js/controllers/onboarding/backupRequest.js:16 +msgid "Are you sure you want to skip it?" +msgstr "¿Estás seguro de omitirla?" -#: src/js/controllers/preferencesBitpayCard.js:7 +#: src/js/controllers/preferencesBitpayCard.js:7 msgid "Are you sure you would like to remove your BitPay Card account from this device?" -msgstr "¿Realmente desea eliminar su cuenta de tarjeta de BitPay de este dispositivo?" +msgstr "¿Estás seguro de eliminar la cuenta de tu tarjeta BitPay de éste dispositivo?" -#: www/views/includes/walletInfo.html:3 +#: www/views/includes/walletInfo.html:3 msgid "Auditable" msgstr "Auditables" -#: www/views/walletDetails.html:121 -#: www/views/walletDetails.html:60 +#: www/views/modals/wallet-balance.html:42 msgid "Available" msgstr "Disponible" -#: www/views/includes/available-balance.html:3 +#: www/views/includes/available-balance.html:3 msgid "Available Balance" msgstr "Balance disponible" -#: www/views/preferencesFee.html:15 +#: www/views/preferencesFee.html:15 msgid "Average confirmation time: {{fee.nbBlocks * 10}} minutes" msgstr "Promedio de tiempo de confirmación: {{fee.nbBlocks * 10}} minutos" -#: www/views/join.html:118 -#: www/views/tab-create-personal.html:85 -#: www/views/tab-create-shared.html:115 -#: www/views/tab-import-phrase.html:46 +#: www/views/join.html:118 +#: www/views/tab-create-personal.html:87 +#: www/views/tab-create-shared.html:117 +#: www/views/tab-import-phrase.html:46 msgid "BIP32 path for address derivation" msgstr "BIP32 para el camino de derivación de direcciones" -#: www/views/preferences.html:41 +#: src/js/controllers/walletDetails.js:63 +msgid "BWS Error" +msgstr "Error de BWS" + +#: www/views/preferences.html:41 msgid "Backup" msgstr "Copia de seguridad" -#: www/views/includes/backupNeededPopup.html:7 +#: www/views/includes/backupNeededPopup.html:7 msgid "Backup Needed" -msgstr "Se requiere hacer copia de seguridad" +msgstr "Se necesita copia de seguridad" -#: www/views/includes/backupNeededPopup.html:9 +#: www/views/includes/backupNeededPopup.html:9 msgid "Backup now" -msgstr "Realizar copia de seguridad ahora" +msgstr "Realizar copia de seguridad" -#: www/views/onboarding/backupRequest.html:11 -#: www/views/tab-export-file.html:87 +#: www/views/onboarding/backupRequest.html:11 +#: www/views/tab-export-file.html:87 msgid "Backup wallet" -msgstr "Copia de seguridad del monedero" +msgstr "Respaldar" -#: src/js/controllers/bitpayCard.js:140 +#: src/js/controllers/bitpayCard.js:140 msgid "Bad param" msgstr "Parametro incorrecto" -#: src/js/services/profileService.js:458 +#: src/js/services/profileService.js:458 msgid "Bad wallet invitation" -msgstr "Invitación incorrecta al monedero" +msgstr "Invitación incorrecta a la billetera" -#: www/views/preferencesInformation.html:89 +#: www/views/preferencesInformation.html:89 msgid "Balance By Address" msgstr "Balance por Dirección" -#: www/views/includes/confirmBackupPopup.html:7 +#: www/views/includes/confirmBackupPopup.html:7 msgid "Be sure to store your recovery phrase in a secure place. If this app is deleted, your money cannot be recovered without it." -msgstr "Asegúrese de guardar su frase de recuperación en un lugar seguro. Si se elimina esta aplicación, no se puede recuperar su dinero sin ella." +msgstr "Asegúrate de guardar la frase de recuperación en un lugar seguro. Si se elimina esta aplicación, no se podrá recuperar el dinero." -#: www/views/addressbook.add.html:38 +#: src/js/controllers/tab-settings.js:52 +msgid "BitPay Help Center" +msgstr "Centro de Ayuda de BitPay" + +#: www/views/addressbook.add.html:38 msgid "Bitcoin Address" msgstr "Dirección Bitcoin" -#: www/views/tab-settings.html:13 +#: www/views/tab-settings.html:13 msgid "Bitcoin Exchanges" msgstr "Bitcoin Exchanges" -#: www/views/preferencesFee.html:4 -#: www/views/tab-settings.html:92 +#: www/views/preferencesFee.html:4 +#: www/views/tab-settings.html:92 msgid "Bitcoin Network Fee Policy" msgstr "Política de Comisión de la Red Bitcoin" -#: www/views/paymentUri.html:10 +#: www/views/paymentUri.html:10 msgid "Bitcoin URI is NOT valid!" msgstr "¡Bitcoin URI no es válida!" -#: www/views/tab-settings.html:70 +#: www/views/tab-settings.html:70 msgid "Bitcoin Unit" msgstr "Unidad de Bitcoin" -#: www/views/onboarding/tour.html:26 +#: www/views/onboarding/tour.html:26 msgid "Bitcoin is a currency." msgstr "Bitcoin es una moneda." -#: www/views/onboarding/disclaimer.html:15 +#: www/views/onboarding/disclaimer.html:15 msgid "Bitcoin is different – it cannot be safely held with a bank or web service." msgstr "Bitcoin es diferente – no se puede resguardar con ningún servicio web o banco." -#: www/views/onboarding/tour.html:13 +#: www/views/onboarding/tour.html:13 msgid "Bitcoin is secure,
digital money." msgstr "Bitcoin es seguro,
dinero digital." -#: www/views/preferencesFee.html:11 +#: www/views/preferencesFee.html:11 msgid "Bitcoin transactions include a fee collected by miners on the network." -msgstr "Las transacciones Bitcoin incluyen una comisión de red recogida por los mineros en la red." +msgstr "Las transacciones de bitcoins incluyen una comisión recogida por los mineros de la red." -#: www/views/modals/txp-details.html:36 +#: www/views/modals/txp-details.html:36 msgid "Broadcast Payment" msgstr "Enviar Pago" -#: src/js/controllers/modals/txpDetails.js:41 -#: src/js/controllers/tx-details.js:67 +#: src/js/controllers/modals/txpDetails.js:41 +#: src/js/controllers/tx-details.js:67 msgid "Broadcasted" msgstr "Enviado" -#: src/js/services/onGoingProcess.js:10 +#: src/js/services/onGoingProcess.js:10 msgid "Broadcasting transaction" msgstr "Finalizando transacción" -#: www/views/unsupported.html:6 +#: www/views/unsupported.html:6 msgid "Browser unsupported" msgstr "Navegador no soportado" -#: www/views/tab-home.html:118 +#: www/views/tab-home.html:119 msgid "Buy & Sell Bitcoin" msgstr "Comprar & Vender Bitcoin" -#: www/views/tab-send.html:15 +#: www/views/tab-send.html:15 msgid "Buy Bitcoin" msgstr "Comprar Bitcoin" -#: www/views/tab-home.html:169 +#: www/views/tab-home.html:170 msgid "Buy an Amazon Gift Card" -msgstr "Comprar una tarjeta de regalo de Amazon" +msgstr "Comprar Amazon Gift Card" -#: www/views/buyandsell.html:5 +#: www/views/buyandsell.html:5 msgid "Buy and sell" msgstr "Compra y venta" -#: www/views/tab-home.html:162 +#: www/views/tab-home.html:163 msgid "Buy or Sell Bitcoin" msgstr "Comprar y vender Bitcoin" -#: src/js/services/onGoingProcess.js:41 +#: src/js/services/onGoingProcess.js:41 msgid "Buying Bitcoin..." msgstr "Comprando Bitcoins..." -#: src/js/services/onGoingProcess.js:11 +#: src/js/services/onGoingProcess.js:11 msgid "Calculating fee" msgstr "Calculando comisión" -#: src/js/controllers/confirm.js:510 -#: src/js/services/confirmDialog.js:9 -#: src/js/services/popupService.js:58 -#: www/views/addressbook.add.html:10 -#: www/views/feedback/send.html:5 -#: www/views/includes/confirm-tx.html:30 -#: www/views/includes/note.html:6 -#: www/views/includes/password.html:22 -#: www/views/modals/confirmation.html:13 +#: src/js/controllers/confirm.js:514 +#: src/js/services/confirmDialog.js:9 +#: src/js/services/popupService.js:59 +#: www/views/addressbook.add.html:10 +#: www/views/feedback/send.html:5 +#: www/views/includes/confirm-tx.html:30 +#: www/views/includes/note.html:6 +#: www/views/includes/password.html:22 +#: www/views/modals/confirmation.html:13 msgid "Cancel" msgstr "Cancelar" -#: src/js/controllers/onboarding/tour.js:55 +#: src/js/controllers/onboarding/tour.js:55 msgid "Cannot Create Wallet" -msgstr "No se pudo crear el monedero" +msgstr "No se pudo crear la billetera" -#: src/js/services/profileService.js:454 +#: src/js/services/profileService.js:454 msgid "Cannot join the same wallet more that once" -msgstr "No puede unirse al mismo monedero más de una vez" +msgstr "No puede unirse a la misma billetera más de una vez" -#: src/js/controllers/amazon.js:25 -msgid "Card not found" -msgstr "Tarjeta no encontrada" - -#: www/views/preferencesBitpayCard.html:10 -#: www/views/tab-home.html:99 +#: www/views/preferencesBitpayCard.html:10 +#: www/views/tab-home.html:100 msgid "Cards" msgstr "Tarjetas" -#: www/views/modals/paypro.html:29 +#: www/views/modals/paypro.html:30 msgid "Certified by" msgstr "Certificado por" -#: www/views/tab-import-file.html:4 +#: www/views/tab-import-file.html:4 msgid "Choose a backup file from your computer" -msgstr "Seleccione el archivo de copia de seguridad de su computadora" +msgstr "Selecciona el archivo de copia de seguridad de tu computadora" -#: www/views/modals/wallets.html:9 +#: www/views/modals/wallets.html:9 msgid "Choose your destination wallet" -msgstr "Elegir monedero destino" +msgstr "Elegir billetera destino" -#: www/views/modals/wallets.html:10 +#: www/views/modals/wallets.html:10 msgid "Choose your source wallet" -msgstr "Elegir monedero de origen" +msgstr "Elegir billetera de origen" -#: www/views/backup.html:54 +#: www/views/backup.html:54 msgid "Clear" -msgstr "Resetear" +msgstr "Anular" -#: www/views/preferencesHistory.html:23 +#: www/views/preferencesHistory.html:23 msgid "Clear cache" msgstr "Limpiar cache" -#: www/views/modals/paypro.html:4 -#: www/views/modals/wallets.html:5 +#: www/views/modals/paypro.html:4 +#: www/views/modals/wallet-balance.html:3 +#: www/views/modals/wallets.html:5 msgid "Close" msgstr "Cerrar" -#: www/views/preferences.html:26 +#: www/views/preferences.html:26 msgid "Color" msgstr "Color" -#: www/views/preferencesAbout.html:21 +#: www/views/preferencesAbout.html:21 msgid "Commit hash" msgstr "Commit hash" -#: src/js/controllers/confirm.js:509 -#: src/js/controllers/copayers.js:42 -#: src/js/services/confirmDialog.js:10 -#: www/views/backup.html:53 -#: www/views/backup.html:72 -#: www/views/confirm.html:4 -#: www/views/includes/confirm-tx.html:35 +#: src/js/controllers/confirm.js:513 +#: src/js/controllers/copayers.js:42 +#: src/js/services/confirmDialog.js:10 +#: www/views/backup.html:53 +#: www/views/backup.html:72 +#: www/views/confirm.html:4 +#: www/views/includes/confirm-tx.html:35 msgid "Confirm" msgstr "Confirmar" -#: www/views/modals/terms.html:26 -#: www/views/onboarding/disclaimer.html:45 +#: www/views/modals/terms.html:26 +#: www/views/onboarding/disclaimer.html:45 msgid "Confirm & Finish" -msgstr "Confirmar & Terminar" +msgstr "Confirmar y terminar" -#: src/js/services/walletService.js:839 +#: src/js/services/walletService.js:828 +#: src/js/services/walletService.js:829 msgid "Confirm you new spending password" msgstr "Confirme su contraseña para enviar" -#: www/views/tx-details.html:77 +#: www/views/tx-details.html:79 msgid "Confirmations" msgstr "Confirmaciones" -#: www/views/walletDetails.html:122 -#: www/views/walletDetails.html:61 +#: www/views/modals/wallet-balance.html:61 msgid "Confirming" msgstr "Confirmando" -#: www/views/bitpayCardIntro.html:37 +#: www/views/bitpayCardIntro.html:37 msgid "Connect my BitPay Card" msgstr "Conecte mi tarjeta de BitPay" -#: src/js/services/onGoingProcess.js:12 +#: src/js/services/onGoingProcess.js:12 msgid "Connecting to Coinbase..." msgstr "Conectando a Coinbase..." -#: src/js/services/onGoingProcess.js:13 +#: src/js/services/onGoingProcess.js:13 msgid "Connecting to Glidera..." msgstr "Conectando a Glidera..." -#: www/views/glideraUri.html:16 -msgid "Connecting..." -msgstr "Conectando..." - -#: src/js/services/bwcError.js:53 +#: src/js/services/bwcError.js:53 msgid "Connection reset by peer" msgstr "Conexión re establecida" -#: www/views/tab-send.html:32 +#: www/views/tab-send.html:32 msgid "Contacts" msgstr "Contactos" -#: www/views/onboarding/notifications.html:9 +#: www/views/onboarding/notifications.html:9 msgid "Continue" msgstr "Continuar" -#: www/views/preferencesLanguage.html:26 -#: www/views/translators.html:33 +#: www/views/preferencesLanguage.html:26 +#: www/views/translators.html:33 msgid "Contribute Translations" -msgstr "Contribuir con las traducciones" +msgstr "Contribuir" -#: src/js/services/bwcError.js:62 +#: src/js/services/bwcError.js:62 msgid "Copayer already in this wallet" -msgstr "Ya se encuentra en este monedero" +msgstr "Ya se encuentra en esta billetera" -#: src/js/services/bwcError.js:77 +#: src/js/services/bwcError.js:77 msgid "Copayer already voted on this spend proposal" -msgstr "Ya ha votado en esta propuesta de gasto" +msgstr "Ya votaste en esta propuesta de gasto" -#: src/js/services/bwcError.js:107 +#: src/js/services/bwcError.js:107 msgid "Copayer data mismatch" msgstr "Discrepancia en los datos del Copayer" -#: www/views/includes/walletActivity.html:2 +#: www/views/includes/walletActivity.html:2 msgid "Copayer joined" msgstr "Copayer unido" -#: www/views/preferencesInformation.html:81 +#: www/views/preferencesInformation.html:81 msgid "Copayer {{$index}}" msgstr "Copayer {{$index}}" -#: src/js/controllers/copayers.js:64 -#: src/js/controllers/export.js:177 -#: www/views/includes/copyToClipboard.html:4 +#: src/js/controllers/copayers.js:64 +#: src/js/controllers/export.js:177 +#: www/views/includes/copyToClipboard.html:4 msgid "Copied to clipboard" msgstr "Copiado al portapapeles" -#: www/views/tab-export-file.html:92 +#: www/views/tab-export-file.html:92 msgid "Copy this text as it is to a safe place (notepad or email)" -msgstr "Copiar el texto como esta en un lugar seguro (bloc de notas o correo electrónico)" +msgstr "Copiar el texto como está en un lugar seguro (bloc de notas o correo electrónico)" -#: www/views/preferencesLogs.html:11 -#: www/views/tab-export-file.html:76 +#: www/views/preferencesLogs.html:11 +#: www/views/tab-export-file.html:76 msgid "Copy to clipboard" msgstr "Copiar al portapapeles" -#: www/views/tab-import-phrase.html:2 +#: www/views/tab-import-phrase.html:2 msgid "Could not access the wallet at the server. Please check:" -msgstr "No se pudo acceder al monedero del servidor. Por favor verificar:" +msgstr "No se pudo acceder a la billetera desde el servidor. Por favor verificar:" -#: src/js/services/profileService.js:524 +#: src/js/services/profileService.js:524 msgid "Could not access wallet" -msgstr "No se pudo acceder al monedero" +msgstr "No se pudo acceder a la billetera" -#: src/js/controllers/modals/txpDetails.js:172 +#: src/js/controllers/confirm.js:383 +msgid "Could not add message to imported wallet without shared encrypting key" +msgstr "No se puede agregar mensajes a una billetera importada sin la clave cifrada compartida" + +#: src/js/controllers/modals/txpDetails.js:172 msgid "Could not broadcast payment" msgstr "No se pudo enviar el pago" -#: src/js/services/bwcError.js:41 +#: src/js/services/bwcError.js:41 msgid "Could not build transaction" msgstr "No se pudo construir la transacción" -#: src/js/services/walletService.js:755 +#: src/js/services/walletService.js:741 msgid "Could not create address" msgstr "No se pudo crear la dirección" -#: src/js/services/profileService.js:371 +#: src/js/services/profileService.js:371 msgid "Could not create using the specified extended private key" -msgstr "No se pudo crear el monedero usando la clave privada ingresada" +msgstr "No se pudo crear la billetera usando la clave privada ingresada" -#: src/js/services/profileService.js:381 +#: src/js/services/profileService.js:381 msgid "Could not create using the specified extended public key" msgstr "No se pudo crear con la clave pública extendida especificada" -#: src/js/services/profileService.js:364 +#: src/js/services/profileService.js:364 msgid "Could not create: Invalid wallet recovery phrase" msgstr "No se pudo crear: frase de recuperación inválida" -#: src/js/controllers/import.js:79 +#: src/js/controllers/import.js:80 msgid "Could not decrypt file, check your password" msgstr "No se pudo descifrar el archivo, verifique su contraseña" -#: src/js/controllers/modals/txpDetails.js:154 +#: src/js/controllers/modals/txpDetails.js:154 msgid "Could not delete payment proposal" msgstr "No se pudo eliminar la propuesta de pago" -#: src/js/services/feeService.js:51 +#: src/js/services/feeService.js:51 msgid "Could not get dynamic fee" msgstr "No se pudo obtener comisión dinámica" -#: src/js/services/feeService.js:31 +#: src/js/services/feeService.js:31 msgid "Could not get dynamic fee for level: {{feeLevel}}" msgstr "No se pudo obtener comisión dinámica: {{feeLevel}}" -#: src/js/controllers/confirm.js:655 +#: src/js/controllers/confirm.js:664 msgid "Could not get the destination bitcoin address" msgstr "No se pudo obtener la dirección bitcoin destino" -#: src/js/controllers/bitpayCard.js:68 -#: src/js/controllers/glidera.js:100 +#: src/js/controllers/bitpayCard.js:68 +#: src/js/controllers/glidera.js:100 msgid "Could not get transactions" msgstr "No se pudo obtener las transacciones" -#: src/js/services/profileService.js:629 -#: src/js/services/profileService.js:660 -#: src/js/services/profileService.js:683 +#: src/js/services/profileService.js:629 +#: src/js/services/profileService.js:660 +#: src/js/services/profileService.js:683 msgid "Could not import" msgstr "No se pudo importar" -#: src/js/services/profileService.js:598 +#: src/js/services/profileService.js:598 msgid "Could not import. Check input file and spending password" -msgstr "No se pudo importar. Verifique el archivo y la contraseña para enviar" +msgstr "No se pudo importar. Verifique el archivo y la contraseña para pagos" -#: src/js/services/profileService.js:467 +#: src/js/services/profileService.js:467 msgid "Could not join wallet" -msgstr "No se pudo unir al monedero" +msgstr "No se pudo unir a la billetera" -#: src/js/controllers/modals/txpDetails.js:134 +#: src/js/controllers/modals/txpDetails.js:134 msgid "Could not reject payment" msgstr "No se pudo rechazar el pago" -#: src/js/controllers/preferencesBitpayCard.js:16 +#: src/js/controllers/preferencesBitpayCard.js:16 msgid "Could not remove card" msgstr "No se pudo quitar tarjeta" -#: src/js/controllers/confirm.js:449 +#: src/js/controllers/confirm.js:461 msgid "Could not send confirmation code to your phone" msgstr "No se pudo enviar código de confirmación al teléfono" -#: src/js/controllers/modals/txpDetails.js:120 +#: src/js/controllers/modals/txpDetails.js:120 msgid "Could not send payment" msgstr "No se pudo enviar el pago" -#: src/js/controllers/tab-home.js:200 +#: src/js/controllers/tab-home.js:212 msgid "Could not update" msgstr "No se pudo actualizar" -#: src/js/services/walletService.js:147 -msgid "Could not update Wallet" -msgstr "No se pudo actualizar el monedero" - -#: www/views/tab-create-personal.html:3 +#: www/views/tab-create-personal.html:3 msgid "Create Personal Wallet" -msgstr "Crear monedero Personal" +msgstr "Crear billetera Personal" -#: www/views/tab-create-shared.html:3 +#: www/views/tab-create-shared.html:3 msgid "Create Shared Wallet" -msgstr "Crear monedero compartido" +msgstr "Crear billetera compartida" -#: www/views/tab-home.html:66 -msgid "Create a bitcoin wallet" -msgstr "Crear monedero bitcoin" - -#: www/views/tab-send.html:16 +#: www/views/onboarding/tour.html:46 +#: www/views/tab-home.html:66 +#: www/views/tab-send.html:16 msgid "Create bitcoin wallet" -msgstr "Crear monedero bitcoin" +msgstr "Crear billetera" -#: www/views/tab-create-personal.html:103 +#: www/views/tab-create-personal.html:105 msgid "Create new wallet" -msgstr "Crear un nuevo monedero" +msgstr "Crear billetera nueva" -#: www/views/add.html:22 +#: www/views/add.html:22 msgid "Create shared wallet" -msgstr "Crear monedero compartido" +msgstr "Crear billetera compartida" -#: www/views/tab-create-shared.html:133 +#: www/views/tab-create-shared.html:135 msgid "Create {{formData.requiredCopayers}}-of-{{formData.totalCopayers}} wallet" -msgstr "Crear monedero {{formData.requiredCopayers}}-de-{{formData.totalCopayers}}" +msgstr "Crear billetera {{formData.requiredCopayers}}-de-{{formData.totalCopayers}}" -#: www/views/modals/txp-details.html:83 -#: www/views/tx-details.html:58 +#: www/views/modals/txp-details.html:83 +#: www/views/tx-details.html:60 msgid "Created by" msgstr "Creado por" -#: src/js/services/onGoingProcess.js:17 +#: src/js/services/onGoingProcess.js:17 msgid "Creating Wallet..." -msgstr "Creando monedero..." +msgstr "Creando billetera..." -#: src/js/services/onGoingProcess.js:16 +#: src/js/services/onGoingProcess.js:16 msgid "Creating transaction" msgstr "Creando transacción" -#: www/views/preferencesFee.html:17 +#: www/views/preferencesFee.html:17 msgid "Current fee rate for this policy: {{fee.feePerKBUnit}}/kiB" msgstr "Comisión actual para esta política: {{fee.feePerKBUnit}}/kiB" -#: www/views/customAmount.html:4 +#: www/views/customAmount.html:4 msgid "Custom Amount" msgstr "Importe Específico" -#: www/views/preferencesDeleteWallet.html:21 +#: www/views/preferencesDeleteWallet.html:21 msgid "Delete" msgstr "Eliminar" -#: www/views/modals/txp-details.html:159 +#: www/views/modals/txp-details.html:159 msgid "Delete Payment Proposal" msgstr "Eliminar Propuesta de Pago" -#: www/views/preferencesAdvanced.html:28 -#: www/views/preferencesDeleteWallet.html:3 +#: www/views/preferencesAdvanced.html:28 +#: www/views/preferencesDeleteWallet.html:3 msgid "Delete Wallet" -msgstr "Eliminar Monedero" +msgstr "Eliminar billetera" -#: www/views/copayers.html:59 +#: www/views/copayers.html:59 msgid "Delete it and create a new one" msgstr "Borrar y crear uno nuevo" -#: src/js/services/onGoingProcess.js:18 +#: src/js/services/onGoingProcess.js:18 msgid "Deleting Wallet..." -msgstr "Eliminando Monedero..." +msgstr "Eliminando billetera..." -#: src/js/services/onGoingProcess.js:27 +#: src/js/services/onGoingProcess.js:27 msgid "Deleting payment proposal" msgstr "Eliminando la propuesta de pago" -#: www/views/join.html:116 -#: www/views/tab-create-personal.html:83 -#: www/views/tab-create-shared.html:113 -#: www/views/tab-import-phrase.html:44 +#: www/views/join.html:116 +#: www/views/tab-create-personal.html:85 +#: www/views/tab-create-shared.html:115 +#: www/views/tab-import-phrase.html:44 msgid "Derivation Path" msgstr "Camino de derivación" -#: www/views/preferencesInformation.html:41 +#: www/views/preferencesInformation.html:41 msgid "Derivation Strategy" msgstr "Estrategia de derivación" -#: www/views/modals/coinbase-tx-details.html:9 -#: www/views/modals/paypro.html:17 +#: www/views/modals/coinbase-tx-details.html:9 msgid "Details" msgstr "Detalles" -#: www/views/advancedSettings.html:55 -#: www/views/advancedSettings.html:71 +#: www/views/advancedSettings.html:55 msgid "Development Utilities" msgstr "Utilidades de desarrollo" -#: www/views/tab-export-file.html:27 +#: www/views/includes/backupNeededPopup.html:10 +#: www/views/onboarding/backupRequest.html:12 +msgid "Do it later" +msgstr "Luego" + +#: www/views/tab-export-file.html:27 msgid "Do not include private key" msgstr "No incluir la clave privada" -#: www/views/preferencesLanguage.html:21 -#: www/views/translators.html:28 +#: www/views/preferencesLanguage.html:21 +#: www/views/translators.html:28 msgid "Don't see your language on Crowdin? Contact the Owner on Crowdin! We'd love to support your language." -msgstr "¿No ve su idioma en Crowdin? Contáctese con el encargado del proyecto! Nos encantaría soportar su idioma." +msgstr "¿No ves tu idioma en Crowdin? Contacta con el encargado del proyecto! Nos encantaría soportar tu idioma." -#: www/views/tab-export-file.html:57 +#: www/views/tab-export-file.html:57 msgid "Download" msgstr "Descargar" -#: www/views/addresses.html:23 +#: www/views/addresses.html:18 msgid "Each bitcoin wallet can generate billions of addresses from your 12-word backup. A new address is automatically generated and shown each time you receive a payment." -msgstr "Cada monedero bitcoin puede generar billones de direcciones desde sus 12 palabras. Una nueva dirección es generada y mostrada automáticamente cada vez que recibe un pago." +msgstr "Cada billetera puede generar billones de direcciones desde sus 12 palabras. Se genera una nueva dirección automáticamente cada vez que se recibe un pago." -#: src/js/services/feeService.js:10 +#: src/js/services/feeService.js:10 msgid "Economy" msgstr "Económico" -#: www/views/addressbook.add.html:29 -#: www/views/addressbook.view.html:19 +#: www/views/addressbook.add.html:29 +#: www/views/addressbook.view.html:19 msgid "Email" msgstr "Correo electrónico" -#: www/views/preferencesNotifications.html:38 +#: www/views/preferencesNotifications.html:38 msgid "Email Address" msgstr "Dirección de correo electrónico" -#: www/views/onboarding/collectEmail.html:9 +#: www/views/onboarding/collectEmail.html:9 msgid "Email Notifications" msgstr "Notificaciones por Correo electrónico" -#: src/js/services/bwcError.js:122 +#: src/js/services/bwcError.js:122 msgid "Empty addresses limit reached. New addresses cannot be generated." msgstr "Se ha alcanzado el límite de direcciones vacías. No se pueden generar nuevas direcciones." -#: www/views/advancedSettings.html:17 +#: www/views/advancedSettings.html:17 msgid "Enable Amazon Integration" -msgstr "Habilitar la integración con Amazon" +msgstr "Habilitar integración con Amazon" -#: www/views/advancedSettings.html:13 +#: www/views/advancedSettings.html:13 msgid "Enable BitPay Card Integration" -msgstr "Habilitar Integración con Tarjeta BitPay" +msgstr "Habilitar integración con tarjeta BitPay" -#: www/views/advancedSettings.html:21 +#: www/views/advancedSettings.html:21 msgid "Enable Glidera Service" -msgstr "Habilitar Glidera" +msgstr "Habilitar servicio Glidera" -#: www/views/tab-scan.html:19 +#: www/views/tab-scan.html:19 msgid "Enable camera access in your device settings to get started." msgstr "Habilitar el acceso de la cámara en su configuración de dispositivo para empezar." -#: www/views/preferencesNotifications.html:25 +#: www/views/preferencesNotifications.html:25 msgid "Enable email notifications" msgstr "Activar notificaciones de correo electrónico" -#: www/views/preferencesNotifications.html:14 +#: www/views/preferencesNotifications.html:14 msgid "Enable push notifications" msgstr "Activar notificaciones push" -#: www/views/tab-scan.html:18 +#: www/views/tab-scan.html:18 msgid "Enable the camera to get started." msgstr "Activar la cámara empezar." -#: www/views/advancedSettings.html:10 +#: www/views/advancedSettings.html:10 msgid "Enabled Integrations" -msgstr "Habilitación de Integraciones" +msgstr "Gestión de Integraciones" -#: www/views/join.html:86 -#: www/views/tab-create-personal.html:55 -#: www/views/tab-create-shared.html:85 -msgid "Encrypt with a Password" -msgstr "Encriptar con una contraseña" - -#: www/views/amount.html:4 +#: www/views/amount.html:4 msgid "Enter Amount" msgstr "Ingrese el monto" -#: src/js/services/walletService.js:852 -#: src/js/services/walletService.js:867 +#: src/js/services/walletService.js:842 +#: src/js/services/walletService.js:857 msgid "Enter Spending Password" -msgstr "Ingrese contraseña para enviar" +msgstr "Ingrese contraseña para pagos" -#: src/js/controllers/bitpayCardIntro.js:6 +#: src/js/controllers/bitpayCardIntro.js:6 msgid "Enter Two Factor for BitPay Card" msgstr "Ingrese Two Factor para BitPay Card" -#: src/js/services/walletService.js:837 +#: src/js/services/walletService.js:824 msgid "Enter new spending password" -msgstr "Ingrese una nueva contraseña para enviar" +msgstr "Ingrese una nueva contraseña para pagos" -#: www/views/join.html:78 -#: www/views/tab-create-personal.html:48 -#: www/views/tab-create-shared.html:78 +#: www/views/join.html:76 +#: www/views/tab-create-personal.html:48 +#: www/views/tab-create-shared.html:78 msgid "Enter the recovery phrase (BIP39)" -msgstr "Introduzca la frase de recuperación (BIP39)" +msgstr "Introduce la frase de recuperación (BIP39)" -#: www/views/backup.html:62 +#: www/views/backup.html:62 msgid "Enter your password" msgstr "Ingrese su contraseña" -#: www/views/includes/password.html:8 +#: www/views/includes/password.html:8 msgid "Enter your spending password" -msgstr "Introduzca la contraseña para enviar" +msgstr "Introduce la contraseña para pagos" -#. Trying to import a malformed wallet export QR code -#: src/js/controllers/activity.js:45 -#: src/js/controllers/addressbook.js:50 -#: src/js/controllers/addressbookAdd.js:30 -#: src/js/controllers/addresses.js:24 -#: src/js/controllers/addresses.js:32 -#: src/js/controllers/addresses.js:84 -#: src/js/controllers/addresses.js:85 -#: src/js/controllers/amazon.js:15 -#: src/js/controllers/amazon.js:25 -#: src/js/controllers/amazon.js:46 -#: src/js/controllers/amazon.js:66 -#: src/js/controllers/amount.js:265 -#: src/js/controllers/amount.js:272 -#: src/js/controllers/amount.js:280 -#: src/js/controllers/amount.js:309 -#: src/js/controllers/amount.js:322 -#: src/js/controllers/amount.js:329 -#: src/js/controllers/amount.js:338 -#: src/js/controllers/bitpayCard.js:145 -#: src/js/controllers/bitpayCard.js:68 -#: src/js/controllers/bitpayCardIntro.js:27 -#: src/js/controllers/confirm.js:152 -#: src/js/controllers/confirm.js:165 -#: src/js/controllers/confirm.js:171 -#: src/js/controllers/confirm.js:449 -#: src/js/controllers/confirm.js:460 -#: src/js/controllers/confirm.js:472 -#: src/js/controllers/confirm.js:621 -#: src/js/controllers/confirm.js:649 -#: src/js/controllers/confirm.js:655 -#: src/js/controllers/confirm.js:683 -#: src/js/controllers/confirm.js:689 -#: src/js/controllers/confirm.js:696 -#: src/js/controllers/confirm.js:703 -#: src/js/controllers/confirm.js:721 -#: src/js/controllers/confirm.js:740 -#: src/js/controllers/confirm.js:754 -#: src/js/controllers/confirm.js:797 -#: src/js/controllers/copayers.js:54 -#: src/js/controllers/create.js:101 -#: src/js/controllers/create.js:129 -#: src/js/controllers/create.js:142 -#: src/js/controllers/create.js:149 -#: src/js/controllers/create.js:164 -#: src/js/controllers/create.js:182 -#: src/js/controllers/export.js:110 -#: src/js/controllers/export.js:138 -#: src/js/controllers/export.js:144 -#: src/js/controllers/export.js:155 -#: src/js/controllers/export.js:35 -#: src/js/controllers/export.js:93 -#: src/js/controllers/export.js:99 -#: src/js/controllers/feedback/send.js:23 -#: src/js/controllers/glidera.js:100 -#: src/js/controllers/glidera.js:27 -#: src/js/controllers/glidera.js:82 -#: src/js/controllers/glideraUri.js:13 -#: src/js/controllers/import.js:114 -#: src/js/controllers/import.js:164 -#: src/js/controllers/import.js:192 -#: src/js/controllers/import.js:201 -#: src/js/controllers/import.js:216 -#: src/js/controllers/import.js:228 -#: src/js/controllers/import.js:239 -#: src/js/controllers/import.js:248 -#: src/js/controllers/import.js:261 -#: src/js/controllers/import.js:273 -#: src/js/controllers/import.js:283 -#: src/js/controllers/import.js:293 -#: src/js/controllers/import.js:317 -#: src/js/controllers/import.js:329 -#: src/js/controllers/import.js:50 -#: src/js/controllers/import.js:63 -#: src/js/controllers/import.js:84 -#: src/js/controllers/import.js:96 -#: src/js/controllers/join.js:108 -#: src/js/controllers/join.js:122 -#: src/js/controllers/join.js:129 -#: src/js/controllers/join.js:143 -#: src/js/controllers/join.js:161 -#: src/js/controllers/join.js:86 -#: src/js/controllers/modals/amazonCardDetails.js:10 -#: src/js/controllers/modals/amazonCardDetails.js:32 -#: src/js/controllers/modals/amazonCardDetails.js:40 -#: src/js/controllers/modals/txpDetails.js:113 -#: src/js/controllers/paperWallet.js:47 -#: src/js/controllers/preferencesBitpayCard.js:16 -#: src/js/controllers/preferencesDelete.js:22 -#: src/js/controllers/preferencesFee.js:9 -#: src/js/controllers/preferencesGlidera.js:60 -#: src/js/controllers/tab-home.js:154 -#: src/js/controllers/tab-receive.js:24 -#: src/js/controllers/tabsController.js:7 -#: src/js/controllers/tx-details.js:18 +#. Trying to import a malformed wallet export QR code +#: src/js/controllers/activity.js:45 +#: src/js/controllers/addressbook.js:50 +#: src/js/controllers/addressbookAdd.js:30 +#: src/js/controllers/addresses.js:23 +#: src/js/controllers/addresses.js:31 +#: src/js/controllers/addresses.js:83 +#: src/js/controllers/addresses.js:84 +#: src/js/controllers/amount.js:253 +#: src/js/controllers/amount.js:260 +#: src/js/controllers/amount.js:268 +#: src/js/controllers/amount.js:298 +#: src/js/controllers/amount.js:311 +#: src/js/controllers/amount.js:318 +#: src/js/controllers/amount.js:327 +#: src/js/controllers/bitpayCard.js:145 +#: src/js/controllers/bitpayCard.js:68 +#: src/js/controllers/bitpayCardIntro.js:27 +#: src/js/controllers/confirm.js:160 +#: src/js/controllers/confirm.js:173 +#: src/js/controllers/confirm.js:179 +#: src/js/controllers/confirm.js:461 +#: src/js/controllers/confirm.js:472 +#: src/js/controllers/confirm.js:484 +#: src/js/controllers/confirm.js:630 +#: src/js/controllers/confirm.js:658 +#: src/js/controllers/confirm.js:664 +#: src/js/controllers/confirm.js:692 +#: src/js/controllers/confirm.js:698 +#: src/js/controllers/confirm.js:705 +#: src/js/controllers/confirm.js:712 +#: src/js/controllers/confirm.js:730 +#: src/js/controllers/confirm.js:749 +#: src/js/controllers/confirm.js:763 +#: src/js/controllers/confirm.js:815 +#: src/js/controllers/copayers.js:54 +#: src/js/controllers/create.js:109 +#: src/js/controllers/create.js:137 +#: src/js/controllers/create.js:150 +#: src/js/controllers/create.js:157 +#: src/js/controllers/create.js:172 +#: src/js/controllers/create.js:190 +#: src/js/controllers/export.js:110 +#: src/js/controllers/export.js:138 +#: src/js/controllers/export.js:144 +#: src/js/controllers/export.js:155 +#: src/js/controllers/export.js:35 +#: src/js/controllers/export.js:93 +#: src/js/controllers/export.js:99 +#: src/js/controllers/feedback/send.js:23 +#: src/js/controllers/glidera.js:100 +#: src/js/controllers/glidera.js:27 +#: src/js/controllers/glidera.js:82 +#: src/js/controllers/glideraUri.js:13 +#: src/js/controllers/import.js:115 +#: src/js/controllers/import.js:165 +#: src/js/controllers/import.js:193 +#: src/js/controllers/import.js:202 +#: src/js/controllers/import.js:217 +#: src/js/controllers/import.js:229 +#: src/js/controllers/import.js:240 +#: src/js/controllers/import.js:249 +#: src/js/controllers/import.js:262 +#: src/js/controllers/import.js:274 +#: src/js/controllers/import.js:284 +#: src/js/controllers/import.js:294 +#: src/js/controllers/import.js:318 +#: src/js/controllers/import.js:330 +#: src/js/controllers/import.js:51 +#: src/js/controllers/import.js:64 +#: src/js/controllers/import.js:85 +#: src/js/controllers/import.js:97 +#: src/js/controllers/join.js:115 +#: src/js/controllers/join.js:129 +#: src/js/controllers/join.js:136 +#: src/js/controllers/join.js:150 +#: src/js/controllers/join.js:168 +#: src/js/controllers/join.js:93 +#: src/js/controllers/modals/txpDetails.js:113 +#: src/js/controllers/paperWallet.js:47 +#: src/js/controllers/preferencesBitpayCard.js:16 +#: src/js/controllers/preferencesDelete.js:22 +#: src/js/controllers/preferencesFee.js:9 +#: src/js/controllers/preferencesGlidera.js:60 +#: src/js/controllers/tab-home.js:166 +#: src/js/controllers/tab-receive.js:23 +#: src/js/controllers/tabsController.js:7 +#: src/js/controllers/tx-details.js:18 msgid "Error" msgstr "Error" -#: src/js/controllers/confirm.js:353 +#: src/js/controllers/confirm.js:361 msgid "Error at confirm" msgstr "Error al confirmar" -#: src/js/services/profileService.js:424 +#: src/js/services/profileService.js:424 msgid "Error creating wallet" -msgstr "Error al crear monedero" +msgstr "Error al crear billetera" -#: src/js/controllers/paperWallet.js:41 +#: src/js/controllers/paperWallet.js:41 msgid "Error scanning funds:" msgstr "Error al escanear fondos:" -#: src/js/controllers/paperWallet.js:91 +#: src/js/controllers/paperWallet.js:91 msgid "Error sweeping wallet:" msgstr "Error al buscar fondos:" -#: src/js/services/bwcError.js:143 +#: src/js/services/bwcError.js:143 msgid "Exceeded daily limit of $500 per user" msgstr "Se excedió el limite de $500 por usuario" -#: www/views/advancedSettings.html:40 +#: www/views/advancedSettings.html:40 msgid "Experimental Features" msgstr "Características Experimentales" -#: src/js/controllers/confirm.js:311 -#: www/views/confirm.html:30 -#: www/views/modals/txp-details.html:114 +#: src/js/controllers/confirm.js:319 +#: www/views/confirm.html:30 +#: www/views/modals/txp-details.html:114 msgid "Expired" msgstr "Expirada" -#: www/views/modals/paypro.html:52 -#: www/views/modals/txp-details.html:120 +#: www/views/modals/paypro.html:54 +#: www/views/modals/txp-details.html:120 msgid "Expires" msgstr "Expira" -#: www/views/preferencesAdvanced.html:16 +#: www/views/preferencesAdvanced.html:16 msgid "Export Wallet" -msgstr "Exportar Monedero" +msgstr "Exportar billetera" -#: www/views/preferencesHistory.html:10 -#: www/views/preferencesHistory.html:13 +#: www/views/preferencesHistory.html:10 +#: www/views/preferencesHistory.html:13 msgid "Export to file" msgstr "Exportar a archivo" -#: www/views/export.html:3 +#: www/views/export.html:3 msgid "Export wallet" -msgstr "Exportar Monedero" +msgstr "Exportar billetera" -#: src/js/services/walletService.js:999 -#: www/views/tab-export-qrCode.html:9 +#: src/js/services/walletService.js:969 +#: www/views/tab-export-qrCode.html:9 msgid "Exporting via QR not supported for this wallet" -msgstr "Exportar vía código QR no es compatible para este monedero" +msgstr "Exportar vía código QR no es compatible para esta billetera" -#: www/views/preferencesInformation.html:76 +#: www/views/preferencesInformation.html:76 msgid "Extended Public Keys" msgstr "Claves Públicas Extendidas" -#: src/js/services/onGoingProcess.js:19 +#: src/js/services/onGoingProcess.js:19 msgid "Extracting Wallet Information..." -msgstr "Obteniendo Información del Monedero..." +msgstr "Obteniendo Información de la billetera..." -#: src/js/controllers/export.js:110 -#: src/js/controllers/export.js:144 -#: src/js/controllers/export.js:155 -#: src/js/controllers/export.js:99 -#: www/views/tab-export-file.html:4 +#: src/js/controllers/export.js:110 +#: src/js/controllers/export.js:144 +#: src/js/controllers/export.js:155 +#: src/js/controllers/export.js:99 +#: www/views/tab-export-file.html:4 msgid "Failed to export" msgstr "Error al exportar" -#: www/views/tab-create-personal.html:14 -#: www/views/tab-create-shared.html:14 +#: www/views/tab-create-personal.html:14 +#: www/views/tab-create-shared.html:14 msgid "Family vacation funds" msgstr "Fondos para vacaciones en familia" -#: www/views/includes/confirm-tx.html:19 -#: www/views/modals/txp-details.html:95 -#: www/views/tx-details.html:71 +#: www/views/confirm.html:79 +#: www/views/includes/confirm-tx.html:19 +#: www/views/modals/txp-details.html:95 +#: www/views/tx-details.html:73 msgid "Fee" msgstr "Comisión" -#: www/views/confirm.html:79 -msgid "Fee: {{feeLevel}}" -msgstr "Comisión: {{feeLevel}}" - -#: src/js/controllers/feedback/send.js:23 +#: src/js/controllers/feedback/send.js:23 msgid "Feedback could not be submitted. Please try again later." -msgstr "No se pudo enviar la sugerencia. Por favor intente nuevamente." +msgstr "No se pudo enviar el comentario. Por favor intente nuevamente." -#: src/js/services/onGoingProcess.js:20 +#: src/js/services/onGoingProcess.js:20 msgid "Fetching Payment Information" msgstr "Obteniendo información del pago" -#: www/views/export.html:11 -#: www/views/import.html:16 +#: www/views/export.html:11 +#: www/views/import.html:16 msgid "File/Text" msgstr "Archivo/Texto" -#: src/js/services/fingerprintService.js:43 -#: src/js/services/fingerprintService.js:48 +#: src/js/services/fingerprintService.js:43 +#: src/js/services/fingerprintService.js:48 msgid "Finger Scan Failed" msgstr "Fallo en la verificación de la huella" -#: src/js/controllers/feedback/send.js:34 -#: www/views/customAmount.html:9 +#: src/js/controllers/feedback/send.js:34 +#: www/views/customAmount.html:9 msgid "Finish" msgstr "Finalizar" -#: www/views/tab-create-personal.html:95 -#: www/views/tab-create-shared.html:125 +#: www/views/tab-create-personal.html:97 +#: www/views/tab-create-shared.html:127 msgid "For audit purposes" msgstr "Para propósitos de auditoría" -#: www/views/paperWallet.html:34 +#: www/views/paperWallet.html:34 msgid "Founds transferred" msgstr "Fondos transferidos" -#: www/views/translators.html:13 +#: www/views/translators.html:13 msgid "French" msgstr "Francés" -#: www/views/confirm.html:60 -#: www/views/confirm.html:62 -#: www/views/modals/txp-details.html:74 -#: www/views/tx-details.html:48 +#: www/views/confirm.html:60 +#: www/views/modals/txp-details.html:74 +#: www/views/tx-details.html:50 msgid "From" msgstr "Desde" -#: www/views/tab-export-qrCode.html:5 +#: www/views/tab-export-qrCode.html:5 msgid "From the destination device, go to Add wallet > Import wallet and scan this QR code" -msgstr "Desde el dispositivo de destino, ir a Agregar monedero > Importar y escanear este código QR" +msgstr "Desde el dispositivo de destino, ir a Agregar billetera > Importar y escanear este código QR" -#: src/js/services/bwcError.js:74 +#: src/js/services/bwcError.js:74 msgid "Funds are locked by pending spend proposals" msgstr "Los fondos están bloqueados por propuestas de gastos pendientes" -#: www/views/paperWallet.html:16 +#: www/views/paperWallet.html:16 msgid "Funds found:" msgstr "Fondos encontrados:" -#: www/views/paperWallet.html:23 +#: www/views/paperWallet.html:23 msgid "Funds will be transferred to" msgstr "Los fondos serán transferidos a" -#: src/js/services/onGoingProcess.js:21 +#: src/js/services/onGoingProcess.js:21 msgid "Generating .csv file..." msgstr "Generando archivo .csv..." -#: src/js/services/onGoingProcess.js:37 +#: src/js/services/onGoingProcess.js:37 msgid "Generating new address..." msgstr "Generando una nueva dirección..." -#: www/views/bitpayCardIntro.html:23 +#: www/views/bitpayCardIntro.html:23 msgid "Get local cash anywhere you go, from any Visa® compatible ATM. ATM bank fees may apply." msgstr "Consigue efectivo local dondequiera que vayas, desde cualquier ATM Visa® compatible. Comisión de parte del ATM pueden ser aplicadas." -#: www/views/onboarding/collectEmail.html:15 +#: www/views/onboarding/collectEmail.html:15 msgid "Get news and updates from BitPay" msgstr "Recibir noticias y actualizaciones de BitPay" -#: www/views/onboarding/welcome.html:9 +#: www/views/onboarding/welcome.html:9 msgid "Get started" -msgstr "Empezar ahora" +msgstr "Empezar" -#: src/js/services/onGoingProcess.js:38 +#: www/views/addressbook.html:20 +msgid "Get started by adding your first one." +msgstr "Comienza agregando el primero." + +#: src/js/services/onGoingProcess.js:38 msgid "Getting addresses..." msgstr "Consiguiendo direcciones..." -#: src/js/services/onGoingProcess.js:22 +#: src/js/services/onGoingProcess.js:22 msgid "Getting fee levels..." msgstr "Obteniendo niveles de comisión..." -#: www/views/glidera.html:39 -msgid "Glidera Inc. (Glidera) is providing the service of buying or selling bitcoin to BitPay users. To enable this service, Glidera has registered with US Treasury Department’s FinCEN as a Money Service Business (#31000042625755). Users of BitPay must agree to the service agreement presented by Glidera prior to obtaining Glidera’s service of buying or selling bitcoin." -msgstr "Glidera Inc. (Glidera) provee el servicio para comprar y vender bitcoins a los usuarios de BitPay. Para habilitar este servicio, Glidera se ha registrado con US Treasury Department’s FinCEN como Money Service Business (#31000042625755). Los usuarios de BitPay deben aceptar los términos y condiciones presentados por Glidera, antes de obtener el servicio de compra y venta de bitcoin de éste." +#: src/js/controllers/onboarding/terms.js:23 +#: src/js/controllers/preferencesAbout.js:16 +#: src/js/controllers/preferencesLanguage.js:14 +#: src/js/controllers/tab-home.js:141 +#: src/js/controllers/tab-settings.js:55 +#: src/js/controllers/translators.js:11 +#: src/js/controllers/tx-details.js:128 +msgid "Go Back" +msgstr "Volver" -#: src/js/controllers/bitpayCardIntro.js:35 -#: src/js/controllers/onboarding/backupRequest.js:13 -#: src/js/controllers/onboarding/backupRequest.js:19 -#: www/views/includes/backupLaterPopup.html:4 +#: src/js/controllers/bitpayCardIntro.js:35 +#: src/js/controllers/onboarding/backupRequest.js:13 +#: src/js/controllers/onboarding/backupRequest.js:19 msgid "Go back" msgstr "Volver" -#: www/views/includes/backupWarningPopup.html:4 -#: www/views/includes/confirmBackupPopup.html:8 +#: www/views/backupWarning.html:15 +#: www/views/includes/confirmBackupPopup.html:8 msgid "Got it" msgstr "Entiendo" -#: www/views/preferences.html:20 -#: www/views/preferencesInformation.html:47 +#: www/views/onboarding/tour.html:18 +msgid "Got it →" +msgstr "Entiendo →" + +#: www/views/preferences.html:20 +#: www/views/preferencesInformation.html:47 msgid "Hardware Wallet" -msgstr "Monedero Físico" +msgstr "Billetera Física" -#: www/views/import.html:20 +#: www/views/import.html:20 msgid "Hardware wallet" -msgstr "Monedero de Hardware" +msgstr "Billetera física" -#: www/views/glidera.html:34 -msgid "Have the OAuth Code?" -msgstr "¿Tiene el código OAuth?" - -#: www/views/tab-settings.html:27 +#: www/views/tab-settings.html:27 msgid "Help & Support" msgstr "Ayuda & Soporte" -#: www/views/addresses.html:29 +#: src/js/controllers/tab-settings.js:53 +msgid "Help and support information is available at the BitPay Help Center website." +msgstr "La ayuda y soporte esta disponible en la página BitPay Help Center." + +#: www/views/addresses.html:24 msgid "Hide" msgstr "Ocultar" -#: www/views/preferences.html:34 +#: www/views/preferences.html:34 msgid "Hide Balance" msgstr "Balance Oculto" -#: www/views/join.html:48 -#: www/views/tab-create-personal.html:25 -#: www/views/tab-create-shared.html:55 -#: www/views/tab-export-file.html:23 -#: www/views/tab-import-file.html:28 -#: www/views/tab-import-hardware.html:31 -#: www/views/tab-import-phrase.html:31 +#: www/views/join.html:46 +#: www/views/tab-create-personal.html:25 +#: www/views/tab-create-shared.html:55 +#: www/views/tab-export-file.html:23 +#: www/views/tab-import-file.html:28 +#: www/views/tab-import-hardware.html:31 +#: www/views/tab-import-phrase.html:31 msgid "Hide advanced options" msgstr "Ocultar opciones avanzadas" -#: www/views/tabs.html:3 +#: www/views/tabs.html:3 msgid "Home" msgstr "Inicio" -#: src/js/controllers/feedback/send.js:55 -#: src/js/controllers/feedback/send.js:59 -#: src/js/controllers/feedback/send.js:63 +#: src/js/controllers/feedback/send.js:56 +#: src/js/controllers/feedback/send.js:60 +#: src/js/controllers/feedback/send.js:64 msgid "How could we improve your experience?" -msgstr "¿Cómo podríamos mejorar su experiencia?" +msgstr "¿Cómo podríamos mejorar tu experiencia?" -#: www/views/feedback/rateCard.html:3 +#: www/views/feedback/rateCard.html:3 msgid "How do you like BitPay?" msgstr "¿Te gusta BitPay?" -#: src/js/controllers/feedback/rateCard.js:28 +#: src/js/controllers/feedback/rateCard.js:28 msgid "I don't like it" msgstr "No me gusta" -#: www/views/onboarding/disclaimer.html:44 +#: www/views/onboarding/disclaimer.html:44 msgid "I have read, understood, and agree to the
Terms of Use." -msgstr "He leido, entendido y acepto los Terminos de Uso." +msgstr "He leído, entendido y acepto los Términos de Uso." -#: www/views/modals/terms.html:22 +#: www/views/modals/terms.html:22 msgid "I have read, understood, and agree with the Terms of use." -msgstr "He leído, entendido y acepto los términos de uso." +msgstr "He leído, entendido y acepto los Términos de uso." -#: www/views/join.html:112 -#: www/views/tab-create-personal.html:79 -#: www/views/tab-create-shared.html:109 +#: www/views/join.html:112 +#: www/views/tab-create-personal.html:81 +#: www/views/tab-create-shared.html:111 msgid "I have written it down" -msgstr "Lo he anotado" +msgstr "Ya he anotado" -#: src/js/controllers/feedback/rateCard.js:34 +#: src/js/controllers/feedback/rateCard.js:34 msgid "I like the app" msgstr "Me gusta la aplicación" -#: src/js/controllers/feedback/rateCard.js:25 +#: src/js/controllers/feedback/rateCard.js:25 msgid "I think this app is terrible." msgstr "Creo que esta aplicación es terrible." -#: src/js/controllers/onboarding/backupRequest.js:12 -#: www/views/includes/backupLaterPopup.html:7 -#: www/views/includes/screenshotWarningModal.html:9 +#: src/js/controllers/onboarding/backupRequest.js:12 +#: www/views/includes/screenshotWarningModal.html:9 msgid "I understand" msgstr "Entiendo" -#: www/views/onboarding/disclaimer.html:21 +#: www/views/onboarding/disclaimer.html:21 msgid "I understand that if this app is moved to another device or deleted, my bitcoin can only be recovered with the backup phrase." -msgstr "Entiendo que si esta aplicación se mueve a otro dispositivo o es borrada, mis bitcoins pueden solamente ser recuperados con la frase de copia de seguridad." +msgstr "Entiendo que si esta aplicación es borrada, mis fondos pueden recuperarse únicamente con la copia de seguridad." -#: www/views/onboarding/disclaimer.html:18 +#: www/views/onboarding/disclaimer.html:18 msgid "I understand that my funds are held securely on this device, not by a company." -msgstr "Entiendo que mis fondos están resguardados en este dispositivo, no por una empresa." +msgstr "Entiendo que mis fondos están protegidos por el dispositivo y no por una empresa." -#: www/views/onboarding/backupRequest.html:12 -msgid "I'll backup my wallet later" -msgstr "Haré la copia de seguridad más tarde" - -#: www/views/includes/backupNeededPopup.html:10 -msgid "I'll do it later" -msgstr "Lo haré más adelante" - -#: www/views/backup.html:29 +#: www/views/backup.html:29 msgid "I've written it down" -msgstr "Lo he anotado" +msgstr "Ya he anotado" -#: www/views/advancedSettings.html:50 +#: www/views/advancedSettings.html:50 msgid "If enabled, the Recent Transactions card - a list of transactions occuring across all wallets - will appear in the Home tab." -msgstr "Si está habilitado, la tarjeta con Transacciones Recientes - una lista de las transacciones mas recientes de todas sus wallets - aparecerá en su pantalla principal." +msgstr "Si se habilita, aparecerá una lista de las transacciones recientes de las billeteras en el inicio." -#: www/views/advancedSettings.html:36 +#: www/views/advancedSettings.html:36 msgid "If enabled, wallets will also try to spend unconfirmed funds. This option may cause transaction delays." -msgstr "Si es habilitado, mis monederos intentarán gastar fondos sin confirmar. Esta opción puede causar retrasos en la transacción." +msgstr "Si se habilita, las billeteras podrán gastar los fondos sin confirmar. Esta opción puede causar demoras en la transacción." -#: www/views/includes/backupLaterPopup.html:3 -msgid "If something happens to this device, this app is deleted, or your password forgotten, neither you nor Bitpay can recover your funds." -msgstr "Si algo le pasa a este dispositivo, esta aplicación es eliminada, o olvidó su contraseña, ni usted ni BitPay puede recuperar sus fondos." - -#: src/js/controllers/onboarding/backupRequest.js:11 +#: src/js/controllers/onboarding/backupRequest.js:11 msgid "If this device is replaced or this app is deleted, neither you nor BitPay can recover your funds without a backup." -msgstr "Si se sustituye este dispositivo o esta aplicación es eliminada, ni usted ni BitPay podrán recuperar sus fondos sin una copia de seguridad." +msgstr "Si pierdes este dispositivo o esta aplicación es eliminada, ni tú ni BitPay podrán recuperar el dinero." -#: www/views/feedback/complete.html:19 +#: www/views/feedback/complete.html:19 msgid "If you have additional feedback, please let us know by tapping the \"Send feedback\" option in the Settings tab." -msgstr "Si tiene comentarios adicionales, por favor, háganoslo saber pulsando la opción \"Enviar comentarios\" en preferencias." +msgstr "Si tienes comentarios adicionales, por favor envíalos pulsando la opción \"Enviar comentarios\" en la pestaña de preferencias." -#: www/views/includes/screenshotWarningModal.html:8 +#: www/views/includes/screenshotWarningModal.html:8 msgid "If you take a screenshot, your backup may be viewed by other apps. You can make a safe backup with physical paper and a pen." -msgstr "Si usted toma una captura de pantalla, otras aplicaciones podrían ver su copia de seguridad. La forma más acertada es hacer una copia de seguridad con tinta y papel." +msgstr "Si tomas una captura de pantalla, otras aplicaciones podrían ver tu copia de seguridad. La forma más acertada es resguardarla con tinta y papel." -#: www/views/tab-import-hardware.html:42 -#: www/views/tab-import-phrase.html:61 +#: www/views/tab-import-hardware.html:42 +#: www/views/tab-import-phrase.html:61 msgid "Import" msgstr "Importar" -#: www/views/import.html:3 +#: www/views/import.html:3 msgid "Import Wallet" -msgstr "Importar monedero" +msgstr "Importar billetera" -#: www/views/tab-import-file.html:39 +#: www/views/tab-import-file.html:39 msgid "Import backup" msgstr "Importar copia de seguridad" -#: www/views/add.html:38 +#: www/views/add.html:38 msgid "Import wallet" -msgstr "Importar monedero" +msgstr "Importar billetera" -#: src/js/services/onGoingProcess.js:23 +#: src/js/services/onGoingProcess.js:23 msgid "Importing Wallet..." -msgstr "Importando Monedero..." +msgstr "Importando billetera..." -#: www/views/backup.html:65 +#: www/views/backup.html:65 msgid "In order to verify your wallet backup, please type your password." -msgstr "Con el fin de verificar la copia de seguridad del monedero, por favor escriba su contraseña." +msgstr "Para verificar la copia de seguridad de la billetera, por favor escriba la contraseña." -#: www/views/includes/walletSelector.html:18 -#: www/views/tab-home.html:79 -#: www/views/tab-settings.html:114 +#: www/views/includes/walletSelector.html:18 +#: www/views/tab-home.html:79 +#: www/views/tab-settings.html:114 msgid "Incomplete" msgstr "Incompleta" -#: www/views/tab-receive.html:35 +#: www/views/tab-receive.html:30 msgid "Incomplete wallet" -msgstr "Monedero Incompleto" +msgstr "Billetera Incompleta" -#: src/js/services/bwcError.js:113 +#: src/js/services/bwcError.js:113 msgid "Incorrect address network" msgstr "Dirección de red incorrecta" -#. Trying to import a malformed wallet export QR code -#: src/js/controllers/import.js:50 +#. Trying to import a malformed wallet export QR code +#: src/js/controllers/import.js:51 msgid "Incorrect code format" msgstr "Formato de código incorrecto" -#: src/js/services/bwcError.js:44 -#: www/views/confirm.html:116 +#: src/js/services/bwcError.js:44 +#: www/views/confirm.html:116 msgid "Insufficient funds" msgstr "Fondos insuficientes" -#: src/js/services/bwcError.js:71 +#: src/js/services/bwcError.js:71 msgid "Insufficient funds for fee" msgstr "Fondos insuficientes para el pago de la comisión" -#: www/views/modals/search.html:70 -#: www/views/walletDetails.html:236 +#: www/views/modals/search.html:70 +#: www/views/walletDetails.html:253 msgid "Invalid" msgstr "Inválido" -#: src/js/controllers/create.js:149 -#: src/js/controllers/import.js:293 -#: src/js/controllers/join.js:129 +#: src/js/controllers/create.js:157 +#: src/js/controllers/import.js:294 +#: src/js/controllers/join.js:136 msgid "Invalid account number" msgstr "Número de cuenta inválido" -#: src/js/services/bwcError.js:119 +#: src/js/services/bwcError.js:119 msgid "Invalid address" msgstr "Dirección inválida" -#: src/js/controllers/tabsController.js:7 +#: src/js/controllers/tabsController.js:7 msgid "Invalid data" msgstr "Datos no válidos" -#: src/js/controllers/create.js:129 -#: src/js/controllers/import.js:228 -#: src/js/controllers/join.js:108 +#: src/js/controllers/create.js:137 +#: src/js/controllers/import.js:229 +#: src/js/controllers/join.js:115 msgid "Invalid derivation path" msgstr "Camino de derivación no válido" -#: src/js/controllers/copayers.js:75 +#: src/js/controllers/copayers.js:75 msgid "Invitation to share a {{appName}} Wallet" -msgstr "Invitación para unirse al monedero {{appName}} compartido" +msgstr "Invitación para unirse a la billetera {{appName}} compartida" -#: src/js/controllers/feedback/send.js:71 +#: src/js/controllers/feedback/send.js:72 msgid "Is there anything we could do better?" msgstr "¿Hay algo que podríamos mejorar?" -#: www/views/backup.html:47 +#: www/views/backup.html:47 msgid "Is this correct?" -msgstr "¿Es esto correcto?" +msgstr "¿Es correcto?" -#: www/views/onboarding/collectEmail.html:22 +#: www/views/onboarding/collectEmail.html:22 msgid "Is this email address correct?" msgstr "¿Es correcta esta dirección de correo electrónico?" -#: www/views/addresses.html:29 -msgid "It's a good idea to avoid reusing addresses-this both protects your privacy and keeps your bitcoins secure against hypothetical attacks by quantum computers." -msgstr "Es una buena idea evitar rehusar las direcciones- esto protege su privacidad y mantiene tus bitcoins seguro contra hipotéticos ataques de ordenadores cuánticos." +#: www/views/addresses.html:24 +msgid "It's a good idea to avoid reusing addresses - this both protects your privacy and keeps your bitcoins secure against hypothetical attacks by quantum computers." +msgstr "Es una buena idea evitar el reuso de las direcciones. Esto protege tu privacidad y mantiene tus fondos seguros contra hipotéticos ataques de ordenadores cuánticos." -#: src/js/controllers/backup.js:76 +#: src/js/controllers/backup.js:76 msgid "It's important that you write your backup phrase down correctly. If something happens to your wallet, you'll need this backup to recover your money. Please review your backup and try again." -msgstr "Es importante que usted escriba su frase copia de seguridad correctamente. Si algo le pasa a su monedero, necesitarás de esta para recuperar su dinero. Revise la copia de seguridad y vuelva a intentarlo." +msgstr "Es importante que escribas correctamente la frase de seguridad. Si algo le pasa a tu billetera, necesitarás de ésta para recuperar el dinero. Revísala y vuelve a intentarlo." -#: www/views/join.html:18 +#: www/views/join.html:18 msgid "John" msgstr "Juan" -#: www/views/join.html:126 +#: www/views/join.html:126 msgid "Join" msgstr "Unirse" -#: src/js/controllers/copayers.js:70 +#: src/js/controllers/copayers.js:70 msgid "Join my {{appName}} Wallet. Here is the invitation code: {{secret}} You can download {{appName}} for your phone or desktop at {{appUrl}}" -msgstr "Únete a mi monedero {{appName}}. Aquí está el código de invitación: {{secret}} puede descargar {{appName}} para su teléfono o escritorio en {{appUrl}}" +msgstr "Únete a mi billetera {{appName}}. Aquí está el código de invitación: {{secret}} puede descargar {{appName}} para su teléfono o escritorio en {{appUrl}}" -#: www/views/add.html:30 -#: www/views/join.html:5 +#: www/views/add.html:30 +#: www/views/join.html:5 msgid "Join shared wallet" -msgstr "Unirse a un monedero compartido" +msgstr "Unirse a una billetera compartida" -#: src/js/services/onGoingProcess.js:24 +#: src/js/services/onGoingProcess.js:24 msgid "Joining Wallet..." -msgstr "Uniéndose al monedero..." +msgstr "Uniéndose a la billetera..." -#: www/views/onboarding/tour.html:17 +#: www/views/onboarding/tour.html:17 msgid "Just scan the code to pay." -msgstr "Escanea y paga." +msgstr "Sólo escanea y paga." -#: src/js/services/bwcError.js:116 +#: src/js/services/bwcError.js:116 msgid "Key already associated with an existing wallet" msgstr "La clave ya esta asociada a un monedero existente" -#: www/views/preferencesLanguage.html:4 -#: www/views/tab-settings.html:60 +#: www/views/preferencesLanguage.html:4 +#: www/views/tab-settings.html:60 msgid "Language" msgstr "Idioma" -#: www/views/bitpayCard.html:56 +#: www/views/bitpayCard.html:56 msgid "Last Month" msgstr "Mes pasado" -#: www/views/backup.html:36 +#: www/views/backup.html:36 msgid "Let's verify your backup phrase." -msgstr "Vamos a verificar su frase copia de seguridad." +msgstr "Verifiquemos la copia de seguridad." -#: src/js/services/onGoingProcess.js:35 +#: src/js/services/onGoingProcess.js:35 msgid "Loading transaction info..." msgstr "Cargando información de transacción..." -#: src/js/services/bwcError.js:86 +#: www/views/modals/wallet-balance.html:80 +msgid "Locked" +msgstr "Bloqueado" + +#: src/js/services/bwcError.js:86 msgid "Locktime in effect. Please wait to create a new spend proposal" -msgstr "Bloqueo temporal. Por favor espere para crear una nueva propuesta de gasto" +msgstr "Bloqueo temporal. Por favor espera para crear una nueva propuesta de gasto" -#: src/js/services/bwcError.js:89 +#: src/js/services/bwcError.js:89 msgid "Locktime in effect. Please wait to remove this spend proposal" -msgstr "Bloqueo temporal. Por favor espere para eliminar esta propuesta de gasto" +msgstr "Bloqueo temporal. Por favor espera para eliminar esta propuesta de gasto" -#: www/views/paymentUri.html:13 +#: www/views/paymentUri.html:13 msgid "Make a payment to" msgstr "Hacer un pago a" -#: src/js/controllers/modals/search.js:61 +#: www/views/onboarding/tour.html:33 +msgid "Makes sense →" +msgstr "Entiendo →" + +#: src/js/controllers/modals/search.js:61 msgid "Matches:" msgstr "Coincidencias:" -#: www/views/includes/copayers.html:4 -#: www/views/preferencesInformation.html:72 +#: www/views/includes/copayers.html:4 +#: www/views/preferencesInformation.html:72 msgid "Me" msgstr "Yo" -#: src/js/controllers/feedback/rateCard.js:31 +#: src/js/controllers/feedback/rateCard.js:31 msgid "Meh - it's alright" msgstr "Buu - está bien" -#: src/js/controllers/tx-details.js:100 -#: www/views/modals/paypro.html:48 -#: www/views/modals/txp-details.html:89 -#: www/views/tx-details.html:64 +#: src/js/controllers/tx-details.js:100 +#: www/views/modals/paypro.html:48 +#: www/views/modals/txp-details.html:89 +#: www/views/tx-details.html:66 msgid "Memo" msgstr "Nota" -#: www/views/modals/txp-details.html:126 +#: www/views/modals/txp-details.html:126 msgid "Merchant Message" -msgstr "Mensaje del negocio" +msgstr "Mensaje del comerciante" -#: www/views/paymentUri.html:17 +#: www/views/paymentUri.html:17 msgid "Message" msgstr "Mensaje" -#: src/js/services/bwcError.js:134 +#: src/js/services/bwcError.js:134 msgid "Missing parameter" msgstr "Faltan parámetros" -#: src/js/services/bwcError.js:32 +#: src/js/services/bwcError.js:32 msgid "Missing private keys to sign" msgstr "Faltan las claves privadas para firmar" -#: www/views/preferences.html:56 -#: www/views/preferencesAdvanced.html:3 +#: www/views/preferences.html:56 +#: www/views/preferencesAdvanced.html:3 msgid "More Options" msgstr "Más opciones" -#: www/views/modals/search.html:67 -#: www/views/walletDetails.html:234 +#: www/views/modals/search.html:67 +#: www/views/tx-details.html:19 +#: www/views/walletDetails.html:251 msgid "Moved" msgstr "Movido" -#: src/js/controllers/tx-details.js:24 +#: src/js/controllers/tx-details.js:24 msgid "Moved Funds" msgstr "Fondos movidos" -#: www/views/includes/confirm-tx.html:13 -#: www/views/modals/txp-details.html:57 +#: www/views/includes/confirm-tx.html:13 +#: www/views/modals/txp-details.html:57 msgid "Multiple recipients" msgstr "Varios destinatarios" -#: www/views/tab-import-phrase.html:8 +#: www/views/tab-import-phrase.html:8 msgid "NOTE: To import a wallet from a 3rd party software, please go to Add Wallet > Create Wallet, and specify the Recovery Phrase there." -msgstr "Nota: Para importar un monedero de un software de tercero, por favor vaya a Añadir Monedero > Crear Monedero, y especificar la frase de recuperación allí." +msgstr "Nota: Para importar una billetera de un software de tercero debes ir a Añadir billetera > Crear billetera, y especificar la frase de recuperación." -#: www/views/addressbook.add.html:21 -#: www/views/addressbook.view.html:15 -#: www/views/preferences.html:13 -#: www/views/preferencesAlias.html:17 +#: www/views/addressbook.add.html:21 +#: www/views/addressbook.view.html:15 +#: www/views/preferences.html:13 +#: www/views/preferencesAlias.html:17 msgid "Name" msgstr "Nombre" -#: www/views/paymentUri.html:18 +#: www/views/paymentUri.html:18 msgid "Network" msgstr "Red" -#: src/js/services/bwcError.js:47 +#: src/js/services/bwcError.js:47 msgid "Network connection error" msgstr "Error de conexión a la red" -#: www/views/includes/walletActivity.html:43 +#: www/views/includes/walletActivity.html:43 msgid "New Proposal" msgstr "Nueva propuesta de pago" -#: src/js/controllers/addresses.js:85 +#: src/js/controllers/addresses.js:84 msgid "New address could not be generated. Please try again." -msgstr "No se pudo generar la nueva dirección. Por favor, inténtelo de nuevo." +msgstr "No se pudo generar la nueva dirección. Por favor inténtalo de nuevo." -#: www/views/add.html:14 +#: www/views/add.html:14 msgid "New personal wallet" -msgstr "Nuevo monedero personal" +msgstr "Nueva billetera personal" -#: www/views/tab-home.html:146 +#: www/views/tab-home.html:147 msgid "Next steps" msgstr "Próximos pasos" -#: www/views/onboarding/collectEmail.html:27 +#: www/views/onboarding/collectEmail.html:27 msgid "No" msgstr "No" -#: www/views/tab-receive.html:12 +#: www/views/tab-receive.html:7 msgid "No Wallet" -msgstr "Sin monedero" +msgstr "Sin billetera" -#: www/views/onboarding/backupRequest.html:5 +#: www/views/onboarding/backupRequest.html:5 msgid "No backup, no bitcoin." -msgstr "Sin copia de seguridad, no bitcoin." +msgstr "Sin copia de seguridad, no hay bitcoins." -#: www/views/addressbook.html:19 +#: www/views/addressbook.html:19 msgid "No contacts yet" -msgstr "Aún no hay contactos" +msgstr "Aun no hay contactos" -#: www/views/tab-import-hardware.html:3 +#: www/views/tab-import-hardware.html:3 msgid "No hardware wallets supported on this device" -msgstr "No hay monederos hardware compatibles con este dispositivo" +msgstr "No hay billeteras físicas compatibles con este dispositivo" -#: www/views/proposals.html:25 +#: www/views/proposals.html:25 msgid "No pending proposals" msgstr "No propuestas de pago pendientes" -#: www/views/activity.html:25 +#: www/views/activity.html:25 msgid "No recent transactions" msgstr "No hay transacciones recientes" -#: www/views/walletDetails.html:179 +#: www/views/walletDetails.html:196 msgid "No transactions yet" -msgstr "Sin transacciones todavía" +msgstr "Aun no hay transacciones" -#: src/js/controllers/amount.js:309 +#: src/js/controllers/amount.js:298 msgid "No wallet found!" -msgstr "¡No hay monedero!" +msgstr "¡No hay billetera!" -#: www/views/confirm.html:113 +#: www/views/confirm.html:113 msgid "No wallets available" -msgstr "No hay monederos disponibles" +msgstr "No hay billeteras disponibles" -#: www/views/paperWallet.html:28 +#: www/views/paperWallet.html:28 msgid "No wallets available to receive funds" -msgstr "No hay monederos disponibles para recibir fondos" +msgstr "No hay billeteras disponibles para recibir fondos" -#: src/js/services/feeService.js:9 +#: src/js/services/feeService.js:9 msgid "Normal" msgstr "Normal" -#: src/js/services/bwcError.js:80 +#: src/js/services/bwcError.js:80 msgid "Not authorized" msgstr "No autorizado" -#: src/js/controllers/confirm.js:171 +#: src/js/controllers/confirm.js:179 msgid "Not enough funds for fee" msgstr "No hay suficientes fondos para la comisión" -#: www/views/onboarding/tour.html:45 +#: www/views/onboarding/tour.html:45 msgid "Not even BitPay can access it." -msgstr "Ni BitPay puede acceder a él." +msgstr "Ni siquiera BitPay puede acceder a ellos." -#: src/js/controllers/paperWallet.js:47 +#: src/js/controllers/paperWallet.js:47 msgid "Not funds found" -msgstr "Fondos no encontrados" +msgstr "No se encontraron fondos" -#: www/views/feedback/rateApp.html:3 -#: www/views/onboarding/notifications.html:8 +#: www/views/feedback/rateApp.html:3 +#: www/views/onboarding/notifications.html:8 msgid "Not now" msgstr "Ahora no" -#: www/views/includes/output.html:15 +#: www/views/includes/output.html:15 msgid "Note" msgstr "Nota" -#: www/views/modals/wallets.html:25 +#: www/views/modals/wallets.html:25 msgid "Notice: only 1-1 (single signature) wallets can be used for sell bitcoin" -msgstr "Aviso: solo monederos 1-1 (única firma) pueden ser utilizados para vender bitcoin" +msgstr "Aviso: solo billeteras 1-1 (única firma) pueden ser utilizadas para vender bitcoin" -#: www/views/preferencesNotifications.html:10 -#: www/views/preferencesNotifications.html:3 -#: www/views/tab-settings.html:53 +#: www/views/preferencesNotifications.html:10 +#: www/views/preferencesNotifications.html:3 +#: www/views/tab-settings.html:53 msgid "Notifications" msgstr "Notificaciones" -#: www/views/includes/backupNeededPopup.html:8 +#: www/views/includes/backupNeededPopup.html:8 msgid "Now is a good time to backup your wallet. If this device is lost, it is impossible to access your funds without a backup." -msgstr "Ahora es un buen momento para realizar la copia de seguridad de tu monedero. Si este dispositivo se pierde, es imposible tener acceso a sus fondos sin una copia de seguridad." +msgstr "Es un buen momento para realizar una copia de seguridad de la billetera. Si este dispositivo se pierde, será imposible acceder a los fondos." -#: www/views/backupWarning.html:11 +#: www/views/backupWarning.html:11 msgid "Now is a perfect time to assess your surroundings. Nearby windows? Hidden cameras? Shoulder-spies?" -msgstr "Ahora es el momento perfecto para revisar sus alrededores. ¿Ventanas? ¿Cámaras ocultas? ¿Espías?" +msgstr "Es el momento perfecto para mirar a tu alrededor. ¿ventanas? ¿cámaras? ¿gente curiosa?" -#: src/js/services/popupService.js:15 -#: src/js/services/popupService.js:57 +#: src/js/services/popupService.js:15 +#: src/js/services/popupService.js:58 msgid "OK" msgstr "OK" -#: www/views/modals/tx-status.html:12 -#: www/views/modals/tx-status.html:24 -#: www/views/modals/tx-status.html:36 -#: www/views/modals/tx-status.html:46 +#: www/views/modals/tx-status.html:12 +#: www/views/modals/tx-status.html:24 +#: www/views/modals/tx-status.html:36 +#: www/views/modals/tx-status.html:46 msgid "OKAY" msgstr "LISTO" -#: www/views/modals/terms.html:15 -#: www/views/termsOfUse.html:12 +#: www/views/modals/terms.html:15 +#: www/views/termsOfUse.html:12 msgid "Official English Disclaimer" msgstr "Renuncia oficial en inglés" -#: src/js/controllers/feedback/send.js:58 +#: src/js/controllers/feedback/send.js:59 msgid "Oh no!" msgstr "¡Oh no!" -#: www/views/tab-home.html:29 +#: www/views/tab-home.html:29 msgid "On this screen you can see all your wallets, accounts, and assets." -msgstr "En esta pantalla puedes ver tus monederos, cuentas y activos." +msgstr "En esta pantalla puedes ver tus billeteras, cuentas y activos." -#: www/views/tab-receive.html:41 +#: src/js/controllers/preferencesLanguage.js:13 +#: src/js/controllers/translators.js:10 +msgid "Open Crowdin" +msgstr "Abrir Crowdin" + +#: src/js/controllers/preferencesAbout.js:15 +msgid "Open GitHub" +msgstr "Abrir GitHub" + +#: src/js/controllers/preferencesAbout.js:13 +msgid "Open GitHub Project" +msgstr "Abrir Proyecto en GitHub" + +#: src/js/controllers/tab-settings.js:54 +msgid "Open Help Center" +msgstr "Abrir Centro de Ayuda" + +#: src/js/controllers/tx-details.js:127 +msgid "Open Insight" +msgstr "Abrir Insight" + +#: www/views/tab-scan.html:22 +msgid "Open Settings" +msgstr "Abrir Opciones" + +#: src/js/controllers/preferencesLanguage.js:11 +#: src/js/controllers/translators.js:8 +msgid "Open Translation Community" +msgstr "Abrir Comunidad de Traducciones" + +#: src/js/controllers/onboarding/terms.js:22 +msgid "Open Website" +msgstr "Abrir Sitio Web" + +#: www/views/tab-receive.html:36 msgid "Open wallet" -msgstr "Abrir monedero" +msgstr "Abrir billetera" -#: www/views/bitpayCardIntro.html:34 +#: www/views/bitpayCardIntro.html:34 msgid "Order the BitPay Card" msgstr "Solicitar tarjeta de BitPay" -#: www/views/tab-import-file.html:18 -#: www/views/tab-import-phrase.html:36 +#: www/views/join.html:100 +#: www/views/join.html:93 +#: www/views/tab-create-personal.html:64 +#: www/views/tab-create-personal.html:70 +#: www/views/tab-create-shared.html:100 +#: www/views/tab-create-shared.html:94 +#: www/views/tab-import-file.html:18 +#: www/views/tab-import-phrase.html:36 msgid "Password" msgstr "Contraseña" -#: src/js/controllers/import.js:63 +#: src/js/controllers/import.js:64 msgid "Password required. Make sure to enter your password in advanced options" -msgstr "Contraseña necesaria. Asegúrese de introducir su contraseña en opciones avanzadas" +msgstr "Se requiere contraseña. Asegúrate de introducirla en opciones avanzadas" -#: www/views/join.html:35 +#: www/views/join.html:33 msgid "Paste invitation here" msgstr "Pegar invitación aquí" -#: www/views/tab-import-file.html:13 +#: www/views/tab-import-file.html:13 msgid "Paste the backup plain text code" msgstr "Pegar copia de seguridad en texto plano" -#: www/views/bitpayCardIntro.html:28 +#: www/views/bitpayCardIntro.html:28 msgid "Pay 0% fees to turn bitcoin into dollars." msgstr "Paga 0% de comisión para transformar tus bitcoin en dólares." -#: www/views/modals/paypro.html:21 +#: www/views/modals/paypro.html:18 msgid "Pay To" msgstr "Pagar A" -#: www/views/modals/tx-status.html:33 +#: www/views/modals/tx-status.html:33 msgid "Payment Accepted" msgstr "Pago Aceptado" -#: www/views/confirm.html:28 +#: www/views/confirm.html:28 msgid "Payment Expires:" msgstr "Pago expira:" -#: www/views/modals/txp-details.html:6 +#: www/views/modals/txp-details.html:6 msgid "Payment Proposal" msgstr "Propuesta de Pago" -#: www/views/modals/tx-status.html:21 +#: www/views/modals/tx-status.html:21 msgid "Payment Proposal Created" msgstr "Propuesta de Pago Creada" -#: www/views/tab-home.html:36 +#: www/views/tab-home.html:36 msgid "Payment Proposals" msgstr "Propuestas de Pago" -#: src/js/services/payproService.js:42 +#: src/js/services/payproService.js:42 msgid "Payment Protocol Invalid" msgstr "Protocolo de Pago Inválido" -#: src/js/services/payproService.js:18 +#: src/js/services/payproService.js:18 msgid "Payment Protocol not supported on Chrome App" msgstr "El protocolo de pago no está soportado en Chrome" -#: www/views/includes/walletActivity.html:20 +#: www/views/includes/walletActivity.html:20 msgid "Payment Received" msgstr "Pago recibido" -#: www/views/modals/tx-status.html:43 -#: www/views/modals/txp-details.html:43 +#: www/views/modals/tx-status.html:43 +#: www/views/modals/txp-details.html:43 msgid "Payment Rejected" msgstr "Pago Rechazado" -#: www/views/includes/walletActivity.html:11 -#: www/views/modals/txp-details.html:42 +#: www/views/confirm.html:140 +#: www/views/includes/walletActivity.html:11 +#: www/views/modals/txp-details.html:182 +#: www/views/modals/txp-details.html:42 msgid "Payment Sent" msgstr "Pago Enviado" -#: www/views/modals/txp-details.html:32 +#: www/views/modals/txp-details.html:32 msgid "Payment accepted, but not yet broadcasted" msgstr "Pago aceptado, pero aún no fue enviado" -#: www/views/modals/txp-details.html:40 +#: www/views/modals/txp-details.html:40 msgid "Payment accepted. It will be broadcasted by Glidera. In case there is a problem, it can be deleted 6 hours after it was created." -msgstr "Pago aceptado. Se transmitirá por Glidera. En caso de que haya un problema, puede eliminar la transacción 6 horas después de fue creada." +msgstr "Pago aceptado. Se transmitirá por Glidera. En caso de que haya un problema, puedes eliminar la transacción 6 horas después de fue creada." -#: www/views/modals/txp-details.html:102 +#: www/views/modals/txp-details.html:102 msgid "Payment details" msgstr "Detalles del pago" -#: www/views/modals/paypro.html:6 +#: www/views/modals/paypro.html:6 msgid "Payment request" msgstr "Solicitud de pago" -#: www/views/bitpayCard.html:99 +#: www/views/bitpayCard.html:99 msgid "Pending" msgstr "Pendiente" -#: www/views/proposals.html:5 +#: www/views/proposals.html:5 msgid "Pending Proposals" msgstr "Propuestas de pago pendientes" -#: www/views/preferencesDeleteWallet.html:11 +#: www/views/preferencesDeleteWallet.html:11 msgid "Permanently delete this wallet." -msgstr "Eliminar este monedero de forma permanente." +msgstr "Eliminar esta billetera de forma permanente." -#: src/js/services/profileService.js:416 +#: src/js/services/profileService.js:416 msgid "Personal Wallet" -msgstr "Monedero Personal" +msgstr "Billetera Personal" -#: www/views/backup.html:18 +#: www/views/backup.html:18 msgid "Please carefully write down this phrase." -msgstr "Por favor, escriba con atención esta frase." +msgstr "Por favor, anota cuidadosamente esta frase." -#: www/views/tab-scan.html:20 +#: www/views/tab-scan.html:20 msgid "Please connect a camera to get started." -msgstr "Por favor, conecte una cámara para empezar." +msgstr "Por favor, conecta una cámara para empezar." -#: src/js/controllers/import.js:239 +#: src/js/controllers/import.js:240 msgid "Please enter the recovery phrase" -msgstr "Por favor ingrese la frase de recuperación" +msgstr "Por favor ingresa la frase de recuperación" -#: src/js/controllers/create.js:101 -#: src/js/controllers/join.js:86 +#: src/js/controllers/create.js:109 +#: src/js/controllers/join.js:93 msgid "Please enter the required fields" -msgstr "Por favor ingrese los campos requeridos" +msgstr "Por favor ingresa los campos requeridos" -#: src/js/controllers/create.js:142 -#: src/js/controllers/join.js:122 +#: src/js/controllers/create.js:150 +#: src/js/controllers/join.js:129 msgid "Please enter the wallet recovery phrase" -msgstr "Por favor ingrese la frase de recuperación del monedero" +msgstr "Por favor ingresa la frase de recuperación de la billetera" -#: www/views/backup.html:46 +#: www/views/backup.html:46 msgid "Please tap each word in the correct order." -msgstr "Por favor, pulse cada palabra en el orden correcto." +msgstr "Escoje las palabras en el orden correcto." -#: src/js/services/bwcError.js:101 +#: src/js/services/bwcError.js:101 msgid "Please upgrade Copay to perform this action" -msgstr "Por favor actualice Copay para realizar esta acción" +msgstr "Por favor actualiza Copay para realizar esta acción" -#: src/js/controllers/confirm.js:453 +#: src/js/controllers/confirm.js:465 msgid "Please, enter the code below" -msgstr "Por favor, introduzca el código" +msgstr "Por favor, introduce el código" -#: src/js/controllers/import.js:201 +#: src/js/controllers/import.js:202 msgid "Please, select your backup file" -msgstr "Por favor, seleccione el archivo de copia de seguridad" +msgstr "Por favor, selecciona el archivo de copia de seguridad" -#: www/views/tab-settings.html:47 +#: www/views/tab-settings.html:47 msgid "Preferences" msgstr "Preferencias" -#: src/js/services/onGoingProcess.js:39 +#: src/js/services/onGoingProcess.js:39 msgid "Preparing addresses..." msgstr "Preparando direcciones..." -#: src/js/controllers/export.js:182 +#: src/js/controllers/export.js:182 msgid "Preparing backup..." msgstr "Preparando copia de seguridad..." -#: src/js/routes.js:1099 +#: src/js/routes.js:1099 msgid "Press again to exit" msgstr "Presione nuevamente para salir" -#: src/js/services/feeService.js:8 +#: src/js/services/feeService.js:8 msgid "Priority" msgstr "Prioritario" -#: src/js/controllers/paperWallet.js:142 +#: src/js/controllers/paperWallet.js:142 msgid "Private key encrypted. Enter password" -msgstr "Clave privada cifrada. Escriba la contraseña" +msgstr "La clave privada está encriptada. Escriba la contraseña" -#: src/js/services/bwcError.js:35 +#: src/js/services/bwcError.js:35 msgid "Private key is encrypted, cannot sign" -msgstr "La clave privada esta encriptada, no puede firmar" +msgstr "La clave privada está encriptada, no puedes firmar" -#: www/views/includes/walletActivity.html:51 +#: www/views/includes/walletActivity.html:51 msgid "Proposal Accepted" msgstr "Propuesta Aceptada" -#: src/js/controllers/modals/txpDetails.js:38 -#: src/js/controllers/tx-details.js:64 +#: src/js/controllers/modals/txpDetails.js:38 +#: src/js/controllers/tx-details.js:64 +#: www/views/confirm.html:141 msgid "Proposal Created" msgstr "Propuesta Creada" -#: www/views/includes/walletActivity.html:27 +#: www/views/includes/walletActivity.html:27 msgid "Proposal Deleted" msgstr "Propuesta Eliminada" -#: www/views/includes/walletActivity.html:35 +#: www/views/includes/walletActivity.html:35 msgid "Proposal Rejected" msgstr "Propuesta Rechazada" -#: www/views/walletDetails.html:164 +#: www/views/walletDetails.html:181 msgid "Proposals" msgstr "Propuestas" -#: www/views/onboarding/notifications.html:3 +#: www/views/onboarding/notifications.html:3 msgid "Push Notifications" msgstr "Notificaciones Push" -#: www/views/preferencesNotifications.html:19 +#: www/views/preferencesNotifications.html:19 msgid "Push notifications for {{appName}} are currently disabled. Enable them in the Settings app." msgstr "Notificaciones push para {{appName}} están deshabilitadas. Habilitarla en la configuración de la aplicación." -#: www/views/export.html:14 +#: www/views/export.html:14 msgid "QR Code" msgstr "Código QR" -#: www/views/onboarding/disclaimer.html:13 +#: www/views/onboarding/disclaimer.html:13 msgid "Quick review!" msgstr "¡Revisión rápida!" -#: src/js/controllers/create.js:70 -#: src/js/controllers/join.js:53 +#: src/js/controllers/create.js:69 +#: src/js/controllers/join.js:53 msgid "Random" msgstr "Al azar" -#: www/views/feedback/rateApp.html:14 +#: www/views/feedback/rateApp.html:14 msgid "Rate on the app store" msgstr "Califica en la app store" -#: www/views/addresses.html:43 +#: www/views/addresses.html:49 msgid "Read less" msgstr "Mostrar menos" -#: www/views/addresses.html:42 +#: www/views/addresses.html:48 msgid "Read more" msgstr "Leer más" -#: www/views/tab-receive.html:3 -#: www/views/tabs.html:7 +#: www/views/tab-receive.html:3 +#: www/views/tabs.html:7 msgid "Receive" msgstr "Recibir" -#: www/views/modals/search.html:51 -#: www/views/walletDetails.html:220 +#: www/views/modals/search.html:51 +#: www/views/tx-details.html:18 +#: www/views/walletDetails.html:237 msgid "Received" msgstr "Recibido" -#: src/js/controllers/tx-details.js:23 +#: src/js/controllers/tx-details.js:23 msgid "Received Funds" msgstr "Fondos recibidos" -#: www/views/walletDetails.html:242 +#: www/views/walletDetails.html:259 msgid "Receiving" msgstr "Recibiendo" -#: www/views/bitpayCard.html:55 -#: www/views/walletDetails.html:199 +#: www/views/bitpayCard.html:55 +#: www/views/walletDetails.html:216 msgid "Recent" msgstr "Recientes" -#: www/views/advancedSettings.html:48 +#: www/views/advancedSettings.html:48 msgid "Recent Transaction Card" -msgstr "Tarjeta con Transacciones Recientes" +msgstr "Tarjeta con transacciones recientes" -#: www/views/activity.html:4 -#: www/views/tab-home.html:48 +#: www/views/activity.html:4 +#: www/views/tab-home.html:48 msgid "Recent Transactions" msgstr "Transacciones Recientes" -#: www/views/amount.html:18 -#: www/views/tab-send.html:22 +#: www/views/amount.html:18 +#: www/views/tab-send.html:22 msgid "Recipient" msgstr "Destinatario" -#: www/views/modals/txp-details.html:62 +#: www/views/modals/txp-details.html:62 msgid "Recipients" msgstr "Destinatarios" -#: www/views/import.html:12 +#: www/views/import.html:12 msgid "Recovery phrase" msgstr "Frase de Recuperación" -#: www/views/walletDetails.html:114 -#: www/views/walletDetails.html:35 +#: www/views/walletDetails.html:122 +#: www/views/walletDetails.html:36 msgid "Recreate" msgstr "Recrear" -#: src/js/services/onGoingProcess.js:25 +#: src/js/services/onGoingProcess.js:25 msgid "Recreating Wallet..." -msgstr "Recreando Monedero..." +msgstr "Recreando billetera..." -#: src/js/controllers/modals/txpDetails.js:40 -#: src/js/controllers/tx-details.js:66 +#: src/js/controllers/modals/txpDetails.js:40 +#: src/js/controllers/tx-details.js:66 msgid "Rejected" msgstr "Rechazado" -#: src/js/services/onGoingProcess.js:26 +#: src/js/services/onGoingProcess.js:26 msgid "Rejecting payment proposal" msgstr "Rechazando propuesta de pago" -#: www/views/preferencesAbout.html:9 +#: www/views/preferencesAbout.html:9 msgid "Release information" msgstr "Información de la versión" -#: www/views/tab-export-file.html:16 +#: www/views/tab-export-file.html:16 msgid "Repeat password" -msgstr "Escriba nuevamente la contraseña" +msgstr "Escribe nuevamente la contraseña" -#: www/views/tab-export-file.html:15 +#: www/views/tab-export-file.html:15 msgid "Repeat the password" msgstr "Repetir la contraseña" -#: www/views/includes/password.html:5 +#: www/views/includes/password.html:5 msgid "Repeat the spending password" -msgstr "Repetir la contraseña para enviar" +msgstr "Repetir la contraseña para pagos" -#: www/views/preferences.html:51 +#: www/views/preferences.html:51 msgid "Request Fingerprint" msgstr "Solicitar Huella Digital" -#: src/js/controllers/tab-receive.js:153 +#: www/views/addresses.html:30 msgid "Request Specific amount" msgstr "Solicitar importe Especifico" -#: www/views/preferences.html:46 +#: www/views/preferences.html:46 msgid "Request Spending Password" -msgstr "Solicitar contraseña para enviar" +msgstr "Solicitar contraseña para pagos" -#: www/views/tab-create-shared.html:42 +#: www/views/tab-create-shared.html:42 msgid "Required number of signatures" msgstr "Número requerido de firmas" -#: www/views/onboarding/welcome.html:10 +#: www/views/onboarding/welcome.html:10 msgid "Restore from backup" msgstr "Restaurar desde copia de seguridad" -#: src/js/services/onGoingProcess.js:28 +#: src/js/services/onGoingProcess.js:28 msgid "Retrieving inputs information" msgstr "Recuperando información de las entradas" -#: src/js/controllers/onboarding/tour.js:59 +#: src/js/controllers/onboarding/tour.js:59 msgid "Retry" msgstr "Vuelva a intentarlo" -#: www/views/includes/password.html:31 +#: www/views/tab-scan.html:23 +msgid "Retry Camera" +msgstr "Reintentar" + +#: www/views/includes/password.html:31 msgid "SET" msgstr "ESTABLECER" -#: www/views/addressbook.add.html:58 -#: www/views/includes/note.html:9 -#: www/views/preferencesAlias.html:21 -#: www/views/preferencesBwsUrl.html:18 -#: www/views/preferencesNotifications.html:42 +#: www/views/addressbook.add.html:56 +#: www/views/includes/note.html:9 +#: www/views/preferencesAlias.html:21 +#: www/views/preferencesBwsUrl.html:23 +#: www/views/preferencesNotifications.html:42 msgid "Save" msgstr "Guardar" -#: www/views/tab-scan.html:3 -#: www/views/tabs.html:11 +#: www/views/tab-scan.html:3 +#: www/views/tabs.html:11 msgid "Scan" msgstr "Escanear" -#: www/views/tab-scan.html:15 +#: www/views/tab-scan.html:15 msgid "Scan QR Codes" msgstr "Escanear Código QR" -#: src/js/controllers/addresses.js:119 +#: www/views/addresses.html:38 msgid "Scan addresses for funds" msgstr "Busca direcciones con fondos" -#: www/views/walletDetails.html:39 +#: www/views/walletDetails.html:40 msgid "Scan status finished with error" msgstr "La búsqueda finalizó con error" -#: src/js/services/fingerprintService.js:56 +#: src/js/services/fingerprintService.js:56 msgid "Scan your fingerprint please" msgstr "Por favor ingrese su huella digital" -#: src/js/services/onGoingProcess.js:29 +#: src/js/services/onGoingProcess.js:29 msgid "Scanning Wallet funds..." -msgstr "Buscando fondos en el Monedero..." +msgstr "Buscando fondos en la billetera..." -#: www/views/includes/backupWarningPopup.html:2 -#: www/views/includes/screenshotWarningModal.html:7 +#: www/views/includes/screenshotWarningModal.html:7 msgid "Screenshots are not secure" -msgstr "Capturas de pantallas no son seguras" +msgstr "Las capturas de pantallas no son seguras" -#: www/views/modals/search.html:6 +#: www/views/modals/search.html:6 msgid "Search Transactions" msgstr "Buscar transacciones" -#: www/views/tab-send.html:26 +#: www/views/tab-send.html:26 msgid "Search or enter bitcoin address" msgstr "Buscar o introducir dirección bitcoin" -#: www/views/modals/search.html:16 +#: www/views/modals/search.html:16 msgid "Search transactions" msgstr "Buscar transacciones" -#: www/views/preferences.html:37 +#: www/views/preferencesAltCurrency.html:14 +msgid "Search your currency" +msgstr "Busca tu moneda" + +#: www/views/preferences.html:37 msgid "Security" msgstr "Seguridad" -#: www/views/tab-import-file.html:7 +#: www/views/tab-import-file.html:7 msgid "Select a backup file" msgstr "Seleccionar el archivo de copia de seguridad" -#: www/views/paymentUri.html:30 +#: www/views/paymentUri.html:30 msgid "Select a wallet" -msgstr "Seleccionar un monedero" +msgstr "Seleccionar una billetera" -#: www/views/modals/paypro.html:38 +#: www/views/modals/paypro.html:38 msgid "Self-signed Certificate" msgstr "Certificado autofirmado" -#: src/js/services/onGoingProcess.js:42 +#: src/js/services/onGoingProcess.js:42 msgid "Selling Bitcoin..." msgstr "Vendiendo Bitcoins..." -#: www/views/feedback/send.html:13 -#: www/views/feedback/send.html:43 -#: www/views/tab-send.html:3 -#: www/views/tabs.html:15 +#: www/views/feedback/send.html:13 +#: www/views/feedback/send.html:43 +#: www/views/tab-send.html:3 +#: www/views/tabs.html:15 msgid "Send" msgstr "Enviar" -#: www/views/feedback/send.html:3 -#: www/views/tab-settings.html:36 +#: www/views/feedback/send.html:3 +#: www/views/tab-settings.html:36 msgid "Send Feedback" msgstr "Enviar Sugerencia" -#: www/views/addressbook.view.html:27 +#: www/views/addressbook.view.html:27 msgid "Send Money" msgstr "Enviar dinero" -#: src/js/controllers/addresses.js:124 +#: www/views/allAddresses.html:14 msgid "Send addresses by email" msgstr "Enviar las direcciones por email" -#: www/views/includes/confirm-tx.html:3 +#: www/views/includes/confirm-tx.html:3 msgid "Send bitcoin" msgstr "Enviar bitcoin" -#: www/views/preferencesLogs.html:15 -#: www/views/tab-export-file.html:80 +#: www/views/preferencesLogs.html:15 +#: www/views/tab-export-file.html:80 msgid "Send by email" msgstr "Enviar por correo electrónico" -#: src/js/controllers/confirm.js:247 +#: src/js/controllers/confirm.js:255 msgid "Send from" msgstr "Enviar desde" -#: src/js/controllers/amount.js:97 +#: www/views/includes/itemSelector.html:8 msgid "Send max amount" msgstr "Enviar la máxima cantidad" -#: www/views/feedback/rateApp.html:17 +#: www/views/feedback/rateApp.html:17 msgid "Send us feedback instead" -msgstr "En su lugar, enviar sugerencia" +msgstr "En su lugar, enviar comentario" -#: www/views/confirm.html:15 -#: www/views/includes/txp.html:14 -#: www/views/modals/txp-details.html:19 -#: www/views/walletDetails.html:241 +#: www/views/confirm.html:15 +#: www/views/includes/txp.html:14 +#: www/views/modals/txp-details.html:19 +#: www/views/walletDetails.html:258 msgid "Sending" msgstr "Enviando" -#: src/js/services/onGoingProcess.js:40 +#: src/js/services/onGoingProcess.js:40 msgid "Sending 2FA code..." msgstr "Enviando código 2FA..." -#: src/js/services/onGoingProcess.js:36 +#: src/js/services/onGoingProcess.js:36 msgid "Sending feedback..." -msgstr "Enviando sugerencia..." +msgstr "Enviando comentario..." -#: www/views/confirm.html:16 +#: www/views/confirm.html:16 msgid "Sending maximum amount" msgstr "Enviando cantidad máxima" -#: src/js/services/onGoingProcess.js:30 +#: src/js/services/onGoingProcess.js:30 msgid "Sending transaction" msgstr "Enviando transacción" -#: src/js/controllers/confirm.js:505 +#: src/js/controllers/confirm.js:509 msgid "Sending {{amountStr}} from your {{name}} wallet" -msgstr "Enviando {{amountStr}} desde tu monedero {{name}}" +msgstr "Enviando {{amountStr}} desde tu billetera {{name}}" -#: www/views/modals/search.html:60 -#: www/views/modals/tx-status.html:9 -#: www/views/walletDetails.html:229 +#: www/views/modals/search.html:60 +#: www/views/modals/tx-status.html:9 +#: www/views/tx-details.html:17 +#: www/views/walletDetails.html:246 msgid "Sent" msgstr "Enviado" -#: src/js/controllers/tx-details.js:22 +#: src/js/controllers/tx-details.js:22 msgid "Sent Funds" msgstr "Fondos enviados" -#: src/js/services/bwcError.js:38 +#: src/js/services/bwcError.js:38 msgid "Server response could not be verified" msgstr "La respuesta del servidor no se ha podido verificar" -#: www/views/preferencesLogs.html:3 +#: www/views/preferencesLogs.html:3 msgid "Session Log" msgstr "Registro de sesión" -#: www/views/preferencesAbout.html:40 +#: www/views/preferencesAbout.html:40 msgid "Session log" msgstr "Registro de sesión" -#: www/views/tab-export-file.html:10 +#: www/views/tab-export-file.html:10 msgid "Set up a password" msgstr "Configurar una contraseña" -#: www/views/includes/password.html:4 +#: www/views/includes/password.html:4 msgid "Set up a spending password" -msgstr "Configurar contraseña para enviar" +msgstr "Configura una contraseña para pagos" -#: www/views/tab-settings.html:3 -#: www/views/tabs.html:19 +#: www/views/tab-settings.html:3 +#: www/views/tabs.html:19 msgid "Settings" msgstr "Configuración" -#: www/views/customAmount.html:20 -#: www/views/tab-receive.html:70 -#: www/views/tab-settings.html:43 +#: www/views/customAmount.html:20 +#: www/views/tab-receive.html:65 +#: www/views/tab-settings.html:43 msgid "Share" msgstr "Compartir" -#: www/views/feedback/complete.html:5 +#: www/views/feedback/complete.html:5 msgid "Share BitPay" msgstr "Compartir BitPay" -#: www/views/copayers.html:36 +#: www/views/copayers.html:36 msgid "Share invitation" msgstr "Compartir invitación" -#: www/views/feedback/complete.html:13 -#: www/views/feedback/complete.html:22 +#: www/views/feedback/complete.html:13 +#: www/views/feedback/complete.html:22 msgid "Share the love by inviting your friends." msgstr "Comparte la pasión invitando a tus amigos." -#: www/views/copayers.html:17 +#: www/views/copayers.html:17 msgid "Share this invitation with your copayers" msgstr "Compartir esta invitación con sus copayers" -#: www/views/tab-import-hardware.html:24 +#: www/views/tab-import-hardware.html:24 msgid "Shared Wallet" -msgstr "Monedero Compartido" +msgstr "Billetera Compartida" -#: www/views/join.html:47 -#: www/views/tab-create-personal.html:24 -#: www/views/tab-create-shared.html:54 -#: www/views/tab-export-file.html:22 -#: www/views/tab-import-file.html:27 -#: www/views/tab-import-hardware.html:30 -#: www/views/tab-import-phrase.html:30 +#: www/views/join.html:45 +#: www/views/tab-create-personal.html:24 +#: www/views/tab-create-shared.html:54 +#: www/views/tab-export-file.html:22 +#: www/views/tab-import-file.html:27 +#: www/views/tab-import-hardware.html:30 +#: www/views/tab-import-phrase.html:30 msgid "Show advanced options" msgstr "Mostrar opciones avanzadas" -#: www/views/tab-send.html:17 +#: www/views/tab-send.html:17 msgid "Show bitcoin address" msgstr "Mostrar dirección bitcoin" -#: www/views/tab-send.html:52 +#: www/views/tab-send.html:52 msgid "Show more" msgstr "Ver más" -#: src/js/services/bwcError.js:104 +#: src/js/services/bwcError.js:104 msgid "Signatures rejected by server" msgstr "Firmas rechazadas por el servidor" -#: src/js/services/onGoingProcess.js:31 +#: src/js/services/onGoingProcess.js:31 msgid "Signing transaction" msgstr "Firmando transacción" -#: www/views/onboarding/backupRequest.html:6 +#: www/views/onboarding/backupRequest.html:6 msgid "Since only you control your money, you’ll need to save your backup phrase in case this app is deleted." -msgstr "Ya que sólo usted controla su dinero, necesitará guardar su frase copia de seguridad en caso de que esta aplicación sea eliminada." +msgstr "Ya que sólo tu controlas tu dinero, deberás guardar la copia de seguridad en caso de que esta aplicación sea eliminada." -#: www/views/tab-create-personal.html:94 -#: www/views/tab-create-shared.html:124 +#: www/views/tab-create-personal.html:96 +#: www/views/tab-create-shared.html:126 msgid "Single Address Wallet" -msgstr "Monedero de una sola dirección" +msgstr "Billetera de una sola dirección" -#: www/views/onboarding/collectEmail.html:40 +#: www/views/onboarding/collectEmail.html:40 msgid "Skip" msgstr "Omitir" -#: www/views/translators.html:15 +#: www/views/translators.html:15 msgid "Spanish" msgstr "Español" -#: src/js/controllers/create.js:73 -#: src/js/controllers/join.js:56 +#: src/js/controllers/create.js:72 +#: src/js/controllers/join.js:56 msgid "Specify Recovery Phrase..." msgstr "Especificar la frase de recuperación..." -#: src/js/services/bwcError.js:92 +#: src/js/services/bwcError.js:92 msgid "Spend proposal is not accepted" msgstr "La propuesta de gasto no se ha aceptado" -#: src/js/services/bwcError.js:95 +#: src/js/services/bwcError.js:95 msgid "Spend proposal not found" msgstr "La propuesta de gasto no se ha encontrado" -#: src/js/services/bwcError.js:137 +#: src/js/services/bwcError.js:137 msgid "Spending Password needed" -msgstr "Se necesita la contraseña para enviar" +msgstr "Se necesita la contraseña para pagos" -#: www/views/tab-send.html:11 +#: www/views/tab-send.html:11 msgid "Start sending bitcoin" msgstr "Empezar a enviar bitcoin" -#: src/js/routes.js:112 +#: src/js/routes.js:112 msgid "Starting..." msgstr "Empezando..." -#: src/js/services/feeService.js:11 +#: src/js/services/feeService.js:11 msgid "Super Economy" msgstr "Súper Económico" -#: www/views/paperWallet.html:7 +#: www/views/paperWallet.html:7 msgid "Sweep" msgstr "Importar" -#: www/views/paperWallet.html:3 +#: www/views/paperWallet.html:3 msgid "Sweep paper wallet" -msgstr "Importar monedero en papel" +msgstr "Importar billetera en papel" -#: src/js/services/onGoingProcess.js:32 +#: src/js/services/onGoingProcess.js:32 msgid "Sweeping Wallet..." -msgstr "Leyendo el Monedero..." +msgstr "Leyendo la Billetera..." -#: www/views/preferencesDeleteWallet.html:14 +#: www/views/preferencesDeleteWallet.html:14 msgid "THIS ACTION CANNOT BE REVERSED" msgstr "ESTA ACCIÓN NO SE PUEDE REVERTIR" -#: www/views/onboarding/welcome.html:6 +#: www/views/onboarding/welcome.html:6 msgid "Take control of your money,
get started with bitcoin." -msgstr "Toma control sobre tu dinero,
comienza a utilizar bitcoin." +msgstr "Toma control de tu dinero,
comienza a utilizar bitcoin." -#: www/views/walletDetails.html:128 -#: www/views/walletDetails.html:70 +#: www/views/walletDetails.html:145 +#: www/views/walletDetails.html:65 msgid "Tap and hold to show" msgstr "Tocar y mantener para mostrar" -#: www/views/walletDetails.html:109 -#: www/views/walletDetails.html:30 -#: www/views/walletDetails.html:40 +#: www/views/walletDetails.html:117 +#: www/views/walletDetails.html:31 +#: www/views/walletDetails.html:41 msgid "Tap to retry" msgstr "Toque para reintentar" -#: www/views/tab-settings.html:142 -msgid "Tell a friend" -msgstr "Recomendar a un amigo" - -#: www/views/termsOfUse.html:3 +#: www/views/termsOfUse.html:3 msgid "Terms Of Use" msgstr "Términos de uso" -#: www/views/modals/terms.html:3 -#: www/views/onboarding/disclaimer.html:29 -#: www/views/onboarding/disclaimer.html:44 -#: www/views/preferencesAbout.html:30 +#: www/views/modals/terms.html:3 +#: www/views/onboarding/disclaimer.html:29 +#: www/views/onboarding/disclaimer.html:44 +#: www/views/preferencesAbout.html:30 msgid "Terms of Use" msgstr "Términos de Uso" -#: www/views/tab-create-personal.html:90 +#: www/views/tab-create-personal.html:92 msgid "Testnet" msgstr "Testnet" -#: src/js/controllers/feedback/send.js:27 -#: src/js/controllers/feedback/send.js:70 -#: www/views/feedback/complete.html:16 -#: www/views/feedback/rateApp.html:4 +#: src/js/controllers/feedback/send.js:27 +#: src/js/controllers/feedback/send.js:71 +#: www/views/feedback/complete.html:16 +#: www/views/feedback/rateApp.html:4 msgid "Thank you!" msgstr "¡Gracias!" -#: src/js/controllers/feedback/send.js:66 +#: src/js/controllers/feedback/send.js:67 msgid "Thanks!" msgstr "¡Gracias!" -#: src/js/controllers/feedback/send.js:67 +#: src/js/controllers/feedback/send.js:68 msgid "That's exciting to hear. We'd love to earn that fifth star from you – how could we improve your experience?" -msgstr "Es emocionante escucharlo. Nos encantaría ganar esa quinta estrella de usted – ¿cómo podemos mejorar tu experiencia?" +msgstr "Es emocionante escucharlo. Nos encantaría ganar esa quinta estrella – ¿cómo podemos mejorar tu experiencia?" -#: src/js/services/ledger.js:139 +#: src/js/services/ledger.js:139 msgid "The Ledger Chrome application is not installed" msgstr "La aplicación Ledger de Chrome no esta instalada" -#: www/views/tab-import-phrase.html:5 +#: www/views/modals/wallet-balance.html:55 +msgid "The amount of bitcoin immediately spendable from this wallet." +msgstr "Total de bitcoins disponibles en esta billetera para su uso inmediato." + +#: www/views/modals/wallet-balance.html:93 +msgid "The amount of bitcoin stored in this wallet that is allocated as inputs to your pending transaction proposals. The amount is determined using unspent transaction outputs associated with this wallet and may be more than the actual amounts associated with your pending transaction proposals." +msgstr "La cantidad de bitcoins almacenados en esta billetera que se utilizan como \"inputs\" en la transacción pendiente. Esa cantidad se determina en base a los \"unspent transaction outputs\" asociados con la billetera, estos pueden que sean mayor al monto enviado en la transacción en cuestión." + +#: www/views/modals/wallet-balance.html:74 +msgid "The amount of bitcoin stored in this wallet with less than 1 blockchain confirmation." +msgstr "La cantidad de bitcoins almacenados en esta billetera que poseen menos de 1 confirmación en \"Blockchain\"." + +#: www/views/tab-import-phrase.html:5 msgid "The derivation path" msgstr "La ruta de derivación" -#: www/views/onboarding/tour.html:32 +#: www/views/onboarding/tour.html:32 msgid "The exchange rate changes with the market." -msgstr "El tipo de cambio varía según el mercado." +msgstr "La cotización varía según el mercado." -#: www/views/preferencesFee.html:12 +#: www/views/preferencesFee.html:12 msgid "The higher the fee, the greater the incentive a miner has to include that transaction in a block. Current fees are determined based on network load and the selected policy." -msgstr "Mientras más grande la comisión, mayor incentivo tiene el minero para agregar tu transacción a un bloque. Las comisiones están determinadas en base a la carga de la red y la política de comisión de la red elegida." +msgstr "Mientras más grande la comisión, mayor incentivo tiene el minero para agregar tu transacción a un bloque. Las comisiones están determinadas en base al tráfico y política de la red elegida." -#: www/views/addresses.html:42 +#: www/views/addresses.html:48 msgid "The maximum number of consecutive unused addresses (20) has been reached. When one of your unused addresses receives a payment, a new address will be generated and shown in your Receive tab." -msgstr "Se ha alcanzado el número máximo de direcciones no utilizados consecutivas (20). Cuando una de sus direcciones reciba un pago, una nueva dirección se generará y se mostrará en la pestaña 'Recibir'." +msgstr "Se ha alcanzado el número máximo de direcciones consecutivas sin utilizar (20). Cuando una de sus direcciones reciba un pago, una nueva dirección se generará y se mostrará en la pestaña 'Recibir'." -#: www/views/tab-import-phrase.html:4 +#: src/js/controllers/onboarding/terms.js:21 +msgid "The official English Terms of Service are available on the BitPay website." +msgstr "Los términos y condiciones oficiales en inglés se encuentran disponibles en la web de BitPay." + +#: www/views/tab-import-phrase.html:4 msgid "The password of the recovery phrase (if set)" msgstr "La contraseña de la frase de recuperación (si existe)" -#: src/js/services/walletService.js:951 +#: src/js/services/walletService.js:934 msgid "The payment was created but could not be completed. Please try again from home screen" -msgstr "El pago fue creado pero no se pudo completar. Por favor intente nuevamente desde la pantalla de inicio" +msgstr "El pago fue creado pero no se pudo completar. Por favor intenta nuevamente desde la pantalla de inicio" -#: www/views/modals/txp-details.html:26 +#: www/views/modals/txp-details.html:26 msgid "The payment was removed by creator" msgstr "El pago fue eliminado por el creador" -#: www/views/join.html:101 -#: www/views/tab-create-personal.html:69 -#: www/views/tab-create-shared.html:99 -#: www/views/tab-import-phrase.html:38 +#: www/views/join.html:88 +#: www/views/tab-create-personal.html:59 +#: www/views/tab-create-shared.html:89 +#: www/views/tab-import-phrase.html:38 msgid "The recovery phrase could require a password to be imported" msgstr "La frase de recuperación podría requerir una contraseña para ser importada" -#: src/js/services/bwcError.js:56 +#: src/js/services/bwcError.js:56 msgid "The request could not be understood by the server" msgstr "La solicitud no pudo ser comprendida por el servidor" -#: www/views/addresses.html:43 +#: www/views/addresses.html:49 msgid "The restore process will stop when 20 addresses are generated in a row which contain no funds. To safely generate more addresses, make a payment to one of the unused addresses which has already been generated." -msgstr "El proceso generación de nuevas direcciones se detendrá cuando 20 direcciones se generan de manera consecutiva. Luego, deberá realizar un pago a una de las direcciones sin uso, para obtener una nueva dirección." +msgstr "El proceso generación de nuevas direcciones se detendrá cuando se generen 20 direcciones de manera consecutiva. Luego deberás recibir un pago en una de las direcciones sin uso para obtener una nueva." -#: src/js/services/bwcError.js:98 +#: src/js/services/bwcError.js:98 msgid "The spend proposal is not pending" msgstr "La propuesta de gasto no esta pendiente" -#: www/views/preferencesHistory.html:26 +#: www/views/modals/wallet-balance.html:36 +msgid "The total amount of bitcoin stored in this wallet." +msgstr "El total de bitcoins almacenados en esta billetera." + +#: www/views/preferencesHistory.html:26 msgid "The transaction history and every new incoming transaction are cached in the app. This feature clean this up and synchronizes again from the server" msgstr "El historial de transacciones y cada nueva transacción entrantes se almacenan en caché en la aplicación. Esta característica limpia y sincroniza otra vez desde el servidor" -#: www/views/tab-import-phrase.html:6 +#: www/views/tab-import-phrase.html:6 msgid "The wallet service URL" msgstr "URL de Wallet Service" -#: www/views/paymentUri.html:23 +#: www/views/paymentUri.html:23 msgid "There are no wallets to make this payment" -msgstr "No dispone de monederos para realizar este pago" +msgstr "No dispone de billeteras para realizar este pago" -#: src/js/controllers/import.js:192 -#: src/js/controllers/import.js:216 -#: src/js/controllers/import.js:283 +#: src/js/controllers/import.js:193 +#: src/js/controllers/import.js:217 +#: src/js/controllers/import.js:284 msgid "There is an error in the form" msgstr "Hay un error en el formulario" -#: src/js/controllers/feedback/send.js:55 -#: src/js/controllers/feedback/send.js:59 +#: src/js/controllers/feedback/send.js:56 +#: src/js/controllers/feedback/send.js:60 msgid "There's obviously something we're doing wrong." msgstr "Obviamente hay algo que estamos haciendo mal." -#: www/views/advancedSettings.html:42 +#: www/views/advancedSettings.html:42 msgid "These features aren't quite ready for primetime. They may change, stop working, or disappear at any time." -msgstr "Estas características no están absolutamente listas por el momento. Pueden cambiar, dejar de trabajar o desaparecer en cualquier momento." +msgstr "Estas características no están listas por el momento. Pueden cambiar, fallar o desaparecer en cualquier momento." -#: www/views/advancedSettings.html:57 +#: www/views/advancedSettings.html:57 msgid "These features make it easier to test complex functionality on all devices. They may be unstable." msgstr "Estas características hacen más fácil de probar la funcionalidad compleja en todos los dispositivos. Pueden ser inestables." -#: www/views/advancedSettings.html:73 -msgid "These utilities may be unstable. Proceed at your own risk." -msgstr "Estas utilidades pueden ser inestables. Proceda bajo su propio riesgo." - -#: src/js/controllers/feedback/rateCard.js:37 +#: src/js/controllers/feedback/rateCard.js:37 msgid "This app is fantastic!" msgstr "¡Esta aplicación es fantástica!" -#: www/views/onboarding/tour.html:42 +#: www/views/onboarding/tour.html:42 msgid "This app stores your bitcoin with cutting-edge security." -msgstr "Esta aplicación almacena su bitcoin con seguridad avanzada." +msgstr "Esta aplicación almacena tus bitcoins con seguridad avanzada." -#: src/js/controllers/confirm.js:438 +#: src/js/controllers/confirm.js:450 msgid "This bitcoin payment request has expired." msgstr "Esta solicitud de pago ha caducado." -#: www/views/join.html:108 -#: www/views/tab-create-personal.html:75 -#: www/views/tab-create-shared.html:105 +#: www/views/join.html:108 +#: www/views/tab-create-personal.html:77 +#: www/views/tab-create-shared.html:107 msgid "This password cannot be recovered. If the password is lost, there is no way you could recover your funds." -msgstr "Esta contraseña no puede ser recuperada. Si pierde la contraseña, no hay ninguna manera de que pueda recuperar sus fondos." +msgstr "Esta contraseña no se puede recuperar. Si la pierdes, no hay manera de que puedas recuperar los fondos." -#: www/views/backup.html:24 +#: www/views/backup.html:24 msgid "This recovery phrase was created with a password. To recover this wallet both the recovery phrase and password are needed." -msgstr "Esta frase de recuperación fue creada con una contraseña. Para recuperar este monedero, la frase de recuperación y la contraseña son necesarios." +msgstr "Esta frase de recuperación fue creada con una contraseña. Para recuperar esta billetera, la frase de recuperación y la contraseña son necesarios." -#: www/views/walletDetails.html:113 -#: www/views/walletDetails.html:34 +#: www/views/walletDetails.html:121 +#: www/views/walletDetails.html:35 msgid "This wallet is not registered at the given Bitcore Wallet Service (BWS). You can recreate it from the local information." -msgstr "Este monedero no esta registrado en el servidor de Bitcore Wallet Service (BWS). Debe recrearlo con la información local disponible." +msgstr "Esta billetera no está registrada en el servidor de Bitcore Wallet Service (BWS). Debes re-crearla con la información local disponible." -#: www/views/modals/txp-details.html:131 -#: www/views/tx-details.html:91 +#: www/views/modals/txp-details.html:131 +#: www/views/tx-details.html:93 msgid "Timeline" msgstr "Línea de tiempo" -#: www/views/confirm.html:33 -#: www/views/confirm.html:61 -#: www/views/includes/output.html:2 -#: www/views/modals/txp-details.html:104 -#: www/views/modals/txp-details.html:53 -#: www/views/tx-details.html:37 -#: www/views/tx-details.html:49 +#: www/views/confirm.html:33 +#: www/views/includes/output.html:2 +#: www/views/modals/txp-details.html:104 +#: www/views/modals/txp-details.html:53 +#: www/views/tx-details.html:39 +#: www/views/tx-details.html:51 msgid "To" msgstr "Para" -#: www/views/tab-send.html:12 +#: www/views/tab-send.html:12 msgid "To get started, buy bitcoin or share your address. You can receive bitcoin from any wallet or service." -msgstr "Para empezar, compra bitcoin o comparte tu dirección. Puedes recibir bitcoin desde cualquier monedero o servicio." +msgstr "Para empezar, compra bitcoin o comparte tu dirección. Puedes recibir bitcoin desde cualquier billetera o servicio." -#: www/views/tab-send.html:13 +#: www/views/tab-send.html:13 msgid "To get started, you'll need to create a bitcoin wallet and get some bitcoin." -msgstr "Para empezar, usted necesitará crear un monedero bitcoin y obtener bitcoins." +msgstr "Para empezar, necesitarás crear una billetera y obtener bitcoins." -#: www/views/walletDetails.html:171 +#: www/views/modals/wallet-balance.html:23 +msgid "Total" +msgstr "Total" + +#: www/views/walletDetails.html:188 msgid "Total Locked Balance" msgstr "Balance Total Bloqueado" -#: www/views/tab-create-shared.html:33 +#: www/views/tab-create-shared.html:33 msgid "Total number of copayers" msgstr "Número total de copayers" -#: src/js/services/fingerprintService.js:63 -#: src/js/services/fingerprintService.js:68 +#: src/js/services/fingerprintService.js:63 +#: src/js/services/fingerprintService.js:68 msgid "Touch ID Failed" msgstr "Falló Touch ID" -#: src/js/controllers/tx-details.js:6 +#: src/js/controllers/tx-details.js:6 msgid "Transaction" msgstr "Transacción" -#: www/views/preferencesAdvanced.html:24 -#: www/views/preferencesHistory.html:3 +#: www/views/preferencesAdvanced.html:24 +#: www/views/preferencesHistory.html:3 msgid "Transaction History" msgstr "Historial de Transacciones" -#: src/js/services/bwcError.js:83 +#: src/js/services/bwcError.js:83 msgid "Transaction already broadcasted" msgstr "La transacción ya fue enviada" -#: src/js/controllers/activity.js:45 -#: src/js/controllers/tab-home.js:154 -#: src/js/controllers/tx-details.js:18 +#: www/views/confirm.html:142 +msgid "Transaction created" +msgstr "Transacción creada" + +#: src/js/controllers/activity.js:45 +#: src/js/controllers/tab-home.js:166 +#: src/js/controllers/tx-details.js:18 msgid "Transaction not found" msgstr "Transacción no encontrada" -#: www/views/tab-send.html:61 +#: www/views/tab-send.html:61 msgid "Transfer to Wallet" -msgstr "Transferir a monedero" +msgstr "Transferir a billetera" -#: www/views/translators.html:9 +#: www/views/translators.html:9 msgid "Translation Credits" msgstr "Créditos de traducción" -#: www/views/preferencesAbout.html:35 -#: www/views/translators.html:3 +#: www/views/preferencesAbout.html:35 +#: www/views/translators.html:3 msgid "Translators" msgstr "Traductores" -#: www/views/bitpayCardIntro.html:18 +#: www/views/bitpayCardIntro.html:18 msgid "Turn bitcoin into dollars, swipe anywhere Visa® is accepted." msgstr "Convierta Bitcoins en Dólares, use Visa®." -#: www/views/tab-import-phrase.html:17 +#: www/views/tab-import-phrase.html:17 msgid "Type the Recovery Phrase (usually 12 words)" -msgstr "Escriba la frase de recuperación (normalmente 12 palabras)" +msgstr "Escribe la frase de recuperación (normalmente 12 palabras)" -#: www/views/modals/search.html:36 -#: www/views/tx-details.html:79 +#: src/js/controllers/backup.js:75 +msgid "Uh oh..." +msgstr "Ouch..." + +#: www/views/modals/search.html:36 +#: www/views/tx-details.html:81 msgid "Unconfirmed" msgstr "Sin confirmar" -#: www/views/preferencesUnit.html:4 +#: www/views/preferencesUnit.html:4 msgid "Unit" msgstr "Unidad" -#: www/views/walletDetails.html:165 +#: www/views/walletDetails.html:182 msgid "Unsent transactions" msgstr "Transacciones no enviadas" -#: www/views/addresses.html:35 +#: www/views/addresses.html:41 msgid "Unused Addresses" msgstr "Direcciones no utilizadas" -#: www/views/addresses.html:41 +#: www/views/addresses.html:47 msgid "Unused Addresses Limit" msgstr "Limite de direcciones sin uso" -#: www/views/proposals.html:15 +#: src/js/controllers/tab-home.js:138 +msgid "Update Available" +msgstr "Actualización Disponible" + +#: www/views/proposals.html:15 msgid "Updating pending proposals. Please stand by" -msgstr "Actualizando propuestas de pago pendientes. Por favor, espere" +msgstr "Actualizando propuestas de pago pendientes. Por favor, espera" -#: www/views/walletDetails.html:189 +#: www/views/walletDetails.html:206 msgid "Updating transaction history. Please stand by." -msgstr "Actualizando el historial de transacciones. Por favor aguarde un momento." +msgstr "Actualizando el historial de transacciones. Por favor aguarda un momento." -#: www/views/activity.html:14 +#: www/views/activity.html:14 msgid "Updating... Please stand by" -msgstr "Actualizando... Por favor, espere" +msgstr "Actualizando... Por favor, espera" -#: www/views/advancedSettings.html:34 +#: www/views/advancedSettings.html:34 msgid "Use Unconfirmed Funds" msgstr "Utilizar los fondos sin confirmar" -#: src/js/services/onGoingProcess.js:34 +#: src/js/services/onGoingProcess.js:34 msgid "Validating recovery phrase..." msgstr "Validando la frase de recuperación..." -#: src/js/services/onGoingProcess.js:33 +#: src/js/services/onGoingProcess.js:33 msgid "Validating wallet integrity..." -msgstr "Validación de integridad del monedero..." +msgstr "Validación de integridad de la billetera..." -#: www/views/preferencesAbout.html:14 +#: www/views/preferencesAbout.html:14 msgid "Version" msgstr "Versión" -#: www/views/tab-export-file.html:67 +#: www/views/tab-export-file.html:67 msgid "View" msgstr "Ver" -#: www/views/addresses.html:66 +#: www/views/addresses.html:34 msgid "View All Addresses" msgstr "Ver todas las direcciones" -#: www/views/tx-details.html:117 +#: src/js/controllers/onboarding/terms.js:20 +msgid "View Terms of Service" +msgstr "Ver Términos de Uso" + +#: src/js/controllers/tx-details.js:126 +msgid "View Transaction on Insight" +msgstr "Ver Transacción en Insight" + +#: src/js/controllers/tab-home.js:140 +msgid "View Update" +msgstr "Ver Actualización" + +#: www/views/tx-details.html:119 msgid "View on blockchain" msgstr "Ver en blockchain" -#: www/views/walletDetails.html:153 +#: www/views/walletDetails.html:170 msgid "WARNING: Key derivation is not working on this device/wallet. Actions cannot be performed on this wallet." -msgstr "ADVERTENCIA: Derivación de la clave no funciona en este dispositivo/monedero. Acciones no pueden realizarse en este monedero." +msgstr "ADVERTENCIA: Derivación de la clave no funciona en este dispositivo/billetera. Acciones no pueden realizarse en esta billetera." -#: www/views/tab-export-file.html:43 +#: www/views/tab-export-file.html:43 msgid "WARNING: Not including the private key allows to check the wallet balance, transaction history, and create spend proposals from the export. However, does not allow to approve (sign) proposals, so funds will not be accessible from the export." -msgstr "ADVERTENCIA: No incluir la clave privada permite verificar el saldo del monedero, historial de transacciones y crear propuestas de gastos. Sin embargo, no permite aprobar propuestas (firmar), así que los fondos no serán accesibles al exportar." +msgstr "ADVERTENCIA: No incluir la clave privada permite verificar el saldo de la billetera, historial de transacciones y crear propuestas de gastos. Sin embargo, no permite aprobar propuestas (firmar), así que los fondos no serán accesibles al exportar." -#: www/views/tab-export-file.html:34 +#: www/views/tab-export-file.html:34 msgid "WARNING: The private key of this wallet is not available. The export allows to check the wallet balance, transaction history, and create spend proposals from the export. However, does not allow to approve (sign) proposals, so funds will not be accessible from the export." -msgstr "ADVERTENCIA: La clave privada de este monedero no está disponible. La exportación permite verificar el saldo del monedero, historial de transacciones y crear propuestas de gastos en la exportación. Sin embargo, no permite aprobar propuestas (firmar), así que los fondos no serán accesibles al exportar." +msgstr "ADVERTENCIA: La clave privada de esta billetera no está disponible. La exportación permite verificar el saldo de la billetera, historial de transacciones y crear propuestas de gastos. Sin embargo, no permite aprobar propuestas (firmar), así que los fondos no serán accesibles al exportar." -#: www/views/modals/paypro.html:42 +#: www/views/modals/paypro.html:42 msgid "WARNING: UNTRUSTED CERTIFICATE" -msgstr "ADVERTENCIA: NO ES DE CONFIANZA EL CERTIFICADO" +msgstr "ADVERTENCIA: EL CERTIFICADO NO ES DE CONFIANZA" -#: src/js/services/onGoingProcess.js:14 +#: src/js/services/onGoingProcess.js:14 msgid "Waiting for Ledger..." msgstr "Esperando a Ledger..." -#: src/js/services/onGoingProcess.js:15 +#: src/js/services/onGoingProcess.js:15 msgid "Waiting for Trezor..." msgstr "Esperando a Trezor..." -#: www/views/copayers.html:48 +#: www/views/copayers.html:48 msgid "Waiting for copayers" msgstr "Esperando a los demás copayers" -#: www/views/copayers.html:53 +#: www/views/copayers.html:53 msgid "Waiting..." msgstr "Esperando..." -#: www/views/addresses.html:3 +#: www/views/addresses.html:3 msgid "Wallet Addresses" -msgstr "Direcciones del Monedero" +msgstr "Direcciones de la billetera" -#: www/views/preferencesColor.html:4 +#: www/views/preferencesColor.html:4 msgid "Wallet Color" -msgstr "Color del Monedero" +msgstr "Color de la billetera" -#: www/views/preferencesInformation.html:23 +#: www/views/preferencesInformation.html:23 msgid "Wallet Configuration (m-n)" -msgstr "Configuración del Monedero (m-n)" +msgstr "Configuración de la billetera (m-n)" -#: www/views/onboarding/collectEmail.html:5 +#: www/views/onboarding/collectEmail.html:5 msgid "Wallet Created" -msgstr "Monedero Creado" +msgstr "Billetera Creada" -#: www/views/preferencesInformation.html:17 +#: www/views/preferencesInformation.html:17 msgid "Wallet Id" -msgstr "Id del Monedero" +msgstr "Id de la Billetera" -#: www/views/preferencesAdvanced.html:12 -#: www/views/preferencesInformation.html:3 +#: www/views/preferencesAdvanced.html:12 +#: www/views/preferencesInformation.html:3 msgid "Wallet Information" -msgstr "Información del Monedero" +msgstr "Información de la Billetera" -#: www/views/join.html:26 +#: www/views/join.html:26 msgid "Wallet Invitation" -msgstr "Invitación para unirse al monedero" +msgstr "Invitación para unirse a la billetera" -#: www/views/join.html:59 -#: www/views/tab-create-personal.html:35 -#: www/views/tab-create-shared.html:65 +#: www/views/join.html:57 +#: www/views/tab-create-personal.html:35 +#: www/views/tab-create-shared.html:65 msgid "Wallet Key" -msgstr "Llave de Monedero" +msgstr "Llave de la billetera" -#: www/views/preferencesAlias.html:4 +#: www/views/preferencesAlias.html:4 msgid "Wallet Name" -msgstr "Nombre del Monedero" +msgstr "Nombre de la billetera" -#: www/views/preferencesInformation.html:11 +#: www/views/preferencesInformation.html:11 msgid "Wallet Name (at creation)" -msgstr "Nombre del Monedero (al crear)" +msgstr "Nombre de la billetera (al crear)" -#: www/views/preferencesInformation.html:29 +#: www/views/preferencesInformation.html:29 msgid "Wallet Network" -msgstr "Red del Monedero" +msgstr "Red de la billetera" -#: www/views/advancedSettings.html:31 +#: www/views/advancedSettings.html:31 msgid "Wallet Operation" -msgstr "Operaciones con tu Monedero" +msgstr "Gestión de la billetera" -#: www/views/join.html:76 -#: www/views/tab-create-personal.html:47 -#: www/views/tab-create-shared.html:77 +#: www/views/join.html:74 +#: www/views/tab-create-personal.html:47 +#: www/views/tab-create-shared.html:77 msgid "Wallet Recovery Phrase" -msgstr "Frase de recuperación del monedero" +msgstr "Frase de recuperación de la billetera" -#: src/js/services/bwcError.js:26 +#: src/js/services/bwcError.js:26 msgid "Wallet Recovery Phrase is invalid" -msgstr "La frase de recuperación es inválida" +msgstr "La frase de recuperación no es válida" -#: www/views/preferencesAdvanced.html:20 +#: www/views/preferencesAdvanced.html:20 msgid "Wallet Service URL" msgstr "Wallet Service URL" -#: www/views/preferences.html:4 +#: www/views/preferences.html:4 msgid "Wallet Settings" -msgstr "Preferencias del Monedero" +msgstr "Preferencias de la billetera" -#: www/views/tab-import-hardware.html:11 +#: www/views/tab-import-hardware.html:11 msgid "Wallet Type" -msgstr "Tipo de monedero" +msgstr "Tipo de billetera" -#: src/js/services/bwcError.js:59 +#: src/js/services/bwcError.js:59 msgid "Wallet already exists" -msgstr "El monedero ya existe" +msgstr "La billetera ya existe" -#: src/js/services/profileService.js:529 +#: src/js/services/profileService.js:529 msgid "Wallet already in Copay" -msgstr "El monedero ya existe en Copay" +msgstr "La billetera ya existe en Copay" -#: www/views/includes/walletActivity.html:6 +#: www/views/includes/walletActivity.html:6 msgid "Wallet created" -msgstr "Monedero Creado" +msgstr "Billetera Creada" -#: www/views/copayers.html:58 +#: www/views/copayers.html:58 msgid "Wallet incomplete and broken" -msgstr "Monedero incompleto y roto" +msgstr "Billetera incompleta y rota" -#: src/js/services/bwcError.js:65 +#: src/js/services/bwcError.js:65 msgid "Wallet is full" -msgstr "El monedero está completo" +msgstr "La billetera está completa" -#: src/js/services/bwcError.js:125 +#: src/js/services/bwcError.js:125 msgid "Wallet is locked" -msgstr "Monedero bloqueado" +msgstr "Billetera bloqueada" -#: src/js/services/bwcError.js:128 +#: src/js/services/bwcError.js:128 msgid "Wallet is not complete" -msgstr "El monedero no esta completo" +msgstr "La billetera no esta completa" -#: www/views/tab-create-personal.html:12 -#: www/views/tab-create-shared.html:12 +#: www/views/tab-create-personal.html:12 +#: www/views/tab-create-shared.html:12 msgid "Wallet name" -msgstr "Nombre del monedero" +msgstr "Nombre de la billetera" -#: src/js/services/bwcError.js:131 +#: src/js/services/bwcError.js:131 msgid "Wallet needs backup" -msgstr "El monedero requiere copia de seguridad" +msgstr "La billetera requiere copia de seguridad" -#: www/views/tab-receive.html:56 -#: www/views/walletDetails.html:145 +#: www/views/tab-receive.html:51 +#: www/views/walletDetails.html:162 msgid "Wallet not backed up" -msgstr "Monedero sin copia de seguridad" +msgstr "Billetera sin copia de seguridad" -#: src/js/services/bwcError.js:68 +#: src/js/services/bwcError.js:68 msgid "Wallet not found" -msgstr "Monedero no encontrado" +msgstr "Billetera no encontrada" -#: src/js/controllers/tab-home.js:199 +#: src/js/controllers/tab-home.js:211 msgid "Wallet not registered" -msgstr "Monedero no registrado" +msgstr "Billetera no registrada" -#: src/js/services/bwcError.js:29 +#: src/js/services/bwcError.js:29 msgid "Wallet not registered at the wallet service. Recreate it from \"Create Wallet\" using \"Advanced Options\" to set your recovery phrase" -msgstr "El monedero no esta registrado en Wallet Service. Para volver a crear, utilice \"Crear Monedero\", \"Opciones avanzadas\" e ingrese la frase de recuperación" +msgstr "La billetera no esta registrado en Wallet Service. Para volver a crear, utilice \"Crear billetera\", \"Opciones avanzadas\" e ingrese la frase de recuperación" -#: www/views/backup.html:11 +#: www/views/backup.html:11 msgid "Wallet recovery phrase not available." -msgstr "Frase de recuperación del monedero no disponible." +msgstr "Frase de recuperación de la billetera no disponible." -#: src/js/services/bwcError.js:50 +#: src/js/services/bwcError.js:50 msgid "Wallet service not found" msgstr "Wallet Service no encontrado" -#: www/views/tab-home.html:58 +#: www/views/tab-home.html:58 msgid "Wallets" -msgstr "Monederos" +msgstr "Billeteras" -#: www/views/tab-settings.html:99 +#: www/views/tab-settings.html:99 msgid "Wallets & Integrations" -msgstr "Monederos & Integraciones" +msgstr "Billeteras & Integraciones" -#: src/js/controllers/modals/txpDetails.js:126 -#: src/js/controllers/modals/txpDetails.js:143 -#: src/js/controllers/preferencesDelete.js:10 -#: www/views/preferencesDeleteWallet.html:9 +#: src/js/controllers/modals/txpDetails.js:126 +#: src/js/controllers/modals/txpDetails.js:143 +#: src/js/controllers/preferencesDelete.js:10 +#: www/views/preferencesDeleteWallet.html:9 msgid "Warning!" msgstr "¡Advertencia!" -#: www/views/modals/txp-details.html:47 +#: www/views/modals/txp-details.html:47 msgid "Warning: this transaction has unconfirmed inputs" msgstr "Advertencia: esta operación tiene entradas sin confirmar" -#: src/js/controllers/feedback/send.js:63 +#: src/js/controllers/onboarding/backupRequest.js:10 +msgid "Watch out!" +msgstr "¡Cuidado!" + +#: src/js/controllers/feedback/send.js:64 msgid "We'd love to do better." msgstr "Nos encantaría hacerlo mejor." -#: www/views/backup.html:28 +#: www/views/backup.html:28 msgid "We'll confirm on the next screen." -msgstr "Confirmamos en la siguiente pantalla." +msgstr "Se confirmará en la siguiente pantalla." -#: src/js/controllers/feedback/send.js:71 +#: src/js/controllers/feedback/send.js:72 msgid "We're always looking for ways to improve BitPay." msgstr "Siempre estamos buscando maneras de mejorar BitPay." -#: src/js/controllers/feedback/send.js:75 +#: src/js/controllers/feedback/send.js:76 msgid "We're always looking for ways to improve BitPay. How could we improve your experience?" -msgstr "Siempre estamos buscando maneras de mejorar BitPay. ¿Cómo podríamos mejorar su experiencia?" +msgstr "Siempre estamos buscando maneras de mejorar BitPay. ¿Cómo podríamos mejorar tu experiencia?" -#: www/views/preferencesLanguage.html:16 -#: www/views/translators.html:23 +#: www/views/preferencesLanguage.html:16 +#: www/views/translators.html:23 msgid "We’re always looking for translation contributions! You can make corrections or help to make this app available in your native language by joining our community on Crowdin." -msgstr "¡Siempre estamos buscando aportes de traducción! Puede hacer correcciones o ayudar a hacer esta aplicación disponible en su idioma nativo al unirse a nuestra comunidad en Crowdin." +msgstr "¡Siempre estamos buscando aportes de traducción! Puedes ayudar a que esta aplicación esté disponible en tu idioma nativo uniéndote a nuestra comunidad en Crowdin." -#: www/views/preferencesAlias.html:11 +#: www/views/preferencesAlias.html:11 msgid "What do you call this wallet?" -msgstr "¿Como desea llamar a este monedero?" +msgstr "¿Como desea llamar a esta billetera?" -#: www/views/preferencesAlias.html:12 +#: www/views/preferencesAlias.html:12 msgid "When this wallet was created, it was called “{{walletName}}”. You can change the name displayed on this device below." -msgstr "Cuando fue creado este monedero, se llamaba “{{walletName}}”. Aquí puede cambiar el nombre que se mostrara en este dispositivo." +msgstr "Cuando fue creado esta billetera, se llamaba “{{walletName}}”. Aquí puede cambiar el nombre que se mostrara en este dispositivo." -#: www/views/onboarding/collectEmail.html:10 +#: www/views/onboarding/collectEmail.html:10 msgid "Where would you like to receive email notifications about payments?" msgstr "¿A donde le gustaría recibir notificaciones por email sobre sus transacciones?" -#: www/views/addresses.html:23 +#: www/views/addresses.html:18 msgid "Why?" msgstr "¿Por qué?" -#: www/views/includes/backupLaterPopup.html:2 -msgid "Without a backup, you could lose money" -msgstr "Sin una copia de seguridad, usted podría perder el dinero" - -#: src/js/controllers/onboarding/backupRequest.js:10 -msgid "Without a backup, you could lose money." -msgstr "Sin una copia de seguridad, usted podría perder dinero." - -#: www/views/feedback/rateApp.html:10 +#: www/views/feedback/rateApp.html:10 msgid "Would you be willing to rate BitPay in the app store?" msgstr "¿Estaría usted dispuesto a opinar sobre BitPay en la app store?" -#: src/js/controllers/bitpayCardIntro.js:31 +#: src/js/controllers/bitpayCardIntro.js:31 msgid "Would you like to add this account ({{email}}) to your wallet?" -msgstr "¿Quieres agregar esta cuenta ({{email}}) a su monedero?" +msgstr "¿Quieres agregar esta cuenta ({{email}}) a su billetera?" -#: www/views/onboarding/notifications.html:4 +#: www/views/onboarding/notifications.html:4 msgid "Would you like to receive push notifications about payments?" msgstr "¿Quieres recibir notificaciones push sobre sus transacciones?" -#: src/js/controllers/import.js:248 +#: src/js/controllers/import.js:249 msgid "Wrong number of recovery words:" msgstr "Número incorrecto de palabras:" -#: src/js/services/bwcError.js:140 +#: src/js/services/bwcError.js:140 msgid "Wrong spending password" -msgstr "Contraseña para enviar incorrecta" +msgstr "Contraseña para pagos incorrecta" -#: www/views/modals/confirmation.html:7 -#: www/views/onboarding/collectEmail.html:32 +#: www/views/modals/confirmation.html:7 +#: www/views/onboarding/collectEmail.html:32 msgid "Yes" msgstr "Si" -#: src/js/controllers/onboarding/backupRequest.js:18 -msgid "Yes, skip backup" -msgstr "Sí, omitir la copia de seguridad" +#: src/js/controllers/onboarding/backupRequest.js:18 +msgid "Yes, skip" +msgstr "Si, omitir" -#: src/js/controllers/onboarding/backupRequest.js:17 +#: src/js/controllers/onboarding/backupRequest.js:17 msgid "You can create a backup later from your wallet settings." -msgstr "Puede crear una copia de seguridad después en las preferencias de su monedero." +msgstr "Puedes hacerlo luego desde las preferencias de la billetera." -#: www/views/tab-scan.html:16 +#: src/js/controllers/preferencesLanguage.js:12 +#: src/js/controllers/translators.js:9 +msgid "You can make contributions by signing up on our Crowdin community translation website. We’re looking forward to hearing from you!" +msgstr "Se pueden hacer contribuciones al registrarse en nuestro proyecto de traducciones en Crowdin. ¡Esperamos tener noticias tuyas!" + +#: www/views/tab-scan.html:16 msgid "You can scan bitcoin addresses, payment requests, paper wallets, and more." -msgstr "Puede scanear direcciones bitcoin, solicitudes de pago, monederos de papel y más." +msgstr "Puedes escanear direcciones bitcoin, solicitudes de pago, billeteras de papel y más." -#: www/views/onboarding/tour.html:14 +#: src/js/controllers/preferencesAbout.js:14 +msgid "You can see the latest developments and contribute to this open source app by visiting our project on GitHub." +msgstr "Puede ver las últimas novedades y contribuir a nuestra aplicación de código abierto visitando nuestro proyecto en GitHub." + +#: www/views/onboarding/tour.html:14 msgid "You can spend bitcoin at millions of websites and stores worldwide." -msgstr "Puede utilizar bitcoins en millones de páginas web y tiendas en todo el mundo." +msgstr "Puedes utilizar bitcoin en millones de páginas web y tiendas en todo el mundo." -#: www/views/backup.html:12 +#: www/views/backup.html:12 msgid "You can still export it from Advanced > Export." msgstr "Todavía puede exportar en Avanzados > Exportar." -#: www/views/onboarding/tour.html:27 +#: www/views/onboarding/tour.html:27 msgid "You can trade it for other currencies like US Dollars, Euros, or Pounds." -msgstr "Puede cambiarlo por otras monedas como Dólares, Euros o Libras." +msgstr "Puedes cambiarlo por otras monedas como Dólares, Euros o Libras." -#: www/views/onboarding/tour.html:41 +#: www/views/onboarding/tour.html:41 msgid "You control your bitcoin." -msgstr "Tú controlas tus bitcoins." +msgstr "Controlas tus bitcoins." -#: www/views/addressbook.html:20 -msgid "You haven’t added any contacts to your address book yet. Get started by adding your first one." -msgstr "Usted aún no ha añadido ningún contacto a su libreta de direcciones. Comenzar agregando el primero de ellos." - -#: www/views/preferencesNotifications.html:30 +#: www/views/preferencesNotifications.html:30 msgid "You'll receive email notifications about payments sent and received from your wallets." -msgstr "Usted recibirá notificaciones por correo electrónico acerca de pagos enviados y recibidos de sus monederos." +msgstr "Recibirás notificaciones por correo electrónico acerca de pagos enviados y recibidos de tus billeteras." -#: www/views/includes/confirmBackupPopup.html:6 +#: www/views/includes/confirmBackupPopup.html:6 msgid "Your bitcoin wallet is backed up!" -msgstr "¡Su monedero bitcoin esta asegurado!" +msgstr "¡Su billetera bitcoin está resguardada!" -#: www/views/tab-home.html:26 +#: www/views/tab-home.html:26 msgid "Your bitcoin wallet is ready!" -msgstr "¡Su monedero bitcoin está listo!" +msgstr "¡Su billetera bitcoin está lista!" -#: www/views/tab-create-shared.html:22 +#: www/views/feedback/send.html:42 +msgid "Your ideas, feedback, or comments" +msgstr "Ideas, sugerencias o comentarios" + +#: www/views/tab-create-shared.html:22 msgid "Your name" msgstr "Nombre" -#: www/views/join.html:16 +#: www/views/join.html:16 msgid "Your nickname" msgstr "Sobrenombre" -#: www/views/tab-export-file.html:11 -#: www/views/tab-import-file.html:20 +#: www/views/tab-export-file.html:11 +#: www/views/tab-import-file.html:20 msgid "Your password" msgstr "Contraseña" -#: www/views/includes/password.html:12 +#: www/views/includes/password.html:12 msgid "Your spending password" -msgstr "Contraseña para enviar" +msgstr "Contraseña para pagos" -#: www/views/onboarding/backupRequest.html:10 +#: www/views/onboarding/backupRequest.html:10 msgid "Your wallet is never saved to cloud storage or standard device backups." -msgstr "Tu monedero nunca se guarda en almacenamientos en la nube o dispositivos para copias de seguridad." +msgstr "Tu billetera nunca se sube a la nube ni se resguarda automáticamente en el dispositivo." -#: www/views/includes/password.html:39 -msgid "Your wallet key will be encrypted. The Spending Password cannot be recovered. Be sure to write it down" -msgstr "La clave del monedero se cifrará. La contraseña para enviar no puede ser recuperada. Asegúrese de escribirla" +#: src/js/services/walletService.js:825 +#: www/views/includes/password.html:39 +msgid "Your wallet key will be encrypted. The Spending Password cannot be recovered. Be sure to write it down." +msgstr "La clave de la billetera será cifrada. La contraseña para pagos no puede ser recuperada. Asegúrate de anotarla." -#: www/views/includes/walletSelector.html:23 -#: www/views/includes/wallets.html:13 -#: www/views/tab-home.html:84 -#: www/views/walletDetails.html:127 -#: www/views/walletDetails.html:69 +#: www/views/includes/walletSelector.html:23 +#: www/views/includes/wallets.html:13 +#: www/views/tab-home.html:84 +#: www/views/walletDetails.html:144 +#: www/views/walletDetails.html:64 msgid "[Balance Hidden]" msgstr "[Balance Oculto]" -#: www/views/tab-receive.html:48 +#: www/views/tab-receive.html:43 msgid "address not yet available" msgstr "dirección no disponible" -#: www/views/includes/backupWarningPopup.html:3 -msgid "if you take a screenshot, your backup may be viewed by others apps. You can make a safe backup with paper and a pen." -msgstr "Si usted toma una captura de pantalla, otras aplicaciones podrían ver su copia de seguridad. La forma más acertada es hacer una copia de seguridad con tinta y papel." - -#: www/views/includes/available-balance.html:8 +#: www/views/includes/available-balance.html:8 msgid "locked by pending payments" msgstr "bloqueado por pagos pendientes" -#: src/js/services/profileService.js:417 +#: src/js/services/profileService.js:417 msgid "me" msgstr "yo" -#: www/views/preferencesHistory.html:14 +#: www/views/addressbook.add.html:32 +msgid "name@example.com" +msgstr "nombre@ejemplo.com" + +#: www/views/preferencesHistory.html:14 msgid "preparing..." msgstr "preparando..." -#: www/views/includes/confirm-tx.html:23 +#: www/views/preferencesBwsUrl.html:19 +msgid "{{appName}} depends on Bitcore Wallet Service (BWS) for blockchain information, networking and Copayer synchronization. The default configuration points to https://bws.bitpay.com (BitPay's public BWS instance)." +msgstr "{{appName}} depende de Bitcore Wallet Service (BWS) para obtener información sobre blockchain y sincronización del Copayer. La configuración por defecto apunta a https://bws.bitpay.com (instancia pública de BitPay)." + +#: www/views/includes/confirm-tx.html:23 msgid "{{feeRateStr}} of the transaction" msgstr "{{feeRateStr}} de la transacción" -#: src/js/controllers/confirm.js:185 +#: src/js/controllers/confirm.js:193 msgid "{{fee}} will be deducted for bitcoin networking fees." msgstr "{{fee}} se descontará por comisión de la red bitcoin." -#: www/views/walletDetails.html:192 +#: www/views/walletDetails.html:209 msgid "{{updatingTxHistoryProgress}} transactions downloaded" msgstr "{{updatingTxHistoryProgress}} transacciones descargadas" -#: www/views/copayers.html:46 -#: www/views/includes/walletInfo.html:2 +#: www/views/copayers.html:46 +#: www/views/includes/walletInfo.html:2 msgid "{{wallet.m}}-of-{{wallet.n}}" msgstr "{{wallet.m}}-de-{{wallet.n}}" From c639f7449acb6107dd52ddc538572785931e1262 Mon Sep 17 00:00:00 2001 From: Gustavo Maximiliano Cortez Date: Tue, 3 Jan 2017 10:21:27 -0300 Subject: [PATCH 45/45] Revert "Update translation files" --- i18n/po/es.po | 2609 ++++++++++++++++++++++++------------------------- 1 file changed, 1253 insertions(+), 1356 deletions(-) diff --git a/i18n/po/es.po b/i18n/po/es.po index cfdbe97b5..19e5be482 100644 --- a/i18n/po/es.po +++ b/i18n/po/es.po @@ -9,3004 +9,2901 @@ msgstr "" "X-Crowdin-Language: es-ES\n" "X-Crowdin-File: template.pot\n" "Content-Type: text/plain; charset=UTF-8\n" -"Last-Translator: cmgustavo83 \n" +"Last-Translator: cmgustavo83\n" "Language-Team: Spanish\n" -"Language: es_ES\n" -"PO-Revision-Date: 2016-12-30 21:16-0500\n" +"Language: es\n" +"PO-Revision-Date: 2016-12-13 08:01-0500\n" -#: www/views/modals/paypro.html:34 +#: www/views/modals/paypro.html:34 msgid "(Trusted)" msgstr "(De confianza)" -#: www/views/includes/txp.html:27 -#: www/views/modals/search.html:27 -#: www/views/walletDetails.html:266 +#: www/views/includes/txp.html:27 +#: www/views/modals/search.html:27 +#: www/views/walletDetails.html:249 msgid "(possible double spend)" msgstr "(Posible doble gasto)" -#: www/views/modals/txp-details.html:154 +#: www/views/modals/txp-details.html:154 msgid "* A payment proposal can be deleted if 1) you are the creator, and no other copayer has signed, or 2) 24 hours have passed since the proposal was created." -msgstr "* Una propuesta de pago puede ser eliminada si 1) Tú eres el creador, y ningún otro copayer la haya firmado, o 2) hayan transcurrido 24 horas desde la creación de la propuesta." +msgstr "* Una propuesta de pago puede ser eliminada si 1) Ud. es el creador, y ningún otro copayer la haya firmado, o 2) hayan transcurrido 24 horas desde la creación de la propuesta." -#: www/views/feedback/rateApp.html:7 +#: www/views/feedback/rateApp.html:7 msgid "5-star ratings help us get BitPay into more hands, and more users means more resources can be committed to the app!" -msgstr "Una calificación de 5 estrellas nos ayuda a que BitPay sea más utilizado, mientras más usuarios más son las razones para seguir comprometidos con esta aplicación!" +msgstr "Una calificación de 5 estrellas nos ayuda a que BitPay sea más utilizado, y más usuarios significa más razones para seguir comprometidos con esta aplicación!" -#: src/js/controllers/confirm.js:466 +#: src/js/controllers/confirm.js:454 msgid "A SMS containing a confirmation code was sent to your phone." msgstr "Un SMS con el código de confirmación fue enviado a tu teléfono." -#: src/js/controllers/feedback/send.js:27 -#: www/views/feedback/complete.html:17 +#: src/js/controllers/feedback/send.js:27 +#: www/views/feedback/complete.html:17 msgid "A member of the team will review your feedback as soon as possible." -msgstr "Un miembro del equipo revisará tus comentarios tan pronto como sea posible." +msgstr "Un miembro del equipo revisará sus comentarios tan pronto como sea posible." -#: src/js/controllers/confirm.js:220 +#: src/js/controllers/confirm.js:212 msgid "A total of {{amountAboveMaxSizeStr}} were excluded. The maximum size allowed for a transaction was exceeded." msgstr "Se excluyeron un total de {{amountAboveMaxSizeStr}}. Fue excedido el tamaño máximo permitido para una transacción." -#: src/js/controllers/confirm.js:214 +#: src/js/controllers/confirm.js:206 msgid "A total of {{amountBelowFeeStr}} were excluded. These funds come from UTXOs smaller than the network fee provided." -msgstr "Se excluyeron un total de {{amountBelowFeeStr}}. Estos fondos provienen del UTXOs más pequeños que la comisión de red provista." +msgstr "Se excluyeron un total de {{amountBelowFeeStr}}. Estos fondos provienen del UTXOs más pequeños que la comisión de red suministrada." -#: src/js/controllers/preferencesAbout.js:6 -#: www/views/tab-settings.html:149 +#: src/js/controllers/preferencesAbout.js:6 +#: www/views/tab-settings.html:159 msgid "About" msgstr "Acerca de" -#: src/js/services/confirmDialog.js:8 -#: www/views/confirm.html:126 -#: www/views/confirm.html:134 -#: www/views/modals/txp-details.html:169 -#: www/views/modals/txp-details.html:176 +#: src/js/services/confirmDialog.js:8 msgid "Accept" msgstr "Aceptar" -#: src/js/controllers/modals/txpDetails.js:39 -#: src/js/controllers/tx-details.js:65 +#: src/js/controllers/modals/txpDetails.js:39 +#: src/js/controllers/tx-details.js:65 msgid "Accepted" msgstr "Aceptado" -#: www/views/preferencesInformation.html:59 +#: www/views/preferencesInformation.html:59 msgid "Account" msgstr "Cuenta" -#: www/views/join.html:69 -#: www/views/tab-create-personal.html:42 -#: www/views/tab-create-shared.html:72 -#: www/views/tab-import-hardware.html:19 +#: www/views/join.html:71 +#: www/views/tab-create-personal.html:42 +#: www/views/tab-create-shared.html:72 +#: www/views/tab-import-hardware.html:19 msgid "Account Number" msgstr "Número de cuenta" -#: www/views/bitpayCard.html:51 +#: www/views/bitpayCard.html:51 msgid "Activity" msgstr "Actividad" -#: src/js/controllers/bitpayCardIntro.js:34 +#: src/js/controllers/bitpayCardIntro.js:34 msgid "Add Account" msgstr "Agregar Cuenta" -#: src/js/controllers/bitpayCardIntro.js:30 +#: src/js/controllers/bitpayCardIntro.js:30 msgid "Add BitPay Card Account?" msgstr "¿Agregar cuenta de tarjeta BitPay?" -#: www/views/tab-home.html:156 +#: www/views/tab-home.html:155 msgid "Add BitPay Visa® Card" msgstr "Añadir tarjeta BitPay Visa®" -#: www/views/addressbook.add.html:4 -#: www/views/addressbook.html:22 +#: www/views/addressbook.add.html:4 +#: www/views/addressbook.html:22 msgid "Add Contact" msgstr "Agregar contacto" -#: www/views/bitpayCard.html:23 +#: www/views/bitpayCard.html:23 msgid "Add Funds" msgstr "Añadir fondos" -#: www/views/confirm.html:72 +#: www/views/confirm.html:72 msgid "Add Memo" -msgstr "Añadir nota" +msgstr "Añadir Nota" -#: www/views/tab-send.html:42 +#: www/views/tab-send.html:42 msgid "Add a Contact" msgstr "Agregar un contacto" -#: www/views/join.html:84 -#: www/views/tab-create-personal.html:55 -#: www/views/tab-create-shared.html:85 -msgid "Add a password" +#: www/views/join.html:90 +#: www/views/join.html:99 +#: www/views/tab-create-personal.html:59 +#: www/views/tab-create-personal.html:67 +#: www/views/tab-create-shared.html:89 +#: www/views/tab-create-shared.html:97 +msgid "Add a Password" msgstr "Agregar una contraseña" -#: www/views/join.html:87 -#: www/views/tab-create-personal.html:58 -#: www/views/tab-create-shared.html:88 +#: www/views/join.html:92 +#: www/views/tab-create-personal.html:61 +#: www/views/tab-create-shared.html:91 msgid "Add an optional password to secure the recovery phrase" msgstr "Agregar una contraseña opcional para asegurar la frase de recuperación" -#: src/js/controllers/confirm.js:274 +#: src/js/controllers/confirm.js:266 msgid "Add description" -msgstr "Añadir descripción" +msgstr "Añadir Descripción" -#: www/views/add.html:3 +#: www/views/add.html:3 msgid "Add wallet" -msgstr "Agregar billetera" +msgstr "Agregar monedero" -#: www/views/addressbook.view.html:23 -#: www/views/customAmount.html:26 -#: www/views/modals/paypro.html:24 -#: www/views/paymentUri.html:15 +#: www/views/addressbook.view.html:23 +#: www/views/customAmount.html:26 +#: www/views/modals/paypro.html:25 +#: www/views/paymentUri.html:15 msgid "Address" msgstr "Dirección" -#: www/views/addressbook.html:6 -#: www/views/tab-settings.html:20 +#: www/views/addressbook.html:6 +#: www/views/tab-settings.html:20 msgid "Address Book" msgstr "Agenda de contactos" -#: www/views/preferencesInformation.html:35 +#: www/views/preferencesInformation.html:35 msgid "Address Type" -msgstr "Tipo de dirección" +msgstr "Tipo de Dirección" -#: www/views/addresses.html:61 +#: www/views/addresses.html:55 msgid "Addresses With Balance" msgstr "Direcciones con fondos" -#: www/views/tab-settings.html:142 +#: www/views/tab-settings.html:152 msgid "Advanced" msgstr "Avanzado" -#: www/views/advancedSettings.html:3 +#: www/views/advancedSettings.html:3 msgid "Advanced Settings" msgstr "Preferencias Avanzadas" -#: www/views/bitpayCard.html:57 +#: www/views/bitpayCard.html:57 msgid "All" msgstr "Todos" -#: www/views/allAddresses.html:3 +#: www/views/allAddresses.html:3 msgid "All Addresses" msgstr "Todas las direcciones" -#: www/views/modals/wallet-balance.html:18 -msgid "All of your bitcoin wallet balance may not be available for immediate spending." -msgstr "Todo el balance de tu billetera puede que no esté disponible para su uso inmediato." +#: www/views/backupWarning.html:15 +msgid "All clear, let's do this" +msgstr "Todo claro, vamos a hacer esto" -#: www/views/tab-receive.html:33 +#: www/views/tab-receive.html:38 msgid "All signing devices must be added to this multisig wallet before bitcoin addresses can be created." -msgstr "Todos los dispositivos de los firmantes deben ser agregados a esta billetera compartido antes de que se puedan crear direcciones bitcoin." +msgstr "Todos los dispositivos de los firmantes deben ser agregados a este monedero compartido antes de que se puedan crear direcciones bitcoin." -#: www/views/tab-scan.html:21 -msgid "Allow Camera Access" -msgstr "Permitir el acceso de la cámara" - -#: www/views/onboarding/notifications.html:7 +#: www/views/onboarding/notifications.html:7 msgid "Allow notifications" msgstr "Permitir notificaciones" -#: www/views/onboarding/disclaimer.html:14 +#: www/views/onboarding/disclaimer.html:14 msgid "Almost done! Let's review." msgstr "¡Casi listo! Vamos a revisar." -#: www/views/preferencesAltCurrency.html:4 -#: www/views/tab-settings.html:81 +#: www/views/preferencesAltCurrency.html:4 +#: www/views/tab-settings.html:81 msgid "Alternative Currency" msgstr "Moneda Alternativa" -#: www/views/amount.html:43 -#: www/views/customAmount.html:32 -#: www/views/includes/output.html:7 -#: www/views/paymentUri.html:16 +#: www/views/tab-home.html:138 +msgid "Amazon.com Gift Cards" +msgstr "Tarjetas de regalo de Amazon.com" + +#: www/views/amount.html:43 +#: www/views/customAmount.html:32 +#: www/views/includes/output.html:7 +#: www/views/paymentUri.html:16 msgid "Amount" msgstr "Importe" -#: src/js/services/bwcError.js:110 +#: src/js/services/bwcError.js:110 msgid "Amount below minimum allowed" msgstr "Cantidad por debajo del mínimo permitido" -#: src/js/controllers/confirm.js:389 -msgid "Amount too big" -msgstr "Monto demasiado grande" - -#: www/views/tab-home.html:14 +#: www/views/tab-home.html:14 msgid "An update to this app is available" -msgstr "Actualización disponible" +msgstr "Una actualización de esta aplicación está disponible" -#: src/js/controllers/tab-home.js:139 -msgid "An update to this app is available. For your security, please update to the latest version." -msgstr "Actualización disponible. Por seguridad, actualiza a la versión más reciente." - -#: www/views/backupWarning.html:14 +#: www/views/backupWarning.html:14 msgid "Anyone with your backup phrase can access or spend your bitcoin." -msgstr "Cualquier persona con tu copia de seguridad puede gastar tus bitcoins." +msgstr "Cualquier con tu copia de seguridad puede acceder o gastar tus bitcoins." -#: www/views/backupWarning.html:10 +#: www/views/backupWarning.html:10 msgid "Are you being watched?" msgstr "¿Estás siendo observado?" -#: src/js/controllers/copayers.js:43 +#: src/js/controllers/copayers.js:43 msgid "Are you sure you want to cancel and delete this wallet?" -msgstr "¿Estás seguro de cancelar y borrar esta billetera?" +msgstr "¿Está seguro que desea cancelar y borrar este monedero?" -#: src/js/controllers/preferencesDelete.js:11 +#: src/js/controllers/preferencesDelete.js:11 msgid "Are you sure you want to delete this wallet?" -msgstr "¿Estás seguro de borrar esta billetera?" +msgstr "¿Estas seguro de borrar este monedero?" -#: src/js/controllers/modals/txpDetails.js:127 +#: src/js/controllers/modals/txpDetails.js:127 msgid "Are you sure you want to reject this transaction?" -msgstr "¿Estás seguro de rechazar esta transacción?" +msgstr "¿Está seguro de que desea rechazar esta transacción?" -#: src/js/controllers/modals/txpDetails.js:144 +#: src/js/controllers/modals/txpDetails.js:144 msgid "Are you sure you want to remove this transaction?" -msgstr "¿Estás seguro de eliminar esta transacción?" +msgstr "¿Está seguro que desea eliminar esta transacción?" -#: src/js/controllers/onboarding/backupRequest.js:16 -msgid "Are you sure you want to skip it?" -msgstr "¿Estás seguro de omitirla?" +#: src/js/controllers/onboarding/backupRequest.js:16 +msgid "Are you sure you want to skip the backup?" +msgstr "¿Está seguro que desea omitir la copia de seguridad?" -#: src/js/controllers/preferencesBitpayCard.js:7 +#: src/js/controllers/preferencesBitpayCard.js:7 msgid "Are you sure you would like to remove your BitPay Card account from this device?" -msgstr "¿Estás seguro de eliminar la cuenta de tu tarjeta BitPay de éste dispositivo?" +msgstr "¿Realmente desea eliminar su cuenta de tarjeta de BitPay de este dispositivo?" -#: www/views/includes/walletInfo.html:3 +#: www/views/includes/walletInfo.html:3 msgid "Auditable" msgstr "Auditables" -#: www/views/modals/wallet-balance.html:42 +#: www/views/walletDetails.html:121 +#: www/views/walletDetails.html:60 msgid "Available" msgstr "Disponible" -#: www/views/includes/available-balance.html:3 +#: www/views/includes/available-balance.html:3 msgid "Available Balance" msgstr "Balance disponible" -#: www/views/preferencesFee.html:15 +#: www/views/preferencesFee.html:15 msgid "Average confirmation time: {{fee.nbBlocks * 10}} minutes" msgstr "Promedio de tiempo de confirmación: {{fee.nbBlocks * 10}} minutos" -#: www/views/join.html:118 -#: www/views/tab-create-personal.html:87 -#: www/views/tab-create-shared.html:117 -#: www/views/tab-import-phrase.html:46 +#: www/views/join.html:118 +#: www/views/tab-create-personal.html:85 +#: www/views/tab-create-shared.html:115 +#: www/views/tab-import-phrase.html:46 msgid "BIP32 path for address derivation" msgstr "BIP32 para el camino de derivación de direcciones" -#: src/js/controllers/walletDetails.js:63 -msgid "BWS Error" -msgstr "Error de BWS" - -#: www/views/preferences.html:41 +#: www/views/preferences.html:41 msgid "Backup" msgstr "Copia de seguridad" -#: www/views/includes/backupNeededPopup.html:7 +#: www/views/includes/backupNeededPopup.html:7 msgid "Backup Needed" -msgstr "Se necesita copia de seguridad" +msgstr "Se requiere hacer copia de seguridad" -#: www/views/includes/backupNeededPopup.html:9 +#: www/views/includes/backupNeededPopup.html:9 msgid "Backup now" -msgstr "Realizar copia de seguridad" +msgstr "Realizar copia de seguridad ahora" -#: www/views/onboarding/backupRequest.html:11 -#: www/views/tab-export-file.html:87 +#: www/views/onboarding/backupRequest.html:11 +#: www/views/tab-export-file.html:87 msgid "Backup wallet" -msgstr "Respaldar" +msgstr "Copia de seguridad del monedero" -#: src/js/controllers/bitpayCard.js:140 +#: src/js/controllers/bitpayCard.js:140 msgid "Bad param" msgstr "Parametro incorrecto" -#: src/js/services/profileService.js:458 +#: src/js/services/profileService.js:458 msgid "Bad wallet invitation" -msgstr "Invitación incorrecta a la billetera" +msgstr "Invitación incorrecta al monedero" -#: www/views/preferencesInformation.html:89 +#: www/views/preferencesInformation.html:89 msgid "Balance By Address" msgstr "Balance por Dirección" -#: www/views/includes/confirmBackupPopup.html:7 +#: www/views/includes/confirmBackupPopup.html:7 msgid "Be sure to store your recovery phrase in a secure place. If this app is deleted, your money cannot be recovered without it." -msgstr "Asegúrate de guardar la frase de recuperación en un lugar seguro. Si se elimina esta aplicación, no se podrá recuperar el dinero." +msgstr "Asegúrese de guardar su frase de recuperación en un lugar seguro. Si se elimina esta aplicación, no se puede recuperar su dinero sin ella." -#: src/js/controllers/tab-settings.js:52 -msgid "BitPay Help Center" -msgstr "Centro de Ayuda de BitPay" - -#: www/views/addressbook.add.html:38 +#: www/views/addressbook.add.html:38 msgid "Bitcoin Address" msgstr "Dirección Bitcoin" -#: www/views/tab-settings.html:13 +#: www/views/tab-settings.html:13 msgid "Bitcoin Exchanges" msgstr "Bitcoin Exchanges" -#: www/views/preferencesFee.html:4 -#: www/views/tab-settings.html:92 +#: www/views/preferencesFee.html:4 +#: www/views/tab-settings.html:92 msgid "Bitcoin Network Fee Policy" msgstr "Política de Comisión de la Red Bitcoin" -#: www/views/paymentUri.html:10 +#: www/views/paymentUri.html:10 msgid "Bitcoin URI is NOT valid!" msgstr "¡Bitcoin URI no es válida!" -#: www/views/tab-settings.html:70 +#: www/views/tab-settings.html:70 msgid "Bitcoin Unit" msgstr "Unidad de Bitcoin" -#: www/views/onboarding/tour.html:26 +#: www/views/onboarding/tour.html:26 msgid "Bitcoin is a currency." msgstr "Bitcoin es una moneda." -#: www/views/onboarding/disclaimer.html:15 +#: www/views/onboarding/disclaimer.html:15 msgid "Bitcoin is different – it cannot be safely held with a bank or web service." msgstr "Bitcoin es diferente – no se puede resguardar con ningún servicio web o banco." -#: www/views/onboarding/tour.html:13 +#: www/views/onboarding/tour.html:13 msgid "Bitcoin is secure,
digital money." msgstr "Bitcoin es seguro,
dinero digital." -#: www/views/preferencesFee.html:11 +#: www/views/preferencesFee.html:11 msgid "Bitcoin transactions include a fee collected by miners on the network." -msgstr "Las transacciones de bitcoins incluyen una comisión recogida por los mineros de la red." +msgstr "Las transacciones Bitcoin incluyen una comisión de red recogida por los mineros en la red." -#: www/views/modals/txp-details.html:36 +#: www/views/modals/txp-details.html:36 msgid "Broadcast Payment" msgstr "Enviar Pago" -#: src/js/controllers/modals/txpDetails.js:41 -#: src/js/controllers/tx-details.js:67 +#: src/js/controllers/modals/txpDetails.js:41 +#: src/js/controllers/tx-details.js:67 msgid "Broadcasted" msgstr "Enviado" -#: src/js/services/onGoingProcess.js:10 +#: src/js/services/onGoingProcess.js:10 msgid "Broadcasting transaction" msgstr "Finalizando transacción" -#: www/views/unsupported.html:6 +#: www/views/unsupported.html:6 msgid "Browser unsupported" msgstr "Navegador no soportado" -#: www/views/tab-home.html:119 +#: www/views/tab-home.html:118 msgid "Buy & Sell Bitcoin" msgstr "Comprar & Vender Bitcoin" -#: www/views/tab-send.html:15 +#: www/views/tab-send.html:15 msgid "Buy Bitcoin" msgstr "Comprar Bitcoin" -#: www/views/tab-home.html:170 +#: www/views/tab-home.html:169 msgid "Buy an Amazon Gift Card" -msgstr "Comprar Amazon Gift Card" +msgstr "Comprar una tarjeta de regalo de Amazon" -#: www/views/buyandsell.html:5 +#: www/views/buyandsell.html:5 msgid "Buy and sell" msgstr "Compra y venta" -#: www/views/tab-home.html:163 +#: www/views/tab-home.html:162 msgid "Buy or Sell Bitcoin" msgstr "Comprar y vender Bitcoin" -#: src/js/services/onGoingProcess.js:41 +#: src/js/services/onGoingProcess.js:41 msgid "Buying Bitcoin..." msgstr "Comprando Bitcoins..." -#: src/js/services/onGoingProcess.js:11 +#: src/js/services/onGoingProcess.js:11 msgid "Calculating fee" msgstr "Calculando comisión" -#: src/js/controllers/confirm.js:514 -#: src/js/services/confirmDialog.js:9 -#: src/js/services/popupService.js:59 -#: www/views/addressbook.add.html:10 -#: www/views/feedback/send.html:5 -#: www/views/includes/confirm-tx.html:30 -#: www/views/includes/note.html:6 -#: www/views/includes/password.html:22 -#: www/views/modals/confirmation.html:13 +#: src/js/controllers/confirm.js:510 +#: src/js/services/confirmDialog.js:9 +#: src/js/services/popupService.js:58 +#: www/views/addressbook.add.html:10 +#: www/views/feedback/send.html:5 +#: www/views/includes/confirm-tx.html:30 +#: www/views/includes/note.html:6 +#: www/views/includes/password.html:22 +#: www/views/modals/confirmation.html:13 msgid "Cancel" msgstr "Cancelar" -#: src/js/controllers/onboarding/tour.js:55 +#: src/js/controllers/onboarding/tour.js:55 msgid "Cannot Create Wallet" -msgstr "No se pudo crear la billetera" +msgstr "No se pudo crear el monedero" -#: src/js/services/profileService.js:454 +#: src/js/services/profileService.js:454 msgid "Cannot join the same wallet more that once" -msgstr "No puede unirse a la misma billetera más de una vez" +msgstr "No puede unirse al mismo monedero más de una vez" -#: www/views/preferencesBitpayCard.html:10 -#: www/views/tab-home.html:100 +#: src/js/controllers/amazon.js:25 +msgid "Card not found" +msgstr "Tarjeta no encontrada" + +#: www/views/preferencesBitpayCard.html:10 +#: www/views/tab-home.html:99 msgid "Cards" msgstr "Tarjetas" -#: www/views/modals/paypro.html:30 +#: www/views/modals/paypro.html:29 msgid "Certified by" msgstr "Certificado por" -#: www/views/tab-import-file.html:4 +#: www/views/tab-import-file.html:4 msgid "Choose a backup file from your computer" -msgstr "Selecciona el archivo de copia de seguridad de tu computadora" +msgstr "Seleccione el archivo de copia de seguridad de su computadora" -#: www/views/modals/wallets.html:9 +#: www/views/modals/wallets.html:9 msgid "Choose your destination wallet" -msgstr "Elegir billetera destino" +msgstr "Elegir monedero destino" -#: www/views/modals/wallets.html:10 +#: www/views/modals/wallets.html:10 msgid "Choose your source wallet" -msgstr "Elegir billetera de origen" +msgstr "Elegir monedero de origen" -#: www/views/backup.html:54 +#: www/views/backup.html:54 msgid "Clear" -msgstr "Anular" +msgstr "Resetear" -#: www/views/preferencesHistory.html:23 +#: www/views/preferencesHistory.html:23 msgid "Clear cache" msgstr "Limpiar cache" -#: www/views/modals/paypro.html:4 -#: www/views/modals/wallet-balance.html:3 -#: www/views/modals/wallets.html:5 +#: www/views/modals/paypro.html:4 +#: www/views/modals/wallets.html:5 msgid "Close" msgstr "Cerrar" -#: www/views/preferences.html:26 +#: www/views/preferences.html:26 msgid "Color" msgstr "Color" -#: www/views/preferencesAbout.html:21 +#: www/views/preferencesAbout.html:21 msgid "Commit hash" msgstr "Commit hash" -#: src/js/controllers/confirm.js:513 -#: src/js/controllers/copayers.js:42 -#: src/js/services/confirmDialog.js:10 -#: www/views/backup.html:53 -#: www/views/backup.html:72 -#: www/views/confirm.html:4 -#: www/views/includes/confirm-tx.html:35 +#: src/js/controllers/confirm.js:509 +#: src/js/controllers/copayers.js:42 +#: src/js/services/confirmDialog.js:10 +#: www/views/backup.html:53 +#: www/views/backup.html:72 +#: www/views/confirm.html:4 +#: www/views/includes/confirm-tx.html:35 msgid "Confirm" msgstr "Confirmar" -#: www/views/modals/terms.html:26 -#: www/views/onboarding/disclaimer.html:45 +#: www/views/modals/terms.html:26 +#: www/views/onboarding/disclaimer.html:45 msgid "Confirm & Finish" -msgstr "Confirmar y terminar" +msgstr "Confirmar & Terminar" -#: src/js/services/walletService.js:828 -#: src/js/services/walletService.js:829 +#: src/js/services/walletService.js:839 msgid "Confirm you new spending password" msgstr "Confirme su contraseña para enviar" -#: www/views/tx-details.html:79 +#: www/views/tx-details.html:77 msgid "Confirmations" msgstr "Confirmaciones" -#: www/views/modals/wallet-balance.html:61 +#: www/views/walletDetails.html:122 +#: www/views/walletDetails.html:61 msgid "Confirming" msgstr "Confirmando" -#: www/views/bitpayCardIntro.html:37 +#: www/views/bitpayCardIntro.html:37 msgid "Connect my BitPay Card" msgstr "Conecte mi tarjeta de BitPay" -#: src/js/services/onGoingProcess.js:12 +#: src/js/services/onGoingProcess.js:12 msgid "Connecting to Coinbase..." msgstr "Conectando a Coinbase..." -#: src/js/services/onGoingProcess.js:13 +#: src/js/services/onGoingProcess.js:13 msgid "Connecting to Glidera..." msgstr "Conectando a Glidera..." -#: src/js/services/bwcError.js:53 +#: www/views/glideraUri.html:16 +msgid "Connecting..." +msgstr "Conectando..." + +#: src/js/services/bwcError.js:53 msgid "Connection reset by peer" msgstr "Conexión re establecida" -#: www/views/tab-send.html:32 +#: www/views/tab-send.html:32 msgid "Contacts" msgstr "Contactos" -#: www/views/onboarding/notifications.html:9 +#: www/views/onboarding/notifications.html:9 msgid "Continue" msgstr "Continuar" -#: www/views/preferencesLanguage.html:26 -#: www/views/translators.html:33 +#: www/views/preferencesLanguage.html:26 +#: www/views/translators.html:33 msgid "Contribute Translations" -msgstr "Contribuir" +msgstr "Contribuir con las traducciones" -#: src/js/services/bwcError.js:62 +#: src/js/services/bwcError.js:62 msgid "Copayer already in this wallet" -msgstr "Ya se encuentra en esta billetera" +msgstr "Ya se encuentra en este monedero" -#: src/js/services/bwcError.js:77 +#: src/js/services/bwcError.js:77 msgid "Copayer already voted on this spend proposal" -msgstr "Ya votaste en esta propuesta de gasto" +msgstr "Ya ha votado en esta propuesta de gasto" -#: src/js/services/bwcError.js:107 +#: src/js/services/bwcError.js:107 msgid "Copayer data mismatch" msgstr "Discrepancia en los datos del Copayer" -#: www/views/includes/walletActivity.html:2 +#: www/views/includes/walletActivity.html:2 msgid "Copayer joined" msgstr "Copayer unido" -#: www/views/preferencesInformation.html:81 +#: www/views/preferencesInformation.html:81 msgid "Copayer {{$index}}" msgstr "Copayer {{$index}}" -#: src/js/controllers/copayers.js:64 -#: src/js/controllers/export.js:177 -#: www/views/includes/copyToClipboard.html:4 +#: src/js/controllers/copayers.js:64 +#: src/js/controllers/export.js:177 +#: www/views/includes/copyToClipboard.html:4 msgid "Copied to clipboard" msgstr "Copiado al portapapeles" -#: www/views/tab-export-file.html:92 +#: www/views/tab-export-file.html:92 msgid "Copy this text as it is to a safe place (notepad or email)" -msgstr "Copiar el texto como está en un lugar seguro (bloc de notas o correo electrónico)" +msgstr "Copiar el texto como esta en un lugar seguro (bloc de notas o correo electrónico)" -#: www/views/preferencesLogs.html:11 -#: www/views/tab-export-file.html:76 +#: www/views/preferencesLogs.html:11 +#: www/views/tab-export-file.html:76 msgid "Copy to clipboard" msgstr "Copiar al portapapeles" -#: www/views/tab-import-phrase.html:2 +#: www/views/tab-import-phrase.html:2 msgid "Could not access the wallet at the server. Please check:" -msgstr "No se pudo acceder a la billetera desde el servidor. Por favor verificar:" +msgstr "No se pudo acceder al monedero del servidor. Por favor verificar:" -#: src/js/services/profileService.js:524 +#: src/js/services/profileService.js:524 msgid "Could not access wallet" -msgstr "No se pudo acceder a la billetera" +msgstr "No se pudo acceder al monedero" -#: src/js/controllers/confirm.js:383 -msgid "Could not add message to imported wallet without shared encrypting key" -msgstr "No se puede agregar mensajes a una billetera importada sin la clave cifrada compartida" - -#: src/js/controllers/modals/txpDetails.js:172 +#: src/js/controllers/modals/txpDetails.js:172 msgid "Could not broadcast payment" msgstr "No se pudo enviar el pago" -#: src/js/services/bwcError.js:41 +#: src/js/services/bwcError.js:41 msgid "Could not build transaction" msgstr "No se pudo construir la transacción" -#: src/js/services/walletService.js:741 +#: src/js/services/walletService.js:755 msgid "Could not create address" msgstr "No se pudo crear la dirección" -#: src/js/services/profileService.js:371 +#: src/js/services/profileService.js:371 msgid "Could not create using the specified extended private key" -msgstr "No se pudo crear la billetera usando la clave privada ingresada" +msgstr "No se pudo crear el monedero usando la clave privada ingresada" -#: src/js/services/profileService.js:381 +#: src/js/services/profileService.js:381 msgid "Could not create using the specified extended public key" msgstr "No se pudo crear con la clave pública extendida especificada" -#: src/js/services/profileService.js:364 +#: src/js/services/profileService.js:364 msgid "Could not create: Invalid wallet recovery phrase" msgstr "No se pudo crear: frase de recuperación inválida" -#: src/js/controllers/import.js:80 +#: src/js/controllers/import.js:79 msgid "Could not decrypt file, check your password" msgstr "No se pudo descifrar el archivo, verifique su contraseña" -#: src/js/controllers/modals/txpDetails.js:154 +#: src/js/controllers/modals/txpDetails.js:154 msgid "Could not delete payment proposal" msgstr "No se pudo eliminar la propuesta de pago" -#: src/js/services/feeService.js:51 +#: src/js/services/feeService.js:51 msgid "Could not get dynamic fee" msgstr "No se pudo obtener comisión dinámica" -#: src/js/services/feeService.js:31 +#: src/js/services/feeService.js:31 msgid "Could not get dynamic fee for level: {{feeLevel}}" msgstr "No se pudo obtener comisión dinámica: {{feeLevel}}" -#: src/js/controllers/confirm.js:664 +#: src/js/controllers/confirm.js:655 msgid "Could not get the destination bitcoin address" msgstr "No se pudo obtener la dirección bitcoin destino" -#: src/js/controllers/bitpayCard.js:68 -#: src/js/controllers/glidera.js:100 +#: src/js/controllers/bitpayCard.js:68 +#: src/js/controllers/glidera.js:100 msgid "Could not get transactions" msgstr "No se pudo obtener las transacciones" -#: src/js/services/profileService.js:629 -#: src/js/services/profileService.js:660 -#: src/js/services/profileService.js:683 +#: src/js/services/profileService.js:629 +#: src/js/services/profileService.js:660 +#: src/js/services/profileService.js:683 msgid "Could not import" msgstr "No se pudo importar" -#: src/js/services/profileService.js:598 +#: src/js/services/profileService.js:598 msgid "Could not import. Check input file and spending password" -msgstr "No se pudo importar. Verifique el archivo y la contraseña para pagos" +msgstr "No se pudo importar. Verifique el archivo y la contraseña para enviar" -#: src/js/services/profileService.js:467 +#: src/js/services/profileService.js:467 msgid "Could not join wallet" -msgstr "No se pudo unir a la billetera" +msgstr "No se pudo unir al monedero" -#: src/js/controllers/modals/txpDetails.js:134 +#: src/js/controllers/modals/txpDetails.js:134 msgid "Could not reject payment" msgstr "No se pudo rechazar el pago" -#: src/js/controllers/preferencesBitpayCard.js:16 +#: src/js/controllers/preferencesBitpayCard.js:16 msgid "Could not remove card" msgstr "No se pudo quitar tarjeta" -#: src/js/controllers/confirm.js:461 +#: src/js/controllers/confirm.js:449 msgid "Could not send confirmation code to your phone" msgstr "No se pudo enviar código de confirmación al teléfono" -#: src/js/controllers/modals/txpDetails.js:120 +#: src/js/controllers/modals/txpDetails.js:120 msgid "Could not send payment" msgstr "No se pudo enviar el pago" -#: src/js/controllers/tab-home.js:212 +#: src/js/controllers/tab-home.js:200 msgid "Could not update" msgstr "No se pudo actualizar" -#: www/views/tab-create-personal.html:3 +#: src/js/services/walletService.js:147 +msgid "Could not update Wallet" +msgstr "No se pudo actualizar el monedero" + +#: www/views/tab-create-personal.html:3 msgid "Create Personal Wallet" -msgstr "Crear billetera Personal" +msgstr "Crear monedero Personal" -#: www/views/tab-create-shared.html:3 +#: www/views/tab-create-shared.html:3 msgid "Create Shared Wallet" -msgstr "Crear billetera compartida" +msgstr "Crear monedero compartido" -#: www/views/onboarding/tour.html:46 -#: www/views/tab-home.html:66 -#: www/views/tab-send.html:16 +#: www/views/tab-home.html:66 +msgid "Create a bitcoin wallet" +msgstr "Crear monedero bitcoin" + +#: www/views/tab-send.html:16 msgid "Create bitcoin wallet" -msgstr "Crear billetera" +msgstr "Crear monedero bitcoin" -#: www/views/tab-create-personal.html:105 +#: www/views/tab-create-personal.html:103 msgid "Create new wallet" -msgstr "Crear billetera nueva" +msgstr "Crear un nuevo monedero" -#: www/views/add.html:22 +#: www/views/add.html:22 msgid "Create shared wallet" -msgstr "Crear billetera compartida" +msgstr "Crear monedero compartido" -#: www/views/tab-create-shared.html:135 +#: www/views/tab-create-shared.html:133 msgid "Create {{formData.requiredCopayers}}-of-{{formData.totalCopayers}} wallet" -msgstr "Crear billetera {{formData.requiredCopayers}}-de-{{formData.totalCopayers}}" +msgstr "Crear monedero {{formData.requiredCopayers}}-de-{{formData.totalCopayers}}" -#: www/views/modals/txp-details.html:83 -#: www/views/tx-details.html:60 +#: www/views/modals/txp-details.html:83 +#: www/views/tx-details.html:58 msgid "Created by" msgstr "Creado por" -#: src/js/services/onGoingProcess.js:17 +#: src/js/services/onGoingProcess.js:17 msgid "Creating Wallet..." -msgstr "Creando billetera..." +msgstr "Creando monedero..." -#: src/js/services/onGoingProcess.js:16 +#: src/js/services/onGoingProcess.js:16 msgid "Creating transaction" msgstr "Creando transacción" -#: www/views/preferencesFee.html:17 +#: www/views/preferencesFee.html:17 msgid "Current fee rate for this policy: {{fee.feePerKBUnit}}/kiB" msgstr "Comisión actual para esta política: {{fee.feePerKBUnit}}/kiB" -#: www/views/customAmount.html:4 +#: www/views/customAmount.html:4 msgid "Custom Amount" msgstr "Importe Específico" -#: www/views/preferencesDeleteWallet.html:21 +#: www/views/preferencesDeleteWallet.html:21 msgid "Delete" msgstr "Eliminar" -#: www/views/modals/txp-details.html:159 +#: www/views/modals/txp-details.html:159 msgid "Delete Payment Proposal" msgstr "Eliminar Propuesta de Pago" -#: www/views/preferencesAdvanced.html:28 -#: www/views/preferencesDeleteWallet.html:3 +#: www/views/preferencesAdvanced.html:28 +#: www/views/preferencesDeleteWallet.html:3 msgid "Delete Wallet" -msgstr "Eliminar billetera" +msgstr "Eliminar Monedero" -#: www/views/copayers.html:59 +#: www/views/copayers.html:59 msgid "Delete it and create a new one" msgstr "Borrar y crear uno nuevo" -#: src/js/services/onGoingProcess.js:18 +#: src/js/services/onGoingProcess.js:18 msgid "Deleting Wallet..." -msgstr "Eliminando billetera..." +msgstr "Eliminando Monedero..." -#: src/js/services/onGoingProcess.js:27 +#: src/js/services/onGoingProcess.js:27 msgid "Deleting payment proposal" msgstr "Eliminando la propuesta de pago" -#: www/views/join.html:116 -#: www/views/tab-create-personal.html:85 -#: www/views/tab-create-shared.html:115 -#: www/views/tab-import-phrase.html:44 +#: www/views/join.html:116 +#: www/views/tab-create-personal.html:83 +#: www/views/tab-create-shared.html:113 +#: www/views/tab-import-phrase.html:44 msgid "Derivation Path" msgstr "Camino de derivación" -#: www/views/preferencesInformation.html:41 +#: www/views/preferencesInformation.html:41 msgid "Derivation Strategy" msgstr "Estrategia de derivación" -#: www/views/modals/coinbase-tx-details.html:9 +#: www/views/modals/coinbase-tx-details.html:9 +#: www/views/modals/paypro.html:17 msgid "Details" msgstr "Detalles" -#: www/views/advancedSettings.html:55 +#: www/views/advancedSettings.html:55 +#: www/views/advancedSettings.html:71 msgid "Development Utilities" msgstr "Utilidades de desarrollo" -#: www/views/includes/backupNeededPopup.html:10 -#: www/views/onboarding/backupRequest.html:12 -msgid "Do it later" -msgstr "Luego" - -#: www/views/tab-export-file.html:27 +#: www/views/tab-export-file.html:27 msgid "Do not include private key" msgstr "No incluir la clave privada" -#: www/views/preferencesLanguage.html:21 -#: www/views/translators.html:28 +#: www/views/preferencesLanguage.html:21 +#: www/views/translators.html:28 msgid "Don't see your language on Crowdin? Contact the Owner on Crowdin! We'd love to support your language." -msgstr "¿No ves tu idioma en Crowdin? Contacta con el encargado del proyecto! Nos encantaría soportar tu idioma." +msgstr "¿No ve su idioma en Crowdin? Contáctese con el encargado del proyecto! Nos encantaría soportar su idioma." -#: www/views/tab-export-file.html:57 +#: www/views/tab-export-file.html:57 msgid "Download" msgstr "Descargar" -#: www/views/addresses.html:18 +#: www/views/addresses.html:23 msgid "Each bitcoin wallet can generate billions of addresses from your 12-word backup. A new address is automatically generated and shown each time you receive a payment." -msgstr "Cada billetera puede generar billones de direcciones desde sus 12 palabras. Se genera una nueva dirección automáticamente cada vez que se recibe un pago." +msgstr "Cada monedero bitcoin puede generar billones de direcciones desde sus 12 palabras. Una nueva dirección es generada y mostrada automáticamente cada vez que recibe un pago." -#: src/js/services/feeService.js:10 +#: src/js/services/feeService.js:10 msgid "Economy" msgstr "Económico" -#: www/views/addressbook.add.html:29 -#: www/views/addressbook.view.html:19 +#: www/views/addressbook.add.html:29 +#: www/views/addressbook.view.html:19 msgid "Email" msgstr "Correo electrónico" -#: www/views/preferencesNotifications.html:38 +#: www/views/preferencesNotifications.html:38 msgid "Email Address" msgstr "Dirección de correo electrónico" -#: www/views/onboarding/collectEmail.html:9 +#: www/views/onboarding/collectEmail.html:9 msgid "Email Notifications" msgstr "Notificaciones por Correo electrónico" -#: src/js/services/bwcError.js:122 +#: src/js/services/bwcError.js:122 msgid "Empty addresses limit reached. New addresses cannot be generated." msgstr "Se ha alcanzado el límite de direcciones vacías. No se pueden generar nuevas direcciones." -#: www/views/advancedSettings.html:17 +#: www/views/advancedSettings.html:17 msgid "Enable Amazon Integration" -msgstr "Habilitar integración con Amazon" +msgstr "Habilitar la integración con Amazon" -#: www/views/advancedSettings.html:13 +#: www/views/advancedSettings.html:13 msgid "Enable BitPay Card Integration" -msgstr "Habilitar integración con tarjeta BitPay" +msgstr "Habilitar Integración con Tarjeta BitPay" -#: www/views/advancedSettings.html:21 +#: www/views/advancedSettings.html:21 msgid "Enable Glidera Service" -msgstr "Habilitar servicio Glidera" +msgstr "Habilitar Glidera" -#: www/views/tab-scan.html:19 +#: www/views/tab-scan.html:19 msgid "Enable camera access in your device settings to get started." msgstr "Habilitar el acceso de la cámara en su configuración de dispositivo para empezar." -#: www/views/preferencesNotifications.html:25 +#: www/views/preferencesNotifications.html:25 msgid "Enable email notifications" msgstr "Activar notificaciones de correo electrónico" -#: www/views/preferencesNotifications.html:14 +#: www/views/preferencesNotifications.html:14 msgid "Enable push notifications" msgstr "Activar notificaciones push" -#: www/views/tab-scan.html:18 +#: www/views/tab-scan.html:18 msgid "Enable the camera to get started." msgstr "Activar la cámara empezar." -#: www/views/advancedSettings.html:10 +#: www/views/advancedSettings.html:10 msgid "Enabled Integrations" -msgstr "Gestión de Integraciones" +msgstr "Habilitación de Integraciones" -#: www/views/amount.html:4 +#: www/views/join.html:86 +#: www/views/tab-create-personal.html:55 +#: www/views/tab-create-shared.html:85 +msgid "Encrypt with a Password" +msgstr "Encriptar con una contraseña" + +#: www/views/amount.html:4 msgid "Enter Amount" msgstr "Ingrese el monto" -#: src/js/services/walletService.js:842 -#: src/js/services/walletService.js:857 +#: src/js/services/walletService.js:852 +#: src/js/services/walletService.js:867 msgid "Enter Spending Password" -msgstr "Ingrese contraseña para pagos" +msgstr "Ingrese contraseña para enviar" -#: src/js/controllers/bitpayCardIntro.js:6 +#: src/js/controllers/bitpayCardIntro.js:6 msgid "Enter Two Factor for BitPay Card" msgstr "Ingrese Two Factor para BitPay Card" -#: src/js/services/walletService.js:824 +#: src/js/services/walletService.js:837 msgid "Enter new spending password" -msgstr "Ingrese una nueva contraseña para pagos" +msgstr "Ingrese una nueva contraseña para enviar" -#: www/views/join.html:76 -#: www/views/tab-create-personal.html:48 -#: www/views/tab-create-shared.html:78 +#: www/views/join.html:78 +#: www/views/tab-create-personal.html:48 +#: www/views/tab-create-shared.html:78 msgid "Enter the recovery phrase (BIP39)" -msgstr "Introduce la frase de recuperación (BIP39)" +msgstr "Introduzca la frase de recuperación (BIP39)" -#: www/views/backup.html:62 +#: www/views/backup.html:62 msgid "Enter your password" msgstr "Ingrese su contraseña" -#: www/views/includes/password.html:8 +#: www/views/includes/password.html:8 msgid "Enter your spending password" -msgstr "Introduce la contraseña para pagos" +msgstr "Introduzca la contraseña para enviar" -#. Trying to import a malformed wallet export QR code -#: src/js/controllers/activity.js:45 -#: src/js/controllers/addressbook.js:50 -#: src/js/controllers/addressbookAdd.js:30 -#: src/js/controllers/addresses.js:23 -#: src/js/controllers/addresses.js:31 -#: src/js/controllers/addresses.js:83 -#: src/js/controllers/addresses.js:84 -#: src/js/controllers/amount.js:253 -#: src/js/controllers/amount.js:260 -#: src/js/controllers/amount.js:268 -#: src/js/controllers/amount.js:298 -#: src/js/controllers/amount.js:311 -#: src/js/controllers/amount.js:318 -#: src/js/controllers/amount.js:327 -#: src/js/controllers/bitpayCard.js:145 -#: src/js/controllers/bitpayCard.js:68 -#: src/js/controllers/bitpayCardIntro.js:27 -#: src/js/controllers/confirm.js:160 -#: src/js/controllers/confirm.js:173 -#: src/js/controllers/confirm.js:179 -#: src/js/controllers/confirm.js:461 -#: src/js/controllers/confirm.js:472 -#: src/js/controllers/confirm.js:484 -#: src/js/controllers/confirm.js:630 -#: src/js/controllers/confirm.js:658 -#: src/js/controllers/confirm.js:664 -#: src/js/controllers/confirm.js:692 -#: src/js/controllers/confirm.js:698 -#: src/js/controllers/confirm.js:705 -#: src/js/controllers/confirm.js:712 -#: src/js/controllers/confirm.js:730 -#: src/js/controllers/confirm.js:749 -#: src/js/controllers/confirm.js:763 -#: src/js/controllers/confirm.js:815 -#: src/js/controllers/copayers.js:54 -#: src/js/controllers/create.js:109 -#: src/js/controllers/create.js:137 -#: src/js/controllers/create.js:150 -#: src/js/controllers/create.js:157 -#: src/js/controllers/create.js:172 -#: src/js/controllers/create.js:190 -#: src/js/controllers/export.js:110 -#: src/js/controllers/export.js:138 -#: src/js/controllers/export.js:144 -#: src/js/controllers/export.js:155 -#: src/js/controllers/export.js:35 -#: src/js/controllers/export.js:93 -#: src/js/controllers/export.js:99 -#: src/js/controllers/feedback/send.js:23 -#: src/js/controllers/glidera.js:100 -#: src/js/controllers/glidera.js:27 -#: src/js/controllers/glidera.js:82 -#: src/js/controllers/glideraUri.js:13 -#: src/js/controllers/import.js:115 -#: src/js/controllers/import.js:165 -#: src/js/controllers/import.js:193 -#: src/js/controllers/import.js:202 -#: src/js/controllers/import.js:217 -#: src/js/controllers/import.js:229 -#: src/js/controllers/import.js:240 -#: src/js/controllers/import.js:249 -#: src/js/controllers/import.js:262 -#: src/js/controllers/import.js:274 -#: src/js/controllers/import.js:284 -#: src/js/controllers/import.js:294 -#: src/js/controllers/import.js:318 -#: src/js/controllers/import.js:330 -#: src/js/controllers/import.js:51 -#: src/js/controllers/import.js:64 -#: src/js/controllers/import.js:85 -#: src/js/controllers/import.js:97 -#: src/js/controllers/join.js:115 -#: src/js/controllers/join.js:129 -#: src/js/controllers/join.js:136 -#: src/js/controllers/join.js:150 -#: src/js/controllers/join.js:168 -#: src/js/controllers/join.js:93 -#: src/js/controllers/modals/txpDetails.js:113 -#: src/js/controllers/paperWallet.js:47 -#: src/js/controllers/preferencesBitpayCard.js:16 -#: src/js/controllers/preferencesDelete.js:22 -#: src/js/controllers/preferencesFee.js:9 -#: src/js/controllers/preferencesGlidera.js:60 -#: src/js/controllers/tab-home.js:166 -#: src/js/controllers/tab-receive.js:23 -#: src/js/controllers/tabsController.js:7 -#: src/js/controllers/tx-details.js:18 +#. Trying to import a malformed wallet export QR code +#: src/js/controllers/activity.js:45 +#: src/js/controllers/addressbook.js:50 +#: src/js/controllers/addressbookAdd.js:30 +#: src/js/controllers/addresses.js:24 +#: src/js/controllers/addresses.js:32 +#: src/js/controllers/addresses.js:84 +#: src/js/controllers/addresses.js:85 +#: src/js/controllers/amazon.js:15 +#: src/js/controllers/amazon.js:25 +#: src/js/controllers/amazon.js:46 +#: src/js/controllers/amazon.js:66 +#: src/js/controllers/amount.js:265 +#: src/js/controllers/amount.js:272 +#: src/js/controllers/amount.js:280 +#: src/js/controllers/amount.js:309 +#: src/js/controllers/amount.js:322 +#: src/js/controllers/amount.js:329 +#: src/js/controllers/amount.js:338 +#: src/js/controllers/bitpayCard.js:145 +#: src/js/controllers/bitpayCard.js:68 +#: src/js/controllers/bitpayCardIntro.js:27 +#: src/js/controllers/confirm.js:152 +#: src/js/controllers/confirm.js:165 +#: src/js/controllers/confirm.js:171 +#: src/js/controllers/confirm.js:449 +#: src/js/controllers/confirm.js:460 +#: src/js/controllers/confirm.js:472 +#: src/js/controllers/confirm.js:621 +#: src/js/controllers/confirm.js:649 +#: src/js/controllers/confirm.js:655 +#: src/js/controllers/confirm.js:683 +#: src/js/controllers/confirm.js:689 +#: src/js/controllers/confirm.js:696 +#: src/js/controllers/confirm.js:703 +#: src/js/controllers/confirm.js:721 +#: src/js/controllers/confirm.js:740 +#: src/js/controllers/confirm.js:754 +#: src/js/controllers/confirm.js:797 +#: src/js/controllers/copayers.js:54 +#: src/js/controllers/create.js:101 +#: src/js/controllers/create.js:129 +#: src/js/controllers/create.js:142 +#: src/js/controllers/create.js:149 +#: src/js/controllers/create.js:164 +#: src/js/controllers/create.js:182 +#: src/js/controllers/export.js:110 +#: src/js/controllers/export.js:138 +#: src/js/controllers/export.js:144 +#: src/js/controllers/export.js:155 +#: src/js/controllers/export.js:35 +#: src/js/controllers/export.js:93 +#: src/js/controllers/export.js:99 +#: src/js/controllers/feedback/send.js:23 +#: src/js/controllers/glidera.js:100 +#: src/js/controllers/glidera.js:27 +#: src/js/controllers/glidera.js:82 +#: src/js/controllers/glideraUri.js:13 +#: src/js/controllers/import.js:114 +#: src/js/controllers/import.js:164 +#: src/js/controllers/import.js:192 +#: src/js/controllers/import.js:201 +#: src/js/controllers/import.js:216 +#: src/js/controllers/import.js:228 +#: src/js/controllers/import.js:239 +#: src/js/controllers/import.js:248 +#: src/js/controllers/import.js:261 +#: src/js/controllers/import.js:273 +#: src/js/controllers/import.js:283 +#: src/js/controllers/import.js:293 +#: src/js/controllers/import.js:317 +#: src/js/controllers/import.js:329 +#: src/js/controllers/import.js:50 +#: src/js/controllers/import.js:63 +#: src/js/controllers/import.js:84 +#: src/js/controllers/import.js:96 +#: src/js/controllers/join.js:108 +#: src/js/controllers/join.js:122 +#: src/js/controllers/join.js:129 +#: src/js/controllers/join.js:143 +#: src/js/controllers/join.js:161 +#: src/js/controllers/join.js:86 +#: src/js/controllers/modals/amazonCardDetails.js:10 +#: src/js/controllers/modals/amazonCardDetails.js:32 +#: src/js/controllers/modals/amazonCardDetails.js:40 +#: src/js/controllers/modals/txpDetails.js:113 +#: src/js/controllers/paperWallet.js:47 +#: src/js/controllers/preferencesBitpayCard.js:16 +#: src/js/controllers/preferencesDelete.js:22 +#: src/js/controllers/preferencesFee.js:9 +#: src/js/controllers/preferencesGlidera.js:60 +#: src/js/controllers/tab-home.js:154 +#: src/js/controllers/tab-receive.js:24 +#: src/js/controllers/tabsController.js:7 +#: src/js/controllers/tx-details.js:18 msgid "Error" msgstr "Error" -#: src/js/controllers/confirm.js:361 +#: src/js/controllers/confirm.js:353 msgid "Error at confirm" msgstr "Error al confirmar" -#: src/js/services/profileService.js:424 +#: src/js/services/profileService.js:424 msgid "Error creating wallet" -msgstr "Error al crear billetera" +msgstr "Error al crear monedero" -#: src/js/controllers/paperWallet.js:41 +#: src/js/controllers/paperWallet.js:41 msgid "Error scanning funds:" msgstr "Error al escanear fondos:" -#: src/js/controllers/paperWallet.js:91 +#: src/js/controllers/paperWallet.js:91 msgid "Error sweeping wallet:" msgstr "Error al buscar fondos:" -#: src/js/services/bwcError.js:143 +#: src/js/services/bwcError.js:143 msgid "Exceeded daily limit of $500 per user" msgstr "Se excedió el limite de $500 por usuario" -#: www/views/advancedSettings.html:40 +#: www/views/advancedSettings.html:40 msgid "Experimental Features" msgstr "Características Experimentales" -#: src/js/controllers/confirm.js:319 -#: www/views/confirm.html:30 -#: www/views/modals/txp-details.html:114 +#: src/js/controllers/confirm.js:311 +#: www/views/confirm.html:30 +#: www/views/modals/txp-details.html:114 msgid "Expired" msgstr "Expirada" -#: www/views/modals/paypro.html:54 -#: www/views/modals/txp-details.html:120 +#: www/views/modals/paypro.html:52 +#: www/views/modals/txp-details.html:120 msgid "Expires" msgstr "Expira" -#: www/views/preferencesAdvanced.html:16 +#: www/views/preferencesAdvanced.html:16 msgid "Export Wallet" -msgstr "Exportar billetera" +msgstr "Exportar Monedero" -#: www/views/preferencesHistory.html:10 -#: www/views/preferencesHistory.html:13 +#: www/views/preferencesHistory.html:10 +#: www/views/preferencesHistory.html:13 msgid "Export to file" msgstr "Exportar a archivo" -#: www/views/export.html:3 +#: www/views/export.html:3 msgid "Export wallet" -msgstr "Exportar billetera" +msgstr "Exportar Monedero" -#: src/js/services/walletService.js:969 -#: www/views/tab-export-qrCode.html:9 +#: src/js/services/walletService.js:999 +#: www/views/tab-export-qrCode.html:9 msgid "Exporting via QR not supported for this wallet" -msgstr "Exportar vía código QR no es compatible para esta billetera" +msgstr "Exportar vía código QR no es compatible para este monedero" -#: www/views/preferencesInformation.html:76 +#: www/views/preferencesInformation.html:76 msgid "Extended Public Keys" msgstr "Claves Públicas Extendidas" -#: src/js/services/onGoingProcess.js:19 +#: src/js/services/onGoingProcess.js:19 msgid "Extracting Wallet Information..." -msgstr "Obteniendo Información de la billetera..." +msgstr "Obteniendo Información del Monedero..." -#: src/js/controllers/export.js:110 -#: src/js/controllers/export.js:144 -#: src/js/controllers/export.js:155 -#: src/js/controllers/export.js:99 -#: www/views/tab-export-file.html:4 +#: src/js/controllers/export.js:110 +#: src/js/controllers/export.js:144 +#: src/js/controllers/export.js:155 +#: src/js/controllers/export.js:99 +#: www/views/tab-export-file.html:4 msgid "Failed to export" msgstr "Error al exportar" -#: www/views/tab-create-personal.html:14 -#: www/views/tab-create-shared.html:14 +#: www/views/tab-create-personal.html:14 +#: www/views/tab-create-shared.html:14 msgid "Family vacation funds" msgstr "Fondos para vacaciones en familia" -#: www/views/confirm.html:79 -#: www/views/includes/confirm-tx.html:19 -#: www/views/modals/txp-details.html:95 -#: www/views/tx-details.html:73 +#: www/views/includes/confirm-tx.html:19 +#: www/views/modals/txp-details.html:95 +#: www/views/tx-details.html:71 msgid "Fee" msgstr "Comisión" -#: src/js/controllers/feedback/send.js:23 -msgid "Feedback could not be submitted. Please try again later." -msgstr "No se pudo enviar el comentario. Por favor intente nuevamente." +#: www/views/confirm.html:79 +msgid "Fee: {{feeLevel}}" +msgstr "Comisión: {{feeLevel}}" -#: src/js/services/onGoingProcess.js:20 +#: src/js/controllers/feedback/send.js:23 +msgid "Feedback could not be submitted. Please try again later." +msgstr "No se pudo enviar la sugerencia. Por favor intente nuevamente." + +#: src/js/services/onGoingProcess.js:20 msgid "Fetching Payment Information" msgstr "Obteniendo información del pago" -#: www/views/export.html:11 -#: www/views/import.html:16 +#: www/views/export.html:11 +#: www/views/import.html:16 msgid "File/Text" msgstr "Archivo/Texto" -#: src/js/services/fingerprintService.js:43 -#: src/js/services/fingerprintService.js:48 +#: src/js/services/fingerprintService.js:43 +#: src/js/services/fingerprintService.js:48 msgid "Finger Scan Failed" msgstr "Fallo en la verificación de la huella" -#: src/js/controllers/feedback/send.js:34 -#: www/views/customAmount.html:9 +#: src/js/controllers/feedback/send.js:34 +#: www/views/customAmount.html:9 msgid "Finish" msgstr "Finalizar" -#: www/views/tab-create-personal.html:97 -#: www/views/tab-create-shared.html:127 +#: www/views/tab-create-personal.html:95 +#: www/views/tab-create-shared.html:125 msgid "For audit purposes" msgstr "Para propósitos de auditoría" -#: www/views/paperWallet.html:34 +#: www/views/paperWallet.html:34 msgid "Founds transferred" msgstr "Fondos transferidos" -#: www/views/translators.html:13 +#: www/views/translators.html:13 msgid "French" msgstr "Francés" -#: www/views/confirm.html:60 -#: www/views/modals/txp-details.html:74 -#: www/views/tx-details.html:50 +#: www/views/confirm.html:60 +#: www/views/confirm.html:62 +#: www/views/modals/txp-details.html:74 +#: www/views/tx-details.html:48 msgid "From" msgstr "Desde" -#: www/views/tab-export-qrCode.html:5 +#: www/views/tab-export-qrCode.html:5 msgid "From the destination device, go to Add wallet > Import wallet and scan this QR code" -msgstr "Desde el dispositivo de destino, ir a Agregar billetera > Importar y escanear este código QR" +msgstr "Desde el dispositivo de destino, ir a Agregar monedero > Importar y escanear este código QR" -#: src/js/services/bwcError.js:74 +#: src/js/services/bwcError.js:74 msgid "Funds are locked by pending spend proposals" msgstr "Los fondos están bloqueados por propuestas de gastos pendientes" -#: www/views/paperWallet.html:16 +#: www/views/paperWallet.html:16 msgid "Funds found:" msgstr "Fondos encontrados:" -#: www/views/paperWallet.html:23 +#: www/views/paperWallet.html:23 msgid "Funds will be transferred to" msgstr "Los fondos serán transferidos a" -#: src/js/services/onGoingProcess.js:21 +#: src/js/services/onGoingProcess.js:21 msgid "Generating .csv file..." msgstr "Generando archivo .csv..." -#: src/js/services/onGoingProcess.js:37 +#: src/js/services/onGoingProcess.js:37 msgid "Generating new address..." msgstr "Generando una nueva dirección..." -#: www/views/bitpayCardIntro.html:23 +#: www/views/bitpayCardIntro.html:23 msgid "Get local cash anywhere you go, from any Visa® compatible ATM. ATM bank fees may apply." msgstr "Consigue efectivo local dondequiera que vayas, desde cualquier ATM Visa® compatible. Comisión de parte del ATM pueden ser aplicadas." -#: www/views/onboarding/collectEmail.html:15 +#: www/views/onboarding/collectEmail.html:15 msgid "Get news and updates from BitPay" msgstr "Recibir noticias y actualizaciones de BitPay" -#: www/views/onboarding/welcome.html:9 +#: www/views/onboarding/welcome.html:9 msgid "Get started" -msgstr "Empezar" +msgstr "Empezar ahora" -#: www/views/addressbook.html:20 -msgid "Get started by adding your first one." -msgstr "Comienza agregando el primero." - -#: src/js/services/onGoingProcess.js:38 +#: src/js/services/onGoingProcess.js:38 msgid "Getting addresses..." msgstr "Consiguiendo direcciones..." -#: src/js/services/onGoingProcess.js:22 +#: src/js/services/onGoingProcess.js:22 msgid "Getting fee levels..." msgstr "Obteniendo niveles de comisión..." -#: src/js/controllers/onboarding/terms.js:23 -#: src/js/controllers/preferencesAbout.js:16 -#: src/js/controllers/preferencesLanguage.js:14 -#: src/js/controllers/tab-home.js:141 -#: src/js/controllers/tab-settings.js:55 -#: src/js/controllers/translators.js:11 -#: src/js/controllers/tx-details.js:128 -msgid "Go Back" -msgstr "Volver" +#: www/views/glidera.html:39 +msgid "Glidera Inc. (Glidera) is providing the service of buying or selling bitcoin to BitPay users. To enable this service, Glidera has registered with US Treasury Department’s FinCEN as a Money Service Business (#31000042625755). Users of BitPay must agree to the service agreement presented by Glidera prior to obtaining Glidera’s service of buying or selling bitcoin." +msgstr "Glidera Inc. (Glidera) provee el servicio para comprar y vender bitcoins a los usuarios de BitPay. Para habilitar este servicio, Glidera se ha registrado con US Treasury Department’s FinCEN como Money Service Business (#31000042625755). Los usuarios de BitPay deben aceptar los términos y condiciones presentados por Glidera, antes de obtener el servicio de compra y venta de bitcoin de éste." -#: src/js/controllers/bitpayCardIntro.js:35 -#: src/js/controllers/onboarding/backupRequest.js:13 -#: src/js/controllers/onboarding/backupRequest.js:19 +#: src/js/controllers/bitpayCardIntro.js:35 +#: src/js/controllers/onboarding/backupRequest.js:13 +#: src/js/controllers/onboarding/backupRequest.js:19 +#: www/views/includes/backupLaterPopup.html:4 msgid "Go back" msgstr "Volver" -#: www/views/backupWarning.html:15 -#: www/views/includes/confirmBackupPopup.html:8 +#: www/views/includes/backupWarningPopup.html:4 +#: www/views/includes/confirmBackupPopup.html:8 msgid "Got it" msgstr "Entiendo" -#: www/views/onboarding/tour.html:18 -msgid "Got it →" -msgstr "Entiendo →" - -#: www/views/preferences.html:20 -#: www/views/preferencesInformation.html:47 +#: www/views/preferences.html:20 +#: www/views/preferencesInformation.html:47 msgid "Hardware Wallet" -msgstr "Billetera Física" +msgstr "Monedero Físico" -#: www/views/import.html:20 +#: www/views/import.html:20 msgid "Hardware wallet" -msgstr "Billetera física" +msgstr "Monedero de Hardware" -#: www/views/tab-settings.html:27 +#: www/views/glidera.html:34 +msgid "Have the OAuth Code?" +msgstr "¿Tiene el código OAuth?" + +#: www/views/tab-settings.html:27 msgid "Help & Support" msgstr "Ayuda & Soporte" -#: src/js/controllers/tab-settings.js:53 -msgid "Help and support information is available at the BitPay Help Center website." -msgstr "La ayuda y soporte esta disponible en la página BitPay Help Center." - -#: www/views/addresses.html:24 +#: www/views/addresses.html:29 msgid "Hide" msgstr "Ocultar" -#: www/views/preferences.html:34 +#: www/views/preferences.html:34 msgid "Hide Balance" msgstr "Balance Oculto" -#: www/views/join.html:46 -#: www/views/tab-create-personal.html:25 -#: www/views/tab-create-shared.html:55 -#: www/views/tab-export-file.html:23 -#: www/views/tab-import-file.html:28 -#: www/views/tab-import-hardware.html:31 -#: www/views/tab-import-phrase.html:31 +#: www/views/join.html:48 +#: www/views/tab-create-personal.html:25 +#: www/views/tab-create-shared.html:55 +#: www/views/tab-export-file.html:23 +#: www/views/tab-import-file.html:28 +#: www/views/tab-import-hardware.html:31 +#: www/views/tab-import-phrase.html:31 msgid "Hide advanced options" msgstr "Ocultar opciones avanzadas" -#: www/views/tabs.html:3 +#: www/views/tabs.html:3 msgid "Home" msgstr "Inicio" -#: src/js/controllers/feedback/send.js:56 -#: src/js/controllers/feedback/send.js:60 -#: src/js/controllers/feedback/send.js:64 +#: src/js/controllers/feedback/send.js:55 +#: src/js/controllers/feedback/send.js:59 +#: src/js/controllers/feedback/send.js:63 msgid "How could we improve your experience?" -msgstr "¿Cómo podríamos mejorar tu experiencia?" +msgstr "¿Cómo podríamos mejorar su experiencia?" -#: www/views/feedback/rateCard.html:3 +#: www/views/feedback/rateCard.html:3 msgid "How do you like BitPay?" msgstr "¿Te gusta BitPay?" -#: src/js/controllers/feedback/rateCard.js:28 +#: src/js/controllers/feedback/rateCard.js:28 msgid "I don't like it" msgstr "No me gusta" -#: www/views/onboarding/disclaimer.html:44 +#: www/views/onboarding/disclaimer.html:44 msgid "I have read, understood, and agree to the Terms of Use." -msgstr "He leído, entendido y acepto los Términos de Uso." +msgstr "He leido, entendido y acepto los Terminos de Uso." -#: www/views/modals/terms.html:22 +#: www/views/modals/terms.html:22 msgid "I have read, understood, and agree with the Terms of use." -msgstr "He leído, entendido y acepto los Términos de uso." +msgstr "He leído, entendido y acepto los términos de uso." -#: www/views/join.html:112 -#: www/views/tab-create-personal.html:81 -#: www/views/tab-create-shared.html:111 +#: www/views/join.html:112 +#: www/views/tab-create-personal.html:79 +#: www/views/tab-create-shared.html:109 msgid "I have written it down" -msgstr "Ya he anotado" +msgstr "Lo he anotado" -#: src/js/controllers/feedback/rateCard.js:34 +#: src/js/controllers/feedback/rateCard.js:34 msgid "I like the app" msgstr "Me gusta la aplicación" -#: src/js/controllers/feedback/rateCard.js:25 +#: src/js/controllers/feedback/rateCard.js:25 msgid "I think this app is terrible." msgstr "Creo que esta aplicación es terrible." -#: src/js/controllers/onboarding/backupRequest.js:12 -#: www/views/includes/screenshotWarningModal.html:9 +#: src/js/controllers/onboarding/backupRequest.js:12 +#: www/views/includes/backupLaterPopup.html:7 +#: www/views/includes/screenshotWarningModal.html:9 msgid "I understand" msgstr "Entiendo" -#: www/views/onboarding/disclaimer.html:21 +#: www/views/onboarding/disclaimer.html:21 msgid "I understand that if this app is moved to another device or deleted, my bitcoin can only be recovered with the backup phrase." -msgstr "Entiendo que si esta aplicación es borrada, mis fondos pueden recuperarse únicamente con la copia de seguridad." +msgstr "Entiendo que si esta aplicación se mueve a otro dispositivo o es borrada, mis bitcoins pueden solamente ser recuperados con la frase de copia de seguridad." -#: www/views/onboarding/disclaimer.html:18 +#: www/views/onboarding/disclaimer.html:18 msgid "I understand that my funds are held securely on this device, not by a company." -msgstr "Entiendo que mis fondos están protegidos por el dispositivo y no por una empresa." +msgstr "Entiendo que mis fondos están resguardados en este dispositivo, no por una empresa." -#: www/views/backup.html:29 +#: www/views/onboarding/backupRequest.html:12 +msgid "I'll backup my wallet later" +msgstr "Haré la copia de seguridad más tarde" + +#: www/views/includes/backupNeededPopup.html:10 +msgid "I'll do it later" +msgstr "Lo haré más adelante" + +#: www/views/backup.html:29 msgid "I've written it down" -msgstr "Ya he anotado" +msgstr "Lo he anotado" -#: www/views/advancedSettings.html:50 +#: www/views/advancedSettings.html:50 msgid "If enabled, the Recent Transactions card - a list of transactions occuring across all wallets - will appear in the Home tab." -msgstr "Si se habilita, aparecerá una lista de las transacciones recientes de las billeteras en el inicio." +msgstr "Si está habilitado, la tarjeta con Transacciones Recientes - una lista de las transacciones mas recientes de todas sus wallets - aparecerá en su pantalla principal." -#: www/views/advancedSettings.html:36 +#: www/views/advancedSettings.html:36 msgid "If enabled, wallets will also try to spend unconfirmed funds. This option may cause transaction delays." -msgstr "Si se habilita, las billeteras podrán gastar los fondos sin confirmar. Esta opción puede causar demoras en la transacción." +msgstr "Si es habilitado, mis monederos intentarán gastar fondos sin confirmar. Esta opción puede causar retrasos en la transacción." -#: src/js/controllers/onboarding/backupRequest.js:11 +#: www/views/includes/backupLaterPopup.html:3 +msgid "If something happens to this device, this app is deleted, or your password forgotten, neither you nor Bitpay can recover your funds." +msgstr "Si algo le pasa a este dispositivo, esta aplicación es eliminada, o olvidó su contraseña, ni usted ni BitPay puede recuperar sus fondos." + +#: src/js/controllers/onboarding/backupRequest.js:11 msgid "If this device is replaced or this app is deleted, neither you nor BitPay can recover your funds without a backup." -msgstr "Si pierdes este dispositivo o esta aplicación es eliminada, ni tú ni BitPay podrán recuperar el dinero." +msgstr "Si se sustituye este dispositivo o esta aplicación es eliminada, ni usted ni BitPay podrán recuperar sus fondos sin una copia de seguridad." -#: www/views/feedback/complete.html:19 +#: www/views/feedback/complete.html:19 msgid "If you have additional feedback, please let us know by tapping the \"Send feedback\" option in the Settings tab." -msgstr "Si tienes comentarios adicionales, por favor envíalos pulsando la opción \"Enviar comentarios\" en la pestaña de preferencias." +msgstr "Si tiene comentarios adicionales, por favor, háganoslo saber pulsando la opción \"Enviar comentarios\" en preferencias." -#: www/views/includes/screenshotWarningModal.html:8 +#: www/views/includes/screenshotWarningModal.html:8 msgid "If you take a screenshot, your backup may be viewed by other apps. You can make a safe backup with physical paper and a pen." -msgstr "Si tomas una captura de pantalla, otras aplicaciones podrían ver tu copia de seguridad. La forma más acertada es resguardarla con tinta y papel." +msgstr "Si usted toma una captura de pantalla, otras aplicaciones podrían ver su copia de seguridad. La forma más acertada es hacer una copia de seguridad con tinta y papel." -#: www/views/tab-import-hardware.html:42 -#: www/views/tab-import-phrase.html:61 +#: www/views/tab-import-hardware.html:42 +#: www/views/tab-import-phrase.html:61 msgid "Import" msgstr "Importar" -#: www/views/import.html:3 +#: www/views/import.html:3 msgid "Import Wallet" -msgstr "Importar billetera" +msgstr "Importar monedero" -#: www/views/tab-import-file.html:39 +#: www/views/tab-import-file.html:39 msgid "Import backup" msgstr "Importar copia de seguridad" -#: www/views/add.html:38 +#: www/views/add.html:38 msgid "Import wallet" -msgstr "Importar billetera" +msgstr "Importar monedero" -#: src/js/services/onGoingProcess.js:23 +#: src/js/services/onGoingProcess.js:23 msgid "Importing Wallet..." -msgstr "Importando billetera..." +msgstr "Importando Monedero..." -#: www/views/backup.html:65 +#: www/views/backup.html:65 msgid "In order to verify your wallet backup, please type your password." -msgstr "Para verificar la copia de seguridad de la billetera, por favor escriba la contraseña." +msgstr "Con el fin de verificar la copia de seguridad del monedero, por favor escriba su contraseña." -#: www/views/includes/walletSelector.html:18 -#: www/views/tab-home.html:79 -#: www/views/tab-settings.html:114 +#: www/views/includes/walletSelector.html:18 +#: www/views/tab-home.html:79 +#: www/views/tab-settings.html:114 msgid "Incomplete" msgstr "Incompleta" -#: www/views/tab-receive.html:30 +#: www/views/tab-receive.html:35 msgid "Incomplete wallet" -msgstr "Billetera Incompleta" +msgstr "Monedero Incompleto" -#: src/js/services/bwcError.js:113 +#: src/js/services/bwcError.js:113 msgid "Incorrect address network" msgstr "Dirección de red incorrecta" -#. Trying to import a malformed wallet export QR code -#: src/js/controllers/import.js:51 +#. Trying to import a malformed wallet export QR code +#: src/js/controllers/import.js:50 msgid "Incorrect code format" msgstr "Formato de código incorrecto" -#: src/js/services/bwcError.js:44 -#: www/views/confirm.html:116 +#: src/js/services/bwcError.js:44 +#: www/views/confirm.html:116 msgid "Insufficient funds" msgstr "Fondos insuficientes" -#: src/js/services/bwcError.js:71 +#: src/js/services/bwcError.js:71 msgid "Insufficient funds for fee" msgstr "Fondos insuficientes para el pago de la comisión" -#: www/views/modals/search.html:70 -#: www/views/walletDetails.html:253 +#: www/views/modals/search.html:70 +#: www/views/walletDetails.html:236 msgid "Invalid" msgstr "Inválido" -#: src/js/controllers/create.js:157 -#: src/js/controllers/import.js:294 -#: src/js/controllers/join.js:136 +#: src/js/controllers/create.js:149 +#: src/js/controllers/import.js:293 +#: src/js/controllers/join.js:129 msgid "Invalid account number" msgstr "Número de cuenta inválido" -#: src/js/services/bwcError.js:119 +#: src/js/services/bwcError.js:119 msgid "Invalid address" msgstr "Dirección inválida" -#: src/js/controllers/tabsController.js:7 +#: src/js/controllers/tabsController.js:7 msgid "Invalid data" msgstr "Datos no válidos" -#: src/js/controllers/create.js:137 -#: src/js/controllers/import.js:229 -#: src/js/controllers/join.js:115 +#: src/js/controllers/create.js:129 +#: src/js/controllers/import.js:228 +#: src/js/controllers/join.js:108 msgid "Invalid derivation path" msgstr "Camino de derivación no válido" -#: src/js/controllers/copayers.js:75 +#: src/js/controllers/copayers.js:75 msgid "Invitation to share a {{appName}} Wallet" -msgstr "Invitación para unirse a la billetera {{appName}} compartida" +msgstr "Invitación para unirse al monedero {{appName}} compartido" -#: src/js/controllers/feedback/send.js:72 +#: src/js/controllers/feedback/send.js:71 msgid "Is there anything we could do better?" msgstr "¿Hay algo que podríamos mejorar?" -#: www/views/backup.html:47 +#: www/views/backup.html:47 msgid "Is this correct?" -msgstr "¿Es correcto?" +msgstr "¿Es esto correcto?" -#: www/views/onboarding/collectEmail.html:22 +#: www/views/onboarding/collectEmail.html:22 msgid "Is this email address correct?" msgstr "¿Es correcta esta dirección de correo electrónico?" -#: www/views/addresses.html:24 -msgid "It's a good idea to avoid reusing addresses - this both protects your privacy and keeps your bitcoins secure against hypothetical attacks by quantum computers." -msgstr "Es una buena idea evitar el reuso de las direcciones. Esto protege tu privacidad y mantiene tus fondos seguros contra hipotéticos ataques de ordenadores cuánticos." +#: www/views/addresses.html:29 +msgid "It's a good idea to avoid reusing addresses-this both protects your privacy and keeps your bitcoins secure against hypothetical attacks by quantum computers." +msgstr "Es una buena idea evitar rehusar las direcciones- esto protege su privacidad y mantiene tus bitcoins seguro contra hipotéticos ataques de ordenadores cuánticos." -#: src/js/controllers/backup.js:76 +#: src/js/controllers/backup.js:76 msgid "It's important that you write your backup phrase down correctly. If something happens to your wallet, you'll need this backup to recover your money. Please review your backup and try again." -msgstr "Es importante que escribas correctamente la frase de seguridad. Si algo le pasa a tu billetera, necesitarás de ésta para recuperar el dinero. Revísala y vuelve a intentarlo." +msgstr "Es importante que usted escriba su frase copia de seguridad correctamente. Si algo le pasa a su monedero, necesitarás de esta para recuperar su dinero. Revise la copia de seguridad y vuelva a intentarlo." -#: www/views/join.html:18 +#: www/views/join.html:18 msgid "John" msgstr "Juan" -#: www/views/join.html:126 +#: www/views/join.html:126 msgid "Join" msgstr "Unirse" -#: src/js/controllers/copayers.js:70 +#: src/js/controllers/copayers.js:70 msgid "Join my {{appName}} Wallet. Here is the invitation code: {{secret}} You can download {{appName}} for your phone or desktop at {{appUrl}}" -msgstr "Únete a mi billetera {{appName}}. Aquí está el código de invitación: {{secret}} puede descargar {{appName}} para su teléfono o escritorio en {{appUrl}}" +msgstr "Únete a mi monedero {{appName}}. Aquí está el código de invitación: {{secret}} puede descargar {{appName}} para su teléfono o escritorio en {{appUrl}}" -#: www/views/add.html:30 -#: www/views/join.html:5 +#: www/views/add.html:30 +#: www/views/join.html:5 msgid "Join shared wallet" -msgstr "Unirse a una billetera compartida" +msgstr "Unirse a un monedero compartido" -#: src/js/services/onGoingProcess.js:24 +#: src/js/services/onGoingProcess.js:24 msgid "Joining Wallet..." -msgstr "Uniéndose a la billetera..." +msgstr "Uniéndose al monedero..." -#: www/views/onboarding/tour.html:17 +#: www/views/onboarding/tour.html:17 msgid "Just scan the code to pay." -msgstr "Sólo escanea y paga." +msgstr "Escanea y paga." -#: src/js/services/bwcError.js:116 +#: src/js/services/bwcError.js:116 msgid "Key already associated with an existing wallet" msgstr "La clave ya esta asociada a un monedero existente" -#: www/views/preferencesLanguage.html:4 -#: www/views/tab-settings.html:60 +#: www/views/preferencesLanguage.html:4 +#: www/views/tab-settings.html:60 msgid "Language" msgstr "Idioma" -#: www/views/bitpayCard.html:56 +#: www/views/bitpayCard.html:56 msgid "Last Month" msgstr "Mes pasado" -#: www/views/backup.html:36 +#: www/views/backup.html:36 msgid "Let's verify your backup phrase." -msgstr "Verifiquemos la copia de seguridad." +msgstr "Vamos a verificar su frase copia de seguridad." -#: src/js/services/onGoingProcess.js:35 +#: src/js/services/onGoingProcess.js:35 msgid "Loading transaction info..." msgstr "Cargando información de transacción..." -#: www/views/modals/wallet-balance.html:80 -msgid "Locked" -msgstr "Bloqueado" - -#: src/js/services/bwcError.js:86 +#: src/js/services/bwcError.js:86 msgid "Locktime in effect. Please wait to create a new spend proposal" -msgstr "Bloqueo temporal. Por favor espera para crear una nueva propuesta de gasto" +msgstr "Bloqueo temporal. Por favor espere para crear una nueva propuesta de gasto" -#: src/js/services/bwcError.js:89 +#: src/js/services/bwcError.js:89 msgid "Locktime in effect. Please wait to remove this spend proposal" -msgstr "Bloqueo temporal. Por favor espera para eliminar esta propuesta de gasto" +msgstr "Bloqueo temporal. Por favor espere para eliminar esta propuesta de gasto" -#: www/views/paymentUri.html:13 +#: www/views/paymentUri.html:13 msgid "Make a payment to" msgstr "Hacer un pago a" -#: www/views/onboarding/tour.html:33 -msgid "Makes sense →" -msgstr "Entiendo →" - -#: src/js/controllers/modals/search.js:61 +#: src/js/controllers/modals/search.js:61 msgid "Matches:" msgstr "Coincidencias:" -#: www/views/includes/copayers.html:4 -#: www/views/preferencesInformation.html:72 +#: www/views/includes/copayers.html:4 +#: www/views/preferencesInformation.html:72 msgid "Me" msgstr "Yo" -#: src/js/controllers/feedback/rateCard.js:31 +#: src/js/controllers/feedback/rateCard.js:31 msgid "Meh - it's alright" msgstr "Buu - está bien" -#: src/js/controllers/tx-details.js:100 -#: www/views/modals/paypro.html:48 -#: www/views/modals/txp-details.html:89 -#: www/views/tx-details.html:66 +#: src/js/controllers/tx-details.js:100 +#: www/views/modals/paypro.html:48 +#: www/views/modals/txp-details.html:89 +#: www/views/tx-details.html:64 msgid "Memo" msgstr "Nota" -#: www/views/modals/txp-details.html:126 +#: www/views/modals/txp-details.html:126 msgid "Merchant Message" -msgstr "Mensaje del comerciante" +msgstr "Mensaje del negocio" -#: www/views/paymentUri.html:17 +#: www/views/paymentUri.html:17 msgid "Message" msgstr "Mensaje" -#: src/js/services/bwcError.js:134 +#: src/js/services/bwcError.js:134 msgid "Missing parameter" msgstr "Faltan parámetros" -#: src/js/services/bwcError.js:32 +#: src/js/services/bwcError.js:32 msgid "Missing private keys to sign" msgstr "Faltan las claves privadas para firmar" -#: www/views/preferences.html:56 -#: www/views/preferencesAdvanced.html:3 +#: www/views/preferences.html:56 +#: www/views/preferencesAdvanced.html:3 msgid "More Options" msgstr "Más opciones" -#: www/views/modals/search.html:67 -#: www/views/tx-details.html:19 -#: www/views/walletDetails.html:251 +#: www/views/modals/search.html:67 +#: www/views/walletDetails.html:234 msgid "Moved" msgstr "Movido" -#: src/js/controllers/tx-details.js:24 +#: src/js/controllers/tx-details.js:24 msgid "Moved Funds" msgstr "Fondos movidos" -#: www/views/includes/confirm-tx.html:13 -#: www/views/modals/txp-details.html:57 +#: www/views/includes/confirm-tx.html:13 +#: www/views/modals/txp-details.html:57 msgid "Multiple recipients" msgstr "Varios destinatarios" -#: www/views/tab-import-phrase.html:8 +#: www/views/tab-import-phrase.html:8 msgid "NOTE: To import a wallet from a 3rd party software, please go to Add Wallet > Create Wallet, and specify the Recovery Phrase there." -msgstr "Nota: Para importar una billetera de un software de tercero debes ir a Añadir billetera > Crear billetera, y especificar la frase de recuperación." +msgstr "Nota: Para importar un monedero de un software de tercero, por favor vaya a Añadir Monedero > Crear Monedero, y especificar la frase de recuperación allí." -#: www/views/addressbook.add.html:21 -#: www/views/addressbook.view.html:15 -#: www/views/preferences.html:13 -#: www/views/preferencesAlias.html:17 +#: www/views/addressbook.add.html:21 +#: www/views/addressbook.view.html:15 +#: www/views/preferences.html:13 +#: www/views/preferencesAlias.html:17 msgid "Name" msgstr "Nombre" -#: www/views/paymentUri.html:18 +#: www/views/paymentUri.html:18 msgid "Network" msgstr "Red" -#: src/js/services/bwcError.js:47 +#: src/js/services/bwcError.js:47 msgid "Network connection error" msgstr "Error de conexión a la red" -#: www/views/includes/walletActivity.html:43 +#: www/views/includes/walletActivity.html:43 msgid "New Proposal" msgstr "Nueva propuesta de pago" -#: src/js/controllers/addresses.js:84 +#: src/js/controllers/addresses.js:85 msgid "New address could not be generated. Please try again." -msgstr "No se pudo generar la nueva dirección. Por favor inténtalo de nuevo." +msgstr "No se pudo generar la nueva dirección. Por favor, inténtelo de nuevo." -#: www/views/add.html:14 +#: www/views/add.html:14 msgid "New personal wallet" -msgstr "Nueva billetera personal" +msgstr "Nuevo monedero personal" -#: www/views/tab-home.html:147 +#: www/views/tab-home.html:146 msgid "Next steps" msgstr "Próximos pasos" -#: www/views/onboarding/collectEmail.html:27 +#: www/views/onboarding/collectEmail.html:27 msgid "No" msgstr "No" -#: www/views/tab-receive.html:7 +#: www/views/tab-receive.html:12 msgid "No Wallet" -msgstr "Sin billetera" +msgstr "Sin monedero" -#: www/views/onboarding/backupRequest.html:5 +#: www/views/onboarding/backupRequest.html:5 msgid "No backup, no bitcoin." -msgstr "Sin copia de seguridad, no hay bitcoins." +msgstr "Sin copia de seguridad, no bitcoin." -#: www/views/addressbook.html:19 +#: www/views/addressbook.html:19 msgid "No contacts yet" -msgstr "Aun no hay contactos" +msgstr "Aún no hay contactos" -#: www/views/tab-import-hardware.html:3 +#: www/views/tab-import-hardware.html:3 msgid "No hardware wallets supported on this device" -msgstr "No hay billeteras físicas compatibles con este dispositivo" +msgstr "No hay monederos hardware compatibles con este dispositivo" -#: www/views/proposals.html:25 +#: www/views/proposals.html:25 msgid "No pending proposals" msgstr "No propuestas de pago pendientes" -#: www/views/activity.html:25 +#: www/views/activity.html:25 msgid "No recent transactions" msgstr "No hay transacciones recientes" -#: www/views/walletDetails.html:196 +#: www/views/walletDetails.html:179 msgid "No transactions yet" -msgstr "Aun no hay transacciones" +msgstr "Sin transacciones todavía" -#: src/js/controllers/amount.js:298 +#: src/js/controllers/amount.js:309 msgid "No wallet found!" -msgstr "¡No hay billetera!" +msgstr "¡No hay monedero!" -#: www/views/confirm.html:113 +#: www/views/confirm.html:113 msgid "No wallets available" -msgstr "No hay billeteras disponibles" +msgstr "No hay monederos disponibles" -#: www/views/paperWallet.html:28 +#: www/views/paperWallet.html:28 msgid "No wallets available to receive funds" -msgstr "No hay billeteras disponibles para recibir fondos" +msgstr "No hay monederos disponibles para recibir fondos" -#: src/js/services/feeService.js:9 +#: src/js/services/feeService.js:9 msgid "Normal" msgstr "Normal" -#: src/js/services/bwcError.js:80 +#: src/js/services/bwcError.js:80 msgid "Not authorized" msgstr "No autorizado" -#: src/js/controllers/confirm.js:179 +#: src/js/controllers/confirm.js:171 msgid "Not enough funds for fee" msgstr "No hay suficientes fondos para la comisión" -#: www/views/onboarding/tour.html:45 +#: www/views/onboarding/tour.html:45 msgid "Not even BitPay can access it." -msgstr "Ni siquiera BitPay puede acceder a ellos." +msgstr "Ni BitPay puede acceder a él." -#: src/js/controllers/paperWallet.js:47 +#: src/js/controllers/paperWallet.js:47 msgid "Not funds found" -msgstr "No se encontraron fondos" +msgstr "Fondos no encontrados" -#: www/views/feedback/rateApp.html:3 -#: www/views/onboarding/notifications.html:8 +#: www/views/feedback/rateApp.html:3 +#: www/views/onboarding/notifications.html:8 msgid "Not now" msgstr "Ahora no" -#: www/views/includes/output.html:15 +#: www/views/includes/output.html:15 msgid "Note" msgstr "Nota" -#: www/views/modals/wallets.html:25 +#: www/views/modals/wallets.html:25 msgid "Notice: only 1-1 (single signature) wallets can be used for sell bitcoin" -msgstr "Aviso: solo billeteras 1-1 (única firma) pueden ser utilizadas para vender bitcoin" +msgstr "Aviso: solo monederos 1-1 (única firma) pueden ser utilizados para vender bitcoin" -#: www/views/preferencesNotifications.html:10 -#: www/views/preferencesNotifications.html:3 -#: www/views/tab-settings.html:53 +#: www/views/preferencesNotifications.html:10 +#: www/views/preferencesNotifications.html:3 +#: www/views/tab-settings.html:53 msgid "Notifications" msgstr "Notificaciones" -#: www/views/includes/backupNeededPopup.html:8 +#: www/views/includes/backupNeededPopup.html:8 msgid "Now is a good time to backup your wallet. If this device is lost, it is impossible to access your funds without a backup." -msgstr "Es un buen momento para realizar una copia de seguridad de la billetera. Si este dispositivo se pierde, será imposible acceder a los fondos." +msgstr "Ahora es un buen momento para realizar la copia de seguridad de tu monedero. Si este dispositivo se pierde, es imposible tener acceso a sus fondos sin una copia de seguridad." -#: www/views/backupWarning.html:11 +#: www/views/backupWarning.html:11 msgid "Now is a perfect time to assess your surroundings. Nearby windows? Hidden cameras? Shoulder-spies?" -msgstr "Es el momento perfecto para mirar a tu alrededor. ¿ventanas? ¿cámaras? ¿gente curiosa?" +msgstr "Ahora es el momento perfecto para revisar sus alrededores. ¿Ventanas? ¿Cámaras ocultas? ¿Espías?" -#: src/js/services/popupService.js:15 -#: src/js/services/popupService.js:58 +#: src/js/services/popupService.js:15 +#: src/js/services/popupService.js:57 msgid "OK" msgstr "OK" -#: www/views/modals/tx-status.html:12 -#: www/views/modals/tx-status.html:24 -#: www/views/modals/tx-status.html:36 -#: www/views/modals/tx-status.html:46 +#: www/views/modals/tx-status.html:12 +#: www/views/modals/tx-status.html:24 +#: www/views/modals/tx-status.html:36 +#: www/views/modals/tx-status.html:46 msgid "OKAY" msgstr "LISTO" -#: www/views/modals/terms.html:15 -#: www/views/termsOfUse.html:12 +#: www/views/modals/terms.html:15 +#: www/views/termsOfUse.html:12 msgid "Official English Disclaimer" msgstr "Renuncia oficial en inglés" -#: src/js/controllers/feedback/send.js:59 +#: src/js/controllers/feedback/send.js:58 msgid "Oh no!" msgstr "¡Oh no!" -#: www/views/tab-home.html:29 +#: www/views/tab-home.html:29 msgid "On this screen you can see all your wallets, accounts, and assets." -msgstr "En esta pantalla puedes ver tus billeteras, cuentas y activos." +msgstr "En esta pantalla puedes ver tus monederos, cuentas y activos." -#: src/js/controllers/preferencesLanguage.js:13 -#: src/js/controllers/translators.js:10 -msgid "Open Crowdin" -msgstr "Abrir Crowdin" - -#: src/js/controllers/preferencesAbout.js:15 -msgid "Open GitHub" -msgstr "Abrir GitHub" - -#: src/js/controllers/preferencesAbout.js:13 -msgid "Open GitHub Project" -msgstr "Abrir Proyecto en GitHub" - -#: src/js/controllers/tab-settings.js:54 -msgid "Open Help Center" -msgstr "Abrir Centro de Ayuda" - -#: src/js/controllers/tx-details.js:127 -msgid "Open Insight" -msgstr "Abrir Insight" - -#: www/views/tab-scan.html:22 -msgid "Open Settings" -msgstr "Abrir Opciones" - -#: src/js/controllers/preferencesLanguage.js:11 -#: src/js/controllers/translators.js:8 -msgid "Open Translation Community" -msgstr "Abrir Comunidad de Traducciones" - -#: src/js/controllers/onboarding/terms.js:22 -msgid "Open Website" -msgstr "Abrir Sitio Web" - -#: www/views/tab-receive.html:36 +#: www/views/tab-receive.html:41 msgid "Open wallet" -msgstr "Abrir billetera" +msgstr "Abrir monedero" -#: www/views/bitpayCardIntro.html:34 +#: www/views/bitpayCardIntro.html:34 msgid "Order the BitPay Card" msgstr "Solicitar tarjeta de BitPay" -#: www/views/join.html:100 -#: www/views/join.html:93 -#: www/views/tab-create-personal.html:64 -#: www/views/tab-create-personal.html:70 -#: www/views/tab-create-shared.html:100 -#: www/views/tab-create-shared.html:94 -#: www/views/tab-import-file.html:18 -#: www/views/tab-import-phrase.html:36 +#: www/views/tab-import-file.html:18 +#: www/views/tab-import-phrase.html:36 msgid "Password" msgstr "Contraseña" -#: src/js/controllers/import.js:64 +#: src/js/controllers/import.js:63 msgid "Password required. Make sure to enter your password in advanced options" -msgstr "Se requiere contraseña. Asegúrate de introducirla en opciones avanzadas" +msgstr "Contraseña necesaria. Asegúrese de introducir su contraseña en opciones avanzadas" -#: www/views/join.html:33 +#: www/views/join.html:35 msgid "Paste invitation here" msgstr "Pegar invitación aquí" -#: www/views/tab-import-file.html:13 +#: www/views/tab-import-file.html:13 msgid "Paste the backup plain text code" msgstr "Pegar copia de seguridad en texto plano" -#: www/views/bitpayCardIntro.html:28 +#: www/views/bitpayCardIntro.html:28 msgid "Pay 0% fees to turn bitcoin into dollars." msgstr "Paga 0% de comisión para transformar tus bitcoin en dólares." -#: www/views/modals/paypro.html:18 +#: www/views/modals/paypro.html:21 msgid "Pay To" msgstr "Pagar A" -#: www/views/modals/tx-status.html:33 +#: www/views/modals/tx-status.html:33 msgid "Payment Accepted" msgstr "Pago Aceptado" -#: www/views/confirm.html:28 +#: www/views/confirm.html:28 msgid "Payment Expires:" msgstr "Pago expira:" -#: www/views/modals/txp-details.html:6 +#: www/views/modals/txp-details.html:6 msgid "Payment Proposal" msgstr "Propuesta de Pago" -#: www/views/modals/tx-status.html:21 +#: www/views/modals/tx-status.html:21 msgid "Payment Proposal Created" msgstr "Propuesta de Pago Creada" -#: www/views/tab-home.html:36 +#: www/views/tab-home.html:36 msgid "Payment Proposals" msgstr "Propuestas de Pago" -#: src/js/services/payproService.js:42 +#: src/js/services/payproService.js:42 msgid "Payment Protocol Invalid" msgstr "Protocolo de Pago Inválido" -#: src/js/services/payproService.js:18 +#: src/js/services/payproService.js:18 msgid "Payment Protocol not supported on Chrome App" msgstr "El protocolo de pago no está soportado en Chrome" -#: www/views/includes/walletActivity.html:20 +#: www/views/includes/walletActivity.html:20 msgid "Payment Received" msgstr "Pago recibido" -#: www/views/modals/tx-status.html:43 -#: www/views/modals/txp-details.html:43 +#: www/views/modals/tx-status.html:43 +#: www/views/modals/txp-details.html:43 msgid "Payment Rejected" msgstr "Pago Rechazado" -#: www/views/confirm.html:140 -#: www/views/includes/walletActivity.html:11 -#: www/views/modals/txp-details.html:182 -#: www/views/modals/txp-details.html:42 +#: www/views/includes/walletActivity.html:11 +#: www/views/modals/txp-details.html:42 msgid "Payment Sent" msgstr "Pago Enviado" -#: www/views/modals/txp-details.html:32 +#: www/views/modals/txp-details.html:32 msgid "Payment accepted, but not yet broadcasted" msgstr "Pago aceptado, pero aún no fue enviado" -#: www/views/modals/txp-details.html:40 +#: www/views/modals/txp-details.html:40 msgid "Payment accepted. It will be broadcasted by Glidera. In case there is a problem, it can be deleted 6 hours after it was created." -msgstr "Pago aceptado. Se transmitirá por Glidera. En caso de que haya un problema, puedes eliminar la transacción 6 horas después de fue creada." +msgstr "Pago aceptado. Se transmitirá por Glidera. En caso de que haya un problema, puede eliminar la transacción 6 horas después de fue creada." -#: www/views/modals/txp-details.html:102 +#: www/views/modals/txp-details.html:102 msgid "Payment details" msgstr "Detalles del pago" -#: www/views/modals/paypro.html:6 +#: www/views/modals/paypro.html:6 msgid "Payment request" msgstr "Solicitud de pago" -#: www/views/bitpayCard.html:99 +#: www/views/bitpayCard.html:99 msgid "Pending" msgstr "Pendiente" -#: www/views/proposals.html:5 +#: www/views/proposals.html:5 msgid "Pending Proposals" msgstr "Propuestas de pago pendientes" -#: www/views/preferencesDeleteWallet.html:11 +#: www/views/preferencesDeleteWallet.html:11 msgid "Permanently delete this wallet." -msgstr "Eliminar esta billetera de forma permanente." +msgstr "Eliminar este monedero de forma permanente." -#: src/js/services/profileService.js:416 +#: src/js/services/profileService.js:416 msgid "Personal Wallet" -msgstr "Billetera Personal" +msgstr "Monedero Personal" -#: www/views/backup.html:18 +#: www/views/backup.html:18 msgid "Please carefully write down this phrase." -msgstr "Por favor, anota cuidadosamente esta frase." +msgstr "Por favor, escriba con atención esta frase." -#: www/views/tab-scan.html:20 +#: www/views/tab-scan.html:20 msgid "Please connect a camera to get started." -msgstr "Por favor, conecta una cámara para empezar." +msgstr "Por favor, conecte una cámara para empezar." -#: src/js/controllers/import.js:240 +#: src/js/controllers/import.js:239 msgid "Please enter the recovery phrase" -msgstr "Por favor ingresa la frase de recuperación" +msgstr "Por favor ingrese la frase de recuperación" -#: src/js/controllers/create.js:109 -#: src/js/controllers/join.js:93 +#: src/js/controllers/create.js:101 +#: src/js/controllers/join.js:86 msgid "Please enter the required fields" -msgstr "Por favor ingresa los campos requeridos" +msgstr "Por favor ingrese los campos requeridos" -#: src/js/controllers/create.js:150 -#: src/js/controllers/join.js:129 +#: src/js/controllers/create.js:142 +#: src/js/controllers/join.js:122 msgid "Please enter the wallet recovery phrase" -msgstr "Por favor ingresa la frase de recuperación de la billetera" +msgstr "Por favor ingrese la frase de recuperación del monedero" -#: www/views/backup.html:46 +#: www/views/backup.html:46 msgid "Please tap each word in the correct order." -msgstr "Escoje las palabras en el orden correcto." +msgstr "Por favor, pulse cada palabra en el orden correcto." -#: src/js/services/bwcError.js:101 +#: src/js/services/bwcError.js:101 msgid "Please upgrade Copay to perform this action" -msgstr "Por favor actualiza Copay para realizar esta acción" +msgstr "Por favor actualice Copay para realizar esta acción" -#: src/js/controllers/confirm.js:465 +#: src/js/controllers/confirm.js:453 msgid "Please, enter the code below" -msgstr "Por favor, introduce el código" +msgstr "Por favor, introduzca el código" -#: src/js/controllers/import.js:202 +#: src/js/controllers/import.js:201 msgid "Please, select your backup file" -msgstr "Por favor, selecciona el archivo de copia de seguridad" +msgstr "Por favor, seleccione el archivo de copia de seguridad" -#: www/views/tab-settings.html:47 +#: www/views/tab-settings.html:47 msgid "Preferences" msgstr "Preferencias" -#: src/js/services/onGoingProcess.js:39 +#: src/js/services/onGoingProcess.js:39 msgid "Preparing addresses..." msgstr "Preparando direcciones..." -#: src/js/controllers/export.js:182 +#: src/js/controllers/export.js:182 msgid "Preparing backup..." msgstr "Preparando copia de seguridad..." -#: src/js/routes.js:1099 +#: src/js/routes.js:1099 msgid "Press again to exit" msgstr "Presione nuevamente para salir" -#: src/js/services/feeService.js:8 +#: src/js/services/feeService.js:8 msgid "Priority" msgstr "Prioritario" -#: src/js/controllers/paperWallet.js:142 +#: src/js/controllers/paperWallet.js:142 msgid "Private key encrypted. Enter password" -msgstr "La clave privada está encriptada. Escriba la contraseña" +msgstr "Clave privada cifrada. Escriba la contraseña" -#: src/js/services/bwcError.js:35 +#: src/js/services/bwcError.js:35 msgid "Private key is encrypted, cannot sign" -msgstr "La clave privada está encriptada, no puedes firmar" +msgstr "La clave privada esta encriptada, no puede firmar" -#: www/views/includes/walletActivity.html:51 +#: www/views/includes/walletActivity.html:51 msgid "Proposal Accepted" msgstr "Propuesta Aceptada" -#: src/js/controllers/modals/txpDetails.js:38 -#: src/js/controllers/tx-details.js:64 -#: www/views/confirm.html:141 +#: src/js/controllers/modals/txpDetails.js:38 +#: src/js/controllers/tx-details.js:64 msgid "Proposal Created" msgstr "Propuesta Creada" -#: www/views/includes/walletActivity.html:27 +#: www/views/includes/walletActivity.html:27 msgid "Proposal Deleted" msgstr "Propuesta Eliminada" -#: www/views/includes/walletActivity.html:35 +#: www/views/includes/walletActivity.html:35 msgid "Proposal Rejected" msgstr "Propuesta Rechazada" -#: www/views/walletDetails.html:181 +#: www/views/walletDetails.html:164 msgid "Proposals" msgstr "Propuestas" -#: www/views/onboarding/notifications.html:3 +#: www/views/onboarding/notifications.html:3 msgid "Push Notifications" msgstr "Notificaciones Push" -#: www/views/preferencesNotifications.html:19 +#: www/views/preferencesNotifications.html:19 msgid "Push notifications for {{appName}} are currently disabled. Enable them in the Settings app." msgstr "Notificaciones push para {{appName}} están deshabilitadas. Habilitarla en la configuración de la aplicación." -#: www/views/export.html:14 +#: www/views/export.html:14 msgid "QR Code" msgstr "Código QR" -#: www/views/onboarding/disclaimer.html:13 +#: www/views/onboarding/disclaimer.html:13 msgid "Quick review!" msgstr "¡Revisión rápida!" -#: src/js/controllers/create.js:69 -#: src/js/controllers/join.js:53 +#: src/js/controllers/create.js:70 +#: src/js/controllers/join.js:53 msgid "Random" msgstr "Al azar" -#: www/views/feedback/rateApp.html:14 +#: www/views/feedback/rateApp.html:14 msgid "Rate on the app store" msgstr "Califica en la app store" -#: www/views/addresses.html:49 +#: www/views/addresses.html:43 msgid "Read less" msgstr "Mostrar menos" -#: www/views/addresses.html:48 +#: www/views/addresses.html:42 msgid "Read more" msgstr "Leer más" -#: www/views/tab-receive.html:3 -#: www/views/tabs.html:7 +#: www/views/tab-receive.html:3 +#: www/views/tabs.html:7 msgid "Receive" msgstr "Recibir" -#: www/views/modals/search.html:51 -#: www/views/tx-details.html:18 -#: www/views/walletDetails.html:237 +#: www/views/modals/search.html:51 +#: www/views/walletDetails.html:220 msgid "Received" msgstr "Recibido" -#: src/js/controllers/tx-details.js:23 +#: src/js/controllers/tx-details.js:23 msgid "Received Funds" msgstr "Fondos recibidos" -#: www/views/walletDetails.html:259 +#: www/views/walletDetails.html:242 msgid "Receiving" msgstr "Recibiendo" -#: www/views/bitpayCard.html:55 -#: www/views/walletDetails.html:216 +#: www/views/bitpayCard.html:55 +#: www/views/walletDetails.html:199 msgid "Recent" msgstr "Recientes" -#: www/views/advancedSettings.html:48 +#: www/views/advancedSettings.html:48 msgid "Recent Transaction Card" -msgstr "Tarjeta con transacciones recientes" +msgstr "Tarjeta con Transacciones Recientes" -#: www/views/activity.html:4 -#: www/views/tab-home.html:48 +#: www/views/activity.html:4 +#: www/views/tab-home.html:48 msgid "Recent Transactions" msgstr "Transacciones Recientes" -#: www/views/amount.html:18 -#: www/views/tab-send.html:22 +#: www/views/amount.html:18 +#: www/views/tab-send.html:22 msgid "Recipient" msgstr "Destinatario" -#: www/views/modals/txp-details.html:62 +#: www/views/modals/txp-details.html:62 msgid "Recipients" msgstr "Destinatarios" -#: www/views/import.html:12 +#: www/views/import.html:12 msgid "Recovery phrase" msgstr "Frase de Recuperación" -#: www/views/walletDetails.html:122 -#: www/views/walletDetails.html:36 +#: www/views/walletDetails.html:114 +#: www/views/walletDetails.html:35 msgid "Recreate" msgstr "Recrear" -#: src/js/services/onGoingProcess.js:25 +#: src/js/services/onGoingProcess.js:25 msgid "Recreating Wallet..." -msgstr "Recreando billetera..." +msgstr "Recreando Monedero..." -#: src/js/controllers/modals/txpDetails.js:40 -#: src/js/controllers/tx-details.js:66 +#: src/js/controllers/modals/txpDetails.js:40 +#: src/js/controllers/tx-details.js:66 msgid "Rejected" msgstr "Rechazado" -#: src/js/services/onGoingProcess.js:26 +#: src/js/services/onGoingProcess.js:26 msgid "Rejecting payment proposal" msgstr "Rechazando propuesta de pago" -#: www/views/preferencesAbout.html:9 +#: www/views/preferencesAbout.html:9 msgid "Release information" msgstr "Información de la versión" -#: www/views/tab-export-file.html:16 +#: www/views/tab-export-file.html:16 msgid "Repeat password" -msgstr "Escribe nuevamente la contraseña" +msgstr "Escriba nuevamente la contraseña" -#: www/views/tab-export-file.html:15 +#: www/views/tab-export-file.html:15 msgid "Repeat the password" msgstr "Repetir la contraseña" -#: www/views/includes/password.html:5 +#: www/views/includes/password.html:5 msgid "Repeat the spending password" -msgstr "Repetir la contraseña para pagos" +msgstr "Repetir la contraseña para enviar" -#: www/views/preferences.html:51 +#: www/views/preferences.html:51 msgid "Request Fingerprint" msgstr "Solicitar Huella Digital" -#: www/views/addresses.html:30 +#: src/js/controllers/tab-receive.js:153 msgid "Request Specific amount" msgstr "Solicitar importe Especifico" -#: www/views/preferences.html:46 +#: www/views/preferences.html:46 msgid "Request Spending Password" -msgstr "Solicitar contraseña para pagos" +msgstr "Solicitar contraseña para enviar" -#: www/views/tab-create-shared.html:42 +#: www/views/tab-create-shared.html:42 msgid "Required number of signatures" msgstr "Número requerido de firmas" -#: www/views/onboarding/welcome.html:10 +#: www/views/onboarding/welcome.html:10 msgid "Restore from backup" msgstr "Restaurar desde copia de seguridad" -#: src/js/services/onGoingProcess.js:28 +#: src/js/services/onGoingProcess.js:28 msgid "Retrieving inputs information" msgstr "Recuperando información de las entradas" -#: src/js/controllers/onboarding/tour.js:59 +#: src/js/controllers/onboarding/tour.js:59 msgid "Retry" msgstr "Vuelva a intentarlo" -#: www/views/tab-scan.html:23 -msgid "Retry Camera" -msgstr "Reintentar" - -#: www/views/includes/password.html:31 +#: www/views/includes/password.html:31 msgid "SET" msgstr "ESTABLECER" -#: www/views/addressbook.add.html:56 -#: www/views/includes/note.html:9 -#: www/views/preferencesAlias.html:21 -#: www/views/preferencesBwsUrl.html:23 -#: www/views/preferencesNotifications.html:42 +#: www/views/addressbook.add.html:58 +#: www/views/includes/note.html:9 +#: www/views/preferencesAlias.html:21 +#: www/views/preferencesBwsUrl.html:18 +#: www/views/preferencesNotifications.html:42 msgid "Save" msgstr "Guardar" -#: www/views/tab-scan.html:3 -#: www/views/tabs.html:11 +#: www/views/tab-scan.html:3 +#: www/views/tabs.html:11 msgid "Scan" msgstr "Escanear" -#: www/views/tab-scan.html:15 +#: www/views/tab-scan.html:15 msgid "Scan QR Codes" msgstr "Escanear Código QR" -#: www/views/addresses.html:38 +#: src/js/controllers/addresses.js:119 msgid "Scan addresses for funds" msgstr "Busca direcciones con fondos" -#: www/views/walletDetails.html:40 +#: www/views/walletDetails.html:39 msgid "Scan status finished with error" msgstr "La búsqueda finalizó con error" -#: src/js/services/fingerprintService.js:56 +#: src/js/services/fingerprintService.js:56 msgid "Scan your fingerprint please" msgstr "Por favor ingrese su huella digital" -#: src/js/services/onGoingProcess.js:29 +#: src/js/services/onGoingProcess.js:29 msgid "Scanning Wallet funds..." -msgstr "Buscando fondos en la billetera..." +msgstr "Buscando fondos en el Monedero..." -#: www/views/includes/screenshotWarningModal.html:7 +#: www/views/includes/backupWarningPopup.html:2 +#: www/views/includes/screenshotWarningModal.html:7 msgid "Screenshots are not secure" -msgstr "Las capturas de pantallas no son seguras" +msgstr "Capturas de pantallas no son seguras" -#: www/views/modals/search.html:6 +#: www/views/modals/search.html:6 msgid "Search Transactions" msgstr "Buscar transacciones" -#: www/views/tab-send.html:26 +#: www/views/tab-send.html:26 msgid "Search or enter bitcoin address" msgstr "Buscar o introducir dirección bitcoin" -#: www/views/modals/search.html:16 +#: www/views/modals/search.html:16 msgid "Search transactions" msgstr "Buscar transacciones" -#: www/views/preferencesAltCurrency.html:14 -msgid "Search your currency" -msgstr "Busca tu moneda" - -#: www/views/preferences.html:37 +#: www/views/preferences.html:37 msgid "Security" msgstr "Seguridad" -#: www/views/tab-import-file.html:7 +#: www/views/tab-import-file.html:7 msgid "Select a backup file" msgstr "Seleccionar el archivo de copia de seguridad" -#: www/views/paymentUri.html:30 +#: www/views/paymentUri.html:30 msgid "Select a wallet" -msgstr "Seleccionar una billetera" +msgstr "Seleccionar un monedero" -#: www/views/modals/paypro.html:38 +#: www/views/modals/paypro.html:38 msgid "Self-signed Certificate" msgstr "Certificado autofirmado" -#: src/js/services/onGoingProcess.js:42 +#: src/js/services/onGoingProcess.js:42 msgid "Selling Bitcoin..." msgstr "Vendiendo Bitcoins..." -#: www/views/feedback/send.html:13 -#: www/views/feedback/send.html:43 -#: www/views/tab-send.html:3 -#: www/views/tabs.html:15 +#: www/views/feedback/send.html:13 +#: www/views/feedback/send.html:43 +#: www/views/tab-send.html:3 +#: www/views/tabs.html:15 msgid "Send" msgstr "Enviar" -#: www/views/feedback/send.html:3 -#: www/views/tab-settings.html:36 +#: www/views/feedback/send.html:3 +#: www/views/tab-settings.html:36 msgid "Send Feedback" msgstr "Enviar Sugerencia" -#: www/views/addressbook.view.html:27 +#: www/views/addressbook.view.html:27 msgid "Send Money" msgstr "Enviar dinero" -#: www/views/allAddresses.html:14 +#: src/js/controllers/addresses.js:124 msgid "Send addresses by email" msgstr "Enviar las direcciones por email" -#: www/views/includes/confirm-tx.html:3 +#: www/views/includes/confirm-tx.html:3 msgid "Send bitcoin" msgstr "Enviar bitcoin" -#: www/views/preferencesLogs.html:15 -#: www/views/tab-export-file.html:80 +#: www/views/preferencesLogs.html:15 +#: www/views/tab-export-file.html:80 msgid "Send by email" msgstr "Enviar por correo electrónico" -#: src/js/controllers/confirm.js:255 +#: src/js/controllers/confirm.js:247 msgid "Send from" msgstr "Enviar desde" -#: www/views/includes/itemSelector.html:8 +#: src/js/controllers/amount.js:97 msgid "Send max amount" msgstr "Enviar la máxima cantidad" -#: www/views/feedback/rateApp.html:17 +#: www/views/feedback/rateApp.html:17 msgid "Send us feedback instead" -msgstr "En su lugar, enviar comentario" +msgstr "En su lugar, enviar sugerencia" -#: www/views/confirm.html:15 -#: www/views/includes/txp.html:14 -#: www/views/modals/txp-details.html:19 -#: www/views/walletDetails.html:258 +#: www/views/confirm.html:15 +#: www/views/includes/txp.html:14 +#: www/views/modals/txp-details.html:19 +#: www/views/walletDetails.html:241 msgid "Sending" msgstr "Enviando" -#: src/js/services/onGoingProcess.js:40 +#: src/js/services/onGoingProcess.js:40 msgid "Sending 2FA code..." msgstr "Enviando código 2FA..." -#: src/js/services/onGoingProcess.js:36 +#: src/js/services/onGoingProcess.js:36 msgid "Sending feedback..." -msgstr "Enviando comentario..." +msgstr "Enviando sugerencia..." -#: www/views/confirm.html:16 +#: www/views/confirm.html:16 msgid "Sending maximum amount" msgstr "Enviando cantidad máxima" -#: src/js/services/onGoingProcess.js:30 +#: src/js/services/onGoingProcess.js:30 msgid "Sending transaction" msgstr "Enviando transacción" -#: src/js/controllers/confirm.js:509 +#: src/js/controllers/confirm.js:505 msgid "Sending {{amountStr}} from your {{name}} wallet" -msgstr "Enviando {{amountStr}} desde tu billetera {{name}}" +msgstr "Enviando {{amountStr}} desde tu monedero {{name}}" -#: www/views/modals/search.html:60 -#: www/views/modals/tx-status.html:9 -#: www/views/tx-details.html:17 -#: www/views/walletDetails.html:246 +#: www/views/modals/search.html:60 +#: www/views/modals/tx-status.html:9 +#: www/views/walletDetails.html:229 msgid "Sent" msgstr "Enviado" -#: src/js/controllers/tx-details.js:22 +#: src/js/controllers/tx-details.js:22 msgid "Sent Funds" msgstr "Fondos enviados" -#: src/js/services/bwcError.js:38 +#: src/js/services/bwcError.js:38 msgid "Server response could not be verified" msgstr "La respuesta del servidor no se ha podido verificar" -#: www/views/preferencesLogs.html:3 +#: www/views/preferencesLogs.html:3 msgid "Session Log" msgstr "Registro de sesión" -#: www/views/preferencesAbout.html:40 +#: www/views/preferencesAbout.html:40 msgid "Session log" msgstr "Registro de sesión" -#: www/views/tab-export-file.html:10 +#: www/views/tab-export-file.html:10 msgid "Set up a password" msgstr "Configurar una contraseña" -#: www/views/includes/password.html:4 +#: www/views/includes/password.html:4 msgid "Set up a spending password" -msgstr "Configura una contraseña para pagos" +msgstr "Configurar contraseña para enviar" -#: www/views/tab-settings.html:3 -#: www/views/tabs.html:19 +#: www/views/tab-settings.html:3 +#: www/views/tabs.html:19 msgid "Settings" msgstr "Configuración" -#: www/views/customAmount.html:20 -#: www/views/tab-receive.html:65 -#: www/views/tab-settings.html:43 +#: www/views/customAmount.html:20 +#: www/views/tab-receive.html:70 +#: www/views/tab-settings.html:43 msgid "Share" msgstr "Compartir" -#: www/views/feedback/complete.html:5 +#: www/views/feedback/complete.html:5 msgid "Share BitPay" msgstr "Compartir BitPay" -#: www/views/copayers.html:36 +#: www/views/copayers.html:36 msgid "Share invitation" msgstr "Compartir invitación" -#: www/views/feedback/complete.html:13 -#: www/views/feedback/complete.html:22 +#: www/views/feedback/complete.html:13 +#: www/views/feedback/complete.html:22 msgid "Share the love by inviting your friends." msgstr "Comparte la pasión invitando a tus amigos." -#: www/views/copayers.html:17 +#: www/views/copayers.html:17 msgid "Share this invitation with your copayers" msgstr "Compartir esta invitación con sus copayers" -#: www/views/tab-import-hardware.html:24 +#: www/views/tab-import-hardware.html:24 msgid "Shared Wallet" -msgstr "Billetera Compartida" +msgstr "Monedero Compartido" -#: www/views/join.html:45 -#: www/views/tab-create-personal.html:24 -#: www/views/tab-create-shared.html:54 -#: www/views/tab-export-file.html:22 -#: www/views/tab-import-file.html:27 -#: www/views/tab-import-hardware.html:30 -#: www/views/tab-import-phrase.html:30 +#: www/views/join.html:47 +#: www/views/tab-create-personal.html:24 +#: www/views/tab-create-shared.html:54 +#: www/views/tab-export-file.html:22 +#: www/views/tab-import-file.html:27 +#: www/views/tab-import-hardware.html:30 +#: www/views/tab-import-phrase.html:30 msgid "Show advanced options" msgstr "Mostrar opciones avanzadas" -#: www/views/tab-send.html:17 +#: www/views/tab-send.html:17 msgid "Show bitcoin address" msgstr "Mostrar dirección bitcoin" -#: www/views/tab-send.html:52 +#: www/views/tab-send.html:52 msgid "Show more" msgstr "Ver más" -#: src/js/services/bwcError.js:104 +#: src/js/services/bwcError.js:104 msgid "Signatures rejected by server" msgstr "Firmas rechazadas por el servidor" -#: src/js/services/onGoingProcess.js:31 +#: src/js/services/onGoingProcess.js:31 msgid "Signing transaction" msgstr "Firmando transacción" -#: www/views/onboarding/backupRequest.html:6 +#: www/views/onboarding/backupRequest.html:6 msgid "Since only you control your money, you’ll need to save your backup phrase in case this app is deleted." -msgstr "Ya que sólo tu controlas tu dinero, deberás guardar la copia de seguridad en caso de que esta aplicación sea eliminada." +msgstr "Ya que sólo usted controla su dinero, necesitará guardar su frase copia de seguridad en caso de que esta aplicación sea eliminada." -#: www/views/tab-create-personal.html:96 -#: www/views/tab-create-shared.html:126 +#: www/views/tab-create-personal.html:94 +#: www/views/tab-create-shared.html:124 msgid "Single Address Wallet" -msgstr "Billetera de una sola dirección" +msgstr "Monedero de una sola dirección" -#: www/views/onboarding/collectEmail.html:40 +#: www/views/onboarding/collectEmail.html:40 msgid "Skip" msgstr "Omitir" -#: www/views/translators.html:15 +#: www/views/translators.html:15 msgid "Spanish" msgstr "Español" -#: src/js/controllers/create.js:72 -#: src/js/controllers/join.js:56 +#: src/js/controllers/create.js:73 +#: src/js/controllers/join.js:56 msgid "Specify Recovery Phrase..." msgstr "Especificar la frase de recuperación..." -#: src/js/services/bwcError.js:92 +#: src/js/services/bwcError.js:92 msgid "Spend proposal is not accepted" msgstr "La propuesta de gasto no se ha aceptado" -#: src/js/services/bwcError.js:95 +#: src/js/services/bwcError.js:95 msgid "Spend proposal not found" msgstr "La propuesta de gasto no se ha encontrado" -#: src/js/services/bwcError.js:137 +#: src/js/services/bwcError.js:137 msgid "Spending Password needed" -msgstr "Se necesita la contraseña para pagos" +msgstr "Se necesita la contraseña para enviar" -#: www/views/tab-send.html:11 +#: www/views/tab-send.html:11 msgid "Start sending bitcoin" msgstr "Empezar a enviar bitcoin" -#: src/js/routes.js:112 +#: src/js/routes.js:112 msgid "Starting..." msgstr "Empezando..." -#: src/js/services/feeService.js:11 +#: src/js/services/feeService.js:11 msgid "Super Economy" msgstr "Súper Económico" -#: www/views/paperWallet.html:7 +#: www/views/paperWallet.html:7 msgid "Sweep" msgstr "Importar" -#: www/views/paperWallet.html:3 +#: www/views/paperWallet.html:3 msgid "Sweep paper wallet" -msgstr "Importar billetera en papel" +msgstr "Importar monedero en papel" -#: src/js/services/onGoingProcess.js:32 +#: src/js/services/onGoingProcess.js:32 msgid "Sweeping Wallet..." -msgstr "Leyendo la Billetera..." +msgstr "Leyendo el Monedero..." -#: www/views/preferencesDeleteWallet.html:14 +#: www/views/preferencesDeleteWallet.html:14 msgid "THIS ACTION CANNOT BE REVERSED" msgstr "ESTA ACCIÓN NO SE PUEDE REVERTIR" -#: www/views/onboarding/welcome.html:6 +#: www/views/onboarding/welcome.html:6 msgid "Take control of your money,
get started with bitcoin." -msgstr "Toma control de tu dinero,
comienza a utilizar bitcoin." +msgstr "Toma control sobre tu dinero,
comienza a utilizar bitcoin." -#: www/views/walletDetails.html:145 -#: www/views/walletDetails.html:65 +#: www/views/walletDetails.html:128 +#: www/views/walletDetails.html:70 msgid "Tap and hold to show" msgstr "Tocar y mantener para mostrar" -#: www/views/walletDetails.html:117 -#: www/views/walletDetails.html:31 -#: www/views/walletDetails.html:41 +#: www/views/walletDetails.html:109 +#: www/views/walletDetails.html:30 +#: www/views/walletDetails.html:40 msgid "Tap to retry" msgstr "Toque para reintentar" -#: www/views/termsOfUse.html:3 +#: www/views/tab-settings.html:142 +msgid "Tell a friend" +msgstr "Recomendar a un amigo" + +#: www/views/termsOfUse.html:3 msgid "Terms Of Use" msgstr "Términos de uso" -#: www/views/modals/terms.html:3 -#: www/views/onboarding/disclaimer.html:29 -#: www/views/onboarding/disclaimer.html:44 -#: www/views/preferencesAbout.html:30 +#: www/views/modals/terms.html:3 +#: www/views/onboarding/disclaimer.html:29 +#: www/views/onboarding/disclaimer.html:44 +#: www/views/preferencesAbout.html:30 msgid "Terms of Use" msgstr "Términos de Uso" -#: www/views/tab-create-personal.html:92 +#: www/views/tab-create-personal.html:90 msgid "Testnet" msgstr "Testnet" -#: src/js/controllers/feedback/send.js:27 -#: src/js/controllers/feedback/send.js:71 -#: www/views/feedback/complete.html:16 -#: www/views/feedback/rateApp.html:4 +#: src/js/controllers/feedback/send.js:27 +#: src/js/controllers/feedback/send.js:70 +#: www/views/feedback/complete.html:16 +#: www/views/feedback/rateApp.html:4 msgid "Thank you!" msgstr "¡Gracias!" -#: src/js/controllers/feedback/send.js:67 +#: src/js/controllers/feedback/send.js:66 msgid "Thanks!" msgstr "¡Gracias!" -#: src/js/controllers/feedback/send.js:68 +#: src/js/controllers/feedback/send.js:67 msgid "That's exciting to hear. We'd love to earn that fifth star from you – how could we improve your experience?" -msgstr "Es emocionante escucharlo. Nos encantaría ganar esa quinta estrella – ¿cómo podemos mejorar tu experiencia?" +msgstr "Es emocionante escucharlo. Nos encantaría ganar esa quinta estrella de usted – ¿cómo podemos mejorar tu experiencia?" -#: src/js/services/ledger.js:139 +#: src/js/services/ledger.js:139 msgid "The Ledger Chrome application is not installed" msgstr "La aplicación Ledger de Chrome no esta instalada" -#: www/views/modals/wallet-balance.html:55 -msgid "The amount of bitcoin immediately spendable from this wallet." -msgstr "Total de bitcoins disponibles en esta billetera para su uso inmediato." - -#: www/views/modals/wallet-balance.html:93 -msgid "The amount of bitcoin stored in this wallet that is allocated as inputs to your pending transaction proposals. The amount is determined using unspent transaction outputs associated with this wallet and may be more than the actual amounts associated with your pending transaction proposals." -msgstr "La cantidad de bitcoins almacenados en esta billetera que se utilizan como \"inputs\" en la transacción pendiente. Esa cantidad se determina en base a los \"unspent transaction outputs\" asociados con la billetera, estos pueden que sean mayor al monto enviado en la transacción en cuestión." - -#: www/views/modals/wallet-balance.html:74 -msgid "The amount of bitcoin stored in this wallet with less than 1 blockchain confirmation." -msgstr "La cantidad de bitcoins almacenados en esta billetera que poseen menos de 1 confirmación en \"Blockchain\"." - -#: www/views/tab-import-phrase.html:5 +#: www/views/tab-import-phrase.html:5 msgid "The derivation path" msgstr "La ruta de derivación" -#: www/views/onboarding/tour.html:32 +#: www/views/onboarding/tour.html:32 msgid "The exchange rate changes with the market." -msgstr "La cotización varía según el mercado." +msgstr "El tipo de cambio varía según el mercado." -#: www/views/preferencesFee.html:12 +#: www/views/preferencesFee.html:12 msgid "The higher the fee, the greater the incentive a miner has to include that transaction in a block. Current fees are determined based on network load and the selected policy." -msgstr "Mientras más grande la comisión, mayor incentivo tiene el minero para agregar tu transacción a un bloque. Las comisiones están determinadas en base al tráfico y política de la red elegida." +msgstr "Mientras más grande la comisión, mayor incentivo tiene el minero para agregar tu transacción a un bloque. Las comisiones están determinadas en base a la carga de la red y la política de comisión de la red elegida." -#: www/views/addresses.html:48 +#: www/views/addresses.html:42 msgid "The maximum number of consecutive unused addresses (20) has been reached. When one of your unused addresses receives a payment, a new address will be generated and shown in your Receive tab." -msgstr "Se ha alcanzado el número máximo de direcciones consecutivas sin utilizar (20). Cuando una de sus direcciones reciba un pago, una nueva dirección se generará y se mostrará en la pestaña 'Recibir'." +msgstr "Se ha alcanzado el número máximo de direcciones no utilizados consecutivas (20). Cuando una de sus direcciones reciba un pago, una nueva dirección se generará y se mostrará en la pestaña 'Recibir'." -#: src/js/controllers/onboarding/terms.js:21 -msgid "The official English Terms of Service are available on the BitPay website." -msgstr "Los términos y condiciones oficiales en inglés se encuentran disponibles en la web de BitPay." - -#: www/views/tab-import-phrase.html:4 +#: www/views/tab-import-phrase.html:4 msgid "The password of the recovery phrase (if set)" msgstr "La contraseña de la frase de recuperación (si existe)" -#: src/js/services/walletService.js:934 +#: src/js/services/walletService.js:951 msgid "The payment was created but could not be completed. Please try again from home screen" -msgstr "El pago fue creado pero no se pudo completar. Por favor intenta nuevamente desde la pantalla de inicio" +msgstr "El pago fue creado pero no se pudo completar. Por favor intente nuevamente desde la pantalla de inicio" -#: www/views/modals/txp-details.html:26 +#: www/views/modals/txp-details.html:26 msgid "The payment was removed by creator" msgstr "El pago fue eliminado por el creador" -#: www/views/join.html:88 -#: www/views/tab-create-personal.html:59 -#: www/views/tab-create-shared.html:89 -#: www/views/tab-import-phrase.html:38 +#: www/views/join.html:101 +#: www/views/tab-create-personal.html:69 +#: www/views/tab-create-shared.html:99 +#: www/views/tab-import-phrase.html:38 msgid "The recovery phrase could require a password to be imported" msgstr "La frase de recuperación podría requerir una contraseña para ser importada" -#: src/js/services/bwcError.js:56 +#: src/js/services/bwcError.js:56 msgid "The request could not be understood by the server" msgstr "La solicitud no pudo ser comprendida por el servidor" -#: www/views/addresses.html:49 +#: www/views/addresses.html:43 msgid "The restore process will stop when 20 addresses are generated in a row which contain no funds. To safely generate more addresses, make a payment to one of the unused addresses which has already been generated." -msgstr "El proceso generación de nuevas direcciones se detendrá cuando se generen 20 direcciones de manera consecutiva. Luego deberás recibir un pago en una de las direcciones sin uso para obtener una nueva." +msgstr "El proceso generación de nuevas direcciones se detendrá cuando 20 direcciones se generan de manera consecutiva. Luego, deberá realizar un pago a una de las direcciones sin uso, para obtener una nueva dirección." -#: src/js/services/bwcError.js:98 +#: src/js/services/bwcError.js:98 msgid "The spend proposal is not pending" msgstr "La propuesta de gasto no esta pendiente" -#: www/views/modals/wallet-balance.html:36 -msgid "The total amount of bitcoin stored in this wallet." -msgstr "El total de bitcoins almacenados en esta billetera." - -#: www/views/preferencesHistory.html:26 +#: www/views/preferencesHistory.html:26 msgid "The transaction history and every new incoming transaction are cached in the app. This feature clean this up and synchronizes again from the server" msgstr "El historial de transacciones y cada nueva transacción entrantes se almacenan en caché en la aplicación. Esta característica limpia y sincroniza otra vez desde el servidor" -#: www/views/tab-import-phrase.html:6 +#: www/views/tab-import-phrase.html:6 msgid "The wallet service URL" msgstr "URL de Wallet Service" -#: www/views/paymentUri.html:23 +#: www/views/paymentUri.html:23 msgid "There are no wallets to make this payment" -msgstr "No dispone de billeteras para realizar este pago" +msgstr "No dispone de monederos para realizar este pago" -#: src/js/controllers/import.js:193 -#: src/js/controllers/import.js:217 -#: src/js/controllers/import.js:284 +#: src/js/controllers/import.js:192 +#: src/js/controllers/import.js:216 +#: src/js/controllers/import.js:283 msgid "There is an error in the form" msgstr "Hay un error en el formulario" -#: src/js/controllers/feedback/send.js:56 -#: src/js/controllers/feedback/send.js:60 +#: src/js/controllers/feedback/send.js:55 +#: src/js/controllers/feedback/send.js:59 msgid "There's obviously something we're doing wrong." msgstr "Obviamente hay algo que estamos haciendo mal." -#: www/views/advancedSettings.html:42 +#: www/views/advancedSettings.html:42 msgid "These features aren't quite ready for primetime. They may change, stop working, or disappear at any time." -msgstr "Estas características no están listas por el momento. Pueden cambiar, fallar o desaparecer en cualquier momento." +msgstr "Estas características no están absolutamente listas por el momento. Pueden cambiar, dejar de trabajar o desaparecer en cualquier momento." -#: www/views/advancedSettings.html:57 +#: www/views/advancedSettings.html:57 msgid "These features make it easier to test complex functionality on all devices. They may be unstable." msgstr "Estas características hacen más fácil de probar la funcionalidad compleja en todos los dispositivos. Pueden ser inestables." -#: src/js/controllers/feedback/rateCard.js:37 +#: www/views/advancedSettings.html:73 +msgid "These utilities may be unstable. Proceed at your own risk." +msgstr "Estas utilidades pueden ser inestables. Proceda bajo su propio riesgo." + +#: src/js/controllers/feedback/rateCard.js:37 msgid "This app is fantastic!" msgstr "¡Esta aplicación es fantástica!" -#: www/views/onboarding/tour.html:42 +#: www/views/onboarding/tour.html:42 msgid "This app stores your bitcoin with cutting-edge security." -msgstr "Esta aplicación almacena tus bitcoins con seguridad avanzada." +msgstr "Esta aplicación almacena su bitcoin con seguridad avanzada." -#: src/js/controllers/confirm.js:450 +#: src/js/controllers/confirm.js:438 msgid "This bitcoin payment request has expired." msgstr "Esta solicitud de pago ha caducado." -#: www/views/join.html:108 -#: www/views/tab-create-personal.html:77 -#: www/views/tab-create-shared.html:107 +#: www/views/join.html:108 +#: www/views/tab-create-personal.html:75 +#: www/views/tab-create-shared.html:105 msgid "This password cannot be recovered. If the password is lost, there is no way you could recover your funds." -msgstr "Esta contraseña no se puede recuperar. Si la pierdes, no hay manera de que puedas recuperar los fondos." +msgstr "Esta contraseña no puede ser recuperada. Si pierde la contraseña, no hay ninguna manera de que pueda recuperar sus fondos." -#: www/views/backup.html:24 +#: www/views/backup.html:24 msgid "This recovery phrase was created with a password. To recover this wallet both the recovery phrase and password are needed." -msgstr "Esta frase de recuperación fue creada con una contraseña. Para recuperar esta billetera, la frase de recuperación y la contraseña son necesarios." +msgstr "Esta frase de recuperación fue creada con una contraseña. Para recuperar este monedero, la frase de recuperación y la contraseña son necesarios." -#: www/views/walletDetails.html:121 -#: www/views/walletDetails.html:35 +#: www/views/walletDetails.html:113 +#: www/views/walletDetails.html:34 msgid "This wallet is not registered at the given Bitcore Wallet Service (BWS). You can recreate it from the local information." -msgstr "Esta billetera no está registrada en el servidor de Bitcore Wallet Service (BWS). Debes re-crearla con la información local disponible." +msgstr "Este monedero no esta registrado en el servidor de Bitcore Wallet Service (BWS). Debe recrearlo con la información local disponible." -#: www/views/modals/txp-details.html:131 -#: www/views/tx-details.html:93 +#: www/views/modals/txp-details.html:131 +#: www/views/tx-details.html:91 msgid "Timeline" msgstr "Línea de tiempo" -#: www/views/confirm.html:33 -#: www/views/includes/output.html:2 -#: www/views/modals/txp-details.html:104 -#: www/views/modals/txp-details.html:53 -#: www/views/tx-details.html:39 -#: www/views/tx-details.html:51 +#: www/views/confirm.html:33 +#: www/views/confirm.html:61 +#: www/views/includes/output.html:2 +#: www/views/modals/txp-details.html:104 +#: www/views/modals/txp-details.html:53 +#: www/views/tx-details.html:37 +#: www/views/tx-details.html:49 msgid "To" msgstr "Para" -#: www/views/tab-send.html:12 +#: www/views/tab-send.html:12 msgid "To get started, buy bitcoin or share your address. You can receive bitcoin from any wallet or service." -msgstr "Para empezar, compra bitcoin o comparte tu dirección. Puedes recibir bitcoin desde cualquier billetera o servicio." +msgstr "Para empezar, compra bitcoin o comparte tu dirección. Puedes recibir bitcoin desde cualquier monedero o servicio." -#: www/views/tab-send.html:13 +#: www/views/tab-send.html:13 msgid "To get started, you'll need to create a bitcoin wallet and get some bitcoin." -msgstr "Para empezar, necesitarás crear una billetera y obtener bitcoins." +msgstr "Para empezar, usted necesitará crear un monedero bitcoin y obtener bitcoins." -#: www/views/modals/wallet-balance.html:23 -msgid "Total" -msgstr "Total" - -#: www/views/walletDetails.html:188 +#: www/views/walletDetails.html:171 msgid "Total Locked Balance" msgstr "Balance Total Bloqueado" -#: www/views/tab-create-shared.html:33 +#: www/views/tab-create-shared.html:33 msgid "Total number of copayers" msgstr "Número total de copayers" -#: src/js/services/fingerprintService.js:63 -#: src/js/services/fingerprintService.js:68 +#: src/js/services/fingerprintService.js:63 +#: src/js/services/fingerprintService.js:68 msgid "Touch ID Failed" msgstr "Falló Touch ID" -#: src/js/controllers/tx-details.js:6 +#: src/js/controllers/tx-details.js:6 msgid "Transaction" msgstr "Transacción" -#: www/views/preferencesAdvanced.html:24 -#: www/views/preferencesHistory.html:3 +#: www/views/preferencesAdvanced.html:24 +#: www/views/preferencesHistory.html:3 msgid "Transaction History" msgstr "Historial de Transacciones" -#: src/js/services/bwcError.js:83 +#: src/js/services/bwcError.js:83 msgid "Transaction already broadcasted" msgstr "La transacción ya fue enviada" -#: www/views/confirm.html:142 -msgid "Transaction created" -msgstr "Transacción creada" - -#: src/js/controllers/activity.js:45 -#: src/js/controllers/tab-home.js:166 -#: src/js/controllers/tx-details.js:18 +#: src/js/controllers/activity.js:45 +#: src/js/controllers/tab-home.js:154 +#: src/js/controllers/tx-details.js:18 msgid "Transaction not found" msgstr "Transacción no encontrada" -#: www/views/tab-send.html:61 +#: www/views/tab-send.html:61 msgid "Transfer to Wallet" -msgstr "Transferir a billetera" +msgstr "Transferir a monedero" -#: www/views/translators.html:9 +#: www/views/translators.html:9 msgid "Translation Credits" msgstr "Créditos de traducción" -#: www/views/preferencesAbout.html:35 -#: www/views/translators.html:3 +#: www/views/preferencesAbout.html:35 +#: www/views/translators.html:3 msgid "Translators" msgstr "Traductores" -#: www/views/bitpayCardIntro.html:18 +#: www/views/bitpayCardIntro.html:18 msgid "Turn bitcoin into dollars, swipe anywhere Visa® is accepted." msgstr "Convierta Bitcoins en Dólares, use Visa®." -#: www/views/tab-import-phrase.html:17 +#: www/views/tab-import-phrase.html:17 msgid "Type the Recovery Phrase (usually 12 words)" -msgstr "Escribe la frase de recuperación (normalmente 12 palabras)" +msgstr "Escriba la frase de recuperación (normalmente 12 palabras)" -#: src/js/controllers/backup.js:75 -msgid "Uh oh..." -msgstr "Ouch..." - -#: www/views/modals/search.html:36 -#: www/views/tx-details.html:81 +#: www/views/modals/search.html:36 +#: www/views/tx-details.html:79 msgid "Unconfirmed" msgstr "Sin confirmar" -#: www/views/preferencesUnit.html:4 +#: www/views/preferencesUnit.html:4 msgid "Unit" msgstr "Unidad" -#: www/views/walletDetails.html:182 +#: www/views/walletDetails.html:165 msgid "Unsent transactions" msgstr "Transacciones no enviadas" -#: www/views/addresses.html:41 +#: www/views/addresses.html:35 msgid "Unused Addresses" msgstr "Direcciones no utilizadas" -#: www/views/addresses.html:47 +#: www/views/addresses.html:41 msgid "Unused Addresses Limit" msgstr "Limite de direcciones sin uso" -#: src/js/controllers/tab-home.js:138 -msgid "Update Available" -msgstr "Actualización Disponible" - -#: www/views/proposals.html:15 +#: www/views/proposals.html:15 msgid "Updating pending proposals. Please stand by" -msgstr "Actualizando propuestas de pago pendientes. Por favor, espera" +msgstr "Actualizando propuestas de pago pendientes. Por favor, espere" -#: www/views/walletDetails.html:206 +#: www/views/walletDetails.html:189 msgid "Updating transaction history. Please stand by." -msgstr "Actualizando el historial de transacciones. Por favor aguarda un momento." +msgstr "Actualizando el historial de transacciones. Por favor aguarde un momento." -#: www/views/activity.html:14 +#: www/views/activity.html:14 msgid "Updating... Please stand by" -msgstr "Actualizando... Por favor, espera" +msgstr "Actualizando... Por favor, espere" -#: www/views/advancedSettings.html:34 +#: www/views/advancedSettings.html:34 msgid "Use Unconfirmed Funds" msgstr "Utilizar los fondos sin confirmar" -#: src/js/services/onGoingProcess.js:34 +#: src/js/services/onGoingProcess.js:34 msgid "Validating recovery phrase..." msgstr "Validando la frase de recuperación..." -#: src/js/services/onGoingProcess.js:33 +#: src/js/services/onGoingProcess.js:33 msgid "Validating wallet integrity..." -msgstr "Validación de integridad de la billetera..." +msgstr "Validación de integridad del monedero..." -#: www/views/preferencesAbout.html:14 +#: www/views/preferencesAbout.html:14 msgid "Version" msgstr "Versión" -#: www/views/tab-export-file.html:67 +#: www/views/tab-export-file.html:67 msgid "View" msgstr "Ver" -#: www/views/addresses.html:34 +#: www/views/addresses.html:66 msgid "View All Addresses" msgstr "Ver todas las direcciones" -#: src/js/controllers/onboarding/terms.js:20 -msgid "View Terms of Service" -msgstr "Ver Términos de Uso" - -#: src/js/controllers/tx-details.js:126 -msgid "View Transaction on Insight" -msgstr "Ver Transacción en Insight" - -#: src/js/controllers/tab-home.js:140 -msgid "View Update" -msgstr "Ver Actualización" - -#: www/views/tx-details.html:119 +#: www/views/tx-details.html:117 msgid "View on blockchain" msgstr "Ver en blockchain" -#: www/views/walletDetails.html:170 +#: www/views/walletDetails.html:153 msgid "WARNING: Key derivation is not working on this device/wallet. Actions cannot be performed on this wallet." -msgstr "ADVERTENCIA: Derivación de la clave no funciona en este dispositivo/billetera. Acciones no pueden realizarse en esta billetera." +msgstr "ADVERTENCIA: Derivación de la clave no funciona en este dispositivo/monedero. Acciones no pueden realizarse en este monedero." -#: www/views/tab-export-file.html:43 +#: www/views/tab-export-file.html:43 msgid "WARNING: Not including the private key allows to check the wallet balance, transaction history, and create spend proposals from the export. However, does not allow to approve (sign) proposals, so funds will not be accessible from the export." -msgstr "ADVERTENCIA: No incluir la clave privada permite verificar el saldo de la billetera, historial de transacciones y crear propuestas de gastos. Sin embargo, no permite aprobar propuestas (firmar), así que los fondos no serán accesibles al exportar." +msgstr "ADVERTENCIA: No incluir la clave privada permite verificar el saldo del monedero, historial de transacciones y crear propuestas de gastos. Sin embargo, no permite aprobar propuestas (firmar), así que los fondos no serán accesibles al exportar." -#: www/views/tab-export-file.html:34 +#: www/views/tab-export-file.html:34 msgid "WARNING: The private key of this wallet is not available. The export allows to check the wallet balance, transaction history, and create spend proposals from the export. However, does not allow to approve (sign) proposals, so funds will not be accessible from the export." -msgstr "ADVERTENCIA: La clave privada de esta billetera no está disponible. La exportación permite verificar el saldo de la billetera, historial de transacciones y crear propuestas de gastos. Sin embargo, no permite aprobar propuestas (firmar), así que los fondos no serán accesibles al exportar." +msgstr "ADVERTENCIA: La clave privada de este monedero no está disponible. La exportación permite verificar el saldo del monedero, historial de transacciones y crear propuestas de gastos en la exportación. Sin embargo, no permite aprobar propuestas (firmar), así que los fondos no serán accesibles al exportar." -#: www/views/modals/paypro.html:42 +#: www/views/modals/paypro.html:42 msgid "WARNING: UNTRUSTED CERTIFICATE" -msgstr "ADVERTENCIA: EL CERTIFICADO NO ES DE CONFIANZA" +msgstr "ADVERTENCIA: NO ES DE CONFIANZA EL CERTIFICADO" -#: src/js/services/onGoingProcess.js:14 +#: src/js/services/onGoingProcess.js:14 msgid "Waiting for Ledger..." msgstr "Esperando a Ledger..." -#: src/js/services/onGoingProcess.js:15 +#: src/js/services/onGoingProcess.js:15 msgid "Waiting for Trezor..." msgstr "Esperando a Trezor..." -#: www/views/copayers.html:48 +#: www/views/copayers.html:48 msgid "Waiting for copayers" msgstr "Esperando a los demás copayers" -#: www/views/copayers.html:53 +#: www/views/copayers.html:53 msgid "Waiting..." msgstr "Esperando..." -#: www/views/addresses.html:3 +#: www/views/addresses.html:3 msgid "Wallet Addresses" -msgstr "Direcciones de la billetera" +msgstr "Direcciones del Monedero" -#: www/views/preferencesColor.html:4 +#: www/views/preferencesColor.html:4 msgid "Wallet Color" -msgstr "Color de la billetera" +msgstr "Color del Monedero" -#: www/views/preferencesInformation.html:23 +#: www/views/preferencesInformation.html:23 msgid "Wallet Configuration (m-n)" -msgstr "Configuración de la billetera (m-n)" +msgstr "Configuración del Monedero (m-n)" -#: www/views/onboarding/collectEmail.html:5 +#: www/views/onboarding/collectEmail.html:5 msgid "Wallet Created" -msgstr "Billetera Creada" +msgstr "Monedero Creado" -#: www/views/preferencesInformation.html:17 +#: www/views/preferencesInformation.html:17 msgid "Wallet Id" -msgstr "Id de la Billetera" +msgstr "Id del Monedero" -#: www/views/preferencesAdvanced.html:12 -#: www/views/preferencesInformation.html:3 +#: www/views/preferencesAdvanced.html:12 +#: www/views/preferencesInformation.html:3 msgid "Wallet Information" -msgstr "Información de la Billetera" +msgstr "Información del Monedero" -#: www/views/join.html:26 +#: www/views/join.html:26 msgid "Wallet Invitation" -msgstr "Invitación para unirse a la billetera" +msgstr "Invitación para unirse al monedero" -#: www/views/join.html:57 -#: www/views/tab-create-personal.html:35 -#: www/views/tab-create-shared.html:65 +#: www/views/join.html:59 +#: www/views/tab-create-personal.html:35 +#: www/views/tab-create-shared.html:65 msgid "Wallet Key" -msgstr "Llave de la billetera" +msgstr "Llave de Monedero" -#: www/views/preferencesAlias.html:4 +#: www/views/preferencesAlias.html:4 msgid "Wallet Name" -msgstr "Nombre de la billetera" +msgstr "Nombre del Monedero" -#: www/views/preferencesInformation.html:11 +#: www/views/preferencesInformation.html:11 msgid "Wallet Name (at creation)" -msgstr "Nombre de la billetera (al crear)" +msgstr "Nombre del Monedero (al crear)" -#: www/views/preferencesInformation.html:29 +#: www/views/preferencesInformation.html:29 msgid "Wallet Network" -msgstr "Red de la billetera" +msgstr "Red del Monedero" -#: www/views/advancedSettings.html:31 +#: www/views/advancedSettings.html:31 msgid "Wallet Operation" -msgstr "Gestión de la billetera" +msgstr "Operaciones con tu Monedero" -#: www/views/join.html:74 -#: www/views/tab-create-personal.html:47 -#: www/views/tab-create-shared.html:77 +#: www/views/join.html:76 +#: www/views/tab-create-personal.html:47 +#: www/views/tab-create-shared.html:77 msgid "Wallet Recovery Phrase" -msgstr "Frase de recuperación de la billetera" +msgstr "Frase de recuperación del monedero" -#: src/js/services/bwcError.js:26 +#: src/js/services/bwcError.js:26 msgid "Wallet Recovery Phrase is invalid" -msgstr "La frase de recuperación no es válida" +msgstr "La frase de recuperación es inválida" -#: www/views/preferencesAdvanced.html:20 +#: www/views/preferencesAdvanced.html:20 msgid "Wallet Service URL" msgstr "Wallet Service URL" -#: www/views/preferences.html:4 +#: www/views/preferences.html:4 msgid "Wallet Settings" -msgstr "Preferencias de la billetera" +msgstr "Preferencias del Monedero" -#: www/views/tab-import-hardware.html:11 +#: www/views/tab-import-hardware.html:11 msgid "Wallet Type" -msgstr "Tipo de billetera" +msgstr "Tipo de monedero" -#: src/js/services/bwcError.js:59 +#: src/js/services/bwcError.js:59 msgid "Wallet already exists" -msgstr "La billetera ya existe" +msgstr "El monedero ya existe" -#: src/js/services/profileService.js:529 +#: src/js/services/profileService.js:529 msgid "Wallet already in Copay" -msgstr "La billetera ya existe en Copay" +msgstr "El monedero ya existe en Copay" -#: www/views/includes/walletActivity.html:6 +#: www/views/includes/walletActivity.html:6 msgid "Wallet created" -msgstr "Billetera Creada" +msgstr "Monedero Creado" -#: www/views/copayers.html:58 +#: www/views/copayers.html:58 msgid "Wallet incomplete and broken" -msgstr "Billetera incompleta y rota" +msgstr "Monedero incompleto y roto" -#: src/js/services/bwcError.js:65 +#: src/js/services/bwcError.js:65 msgid "Wallet is full" -msgstr "La billetera está completa" +msgstr "El monedero está completo" -#: src/js/services/bwcError.js:125 +#: src/js/services/bwcError.js:125 msgid "Wallet is locked" -msgstr "Billetera bloqueada" +msgstr "Monedero bloqueado" -#: src/js/services/bwcError.js:128 +#: src/js/services/bwcError.js:128 msgid "Wallet is not complete" -msgstr "La billetera no esta completa" +msgstr "El monedero no esta completo" -#: www/views/tab-create-personal.html:12 -#: www/views/tab-create-shared.html:12 +#: www/views/tab-create-personal.html:12 +#: www/views/tab-create-shared.html:12 msgid "Wallet name" -msgstr "Nombre de la billetera" +msgstr "Nombre del monedero" -#: src/js/services/bwcError.js:131 +#: src/js/services/bwcError.js:131 msgid "Wallet needs backup" -msgstr "La billetera requiere copia de seguridad" +msgstr "El monedero requiere copia de seguridad" -#: www/views/tab-receive.html:51 -#: www/views/walletDetails.html:162 +#: www/views/tab-receive.html:56 +#: www/views/walletDetails.html:145 msgid "Wallet not backed up" -msgstr "Billetera sin copia de seguridad" +msgstr "Monedero sin copia de seguridad" -#: src/js/services/bwcError.js:68 +#: src/js/services/bwcError.js:68 msgid "Wallet not found" -msgstr "Billetera no encontrada" +msgstr "Monedero no encontrado" -#: src/js/controllers/tab-home.js:211 +#: src/js/controllers/tab-home.js:199 msgid "Wallet not registered" -msgstr "Billetera no registrada" +msgstr "Monedero no registrado" -#: src/js/services/bwcError.js:29 +#: src/js/services/bwcError.js:29 msgid "Wallet not registered at the wallet service. Recreate it from \"Create Wallet\" using \"Advanced Options\" to set your recovery phrase" -msgstr "La billetera no esta registrado en Wallet Service. Para volver a crear, utilice \"Crear billetera\", \"Opciones avanzadas\" e ingrese la frase de recuperación" +msgstr "El monedero no esta registrado en Wallet Service. Para volver a crear, utilice \"Crear Monedero\", \"Opciones avanzadas\" e ingrese la frase de recuperación" -#: www/views/backup.html:11 +#: www/views/backup.html:11 msgid "Wallet recovery phrase not available." -msgstr "Frase de recuperación de la billetera no disponible." +msgstr "Frase de recuperación del monedero no disponible." -#: src/js/services/bwcError.js:50 +#: src/js/services/bwcError.js:50 msgid "Wallet service not found" msgstr "Wallet Service no encontrado" -#: www/views/tab-home.html:58 +#: www/views/tab-home.html:58 msgid "Wallets" -msgstr "Billeteras" +msgstr "Monederos" -#: www/views/tab-settings.html:99 +#: www/views/tab-settings.html:99 msgid "Wallets & Integrations" -msgstr "Billeteras & Integraciones" +msgstr "Monederos & Integraciones" -#: src/js/controllers/modals/txpDetails.js:126 -#: src/js/controllers/modals/txpDetails.js:143 -#: src/js/controllers/preferencesDelete.js:10 -#: www/views/preferencesDeleteWallet.html:9 +#: src/js/controllers/modals/txpDetails.js:126 +#: src/js/controllers/modals/txpDetails.js:143 +#: src/js/controllers/preferencesDelete.js:10 +#: www/views/preferencesDeleteWallet.html:9 msgid "Warning!" msgstr "¡Advertencia!" -#: www/views/modals/txp-details.html:47 +#: www/views/modals/txp-details.html:47 msgid "Warning: this transaction has unconfirmed inputs" msgstr "Advertencia: esta operación tiene entradas sin confirmar" -#: src/js/controllers/onboarding/backupRequest.js:10 -msgid "Watch out!" -msgstr "¡Cuidado!" - -#: src/js/controllers/feedback/send.js:64 +#: src/js/controllers/feedback/send.js:63 msgid "We'd love to do better." msgstr "Nos encantaría hacerlo mejor." -#: www/views/backup.html:28 +#: www/views/backup.html:28 msgid "We'll confirm on the next screen." -msgstr "Se confirmará en la siguiente pantalla." +msgstr "Confirmamos en la siguiente pantalla." -#: src/js/controllers/feedback/send.js:72 +#: src/js/controllers/feedback/send.js:71 msgid "We're always looking for ways to improve BitPay." msgstr "Siempre estamos buscando maneras de mejorar BitPay." -#: src/js/controllers/feedback/send.js:76 +#: src/js/controllers/feedback/send.js:75 msgid "We're always looking for ways to improve BitPay. How could we improve your experience?" -msgstr "Siempre estamos buscando maneras de mejorar BitPay. ¿Cómo podríamos mejorar tu experiencia?" +msgstr "Siempre estamos buscando maneras de mejorar BitPay. ¿Cómo podríamos mejorar su experiencia?" -#: www/views/preferencesLanguage.html:16 -#: www/views/translators.html:23 +#: www/views/preferencesLanguage.html:16 +#: www/views/translators.html:23 msgid "We’re always looking for translation contributions! You can make corrections or help to make this app available in your native language by joining our community on Crowdin." -msgstr "¡Siempre estamos buscando aportes de traducción! Puedes ayudar a que esta aplicación esté disponible en tu idioma nativo uniéndote a nuestra comunidad en Crowdin." +msgstr "¡Siempre estamos buscando aportes de traducción! Puede hacer correcciones o ayudar a hacer esta aplicación disponible en su idioma nativo al unirse a nuestra comunidad en Crowdin." -#: www/views/preferencesAlias.html:11 +#: www/views/preferencesAlias.html:11 msgid "What do you call this wallet?" -msgstr "¿Como desea llamar a esta billetera?" +msgstr "¿Como desea llamar a este monedero?" -#: www/views/preferencesAlias.html:12 +#: www/views/preferencesAlias.html:12 msgid "When this wallet was created, it was called “{{walletName}}”. You can change the name displayed on this device below." -msgstr "Cuando fue creado esta billetera, se llamaba “{{walletName}}”. Aquí puede cambiar el nombre que se mostrara en este dispositivo." +msgstr "Cuando fue creado este monedero, se llamaba “{{walletName}}”. Aquí puede cambiar el nombre que se mostrara en este dispositivo." -#: www/views/onboarding/collectEmail.html:10 +#: www/views/onboarding/collectEmail.html:10 msgid "Where would you like to receive email notifications about payments?" msgstr "¿A donde le gustaría recibir notificaciones por email sobre sus transacciones?" -#: www/views/addresses.html:18 +#: www/views/addresses.html:23 msgid "Why?" msgstr "¿Por qué?" -#: www/views/feedback/rateApp.html:10 +#: www/views/includes/backupLaterPopup.html:2 +msgid "Without a backup, you could lose money" +msgstr "Sin una copia de seguridad, usted podría perder el dinero" + +#: src/js/controllers/onboarding/backupRequest.js:10 +msgid "Without a backup, you could lose money." +msgstr "Sin una copia de seguridad, usted podría perder dinero." + +#: www/views/feedback/rateApp.html:10 msgid "Would you be willing to rate BitPay in the app store?" msgstr "¿Estaría usted dispuesto a opinar sobre BitPay en la app store?" -#: src/js/controllers/bitpayCardIntro.js:31 +#: src/js/controllers/bitpayCardIntro.js:31 msgid "Would you like to add this account ({{email}}) to your wallet?" -msgstr "¿Quieres agregar esta cuenta ({{email}}) a su billetera?" +msgstr "¿Quieres agregar esta cuenta ({{email}}) a su monedero?" -#: www/views/onboarding/notifications.html:4 +#: www/views/onboarding/notifications.html:4 msgid "Would you like to receive push notifications about payments?" msgstr "¿Quieres recibir notificaciones push sobre sus transacciones?" -#: src/js/controllers/import.js:249 +#: src/js/controllers/import.js:248 msgid "Wrong number of recovery words:" msgstr "Número incorrecto de palabras:" -#: src/js/services/bwcError.js:140 +#: src/js/services/bwcError.js:140 msgid "Wrong spending password" -msgstr "Contraseña para pagos incorrecta" +msgstr "Contraseña para enviar incorrecta" -#: www/views/modals/confirmation.html:7 -#: www/views/onboarding/collectEmail.html:32 +#: www/views/modals/confirmation.html:7 +#: www/views/onboarding/collectEmail.html:32 msgid "Yes" msgstr "Si" -#: src/js/controllers/onboarding/backupRequest.js:18 -msgid "Yes, skip" -msgstr "Si, omitir" +#: src/js/controllers/onboarding/backupRequest.js:18 +msgid "Yes, skip backup" +msgstr "Sí, omitir la copia de seguridad" -#: src/js/controllers/onboarding/backupRequest.js:17 +#: src/js/controllers/onboarding/backupRequest.js:17 msgid "You can create a backup later from your wallet settings." -msgstr "Puedes hacerlo luego desde las preferencias de la billetera." +msgstr "Puede crear una copia de seguridad después en las preferencias de su monedero." -#: src/js/controllers/preferencesLanguage.js:12 -#: src/js/controllers/translators.js:9 -msgid "You can make contributions by signing up on our Crowdin community translation website. We’re looking forward to hearing from you!" -msgstr "Se pueden hacer contribuciones al registrarse en nuestro proyecto de traducciones en Crowdin. ¡Esperamos tener noticias tuyas!" - -#: www/views/tab-scan.html:16 +#: www/views/tab-scan.html:16 msgid "You can scan bitcoin addresses, payment requests, paper wallets, and more." -msgstr "Puedes escanear direcciones bitcoin, solicitudes de pago, billeteras de papel y más." +msgstr "Puede scanear direcciones bitcoin, solicitudes de pago, monederos de papel y más." -#: src/js/controllers/preferencesAbout.js:14 -msgid "You can see the latest developments and contribute to this open source app by visiting our project on GitHub." -msgstr "Puede ver las últimas novedades y contribuir a nuestra aplicación de código abierto visitando nuestro proyecto en GitHub." - -#: www/views/onboarding/tour.html:14 +#: www/views/onboarding/tour.html:14 msgid "You can spend bitcoin at millions of websites and stores worldwide." -msgstr "Puedes utilizar bitcoin en millones de páginas web y tiendas en todo el mundo." +msgstr "Puede utilizar bitcoins en millones de páginas web y tiendas en todo el mundo." -#: www/views/backup.html:12 +#: www/views/backup.html:12 msgid "You can still export it from Advanced > Export." msgstr "Todavía puede exportar en Avanzados > Exportar." -#: www/views/onboarding/tour.html:27 +#: www/views/onboarding/tour.html:27 msgid "You can trade it for other currencies like US Dollars, Euros, or Pounds." -msgstr "Puedes cambiarlo por otras monedas como Dólares, Euros o Libras." +msgstr "Puede cambiarlo por otras monedas como Dólares, Euros o Libras." -#: www/views/onboarding/tour.html:41 +#: www/views/onboarding/tour.html:41 msgid "You control your bitcoin." -msgstr "Controlas tus bitcoins." +msgstr "Tú controlas tus bitcoins." -#: www/views/preferencesNotifications.html:30 +#: www/views/addressbook.html:20 +msgid "You haven’t added any contacts to your address book yet. Get started by adding your first one." +msgstr "Usted aún no ha añadido ningún contacto a su libreta de direcciones. Comenzar agregando el primero de ellos." + +#: www/views/preferencesNotifications.html:30 msgid "You'll receive email notifications about payments sent and received from your wallets." -msgstr "Recibirás notificaciones por correo electrónico acerca de pagos enviados y recibidos de tus billeteras." +msgstr "Usted recibirá notificaciones por correo electrónico acerca de pagos enviados y recibidos de sus monederos." -#: www/views/includes/confirmBackupPopup.html:6 +#: www/views/includes/confirmBackupPopup.html:6 msgid "Your bitcoin wallet is backed up!" -msgstr "¡Su billetera bitcoin está resguardada!" +msgstr "¡Su monedero bitcoin esta asegurado!" -#: www/views/tab-home.html:26 +#: www/views/tab-home.html:26 msgid "Your bitcoin wallet is ready!" -msgstr "¡Su billetera bitcoin está lista!" +msgstr "¡Su monedero bitcoin está listo!" -#: www/views/feedback/send.html:42 -msgid "Your ideas, feedback, or comments" -msgstr "Ideas, sugerencias o comentarios" - -#: www/views/tab-create-shared.html:22 +#: www/views/tab-create-shared.html:22 msgid "Your name" msgstr "Nombre" -#: www/views/join.html:16 +#: www/views/join.html:16 msgid "Your nickname" msgstr "Sobrenombre" -#: www/views/tab-export-file.html:11 -#: www/views/tab-import-file.html:20 +#: www/views/tab-export-file.html:11 +#: www/views/tab-import-file.html:20 msgid "Your password" msgstr "Contraseña" -#: www/views/includes/password.html:12 +#: www/views/includes/password.html:12 msgid "Your spending password" -msgstr "Contraseña para pagos" +msgstr "Contraseña para enviar" -#: www/views/onboarding/backupRequest.html:10 +#: www/views/onboarding/backupRequest.html:10 msgid "Your wallet is never saved to cloud storage or standard device backups." -msgstr "Tu billetera nunca se sube a la nube ni se resguarda automáticamente en el dispositivo." +msgstr "Tu monedero nunca se guarda en almacenamientos en la nube o dispositivos para copias de seguridad." -#: src/js/services/walletService.js:825 -#: www/views/includes/password.html:39 -msgid "Your wallet key will be encrypted. The Spending Password cannot be recovered. Be sure to write it down." -msgstr "La clave de la billetera será cifrada. La contraseña para pagos no puede ser recuperada. Asegúrate de anotarla." +#: www/views/includes/password.html:39 +msgid "Your wallet key will be encrypted. The Spending Password cannot be recovered. Be sure to write it down" +msgstr "La clave del monedero se cifrará. La contraseña para enviar no puede ser recuperada. Asegúrese de escribirla" -#: www/views/includes/walletSelector.html:23 -#: www/views/includes/wallets.html:13 -#: www/views/tab-home.html:84 -#: www/views/walletDetails.html:144 -#: www/views/walletDetails.html:64 +#: www/views/includes/walletSelector.html:23 +#: www/views/includes/wallets.html:13 +#: www/views/tab-home.html:84 +#: www/views/walletDetails.html:127 +#: www/views/walletDetails.html:69 msgid "[Balance Hidden]" msgstr "[Balance Oculto]" -#: www/views/tab-receive.html:43 +#: www/views/tab-receive.html:48 msgid "address not yet available" msgstr "dirección no disponible" -#: www/views/includes/available-balance.html:8 +#: www/views/includes/backupWarningPopup.html:3 +msgid "if you take a screenshot, your backup may be viewed by others apps. You can make a safe backup with paper and a pen." +msgstr "Si usted toma una captura de pantalla, otras aplicaciones podrían ver su copia de seguridad. La forma más acertada es hacer una copia de seguridad con tinta y papel." + +#: www/views/includes/available-balance.html:8 msgid "locked by pending payments" msgstr "bloqueado por pagos pendientes" -#: src/js/services/profileService.js:417 +#: src/js/services/profileService.js:417 msgid "me" msgstr "yo" -#: www/views/addressbook.add.html:32 -msgid "name@example.com" -msgstr "nombre@ejemplo.com" - -#: www/views/preferencesHistory.html:14 +#: www/views/preferencesHistory.html:14 msgid "preparing..." msgstr "preparando..." -#: www/views/preferencesBwsUrl.html:19 -msgid "{{appName}} depends on Bitcore Wallet Service (BWS) for blockchain information, networking and Copayer synchronization. The default configuration points to https://bws.bitpay.com (BitPay's public BWS instance)." -msgstr "{{appName}} depende de Bitcore Wallet Service (BWS) para obtener información sobre blockchain y sincronización del Copayer. La configuración por defecto apunta a https://bws.bitpay.com (instancia pública de BitPay)." - -#: www/views/includes/confirm-tx.html:23 +#: www/views/includes/confirm-tx.html:23 msgid "{{feeRateStr}} of the transaction" msgstr "{{feeRateStr}} de la transacción" -#: src/js/controllers/confirm.js:193 +#: src/js/controllers/confirm.js:185 msgid "{{fee}} will be deducted for bitcoin networking fees." msgstr "{{fee}} se descontará por comisión de la red bitcoin." -#: www/views/walletDetails.html:209 +#: www/views/walletDetails.html:192 msgid "{{updatingTxHistoryProgress}} transactions downloaded" msgstr "{{updatingTxHistoryProgress}} transacciones descargadas" -#: www/views/copayers.html:46 -#: www/views/includes/walletInfo.html:2 +#: www/views/copayers.html:46 +#: www/views/includes/walletInfo.html:2 msgid "{{wallet.m}}-of-{{wallet.n}}" msgstr "{{wallet.m}}-de-{{wallet.n}}"