Merge branch 'wallet/sprint/20' into wallet/task/514
This commit is contained in:
commit
24033f4615
70 changed files with 3335 additions and 861 deletions
|
|
@ -24,9 +24,9 @@
|
|||
"windowsAppId": "804636ee-b017-4cad-8719-e58ac97ffa5c",
|
||||
"pushSenderId": "1036948132229",
|
||||
"description": "A Secure Bitcoin Wallet",
|
||||
"version": "4.13.0",
|
||||
"fullVersion": "4.13-rc1",
|
||||
"androidVersion": "413000",
|
||||
"version": "4.13.2",
|
||||
"fullVersion": "4.13-rc3",
|
||||
"androidVersion": "413200",
|
||||
"_extraCSS": "",
|
||||
"_enabledExtensions": {
|
||||
"coinbase": false,
|
||||
|
|
|
|||
|
|
@ -6256,7 +6256,6 @@ var ClickAction = /** @class */ (function (_super) {
|
|||
// Add event listener to all the elements found
|
||||
for (var i = 0; i < elements.length; i++) {
|
||||
var element = elements[i];
|
||||
console.log('init ' + this.name);
|
||||
element.addEventListener('click', this.listener);
|
||||
}
|
||||
};
|
||||
|
|
@ -6413,7 +6412,6 @@ var AdjustChannel = /** @class */ (function (_super) {
|
|||
_this.eventTypes = config.eventTypes;
|
||||
var os = _this.adjustedOs(config.os);
|
||||
_this.advertisingId = _this.getAdvertisingId(os);
|
||||
console.log('Advertising ID for adjust: ' + _this.advertisingId);
|
||||
// TODO: Different initialisation for Cordova.
|
||||
var sessionParams = {
|
||||
app_version: config.appVersion,
|
||||
|
|
@ -6656,7 +6654,7 @@ var MixpanelChannel = /** @class */ (function (_super) {
|
|||
function MixpanelChannel(name, config) {
|
||||
var _this = _super.call(this, name) || this;
|
||||
if (!config.token) {
|
||||
throw new DOMException('[BitAnalytics] Config incorrect.');
|
||||
throw new Error('[BitAnalytics] Config incorrect.');
|
||||
}
|
||||
_this.mixpanelInstance = mixpanel;
|
||||
mixpanel.init(config.token, config.config);
|
||||
|
|
@ -7037,7 +7035,7 @@ var LogEventHandlers = /** @class */ (function () {
|
|||
_this.channels.push(channel);
|
||||
}
|
||||
catch (error) {
|
||||
console.log('[BitAnalytics] ' + error.name + ': ' + error.message);
|
||||
console.log(error.message);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ msgstr ""
|
|||
"Last-Translator: emilold\n"
|
||||
"Language-Team: Catalan\n"
|
||||
"Language: ca\n"
|
||||
"PO-Revision-Date: 2018-07-04 09:26\n"
|
||||
"PO-Revision-Date: 2018-07-27 08:43\n"
|
||||
|
||||
#: www/views/modals/paypro.html:34
|
||||
msgid "(Trusted)"
|
||||
|
|
@ -437,6 +437,7 @@ msgid "Buy & Sell Bitcoin"
|
|||
msgstr "Compra & ven bitcoins"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
#: src/js/services/buyAndSellService.js:26
|
||||
msgid "Buy Bitcoin"
|
||||
msgstr "Compra bitcoins"
|
||||
|
||||
|
|
@ -619,10 +620,14 @@ msgstr "S'està connectant a Glidera..."
|
|||
msgid "Connection reset by peer"
|
||||
msgstr "Connexió reiniciada per un parell"
|
||||
|
||||
#: www/views/tab-send.html:45
|
||||
#: www/views/tab-send.html:85
|
||||
msgid "Contacts"
|
||||
msgstr "Contactes"
|
||||
|
||||
#: www/views/tab-send.html:86
|
||||
msgid "Saved frequently used addresses"
|
||||
msgstr "Adreces utilitzades freqüentment desades"
|
||||
|
||||
#: www/views/onboarding/notifications.html:9
|
||||
msgid "Continue"
|
||||
msgstr "Continua"
|
||||
|
|
@ -823,7 +828,7 @@ msgstr "Crea una cartera compartida"
|
|||
|
||||
#: www/views/onboarding/tour.html:51
|
||||
#: www/views/tab-home.html:75
|
||||
#: www/views/tab-send.html:36
|
||||
#: www/views/tab-send.html:75
|
||||
msgid "Create bitcoin wallet"
|
||||
msgstr "Crea una cartera bitcoin"
|
||||
|
||||
|
|
@ -2533,6 +2538,14 @@ msgstr "Cerca transaccions"
|
|||
msgid "Search or enter bitcoin address"
|
||||
msgstr "Cerca o introdueix l'adreça bitcoin"
|
||||
|
||||
#: src/js/controllers/tab-send.js:28
|
||||
msgid "Clipboard"
|
||||
msgstr "Porta-retalls"
|
||||
|
||||
#: src/js/controllers/tab-send.js:29
|
||||
msgid "Your Clipboard is empty"
|
||||
msgstr "Teniu el porta-retalls buit"
|
||||
|
||||
#: www/views/modals/search.html:16
|
||||
msgid "Search transactions"
|
||||
msgstr "Cerca transaccions"
|
||||
|
|
@ -2591,9 +2604,70 @@ msgid "Send by email"
|
|||
msgstr "Envia per correu electrònic"
|
||||
|
||||
#: src/js/controllers/confirm.js:177
|
||||
#: src/js/controllers/tab-send.js:94
|
||||
msgid "Send from"
|
||||
msgstr "Envia des de"
|
||||
|
||||
#: src/js/controllers/tab-send.js:77
|
||||
msgid "Send to"
|
||||
msgstr "Enviat a"
|
||||
|
||||
#: www/views/tab-send.html:20
|
||||
msgid "Paste Clipboard"
|
||||
msgstr "Enganxa des del porta-retalls"
|
||||
|
||||
#: www/views/tab-send.html:21
|
||||
msgid "Paste Address"
|
||||
msgstr "Enganxa l'adreça"
|
||||
|
||||
#: www/views/tab-send.html:27
|
||||
msgid "Wallet to Wallet Transfer"
|
||||
msgstr "Transferència de cartera a cartera"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
msgid "Scan QR Code"
|
||||
msgstr "Escaneja el codi QR"
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr "Envia bitcoins més ràpid!"
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr "Envia bitcoins més ràpid!"
|
||||
|
||||
#: www/views/tab-send.html:50
|
||||
msgid "Save frequently used addresses and send them Bitcoin in just one tap"
|
||||
msgstr "Deseu adreces utilitzades freqüentment i envieu-los bitcoins d'un sol toc"
|
||||
|
||||
#: www/views/tab-send.html:55
|
||||
msgid "Add your first contact"
|
||||
msgstr "Afegiu el primer contacte"
|
||||
|
||||
#: www/views/tab-send.html:65
|
||||
msgid "Your Bitcoin wallet is empty"
|
||||
msgstr "La vostra cartera bitcoin és buida"
|
||||
|
||||
#: www/views/tab-send.html:69
|
||||
msgid "To get started, buy Bitcoin Cash (BCH) or Bitcoin Core (BTC), or share your address."
|
||||
msgstr "Per començar, compreu Bitcoin Cash (BCH) o Bitcoin Core (BTC), o compartiu la vostra adreça."
|
||||
|
||||
#: www/views/tab-send.html:70
|
||||
msgid "You can receive bitcoin from any wallet or service."
|
||||
msgstr "Podeu rebre bitcoins des de qualsevol cartera o servei."
|
||||
|
||||
#: www/views/tab-send.html:72
|
||||
msgid "To get started, you'll need to create a bitcoin wallet and get some bitcoin."
|
||||
msgstr "Per començar, heu de crear una cartera bitcoin i obtenir uns quants bitcoins."
|
||||
|
||||
#: www/views/tab-send.html:74
|
||||
msgid "Buy Bitcoin now"
|
||||
msgstr "Compra Bitcoins ara"
|
||||
|
||||
#: www/views/tab-send.html:76
|
||||
msgid "Show my address"
|
||||
msgstr "Mostra la meva adreça"
|
||||
|
||||
#: www/views/includes/itemSelector.html:8
|
||||
msgid "Send max amount"
|
||||
msgstr "Envia import màxim"
|
||||
|
|
@ -3636,3 +3710,51 @@ msgstr "{{updatingTxHistoryProgress}} transaccions descarregades"
|
|||
msgid "{{wallet.m}}-of-{{wallet.n}}"
|
||||
msgstr "{{wallet.m}}-de-{{wallet.n}}"
|
||||
|
||||
#: src/js/services/shapeshiftService.js:8
|
||||
msgid "Shapeshift"
|
||||
msgstr "Shapeshift"
|
||||
|
||||
#: www/views/includes/community.html:3
|
||||
msgid "Community"
|
||||
msgstr "Comunitat"
|
||||
|
||||
#: src/js/services/communityService.js:40
|
||||
msgid "Bitcoin Cash Reddit"
|
||||
msgstr "Reddit de Bitcoin Cash"
|
||||
|
||||
#: src/js/services/communityService.js:47
|
||||
msgid "Bitcoin.com Twitter"
|
||||
msgstr "Twitter de Bitcoin.com"
|
||||
|
||||
#: www/views/includes/nextSteps.html:3
|
||||
msgid "Explore Bitcoin.com"
|
||||
msgstr "Explora Bitcoin.com"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:21
|
||||
msgid "Bitcoin Cash Games"
|
||||
msgstr "Jocs de Bitcoin Cash"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:28
|
||||
msgid "News"
|
||||
msgstr "Notícies"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:35
|
||||
msgid "Mining Pool"
|
||||
msgstr "Xarxa minera"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:42
|
||||
msgid "Tools"
|
||||
msgstr "Eines"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:49
|
||||
msgid "Bitcoin Price Charts"
|
||||
msgstr "Gràfiques de preus del bitcoin"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:56
|
||||
msgid "Free Bitcoin Cash"
|
||||
msgstr "Bitcoin Cash gratis"
|
||||
|
||||
#: www/views/tab-home.html:30
|
||||
msgid "Your Bitcoin Wallets are ready!"
|
||||
msgstr "Les vostres carteres bitcoin ja estan a punt!"
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ msgstr ""
|
|||
"Last-Translator: emilold\n"
|
||||
"Language-Team: Czech\n"
|
||||
"Language: cs\n"
|
||||
"PO-Revision-Date: 2018-07-04 09:26\n"
|
||||
"PO-Revision-Date: 2018-07-27 08:43\n"
|
||||
|
||||
#: www/views/modals/paypro.html:34
|
||||
msgid "(Trusted)"
|
||||
|
|
@ -437,6 +437,7 @@ msgid "Buy & Sell Bitcoin"
|
|||
msgstr "Koupit & prodat Bitcoin"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
#: src/js/services/buyAndSellService.js:26
|
||||
msgid "Buy Bitcoin"
|
||||
msgstr "Koupit Bitcoin"
|
||||
|
||||
|
|
@ -619,10 +620,14 @@ msgstr "Připojování ke Glidera..."
|
|||
msgid "Connection reset by peer"
|
||||
msgstr "Připojení přerušeno druhou stranou"
|
||||
|
||||
#: www/views/tab-send.html:45
|
||||
#: www/views/tab-send.html:85
|
||||
msgid "Contacts"
|
||||
msgstr "Kontakty"
|
||||
|
||||
#: www/views/tab-send.html:86
|
||||
msgid "Saved frequently used addresses"
|
||||
msgstr "Uložené, často používané adresy"
|
||||
|
||||
#: www/views/onboarding/notifications.html:9
|
||||
msgid "Continue"
|
||||
msgstr "Pokračovat"
|
||||
|
|
@ -823,7 +828,7 @@ msgstr "Vytvořit sdílenou peněženku"
|
|||
|
||||
#: www/views/onboarding/tour.html:51
|
||||
#: www/views/tab-home.html:75
|
||||
#: www/views/tab-send.html:36
|
||||
#: www/views/tab-send.html:75
|
||||
msgid "Create bitcoin wallet"
|
||||
msgstr "Vytvořit Bitcoin peněženku"
|
||||
|
||||
|
|
@ -2533,6 +2538,14 @@ msgstr "Vyhledávání transakcí"
|
|||
msgid "Search or enter bitcoin address"
|
||||
msgstr "Vyhledat nebo zadat Bitcoin adresu"
|
||||
|
||||
#: src/js/controllers/tab-send.js:28
|
||||
msgid "Clipboard"
|
||||
msgstr "Schránka"
|
||||
|
||||
#: src/js/controllers/tab-send.js:29
|
||||
msgid "Your Clipboard is empty"
|
||||
msgstr "Vaše schránka je prázdná"
|
||||
|
||||
#: www/views/modals/search.html:16
|
||||
msgid "Search transactions"
|
||||
msgstr "Vyhledávání transakcí"
|
||||
|
|
@ -2591,9 +2604,70 @@ msgid "Send by email"
|
|||
msgstr "Poslat e-mailem"
|
||||
|
||||
#: src/js/controllers/confirm.js:177
|
||||
#: src/js/controllers/tab-send.js:94
|
||||
msgid "Send from"
|
||||
msgstr "Odeslat z"
|
||||
|
||||
#: src/js/controllers/tab-send.js:77
|
||||
msgid "Send to"
|
||||
msgstr "Odeslat"
|
||||
|
||||
#: www/views/tab-send.html:20
|
||||
msgid "Paste Clipboard"
|
||||
msgstr "Vložit ze schránky"
|
||||
|
||||
#: www/views/tab-send.html:21
|
||||
msgid "Paste Address"
|
||||
msgstr "Vložit adresu"
|
||||
|
||||
#: www/views/tab-send.html:27
|
||||
msgid "Wallet to Wallet Transfer"
|
||||
msgstr "Převod mezi peněženkami"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
msgid "Scan QR Code"
|
||||
msgstr "Skenovat QR kód"
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr "Odesílejte Bitcoin rychleji!"
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr "Odesílejte Bitcoin rychleji!"
|
||||
|
||||
#: www/views/tab-send.html:50
|
||||
msgid "Save frequently used addresses and send them Bitcoin in just one tap"
|
||||
msgstr "Uložte si často používané adresy a posílejte jim Bitcoin jedním kliknutím"
|
||||
|
||||
#: www/views/tab-send.html:55
|
||||
msgid "Add your first contact"
|
||||
msgstr "Přidat váš první kontakt"
|
||||
|
||||
#: www/views/tab-send.html:65
|
||||
msgid "Your Bitcoin wallet is empty"
|
||||
msgstr "Vaše Bitcoin peněženka je prázdná"
|
||||
|
||||
#: www/views/tab-send.html:69
|
||||
msgid "To get started, buy Bitcoin Cash (BCH) or Bitcoin Core (BTC), or share your address."
|
||||
msgstr "Chcete-li začít, nakupte Bitcoin Cash (BCH) nebo Bitcoin Core (BTC), nebo sdílejte svou adresu."
|
||||
|
||||
#: www/views/tab-send.html:70
|
||||
msgid "You can receive bitcoin from any wallet or service."
|
||||
msgstr "Můžete přijímat Bitcoin z jakékoliv peněženky nebo služby."
|
||||
|
||||
#: www/views/tab-send.html:72
|
||||
msgid "To get started, you'll need to create a bitcoin wallet and get some bitcoin."
|
||||
msgstr "Chcete-li začít, budete muset vytvořit Bitcoin peněženku a Bitcoin získat."
|
||||
|
||||
#: www/views/tab-send.html:74
|
||||
msgid "Buy Bitcoin now"
|
||||
msgstr "Koupit Bitcoin"
|
||||
|
||||
#: www/views/tab-send.html:76
|
||||
msgid "Show my address"
|
||||
msgstr "Zobrazit mou adresu"
|
||||
|
||||
#: www/views/includes/itemSelector.html:8
|
||||
msgid "Send max amount"
|
||||
msgstr "Odeslat maximální částku"
|
||||
|
|
@ -3030,7 +3104,7 @@ msgstr "Chcete-li začít, nakupte Bitcoin nebo sdílejte svou adresu. Můžete
|
|||
|
||||
#: www/views/tab-send.html:33
|
||||
msgid "To get started, you'll need to create a bitcoin wallet and get some bitcoin."
|
||||
msgstr "Chcete-li začít, budete muset vytvořit Bitcoin peněženku a Bitcoin získat."
|
||||
msgstr "Chcete-li začít, budete potřebovat vytvořit Bitcoin peněženku a získat Bitcoin."
|
||||
|
||||
#: src/js/services/bitpayAccountService.js:73
|
||||
msgid "To {{reason}} you must first add your BitPay account - {{email}}"
|
||||
|
|
@ -3636,3 +3710,51 @@ msgstr "{{updatingTxHistoryProgress}} transakcí staženo"
|
|||
msgid "{{wallet.m}}-of-{{wallet.n}}"
|
||||
msgstr "{{wallet.m}}-z-{{wallet.n}}"
|
||||
|
||||
#: src/js/services/shapeshiftService.js:8
|
||||
msgid "Shapeshift"
|
||||
msgstr "Shapeshift"
|
||||
|
||||
#: www/views/includes/community.html:3
|
||||
msgid "Community"
|
||||
msgstr "Komunita"
|
||||
|
||||
#: src/js/services/communityService.js:40
|
||||
msgid "Bitcoin Cash Reddit"
|
||||
msgstr "Bitcoin Cash Reddit"
|
||||
|
||||
#: src/js/services/communityService.js:47
|
||||
msgid "Bitcoin.com Twitter"
|
||||
msgstr "Bitcoin.com Twitter"
|
||||
|
||||
#: www/views/includes/nextSteps.html:3
|
||||
msgid "Explore Bitcoin.com"
|
||||
msgstr "Prohlédnout Bitcoin.com"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:21
|
||||
msgid "Bitcoin Cash Games"
|
||||
msgstr "Bitcoin Cash hry"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:28
|
||||
msgid "News"
|
||||
msgstr "Novinky"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:35
|
||||
msgid "Mining Pool"
|
||||
msgstr "Těžební pool"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:42
|
||||
msgid "Tools"
|
||||
msgstr "Nástroje"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:49
|
||||
msgid "Bitcoin Price Charts"
|
||||
msgstr "Grafy cen Bitcoinu"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:56
|
||||
msgid "Free Bitcoin Cash"
|
||||
msgstr "Bitcoin Cash zdarma"
|
||||
|
||||
#: www/views/tab-home.html:30
|
||||
msgid "Your Bitcoin Wallets are ready!"
|
||||
msgstr "Vaše Bitcoin peněženka je připravena!"
|
||||
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -11,7 +11,7 @@ msgstr ""
|
|||
"Last-Translator: emilold\n"
|
||||
"Language-Team: Spanish\n"
|
||||
"Language: es\n"
|
||||
"PO-Revision-Date: 2018-07-04 09:27\n"
|
||||
"PO-Revision-Date: 2018-07-27 08:44\n"
|
||||
|
||||
#: www/views/modals/paypro.html:34
|
||||
msgid "(Trusted)"
|
||||
|
|
@ -437,6 +437,7 @@ msgid "Buy & Sell Bitcoin"
|
|||
msgstr "Comprar & Vender Bitcoin"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
#: src/js/services/buyAndSellService.js:26
|
||||
msgid "Buy Bitcoin"
|
||||
msgstr "Comprar Bitcoin"
|
||||
|
||||
|
|
@ -619,10 +620,14 @@ msgstr "Conectando a Glidera..."
|
|||
msgid "Connection reset by peer"
|
||||
msgstr "Conexión re establecida"
|
||||
|
||||
#: www/views/tab-send.html:45
|
||||
#: www/views/tab-send.html:85
|
||||
msgid "Contacts"
|
||||
msgstr "Contactos"
|
||||
|
||||
#: www/views/tab-send.html:86
|
||||
msgid "Saved frequently used addresses"
|
||||
msgstr "Direcciones frecuentes guardadas"
|
||||
|
||||
#: www/views/onboarding/notifications.html:9
|
||||
msgid "Continue"
|
||||
msgstr "Continuar"
|
||||
|
|
@ -823,7 +828,7 @@ msgstr "Crear billetera compartida"
|
|||
|
||||
#: www/views/onboarding/tour.html:51
|
||||
#: www/views/tab-home.html:75
|
||||
#: www/views/tab-send.html:36
|
||||
#: www/views/tab-send.html:75
|
||||
msgid "Create bitcoin wallet"
|
||||
msgstr "Crear billetera"
|
||||
|
||||
|
|
@ -2533,6 +2538,14 @@ msgstr "Buscar transacciones"
|
|||
msgid "Search or enter bitcoin address"
|
||||
msgstr "Buscar o introducir dirección bitcoin"
|
||||
|
||||
#: src/js/controllers/tab-send.js:28
|
||||
msgid "Clipboard"
|
||||
msgstr "Portapapeles"
|
||||
|
||||
#: src/js/controllers/tab-send.js:29
|
||||
msgid "Your Clipboard is empty"
|
||||
msgstr "Portapapeles vacío"
|
||||
|
||||
#: www/views/modals/search.html:16
|
||||
msgid "Search transactions"
|
||||
msgstr "Buscar transacciones"
|
||||
|
|
@ -2591,9 +2604,70 @@ msgid "Send by email"
|
|||
msgstr "Enviar por correo electrónico"
|
||||
|
||||
#: src/js/controllers/confirm.js:177
|
||||
#: src/js/controllers/tab-send.js:94
|
||||
msgid "Send from"
|
||||
msgstr "Enviar desde"
|
||||
|
||||
#: src/js/controllers/tab-send.js:77
|
||||
msgid "Send to"
|
||||
msgstr "Enviar a"
|
||||
|
||||
#: www/views/tab-send.html:20
|
||||
msgid "Paste Clipboard"
|
||||
msgstr "Pegar portapapeles"
|
||||
|
||||
#: www/views/tab-send.html:21
|
||||
msgid "Paste Address"
|
||||
msgstr "Pegar dirección"
|
||||
|
||||
#: www/views/tab-send.html:27
|
||||
msgid "Wallet to Wallet Transfer"
|
||||
msgstr "Billetera a billetera"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
msgid "Scan QR Code"
|
||||
msgstr "Escanear código QR"
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr "¡Envía Bitcoin más rápido!"
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr "¡Envía Bitcoin más rápido!"
|
||||
|
||||
#: www/views/tab-send.html:50
|
||||
msgid "Save frequently used addresses and send them Bitcoin in just one tap"
|
||||
msgstr "Guardar las direcciones que usas frecuentemente y envía Bitcoin en un click"
|
||||
|
||||
#: www/views/tab-send.html:55
|
||||
msgid "Add your first contact"
|
||||
msgstr "Añadie tu primer contacto"
|
||||
|
||||
#: www/views/tab-send.html:65
|
||||
msgid "Your Bitcoin wallet is empty"
|
||||
msgstr "Tu billetera Bitcoin está vacía"
|
||||
|
||||
#: www/views/tab-send.html:69
|
||||
msgid "To get started, buy Bitcoin Cash (BCH) or Bitcoin Core (BTC), or share your address."
|
||||
msgstr "Para empezar, compra Bitcoin Cash (BCH) o Bitcoin Core (BTC), o comparte tu dirección."
|
||||
|
||||
#: www/views/tab-send.html:70
|
||||
msgid "You can receive bitcoin from any wallet or service."
|
||||
msgstr "Puedes recibir bitcoin desde cualquier billetera o servicio."
|
||||
|
||||
#: www/views/tab-send.html:72
|
||||
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."
|
||||
|
||||
#: www/views/tab-send.html:74
|
||||
msgid "Buy Bitcoin now"
|
||||
msgstr "Comprar Bitcoin ahora"
|
||||
|
||||
#: www/views/tab-send.html:76
|
||||
msgid "Show my address"
|
||||
msgstr "Ver mi dirección"
|
||||
|
||||
#: www/views/includes/itemSelector.html:8
|
||||
msgid "Send max amount"
|
||||
msgstr "Enviar la máxima cantidad"
|
||||
|
|
@ -3030,7 +3104,7 @@ msgstr "Para empezar, compra bitcoin o comparte tu dirección. Puedes recibir bi
|
|||
|
||||
#: www/views/tab-send.html:33
|
||||
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, necesitarás crear una billetera y obtener Bitcoins."
|
||||
|
||||
#: src/js/services/bitpayAccountService.js:73
|
||||
msgid "To {{reason}} you must first add your BitPay account - {{email}}"
|
||||
|
|
@ -3636,3 +3710,51 @@ msgstr "{{updatingTxHistoryProgress}} transacciones descargadas"
|
|||
msgid "{{wallet.m}}-of-{{wallet.n}}"
|
||||
msgstr "{{wallet.m}}-de-{{wallet.n}}"
|
||||
|
||||
#: src/js/services/shapeshiftService.js:8
|
||||
msgid "Shapeshift"
|
||||
msgstr "Shapeshift - Cambia BTC a BCH"
|
||||
|
||||
#: www/views/includes/community.html:3
|
||||
msgid "Community"
|
||||
msgstr "Comunidad"
|
||||
|
||||
#: src/js/services/communityService.js:40
|
||||
msgid "Bitcoin Cash Reddit"
|
||||
msgstr "Reddit de Bitcoin Cash"
|
||||
|
||||
#: src/js/services/communityService.js:47
|
||||
msgid "Bitcoin.com Twitter"
|
||||
msgstr "Twitter de Bitcoin.com"
|
||||
|
||||
#: www/views/includes/nextSteps.html:3
|
||||
msgid "Explore Bitcoin.com"
|
||||
msgstr "Explora Bitcoin.com"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:21
|
||||
msgid "Bitcoin Cash Games"
|
||||
msgstr "Juegos de Bitcoin Cash"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:28
|
||||
msgid "News"
|
||||
msgstr "Noticias"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:35
|
||||
msgid "Mining Pool"
|
||||
msgstr "Minería en la nube"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:42
|
||||
msgid "Tools"
|
||||
msgstr "Herramientas"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:49
|
||||
msgid "Bitcoin Price Charts"
|
||||
msgstr "Gráfica de precios Bitcoin"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:56
|
||||
msgid "Free Bitcoin Cash"
|
||||
msgstr "Bitcoin Cash gratis"
|
||||
|
||||
#: www/views/tab-home.html:30
|
||||
msgid "Your Bitcoin Wallets are ready!"
|
||||
msgstr "¡Tus billeteras Bitcoin están listas!"
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ msgstr ""
|
|||
"Last-Translator: emilold\n"
|
||||
"Language-Team: Persian\n"
|
||||
"Language: fa\n"
|
||||
"PO-Revision-Date: 2018-07-04 09:27\n"
|
||||
"PO-Revision-Date: 2018-07-27 08:44\n"
|
||||
|
||||
#: www/views/modals/paypro.html:34
|
||||
msgid "(Trusted)"
|
||||
|
|
@ -437,6 +437,7 @@ msgid "Buy & Sell Bitcoin"
|
|||
msgstr "خرید & فروش بیتکوین"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
#: src/js/services/buyAndSellService.js:26
|
||||
msgid "Buy Bitcoin"
|
||||
msgstr "خرید بیتکوین"
|
||||
|
||||
|
|
@ -619,10 +620,14 @@ msgstr "در حال اتصال به Glidera..."
|
|||
msgid "Connection reset by peer"
|
||||
msgstr "ریست اتصال توسط همکار"
|
||||
|
||||
#: www/views/tab-send.html:45
|
||||
#: www/views/tab-send.html:85
|
||||
msgid "Contacts"
|
||||
msgstr "تماسها"
|
||||
|
||||
#: www/views/tab-send.html:86
|
||||
msgid "Saved frequently used addresses"
|
||||
msgstr "آدرس های ذخیره شده که اغلب مورد استفاده قرار گرفته اند"
|
||||
|
||||
#: www/views/onboarding/notifications.html:9
|
||||
msgid "Continue"
|
||||
msgstr "ادامه"
|
||||
|
|
@ -823,7 +828,7 @@ msgstr "ایجاد کیف پول مشترک"
|
|||
|
||||
#: www/views/onboarding/tour.html:51
|
||||
#: www/views/tab-home.html:75
|
||||
#: www/views/tab-send.html:36
|
||||
#: www/views/tab-send.html:75
|
||||
msgid "Create bitcoin wallet"
|
||||
msgstr "ایجاد کیف پول بیتکوین"
|
||||
|
||||
|
|
@ -2533,6 +2538,14 @@ msgstr "جستجوی تراکنش ها"
|
|||
msgid "Search or enter bitcoin address"
|
||||
msgstr "جستجو و یا وارد کردن آدرس بیتکوین"
|
||||
|
||||
#: src/js/controllers/tab-send.js:28
|
||||
msgid "Clipboard"
|
||||
msgstr "کلیپ بورد"
|
||||
|
||||
#: src/js/controllers/tab-send.js:29
|
||||
msgid "Your Clipboard is empty"
|
||||
msgstr "کلیپ بورد شما خالی است"
|
||||
|
||||
#: www/views/modals/search.html:16
|
||||
msgid "Search transactions"
|
||||
msgstr "جستجوی تراکنش ها"
|
||||
|
|
@ -2591,9 +2604,70 @@ msgid "Send by email"
|
|||
msgstr "ارسال توسط ایمیل"
|
||||
|
||||
#: src/js/controllers/confirm.js:177
|
||||
#: src/js/controllers/tab-send.js:94
|
||||
msgid "Send from"
|
||||
msgstr "ارسال از"
|
||||
|
||||
#: src/js/controllers/tab-send.js:77
|
||||
msgid "Send to"
|
||||
msgstr "ارسال به"
|
||||
|
||||
#: www/views/tab-send.html:20
|
||||
msgid "Paste Clipboard"
|
||||
msgstr "جای گذاری کلیپ برد"
|
||||
|
||||
#: www/views/tab-send.html:21
|
||||
msgid "Paste Address"
|
||||
msgstr "جای گذاری آدرس"
|
||||
|
||||
#: www/views/tab-send.html:27
|
||||
msgid "Wallet to Wallet Transfer"
|
||||
msgstr "انتقال پول از کیف پول به کیف پول"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
msgid "Scan QR Code"
|
||||
msgstr "اسکن کد QR"
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr "ارسال سریع تر بیت کوین!"
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr "ارسال سریع تر بیت کوین!"
|
||||
|
||||
#: www/views/tab-send.html:50
|
||||
msgid "Save frequently used addresses and send them Bitcoin in just one tap"
|
||||
msgstr "ذخیره آدرس های اغلب استفاده شده و ارسال بیت کوین به آنها تنها با یک ضربه"
|
||||
|
||||
#: www/views/tab-send.html:55
|
||||
msgid "Add your first contact"
|
||||
msgstr "اولین تماس خود اضافه کنید"
|
||||
|
||||
#: www/views/tab-send.html:65
|
||||
msgid "Your Bitcoin wallet is empty"
|
||||
msgstr "کیف پول بیت کوین شما خالی است"
|
||||
|
||||
#: www/views/tab-send.html:69
|
||||
msgid "To get started, buy Bitcoin Cash (BCH) or Bitcoin Core (BTC), or share your address."
|
||||
msgstr "برای شروع، Bitcoin Cash (BCH) یا Bitcoin Core (BTC) بخرید و یا آدرس خود را به اشتراک بگذارید."
|
||||
|
||||
#: www/views/tab-send.html:70
|
||||
msgid "You can receive bitcoin from any wallet or service."
|
||||
msgstr "شما می توانید از هر کیف پول و یا خدمات بیت کوین دریافت کنید."
|
||||
|
||||
#: www/views/tab-send.html:72
|
||||
msgid "To get started, you'll need to create a bitcoin wallet and get some bitcoin."
|
||||
msgstr "برای شروع، شما نیاز دارید که یک کیف پول ایجاد کنید و مقداری بیتکوین تهیه کنید."
|
||||
|
||||
#: www/views/tab-send.html:74
|
||||
msgid "Buy Bitcoin now"
|
||||
msgstr "خرید بیت کوین همین الان"
|
||||
|
||||
#: www/views/tab-send.html:76
|
||||
msgid "Show my address"
|
||||
msgstr "نمایش آدرس من"
|
||||
|
||||
#: www/views/includes/itemSelector.html:8
|
||||
msgid "Send max amount"
|
||||
msgstr "ارسال حداکثر مقدار"
|
||||
|
|
@ -3030,7 +3104,7 @@ msgstr "برای شروع، بیتکوین بخرید و یا آدرس خود ر
|
|||
|
||||
#: www/views/tab-send.html:33
|
||||
msgid "To get started, you'll need to create a bitcoin wallet and get some bitcoin."
|
||||
msgstr "برای شروع، شما نیاز دارید که یک کیف پول ایجاد کنید و مقداری بیتکوین تهیه کنید."
|
||||
msgstr "برای شروع، شما نیاز دارید که یک کیف پول بیت کوین ایجاد کرده و مقداری بیت کوین تهیه کنید."
|
||||
|
||||
#: src/js/services/bitpayAccountService.js:73
|
||||
msgid "To {{reason}} you must first add your BitPay account - {{email}}"
|
||||
|
|
@ -3636,3 +3710,51 @@ msgstr "{{updatingTxHistoryProgress}} تراکنش دانلود شد"
|
|||
msgid "{{wallet.m}}-of-{{wallet.n}}"
|
||||
msgstr "{{wallet.m}} از {{wallet.n}}"
|
||||
|
||||
#: src/js/services/shapeshiftService.js:8
|
||||
msgid "Shapeshift"
|
||||
msgstr "Shapeshift"
|
||||
|
||||
#: www/views/includes/community.html:3
|
||||
msgid "Community"
|
||||
msgstr "جامعه"
|
||||
|
||||
#: src/js/services/communityService.js:40
|
||||
msgid "Bitcoin Cash Reddit"
|
||||
msgstr "Bitcoin Cash Reddit"
|
||||
|
||||
#: src/js/services/communityService.js:47
|
||||
msgid "Bitcoin.com Twitter"
|
||||
msgstr "توییتر Bitcoin.com"
|
||||
|
||||
#: www/views/includes/nextSteps.html:3
|
||||
msgid "Explore Bitcoin.com"
|
||||
msgstr "کاوش Bitcoin.com"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:21
|
||||
msgid "Bitcoin Cash Games"
|
||||
msgstr "Bitcoin Cash Games"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:28
|
||||
msgid "News"
|
||||
msgstr "اخبار"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:35
|
||||
msgid "Mining Pool"
|
||||
msgstr "استخر استخراج"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:42
|
||||
msgid "Tools"
|
||||
msgstr "ابزارها"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:49
|
||||
msgid "Bitcoin Price Charts"
|
||||
msgstr "نمودارهای قیمت بیت کوین"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:56
|
||||
msgid "Free Bitcoin Cash"
|
||||
msgstr "رایگان Bitcoin Cash"
|
||||
|
||||
#: www/views/tab-home.html:30
|
||||
msgid "Your Bitcoin Wallets are ready!"
|
||||
msgstr "کیف پول بیت کوین شما آماده است!"
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ msgstr ""
|
|||
"Last-Translator: emilold\n"
|
||||
"Language-Team: French\n"
|
||||
"Language: fr\n"
|
||||
"PO-Revision-Date: 2018-07-04 09:26\n"
|
||||
"PO-Revision-Date: 2018-07-27 08:44\n"
|
||||
|
||||
#: www/views/modals/paypro.html:34
|
||||
msgid "(Trusted)"
|
||||
|
|
@ -79,7 +79,7 @@ msgstr "Numéro de compte"
|
|||
|
||||
#: www/views/tab-home.html:61
|
||||
msgid "Instant transactions with low fees"
|
||||
msgstr "Transactions instantanées à bas frais"
|
||||
msgstr "Instant transactions with low fees"
|
||||
|
||||
#: www/views/preferencesBitpayServices.html:23
|
||||
msgid "Accounts"
|
||||
|
|
@ -437,6 +437,7 @@ msgid "Buy & Sell Bitcoin"
|
|||
msgstr "Acheter & vendre des bitcoins"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
#: src/js/services/buyAndSellService.js:26
|
||||
msgid "Buy Bitcoin"
|
||||
msgstr "Acheter des bitcoins"
|
||||
|
||||
|
|
@ -619,10 +620,14 @@ msgstr "Connexion à Glidera..."
|
|||
msgid "Connection reset by peer"
|
||||
msgstr "Connexion réinitialisée par un pair"
|
||||
|
||||
#: www/views/tab-send.html:45
|
||||
#: www/views/tab-send.html:85
|
||||
msgid "Contacts"
|
||||
msgstr "Contacts"
|
||||
|
||||
#: www/views/tab-send.html:86
|
||||
msgid "Saved frequently used addresses"
|
||||
msgstr "Adresses fréquemment utilisées enregistrées"
|
||||
|
||||
#: www/views/onboarding/notifications.html:9
|
||||
msgid "Continue"
|
||||
msgstr "Continuer"
|
||||
|
|
@ -823,7 +828,7 @@ msgstr "Créer un portefeuille partagé"
|
|||
|
||||
#: www/views/onboarding/tour.html:51
|
||||
#: www/views/tab-home.html:75
|
||||
#: www/views/tab-send.html:36
|
||||
#: www/views/tab-send.html:75
|
||||
msgid "Create bitcoin wallet"
|
||||
msgstr "Créer un portefeuille bitcoin"
|
||||
|
||||
|
|
@ -993,7 +998,7 @@ msgstr "Autoriser les notifications"
|
|||
|
||||
#: www/views/preferencesNotifications.html:33
|
||||
msgid "Enable sound"
|
||||
msgstr "Activer le son"
|
||||
msgstr "Malayu"
|
||||
|
||||
#: www/views/tab-scan.html:18
|
||||
msgid "Enable the camera to get started."
|
||||
|
|
@ -2533,6 +2538,14 @@ msgstr "Rechercher des transactions"
|
|||
msgid "Search or enter bitcoin address"
|
||||
msgstr "Recherchez ou saisissez une adresse bitcoin"
|
||||
|
||||
#: src/js/controllers/tab-send.js:28
|
||||
msgid "Clipboard"
|
||||
msgstr "Presse-papiers"
|
||||
|
||||
#: src/js/controllers/tab-send.js:29
|
||||
msgid "Your Clipboard is empty"
|
||||
msgstr "Votre presse-papiers est vide"
|
||||
|
||||
#: www/views/modals/search.html:16
|
||||
msgid "Search transactions"
|
||||
msgstr "Rechercher des transactions"
|
||||
|
|
@ -2591,9 +2604,70 @@ msgid "Send by email"
|
|||
msgstr "Envoyer par e-mail"
|
||||
|
||||
#: src/js/controllers/confirm.js:177
|
||||
#: src/js/controllers/tab-send.js:94
|
||||
msgid "Send from"
|
||||
msgstr "Envoyer à partir de"
|
||||
|
||||
#: src/js/controllers/tab-send.js:77
|
||||
msgid "Send to"
|
||||
msgstr "Envoyer à"
|
||||
|
||||
#: www/views/tab-send.html:20
|
||||
msgid "Paste Clipboard"
|
||||
msgstr "Coller le contenu du presse-papiers"
|
||||
|
||||
#: www/views/tab-send.html:21
|
||||
msgid "Paste Address"
|
||||
msgstr "Coller l'adresse"
|
||||
|
||||
#: www/views/tab-send.html:27
|
||||
msgid "Wallet to Wallet Transfer"
|
||||
msgstr "Transfert de portefeuille à portefeuille"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
msgid "Scan QR Code"
|
||||
msgstr "Numérisez le code QR"
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr "Envoyez des Bitcoin plus vite !"
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr "Envoyez des Bitcoin plus vite !"
|
||||
|
||||
#: www/views/tab-send.html:50
|
||||
msgid "Save frequently used addresses and send them Bitcoin in just one tap"
|
||||
msgstr "Enregistrez les adresses fréquemment utilisées et envoyez-leurs des Bitcoins en un seul geste"
|
||||
|
||||
#: www/views/tab-send.html:55
|
||||
msgid "Add your first contact"
|
||||
msgstr "Ajoutez votre premier contact"
|
||||
|
||||
#: www/views/tab-send.html:65
|
||||
msgid "Your Bitcoin wallet is empty"
|
||||
msgstr "Votre portefeuille Bitcoin est vide"
|
||||
|
||||
#: www/views/tab-send.html:69
|
||||
msgid "To get started, buy Bitcoin Cash (BCH) or Bitcoin Core (BTC), or share your address."
|
||||
msgstr "Pour commencer, achetez des Bitcoins Cash (BCH) ou des Bitcoins Core (BTC), ou partagez votre adresse."
|
||||
|
||||
#: www/views/tab-send.html:70
|
||||
msgid "You can receive bitcoin from any wallet or service."
|
||||
msgstr "Vous pouvez recevoir des Bitcoins de n'importe quel portefeuille ou service."
|
||||
|
||||
#: www/views/tab-send.html:72
|
||||
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/tab-send.html:74
|
||||
msgid "Buy Bitcoin now"
|
||||
msgstr "Acheter des Bitcoins maintenant"
|
||||
|
||||
#: www/views/tab-send.html:76
|
||||
msgid "Show my address"
|
||||
msgstr "Afficher mon adresse"
|
||||
|
||||
#: www/views/includes/itemSelector.html:8
|
||||
msgid "Send max amount"
|
||||
msgstr "Envoyer le montant maximal"
|
||||
|
|
@ -3030,7 +3104,7 @@ msgstr "Pour commencer, achetez des bitcoins ou partagez votre adresse. Vous pou
|
|||
|
||||
#: www/views/tab-send.html:33
|
||||
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."
|
||||
msgstr "Pour commencer, vous aurez besoin de créer un portefeuille Bitcoin et d'obtenir quelques bitcoins."
|
||||
|
||||
#: src/js/services/bitpayAccountService.js:73
|
||||
msgid "To {{reason}} you must first add your BitPay account - {{email}}"
|
||||
|
|
@ -3636,3 +3710,51 @@ msgstr "{{updatingTxHistoryProgress}} transactions téléchargées"
|
|||
msgid "{{wallet.m}}-of-{{wallet.n}}"
|
||||
msgstr "{{wallet.m}}-sur-{{wallet.n}}"
|
||||
|
||||
#: src/js/services/shapeshiftService.js:8
|
||||
msgid "Shapeshift"
|
||||
msgstr "Shapeshift"
|
||||
|
||||
#: www/views/includes/community.html:3
|
||||
msgid "Community"
|
||||
msgstr "Communauté"
|
||||
|
||||
#: src/js/services/communityService.js:40
|
||||
msgid "Bitcoin Cash Reddit"
|
||||
msgstr "Reddit Bitcoin Cash"
|
||||
|
||||
#: src/js/services/communityService.js:47
|
||||
msgid "Bitcoin.com Twitter"
|
||||
msgstr "Twitter Bitcoin.com"
|
||||
|
||||
#: www/views/includes/nextSteps.html:3
|
||||
msgid "Explore Bitcoin.com"
|
||||
msgstr "Explorez Bitcoin.com"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:21
|
||||
msgid "Bitcoin Cash Games"
|
||||
msgstr "Jeux Bitcoin Cash"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:28
|
||||
msgid "News"
|
||||
msgstr "Nouvelles"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:35
|
||||
msgid "Mining Pool"
|
||||
msgstr "Coopératives de mineurs"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:42
|
||||
msgid "Tools"
|
||||
msgstr "Outils"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:49
|
||||
msgid "Bitcoin Price Charts"
|
||||
msgstr "Graphiques du prix du Bitcoin"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:56
|
||||
msgid "Free Bitcoin Cash"
|
||||
msgstr "Bitcoin Cash Gratuit"
|
||||
|
||||
#: www/views/tab-home.html:30
|
||||
msgid "Your Bitcoin Wallets are ready!"
|
||||
msgstr "Vos portefeuilles bitcoin sont prêts !"
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ msgstr ""
|
|||
"Last-Translator: emilold\n"
|
||||
"Language-Team: Italian\n"
|
||||
"Language: it\n"
|
||||
"PO-Revision-Date: 2018-07-04 09:27\n"
|
||||
"PO-Revision-Date: 2018-07-27 08:44\n"
|
||||
|
||||
#: www/views/modals/paypro.html:34
|
||||
msgid "(Trusted)"
|
||||
|
|
@ -437,6 +437,7 @@ msgid "Buy & Sell Bitcoin"
|
|||
msgstr "Comprare & Vendere Bitcoin"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
#: src/js/services/buyAndSellService.js:26
|
||||
msgid "Buy Bitcoin"
|
||||
msgstr "Acquista Bitcoin"
|
||||
|
||||
|
|
@ -619,10 +620,14 @@ msgstr "Connessione a Glidera..."
|
|||
msgid "Connection reset by peer"
|
||||
msgstr "Connessione ripristinata dall'utente"
|
||||
|
||||
#: www/views/tab-send.html:45
|
||||
#: www/views/tab-send.html:85
|
||||
msgid "Contacts"
|
||||
msgstr "Contatti"
|
||||
|
||||
#: www/views/tab-send.html:86
|
||||
msgid "Saved frequently used addresses"
|
||||
msgstr "Indirizzi più utilizzati salvati"
|
||||
|
||||
#: www/views/onboarding/notifications.html:9
|
||||
msgid "Continue"
|
||||
msgstr "Continua"
|
||||
|
|
@ -823,7 +828,7 @@ msgstr "Creare portafoglio condiviso"
|
|||
|
||||
#: www/views/onboarding/tour.html:51
|
||||
#: www/views/tab-home.html:75
|
||||
#: www/views/tab-send.html:36
|
||||
#: www/views/tab-send.html:75
|
||||
msgid "Create bitcoin wallet"
|
||||
msgstr "Creare portafoglio bitcoin"
|
||||
|
||||
|
|
@ -2533,6 +2538,14 @@ msgstr "Cerca Transazioni"
|
|||
msgid "Search or enter bitcoin address"
|
||||
msgstr "Cerca o inserisci indirizzo bitcoin"
|
||||
|
||||
#: src/js/controllers/tab-send.js:28
|
||||
msgid "Clipboard"
|
||||
msgstr "Appunti"
|
||||
|
||||
#: src/js/controllers/tab-send.js:29
|
||||
msgid "Your Clipboard is empty"
|
||||
msgstr "Gli appunti sono vuoti"
|
||||
|
||||
#: www/views/modals/search.html:16
|
||||
msgid "Search transactions"
|
||||
msgstr "Ricerca transazioni"
|
||||
|
|
@ -2591,9 +2604,70 @@ msgid "Send by email"
|
|||
msgstr "Invia via email"
|
||||
|
||||
#: src/js/controllers/confirm.js:177
|
||||
#: src/js/controllers/tab-send.js:94
|
||||
msgid "Send from"
|
||||
msgstr "Inviata Da"
|
||||
|
||||
#: src/js/controllers/tab-send.js:77
|
||||
msgid "Send to"
|
||||
msgstr "Invia a"
|
||||
|
||||
#: www/views/tab-send.html:20
|
||||
msgid "Paste Clipboard"
|
||||
msgstr "Incolla appunti"
|
||||
|
||||
#: www/views/tab-send.html:21
|
||||
msgid "Paste Address"
|
||||
msgstr "Incolla indirizzo"
|
||||
|
||||
#: www/views/tab-send.html:27
|
||||
msgid "Wallet to Wallet Transfer"
|
||||
msgstr "Trasferimento da portafoglio a portafoglio"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
msgid "Scan QR Code"
|
||||
msgstr "Scansiona codice QR"
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr "Invia Bitcoin più velocemente!"
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr "Invia Bitcoin più velocemente!"
|
||||
|
||||
#: www/views/tab-send.html:50
|
||||
msgid "Save frequently used addresses and send them Bitcoin in just one tap"
|
||||
msgstr "Salva gli indirizzi più utilizzati e invia Bitcoin con un solo tocco"
|
||||
|
||||
#: www/views/tab-send.html:55
|
||||
msgid "Add your first contact"
|
||||
msgstr "Aggiungi il tuo primo contatto"
|
||||
|
||||
#: www/views/tab-send.html:65
|
||||
msgid "Your Bitcoin wallet is empty"
|
||||
msgstr "Il tuo portafoglio Bitcoin è vuoto"
|
||||
|
||||
#: www/views/tab-send.html:69
|
||||
msgid "To get started, buy Bitcoin Cash (BCH) or Bitcoin Core (BTC), or share your address."
|
||||
msgstr "Per iniziare, acquista Bitcoin Cash (BCH) o Bitcoin Core (BTC), oppure condividi il tuo indirizzo."
|
||||
|
||||
#: www/views/tab-send.html:70
|
||||
msgid "You can receive bitcoin from any wallet or service."
|
||||
msgstr "Puoi ricevere Bitcoin da qualsiasi portafoglio o servizio."
|
||||
|
||||
#: www/views/tab-send.html:72
|
||||
msgid "To get started, you'll need to create a bitcoin wallet and get some bitcoin."
|
||||
msgstr "Per iniziare, è necessario che tu crei un portafoglio bitcoin e ottenerne qualcuno."
|
||||
|
||||
#: www/views/tab-send.html:74
|
||||
msgid "Buy Bitcoin now"
|
||||
msgstr "Acquista subito Bitcoin"
|
||||
|
||||
#: www/views/tab-send.html:76
|
||||
msgid "Show my address"
|
||||
msgstr "Visualizza il mio indirizzo"
|
||||
|
||||
#: www/views/includes/itemSelector.html:8
|
||||
msgid "Send max amount"
|
||||
msgstr "Inviare l'importo massimo"
|
||||
|
|
@ -3030,7 +3104,7 @@ msgstr "Per iniziare, acquista bitcoin o condividi il tuo indirizzo. È possibil
|
|||
|
||||
#: www/views/tab-send.html:33
|
||||
msgid "To get started, you'll need to create a bitcoin wallet and get some bitcoin."
|
||||
msgstr "Per iniziare, è necessario che tu crei un portafoglio bitcoin e ottenerne qualcuno."
|
||||
msgstr "Per iniziare, devi creare un portafoglio bitcoin e ottenere qualche bitcoin."
|
||||
|
||||
#: src/js/services/bitpayAccountService.js:73
|
||||
msgid "To {{reason}} you must first add your BitPay account - {{email}}"
|
||||
|
|
@ -3636,3 +3710,51 @@ msgstr "{{updatingTxHistoryProgress}} transazioni scaricate"
|
|||
msgid "{{wallet.m}}-of-{{wallet.n}}"
|
||||
msgstr "{{wallet.m}}-di-{{wallet.n}}"
|
||||
|
||||
#: src/js/services/shapeshiftService.js:8
|
||||
msgid "Shapeshift"
|
||||
msgstr "Shapeshift"
|
||||
|
||||
#: www/views/includes/community.html:3
|
||||
msgid "Community"
|
||||
msgstr "Community"
|
||||
|
||||
#: src/js/services/communityService.js:40
|
||||
msgid "Bitcoin Cash Reddit"
|
||||
msgstr "Bitcoin Cash su Reddit"
|
||||
|
||||
#: src/js/services/communityService.js:47
|
||||
msgid "Bitcoin.com Twitter"
|
||||
msgstr "Bitcoin.com su Twitter"
|
||||
|
||||
#: www/views/includes/nextSteps.html:3
|
||||
msgid "Explore Bitcoin.com"
|
||||
msgstr "Esplora Bitcoin.com"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:21
|
||||
msgid "Bitcoin Cash Games"
|
||||
msgstr "Giochi Bitcoin Cash"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:28
|
||||
msgid "News"
|
||||
msgstr "News"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:35
|
||||
msgid "Mining Pool"
|
||||
msgstr "Mining Pool"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:42
|
||||
msgid "Tools"
|
||||
msgstr "Strumenti"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:49
|
||||
msgid "Bitcoin Price Charts"
|
||||
msgstr "Tabella prezzi Bitcoin"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:56
|
||||
msgid "Free Bitcoin Cash"
|
||||
msgstr "Bitcoin Cash gratis"
|
||||
|
||||
#: www/views/tab-home.html:30
|
||||
msgid "Your Bitcoin Wallets are ready!"
|
||||
msgstr "I tuoi portafogli Bitcoin sono pronti!"
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ msgstr ""
|
|||
"Last-Translator: emilold\n"
|
||||
"Language-Team: Japanese\n"
|
||||
"Language: ja\n"
|
||||
"PO-Revision-Date: 2018-07-04 09:27\n"
|
||||
"PO-Revision-Date: 2018-07-27 08:44\n"
|
||||
|
||||
#: www/views/modals/paypro.html:34
|
||||
msgid "(Trusted)"
|
||||
|
|
@ -406,7 +406,7 @@ msgstr "ビットコインは世界で<br>最も安全な仮想通貨。"
|
|||
|
||||
#: www/views/preferencesFee.html:11
|
||||
msgid "Bitcoin transactions include a fee collected by miners on the network."
|
||||
msgstr "ビットコインの取引はネットワークの安全を守る「採掘者」と呼ばれる者達に送る手数料が含まれます。"
|
||||
msgstr "ビットコインの取引はネットワークの安全を守る「採掘者」と呼ばれる方達に送る手数料が含まれます。"
|
||||
|
||||
#: www/views/buyAmazon.html:108
|
||||
msgid "Bought {{amountUnitStr}}"
|
||||
|
|
@ -439,6 +439,7 @@ msgid "Buy & Sell Bitcoin"
|
|||
msgstr "ビットコインの購入&売却"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
#: src/js/services/buyAndSellService.js:26
|
||||
msgid "Buy Bitcoin"
|
||||
msgstr "ビットコインを購入"
|
||||
|
||||
|
|
@ -621,10 +622,14 @@ msgstr "Glidera に接続中…"
|
|||
msgid "Connection reset by peer"
|
||||
msgstr "接続がピアによってリセットされました"
|
||||
|
||||
#: www/views/tab-send.html:45
|
||||
#: www/views/tab-send.html:85
|
||||
msgid "Contacts"
|
||||
msgstr "連絡先"
|
||||
|
||||
#: www/views/tab-send.html:86
|
||||
msgid "Saved frequently used addresses"
|
||||
msgstr "よく使う保存済みのアドレス"
|
||||
|
||||
#: www/views/onboarding/notifications.html:9
|
||||
msgid "Continue"
|
||||
msgstr "続ける"
|
||||
|
|
@ -825,7 +830,7 @@ msgstr "共有ウォレットを作成"
|
|||
|
||||
#: www/views/onboarding/tour.html:51
|
||||
#: www/views/tab-home.html:75
|
||||
#: www/views/tab-send.html:36
|
||||
#: www/views/tab-send.html:75
|
||||
msgid "Create bitcoin wallet"
|
||||
msgstr "ビットコインウォレット作成"
|
||||
|
||||
|
|
@ -995,7 +1000,7 @@ msgstr "プッシュ通知を有効化"
|
|||
|
||||
#: www/views/preferencesNotifications.html:33
|
||||
msgid "Enable sound"
|
||||
msgstr "音を有効にする"
|
||||
msgstr "サウンドを有効にする"
|
||||
|
||||
#: www/views/tab-scan.html:18
|
||||
msgid "Enable the camera to get started."
|
||||
|
|
@ -1348,7 +1353,7 @@ msgstr "始めよう"
|
|||
|
||||
#: www/views/addressbook.html:20
|
||||
msgid "Get started by adding your first one."
|
||||
msgstr "初めての連絡先を追加しましょう。"
|
||||
msgstr "連絡先を追加しましょう。"
|
||||
|
||||
#: src/js/services/onGoingProcess.js:23
|
||||
msgid "Getting fee levels..."
|
||||
|
|
@ -1873,7 +1878,7 @@ msgstr "バックアップは非常に重要です!"
|
|||
|
||||
#: www/views/addressbook.html:19
|
||||
msgid "No contacts yet"
|
||||
msgstr "連絡先が無い"
|
||||
msgstr "連絡先はありません"
|
||||
|
||||
#: www/views/preferencesLogs.html:16
|
||||
msgid "No entries for this log level"
|
||||
|
|
@ -2006,7 +2011,7 @@ msgstr "今一度周りの環境をよく見てみましょう。隠しカメラ
|
|||
#: src/js/services/popupService.js:72
|
||||
#: www/views/modals/chooseFeeLevel.html:6
|
||||
msgid "OK"
|
||||
msgstr "わかりました"
|
||||
msgstr "OK"
|
||||
|
||||
#: www/views/modals/tx-status.html:12
|
||||
#: www/views/modals/tx-status.html:24
|
||||
|
|
@ -2535,6 +2540,14 @@ msgstr "取引を検索"
|
|||
msgid "Search or enter bitcoin address"
|
||||
msgstr "連絡先検索かビットコインアドレスを指定"
|
||||
|
||||
#: src/js/controllers/tab-send.js:28
|
||||
msgid "Clipboard"
|
||||
msgstr "クリップボード"
|
||||
|
||||
#: src/js/controllers/tab-send.js:29
|
||||
msgid "Your Clipboard is empty"
|
||||
msgstr "クリップボードは空です"
|
||||
|
||||
#: www/views/modals/search.html:16
|
||||
msgid "Search transactions"
|
||||
msgstr "取引を検索"
|
||||
|
|
@ -2593,9 +2606,70 @@ msgid "Send by email"
|
|||
msgstr "メールで送信"
|
||||
|
||||
#: src/js/controllers/confirm.js:177
|
||||
#: src/js/controllers/tab-send.js:94
|
||||
msgid "Send from"
|
||||
msgstr "ここから送金"
|
||||
|
||||
#: src/js/controllers/tab-send.js:77
|
||||
msgid "Send to"
|
||||
msgstr "送金先:"
|
||||
|
||||
#: www/views/tab-send.html:20
|
||||
msgid "Paste Clipboard"
|
||||
msgstr "クリップボードからペースト"
|
||||
|
||||
#: www/views/tab-send.html:21
|
||||
msgid "Paste Address"
|
||||
msgstr "アドレスをペースト"
|
||||
|
||||
#: www/views/tab-send.html:27
|
||||
msgid "Wallet to Wallet Transfer"
|
||||
msgstr "ウォレット間送金"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
msgid "Scan QR Code"
|
||||
msgstr "QRコードを読み取る"
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr "ビットコイン送金をより高速に!"
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr "ビットコイン送金をより高速に!"
|
||||
|
||||
#: www/views/tab-send.html:50
|
||||
msgid "Save frequently used addresses and send them Bitcoin in just one tap"
|
||||
msgstr "よく使うアドレスを保存すればワンタップでビットコインを送金できます"
|
||||
|
||||
#: www/views/tab-send.html:55
|
||||
msgid "Add your first contact"
|
||||
msgstr "最初の連絡先を追加"
|
||||
|
||||
#: www/views/tab-send.html:65
|
||||
msgid "Your Bitcoin wallet is empty"
|
||||
msgstr "ビットコインウォレットが空です"
|
||||
|
||||
#: www/views/tab-send.html:69
|
||||
msgid "To get started, buy Bitcoin Cash (BCH) or Bitcoin Core (BTC), or share your address."
|
||||
msgstr "始めるには、Bitcoin Cash (BCH) または Bitcoin Core (BTC) を購入するか、あなたのアドレスを共有してください。"
|
||||
|
||||
#: www/views/tab-send.html:70
|
||||
msgid "You can receive bitcoin from any wallet or service."
|
||||
msgstr "どのウォレットやサービスからでもビットコインを受け取ることができます。"
|
||||
|
||||
#: www/views/tab-send.html:72
|
||||
msgid "To get started, you'll need to create a bitcoin wallet and get some bitcoin."
|
||||
msgstr "はじめに、ビットコインウォレットを作成し、ビットコインを入手する必要があります。"
|
||||
|
||||
#: www/views/tab-send.html:74
|
||||
msgid "Buy Bitcoin now"
|
||||
msgstr "今すぐビットコインを購入"
|
||||
|
||||
#: www/views/tab-send.html:76
|
||||
msgid "Show my address"
|
||||
msgstr "自分のアドレスを表示"
|
||||
|
||||
#: www/views/includes/itemSelector.html:8
|
||||
msgid "Send max amount"
|
||||
msgstr "全残高を送金"
|
||||
|
|
@ -3450,7 +3524,7 @@ msgstr "送金発生時のメール通知はどのメールアドレスで受け
|
|||
|
||||
#: www/views/addresses.html:19
|
||||
msgid "Why?"
|
||||
msgstr "なぜ?"
|
||||
msgstr "なぜですか?"
|
||||
|
||||
#: www/views/feedback/rateApp.html:10
|
||||
msgid "Would you be willing to rate {{appName}} in the app store?"
|
||||
|
|
@ -3642,3 +3716,51 @@ msgstr "{{updatingTxHistoryProgress}} 個の取引ダウンロード済み"
|
|||
msgid "{{wallet.m}}-of-{{wallet.n}}"
|
||||
msgstr "{{wallet.m}} の{{wallet.n}}"
|
||||
|
||||
#: src/js/services/shapeshiftService.js:8
|
||||
msgid "Shapeshift"
|
||||
msgstr "Shapeshift"
|
||||
|
||||
#: www/views/includes/community.html:3
|
||||
msgid "Community"
|
||||
msgstr "コミュニティ"
|
||||
|
||||
#: src/js/services/communityService.js:40
|
||||
msgid "Bitcoin Cash Reddit"
|
||||
msgstr "Bitcoin Cash Reddit"
|
||||
|
||||
#: src/js/services/communityService.js:47
|
||||
msgid "Bitcoin.com Twitter"
|
||||
msgstr "Bitcoin.com Twitter"
|
||||
|
||||
#: www/views/includes/nextSteps.html:3
|
||||
msgid "Explore Bitcoin.com"
|
||||
msgstr "Bitcoin.com を参照"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:21
|
||||
msgid "Bitcoin Cash Games"
|
||||
msgstr "Bitcoin Cash ゲーム"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:28
|
||||
msgid "News"
|
||||
msgstr "ニュース"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:35
|
||||
msgid "Mining Pool"
|
||||
msgstr "マイニングプール"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:42
|
||||
msgid "Tools"
|
||||
msgstr "ツール"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:49
|
||||
msgid "Bitcoin Price Charts"
|
||||
msgstr "ビットコインの価格チャート"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:56
|
||||
msgid "Free Bitcoin Cash"
|
||||
msgstr "無料 Bitcoin Cash"
|
||||
|
||||
#: www/views/tab-home.html:30
|
||||
msgid "Your Bitcoin Wallets are ready!"
|
||||
msgstr "ビットコインウォレットが完成しました!"
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ msgstr ""
|
|||
"Last-Translator: emilold\n"
|
||||
"Language-Team: Korean\n"
|
||||
"Language: ko\n"
|
||||
"PO-Revision-Date: 2018-07-04 09:27\n"
|
||||
"PO-Revision-Date: 2018-07-27 08:44\n"
|
||||
|
||||
#: www/views/modals/paypro.html:34
|
||||
msgid "(Trusted)"
|
||||
|
|
@ -437,6 +437,7 @@ msgid "Buy & Sell Bitcoin"
|
|||
msgstr "비트코인 구매 & 판매"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
#: src/js/services/buyAndSellService.js:26
|
||||
msgid "Buy Bitcoin"
|
||||
msgstr "비트코인 구매"
|
||||
|
||||
|
|
@ -619,10 +620,14 @@ msgstr "Glidera에 연결 중..."
|
|||
msgid "Connection reset by peer"
|
||||
msgstr "연결 실패"
|
||||
|
||||
#: www/views/tab-send.html:45
|
||||
#: www/views/tab-send.html:85
|
||||
msgid "Contacts"
|
||||
msgstr "연락처"
|
||||
|
||||
#: www/views/tab-send.html:86
|
||||
msgid "Saved frequently used addresses"
|
||||
msgstr "자주 사용하는 저장된 주소"
|
||||
|
||||
#: www/views/onboarding/notifications.html:9
|
||||
msgid "Continue"
|
||||
msgstr "계속하기"
|
||||
|
|
@ -823,7 +828,7 @@ msgstr "공유 지갑 만들기"
|
|||
|
||||
#: www/views/onboarding/tour.html:51
|
||||
#: www/views/tab-home.html:75
|
||||
#: www/views/tab-send.html:36
|
||||
#: www/views/tab-send.html:75
|
||||
msgid "Create bitcoin wallet"
|
||||
msgstr "비트코인 지갑 만들기"
|
||||
|
||||
|
|
@ -2533,6 +2538,14 @@ msgstr "거래 기록 검색하기"
|
|||
msgid "Search or enter bitcoin address"
|
||||
msgstr "비트코인 주소를 찾거나 작성"
|
||||
|
||||
#: src/js/controllers/tab-send.js:28
|
||||
msgid "Clipboard"
|
||||
msgstr "클립보드"
|
||||
|
||||
#: src/js/controllers/tab-send.js:29
|
||||
msgid "Your Clipboard is empty"
|
||||
msgstr "클립보드가 비어 있습니다"
|
||||
|
||||
#: www/views/modals/search.html:16
|
||||
msgid "Search transactions"
|
||||
msgstr "거래 기록 검색"
|
||||
|
|
@ -2591,9 +2604,70 @@ msgid "Send by email"
|
|||
msgstr "이메일로 보내기"
|
||||
|
||||
#: src/js/controllers/confirm.js:177
|
||||
#: src/js/controllers/tab-send.js:94
|
||||
msgid "Send from"
|
||||
msgstr "출처"
|
||||
|
||||
#: src/js/controllers/tab-send.js:77
|
||||
msgid "Send to"
|
||||
msgstr "보내기"
|
||||
|
||||
#: www/views/tab-send.html:20
|
||||
msgid "Paste Clipboard"
|
||||
msgstr "클립보드 붙여넣기"
|
||||
|
||||
#: www/views/tab-send.html:21
|
||||
msgid "Paste Address"
|
||||
msgstr "주소 붙여넣기"
|
||||
|
||||
#: www/views/tab-send.html:27
|
||||
msgid "Wallet to Wallet Transfer"
|
||||
msgstr "지갑 간 전송"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
msgid "Scan QR Code"
|
||||
msgstr "QR 코드 스캔"
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr "비트코인 속성 전송!"
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr "비트코인 속성 전송!"
|
||||
|
||||
#: www/views/tab-send.html:50
|
||||
msgid "Save frequently used addresses and send them Bitcoin in just one tap"
|
||||
msgstr "자주 사용하는 주소를 저장하고 한 번의 탭으로 저장된 주소에 비트코인 전송"
|
||||
|
||||
#: www/views/tab-send.html:55
|
||||
msgid "Add your first contact"
|
||||
msgstr "첫 번째 연락처 추가"
|
||||
|
||||
#: www/views/tab-send.html:65
|
||||
msgid "Your Bitcoin wallet is empty"
|
||||
msgstr "비트코인 지갑이 비어 있습니다"
|
||||
|
||||
#: www/views/tab-send.html:69
|
||||
msgid "To get started, buy Bitcoin Cash (BCH) or Bitcoin Core (BTC), or share your address."
|
||||
msgstr "시작하려면 비트코인 캐시(BCH) 또는 비트코인 코어(BTC)를 구매하거나 주소를 공유합니다."
|
||||
|
||||
#: www/views/tab-send.html:70
|
||||
msgid "You can receive bitcoin from any wallet or service."
|
||||
msgstr "지갑 또는 서비스에서 비트코인을 받을 수 있습니다."
|
||||
|
||||
#: www/views/tab-send.html:72
|
||||
msgid "To get started, you'll need to create a bitcoin wallet and get some bitcoin."
|
||||
msgstr "시작하시기 위해선 비트코인 지갑을 생성하시거나 비트코인을 구매하세요."
|
||||
|
||||
#: www/views/tab-send.html:74
|
||||
msgid "Buy Bitcoin now"
|
||||
msgstr "지금 비트코인 구매"
|
||||
|
||||
#: www/views/tab-send.html:76
|
||||
msgid "Show my address"
|
||||
msgstr "내 주소 보기"
|
||||
|
||||
#: www/views/includes/itemSelector.html:8
|
||||
msgid "Send max amount"
|
||||
msgstr "최대 수량 보내기"
|
||||
|
|
@ -3030,7 +3104,7 @@ msgstr "시작하시려면 비트코인을 구매하시거나 주소를 등록
|
|||
|
||||
#: www/views/tab-send.html:33
|
||||
msgid "To get started, you'll need to create a bitcoin wallet and get some bitcoin."
|
||||
msgstr "시작하시기 위해선 비트코인 지갑을 생성하시거나 비트코인을 구매하세요."
|
||||
msgstr "시작하려면 비트코인 지갑을 만들고 비트코인을 구매하십시오."
|
||||
|
||||
#: src/js/services/bitpayAccountService.js:73
|
||||
msgid "To {{reason}} you must first add your BitPay account - {{email}}"
|
||||
|
|
@ -3636,3 +3710,51 @@ msgstr "{{updatingTxHistoryProgress}} 거래 내역 다운로드 완료"
|
|||
msgid "{{wallet.m}}-of-{{wallet.n}}"
|
||||
msgstr "{{wallet.n}}의 {{wallet.m}}"
|
||||
|
||||
#: src/js/services/shapeshiftService.js:8
|
||||
msgid "Shapeshift"
|
||||
msgstr "Shapeshift"
|
||||
|
||||
#: www/views/includes/community.html:3
|
||||
msgid "Community"
|
||||
msgstr "커뮤니티"
|
||||
|
||||
#: src/js/services/communityService.js:40
|
||||
msgid "Bitcoin Cash Reddit"
|
||||
msgstr "BCH Reddit"
|
||||
|
||||
#: src/js/services/communityService.js:47
|
||||
msgid "Bitcoin.com Twitter"
|
||||
msgstr "Bitcoin.com 트위터"
|
||||
|
||||
#: www/views/includes/nextSteps.html:3
|
||||
msgid "Explore Bitcoin.com"
|
||||
msgstr "Bitcoin.com 탐색"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:21
|
||||
msgid "Bitcoin Cash Games"
|
||||
msgstr "BCH 게임"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:28
|
||||
msgid "News"
|
||||
msgstr "소식"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:35
|
||||
msgid "Mining Pool"
|
||||
msgstr "채굴 풀"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:42
|
||||
msgid "Tools"
|
||||
msgstr "도구"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:49
|
||||
msgid "Bitcoin Price Charts"
|
||||
msgstr "비트코인 가격 차트"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:56
|
||||
msgid "Free Bitcoin Cash"
|
||||
msgstr "무료 BCH"
|
||||
|
||||
#: www/views/tab-home.html:30
|
||||
msgid "Your Bitcoin Wallets are ready!"
|
||||
msgstr "비트코인 지갑이 완료되었습니다!"
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ msgstr ""
|
|||
"Last-Translator: emilold\n"
|
||||
"Language-Team: Dutch\n"
|
||||
"Language: nl\n"
|
||||
"PO-Revision-Date: 2018-07-04 09:26\n"
|
||||
"PO-Revision-Date: 2018-07-27 08:44\n"
|
||||
|
||||
#: www/views/modals/paypro.html:34
|
||||
msgid "(Trusted)"
|
||||
|
|
@ -437,6 +437,7 @@ msgid "Buy & Sell Bitcoin"
|
|||
msgstr "Koop & Verkoop Bitcoin"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
#: src/js/services/buyAndSellService.js:26
|
||||
msgid "Buy Bitcoin"
|
||||
msgstr "Bitcoin kopen"
|
||||
|
||||
|
|
@ -619,10 +620,14 @@ msgstr "Verbinding maken met Glidera..."
|
|||
msgid "Connection reset by peer"
|
||||
msgstr "Verbinding is gereset door peer"
|
||||
|
||||
#: www/views/tab-send.html:45
|
||||
#: www/views/tab-send.html:85
|
||||
msgid "Contacts"
|
||||
msgstr "Contactpersonen"
|
||||
|
||||
#: www/views/tab-send.html:86
|
||||
msgid "Saved frequently used addresses"
|
||||
msgstr "Opgeslagen veelgebruikte adressen"
|
||||
|
||||
#: www/views/onboarding/notifications.html:9
|
||||
msgid "Continue"
|
||||
msgstr "Ga verder"
|
||||
|
|
@ -823,7 +828,7 @@ msgstr "Gedeelde Portemonnee Aanmaken"
|
|||
|
||||
#: www/views/onboarding/tour.html:51
|
||||
#: www/views/tab-home.html:75
|
||||
#: www/views/tab-send.html:36
|
||||
#: www/views/tab-send.html:75
|
||||
msgid "Create bitcoin wallet"
|
||||
msgstr "Bitcoin portemonnee aanmaken"
|
||||
|
||||
|
|
@ -2533,6 +2538,14 @@ msgstr "Doorzoek Transacties"
|
|||
msgid "Search or enter bitcoin address"
|
||||
msgstr "Zoeken of bitcoin adres invullen"
|
||||
|
||||
#: src/js/controllers/tab-send.js:28
|
||||
msgid "Clipboard"
|
||||
msgstr "Klembord"
|
||||
|
||||
#: src/js/controllers/tab-send.js:29
|
||||
msgid "Your Clipboard is empty"
|
||||
msgstr "Uw klembord is leeg"
|
||||
|
||||
#: www/views/modals/search.html:16
|
||||
msgid "Search transactions"
|
||||
msgstr "Doorzoek transacties"
|
||||
|
|
@ -2591,9 +2604,70 @@ msgid "Send by email"
|
|||
msgstr "Verstuur via email"
|
||||
|
||||
#: src/js/controllers/confirm.js:177
|
||||
#: src/js/controllers/tab-send.js:94
|
||||
msgid "Send from"
|
||||
msgstr "Verzenden vanuit"
|
||||
|
||||
#: src/js/controllers/tab-send.js:77
|
||||
msgid "Send to"
|
||||
msgstr "Verzenden naar"
|
||||
|
||||
#: www/views/tab-send.html:20
|
||||
msgid "Paste Clipboard"
|
||||
msgstr "Klembord plakken"
|
||||
|
||||
#: www/views/tab-send.html:21
|
||||
msgid "Paste Address"
|
||||
msgstr "Adres plakken"
|
||||
|
||||
#: www/views/tab-send.html:27
|
||||
msgid "Wallet to Wallet Transfer"
|
||||
msgstr "Portemonnee overdracht"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
msgid "Scan QR Code"
|
||||
msgstr "Scan QR-code"
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr "Stuur Bitcoin sneller!"
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr "Stuur Bitcoin sneller!"
|
||||
|
||||
#: www/views/tab-send.html:50
|
||||
msgid "Save frequently used addresses and send them Bitcoin in just one tap"
|
||||
msgstr "Sla veelgebruikte adressen op en verstuur ze Bitcoin met een druk op de knop"
|
||||
|
||||
#: www/views/tab-send.html:55
|
||||
msgid "Add your first contact"
|
||||
msgstr "Uw eerste contact toevoegen"
|
||||
|
||||
#: www/views/tab-send.html:65
|
||||
msgid "Your Bitcoin wallet is empty"
|
||||
msgstr "Uw Bitcoin portemonnee is leeg"
|
||||
|
||||
#: www/views/tab-send.html:69
|
||||
msgid "To get started, buy Bitcoin Cash (BCH) or Bitcoin Core (BTC), or share your address."
|
||||
msgstr "Om aan de slag te gaan, koop Bitcoin Cash (BCH) of Bitcoin Core (BTC), of deel uw adres."
|
||||
|
||||
#: www/views/tab-send.html:70
|
||||
msgid "You can receive bitcoin from any wallet or service."
|
||||
msgstr "U kunt Bitcoin ontvangen van elke portemonnee of dienst."
|
||||
|
||||
#: www/views/tab-send.html:72
|
||||
msgid "To get started, you'll need to create a bitcoin wallet and get some bitcoin."
|
||||
msgstr "Om aan de slag te gaan zult u een bitcoin portemonnee moeten aanmaken en wat bitcoin moeten verkrijgen."
|
||||
|
||||
#: www/views/tab-send.html:74
|
||||
msgid "Buy Bitcoin now"
|
||||
msgstr "Bitcoin kopen"
|
||||
|
||||
#: www/views/tab-send.html:76
|
||||
msgid "Show my address"
|
||||
msgstr "Toon mijn adres"
|
||||
|
||||
#: www/views/includes/itemSelector.html:8
|
||||
msgid "Send max amount"
|
||||
msgstr "Verzend maximale hoeveelheid"
|
||||
|
|
@ -3030,7 +3104,7 @@ msgstr "Om aan de slag te gaan, koop bitcoin of deel uw adres. U kunt bitcoin on
|
|||
|
||||
#: www/views/tab-send.html:33
|
||||
msgid "To get started, you'll need to create a bitcoin wallet and get some bitcoin."
|
||||
msgstr "Om aan de slag te gaan zult u een bitcoin portemonnee moeten aanmaken en wat bitcoin moeten verkrijgen."
|
||||
msgstr "Om aan de slag te gaan, zult u een Bitcoin-portemonnee aan moeten maken en wat Bitcoin moeten verkrijgen."
|
||||
|
||||
#: src/js/services/bitpayAccountService.js:73
|
||||
msgid "To {{reason}} you must first add your BitPay account - {{email}}"
|
||||
|
|
@ -3636,3 +3710,51 @@ msgstr "{{updatingTxHistoryProgress}} transacties gedownload"
|
|||
msgid "{{wallet.m}}-of-{{wallet.n}}"
|
||||
msgstr "{{wallet.m}}-van-{{wallet.n}}"
|
||||
|
||||
#: src/js/services/shapeshiftService.js:8
|
||||
msgid "Shapeshift"
|
||||
msgstr "Shapeshift"
|
||||
|
||||
#: www/views/includes/community.html:3
|
||||
msgid "Community"
|
||||
msgstr "Community"
|
||||
|
||||
#: src/js/services/communityService.js:40
|
||||
msgid "Bitcoin Cash Reddit"
|
||||
msgstr "Bitcoin Cash Reddit"
|
||||
|
||||
#: src/js/services/communityService.js:47
|
||||
msgid "Bitcoin.com Twitter"
|
||||
msgstr "Bitcoin.com Twitter"
|
||||
|
||||
#: www/views/includes/nextSteps.html:3
|
||||
msgid "Explore Bitcoin.com"
|
||||
msgstr "Bitcoin.com verkennen"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:21
|
||||
msgid "Bitcoin Cash Games"
|
||||
msgstr "Bitcoin Cash spellen"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:28
|
||||
msgid "News"
|
||||
msgstr "Nieuws"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:35
|
||||
msgid "Mining Pool"
|
||||
msgstr "Mining Pool"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:42
|
||||
msgid "Tools"
|
||||
msgstr "Hulpmiddelen"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:49
|
||||
msgid "Bitcoin Price Charts"
|
||||
msgstr "Bitcoin prijs grafieken"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:56
|
||||
msgid "Free Bitcoin Cash"
|
||||
msgstr "Gratis Bitcoin Cash"
|
||||
|
||||
#: www/views/tab-home.html:30
|
||||
msgid "Your Bitcoin Wallets are ready!"
|
||||
msgstr "Uw bitcoin portemonnee is gereed!"
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ msgstr ""
|
|||
"Last-Translator: emilold\n"
|
||||
"Language-Team: Polish\n"
|
||||
"Language: pl\n"
|
||||
"PO-Revision-Date: 2018-07-04 03:58\n"
|
||||
"PO-Revision-Date: 2018-07-27 08:44\n"
|
||||
|
||||
#: www/views/modals/paypro.html:34
|
||||
msgid "(Trusted)"
|
||||
|
|
@ -79,7 +79,7 @@ msgstr "Numer konta"
|
|||
|
||||
#: www/views/tab-home.html:61
|
||||
msgid "Instant transactions with low fees"
|
||||
msgstr ""
|
||||
msgstr "Natychmiastowe transakcje z niskimi prowizjami"
|
||||
|
||||
#: www/views/preferencesBitpayServices.html:23
|
||||
msgid "Accounts"
|
||||
|
|
@ -363,12 +363,12 @@ msgstr "Adres bitcoin"
|
|||
|
||||
#: www/views/cashScan.html:4
|
||||
msgid "Bitcoin Cash (BCH) Balances"
|
||||
msgstr ""
|
||||
msgstr "Salda Bitcoin Cash (BCH)"
|
||||
|
||||
#: www/views/preferencesCash.html:3
|
||||
#: www/views/tab-settings.html:47
|
||||
msgid "Bitcoin Cash Support"
|
||||
msgstr ""
|
||||
msgstr "Wsparcie Bitcoin Cash"
|
||||
|
||||
#: www/views/tab-home.html:98
|
||||
#: www/views/tab-settings.html:115
|
||||
|
|
@ -384,7 +384,7 @@ msgstr "Polityka prowizji sieci bitcoin"
|
|||
#: www/views/tab-home.html:83
|
||||
#: www/views/tab-settings.html:107
|
||||
msgid "Bitcoin Core Wallets"
|
||||
msgstr ""
|
||||
msgstr "Portfele Bitcoin Core"
|
||||
|
||||
#: src/js/services/incomingData.js:151
|
||||
msgid "Bitcoin cash Payment"
|
||||
|
|
@ -437,6 +437,7 @@ msgid "Buy & Sell Bitcoin"
|
|||
msgstr "Kup & sprzedaj bitcoiny"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
#: src/js/services/buyAndSellService.js:26
|
||||
msgid "Buy Bitcoin"
|
||||
msgstr "Kup bitcoiny"
|
||||
|
||||
|
|
@ -619,10 +620,14 @@ msgstr "Łączenie z Gildera..."
|
|||
msgid "Connection reset by peer"
|
||||
msgstr "Połączenie zostało zresetowane"
|
||||
|
||||
#: www/views/tab-send.html:45
|
||||
#: www/views/tab-send.html:85
|
||||
msgid "Contacts"
|
||||
msgstr "Kontakty"
|
||||
|
||||
#: www/views/tab-send.html:86
|
||||
msgid "Saved frequently used addresses"
|
||||
msgstr "Zapisane często używane adresy"
|
||||
|
||||
#: www/views/onboarding/notifications.html:9
|
||||
msgid "Continue"
|
||||
msgstr "Dalej"
|
||||
|
|
@ -823,7 +828,7 @@ msgstr "Utwórz współdzielony portfel"
|
|||
|
||||
#: www/views/onboarding/tour.html:51
|
||||
#: www/views/tab-home.html:75
|
||||
#: www/views/tab-send.html:36
|
||||
#: www/views/tab-send.html:75
|
||||
msgid "Create bitcoin wallet"
|
||||
msgstr "Utwórz portfel bitcoin"
|
||||
|
||||
|
|
@ -977,7 +982,7 @@ msgstr "Puste adresy osiągnęły limit. Nowe adresy nie mogą być generowane."
|
|||
|
||||
#: www/views/preferencesCash.html:17
|
||||
msgid "Enable Bitcoin Cash wallet creation and operation within the App."
|
||||
msgstr ""
|
||||
msgstr "Włącz tworzenie i obsługę portfela Bitcoin Cash w aplikacji."
|
||||
|
||||
#: www/views/tab-scan.html:19
|
||||
msgid "Enable camera access in your device settings to get started."
|
||||
|
|
@ -993,7 +998,7 @@ msgstr "Włącz powiadomienia"
|
|||
|
||||
#: www/views/preferencesNotifications.html:33
|
||||
msgid "Enable sound"
|
||||
msgstr ""
|
||||
msgstr "Włącz dźwięk"
|
||||
|
||||
#: www/views/tab-scan.html:18
|
||||
msgid "Enable the camera to get started."
|
||||
|
|
@ -1001,7 +1006,7 @@ msgstr "Włącz kamerę aby rozpocząć."
|
|||
|
||||
#: www/views/tab-settings.html:49
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
msgstr "Włączono"
|
||||
|
||||
#: src/js/services/walletService.js:1047
|
||||
#: src/js/services/walletService.js:1062
|
||||
|
|
@ -1586,7 +1591,7 @@ msgstr "Nieprawidłowy adres"
|
|||
#: src/js/controllers/confirm.js:306
|
||||
#: src/js/services/bwcError.js:44
|
||||
msgid "Insufficient confirmed funds"
|
||||
msgstr ""
|
||||
msgstr "Niewystarczające potwierdzone środki"
|
||||
|
||||
#: src/js/controllers/topup.js:165
|
||||
#: src/js/controllers/topup.js:177
|
||||
|
|
@ -1931,7 +1936,7 @@ msgstr "Nie BIP44 portfel"
|
|||
|
||||
#: www/views/cashScan.html:46
|
||||
msgid "Non eligible BTC wallets"
|
||||
msgstr ""
|
||||
msgstr "Niewspierane portfele BTC"
|
||||
|
||||
#: src/js/services/feeService.js:12
|
||||
msgid "Normal"
|
||||
|
|
@ -2004,7 +2009,7 @@ msgstr "Nadszedł czas, aby sprawdzić swoje otoczenie. Czy jesteś w pobliżu o
|
|||
#: src/js/services/popupService.js:72
|
||||
#: www/views/modals/chooseFeeLevel.html:6
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
msgstr "OK"
|
||||
|
||||
#: www/views/modals/tx-status.html:12
|
||||
#: www/views/modals/tx-status.html:24
|
||||
|
|
@ -2023,7 +2028,7 @@ msgstr "O nie!"
|
|||
|
||||
#: src/js/controllers/buyMercadoLibre.js:306
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
msgstr "Ok"
|
||||
|
||||
#: www/views/tab-home.html:39
|
||||
msgid "On this screen you can see all your wallets, accounts, and assets."
|
||||
|
|
@ -2053,7 +2058,7 @@ msgstr "Otwórz projekt GitHub"
|
|||
#: src/js/controllers/bitpayCard.js:123
|
||||
#: src/js/controllers/tx-details.js:192
|
||||
msgid "Open Explorer"
|
||||
msgstr ""
|
||||
msgstr "Otwórz Explorer"
|
||||
|
||||
#: www/views/tab-scan.html:22
|
||||
msgid "Open Settings"
|
||||
|
|
@ -2069,7 +2074,7 @@ msgstr "Otwórz stronę internetową"
|
|||
|
||||
#: src/js/controllers/preferencesCash.js:32
|
||||
msgid "Open bitcoincash.org?"
|
||||
msgstr ""
|
||||
msgstr "Otworzyć bitcoincash.org?"
|
||||
|
||||
#: src/js/controllers/cashScan.js:18
|
||||
msgid "Open the recovery tool."
|
||||
|
|
@ -2240,7 +2245,7 @@ msgstr "Proszę wybrać plik kopii zapasowej"
|
|||
|
||||
#: www/views/bitpayCard.html:81
|
||||
msgid "Pre-Auth Holds"
|
||||
msgstr ""
|
||||
msgstr "Wstrzymanie przedautoryzacyjne"
|
||||
|
||||
#: www/views/tab-settings.html:40
|
||||
msgid "Preferences"
|
||||
|
|
@ -2353,7 +2358,7 @@ msgstr "Otrzymaj"
|
|||
|
||||
#: www/views/customAmount.html:44
|
||||
msgid "Receive in"
|
||||
msgstr ""
|
||||
msgstr "Otrzymaj w"
|
||||
|
||||
#: www/views/includes/walletHistory.html:24
|
||||
#: www/views/tx-details.html:18
|
||||
|
|
@ -2511,7 +2516,7 @@ msgstr "Proszę zeskanować linie papilarne"
|
|||
|
||||
#: www/views/preferencesCash.html:23
|
||||
msgid "Scan your wallets for Bitcoin Cash"
|
||||
msgstr ""
|
||||
msgstr "Skanuj portfele w poszukiwaniu Bitcoin Cash"
|
||||
|
||||
#: src/js/services/onGoingProcess.js:30
|
||||
msgid "Scanning Wallet funds..."
|
||||
|
|
@ -2533,6 +2538,14 @@ msgstr "Szukaj transakcji"
|
|||
msgid "Search or enter bitcoin address"
|
||||
msgstr "Wyszukaj lub wpisz adres bitcoin"
|
||||
|
||||
#: src/js/controllers/tab-send.js:28
|
||||
msgid "Clipboard"
|
||||
msgstr "Schowek"
|
||||
|
||||
#: src/js/controllers/tab-send.js:29
|
||||
msgid "Your Clipboard is empty"
|
||||
msgstr "Schowek jest pusty"
|
||||
|
||||
#: www/views/modals/search.html:16
|
||||
msgid "Search transactions"
|
||||
msgstr "Szukaj transakcji"
|
||||
|
|
@ -2591,9 +2604,70 @@ msgid "Send by email"
|
|||
msgstr "Wyślij przez e-mail"
|
||||
|
||||
#: src/js/controllers/confirm.js:177
|
||||
#: src/js/controllers/tab-send.js:94
|
||||
msgid "Send from"
|
||||
msgstr "Wyślij z"
|
||||
|
||||
#: src/js/controllers/tab-send.js:77
|
||||
msgid "Send to"
|
||||
msgstr "Wyślij do"
|
||||
|
||||
#: www/views/tab-send.html:20
|
||||
msgid "Paste Clipboard"
|
||||
msgstr "Wklej ze schowka"
|
||||
|
||||
#: www/views/tab-send.html:21
|
||||
msgid "Paste Address"
|
||||
msgstr "Wklej adres"
|
||||
|
||||
#: www/views/tab-send.html:27
|
||||
msgid "Wallet to Wallet Transfer"
|
||||
msgstr "Transfer z portfela do portfela"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
msgid "Scan QR Code"
|
||||
msgstr "Zeskanuj kod QR"
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr "Przesyłaj Bitcoiny szybciej!"
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr "Przesyłaj Bitcoiny szybciej!"
|
||||
|
||||
#: www/views/tab-send.html:50
|
||||
msgid "Save frequently used addresses and send them Bitcoin in just one tap"
|
||||
msgstr "Zapisz często używane adresy i wyślij im Bitcoin za pomocą jednego dotknięcia"
|
||||
|
||||
#: www/views/tab-send.html:55
|
||||
msgid "Add your first contact"
|
||||
msgstr "Dodaj swój pierwszy kontakt"
|
||||
|
||||
#: www/views/tab-send.html:65
|
||||
msgid "Your Bitcoin wallet is empty"
|
||||
msgstr "Twój portfel jest pusty"
|
||||
|
||||
#: www/views/tab-send.html:69
|
||||
msgid "To get started, buy Bitcoin Cash (BCH) or Bitcoin Core (BTC), or share your address."
|
||||
msgstr "Aby zacząć, kup Bitcoin Cash (BCH) lub Bitcoin Core (BTC), albo udostępnij swój adres."
|
||||
|
||||
#: www/views/tab-send.html:70
|
||||
msgid "You can receive bitcoin from any wallet or service."
|
||||
msgstr "Bitcoiny można odbierać z dowolnego portfela lub usługi."
|
||||
|
||||
#: www/views/tab-send.html:72
|
||||
msgid "To get started, you'll need to create a bitcoin wallet and get some bitcoin."
|
||||
msgstr "Aby rozpocząć należy utworzyć portfel i dostać trochę bitcoinów."
|
||||
|
||||
#: www/views/tab-send.html:74
|
||||
msgid "Buy Bitcoin now"
|
||||
msgstr "Kup Bitcoin teraz"
|
||||
|
||||
#: www/views/tab-send.html:76
|
||||
msgid "Show my address"
|
||||
msgstr "Pokaż mój adres"
|
||||
|
||||
#: www/views/includes/itemSelector.html:8
|
||||
msgid "Send max amount"
|
||||
msgstr "Wyślij całą kwotę"
|
||||
|
|
@ -2764,7 +2838,7 @@ msgstr "Przesuń, aby wysłać"
|
|||
|
||||
#: www/views/cashScan.html:56
|
||||
msgid "Some of your wallets are not eligible for Bitcoin Cash support. You can try to access BCH funds from these wallets using the"
|
||||
msgstr ""
|
||||
msgstr "Niektóre z twoich portfeli nie kwalifikują się do wsparcia Bitcoin Cash. Dostęp do środków BCH z tych portfeli można spróbować uzyskać, korzystając z"
|
||||
|
||||
#: src/js/controllers/create.js:88
|
||||
#: src/js/controllers/join.js:71
|
||||
|
|
@ -2785,7 +2859,7 @@ msgstr "Wymagane hasło wypłat"
|
|||
|
||||
#: www/views/walletDetails.html:173
|
||||
msgid "Spending this balance will need significant Bitcoin network fees"
|
||||
msgstr ""
|
||||
msgstr "Wydanie tego salda będzie wymagało znacznych opłat sieciowych Bitcoin"
|
||||
|
||||
#: www/views/tab-send.html:28
|
||||
msgid "Start sending bitcoin"
|
||||
|
|
@ -2810,7 +2884,7 @@ msgstr "Super Ekonomiczna"
|
|||
|
||||
#: www/views/preferencesCash.html:11
|
||||
msgid "Support Bitcoin Cash"
|
||||
msgstr ""
|
||||
msgstr "Wsparcie Bitcoin Cash"
|
||||
|
||||
#: www/views/paperWallet.html:7
|
||||
msgid "Sweep"
|
||||
|
|
@ -2860,7 +2934,7 @@ msgstr "Warunki użytkowania"
|
|||
#: www/views/tab-create-personal.html:118
|
||||
#: www/views/tab-import-phrase.html:68
|
||||
msgid "Testnet"
|
||||
msgstr ""
|
||||
msgstr "Testnet"
|
||||
|
||||
#: www/views/includes/incomingDataMenu.html:61
|
||||
msgid "Text"
|
||||
|
|
@ -2999,7 +3073,7 @@ msgstr "Ta kluczowa fraza został utworzona przy użyciu hasła. Aby odzyskać p
|
|||
|
||||
#: www/views/tx-details.html:91
|
||||
msgid "This transaction amount is too small compared to current Bitcoin network fees. Spending these funds will need a Bitcoin network fee cost comparable to the funds itself."
|
||||
msgstr ""
|
||||
msgstr "Ta kwota transakcji jest zbyt mała w porównaniu z obecnymi opłatami sieci Bitcoin. Wydanie tych środków będzie wymagało opłaty sieciowej Bitcoin, która jest porównywalna do kosztów samych funduszy."
|
||||
|
||||
#: www/views/tx-details.html:87
|
||||
msgid "This transaction could take a long time to confirm or could be dropped due to the low fees set by the sender"
|
||||
|
|
@ -3034,15 +3108,15 @@ msgstr "Aby rozpocząć należy utworzyć portfel i dostać trochę bitcoinów."
|
|||
|
||||
#: src/js/services/bitpayAccountService.js:73
|
||||
msgid "To {{reason}} you must first add your BitPay account - {{email}}"
|
||||
msgstr ""
|
||||
msgstr "Aby móc wykonać czynność {{reason}}, musisz przedtem dodać swoje konto BitPay – {{email}}"
|
||||
|
||||
#: src/js/services/onGoingProcess.js:48
|
||||
msgid "Top up in progress..."
|
||||
msgstr ""
|
||||
msgstr "Doładowanie w trakcie..."
|
||||
|
||||
#: src/js/controllers/topup.js:206
|
||||
msgid "Top up {{amountStr}} to debit card ({{cardLastNumber}})"
|
||||
msgstr ""
|
||||
msgstr "Doładuj o {{amountStr}} kartę debetową ({{cardLastNumber}})"
|
||||
|
||||
#: www/views/buyAmazon.html:61
|
||||
#: www/views/buyMercadoLibre.html:60
|
||||
|
|
@ -3061,7 +3135,7 @@ msgstr "Liczba współwłaścicieli portfela"
|
|||
|
||||
#: www/views/addresses.html:81
|
||||
msgid "Total wallet inputs"
|
||||
msgstr ""
|
||||
msgstr "Dane wejściowe portfela łącznie"
|
||||
|
||||
#: src/js/services/fingerprintService.js:63
|
||||
#: src/js/services/fingerprintService.js:68
|
||||
|
|
@ -3200,7 +3274,7 @@ msgstr "Zobacz zasady użytkowania"
|
|||
#: src/js/controllers/bitpayCard.js:122
|
||||
#: src/js/controllers/tx-details.js:191
|
||||
msgid "View Transaction on Explorer.Bitcoin.com"
|
||||
msgstr ""
|
||||
msgstr "Zobacz transakcję na Explorer.Bitcoin.com"
|
||||
|
||||
#: src/js/controllers/tab-home.js:148
|
||||
msgid "View Update"
|
||||
|
|
@ -3212,7 +3286,7 @@ msgstr "Zobacz na blockchainie"
|
|||
|
||||
#: www/views/mercadoLibre.html:26
|
||||
msgid "Visit mercadolivre.com.br →"
|
||||
msgstr ""
|
||||
msgstr "Odwiedź mercadolivre.com.br →"
|
||||
|
||||
#: www/views/walletDetails.html:182
|
||||
msgid "WARNING: Key derivation is not working on this device/wallet. Actions cannot be performed on this wallet."
|
||||
|
|
@ -3274,7 +3348,7 @@ msgstr "Informacje o portfelu"
|
|||
|
||||
#: www/views/addresses.html:76
|
||||
msgid "Wallet Inputs"
|
||||
msgstr ""
|
||||
msgstr "Dane wejściowe portfela"
|
||||
|
||||
#: www/views/join.html:26
|
||||
msgid "Wallet Invitation"
|
||||
|
|
@ -3328,7 +3402,7 @@ msgstr "Portfel już istnieje"
|
|||
|
||||
#: src/js/services/profileService.js:516
|
||||
msgid "Wallet already in {{appName}}"
|
||||
msgstr ""
|
||||
msgstr "Portfel już w aplikacji {{appName}}"
|
||||
|
||||
#: www/views/includes/walletActivity.html:6
|
||||
msgid "Wallet created"
|
||||
|
|
@ -3508,7 +3582,7 @@ msgstr "Nie należy ustawiać opłatę wyższą niż {{maxFeeRecommended}} satos
|
|||
|
||||
#: www/views/modals/bitpay-card-confirmation.html:5
|
||||
msgid "You will need to log back for fill in your BitPay Card."
|
||||
msgstr ""
|
||||
msgstr "Musisz zalogować się ponownie, aby wypełnić swoją kartę BitPay."
|
||||
|
||||
#: www/views/preferencesNotifications.html:34
|
||||
msgid "You'll receive email notifications about payments sent and received from your wallets."
|
||||
|
|
@ -3580,7 +3654,7 @@ msgstr "[Balans ukryty]"
|
|||
#: www/views/walletDetails.html:141
|
||||
#: www/views/walletDetails.html:61
|
||||
msgid "[Scanning Funds]"
|
||||
msgstr ""
|
||||
msgstr "[Skanowanie środków]"
|
||||
|
||||
#: src/js/controllers/bitpayCardIntro.js:11
|
||||
msgid "add your BitPay Visa card(s)"
|
||||
|
|
@ -3612,7 +3686,7 @@ msgstr "{{amountStr}} dla karty upominkowej Amazon.com"
|
|||
|
||||
#: src/js/controllers/buyMercadoLibre.js:237
|
||||
msgid "{{amountStr}} for Mercado Livre Brazil Gift Card"
|
||||
msgstr ""
|
||||
msgstr "{{amountStr}} na karcie podarunkowej Mercado Livre Brazil"
|
||||
|
||||
#: www/views/preferencesBwsUrl.html:21
|
||||
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)."
|
||||
|
|
@ -3624,7 +3698,7 @@ msgstr "{{fee}} zostanie potrącone jako prowizja sieci bitcoin."
|
|||
|
||||
#: www/views/confirm.html:85
|
||||
msgid "{{tx.txp[wallet.id].feeRatePerStr}} of the sending amount"
|
||||
msgstr ""
|
||||
msgstr "{{tx.txp[wallet.id].feeRatePerStr}} wysyłanej kwoty"
|
||||
|
||||
#: www/views/walletDetails.html:218
|
||||
msgid "{{updatingTxHistoryProgress}} transactions downloaded"
|
||||
|
|
@ -3636,3 +3710,51 @@ msgstr "{{updatingTxHistoryProgress}} transakcje pobrane"
|
|||
msgid "{{wallet.m}}-of-{{wallet.n}}"
|
||||
msgstr "{{wallet.m}}-z-{{wallet.n}}"
|
||||
|
||||
#: src/js/services/shapeshiftService.js:8
|
||||
msgid "Shapeshift"
|
||||
msgstr "Shapeshift"
|
||||
|
||||
#: www/views/includes/community.html:3
|
||||
msgid "Community"
|
||||
msgstr "Społeczność"
|
||||
|
||||
#: src/js/services/communityService.js:40
|
||||
msgid "Bitcoin Cash Reddit"
|
||||
msgstr "Reddit Bitcoin Cash"
|
||||
|
||||
#: src/js/services/communityService.js:47
|
||||
msgid "Bitcoin.com Twitter"
|
||||
msgstr "Twitter Bitcoin.com"
|
||||
|
||||
#: www/views/includes/nextSteps.html:3
|
||||
msgid "Explore Bitcoin.com"
|
||||
msgstr "Poznaj Bitcoin.com"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:21
|
||||
msgid "Bitcoin Cash Games"
|
||||
msgstr "Gry Bitcoin Cash"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:28
|
||||
msgid "News"
|
||||
msgstr "Aktualności"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:35
|
||||
msgid "Mining Pool"
|
||||
msgstr "Pula kopalni"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:42
|
||||
msgid "Tools"
|
||||
msgstr "Narzędzia"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:49
|
||||
msgid "Bitcoin Price Charts"
|
||||
msgstr "Wykresy kursu Bitcoin"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:56
|
||||
msgid "Free Bitcoin Cash"
|
||||
msgstr "Darmowa Bitcoin Cash"
|
||||
|
||||
#: www/views/tab-home.html:30
|
||||
msgid "Your Bitcoin Wallets are ready!"
|
||||
msgstr "Twoje portfele Bitcoin są gotowe!"
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ msgstr ""
|
|||
"Last-Translator: emilold\n"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
"Language: pt\n"
|
||||
"PO-Revision-Date: 2018-07-04 09:27\n"
|
||||
"PO-Revision-Date: 2018-07-27 08:44\n"
|
||||
|
||||
#: www/views/modals/paypro.html:34
|
||||
msgid "(Trusted)"
|
||||
|
|
@ -437,6 +437,7 @@ msgid "Buy & Sell Bitcoin"
|
|||
msgstr "Comprar & Vender Bitcoin"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
#: src/js/services/buyAndSellService.js:26
|
||||
msgid "Buy Bitcoin"
|
||||
msgstr "Comprar Bitcoin"
|
||||
|
||||
|
|
@ -619,10 +620,14 @@ msgstr "A conectar ao Glidera..."
|
|||
msgid "Connection reset by peer"
|
||||
msgstr "Ligação redefinida pelo mesmo nível"
|
||||
|
||||
#: www/views/tab-send.html:45
|
||||
#: www/views/tab-send.html:85
|
||||
msgid "Contacts"
|
||||
msgstr "Contactos"
|
||||
|
||||
#: www/views/tab-send.html:86
|
||||
msgid "Saved frequently used addresses"
|
||||
msgstr "Salvou os endereços usados com frequência"
|
||||
|
||||
#: www/views/onboarding/notifications.html:9
|
||||
msgid "Continue"
|
||||
msgstr "Continuar"
|
||||
|
|
@ -823,7 +828,7 @@ msgstr "Criar carteira partilhada"
|
|||
|
||||
#: www/views/onboarding/tour.html:51
|
||||
#: www/views/tab-home.html:75
|
||||
#: www/views/tab-send.html:36
|
||||
#: www/views/tab-send.html:75
|
||||
msgid "Create bitcoin wallet"
|
||||
msgstr "Criar carteira bitcoin"
|
||||
|
||||
|
|
@ -2533,6 +2538,14 @@ msgstr "Procurar transações"
|
|||
msgid "Search or enter bitcoin address"
|
||||
msgstr "Procure ou digite o endereço bitcoin"
|
||||
|
||||
#: src/js/controllers/tab-send.js:28
|
||||
msgid "Clipboard"
|
||||
msgstr "Área de transferência"
|
||||
|
||||
#: src/js/controllers/tab-send.js:29
|
||||
msgid "Your Clipboard is empty"
|
||||
msgstr "A sua área de transferência está vazia"
|
||||
|
||||
#: www/views/modals/search.html:16
|
||||
msgid "Search transactions"
|
||||
msgstr "Procurar transações"
|
||||
|
|
@ -2591,9 +2604,70 @@ msgid "Send by email"
|
|||
msgstr "Enviar por E-mail"
|
||||
|
||||
#: src/js/controllers/confirm.js:177
|
||||
#: src/js/controllers/tab-send.js:94
|
||||
msgid "Send from"
|
||||
msgstr "Enviar De"
|
||||
|
||||
#: src/js/controllers/tab-send.js:77
|
||||
msgid "Send to"
|
||||
msgstr "Enviar para"
|
||||
|
||||
#: www/views/tab-send.html:20
|
||||
msgid "Paste Clipboard"
|
||||
msgstr "Colar na área de trabalho"
|
||||
|
||||
#: www/views/tab-send.html:21
|
||||
msgid "Paste Address"
|
||||
msgstr "Colar endereço"
|
||||
|
||||
#: www/views/tab-send.html:27
|
||||
msgid "Wallet to Wallet Transfer"
|
||||
msgstr "Transferência de carteira para carteira"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
msgid "Scan QR Code"
|
||||
msgstr "Digitalizar o código QR"
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr "Envie Bitcoin mais rápido!"
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr "Envie Bitcoin mais rápido!"
|
||||
|
||||
#: www/views/tab-send.html:50
|
||||
msgid "Save frequently used addresses and send them Bitcoin in just one tap"
|
||||
msgstr "Salvar endereços usados com frequência e enviar Bitcoin com apenas um toque"
|
||||
|
||||
#: www/views/tab-send.html:55
|
||||
msgid "Add your first contact"
|
||||
msgstr "Adicionar o seu primeiro contato"
|
||||
|
||||
#: www/views/tab-send.html:65
|
||||
msgid "Your Bitcoin wallet is empty"
|
||||
msgstr "Sua carteira de Bitcoin está vazia"
|
||||
|
||||
#: www/views/tab-send.html:69
|
||||
msgid "To get started, buy Bitcoin Cash (BCH) or Bitcoin Core (BTC), or share your address."
|
||||
msgstr "Para começar, compre Bitcoin Cash (BCH) ou Bitcoin Core (BTC) ou compartilhe o seu endereço."
|
||||
|
||||
#: www/views/tab-send.html:70
|
||||
msgid "You can receive bitcoin from any wallet or service."
|
||||
msgstr "Você pode receber bitcoin de qualquer carteira ou serviço."
|
||||
|
||||
#: www/views/tab-send.html:72
|
||||
msgid "To get started, you'll need to create a bitcoin wallet and get some bitcoin."
|
||||
msgstr "Para começar, você precisa criar uma carteira de bitcoins e obter alguns bitcoins."
|
||||
|
||||
#: www/views/tab-send.html:74
|
||||
msgid "Buy Bitcoin now"
|
||||
msgstr "Compre Bitcoin agora"
|
||||
|
||||
#: www/views/tab-send.html:76
|
||||
msgid "Show my address"
|
||||
msgstr "Mostrar meu endereço"
|
||||
|
||||
#: www/views/includes/itemSelector.html:8
|
||||
msgid "Send max amount"
|
||||
msgstr "Quantidade Máxima de envio"
|
||||
|
|
@ -3030,7 +3104,7 @@ msgstr "Para começar, compre bitcoins ou compartilhe seu endereço. Você pode
|
|||
|
||||
#: www/views/tab-send.html:33
|
||||
msgid "To get started, you'll need to create a bitcoin wallet and get some bitcoin."
|
||||
msgstr "Para começar, você precisa criar uma carteira de bitcoins e obter alguns bitcoins."
|
||||
msgstr "Para começar, você precisará criar uma carteira e obter algum bitcoin."
|
||||
|
||||
#: src/js/services/bitpayAccountService.js:73
|
||||
msgid "To {{reason}} you must first add your BitPay account - {{email}}"
|
||||
|
|
@ -3636,3 +3710,51 @@ msgstr "Transações de {{updatingTxHistoryProgress}} transferidas"
|
|||
msgid "{{wallet.m}}-of-{{wallet.n}}"
|
||||
msgstr "{{wallet.m}}-de-{{wallet.n}}"
|
||||
|
||||
#: src/js/services/shapeshiftService.js:8
|
||||
msgid "Shapeshift"
|
||||
msgstr "Shapeshift"
|
||||
|
||||
#: www/views/includes/community.html:3
|
||||
msgid "Community"
|
||||
msgstr "Comunidade"
|
||||
|
||||
#: src/js/services/communityService.js:40
|
||||
msgid "Bitcoin Cash Reddit"
|
||||
msgstr "Bitcoin Cash Reddit"
|
||||
|
||||
#: src/js/services/communityService.js:47
|
||||
msgid "Bitcoin.com Twitter"
|
||||
msgstr "Twitter Bitcoin.com"
|
||||
|
||||
#: www/views/includes/nextSteps.html:3
|
||||
msgid "Explore Bitcoin.com"
|
||||
msgstr "Explore Bitcoin.com"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:21
|
||||
msgid "Bitcoin Cash Games"
|
||||
msgstr "Jogos Bitcoin Cash"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:28
|
||||
msgid "News"
|
||||
msgstr "Notícias"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:35
|
||||
msgid "Mining Pool"
|
||||
msgstr "Pool de mineração"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:42
|
||||
msgid "Tools"
|
||||
msgstr "Ferramentas"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:49
|
||||
msgid "Bitcoin Price Charts"
|
||||
msgstr "Gráficos de preço do Bitcoin"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:56
|
||||
msgid "Free Bitcoin Cash"
|
||||
msgstr "Bitcoin Cash grátis"
|
||||
|
||||
#: www/views/tab-home.html:30
|
||||
msgid "Your Bitcoin Wallets are ready!"
|
||||
msgstr "As suas carteiras de Bitcoin estão prontas!"
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ msgstr ""
|
|||
"Last-Translator: emilold\n"
|
||||
"Language-Team: Russian\n"
|
||||
"Language: ru\n"
|
||||
"PO-Revision-Date: 2018-07-04 09:27\n"
|
||||
"PO-Revision-Date: 2018-07-27 08:44\n"
|
||||
|
||||
#: www/views/modals/paypro.html:34
|
||||
msgid "(Trusted)"
|
||||
|
|
@ -79,7 +79,7 @@ msgstr "Номер учётной записи"
|
|||
|
||||
#: www/views/tab-home.html:61
|
||||
msgid "Instant transactions with low fees"
|
||||
msgstr "Мгновенные транзакции с низкой оплатой"
|
||||
msgstr "Мгновенные транзакции с низкой комиссией"
|
||||
|
||||
#: www/views/preferencesBitpayServices.html:23
|
||||
msgid "Accounts"
|
||||
|
|
@ -437,6 +437,7 @@ msgid "Buy & Sell Bitcoin"
|
|||
msgstr "Купить & продать биткойн"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
#: src/js/services/buyAndSellService.js:26
|
||||
msgid "Buy Bitcoin"
|
||||
msgstr "Купить биткойн"
|
||||
|
||||
|
|
@ -619,10 +620,14 @@ msgstr "Подключение к Glidera..."
|
|||
msgid "Connection reset by peer"
|
||||
msgstr "Соединение сброшено другой стороной"
|
||||
|
||||
#: www/views/tab-send.html:45
|
||||
#: www/views/tab-send.html:85
|
||||
msgid "Contacts"
|
||||
msgstr "Контакты"
|
||||
|
||||
#: www/views/tab-send.html:86
|
||||
msgid "Saved frequently used addresses"
|
||||
msgstr "Сохраненные часто используемые адреса"
|
||||
|
||||
#: www/views/onboarding/notifications.html:9
|
||||
msgid "Continue"
|
||||
msgstr "Продолжить"
|
||||
|
|
@ -823,7 +828,7 @@ msgstr "Создать общий кошелёк"
|
|||
|
||||
#: www/views/onboarding/tour.html:51
|
||||
#: www/views/tab-home.html:75
|
||||
#: www/views/tab-send.html:36
|
||||
#: www/views/tab-send.html:75
|
||||
msgid "Create bitcoin wallet"
|
||||
msgstr "Создать биткойн-кошелёк"
|
||||
|
||||
|
|
@ -2533,6 +2538,14 @@ msgstr "Поиск транзакций"
|
|||
msgid "Search or enter bitcoin address"
|
||||
msgstr "Найти или ввести биткойн-адрес"
|
||||
|
||||
#: src/js/controllers/tab-send.js:28
|
||||
msgid "Clipboard"
|
||||
msgstr "Буфер обмена"
|
||||
|
||||
#: src/js/controllers/tab-send.js:29
|
||||
msgid "Your Clipboard is empty"
|
||||
msgstr "Буфер обмена пуст"
|
||||
|
||||
#: www/views/modals/search.html:16
|
||||
msgid "Search transactions"
|
||||
msgstr "Поиск транзакций"
|
||||
|
|
@ -2591,9 +2604,70 @@ msgid "Send by email"
|
|||
msgstr "Отправить на email"
|
||||
|
||||
#: src/js/controllers/confirm.js:177
|
||||
#: src/js/controllers/tab-send.js:94
|
||||
msgid "Send from"
|
||||
msgstr "Отправить от"
|
||||
|
||||
#: src/js/controllers/tab-send.js:77
|
||||
msgid "Send to"
|
||||
msgstr "Получатель"
|
||||
|
||||
#: www/views/tab-send.html:20
|
||||
msgid "Paste Clipboard"
|
||||
msgstr "Вставить из буфера обмена"
|
||||
|
||||
#: www/views/tab-send.html:21
|
||||
msgid "Paste Address"
|
||||
msgstr "Вставить адрес"
|
||||
|
||||
#: www/views/tab-send.html:27
|
||||
msgid "Wallet to Wallet Transfer"
|
||||
msgstr "Перевод с кошелька на кошелек"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
msgid "Scan QR Code"
|
||||
msgstr "Сканировать QR код"
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr "Отправляйте биткойны еще быстрее!"
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr "Отправляйте биткойны еще быстрее!"
|
||||
|
||||
#: www/views/tab-send.html:50
|
||||
msgid "Save frequently used addresses and send them Bitcoin in just one tap"
|
||||
msgstr "Сохраняйте часто используемые адреса кошельков и отправляйте на них биткойны одним нажатием"
|
||||
|
||||
#: www/views/tab-send.html:55
|
||||
msgid "Add your first contact"
|
||||
msgstr "Добавить первый контакт"
|
||||
|
||||
#: www/views/tab-send.html:65
|
||||
msgid "Your Bitcoin wallet is empty"
|
||||
msgstr "Ваш кошелёк пуст"
|
||||
|
||||
#: www/views/tab-send.html:69
|
||||
msgid "To get started, buy Bitcoin Cash (BCH) or Bitcoin Core (BTC), or share your address."
|
||||
msgstr "Чтобы начать работу, купите Bitcoin Cash (BCH) или Bitcoin Core (BTC), или поделитесь вашим адресом."
|
||||
|
||||
#: www/views/tab-send.html:70
|
||||
msgid "You can receive bitcoin from any wallet or service."
|
||||
msgstr "Вы можете получать биткойны с любого кошелька или сервиса."
|
||||
|
||||
#: www/views/tab-send.html:72
|
||||
msgid "To get started, you'll need to create a bitcoin wallet and get some bitcoin."
|
||||
msgstr "Чтобы начать работу, вам нужно создать кошелёк и получить биткойн."
|
||||
|
||||
#: www/views/tab-send.html:74
|
||||
msgid "Buy Bitcoin now"
|
||||
msgstr "Купить биткойны сейчас"
|
||||
|
||||
#: www/views/tab-send.html:76
|
||||
msgid "Show my address"
|
||||
msgstr "Показать мой адрес"
|
||||
|
||||
#: www/views/includes/itemSelector.html:8
|
||||
msgid "Send max amount"
|
||||
msgstr "Отправить макс. сумму"
|
||||
|
|
@ -3636,3 +3710,51 @@ msgstr "{{updatingTxHistoryProgress}} транзакций загружено"
|
|||
msgid "{{wallet.m}}-of-{{wallet.n}}"
|
||||
msgstr "{{wallet.m}}-из-{{wallet.n}}"
|
||||
|
||||
#: src/js/services/shapeshiftService.js:8
|
||||
msgid "Shapeshift"
|
||||
msgstr "Shapeshift"
|
||||
|
||||
#: www/views/includes/community.html:3
|
||||
msgid "Community"
|
||||
msgstr "Сообщество"
|
||||
|
||||
#: src/js/services/communityService.js:40
|
||||
msgid "Bitcoin Cash Reddit"
|
||||
msgstr "Bitcoin Cash Reddit"
|
||||
|
||||
#: src/js/services/communityService.js:47
|
||||
msgid "Bitcoin.com Twitter"
|
||||
msgstr "Bitcoin.com Twitter"
|
||||
|
||||
#: www/views/includes/nextSteps.html:3
|
||||
msgid "Explore Bitcoin.com"
|
||||
msgstr "Обзор Bitcoin.com"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:21
|
||||
msgid "Bitcoin Cash Games"
|
||||
msgstr "Игры Bitcoin Cash"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:28
|
||||
msgid "News"
|
||||
msgstr "Новости"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:35
|
||||
msgid "Mining Pool"
|
||||
msgstr "Пул для майнинга"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:42
|
||||
msgid "Tools"
|
||||
msgstr "Инструменты"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:49
|
||||
msgid "Bitcoin Price Charts"
|
||||
msgstr "Динамика курса биткойна"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:56
|
||||
msgid "Free Bitcoin Cash"
|
||||
msgstr "Bitcoin Cash бесплатно"
|
||||
|
||||
#: www/views/tab-home.html:30
|
||||
msgid "Your Bitcoin Wallets are ready!"
|
||||
msgstr "Ваши кошельки готовы!"
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ msgstr ""
|
|||
"Last-Translator: emilold\n"
|
||||
"Language-Team: Swedish\n"
|
||||
"Language: sv\n"
|
||||
"PO-Revision-Date: 2018-07-04 03:58\n"
|
||||
"PO-Revision-Date: 2018-07-27 08:44\n"
|
||||
|
||||
#: www/views/modals/paypro.html:34
|
||||
msgid "(Trusted)"
|
||||
|
|
@ -437,6 +437,7 @@ msgid "Buy & Sell Bitcoin"
|
|||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
#: src/js/services/buyAndSellService.js:26
|
||||
msgid "Buy Bitcoin"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -619,10 +620,14 @@ msgstr ""
|
|||
msgid "Connection reset by peer"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:45
|
||||
#: www/views/tab-send.html:85
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:86
|
||||
msgid "Saved frequently used addresses"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/onboarding/notifications.html:9
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
|
@ -823,7 +828,7 @@ msgstr ""
|
|||
|
||||
#: www/views/onboarding/tour.html:51
|
||||
#: www/views/tab-home.html:75
|
||||
#: www/views/tab-send.html:36
|
||||
#: www/views/tab-send.html:75
|
||||
msgid "Create bitcoin wallet"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2533,6 +2538,14 @@ msgstr ""
|
|||
msgid "Search or enter bitcoin address"
|
||||
msgstr ""
|
||||
|
||||
#: src/js/controllers/tab-send.js:28
|
||||
msgid "Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: src/js/controllers/tab-send.js:29
|
||||
msgid "Your Clipboard is empty"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/modals/search.html:16
|
||||
msgid "Search transactions"
|
||||
msgstr ""
|
||||
|
|
@ -2591,9 +2604,70 @@ msgid "Send by email"
|
|||
msgstr ""
|
||||
|
||||
#: src/js/controllers/confirm.js:177
|
||||
#: src/js/controllers/tab-send.js:94
|
||||
msgid "Send from"
|
||||
msgstr ""
|
||||
|
||||
#: src/js/controllers/tab-send.js:77
|
||||
msgid "Send to"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:20
|
||||
msgid "Paste Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:21
|
||||
msgid "Paste Address"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:27
|
||||
msgid "Wallet to Wallet Transfer"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
msgid "Scan QR Code"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:50
|
||||
msgid "Save frequently used addresses and send them Bitcoin in just one tap"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:55
|
||||
msgid "Add your first contact"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:65
|
||||
msgid "Your Bitcoin wallet is empty"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:69
|
||||
msgid "To get started, buy Bitcoin Cash (BCH) or Bitcoin Core (BTC), or share your address."
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:70
|
||||
msgid "You can receive bitcoin from any wallet or service."
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:72
|
||||
msgid "To get started, you'll need to create a bitcoin wallet and get some bitcoin."
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:74
|
||||
msgid "Buy Bitcoin now"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:76
|
||||
msgid "Show my address"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/includes/itemSelector.html:8
|
||||
msgid "Send max amount"
|
||||
msgstr ""
|
||||
|
|
@ -3636,3 +3710,51 @@ msgstr ""
|
|||
msgid "{{wallet.m}}-of-{{wallet.n}}"
|
||||
msgstr ""
|
||||
|
||||
#: src/js/services/shapeshiftService.js:8
|
||||
msgid "Shapeshift"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/includes/community.html:3
|
||||
msgid "Community"
|
||||
msgstr ""
|
||||
|
||||
#: src/js/services/communityService.js:40
|
||||
msgid "Bitcoin Cash Reddit"
|
||||
msgstr ""
|
||||
|
||||
#: src/js/services/communityService.js:47
|
||||
msgid "Bitcoin.com Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/includes/nextSteps.html:3
|
||||
msgid "Explore Bitcoin.com"
|
||||
msgstr ""
|
||||
|
||||
#: src/js/services/bitcoincomService.js:21
|
||||
msgid "Bitcoin Cash Games"
|
||||
msgstr ""
|
||||
|
||||
#: src/js/services/bitcoincomService.js:28
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: src/js/services/bitcoincomService.js:35
|
||||
msgid "Mining Pool"
|
||||
msgstr ""
|
||||
|
||||
#: src/js/services/bitcoincomService.js:42
|
||||
msgid "Tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/js/services/bitcoincomService.js:49
|
||||
msgid "Bitcoin Price Charts"
|
||||
msgstr ""
|
||||
|
||||
#: src/js/services/bitcoincomService.js:56
|
||||
msgid "Free Bitcoin Cash"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-home.html:30
|
||||
msgid "Your Bitcoin Wallets are ready!"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -72,6 +72,26 @@ msgstr ""
|
|||
msgid "Instant transactions with low fees"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/walletSelector.html:49
|
||||
msgid "Insufficient funds"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/amount.html:42
|
||||
msgid "Change Currency"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/amount.html:49
|
||||
msgid "Available Funds"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/amount.html:59
|
||||
msgid "Use All Available Funds"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/amount.html:99
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/preferencesBitpayServices.html:23
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
|
@ -1287,6 +1307,7 @@ msgstr ""
|
|||
#: www/views/modals/txp-details.html:74
|
||||
#: www/views/topup.html:34
|
||||
#: www/views/tx-details.html:52
|
||||
#: www/views/review.html:22
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1347,10 +1368,6 @@ msgid "Get news and updates from BitPay"
|
|||
msgstr ""
|
||||
|
||||
#: www/views/onboarding/welcome.html:8
|
||||
msgctxt "button"
|
||||
msgid "Get started"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/bitpayCard.html:49
|
||||
msgid "Get started"
|
||||
msgstr ""
|
||||
|
|
@ -2642,10 +2659,6 @@ msgstr ""
|
|||
msgid "Send Bitcoin faster!"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:50
|
||||
msgid "Save frequently used addresses and send them Bitcoin in just one tap"
|
||||
msgstr ""
|
||||
|
|
@ -2668,6 +2681,7 @@ msgstr ""
|
|||
|
||||
#: www/views/tab-send.html:72
|
||||
#: www/views/shapeshift.html:23
|
||||
#: www/views/tab-send.html:33
|
||||
msgid "To get started, you'll need to create a bitcoin wallet and get some bitcoin."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3072,6 +3086,14 @@ msgstr ""
|
|||
msgid "This bitcoin payment request has expired."
|
||||
msgstr ""
|
||||
|
||||
#: www/views/review.html:55
|
||||
msgid "Payment expires:"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/review.html:56
|
||||
msgid "Payment request has expired"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/join.html:133
|
||||
#: www/views/tab-create-personal.html:103
|
||||
#: www/views/tab-create-shared.html:132
|
||||
|
|
@ -3113,10 +3135,6 @@ msgstr ""
|
|||
msgid "To get started, buy bitcoin or share your address. You can receive bitcoin from any wallet or service."
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:33
|
||||
msgid "To get started, you'll need to create a bitcoin wallet and get some bitcoin."
|
||||
msgstr ""
|
||||
|
||||
#: src/js/services/bitpayAccountService.js:73
|
||||
msgid "To {{reason}} you must first add your BitPay account - {{email}}"
|
||||
msgstr ""
|
||||
|
|
@ -3805,10 +3823,6 @@ msgstr ""
|
|||
msgid "You are shifting"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/review.html:22
|
||||
msgid "From:"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/review.html:36
|
||||
msgid "To:"
|
||||
msgstr ""
|
||||
|
|
@ -3817,6 +3831,13 @@ msgstr ""
|
|||
msgid "Add personal note"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/review.html:87
|
||||
msgid "Suggested by merchant:"
|
||||
msgstr ""
|
||||
|
||||
#: src/js/controllers/review.controller.js:37
|
||||
msgid "Enter text here"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/review.html:57
|
||||
msgid "Personal note:"
|
||||
|
|
|
|||
|
|
@ -11,11 +11,11 @@ msgstr ""
|
|||
"Last-Translator: emilold\n"
|
||||
"Language-Team: Vietnamese\n"
|
||||
"Language: vi\n"
|
||||
"PO-Revision-Date: 2018-07-04 03:58\n"
|
||||
"PO-Revision-Date: 2018-07-27 08:44\n"
|
||||
|
||||
#: www/views/modals/paypro.html:34
|
||||
msgid "(Trusted)"
|
||||
msgstr "(Đáng tin cậy)"
|
||||
msgstr "(Tin cậy)"
|
||||
|
||||
#: www/views/includes/txp.html:23
|
||||
#: www/views/includes/walletHistory.html:64
|
||||
|
|
@ -28,7 +28,7 @@ msgstr "* A payment proposal can be deleted if 1) you are the creator, and no ot
|
|||
|
||||
#: www/views/tx-details.html:82
|
||||
msgid "- {{btx.feeRateStr}} of the transaction"
|
||||
msgstr "{{btx.feeRateStr}} của giao dịch"
|
||||
msgstr "- {{btx.feeRateStr}} of the transaction"
|
||||
|
||||
#: www/views/modals/txp-details.html:102
|
||||
msgid "- {{tx.feeRateStr}} of the transaction"
|
||||
|
|
@ -41,7 +41,9 @@ msgstr "Xếp hạng 5 sao giúp chúng tôi để {{appName}} đến tay nhiề
|
|||
#: www/views/mercadoLibre.html:18
|
||||
#: www/views/mercadoLibre.html:40
|
||||
msgid "<b>Only</b> redeemable on Mercado Livre (Brazil)"
|
||||
msgstr "<b>Only</b> redeemable on Mercado Livre (Brazil)"
|
||||
msgstr "<b>Only</b> redeemable on \n"
|
||||
"Mercado Livre (Brazil) #\n\n"
|
||||
"2"
|
||||
|
||||
#: src/js/controllers/feedback/send.js:27
|
||||
#: www/views/feedback/complete.html:21
|
||||
|
|
@ -54,7 +56,8 @@ msgstr "A total of {{amountAboveMaxSizeStr}} were excluded. The maximum size all
|
|||
|
||||
#: src/js/controllers/confirm.js:395
|
||||
msgid "A total of {{amountBelowFeeStr}} were excluded. These funds come from UTXOs smaller than the network fee provided."
|
||||
msgstr "A total of {{amountBelowFeeStr}} were excluded. These funds come from UTXOs smaller than the network fee provided."
|
||||
msgstr "Tổng cộng {{amountBelowFeeStr}} đã bị loại trừ. Số tiền này đến từ UTXOs nhỏ hơn chi phí mạng cung cấp.#\n"
|
||||
"1"
|
||||
|
||||
#: src/js/controllers/preferencesAbout.js:6
|
||||
#: www/views/tab-settings.html:156
|
||||
|
|
@ -79,7 +82,7 @@ msgstr "Account Number"
|
|||
|
||||
#: www/views/tab-home.html:61
|
||||
msgid "Instant transactions with low fees"
|
||||
msgstr ""
|
||||
msgstr "2"
|
||||
|
||||
#: www/views/preferencesBitpayServices.html:23
|
||||
msgid "Accounts"
|
||||
|
|
@ -124,338 +127,339 @@ msgstr "Add account"
|
|||
#: www/views/tab-create-personal.html:62
|
||||
#: www/views/tab-create-shared.html:91
|
||||
msgid "Add an optional password to secure the recovery phrase"
|
||||
msgstr ""
|
||||
msgstr "Add a password option to allow a secure cluster"
|
||||
|
||||
#: www/views/includes/incomingDataMenu.html:41
|
||||
msgid "Add as a contact"
|
||||
msgstr ""
|
||||
msgstr "Thêm như một liên hệ"
|
||||
|
||||
#: src/js/controllers/confirm.js:424
|
||||
msgid "Add description"
|
||||
msgstr ""
|
||||
msgstr "Thêm mô tả"
|
||||
|
||||
#: www/views/topup.html:6
|
||||
msgid "Add funds"
|
||||
msgstr ""
|
||||
msgstr "Nạp tiền"
|
||||
|
||||
#: src/js/services/bitpayAccountService.js:78
|
||||
msgid "Add this BitPay account ({{email}})?"
|
||||
msgstr ""
|
||||
msgstr "Thêm BitPay ({{email}}) tài khoản này?"
|
||||
|
||||
#: www/views/add.html:3
|
||||
msgid "Add wallet"
|
||||
msgstr ""
|
||||
msgstr "Thêm ví"
|
||||
|
||||
#: www/views/addressbook.view.html:26
|
||||
#: www/views/customAmount.html:28
|
||||
#: www/views/modals/paypro.html:24
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
msgstr "Địa chỉ"
|
||||
|
||||
#: www/views/addressbook.html:6
|
||||
#: www/views/tab-settings.html:13
|
||||
msgid "Address Book"
|
||||
msgstr ""
|
||||
msgstr "Sổ địa chỉ"
|
||||
|
||||
#: www/views/preferencesInformation.html:41
|
||||
msgid "Address Type"
|
||||
msgstr ""
|
||||
msgstr "Loại địa chỉ"
|
||||
|
||||
#: www/views/addresses.html:64
|
||||
msgid "Addresses With Balance"
|
||||
msgstr ""
|
||||
msgstr "Địa chỉ với số dư"
|
||||
|
||||
#: www/views/tab-settings.html:149
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
msgstr "Nâng cao"
|
||||
|
||||
#: www/views/advancedSettings.html:3
|
||||
msgid "Advanced Settings"
|
||||
msgstr ""
|
||||
msgstr "Cài đặt nâng cao"
|
||||
|
||||
#: www/views/bitpayCard.html:62
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
msgstr "Tất cả"
|
||||
|
||||
#: www/views/allAddresses.html:3
|
||||
msgid "All Addresses"
|
||||
msgstr ""
|
||||
msgstr "Tất cả địa chỉ"
|
||||
|
||||
#: www/views/modals/wallet-balance.html:18
|
||||
msgid "All of your bitcoin wallet balance may not be available for immediate spending."
|
||||
msgstr ""
|
||||
msgstr "Tất cả số dư ví bitcoin của bạn có thể không có sẵn cho chi tiêu ngay lập tức."
|
||||
|
||||
#: www/views/tab-receive.html:25
|
||||
msgid "All signing devices must be added to this multisig wallet before bitcoin addresses can be created."
|
||||
msgstr ""
|
||||
msgstr "All contract device will be added to this multisig before the bitcoin address has been created."
|
||||
|
||||
#: www/views/tab-scan.html:21
|
||||
msgid "Allow Camera Access"
|
||||
msgstr ""
|
||||
msgstr "Allow camera access"
|
||||
|
||||
#: www/views/onboarding/notifications.html:7
|
||||
msgid "Allow notifications"
|
||||
msgstr ""
|
||||
msgstr "Allow notification"
|
||||
|
||||
#: www/views/onboarding/disclaimer.html:14
|
||||
msgid "Almost done! Let's review."
|
||||
msgstr ""
|
||||
msgstr "Most as completed! We see review."
|
||||
|
||||
#: www/views/preferencesAltCurrency.html:4
|
||||
#: www/views/tab-settings.html:79
|
||||
msgid "Alternative Currency"
|
||||
msgstr ""
|
||||
msgstr "Money Currency instead"
|
||||
|
||||
#: src/js/controllers/buyAmazon.js:98
|
||||
msgid "Amazon.com is not available at this moment. Please try back later."
|
||||
msgstr ""
|
||||
msgstr "Amazon.com is not available at this time. Please try again again."
|
||||
|
||||
#: www/views/amount.html:44
|
||||
#: www/views/customAmount.html:34
|
||||
#: www/views/includes/output.html:7
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
msgstr "Quantity"
|
||||
|
||||
#: src/js/services/bwcError.js:110
|
||||
msgid "Amount below minimum allowed"
|
||||
msgstr ""
|
||||
msgstr "Maximum amount of the minimum amount"
|
||||
|
||||
#: src/js/controllers/confirm.js:216
|
||||
msgid "Amount too big"
|
||||
msgstr ""
|
||||
msgstr "Amount too large"
|
||||
|
||||
#: www/views/includes/walletHistory.html:31
|
||||
msgid "Amount too low to spend"
|
||||
msgstr ""
|
||||
msgstr "Amount too low for standard"
|
||||
|
||||
#: src/js/controllers/tab-home.js:147
|
||||
msgid "An update to this app is available. For your security, please update to the latest version."
|
||||
msgstr ""
|
||||
msgstr "Hotel have a Update for this application. To preserve your password, please please update the latest version."
|
||||
|
||||
#: www/views/backupWarning.html:14
|
||||
msgid "Anyone with your backup phrase can access or spend your bitcoin."
|
||||
msgstr ""
|
||||
msgstr "Każdy, kto ma Twoją kluczową là một trong những điều tuyệt vời nhất."
|
||||
|
||||
#: www/views/addresses.html:94
|
||||
msgid "Approximate Bitcoin network fee to transfer wallet's balance (with normal priority)"
|
||||
msgstr ""
|
||||
msgstr "La taxa approssimativa della rete Bitcoin cho mỗi lần gửi tiền theo yêu cầu của bạn"
|
||||
|
||||
#: www/views/backupWarning.html:10
|
||||
msgid "Are you being watched?"
|
||||
msgstr ""
|
||||
msgstr "Chúng tôi vigilen?"
|
||||
|
||||
#: src/js/controllers/preferencesExternal.js:15
|
||||
msgid "Are you being watched? Anyone with your recovery phrase can access or spend your bitcoin."
|
||||
msgstr ""
|
||||
msgstr "You are tracking? Bất cứ ai có thể phục hồi từ bạn, bạn có thể truy cập hoặc bitcoin chi tiêu của bạn."
|
||||
|
||||
#: src/js/controllers/copayers.js:56
|
||||
msgid "Are you sure you want to cancel and delete this wallet?"
|
||||
msgstr ""
|
||||
msgstr "Are you sure you want to cancel and remove this video?"
|
||||
|
||||
#: src/js/controllers/addressbookView.js:37
|
||||
msgid "Are you sure you want to delete this contact?"
|
||||
msgstr ""
|
||||
msgstr "Bạn có chắc chắn muốn xóa địa chỉ liên hệ này không?"
|
||||
|
||||
#: src/js/controllers/preferencesDelete.js:25
|
||||
msgid "Are you sure you want to delete this wallet?"
|
||||
msgstr ""
|
||||
msgstr "Are you sure you want to delete this wallet?"
|
||||
|
||||
#: src/js/controllers/modals/txpDetails.js:154
|
||||
msgid "Are you sure you want to reject this transaction?"
|
||||
msgstr ""
|
||||
msgstr "Are you sure you want to reject this transaction?"
|
||||
|
||||
#: src/js/controllers/modals/txpDetails.js:171
|
||||
msgid "Are you sure you want to remove this transaction?"
|
||||
msgstr ""
|
||||
msgstr "Are you sure you want to remove this transaction?"
|
||||
|
||||
#: src/js/controllers/onboarding/backupRequest.js:23
|
||||
msgid "Are you sure you want to skip it?"
|
||||
msgstr ""
|
||||
msgstr "Are you sure you want to skip it?"
|
||||
|
||||
#: www/views/modals/bitpay-card-confirmation.html:4
|
||||
msgid "Are you sure you would like to log out of your BitPay Card account?"
|
||||
msgstr ""
|
||||
msgstr "Bạn có chắc chắn muốn đăng xuất khỏi tài khoản Thẻ BitPay của mình không?"
|
||||
|
||||
#: src/js/controllers/preferencesBitpayCard.js:7
|
||||
#: src/js/controllers/preferencesBitpayServices.js:20
|
||||
msgid "Are you sure you would like to remove your BitPay Card ({{lastFourDigits}}) from this device?"
|
||||
msgstr ""
|
||||
msgstr "Are you sure you would like to remove your BitPay Card ({{lastFourDigits}}) from this device?"
|
||||
|
||||
#: www/views/includes/walletInfo.html:10
|
||||
msgid "Auditable"
|
||||
msgstr ""
|
||||
msgstr "Auditable"
|
||||
|
||||
#: www/views/modals/wallet-balance.html:42
|
||||
msgid "Available"
|
||||
msgstr ""
|
||||
msgstr "Available"
|
||||
|
||||
#: www/views/includes/available-balance.html:3
|
||||
msgid "Available Balance"
|
||||
msgstr ""
|
||||
msgstr "Available Balance"
|
||||
|
||||
#: www/views/modals/chooseFeeLevel.html:24
|
||||
#: www/views/preferencesFee.html:15
|
||||
msgid "Average confirmation time"
|
||||
msgstr ""
|
||||
msgstr "Average confirmation time"
|
||||
|
||||
#: www/views/join.html:143
|
||||
#: www/views/tab-create-personal.html:113
|
||||
#: www/views/tab-create-shared.html:142
|
||||
#: www/views/tab-import-phrase.html:51
|
||||
msgid "BIP32 path for address derivation"
|
||||
msgstr ""
|
||||
msgstr "Đường dẫn BIP32 cho dẫn xuất địa chỉ"
|
||||
|
||||
#: www/views/cashScan.html:25
|
||||
msgid "BTC wallets"
|
||||
msgstr ""
|
||||
msgstr "Ví BTC"
|
||||
|
||||
#: www/views/preferences.html:34
|
||||
msgid "Backup"
|
||||
msgstr ""
|
||||
msgstr "Backup"
|
||||
|
||||
#: www/views/includes/backupNeededPopup.html:7
|
||||
msgid "Backup Needed"
|
||||
msgstr ""
|
||||
msgstr "Backup Needed"
|
||||
|
||||
#: src/js/controllers/lockSetup.js:87
|
||||
msgid "Backup all livenet wallets before using this function"
|
||||
msgstr ""
|
||||
msgstr "Backup all livenet wallets before using this function"
|
||||
|
||||
#: src/js/controllers/cashScan.js:64
|
||||
#: www/views/includes/walletListSettings.html:12
|
||||
#: www/views/preferences.html:36
|
||||
msgid "Backup needed"
|
||||
msgstr ""
|
||||
msgstr "Cần sao lưu"
|
||||
|
||||
#: www/views/includes/backupNeededPopup.html:9
|
||||
msgid "Backup now"
|
||||
msgstr ""
|
||||
msgstr "Sao lưu ngay"
|
||||
|
||||
#: www/views/onboarding/backupRequest.html:11
|
||||
#: www/views/tab-export-file.html:89
|
||||
msgid "Backup wallet"
|
||||
msgstr ""
|
||||
msgstr "Backup wallet"
|
||||
|
||||
#: src/js/controllers/lockSetup.js:84
|
||||
msgid "Backup your wallet before using this function"
|
||||
msgstr ""
|
||||
msgstr "Backup your wallet before using this function"
|
||||
|
||||
#: src/js/services/profileService.js:446
|
||||
msgid "Bad wallet invitation"
|
||||
msgstr ""
|
||||
msgstr "Bad wallet invitation"
|
||||
|
||||
#: www/views/preferencesInformation.html:102
|
||||
msgid "Balance By Address"
|
||||
msgstr ""
|
||||
msgstr "Balance By Address"
|
||||
|
||||
#: 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 ""
|
||||
msgstr "Hãy chắc chắn lưu trữ cụm từ khôi phục của bạn ở một nơi an toàn. Nếu ứng dụng này bị xóa, tiền của bạn không thể được phục hồi mà không có nó."
|
||||
|
||||
#: www/views/preferencesBitpayServices.html:9
|
||||
msgid "BitPay Visa® Cards"
|
||||
msgstr ""
|
||||
msgstr "BitPay Visa & reg; thẻ"
|
||||
|
||||
#: www/views/addressbook.add.html:38
|
||||
#: www/views/includes/incomingDataMenu.html:29
|
||||
msgid "Bitcoin Address"
|
||||
msgstr ""
|
||||
msgstr "Bitcoin Address"
|
||||
|
||||
#: www/views/cashScan.html:4
|
||||
msgid "Bitcoin Cash (BCH) Balances"
|
||||
msgstr ""
|
||||
msgstr "Bitcoin Cash (BCH) Balances"
|
||||
|
||||
#: www/views/preferencesCash.html:3
|
||||
#: www/views/tab-settings.html:47
|
||||
msgid "Bitcoin Cash Support"
|
||||
msgstr ""
|
||||
msgstr "Bitcoin Cash Support"
|
||||
|
||||
#: www/views/tab-home.html:98
|
||||
#: www/views/tab-settings.html:115
|
||||
msgid "Bitcoin Cash Wallets"
|
||||
msgstr ""
|
||||
msgstr "Bitcoin Cash Wallets"
|
||||
|
||||
#: www/views/modals/chooseFeeLevel.html:4
|
||||
#: www/views/preferencesFee.html:4
|
||||
#: www/views/tab-settings.html:90
|
||||
msgid "Bitcoin Network Fee Policy"
|
||||
msgstr ""
|
||||
msgstr "Bitcoin Network Fee Policy"
|
||||
|
||||
#: www/views/tab-home.html:83
|
||||
#: www/views/tab-settings.html:107
|
||||
msgid "Bitcoin Core Wallets"
|
||||
msgstr ""
|
||||
msgstr "Bitcoin Core Wallets"
|
||||
|
||||
#: src/js/services/incomingData.js:151
|
||||
msgid "Bitcoin cash Payment"
|
||||
msgstr ""
|
||||
msgstr "Bitcoin cash Payment"
|
||||
|
||||
#: www/views/onboarding/tour.html:31
|
||||
msgid "Bitcoin is a currency."
|
||||
msgstr ""
|
||||
msgstr "Bitcoin is a currency."
|
||||
|
||||
#: www/views/onboarding/disclaimer.html:15
|
||||
msgid "Bitcoin is different – it cannot be safely held with a bank or web service."
|
||||
msgstr ""
|
||||
msgstr "–."
|
||||
|
||||
#: www/views/onboarding/tour.html:18
|
||||
msgid "Bitcoin is secure,<br>digital money."
|
||||
msgstr ""
|
||||
msgstr "Bitcoin là an toàn, <br> tiền kỹ thuật số."
|
||||
|
||||
#: www/views/preferencesFee.html:11
|
||||
msgid "Bitcoin transactions include a fee collected by miners on the network."
|
||||
msgstr ""
|
||||
msgstr "Bitcoin transactions include a fee collected by miners on the network."
|
||||
|
||||
#: www/views/buyAmazon.html:108
|
||||
msgid "Bought {{amountUnitStr}}"
|
||||
msgstr ""
|
||||
msgstr "Bought {{amountUnitStr}}"
|
||||
|
||||
#: www/views/modals/txp-details.html:36
|
||||
msgid "Broadcast Payment"
|
||||
msgstr ""
|
||||
msgstr "Broadcast Payment"
|
||||
|
||||
#: src/js/controllers/modals/txpDetails.js:64
|
||||
#: src/js/controllers/tx-details.js:81
|
||||
msgid "Broadcasted"
|
||||
msgstr ""
|
||||
msgstr "Broadcasted"
|
||||
|
||||
#: src/js/services/onGoingProcess.js:11
|
||||
msgid "Broadcasting transaction"
|
||||
msgstr ""
|
||||
msgstr "Broadcasting transaction"
|
||||
|
||||
#: www/views/unsupported.html:6
|
||||
msgid "Browser unsupported"
|
||||
msgstr ""
|
||||
msgstr "Browser unsupported"
|
||||
|
||||
#: www/views/buyAmazon.html:5
|
||||
#: www/views/buyMercadoLibre.html:6
|
||||
msgid "Buy"
|
||||
msgstr ""
|
||||
msgstr "Buy"
|
||||
|
||||
#: www/views/includes/buyAndSellCard.html:3
|
||||
msgid "Buy & Sell Bitcoin"
|
||||
msgstr ""
|
||||
msgstr "Buy & Sell Bitcoin"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
#: src/js/services/buyAndSellService.js:26
|
||||
msgid "Buy Bitcoin"
|
||||
msgstr ""
|
||||
msgstr "Buy Bitcoin"
|
||||
|
||||
#: www/views/mercadoLibre.html:22
|
||||
#: www/views/mercadoLibre.html:50
|
||||
msgid "Buy a Gift Card"
|
||||
msgstr ""
|
||||
msgstr "Buy a Gift Card"
|
||||
|
||||
#: src/js/controllers/buyAmazon.js:334
|
||||
msgid "Buy from"
|
||||
msgstr ""
|
||||
msgstr "Buy from"
|
||||
|
||||
#: src/js/services/onGoingProcess.js:40
|
||||
msgid "Buying Bitcoin..."
|
||||
msgstr ""
|
||||
msgstr "Mua Bitcoin..."
|
||||
|
||||
#: src/js/services/onGoingProcess.js:12
|
||||
msgid "Calculating fee"
|
||||
msgstr ""
|
||||
msgstr "Phí tính toán"
|
||||
|
||||
#: src/js/controllers/buyAmazon.js:313
|
||||
#: src/js/controllers/buyMercadoLibre.js:307
|
||||
|
|
@ -474,65 +478,65 @@ msgstr ""
|
|||
#: www/views/modals/bitpay-card-confirmation.html:8
|
||||
#: www/views/modals/confirmation.html:13
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
msgstr "Hủy bỏ"
|
||||
|
||||
#: www/views/copayers.html:36
|
||||
msgid "Cancel invitation"
|
||||
msgstr ""
|
||||
msgstr "Hủy lời mời"
|
||||
|
||||
#: src/js/controllers/onboarding/tour.js:52
|
||||
msgid "Cannot Create Wallet"
|
||||
msgstr ""
|
||||
msgstr "Không thể tạo Wallet"
|
||||
|
||||
#: src/js/services/profileService.js:442
|
||||
msgid "Cannot join the same wallet more that once"
|
||||
msgstr ""
|
||||
msgstr "Cannot join the same wallet more that once"
|
||||
|
||||
#: www/views/includes/bitpayCardsCard.html:2
|
||||
msgid "Cards"
|
||||
msgstr ""
|
||||
msgstr "Cards"
|
||||
|
||||
#: www/views/modals/paypro.html:30
|
||||
msgid "Certified by"
|
||||
msgstr ""
|
||||
msgstr "Certified by"
|
||||
|
||||
#: www/views/preferencesExternal.html:19
|
||||
msgid "Check installation and retry."
|
||||
msgstr ""
|
||||
msgstr "Check installation and retry."
|
||||
|
||||
#: www/views/tab-import-file.html:4
|
||||
msgid "Choose a backup file from your computer"
|
||||
msgstr ""
|
||||
msgstr "Chọn tệp sao lưu từ máy tính của bạn"
|
||||
|
||||
#: www/views/modals/wallets.html:9
|
||||
msgid "Choose your destination wallet"
|
||||
msgstr ""
|
||||
msgstr "Choose your destination wallet"
|
||||
|
||||
#: www/views/modals/wallets.html:10
|
||||
msgid "Choose your source wallet"
|
||||
msgstr ""
|
||||
msgstr "Chọn ví nguồn của bạn"
|
||||
|
||||
#: www/views/backup.html:61
|
||||
msgid "Clear"
|
||||
msgstr ""
|
||||
msgstr "Clear"
|
||||
|
||||
#: www/views/preferencesHistory.html:24
|
||||
msgid "Clear cache"
|
||||
msgstr ""
|
||||
msgstr "Clear cache"
|
||||
|
||||
#: src/js/controllers/confirm.js:373
|
||||
#: src/js/controllers/modals/txpDetails.js:49
|
||||
msgid "Click to accept"
|
||||
msgstr ""
|
||||
msgstr "Click to accept"
|
||||
|
||||
#: src/js/controllers/confirm.js:367
|
||||
msgid "Click to pay"
|
||||
msgstr ""
|
||||
msgstr "Click to pay"
|
||||
|
||||
#: src/js/controllers/confirm.js:379
|
||||
#: src/js/controllers/modals/txpDetails.js:42
|
||||
msgid "Click to send"
|
||||
msgstr ""
|
||||
msgstr "Click to send"
|
||||
|
||||
#: www/views/customAmount.html:4
|
||||
#: www/views/modals/mercadolibre-card-details.html:3
|
||||
|
|
@ -542,28 +546,28 @@ msgstr ""
|
|||
#: www/views/modals/wallet-balance.html:3
|
||||
#: www/views/modals/wallets.html:5
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
msgstr "Close"
|
||||
|
||||
#: www/views/includes/cash.html:2
|
||||
#: www/views/preferencesInformation.html:17
|
||||
msgid "Coin"
|
||||
msgstr ""
|
||||
msgstr "Coin"
|
||||
|
||||
#: www/views/preferences.html:22
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
msgstr "Màu"
|
||||
|
||||
#: www/views/preferencesAbout.html:21
|
||||
msgid "Commit hash"
|
||||
msgstr ""
|
||||
msgstr "Commit hash"
|
||||
|
||||
#: www/views/preferences.html:49
|
||||
msgid "Complete the backup process to use this option"
|
||||
msgstr ""
|
||||
msgstr "Complete the backup process to use this option"
|
||||
|
||||
#: www/views/bitpayCard.html:93
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
msgstr "Completed"
|
||||
|
||||
#: src/js/controllers/buyAmazon.js:311
|
||||
#: src/js/controllers/buyMercadoLibre.js:305
|
||||
|
|
@ -575,95 +579,99 @@ msgstr ""
|
|||
#: www/views/confirm.html:4
|
||||
#: www/views/onboarding/collectEmail.html:32
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
msgstr "Confirm"
|
||||
|
||||
#: www/views/modals/terms.html:26
|
||||
#: www/views/onboarding/disclaimer.html:44
|
||||
msgid "Confirm & Finish"
|
||||
msgstr ""
|
||||
msgstr "Confirm & Finish"
|
||||
|
||||
#: www/views/buyAmazon.html:90
|
||||
msgid "Confirm purchase"
|
||||
msgstr ""
|
||||
msgstr "Confirm purchase"
|
||||
|
||||
#: www/views/modals/pin.html:10
|
||||
msgid "Confirm your PIN"
|
||||
msgstr ""
|
||||
msgstr "Confirm your PIN"
|
||||
|
||||
#: src/js/services/walletService.js:1033
|
||||
msgid "Confirm your new spending password"
|
||||
msgstr ""
|
||||
msgstr "Confirm your new spending password"
|
||||
|
||||
#: www/views/tx-details.html:98
|
||||
msgid "Confirmations"
|
||||
msgstr ""
|
||||
msgstr "Confirmations"
|
||||
|
||||
#: www/views/bitpayCard.html:68
|
||||
#: www/views/modals/wallet-balance.html:61
|
||||
msgid "Confirming"
|
||||
msgstr ""
|
||||
msgstr "Xác nhận"
|
||||
|
||||
#: www/views/bitpayCardIntro.html:37
|
||||
msgid "Connect my BitPay Card"
|
||||
msgstr ""
|
||||
msgstr "Kết nối thẻ BitPay của tôi"
|
||||
|
||||
#: src/js/services/onGoingProcess.js:13
|
||||
msgid "Connecting to Coinbase..."
|
||||
msgstr ""
|
||||
msgstr "Connecting to Coinbase..."
|
||||
|
||||
#: src/js/services/onGoingProcess.js:14
|
||||
msgid "Connecting to Glidera..."
|
||||
msgstr ""
|
||||
msgstr "Đang kết nối với Glidera ..."
|
||||
|
||||
#: src/js/services/bwcError.js:53
|
||||
msgid "Connection reset by peer"
|
||||
msgstr ""
|
||||
msgstr "Đặt lại kết nối theo ngang hàng"
|
||||
|
||||
#: www/views/tab-send.html:45
|
||||
#: www/views/tab-send.html:85
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
msgstr "Contacts"
|
||||
|
||||
#: www/views/tab-send.html:86
|
||||
msgid "Saved frequently used addresses"
|
||||
msgstr "Save the regular usage"
|
||||
|
||||
#: www/views/onboarding/notifications.html:9
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
msgstr "Continue"
|
||||
|
||||
#: www/views/preferencesLanguage.html:26
|
||||
msgid "Contribute Translations"
|
||||
msgstr ""
|
||||
msgstr "Contribute Translations"
|
||||
|
||||
#: src/js/controllers/confirm.js:130
|
||||
msgid "Copay only supports Bitcoin Cash using new version numbers addresses"
|
||||
msgstr ""
|
||||
msgstr "Copay chỉ hỗ trợ Bitcoin Cash bằng cách sử dụng số phiên bản mới"
|
||||
|
||||
#: src/js/services/bwcError.js:62
|
||||
msgid "Copayer already in this wallet"
|
||||
msgstr ""
|
||||
msgstr "Copayer already in this wallet"
|
||||
|
||||
#: src/js/services/bwcError.js:77
|
||||
msgid "Copayer already voted on this spend proposal"
|
||||
msgstr ""
|
||||
msgstr "Coper is this option"
|
||||
|
||||
#: src/js/services/bwcError.js:107
|
||||
msgid "Copayer data mismatch"
|
||||
msgstr ""
|
||||
msgstr "Dữ liệu Copayer không khớp"
|
||||
|
||||
#: www/views/includes/walletActivity.html:2
|
||||
msgid "Copayer joined"
|
||||
msgstr ""
|
||||
msgstr "Copayer joined"
|
||||
|
||||
#: www/views/preferencesInformation.html:94
|
||||
msgid "Copayer {{$index}}"
|
||||
msgstr ""
|
||||
msgstr "Copayer {{$index}}"
|
||||
|
||||
#: src/js/controllers/copayers.js:79
|
||||
#: src/js/controllers/export.js:193
|
||||
#: www/views/includes/copyToClipboard.html:4
|
||||
msgid "Copied to clipboard"
|
||||
msgstr ""
|
||||
msgstr "Sao chép vào clipboard"
|
||||
|
||||
#: www/views/tab-export-file.html:94
|
||||
msgid "Copy this text as it is to a safe place (notepad or email)"
|
||||
msgstr ""
|
||||
msgstr "Copy this text as it is to a safe place (notepad or email)"
|
||||
|
||||
#: www/views/includes/incomingDataMenu.html:51
|
||||
#: www/views/includes/incomingDataMenu.html:70
|
||||
|
|
@ -671,35 +679,35 @@ msgstr ""
|
|||
#: www/views/includes/logOptions.html:9
|
||||
#: www/views/tab-export-file.html:78
|
||||
msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
msgstr "Sao chép vào clipboard"
|
||||
|
||||
#: src/js/controllers/buyMercadoLibre.js:102
|
||||
msgid "Could not access Gift Card Service"
|
||||
msgstr ""
|
||||
msgstr "Could not access Gift Card Service"
|
||||
|
||||
#: www/views/tab-import-phrase.html:2
|
||||
msgid "Could not access the wallet at the server. Please check:"
|
||||
msgstr ""
|
||||
msgstr "Could not access the wallet at the server. Please check:"
|
||||
|
||||
#: src/js/controllers/buyAmazon.js:102
|
||||
msgid "Could not access to Amazon.com"
|
||||
msgstr ""
|
||||
msgstr "Could not access to Amazon.com"
|
||||
|
||||
#: src/js/services/profileService.js:511
|
||||
msgid "Could not access wallet"
|
||||
msgstr ""
|
||||
msgstr "Could not access wallet"
|
||||
|
||||
#: src/js/controllers/confirm.js:210
|
||||
msgid "Could not add message to imported wallet without shared encrypting key"
|
||||
msgstr ""
|
||||
msgstr "Could not add message to imported wallet without shared encrypting key"
|
||||
|
||||
#: src/js/controllers/modals/txpDetails.js:199
|
||||
msgid "Could not broadcast payment"
|
||||
msgstr ""
|
||||
msgstr "Could not broadcast payment"
|
||||
|
||||
#: src/js/services/bwcError.js:41
|
||||
msgid "Could not build transaction"
|
||||
msgstr ""
|
||||
msgstr "Cannot build transaction"
|
||||
|
||||
#: src/js/services/walletService.js:854
|
||||
msgid "Could not create address"
|
||||
|
|
@ -823,7 +831,7 @@ msgstr ""
|
|||
|
||||
#: www/views/onboarding/tour.html:51
|
||||
#: www/views/tab-home.html:75
|
||||
#: www/views/tab-send.html:36
|
||||
#: www/views/tab-send.html:75
|
||||
msgid "Create bitcoin wallet"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -916,7 +924,7 @@ msgstr ""
|
|||
#: www/views/modals/mercadolibre-card-details.html:6
|
||||
#: www/views/topup.html:45
|
||||
msgid "Details"
|
||||
msgstr ""
|
||||
msgstr "Chi tiết"
|
||||
|
||||
#: src/js/controllers/lockSetup.js:9
|
||||
#: src/js/controllers/tab-settings.js:65
|
||||
|
|
@ -2533,6 +2541,14 @@ msgstr ""
|
|||
msgid "Search or enter bitcoin address"
|
||||
msgstr ""
|
||||
|
||||
#: src/js/controllers/tab-send.js:28
|
||||
msgid "Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: src/js/controllers/tab-send.js:29
|
||||
msgid "Your Clipboard is empty"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/modals/search.html:16
|
||||
msgid "Search transactions"
|
||||
msgstr ""
|
||||
|
|
@ -2591,9 +2607,70 @@ msgid "Send by email"
|
|||
msgstr ""
|
||||
|
||||
#: src/js/controllers/confirm.js:177
|
||||
#: src/js/controllers/tab-send.js:94
|
||||
msgid "Send from"
|
||||
msgstr ""
|
||||
|
||||
#: src/js/controllers/tab-send.js:77
|
||||
msgid "Send to"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:20
|
||||
msgid "Paste Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:21
|
||||
msgid "Paste Address"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:27
|
||||
msgid "Wallet to Wallet Transfer"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
msgid "Scan QR Code"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:50
|
||||
msgid "Save frequently used addresses and send them Bitcoin in just one tap"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:55
|
||||
msgid "Add your first contact"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:65
|
||||
msgid "Your Bitcoin wallet is empty"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:69
|
||||
msgid "To get started, buy Bitcoin Cash (BCH) or Bitcoin Core (BTC), or share your address."
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:70
|
||||
msgid "You can receive bitcoin from any wallet or service."
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:72
|
||||
msgid "To get started, you'll need to create a bitcoin wallet and get some bitcoin."
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:74
|
||||
msgid "Buy Bitcoin now"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-send.html:76
|
||||
msgid "Show my address"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/includes/itemSelector.html:8
|
||||
msgid "Send max amount"
|
||||
msgstr ""
|
||||
|
|
@ -3636,3 +3713,51 @@ msgstr ""
|
|||
msgid "{{wallet.m}}-of-{{wallet.n}}"
|
||||
msgstr ""
|
||||
|
||||
#: src/js/services/shapeshiftService.js:8
|
||||
msgid "Shapeshift"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/includes/community.html:3
|
||||
msgid "Community"
|
||||
msgstr ""
|
||||
|
||||
#: src/js/services/communityService.js:40
|
||||
msgid "Bitcoin Cash Reddit"
|
||||
msgstr ""
|
||||
|
||||
#: src/js/services/communityService.js:47
|
||||
msgid "Bitcoin.com Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/includes/nextSteps.html:3
|
||||
msgid "Explore Bitcoin.com"
|
||||
msgstr ""
|
||||
|
||||
#: src/js/services/bitcoincomService.js:21
|
||||
msgid "Bitcoin Cash Games"
|
||||
msgstr ""
|
||||
|
||||
#: src/js/services/bitcoincomService.js:28
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: src/js/services/bitcoincomService.js:35
|
||||
msgid "Mining Pool"
|
||||
msgstr ""
|
||||
|
||||
#: src/js/services/bitcoincomService.js:42
|
||||
msgid "Tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/js/services/bitcoincomService.js:49
|
||||
msgid "Bitcoin Price Charts"
|
||||
msgstr ""
|
||||
|
||||
#: src/js/services/bitcoincomService.js:56
|
||||
msgid "Free Bitcoin Cash"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/tab-home.html:30
|
||||
msgid "Your Bitcoin Wallets are ready!"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ msgstr ""
|
|||
"Last-Translator: emilold\n"
|
||||
"Language-Team: Chinese Simplified\n"
|
||||
"Language: zh\n"
|
||||
"PO-Revision-Date: 2018-07-04 03:57\n"
|
||||
"PO-Revision-Date: 2018-07-27 08:43\n"
|
||||
|
||||
#: www/views/modals/paypro.html:34
|
||||
msgid "(Trusted)"
|
||||
|
|
@ -79,7 +79,7 @@ msgstr "帐号"
|
|||
|
||||
#: www/views/tab-home.html:61
|
||||
msgid "Instant transactions with low fees"
|
||||
msgstr ""
|
||||
msgstr "以较低费用进行即时交易"
|
||||
|
||||
#: www/views/preferencesBitpayServices.html:23
|
||||
msgid "Accounts"
|
||||
|
|
@ -363,12 +363,12 @@ msgstr "比特币地址"
|
|||
|
||||
#: www/views/cashScan.html:4
|
||||
msgid "Bitcoin Cash (BCH) Balances"
|
||||
msgstr ""
|
||||
msgstr "Bitcoin Cash (BCH) 余额"
|
||||
|
||||
#: www/views/preferencesCash.html:3
|
||||
#: www/views/tab-settings.html:47
|
||||
msgid "Bitcoin Cash Support"
|
||||
msgstr ""
|
||||
msgstr "Bitcoin Cash 支持"
|
||||
|
||||
#: www/views/tab-home.html:98
|
||||
#: www/views/tab-settings.html:115
|
||||
|
|
@ -384,7 +384,7 @@ msgstr "比特币网络手续费策略"
|
|||
#: www/views/tab-home.html:83
|
||||
#: www/views/tab-settings.html:107
|
||||
msgid "Bitcoin Core Wallets"
|
||||
msgstr ""
|
||||
msgstr "Bitcoin Core 钱包"
|
||||
|
||||
#: src/js/services/incomingData.js:151
|
||||
msgid "Bitcoin cash Payment"
|
||||
|
|
@ -437,6 +437,7 @@ msgid "Buy & Sell Bitcoin"
|
|||
msgstr "购买或出售比特币"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
#: src/js/services/buyAndSellService.js:26
|
||||
msgid "Buy Bitcoin"
|
||||
msgstr "购买比特币"
|
||||
|
||||
|
|
@ -619,10 +620,14 @@ msgstr "正在连接 Glidera..."
|
|||
msgid "Connection reset by peer"
|
||||
msgstr "连接被对方重置"
|
||||
|
||||
#: www/views/tab-send.html:45
|
||||
#: www/views/tab-send.html:85
|
||||
msgid "Contacts"
|
||||
msgstr "联系人"
|
||||
|
||||
#: www/views/tab-send.html:86
|
||||
msgid "Saved frequently used addresses"
|
||||
msgstr "保存的常用地址"
|
||||
|
||||
#: www/views/onboarding/notifications.html:9
|
||||
msgid "Continue"
|
||||
msgstr "继续"
|
||||
|
|
@ -653,7 +658,7 @@ msgstr "Copayer 加入"
|
|||
|
||||
#: www/views/preferencesInformation.html:94
|
||||
msgid "Copayer {{$index}}"
|
||||
msgstr ""
|
||||
msgstr "Copayer {{$index}}"
|
||||
|
||||
#: src/js/controllers/copayers.js:79
|
||||
#: src/js/controllers/export.js:193
|
||||
|
|
@ -823,7 +828,7 @@ msgstr "创建自己的免费钱包"
|
|||
|
||||
#: www/views/onboarding/tour.html:51
|
||||
#: www/views/tab-home.html:75
|
||||
#: www/views/tab-send.html:36
|
||||
#: www/views/tab-send.html:75
|
||||
msgid "Create bitcoin wallet"
|
||||
msgstr "创建比特币的钱包"
|
||||
|
||||
|
|
@ -977,7 +982,7 @@ msgstr "已达到空地址限制。无法生成新的地址。"
|
|||
|
||||
#: www/views/preferencesCash.html:17
|
||||
msgid "Enable Bitcoin Cash wallet creation and operation within the App."
|
||||
msgstr ""
|
||||
msgstr "在应用内启用 Bitcoin Cash 创建和操作。"
|
||||
|
||||
#: www/views/tab-scan.html:19
|
||||
msgid "Enable camera access in your device settings to get started."
|
||||
|
|
@ -993,7 +998,7 @@ msgstr "启用推式通知"
|
|||
|
||||
#: www/views/preferencesNotifications.html:33
|
||||
msgid "Enable sound"
|
||||
msgstr ""
|
||||
msgstr "启用声音"
|
||||
|
||||
#: www/views/tab-scan.html:18
|
||||
msgid "Enable the camera to get started."
|
||||
|
|
@ -1001,7 +1006,7 @@ msgstr "使该摄像机开始。"
|
|||
|
||||
#: www/views/tab-settings.html:49
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
msgstr "已启用"
|
||||
|
||||
#: src/js/services/walletService.js:1047
|
||||
#: src/js/services/walletService.js:1062
|
||||
|
|
@ -1586,7 +1591,7 @@ msgstr "网络地址不正确"
|
|||
#: src/js/controllers/confirm.js:306
|
||||
#: src/js/services/bwcError.js:44
|
||||
msgid "Insufficient confirmed funds"
|
||||
msgstr ""
|
||||
msgstr "确认的资金不足"
|
||||
|
||||
#: src/js/controllers/topup.js:165
|
||||
#: src/js/controllers/topup.js:177
|
||||
|
|
@ -2011,7 +2016,7 @@ msgstr "好的"
|
|||
#: www/views/modals/tx-status.html:36
|
||||
#: www/views/modals/tx-status.html:46
|
||||
msgid "OKAY"
|
||||
msgstr ""
|
||||
msgstr "确定"
|
||||
|
||||
#: www/views/modals/terms.html:15
|
||||
msgid "Official English Disclaimer"
|
||||
|
|
@ -2053,7 +2058,7 @@ msgstr "打开 GitHub 项目"
|
|||
#: src/js/controllers/bitpayCard.js:123
|
||||
#: src/js/controllers/tx-details.js:192
|
||||
msgid "Open Explorer"
|
||||
msgstr ""
|
||||
msgstr "打开浏览器"
|
||||
|
||||
#: www/views/tab-scan.html:22
|
||||
msgid "Open Settings"
|
||||
|
|
@ -2069,7 +2074,7 @@ msgstr "打开网站"
|
|||
|
||||
#: src/js/controllers/preferencesCash.js:32
|
||||
msgid "Open bitcoincash.org?"
|
||||
msgstr ""
|
||||
msgstr "打开 bitcoincash.org?"
|
||||
|
||||
#: src/js/controllers/cashScan.js:18
|
||||
msgid "Open the recovery tool."
|
||||
|
|
@ -2511,7 +2516,7 @@ msgstr "请扫描你的指纹"
|
|||
|
||||
#: www/views/preferencesCash.html:23
|
||||
msgid "Scan your wallets for Bitcoin Cash"
|
||||
msgstr ""
|
||||
msgstr "扫描您的 Bitcoin Cash 钱包"
|
||||
|
||||
#: src/js/services/onGoingProcess.js:30
|
||||
msgid "Scanning Wallet funds..."
|
||||
|
|
@ -2533,6 +2538,14 @@ msgstr "搜索交易"
|
|||
msgid "Search or enter bitcoin address"
|
||||
msgstr "搜索或输入比特币地址"
|
||||
|
||||
#: src/js/controllers/tab-send.js:28
|
||||
msgid "Clipboard"
|
||||
msgstr "剪贴板"
|
||||
|
||||
#: src/js/controllers/tab-send.js:29
|
||||
msgid "Your Clipboard is empty"
|
||||
msgstr "您的剪贴板为空"
|
||||
|
||||
#: www/views/modals/search.html:16
|
||||
msgid "Search transactions"
|
||||
msgstr "搜索交易"
|
||||
|
|
@ -2591,9 +2604,70 @@ msgid "Send by email"
|
|||
msgstr "通过电邮发送"
|
||||
|
||||
#: src/js/controllers/confirm.js:177
|
||||
#: src/js/controllers/tab-send.js:94
|
||||
msgid "Send from"
|
||||
msgstr "从发送"
|
||||
|
||||
#: src/js/controllers/tab-send.js:77
|
||||
msgid "Send to"
|
||||
msgstr "发送到"
|
||||
|
||||
#: www/views/tab-send.html:20
|
||||
msgid "Paste Clipboard"
|
||||
msgstr "粘贴剪贴板"
|
||||
|
||||
#: www/views/tab-send.html:21
|
||||
msgid "Paste Address"
|
||||
msgstr "粘贴地址"
|
||||
|
||||
#: www/views/tab-send.html:27
|
||||
msgid "Wallet to Wallet Transfer"
|
||||
msgstr "钱包转账"
|
||||
|
||||
#: www/views/tab-send.html:35
|
||||
msgid "Scan QR Code"
|
||||
msgstr "扫描二维码"
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr "更快地发送比特币!"
|
||||
|
||||
#: www/views/tab-send.html:46
|
||||
msgid "Send Bitcoin faster!"
|
||||
msgstr "更快地发送比特币!"
|
||||
|
||||
#: www/views/tab-send.html:50
|
||||
msgid "Save frequently used addresses and send them Bitcoin in just one tap"
|
||||
msgstr "保存常用地址,只需点击一下即可将比特币发送到这些地址"
|
||||
|
||||
#: www/views/tab-send.html:55
|
||||
msgid "Add your first contact"
|
||||
msgstr "添加您的第一个联系人"
|
||||
|
||||
#: www/views/tab-send.html:65
|
||||
msgid "Your Bitcoin wallet is empty"
|
||||
msgstr "您的比特币钱包为空"
|
||||
|
||||
#: www/views/tab-send.html:69
|
||||
msgid "To get started, buy Bitcoin Cash (BCH) or Bitcoin Core (BTC), or share your address."
|
||||
msgstr "首先,购买 Bitcoin Cash (BCH) 或 Bitcoin Core (BTC),或者共享您的地址。"
|
||||
|
||||
#: www/views/tab-send.html:70
|
||||
msgid "You can receive bitcoin from any wallet or service."
|
||||
msgstr "您可以从任何钱包或服务接收比特币。"
|
||||
|
||||
#: www/views/tab-send.html:72
|
||||
msgid "To get started, you'll need to create a bitcoin wallet and get some bitcoin."
|
||||
msgstr "若要开始,您将需要创建一个比特币的钱包,并获得一些比特币。"
|
||||
|
||||
#: www/views/tab-send.html:74
|
||||
msgid "Buy Bitcoin now"
|
||||
msgstr "立即购买比特币"
|
||||
|
||||
#: www/views/tab-send.html:76
|
||||
msgid "Show my address"
|
||||
msgstr "显示我的地址"
|
||||
|
||||
#: www/views/includes/itemSelector.html:8
|
||||
msgid "Send max amount"
|
||||
msgstr "发送最大数量"
|
||||
|
|
@ -2810,7 +2884,7 @@ msgstr "超级经济"
|
|||
|
||||
#: www/views/preferencesCash.html:11
|
||||
msgid "Support Bitcoin Cash"
|
||||
msgstr ""
|
||||
msgstr "支持 Bitcoin Cash"
|
||||
|
||||
#: www/views/paperWallet.html:7
|
||||
msgid "Sweep"
|
||||
|
|
@ -2860,7 +2934,7 @@ msgstr "使用条款"
|
|||
#: www/views/tab-create-personal.html:118
|
||||
#: www/views/tab-import-phrase.html:68
|
||||
msgid "Testnet"
|
||||
msgstr ""
|
||||
msgstr "测试网"
|
||||
|
||||
#: www/views/includes/incomingDataMenu.html:61
|
||||
msgid "Text"
|
||||
|
|
@ -3030,7 +3104,7 @@ msgstr "若要开始,请买比特币或共享您的地址。你可以从任何
|
|||
|
||||
#: www/views/tab-send.html:33
|
||||
msgid "To get started, you'll need to create a bitcoin wallet and get some bitcoin."
|
||||
msgstr "若要开始,您将需要创建一个比特币的钱包,并获得一些比特币。"
|
||||
msgstr "首先,您需要创建一个比特币钱包,并获得一些比特币。"
|
||||
|
||||
#: src/js/services/bitpayAccountService.js:73
|
||||
msgid "To {{reason}} you must first add your BitPay account - {{email}}"
|
||||
|
|
@ -3200,7 +3274,7 @@ msgstr "查看服务条款"
|
|||
#: src/js/controllers/bitpayCard.js:122
|
||||
#: src/js/controllers/tx-details.js:191
|
||||
msgid "View Transaction on Explorer.Bitcoin.com"
|
||||
msgstr ""
|
||||
msgstr "在 Explorer.Bitcoin.com 上查看交易"
|
||||
|
||||
#: src/js/controllers/tab-home.js:148
|
||||
msgid "View Update"
|
||||
|
|
@ -3596,7 +3670,7 @@ msgstr "我"
|
|||
|
||||
#: www/views/addressbook.add.html:32
|
||||
msgid "name@example.com"
|
||||
msgstr ""
|
||||
msgstr "name@example.com"
|
||||
|
||||
#: www/views/preferencesHistory.html:15
|
||||
msgid "preparing..."
|
||||
|
|
@ -3636,3 +3710,51 @@ msgstr "下载的 {{updatingTxHistoryProgress}} 交易"
|
|||
msgid "{{wallet.m}}-of-{{wallet.n}}"
|
||||
msgstr "{{wallet.m}}{{wallet.n}}"
|
||||
|
||||
#: src/js/services/shapeshiftService.js:8
|
||||
msgid "Shapeshift"
|
||||
msgstr "Shapeshift"
|
||||
|
||||
#: www/views/includes/community.html:3
|
||||
msgid "Community"
|
||||
msgstr "社区"
|
||||
|
||||
#: src/js/services/communityService.js:40
|
||||
msgid "Bitcoin Cash Reddit"
|
||||
msgstr "Bitcoin Cash Reddit"
|
||||
|
||||
#: src/js/services/communityService.js:47
|
||||
msgid "Bitcoin.com Twitter"
|
||||
msgstr "Bitcoin.com Twitter"
|
||||
|
||||
#: www/views/includes/nextSteps.html:3
|
||||
msgid "Explore Bitcoin.com"
|
||||
msgstr "探索 Bitcoin.com"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:21
|
||||
msgid "Bitcoin Cash Games"
|
||||
msgstr "Bitcoin Cash 游戏"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:28
|
||||
msgid "News"
|
||||
msgstr "新闻"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:35
|
||||
msgid "Mining Pool"
|
||||
msgstr "矿池"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:42
|
||||
msgid "Tools"
|
||||
msgstr "工具"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:49
|
||||
msgid "Bitcoin Price Charts"
|
||||
msgstr "比特币价格图表"
|
||||
|
||||
#: src/js/services/bitcoincomService.js:56
|
||||
msgid "Free Bitcoin Cash"
|
||||
msgstr "免费的 Bitcoin Cash"
|
||||
|
||||
#: www/views/tab-home.html:30
|
||||
msgid "Your Bitcoin Wallets are ready!"
|
||||
msgstr "您的比特币钱包已就绪!"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copayApp.controllers').controller('addressbookViewController', function($scope, $state, $timeout, lodash, addressbookService, popupService, $ionicHistory, platformInfo, gettextCatalog, configService, bitcoinCashJsService) {
|
||||
angular.module('copayApp.controllers').controller('addressbookViewController', function($scope, sendFlowService, $state, $timeout, lodash, addressbookService, popupService, $ionicHistory, platformInfo, gettextCatalog, configService, bitcoinCashJsService) {
|
||||
|
||||
var config = configService.getSync();
|
||||
var defaults = configService.getDefaults();
|
||||
|
|
@ -22,6 +22,7 @@ angular.module('copayApp.controllers').controller('addressbookViewController', f
|
|||
|
||||
$scope.sendTo = function() {
|
||||
$ionicHistory.removeBackView();
|
||||
sendFlowService.clear();
|
||||
$state.go('tabs.send');
|
||||
$timeout(function() {
|
||||
var to = '';
|
||||
|
|
@ -31,12 +32,16 @@ angular.module('copayApp.controllers').controller('addressbookViewController', f
|
|||
} else {
|
||||
to = $scope.addressbookEntry.address;
|
||||
}
|
||||
$state.transitionTo('tabs.send.amount', {
|
||||
|
||||
var stateParams = {
|
||||
toAddress: to,
|
||||
toName: $scope.addressbookEntry.name,
|
||||
toEmail: $scope.addressbookEntry.email,
|
||||
coin: $scope.addressbookEntry.coin
|
||||
});
|
||||
};
|
||||
|
||||
sendFlowService.pushState(stateParams);
|
||||
$state.transitionTo('tabs.send.origin');
|
||||
}, 100);
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
angular.module('copayApp.controllers').controller('amountController', amountController);
|
||||
|
||||
function amountController(configService, $filter, gettextCatalog, $ionicHistory, $ionicModal, $ionicScrollDelegate, lodash, $log, nodeWebkitService, rateService, $scope, $state, $timeout, shapeshiftService, txFormatService, platformInfo, profileService, walletService, $window) {
|
||||
function amountController(configService, $filter, gettextCatalog, $ionicHistory, $ionicModal, $ionicScrollDelegate, lodash, $log, nodeWebkitService, rateService, $scope, $state, $timeout, sendFlowService, shapeshiftService, txFormatService, platformInfo, profileService, walletService, $window) {
|
||||
var vm = this;
|
||||
|
||||
vm.allowSend = false;
|
||||
|
|
@ -29,6 +29,7 @@ function amountController(configService, $filter, gettextCatalog, $ionicHistory,
|
|||
vm.finish = finish;
|
||||
vm.goBack = goBack;
|
||||
vm.loadMore = loadMore;
|
||||
vm.next = next;
|
||||
vm.openPopup = openPopup;
|
||||
vm.pushDigit = pushDigit;
|
||||
vm.removeDigit = removeDigit;
|
||||
|
|
@ -66,19 +67,22 @@ function amountController(configService, $filter, gettextCatalog, $ionicHistory,
|
|||
}
|
||||
|
||||
function onBeforeEnter(event, data) {
|
||||
|
||||
if (data.direction == "back") {
|
||||
sendFlowService.popState();
|
||||
}
|
||||
console.log('amount onBeforeEnter after back sendflow ', sendFlowService.state);
|
||||
|
||||
initCurrencies();
|
||||
|
||||
passthroughParams = data.stateParams;
|
||||
console.log('stateParams:', data.stateParams);
|
||||
passthroughParams = sendFlowService.getStateClone();
|
||||
|
||||
vm.fromWalletId = data.stateParams.fromWalletId;
|
||||
vm.toWalletId = data.stateParams.toWalletId;
|
||||
vm.minAmount = parseFloat(data.stateParams.minAmount);
|
||||
vm.maxAmount = parseFloat(data.stateParams.maxAmount);
|
||||
vm.fromWalletId = passthroughParams.fromWalletId;
|
||||
vm.toWalletId = passthroughParams.toWalletId;
|
||||
vm.minAmount = parseFloat(passthroughParams.minAmount);
|
||||
vm.maxAmount = parseFloat(passthroughParams.maxAmount);
|
||||
|
||||
if (passthroughParams.thirdParty) {
|
||||
vm.thirdParty = JSON.parse(passthroughParams.thirdParty); // Parse stringified JSON-object
|
||||
vm.thirdParty = passthroughParams.thirdParty; // Parse stringified JSON-object
|
||||
if (vm.thirdParty) {
|
||||
if (vm.thirdParty.id === 'shapeshift') {
|
||||
if (!vm.thirdParty.data) {
|
||||
|
|
@ -90,7 +94,6 @@ function amountController(configService, $filter, gettextCatalog, $ionicHistory,
|
|||
vm.toWallet = profileService.getWallet(vm.toWalletId);
|
||||
|
||||
shapeshiftService.getMarketData(vm.fromWallet.coin, vm.toWallet.coin, function(data) {
|
||||
console.log(data);
|
||||
vm.thirdParty.data['minAmount'] = vm.minAmount = parseFloat(data.minimum);
|
||||
vm.thirdParty.data['maxAmount'] = vm.maxAmount = parseFloat(data.maxLimit);
|
||||
});
|
||||
|
|
@ -98,7 +101,7 @@ function amountController(configService, $filter, gettextCatalog, $ionicHistory,
|
|||
}
|
||||
}
|
||||
|
||||
vm.isRequestingSpecificAmount = !data.stateParams.fromWalletId;
|
||||
vm.isRequestingSpecificAmount = !passthroughParams.fromWalletId;
|
||||
|
||||
var config = configService.getSync().wallet.settings;
|
||||
|
||||
|
|
@ -179,8 +182,8 @@ function amountController(configService, $filter, gettextCatalog, $ionicHistory,
|
|||
|
||||
// currency have preference
|
||||
var fiatName;
|
||||
if (data.stateParams.currency) {
|
||||
fiatCode = data.stateParams.currency;
|
||||
if (passthroughParams.currency) {
|
||||
fiatCode = passthroughParams.currency;
|
||||
altUnitIndex = unitIndex
|
||||
unitIndex = availableUnits.length;
|
||||
} else {
|
||||
|
|
@ -207,20 +210,11 @@ function amountController(configService, $filter, gettextCatalog, $ionicHistory,
|
|||
var fromWallet = profileService.getWallet(passthroughParams.fromWalletId);
|
||||
updateAvailableFundsFromWallet(fromWallet);
|
||||
}
|
||||
};
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
function goBack() {
|
||||
if (vm.thirdParty && vm.thirdParty.id === 'shapeshift') {
|
||||
$state.go('tabs.send').then(function() {
|
||||
$ionicHistory.clearHistory();
|
||||
$state.go('tabs.home').then(function() {
|
||||
$state.transitionTo('tabs.shapeshift');
|
||||
});
|
||||
});
|
||||
} else {
|
||||
$ionicHistory.goBack();
|
||||
}
|
||||
$ionicHistory.goBack();
|
||||
}
|
||||
|
||||
function paste(value) {
|
||||
|
|
@ -229,18 +223,18 @@ function amountController(configService, $filter, gettextCatalog, $ionicHistory,
|
|||
$timeout(function() {
|
||||
$scope.$apply();
|
||||
});
|
||||
};
|
||||
}
|
||||
|
||||
function processClipboard() {
|
||||
if (!isNW) return;
|
||||
var value = nodeWebkitService.readFromClipboard();
|
||||
if (value && evaluate(value) > 0) paste(evaluate(value));
|
||||
};
|
||||
}
|
||||
|
||||
function sendMax() {
|
||||
useSendMax = true;
|
||||
finish();
|
||||
};
|
||||
}
|
||||
|
||||
function updateUnitUI() {
|
||||
vm.unit = availableUnits[unitIndex].shortName;
|
||||
|
|
@ -248,7 +242,7 @@ function amountController(configService, $filter, gettextCatalog, $ionicHistory,
|
|||
|
||||
processAmount();
|
||||
$log.debug('Update unit coin @amount unit:' + vm.unit + " alternativeUnit:" + vm.alternativeUnit);
|
||||
};
|
||||
}
|
||||
|
||||
function changeUnit() {
|
||||
|
||||
|
|
@ -269,7 +263,7 @@ function amountController(configService, $filter, gettextCatalog, $ionicHistory,
|
|||
|
||||
updateAvailableFundsStringIfNeeded();
|
||||
updateUnitUI();
|
||||
};
|
||||
}
|
||||
|
||||
function pushDigit(digit) {
|
||||
if (vm.amount && digit != '.') {
|
||||
|
|
@ -293,7 +287,7 @@ function amountController(configService, $filter, gettextCatalog, $ionicHistory,
|
|||
|
||||
vm.amount = (vm.amount + digit).replace('..', '.');
|
||||
processAmount();
|
||||
};
|
||||
}
|
||||
|
||||
function pushOperator(operator) {
|
||||
if (!vm.amount || vm.amount.length == 0) return;
|
||||
|
|
@ -305,18 +299,18 @@ function amountController(configService, $filter, gettextCatalog, $ionicHistory,
|
|||
} else {
|
||||
return val.slice(0, -1) + operator;
|
||||
}
|
||||
};
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
function isOperator(val) {
|
||||
var regex = /[\/\-\+\x\*]/;
|
||||
return regex.test(val);
|
||||
};
|
||||
}
|
||||
|
||||
function isExpression(val) {
|
||||
var regex = /^\.?\d+(\.?\d+)?([\/\-\+\*x]\d?\.?\d+)+$/;
|
||||
return regex.test(val);
|
||||
};
|
||||
}
|
||||
|
||||
function removeDigit() {
|
||||
vm.amount = (vm.amount).toString().slice(0, -1);
|
||||
|
|
@ -341,7 +335,7 @@ function amountController(configService, $filter, gettextCatalog, $ionicHistory,
|
|||
function close() {
|
||||
altCurrencyModal.remove();
|
||||
altCurrencyModal = null;
|
||||
};
|
||||
}
|
||||
|
||||
function processAmount() {
|
||||
var formatedValue = format(vm.amount);
|
||||
|
|
@ -411,22 +405,22 @@ function amountController(configService, $filter, gettextCatalog, $ionicHistory,
|
|||
} else {
|
||||
vm.errorMessage = '';
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
function processResult(val) {
|
||||
if (availableUnits[unitIndex].isFiat) return $filter('formatFiatAmount')(val);
|
||||
else return txFormatService.formatAmount(val.toFixed(unitDecimals) * unitToSatoshi, true);
|
||||
};
|
||||
}
|
||||
|
||||
function fromFiat(val) {
|
||||
return parseFloat((rateService.fromFiat(val, fiatCode, availableUnits[altUnitIndex].id) * satToUnit).toFixed(unitDecimals));
|
||||
};
|
||||
}
|
||||
|
||||
function toFiat(val) {
|
||||
if (!rateService.getRate(fiatCode)) return;
|
||||
|
||||
return parseFloat((rateService.toFiat(val * unitToSatoshi, fiatCode, availableUnits[unitIndex].id)).toFixed(2));
|
||||
};
|
||||
}
|
||||
|
||||
function evaluate(val) {
|
||||
var result;
|
||||
|
|
@ -437,7 +431,7 @@ function amountController(configService, $filter, gettextCatalog, $ionicHistory,
|
|||
}
|
||||
if (!lodash.isFinite(result)) return 0;
|
||||
return result;
|
||||
};
|
||||
}
|
||||
|
||||
function format(val) {
|
||||
if (!val) return;
|
||||
|
|
@ -447,7 +441,7 @@ function amountController(configService, $filter, gettextCatalog, $ionicHistory,
|
|||
if (isOperator(lodash.last(val))) result = result.slice(0, -1);
|
||||
|
||||
return result.replace('x', '*');
|
||||
};
|
||||
}
|
||||
|
||||
function finish() {
|
||||
var unit = availableUnits[unitIndex];
|
||||
|
|
@ -469,23 +463,22 @@ function amountController(configService, $filter, gettextCatalog, $ionicHistory,
|
|||
};
|
||||
|
||||
if (vm.thirdParty) {
|
||||
confirmData['thirdParty'] = JSON.stringify(this.thirdParty);
|
||||
confirmData.thirdParty = vm.thirdParty;
|
||||
}
|
||||
|
||||
console.log('confirmData:', confirmData);
|
||||
|
||||
sendFlowService.pushState(confirmData);
|
||||
if (!confirmData.fromWalletId) {
|
||||
$state.transitionTo('tabs.paymentRequest.confirm', confirmData);
|
||||
} else {
|
||||
$state.transitionTo('tabs.send.review', confirmData);
|
||||
$scope.useSendMax = null;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
// Currency
|
||||
|
||||
var next = 10;
|
||||
var nextCurrencies = 10;
|
||||
var completeAlternativeList = [];
|
||||
|
||||
var popularCurrencyList = [
|
||||
|
|
@ -499,7 +492,7 @@ function amountController(configService, $filter, gettextCatalog, $ionicHistory,
|
|||
{isoCode: 'CNY', order: 7},
|
||||
{isoCode: 'KRW', order: 8},
|
||||
{isoCode: 'HKD', order: 9},
|
||||
]
|
||||
];
|
||||
|
||||
function initCurrencies() {
|
||||
var unusedCurrencyList = [{
|
||||
|
|
@ -544,12 +537,17 @@ function amountController(configService, $filter, gettextCatalog, $ionicHistory,
|
|||
|
||||
function loadMore() {
|
||||
$timeout(function() {
|
||||
vm.altCurrencyList = completeAlternativeList.slice(0, next);
|
||||
next += 10;
|
||||
vm.altCurrencyList = completeAlternativeList.slice(0, nextCurrencies);
|
||||
nextCurrencies += 10;
|
||||
vm.listComplete = vm.altCurrencyList.length >= completeAlternativeList.length;
|
||||
$scope.$broadcast('scroll.infiniteScrollComplete');
|
||||
}, 100);
|
||||
};
|
||||
}
|
||||
|
||||
function next() {
|
||||
useSendMax = false;
|
||||
vm.finish();
|
||||
}
|
||||
|
||||
function findCurrency(search) {
|
||||
if (!search) initCurrencies();
|
||||
|
|
@ -562,7 +560,7 @@ function amountController(configService, $filter, gettextCatalog, $ionicHistory,
|
|||
$timeout(function() {
|
||||
$scope.$apply();
|
||||
});
|
||||
};
|
||||
}
|
||||
|
||||
function save(newAltCurrency) {
|
||||
var opts = {
|
||||
|
|
@ -588,26 +586,25 @@ function amountController(configService, $filter, gettextCatalog, $ionicHistory,
|
|||
updateUnitUI();
|
||||
close();
|
||||
});
|
||||
};
|
||||
}
|
||||
|
||||
function updateAvailableFundsStringIfNeeded() {
|
||||
if (passthroughParams.fromWalletId && availableSatoshis !== null) {
|
||||
availableFundsInFiat = '';
|
||||
vm.availableFunds = availableFundsInCrypto;
|
||||
var coin = availableUnits[altUnitIndex].isFiat ? availableUnits[unitIndex].id : availableUnits[altUnitIndex].id;
|
||||
txFormatService.formatAlternativeStr(coin, availableSatoshis, function formatCallback(formatted){
|
||||
if (formatted) {
|
||||
availableFundsInFiat = formatted;
|
||||
|
||||
$scope.$apply(function() {
|
||||
if (availableUnits[unitIndex].isFiat) {
|
||||
if (availableUnits[unitIndex].isFiat) {
|
||||
var coin = availableUnits[altUnitIndex].id;
|
||||
txFormatService.formatAlternativeStr(coin, availableSatoshis, function formatCallback(formatted){
|
||||
if (formatted) {
|
||||
availableFundsInFiat = formatted;
|
||||
|
||||
$scope.$apply(function() {
|
||||
vm.availableFunds = availableFundsInFiat;
|
||||
} else {
|
||||
vm.availableFunds = availableFundsInCrypto;
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -644,5 +641,4 @@ function amountController(configService, $filter, gettextCatalog, $ionicHistory,
|
|||
vm.availableFunds = availableFundsInCrypto;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copayApp.controllers').controller('backupController',
|
||||
function($scope, $timeout, $log, $state, $stateParams, $ionicHistory, lodash, profileService, bwcService, walletService, ongoingProcess, popupService, gettextCatalog, $ionicModal, firebaseEventsService) {
|
||||
function($scope, $timeout, $log, $state, $stateParams, $ionicHistory, lodash, profileService, bwcService, walletService, ongoingProcess, popupService, gettextCatalog, $ionicModal) {
|
||||
|
||||
if ($state.current.name == 'onboarding.backup') {
|
||||
$scope.onboarding = true;
|
||||
|
|
@ -89,7 +89,8 @@ angular.module('copayApp.controllers').controller('backupController',
|
|||
$scope.setFlow(2);
|
||||
})
|
||||
} else {
|
||||
firebaseEventsService.logEvent('backed_up_wallet');
|
||||
|
||||
//firebaseEventsService.logEvent('backed_up_wallet');
|
||||
openConfirmBackupModal();
|
||||
}
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copayApp.controllers').controller('confirmController', function($rootScope, $scope, $interval, $filter, $timeout, $ionicScrollDelegate, $ionicLoading, ionicToast, addressbookService, gettextCatalog, walletService, platformInfo, lodash, configService, $stateParams, $window, $state, $log, profileService, bitcore, bitcoreCash, txFormatService, ongoingProcess, $ionicModal, popupService, $ionicHistory, $ionicConfig, payproService, feeService, bitcoinCashJsService, bwcError, txConfirmNotification, externalLinkService, firebaseEventsService, soundService, clipboardService) {
|
||||
angular.module('copayApp.controllers').controller('confirmController', function($rootScope, $scope, $interval, $timeout, $ionicScrollDelegate, $ionicLoading, ionicToast, addressbookService, gettextCatalog, walletService, platformInfo, lodash, configService, $state, $log, profileService, bitcore, bitcoreCash, txFormatService, ongoingProcess, $ionicModal, popupService, $ionicHistory, $ionicConfig, feeService, bitcoinCashJsService, bwcError, txConfirmNotification, soundService, clipboardService) {
|
||||
|
||||
var countDown = null;
|
||||
var FEE_TOO_HIGH_LIMIT_PER = 15;
|
||||
|
|
@ -708,8 +708,6 @@ angular.module('copayApp.controllers').controller('confirmController', function(
|
|||
}], [channel, "adjust"]);
|
||||
window.BitAnalytics.LogEventHandlers.postEvent(log);
|
||||
|
||||
// Should be removed
|
||||
firebaseEventsService.logEvent('sent_bitcoin', { coin: $scope.wallet.coin });
|
||||
$timeout(function() {
|
||||
$scope.$digest();
|
||||
}, 100);
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copayApp.controllers').controller('createController',
|
||||
function($scope, $rootScope, $timeout, $log, lodash, $state, $ionicScrollDelegate, $ionicHistory, profileService, configService, gettextCatalog, ledger, trezor, intelTEE, derivationPathHelper, ongoingProcess, walletService, storageService, popupService, appConfigService, pushNotificationsService, firebaseEventsService, $ionicNavBarDelegate) {
|
||||
function($scope, $timeout, $log, lodash, $state, $ionicScrollDelegate, $ionicHistory, profileService, configService, gettextCatalog, ledger, trezor, intelTEE, derivationPathHelper, ongoingProcess, walletService, popupService, appConfigService, pushNotificationsService, $ionicNavBarDelegate) {
|
||||
|
||||
/* For compressed keys, m*73 + n*34 <= 496 */
|
||||
var COPAYER_PAIR_LIMITS = {
|
||||
|
|
@ -268,7 +268,7 @@ angular.module('copayApp.controllers').controller('createController',
|
|||
}, 100);
|
||||
}
|
||||
else {
|
||||
firebaseEventsService.logEvent('wallet_created', { coin: opts.coin });
|
||||
//firebaseEventsService.logEvent('wallet_created', { coin: opts.coin });
|
||||
$state.go('tabs.home');
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ angular
|
|||
.module('copayApp.controllers')
|
||||
.controller('reviewController', reviewController);
|
||||
|
||||
function reviewController(addressbookService, bitcoinCashJsService, bitcore, bitcoreCash, bwcError, configService, feeService, gettextCatalog, $interval, $ionicHistory, $ionicModal, lodash, $log, ongoingProcess, platformInfo, popupService, profileService, $scope, shapeshiftService, soundService, $state, $timeout, txConfirmNotification, txFormatService, walletService) {
|
||||
function reviewController(addressbookService, bitcoinCashJsService, bitcore, bitcoreCash, bwcError, configService, feeService, gettextCatalog, $interval, $ionicHistory, $ionicModal, lodash, $log, ongoingProcess, platformInfo, popupService, profileService, $scope, sendFlowService, shapeshiftService, soundService, $state, $timeout, txConfirmNotification, txFormatService, walletService) {
|
||||
var vm = this;
|
||||
|
||||
vm.buttonText = '';
|
||||
|
|
@ -34,6 +34,7 @@ function reviewController(addressbookService, bitcoinCashJsService, bitcore, bit
|
|||
};
|
||||
vm.originWallet = null;
|
||||
vm.paymentExpired = false;
|
||||
vm.personalNotePlaceholder = gettextCatalog.getString('Enter text here');
|
||||
vm.primaryAmount = '';
|
||||
vm.primaryCurrency = '';
|
||||
vm.usingMerchantFee = false;
|
||||
|
|
@ -49,9 +50,10 @@ function reviewController(addressbookService, bitcoinCashJsService, bitcore, bit
|
|||
vm.memoExpanded = false;
|
||||
|
||||
// Functions
|
||||
vm.goBack = goBack;
|
||||
vm.onSuccessConfirm = onSuccessConfirm;
|
||||
|
||||
|
||||
var sendFlowData;
|
||||
var config = null;
|
||||
var countDown = null;
|
||||
var defaults = {};
|
||||
|
|
@ -74,22 +76,22 @@ function reviewController(addressbookService, bitcoinCashJsService, bitcore, bit
|
|||
|
||||
|
||||
function onBeforeEnter(event, data) {
|
||||
console.log('walletSelector onBeforeEnter sendflow ', sendFlowService.state);
|
||||
defaults = configService.getDefaults();
|
||||
originWalletId = data.stateParams.fromWalletId;
|
||||
satoshis = parseInt(data.stateParams.amount, 10);
|
||||
toAddress = data.stateParams.toAddress;
|
||||
destinationWalletId = data.stateParams.toWalletId;
|
||||
sendFlowData = sendFlowService.getStateClone();
|
||||
originWalletId = sendFlowData.fromWalletId;
|
||||
satoshis = parseInt(sendFlowData.amount, 10);
|
||||
toAddress = sendFlowData.toAddress;
|
||||
destinationWalletId = sendFlowData.toWalletId;
|
||||
|
||||
vm.originWallet = profileService.getWallet(originWalletId);
|
||||
vm.origin.currency = vm.originWallet.coin.toUpperCase();
|
||||
coin = vm.originWallet.coin;
|
||||
|
||||
if (data.stateParams.thirdParty) {
|
||||
vm.thirdParty = JSON.parse(data.stateParams.thirdParty); // Parse stringified JSON-object
|
||||
if (vm.thirdParty) {
|
||||
handleThirdPartyInitIfBip70();
|
||||
handleThirdPartyInitIfShapeshift();
|
||||
}
|
||||
if (sendFlowData.thirdParty) {
|
||||
vm.thirdParty = sendFlowData.thirdParty;
|
||||
handleThirdPartyInitIfBip70();
|
||||
handleThirdPartyInitIfShapeshift();
|
||||
}
|
||||
|
||||
configService.get(function onConfig(err, configCache) {
|
||||
|
|
@ -105,7 +107,7 @@ function reviewController(addressbookService, bitcoinCashJsService, bitcore, bit
|
|||
updateSendAmounts();
|
||||
getOriginWalletBalance(vm.originWallet);
|
||||
handleDestinationAsAddress(toAddress, coin);
|
||||
handleDestinationAsWallet(data.stateParams.toWalletId);
|
||||
handleDestinationAsWallet(sendFlowData.toWalletId);
|
||||
createVanityTransaction(data);
|
||||
});
|
||||
}
|
||||
|
|
@ -115,7 +117,9 @@ function reviewController(addressbookService, bitcoinCashJsService, bitcore, bit
|
|||
if (!tx || !vm.originWallet) return;
|
||||
|
||||
if (vm.paymentExpired) {
|
||||
popupService.showAlert(null, gettextCatalog.getString('This bitcoin payment request has expired.'));
|
||||
popupService.showAlert(null, gettextCatalog.getString('This bitcoin payment request has expired.', function () {
|
||||
$ionicHistory.goBack();
|
||||
}));
|
||||
vm.sendStatus = '';
|
||||
$timeout(function() {
|
||||
$scope.$apply();
|
||||
|
|
@ -221,10 +225,10 @@ function reviewController(addressbookService, bitcoinCashJsService, bitcore, bit
|
|||
|
||||
// Grab stateParams
|
||||
tx = {
|
||||
amount: parseInt(data.stateParams.amount),
|
||||
sendMax: data.stateParams.sendMax === 'true' ? true : false,
|
||||
fromWalletId: data.stateParams.fromWalletId,
|
||||
toAddress: data.stateParams.toAddress,
|
||||
amount: parseInt(sendFlowData.amount),
|
||||
sendMax: sendFlowData.sendMax,
|
||||
fromWalletId: sendFlowData.fromWalletId,
|
||||
toAddress: sendFlowData.toAddress,
|
||||
paypro: txPayproData,
|
||||
|
||||
feeLevel: configFeeLevel,
|
||||
|
|
@ -241,7 +245,6 @@ function reviewController(addressbookService, bitcoinCashJsService, bitcore, bit
|
|||
};
|
||||
|
||||
|
||||
|
||||
if (data.stateParams.requiredFeeRate) {
|
||||
vm.usingMerchantFee = true;
|
||||
tx.feeRate = parseInt(data.stateParams.requiredFeeRate);
|
||||
|
|
@ -251,7 +254,7 @@ function reviewController(addressbookService, bitcoinCashJsService, bitcore, bit
|
|||
tx.feeLevel = 'normal';
|
||||
}
|
||||
|
||||
var B = data.stateParams.coin === 'bch' ? bitcoreCash : bitcore;
|
||||
var B = tx.coin === 'bch' ? bitcoreCash : bitcore;
|
||||
var networkName;
|
||||
try {
|
||||
if (vm.destination.kind === 'wallet') { // This is a wallet-to-wallet transfer
|
||||
|
|
@ -395,6 +398,10 @@ function reviewController(addressbookService, bitcoinCashJsService, bitcore, bit
|
|||
};
|
||||
}
|
||||
|
||||
function goBack() {
|
||||
$ionicHistory.goBack();
|
||||
}
|
||||
|
||||
function handleDestinationAsAddress(address, originCoin) {
|
||||
if (!address) {
|
||||
return;
|
||||
|
|
@ -403,16 +410,20 @@ function reviewController(addressbookService, bitcoinCashJsService, bitcore, bit
|
|||
// Check if the recipient is a contact
|
||||
addressbookService.get(originCoin + address, function(err, contact) {
|
||||
if (!err && contact) {
|
||||
handleDestinationAsContact(contact);
|
||||
handleDestinationAsAddressOfContact(contact);
|
||||
} else {
|
||||
vm.destination.address = address;
|
||||
if (originCoin === 'bch') {
|
||||
vm.destination.address = bitcoinCashJsService.readAddress(address).cashaddr;
|
||||
} else {
|
||||
vm.destination.address = address;
|
||||
}
|
||||
vm.destination.kind = 'address';
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
function handleDestinationAsContact(contact) {
|
||||
function handleDestinationAsAddressOfContact(contact) {
|
||||
vm.destination.kind = 'contact';
|
||||
vm.destination.name = contact.name;
|
||||
vm.destination.email = contact.email;
|
||||
|
|
@ -478,20 +489,26 @@ function reviewController(addressbookService, bitcoinCashJsService, bitcore, bit
|
|||
walletService.getAddress(vm.originWallet, false, function onReturnWalletAddress(err, returnAddr) {
|
||||
if (err) {
|
||||
ongoingProcess.set('connectingShapeshift', false);
|
||||
popupService.showAlert(gettextCatalog.getString('Shapeshift Error'), err.toString());
|
||||
popupService.showAlert(gettextCatalog.getString('Shapeshift Error'), err.toString(), function () {
|
||||
$ionicHistory.goBack();
|
||||
});
|
||||
return;
|
||||
}
|
||||
walletService.getAddress(toWallet, false, function onWithdrawalWalletAddress(err, withdrawalAddr) {
|
||||
if (err) {
|
||||
ongoingProcess.set('connectingShapeshift', false);
|
||||
popupService.showAlert(gettextCatalog.getString('Shapeshift Error'), err.toString());
|
||||
popupService.showAlert(gettextCatalog.getString('Shapeshift Error'), err.toString(), function () {
|
||||
$ionicHistory.goBack();
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
shapeshiftService.shiftIt(vm.originWallet.coin, toWallet.coin, withdrawalAddr, returnAddr, function onShiftIt(err, shapeshiftData) {
|
||||
if (err && err != null) {
|
||||
ongoingProcess.set('connectingShapeshift', false);
|
||||
popupService.showAlert(gettextCatalog.getString('Shapeshift Error'), err.toString());
|
||||
popupService.showAlert(gettextCatalog.getString('Shapeshift Error'), err.toString(), function () {
|
||||
$ionicHistory.goBack();
|
||||
});
|
||||
} else {
|
||||
vm.memo = 'ShapeShift Order:\nhttps://www.shapeshift.io/#/status/' + shapeshiftData.orderId;
|
||||
vm.memoExpanded = !!vm.memo;
|
||||
|
|
@ -632,7 +649,9 @@ function reviewController(addressbookService, bitcoinCashJsService, bitcore, bit
|
|||
$timeout(function() {
|
||||
$scope.$apply();
|
||||
});
|
||||
popupService.showAlert(gettextCatalog.getString('Error at confirm'), bwcError.msg(msg));
|
||||
popupService.showAlert(gettextCatalog.getString('Error at confirm'), bwcError.msg(msg), function () {
|
||||
$ionicHistory.goBack();
|
||||
});
|
||||
};
|
||||
|
||||
function setupTx(tx) {
|
||||
|
|
@ -817,7 +836,9 @@ function reviewController(addressbookService, bitcoinCashJsService, bitcore, bit
|
|||
if (tx.sendMax && sendMaxInfo.amount == 0) {
|
||||
ongoingProcess.set('calculatingFee', false);
|
||||
setNotReady(gettextCatalog.getString('Insufficient confirmed funds'));
|
||||
popupService.showAlert(gettextCatalog.getString('Error'), gettextCatalog.getString('Not enough funds for fee'));
|
||||
popupService.showAlert(gettextCatalog.getString('Error'), gettextCatalog.getString('Not enough funds for fee'), function () {
|
||||
$ionicHistory.goBack();
|
||||
});
|
||||
return cb('no_funds');
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copayApp.controllers').controller('shapeshiftController', function($scope, $state, $timeout, $ionicHistory, profileService, walletService, popupService, lodash, $ionicNavBarDelegate) {
|
||||
angular.module('copayApp.controllers').controller('shapeshiftController', function($scope, sendFlowService, $state, $timeout, $ionicHistory, profileService, walletService, popupService, lodash, $ionicNavBarDelegate) {
|
||||
var walletsBtc = [];
|
||||
var walletsBch = [];
|
||||
|
||||
|
|
@ -63,15 +63,20 @@ angular.module('copayApp.controllers').controller('shapeshiftController', functi
|
|||
};
|
||||
|
||||
$scope.shapeshift = function() {
|
||||
var params = {
|
||||
thirdParty: JSON.stringify({id: 'shapeshift'})
|
||||
var stateParams = {
|
||||
thirdParty: {
|
||||
id: 'shapeshift'
|
||||
}
|
||||
};
|
||||
|
||||
// Starting new send flow, so ensure everything is reset
|
||||
sendFlowService.clear();
|
||||
$state.go('tabs.home').then(function() {
|
||||
$ionicHistory.clearHistory();
|
||||
$state.go('tabs.send').then(function() {
|
||||
$timeout(function () {
|
||||
$state.transitionTo('tabs.send.origin', params);
|
||||
sendFlowService.pushState(stateParams);
|
||||
$state.transitionTo('tabs.send.origin');
|
||||
}, 60);
|
||||
});
|
||||
});
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copayApp.controllers').controller('tabHomeController',
|
||||
function($rootScope, $timeout, $scope, $state, $stateParams, $ionicModal, $ionicScrollDelegate, $window, gettextCatalog, lodash, popupService, ongoingProcess, bannerService, externalLinkService, latestReleaseService, profileService, walletService, configService, $log, platformInfo, storageService, txpModalService, appConfigService, startupService, addressbookService, bwcError, nextStepsService, buyAndSellService, homeIntegrationsService, bitpayCardService, pushNotificationsService, timeService, bitcoincomService, pricechartService, firebaseEventsService, servicesService, shapeshiftService, $ionicNavBarDelegate, signVerifyMessageService) {
|
||||
function($rootScope, $timeout, $scope, $state, $stateParams, $ionicModal, $ionicScrollDelegate, $window, gettextCatalog, lodash, popupService, ongoingProcess, bannerService, communityService, externalLinkService, latestReleaseService, profileService, walletService, configService, $log, platformInfo, sendFlowService, storageService, txpModalService, appConfigService, startupService, addressbookService, bwcError, nextStepsService, buyAndSellService, homeIntegrationsService, bitpayCardService, pushNotificationsService, timeService, bitcoincomService, pricechartService, firebaseEventsService, servicesService, shapeshiftService, $ionicNavBarDelegate, signVerifyMessageService) {
|
||||
var wallet;
|
||||
var listeners = [];
|
||||
var notifications = [];
|
||||
|
|
@ -20,7 +20,12 @@ angular.module('copayApp.controllers').controller('tabHomeController',
|
|||
$scope.bannerUrl = '';
|
||||
|
||||
|
||||
$scope.$on("$ionicView.afterEnter", function() {
|
||||
$scope.$on("$ionicView.beforeEnter", onBeforeEnter);
|
||||
$scope.$on("$ionicView.enter", onEnter);
|
||||
$scope.$on("$ionicView.afterEnter", onAfterEnter);
|
||||
$scope.$on("$ionicView.leave", onLeave);
|
||||
|
||||
function onAfterEnter () {
|
||||
startupService.ready();
|
||||
|
||||
bannerService.getBanner(function (banner) {
|
||||
|
|
@ -28,9 +33,10 @@ angular.module('copayApp.controllers').controller('tabHomeController',
|
|||
$scope.bannerUrl = banner.url;
|
||||
$scope.bannerIsLoading = false;
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
function onBeforeEnter (event, data) {
|
||||
|
||||
$scope.$on("$ionicView.beforeEnter", function(event, data) {
|
||||
if (!$scope.homeTip) {
|
||||
storageService.getHomeTipAccepted(function(error, value) {
|
||||
$scope.homeTip = (value == 'accepted') ? false : true;
|
||||
|
|
@ -51,9 +57,9 @@ angular.module('copayApp.controllers').controller('tabHomeController',
|
|||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
$scope.$on("$ionicView.enter", function(event, data) {
|
||||
function onEnter(event, data) {
|
||||
$ionicNavBarDelegate.showBar(true);
|
||||
updateAllWallets();
|
||||
|
||||
|
|
@ -97,26 +103,29 @@ angular.module('copayApp.controllers').controller('tabHomeController',
|
|||
}
|
||||
|
||||
$scope.showServices = true;
|
||||
pushNotificationsService.init();
|
||||
firebaseEventsService.init();
|
||||
|
||||
$timeout(function() {
|
||||
$ionicScrollDelegate.resize();
|
||||
$scope.$apply();
|
||||
}, 10);
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
$scope.$on("$ionicView.leave", function(event, data) {
|
||||
function onLeave (event, data) {
|
||||
lodash.each(listeners, function(x) {
|
||||
x();
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
$scope.createdWithinPastDay = function(time) {
|
||||
return timeService.withinPastDay(time);
|
||||
};
|
||||
|
||||
$scope.startFreshSend = function() {
|
||||
sendFlowService.clear();
|
||||
$state.go('tabs.send');
|
||||
}
|
||||
|
||||
$scope.openExternalLink = function() {
|
||||
var url = 'https://github.com/Bitcoin-com/Wallet/releases/latest';
|
||||
var optIn = true;
|
||||
|
|
@ -205,6 +214,7 @@ angular.module('copayApp.controllers').controller('tabHomeController',
|
|||
var j = 0;
|
||||
|
||||
lodash.each(wallets, function(wallet) {
|
||||
walletService.invalidateCache(wallet); // Temporary solution, to have the good balance, when we ask to reload the wallets.
|
||||
walletService.getStatus(wallet, {}, function(err, status) {
|
||||
if (err) {
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copayApp.controllers').controller('tabReceiveController', function($rootScope, $scope, $timeout, $log, $ionicModal, $state, $ionicHistory, $ionicPopover, storageService, platformInfo, walletService, profileService, configService, lodash, gettextCatalog, popupService, bwcError, bitcoinCashJsService, $ionicNavBarDelegate, txFormatService, soundService, clipboardService) {
|
||||
angular.module('copayApp.controllers').controller('tabReceiveController', function($rootScope, $scope, $timeout, $log, $ionicModal, $state, $ionicHistory, $ionicPopover, storageService, platformInfo, walletService, profileService, configService, lodash, gettextCatalog, popupService, bwcError, bitcoinCashJsService, $ionicNavBarDelegate, sendFlowService, txFormatService, soundService, clipboardService) {
|
||||
|
||||
var listeners = [];
|
||||
$scope.bchAddressType = { type: 'cashaddr' };
|
||||
|
|
@ -18,9 +18,10 @@ angular.module('copayApp.controllers').controller('tabReceiveController', functi
|
|||
$scope.displayBalanceAsFiat = true;
|
||||
|
||||
$scope.requestSpecificAmount = function() {
|
||||
$state.go('tabs.paymentRequest.amount', {
|
||||
sendFlowService.pushState({
|
||||
toWalletId: $scope.wallet.credentials.walletId
|
||||
});
|
||||
$state.go('tabs.paymentRequest.amount');
|
||||
};
|
||||
|
||||
$scope.setAddress = function(newAddr, copyAddress) {
|
||||
|
|
@ -158,6 +159,10 @@ angular.module('copayApp.controllers').controller('tabReceiveController', functi
|
|||
soundService.play('misc/payment_received.mp3');
|
||||
}
|
||||
|
||||
// Notify new tx
|
||||
$scope.$emit('bwsEvent', $scope.wallet.id);
|
||||
|
||||
|
||||
$scope.$apply(function () {
|
||||
$scope.showingPaymentReceived = true;
|
||||
});
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copayApp.controllers').controller('tabSendController', function($scope, $rootScope, $log, $timeout, $ionicScrollDelegate, $ionicLoading, addressbookService, profileService, lodash, $state, walletService, incomingData, popupService, platformInfo, bwcError, gettextCatalog, scannerService, configService, bitcoinCashJsService, $ionicPopup, $ionicNavBarDelegate, clipboardService) {
|
||||
angular.module('copayApp.controllers').controller('tabSendController', function($scope, $rootScope, $log, $timeout, $ionicScrollDelegate, $ionicLoading, addressbookService, profileService, lodash, $state, walletService, incomingData, popupService, platformInfo, sendFlowService, bwcError, gettextCatalog, scannerService, configService, bitcoinCashJsService, $ionicPopup, $ionicNavBarDelegate, clipboardService) {
|
||||
var clipboardHasAddress = false;
|
||||
var clipboardHasContent = false;
|
||||
var originalList;
|
||||
|
|
@ -28,6 +28,10 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
|
|||
};
|
||||
|
||||
$scope.$on("$ionicView.enter", function(event, data) {
|
||||
|
||||
var stateParams = sendFlowService.getStateClone();
|
||||
$scope.fromWallet = profileService.getWallet(stateParams.fromWalletId);
|
||||
|
||||
clipboardService.readFromClipboard(function(text) {
|
||||
if (text.length > 200) {
|
||||
text = text.substring(0, 200);
|
||||
|
|
@ -179,14 +183,30 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
|
|||
}
|
||||
|
||||
$log.debug('Got toAddress:' + toAddress + ' | ' + item.name);
|
||||
|
||||
var stateParams = sendFlowService.getStateClone();
|
||||
stateParams.toAddress = toAddress,
|
||||
stateParams.coin = item.coin;
|
||||
sendFlowService.pushState(stateParams);
|
||||
|
||||
if (!stateParams.fromWalletId) { // If we have no toAddress or fromWallet
|
||||
$state.transitionTo('tabs.send.origin');
|
||||
} else {
|
||||
$state.transitionTo('tabs.send.amount');
|
||||
}
|
||||
|
||||
return $state.transitionTo('tabs.send.origin', {
|
||||
toAddress: toAddress,
|
||||
coin: item.coin
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
$scope.startWalletToWalletTransfer = function() {
|
||||
console.log('startWalletToWalletTransfer()');
|
||||
var params = sendFlowService.getStateClone();
|
||||
sendFlowService.pushState(params);
|
||||
$state.transitionTo('tabs.send.wallet-to-wallet', {
|
||||
fromWalletId: sendFlowService.fromWalletId
|
||||
});
|
||||
}
|
||||
|
||||
// This could probably be enhanced refactoring the routes abstract states
|
||||
$scope.createWallet = function() {
|
||||
$state.go('tabs.home').then(function() {
|
||||
|
|
@ -201,6 +221,8 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
|
|||
};
|
||||
|
||||
$scope.$on("$ionicView.beforeEnter", function(event, data) {
|
||||
console.log(data);
|
||||
console.log('tab-send onBeforeEnter sendflow ', sendFlowService.state);
|
||||
$scope.isIOS = platformInfo.isIOS && platformInfo.isCordova;
|
||||
$scope.showWalletsBch = $scope.showWalletsBtc = $scope.showWallets = false;
|
||||
|
||||
|
|
@ -215,5 +237,9 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
|
|||
$scope.displayBalanceAsFiat = _config.wallet.settings.priceDisplay === 'fiat';
|
||||
});
|
||||
|
||||
if (data.direction == "back") {
|
||||
sendFlowService.clear();
|
||||
}
|
||||
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copayApp.controllers').controller('tabsController', function($rootScope, $log, $scope, $state, $stateParams, $timeout, platformInfo, incomingData, lodash, popupService, gettextCatalog, scannerService) {
|
||||
angular.module('copayApp.controllers').controller('tabsController', function($rootScope, $log, $scope, $state, $stateParams, $timeout, platformInfo, incomingData, lodash, popupService, gettextCatalog, scannerService, sendFlowService) {
|
||||
|
||||
$scope.onScan = function(data) {
|
||||
if (!incomingData.redir(data)) {
|
||||
|
|
@ -15,6 +15,11 @@ angular.module('copayApp.controllers').controller('tabsController', function($ro
|
|||
};
|
||||
};
|
||||
|
||||
$scope.startFreshSend = function() {
|
||||
sendFlowService.clear();
|
||||
$state.go('tabs.send');
|
||||
};
|
||||
|
||||
$scope.importInit = function() {
|
||||
$scope.fromOnboarding = $stateParams.fromOnboarding;
|
||||
$timeout(function() {
|
||||
|
|
@ -23,7 +28,7 @@ angular.module('copayApp.controllers').controller('tabsController', function($ro
|
|||
};
|
||||
|
||||
$scope.chooseScanner = function() {
|
||||
|
||||
sendFlowService.clear();
|
||||
var isWindowsPhoneApp = platformInfo.isCordova && platformInfo.isWP;
|
||||
|
||||
if (!isWindowsPhoneApp) {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copayApp.controllers').controller('walletDetailsController', function($scope, $rootScope, $interval, $timeout, $filter, $log, $ionicModal, $ionicPopover, $state, $stateParams, $ionicHistory, profileService, lodash, configService, platformInfo, walletService, txpModalService, externalLinkService, popupService, addressbookService, storageService, $ionicScrollDelegate, $window, bwcError, gettextCatalog, timeService, feeService, appConfigService, rateService) {
|
||||
angular.module('copayApp.controllers').controller('walletDetailsController', function($scope, $rootScope, $interval, $timeout, $filter, $log, $ionicModal, $ionicPopover, $state, $stateParams, $ionicHistory, profileService, lodash, configService, platformInfo, walletService, txpModalService, externalLinkService, popupService, addressbookService, sendFlowService, storageService, $ionicScrollDelegate, $window, bwcError, gettextCatalog, timeService, feeService, appConfigService, rateService) {
|
||||
|
||||
var HISTORY_SHOW_LIMIT = 10;
|
||||
var currentTxHistoryPage = 0;
|
||||
|
|
@ -304,9 +304,13 @@ angular.module('copayApp.controllers').controller('walletDetailsController', fun
|
|||
};
|
||||
|
||||
function refreshAmountSection(scrollPos) {
|
||||
var AMOUNT_HEIGHT_BASE = 210;
|
||||
$scope.showBalanceButton = false;
|
||||
if ($scope.status) {
|
||||
$scope.showBalanceButton = ($scope.status.totalBalanceSat != $scope.status.spendableAmount);
|
||||
if ($scope.showBalanceButton) {
|
||||
AMOUNT_HEIGHT_BASE = 270;
|
||||
}
|
||||
}
|
||||
if (!$scope.amountIsCollapsible) {
|
||||
var t = ($scope.showBalanceButton ? 15 : 45);
|
||||
|
|
@ -315,16 +319,16 @@ angular.module('copayApp.controllers').controller('walletDetailsController', fun
|
|||
}
|
||||
|
||||
scrollPos = scrollPos || 0;
|
||||
var amountHeight = 210 - scrollPos;
|
||||
var amountHeight = AMOUNT_HEIGHT_BASE - scrollPos;
|
||||
if (amountHeight < 80) {
|
||||
amountHeight = 80;
|
||||
}
|
||||
var contentMargin = amountHeight;
|
||||
if (contentMargin > 210) {
|
||||
contentMargin = 210;
|
||||
if (contentMargin > AMOUNT_HEIGHT_BASE) {
|
||||
contentMargin = AMOUNT_HEIGHT_BASE;
|
||||
}
|
||||
|
||||
var amountScale = (amountHeight / 210);
|
||||
var amountScale = (amountHeight / AMOUNT_HEIGHT_BASE);
|
||||
if (amountScale < 0.5) {
|
||||
amountScale = 0.5;
|
||||
}
|
||||
|
|
@ -374,6 +378,7 @@ angular.module('copayApp.controllers').controller('walletDetailsController', fun
|
|||
});
|
||||
|
||||
$scope.$on("$ionicView.beforeEnter", function(event, data) {
|
||||
sendFlowService.clear();
|
||||
|
||||
configService.whenAvailable(function (config) {
|
||||
$scope.selectedPriceDisplay = config.wallet.settings.priceDisplay;
|
||||
|
|
@ -470,13 +475,18 @@ angular.module('copayApp.controllers').controller('walletDetailsController', fun
|
|||
function rgbToHex(r, g, b) {
|
||||
return "#" + componentToHex(r) + componentToHex(g) + componentToHex(b);
|
||||
}
|
||||
|
||||
$scope.goToSend = function() {
|
||||
$state.go('tabs.home', {
|
||||
walletId: $scope.wallet.id
|
||||
}).then(function () {
|
||||
sendFlowService.startSend({
|
||||
fromWalletId: $scope.wallet.id
|
||||
});
|
||||
|
||||
// Go home first so that the Home tab works properly
|
||||
$state.go('tabs.home').then(function () {
|
||||
$ionicHistory.clearHistory();
|
||||
$state.go('tabs.send');
|
||||
});
|
||||
|
||||
};
|
||||
$scope.goToReceive = function() {
|
||||
$state.go('tabs.home', {
|
||||
|
|
@ -488,6 +498,7 @@ angular.module('copayApp.controllers').controller('walletDetailsController', fun
|
|||
});
|
||||
});
|
||||
};
|
||||
|
||||
$scope.goToBuy = function() {
|
||||
$state.go('tabs.home', {
|
||||
walletId: $scope.wallet.id
|
||||
|
|
|
|||
|
|
@ -1,13 +1,23 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copayApp.controllers').controller('walletSelectorController', function($scope, $rootScope, $state, $log, $ionicHistory, configService, gettextCatalog, profileService, txFormatService) {
|
||||
angular.module('copayApp.controllers').controller('walletSelectorController', function($scope, $rootScope, $state, $log, $ionicHistory, sendFlowService, configService, gettextCatalog, profileService, txFormatService) {
|
||||
|
||||
var fromWalletId = '';
|
||||
var priceDisplayAsFiat = false;
|
||||
var unitDecimals = 0;
|
||||
var unitsFromSatoshis = 0;
|
||||
|
||||
$scope.$on("$ionicView.beforeEnter", function(event, data) {
|
||||
$scope.$on("$ionicView.beforeEnter", onBeforeEnter);
|
||||
$scope.$on("$ionicView.enter", onEnter);
|
||||
|
||||
function onBeforeEnter(event, data) {
|
||||
if (data.direction == "back") {
|
||||
sendFlowService.popState();
|
||||
}
|
||||
console.log('walletSelector onBeforeEnter after back sendflow', sendFlowService.state);
|
||||
|
||||
$scope.params = sendFlowService.getStateClone();
|
||||
|
||||
var config = configService.getSync().wallet.settings;
|
||||
priceDisplayAsFiat = config.priceDisplay === 'fiat';
|
||||
unitDecimals = config.unitDecimals;
|
||||
|
|
@ -18,18 +28,24 @@ angular.module('copayApp.controllers').controller('walletSelectorController', fu
|
|||
$scope.sendFlowTitle = gettextCatalog.getString('Transfer between wallets');
|
||||
break;
|
||||
case 'tabs.send.destination':
|
||||
if (data.stateParams.fromWalletId) {
|
||||
if ($scope.params.fromWalletId && !$scope.params.thirdParty) {
|
||||
$scope.sendFlowTitle = gettextCatalog.getString('Transfer between wallets');
|
||||
}
|
||||
break;
|
||||
default:
|
||||
if (!$scope.params.thirdParty) {
|
||||
$scope.sendFlowTitle = gettextCatalog.getString('Send');
|
||||
}
|
||||
// nop
|
||||
}
|
||||
|
||||
$scope.params = $state.params;
|
||||
$scope.coin = false; // Wallets to show (for destination screen or contacts)
|
||||
$scope.type = data.stateParams && data.stateParams['fromWalletId'] ? 'destination' : 'origin'; // origin || destination
|
||||
fromWalletId = data.stateParams && data.stateParams.fromWalletId;
|
||||
$scope.type = $scope.params['fromWalletId'] ? 'destination' : 'origin'; // origin || destination
|
||||
fromWalletId = $scope.params['fromWalletId'];
|
||||
|
||||
if ($scope.type === 'destination' && $scope.params.toAddress) {
|
||||
$state.transitionTo(getNextStep($scope.params));
|
||||
}
|
||||
|
||||
if ($scope.params.coin) {
|
||||
$scope.coin = $scope.params.coin; // Contacts have a coin embedded
|
||||
|
|
@ -41,11 +57,11 @@ angular.module('copayApp.controllers').controller('walletSelectorController', fu
|
|||
$scope.isPaymentRequest = true;
|
||||
}
|
||||
if ($scope.params.thirdParty) {
|
||||
$scope.thirdParty = JSON.parse($scope.params.thirdParty); // Parse stringified JSON-object
|
||||
$scope.thirdParty = $scope.params.thirdParty;
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
$scope.$on("$ionicView.enter", function(event, data) {
|
||||
function onEnter (event, data) {
|
||||
configService.whenAvailable(function(config) {
|
||||
$scope.selectedPriceDisplay = config.wallet.settings.priceDisplay;
|
||||
});
|
||||
|
|
@ -57,7 +73,7 @@ angular.module('copayApp.controllers').controller('walletSelectorController', fu
|
|||
|
||||
prepareWalletLists();
|
||||
formatRequestedAmount();
|
||||
});
|
||||
};
|
||||
|
||||
function formatRequestedAmount() {
|
||||
if ($scope.params.amount) {
|
||||
|
|
@ -88,13 +104,10 @@ angular.module('copayApp.controllers').controller('walletSelectorController', fu
|
|||
}
|
||||
}
|
||||
|
||||
function getNextStep() {
|
||||
if ($scope.thirdParty) {
|
||||
$scope.params.thirdParty = JSON.stringify($scope.thirdParty) // re-stringify JSON-object
|
||||
}
|
||||
if (!$scope.params.toWalletId && !$scope.params.toAddress) { // If we have no toAddress or fromWallet
|
||||
function getNextStep(params) {
|
||||
if (!params.toWalletId && !params.toAddress) { // If we have no toAddress or fromWallet
|
||||
return 'tabs.send.destination';
|
||||
} else if (!$scope.params.amount) { // If we have no amount
|
||||
} else if (!params.amount) { // If we have no amount
|
||||
return 'tabs.send.amount';
|
||||
} else { // If we do have them
|
||||
return 'tabs.send.review';
|
||||
|
|
@ -178,12 +191,16 @@ angular.module('copayApp.controllers').controller('walletSelectorController', fu
|
|||
|
||||
|
||||
$scope.useWallet = function(wallet) {
|
||||
var params = sendFlowService.getStateClone();
|
||||
if ($scope.type === 'origin') { // we're on the origin screen, set wallet to send from
|
||||
$scope.params['fromWalletId'] = wallet.id;
|
||||
params.fromWalletId = wallet.id;
|
||||
} else { // we're on the destination screen, set wallet to send to
|
||||
$scope.params['toWalletId'] = wallet.id;
|
||||
params.toWalletId = wallet.id;
|
||||
}
|
||||
$state.transitionTo(getNextStep(), $scope.params);
|
||||
sendFlowService.pushState(params);
|
||||
var nextStep = getNextStep(params);
|
||||
console.log('walletSelector nextStep', nextStep);
|
||||
$state.transitionTo(nextStep, $scope.params);
|
||||
};
|
||||
|
||||
$scope.goBack = function() {
|
||||
|
|
|
|||
|
|
@ -1,92 +0,0 @@
|
|||
'use strict';
|
||||
|
||||
/**
|
||||
* @desc amount directive that can be used to display formatted financial values
|
||||
* size-equal attribute is optional, defaults to false.
|
||||
* @example fee = {
|
||||
* value: 12.49382901,
|
||||
* currency: 'BCH'
|
||||
* }
|
||||
* @example <amount value="fee.value" currency="fee.currency"></amount>
|
||||
* @example <amount value="fee.value" currency="fee.currency" size-equal="true"></amount>
|
||||
*/
|
||||
angular.module('bitcoincom.directives')
|
||||
.directive('amount', [
|
||||
'$timeout',
|
||||
function($timeout) {
|
||||
return {
|
||||
restrict: 'E',
|
||||
scope: {
|
||||
value: '=',
|
||||
currency: '=',
|
||||
sizeEqual: '='
|
||||
},
|
||||
templateUrl: 'views/includes/amount.html',
|
||||
controller: ['$scope', function($scope) {
|
||||
$scope.displaySizeEqual = typeof $scope.sizeEqual == 'undefined' ? false : true;
|
||||
|
||||
var decimalPlaces = {
|
||||
'0': ['BIF', 'CLP', 'DJF', 'GNF', 'ILS', 'JPY', 'KMF', 'KRW', 'MGA', 'PYG', 'RWF', 'UGX', 'VND', 'VUV', 'XAF', 'XOF', 'XPF'],
|
||||
'3': ['BHD', 'IQD', 'JOD', 'KWD', 'OMR', 'TND'],
|
||||
'8': ['BCH', 'BTC']
|
||||
};
|
||||
|
||||
var numberWithCommas = function(x) {
|
||||
return parseFloat(x).toLocaleString();
|
||||
};
|
||||
|
||||
var buildAmount = function(start, middle, end) {
|
||||
$scope.start = start;
|
||||
$scope.middle = middle;
|
||||
$scope.end = end;
|
||||
};
|
||||
|
||||
var getDecimalPlaces = function(currency) {
|
||||
if (decimalPlaces['0'].indexOf($scope.currency.toUpperCase()) > -1) return '0';
|
||||
if (decimalPlaces['3'].indexOf($scope.currency.toUpperCase()) > -1) return '3';
|
||||
if (decimalPlaces['8'].indexOf($scope.currency.toUpperCase()) > -1) return '8';
|
||||
return '2';
|
||||
};
|
||||
|
||||
var formatNumbers = function(currency, value) {
|
||||
switch (getDecimalPlaces(currency)) {
|
||||
case '0':
|
||||
var valueFormatted = numberWithCommas(Math.round(parseFloat(value)));
|
||||
buildAmount(valueFormatted, '', '');
|
||||
break;
|
||||
|
||||
case '2':
|
||||
var valueProcessing = parseFloat(parseFloat(value).toFixed(2));
|
||||
var valueFormatted = numberWithCommas(valueProcessing);
|
||||
buildAmount(valueFormatted, '', '');
|
||||
break;
|
||||
|
||||
case '3':
|
||||
var valueProcessing = parseFloat(parseFloat(value).toFixed(3));
|
||||
var valueFormatted = numberWithCommas(valueProcessing);
|
||||
buildAmount(valueFormatted, '', '');
|
||||
break;
|
||||
|
||||
case '8':
|
||||
var valueFormatted = parseFloat(value).toFixed(8);
|
||||
if (parseFloat(value) == 0) {
|
||||
buildAmount('0', '', '');
|
||||
} else {
|
||||
buildAmount(valueFormatted, '', '');
|
||||
var start = numberWithCommas(valueFormatted.slice(0, -5));
|
||||
var middle = valueFormatted.slice(-5, -2);
|
||||
var end = valueFormatted.substr(valueFormatted.length - 2);
|
||||
buildAmount(start, middle, end);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
formatNumbers($scope.currency, $scope.value);
|
||||
$scope.$watchGroup(['currency', 'value'], function() {
|
||||
formatNumbers($scope.currency, $scope.value);
|
||||
});
|
||||
}]
|
||||
};
|
||||
}
|
||||
]);
|
||||
199
src/js/directives/formattedAmount.js
Normal file
199
src/js/directives/formattedAmount.js
Normal file
|
|
@ -0,0 +1,199 @@
|
|||
'use strict';
|
||||
|
||||
(function(){
|
||||
/**
|
||||
* @desc amount directive that can be used to display formatted financial values
|
||||
* size-equal attribute is optional, defaults to false.
|
||||
* @example fee = {
|
||||
* value: 12.49382901,
|
||||
* currency: 'BCH'
|
||||
* }
|
||||
* @example <formatted-amount value="fee.value" currency="fee.currency"></formatted-amount>
|
||||
* @example <formatted-amount value="fee.value" currency="fee.currency" size-equal="true"></formatted-amount>
|
||||
*/
|
||||
angular
|
||||
.module('bitcoincom.directives')
|
||||
.directive('formattedAmount', function() {
|
||||
return {
|
||||
restrict: 'E',
|
||||
scope: {
|
||||
value: '@',
|
||||
currency: '@',
|
||||
sizeEqual: '@'
|
||||
},
|
||||
templateUrl: 'views/includes/formatted-amount.html',
|
||||
controller: formattedAmountController
|
||||
}
|
||||
});
|
||||
|
||||
function formattedAmountController($scope, uxLanguage) {
|
||||
$scope.vm = {};
|
||||
var vm = $scope.vm;
|
||||
|
||||
vm.currency = '';
|
||||
vm.value = '';
|
||||
|
||||
$scope.canShow = false
|
||||
$scope.displaySizeEqual = !!$scope.sizeEqual;
|
||||
|
||||
var decimalPlaces = {
|
||||
'0': ['BIF', 'CLP', 'DJF', 'GNF', 'ILS', 'JPY', 'KMF', 'KRW', 'MGA', 'PYG', 'RWF', 'UGX', 'VND', 'VUV', 'XAF', 'XOF', 'XPF'],
|
||||
'3': ['BHD', 'IQD', 'JOD', 'KWD', 'OMR', 'TND'],
|
||||
'8': ['BCH', 'BTC']
|
||||
};
|
||||
|
||||
$scope.$watch('value', function onFormattedAmountWatch() {
|
||||
formatNumbers();
|
||||
});
|
||||
|
||||
function buildAmount(start, middle, end) {
|
||||
$scope.start = start;
|
||||
$scope.middle = middle;
|
||||
$scope.end = end;
|
||||
};
|
||||
|
||||
/**
|
||||
* On Android 4.4, toLocaleString() only returns 3 fractional digits when 8 is specified.
|
||||
*/
|
||||
function ensureEnoughFractionDigits(localizedString, number, desiredFractionDigits) {
|
||||
if (desiredFractionDigits === 0) {
|
||||
// Assume it is OK
|
||||
return localizedString;
|
||||
}
|
||||
var fractionalRe = /^-*(\d*\D)(\d+)$/;
|
||||
var match = fractionalRe.exec(localizedString);
|
||||
if (!match || match.length !== 3) {
|
||||
// Don't know what's happening, just return what we have
|
||||
return localizedString;
|
||||
}
|
||||
|
||||
var decimals = match[2];
|
||||
var decimalCount = decimals.length;
|
||||
if (decimalCount >= desiredFractionDigits) {
|
||||
// Everything is OK.
|
||||
return localizedString;
|
||||
}
|
||||
|
||||
if (typeof number !== 'number') {
|
||||
number = parseFloat(number);
|
||||
}
|
||||
|
||||
var fixed = number.toFixed(desiredFractionDigits);
|
||||
var fixedMatch = fractionalRe.exec(fixed);
|
||||
if (!fixedMatch || fixedMatch.length !== 3) {
|
||||
// Don't know what's happening, just return what we have
|
||||
return localizedString;
|
||||
}
|
||||
|
||||
// Keeps locale decimal separator.
|
||||
var enough = match[1] + fixedMatch[2];
|
||||
return enough;
|
||||
}
|
||||
|
||||
function formatNumbers() {
|
||||
// Might get "< 0.01 USD" being passed in.
|
||||
// During watch, may be changed from having a separate currency value,
|
||||
// to both being in value. Don't want to use previous currency value.
|
||||
// Try to extract currency from value..
|
||||
if (!$scope.currency || $scope.currency.length === 0) {
|
||||
var currencySplit = $scope.value.split(" ");
|
||||
if (currencySplit.length >= 2) {
|
||||
vm.currency = currencySplit[currencySplit.length - 1];
|
||||
}
|
||||
} else {
|
||||
vm.currency = $scope.currency;
|
||||
}
|
||||
|
||||
// Redo this when we have proper formatting for low fees
|
||||
if ($scope.value.indexOf("<") === 0) {
|
||||
buildAmount($scope.value, '', '');
|
||||
vm.currency = '';
|
||||
$scope.canShow = true;
|
||||
return;
|
||||
}
|
||||
|
||||
// Remove thousands separators for parseFloat()
|
||||
$scope.value = $scope.value.replace(',', '');
|
||||
|
||||
var parsed = parseFloat($scope.value);
|
||||
var valueFormatted = '';
|
||||
var valueProcessing = '';
|
||||
switch (getDecimalPlaces(vm.currency)) {
|
||||
case '0':
|
||||
if (isNaN(parsed)) {
|
||||
buildAmount('-', '', '');
|
||||
} else {
|
||||
valueFormatted = localizeNumbers(Math.round(parsed), 0);
|
||||
buildAmount(valueFormatted, '', '');
|
||||
}
|
||||
break;
|
||||
|
||||
case '3':
|
||||
if (isNaN(parsed)) {
|
||||
buildAmount('-' + getDecimalSeparator() + '---', '', '');
|
||||
} else {
|
||||
valueProcessing = parsed.toFixed(3);
|
||||
valueFormatted = localizeNumbers(valueProcessing, 3);
|
||||
buildAmount(valueFormatted, '', '');
|
||||
}
|
||||
break;
|
||||
|
||||
case '8':
|
||||
if (isNaN(parsed)) {
|
||||
buildAmount('-' + getDecimalSeparator() + '---', '', '');
|
||||
} else if (parsed === 0) {
|
||||
buildAmount('0', '', '');
|
||||
} else {
|
||||
valueFormatted = parsed.toFixed(8);
|
||||
valueFormatted = localizeNumbers(valueFormatted, 8);
|
||||
var start = valueFormatted.slice(0, -5);
|
||||
var middle = valueFormatted.slice(-5, -2);
|
||||
var end = valueFormatted.substr(valueFormatted.length - 2);
|
||||
buildAmount(start, middle, end);
|
||||
|
||||
}
|
||||
break;
|
||||
|
||||
default: // 2
|
||||
if (isNaN(parsed)) {
|
||||
buildAmount('-' + getDecimalSeparator() + '--', '', '');
|
||||
} else {
|
||||
valueProcessing = parseFloat(parsed.toFixed(2));
|
||||
valueFormatted = localizeNumbers(valueProcessing, 2);
|
||||
buildAmount(valueFormatted, '', '');
|
||||
}
|
||||
break;
|
||||
}
|
||||
$scope.canShow = true;
|
||||
$scope.$apply();
|
||||
};
|
||||
|
||||
function getDecimalPlaces(currency) {
|
||||
if (decimalPlaces['0'].indexOf(currency.toUpperCase()) > -1) return '0';
|
||||
if (decimalPlaces['3'].indexOf(currency.toUpperCase()) > -1) return '3';
|
||||
if (decimalPlaces['8'].indexOf(currency.toUpperCase()) > -1) return '8';
|
||||
return '2';
|
||||
};
|
||||
|
||||
function getDecimalSeparator() {
|
||||
var testNum = 1.5;
|
||||
var testString = testNum.toLocaleString(uxLanguage.getCurrentLanguage());
|
||||
// Some environments let you set decimal separators that are more than one character
|
||||
var separator = /^1(.+)5$/.exec(testString)[1]
|
||||
return separator;
|
||||
};
|
||||
|
||||
function localizeNumbers(x, minimumFractionDigits) {
|
||||
var parsed = parseFloat(x);
|
||||
var opts = {
|
||||
minimumFractionDigits: minimumFractionDigits,
|
||||
useGrouping: true
|
||||
};
|
||||
var lang = uxLanguage.getCurrentLanguage();
|
||||
var localized = parsed.toLocaleString(lang, opts);
|
||||
var corrected = ensureEnoughFractionDigits(localized, x, minimumFractionDigits);
|
||||
return corrected;
|
||||
};
|
||||
}
|
||||
|
||||
})();
|
||||
120
src/js/directives/walletBalanceDirective.js
Normal file
120
src/js/directives/walletBalanceDirective.js
Normal file
|
|
@ -0,0 +1,120 @@
|
|||
'use strict';
|
||||
|
||||
(function(){
|
||||
|
||||
angular
|
||||
.module('bitcoincom.directives')
|
||||
.directive('walletBalance', function() {
|
||||
return {
|
||||
restrict: 'E',
|
||||
scope: {
|
||||
displayAsFiat: '@',
|
||||
totalBalanceSat: '@',
|
||||
// The Wallet object is sometimes not stringify()-able, so not interpolatable,
|
||||
// so can't be passed to a directive.
|
||||
walletStatus: '@',
|
||||
walletCachedBalance: '@',
|
||||
walletCachedBalanceUpdatedOn: '@',
|
||||
walletCachedStatus: '@'
|
||||
},
|
||||
templateUrl: 'views/includes/wallet-balance.html',
|
||||
controller: walletBalanceController
|
||||
}
|
||||
});
|
||||
|
||||
function walletBalanceController($log, $scope, txFormatService) {
|
||||
var cryptoBalanceHasBeenDisplayed = false;
|
||||
|
||||
formatBalance();
|
||||
$scope.$watchGroup(['displayAsFiat', 'totalBalanceSat'], function onWalletBalanceWatch() {
|
||||
formatBalance();
|
||||
});
|
||||
|
||||
function displayCryptoBalance(walletStatus, walletCachedBalance, walletCachedBalanceUpdatedOn, walletCachedStatus) {
|
||||
console.log('displayCryptoBalance()');
|
||||
|
||||
if (walletStatus && walletStatus.isValid && walletStatus.totalBalanceStr) {
|
||||
setDisplay(walletStatus.totalBalanceStr, '');
|
||||
cryptoBalanceHasBeenDisplayed = true;
|
||||
return;
|
||||
}
|
||||
|
||||
if (walletCachedBalance) {
|
||||
setDisplay(walletCachedBalance, walletCachedBalanceUpdatedOn);
|
||||
return;
|
||||
}
|
||||
|
||||
if (walletCachedStatus && walletCachedStatus.isValid && walletCachedStatus.totalBalanceStr) {
|
||||
setDisplay(walletCachedStatus.totalBalanceStr, '');
|
||||
return;
|
||||
}
|
||||
|
||||
setDisplay('', '');
|
||||
}
|
||||
|
||||
function displayFiatBalance(walletStatus, walletCachedStatus) {
|
||||
var displayAmount = '';
|
||||
if (walletStatus && walletStatus.isValid && walletStatus.alternativeBalanceAvailable) {
|
||||
displayAmount = walletStatus.totalBalanceAlternative + ' ' + walletStatus.alternativeIsoCode;
|
||||
setDisplay(displayAmount, '');
|
||||
return;
|
||||
}
|
||||
|
||||
if (walletCachedStatus && walletCachedStatus.isValid && walletCachedStatus.alternativeBalanceAvailable) {
|
||||
displayAmount = walletCachedStatus.totalBalanceAlternative + ' ' + walletCachedStatus.alternativeIsoCode;
|
||||
setDisplay(displayAmount, '');
|
||||
return;
|
||||
}
|
||||
|
||||
getFiatBalance(wallet);
|
||||
}
|
||||
|
||||
function formatBalance() {
|
||||
var displayAsFiat = $scope.displayAsFiat === 'true';
|
||||
|
||||
var walletStatusObj = null;
|
||||
var walletCachedBalance = null;
|
||||
var walletCachedBalanceUpdatedOn = null;
|
||||
var walletCachedStatusObj = null;
|
||||
|
||||
try {
|
||||
walletStatusObj = JSON.parse($scope.walletStatus);
|
||||
} catch (e) {
|
||||
$log.warn('Failed to parse walletStatus.', e);
|
||||
}
|
||||
|
||||
try {
|
||||
walletCachedStatusObj = JSON.parse($scope.walletCachedStatus);
|
||||
} catch (e) {
|
||||
$log.warn('Failed to parse walletCachedStatus.', e);
|
||||
}
|
||||
|
||||
if (!displayAsFiat || displayAsFiat && !cryptoBalanceHasBeenDisplayed) {
|
||||
displayCryptoBalance(walletStatusObj, walletCachedBalance, walletCachedBalanceUpdatedOn, walletCachedStatusObj);
|
||||
}
|
||||
|
||||
if (displayAsFiat) {
|
||||
displayFiatBalance(walletStatusObj, walletCachedStatusObj);
|
||||
}
|
||||
}
|
||||
|
||||
function getFiatBalance(wallet) {
|
||||
if (!(wallet.status && wallet.status.isValid)) {
|
||||
$log.warn('Abandoning call to get fiat balance, because no valid wallet status.');
|
||||
return;
|
||||
}
|
||||
|
||||
txFormatService.formatAlternativeStr(wallet.coin, wallet.status.totalBalanceSat, function onFormatAlernativeStr(formatted) {
|
||||
if (formatted) {
|
||||
setDisplay(formatted, '');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function setDisplay(amount, cachedBalanceUpdatedOn) {
|
||||
$scope.displayAmount = amount;
|
||||
$scope.cachedBalanceUpdatedOn = cachedBalanceUpdatedOn;
|
||||
}
|
||||
}
|
||||
})();
|
||||
|
||||
|
|
@ -287,7 +287,7 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr
|
|||
*/
|
||||
|
||||
.state('tabs.send.amount', {
|
||||
url: '/amount/:thirdParty/:fromWalletId/:maxAmount/:minAmount/:toWalletId/:toAddress',
|
||||
url: '/amount',
|
||||
views: {
|
||||
'tab-send@tabs': {
|
||||
controller: 'amountController',
|
||||
|
|
@ -306,7 +306,7 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr
|
|||
}
|
||||
})
|
||||
.state('tabs.send.origin', {
|
||||
url: '/origin/:thirdParty/:amount/:toAddress/:toWalletId/:coin',
|
||||
url: '/origin',
|
||||
views: {
|
||||
'tab-send@tabs': {
|
||||
controller: 'walletSelectorController',
|
||||
|
|
@ -315,7 +315,7 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr
|
|||
}
|
||||
})
|
||||
.state('tabs.send.destination', {
|
||||
url: '/destination/:thirdParty/:amount/:fromWalletId',
|
||||
url: '/destination',
|
||||
views: {
|
||||
'tab-send@tabs': {
|
||||
controller: 'walletSelectorController',
|
||||
|
|
@ -324,7 +324,7 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr
|
|||
}
|
||||
})
|
||||
.state('tabs.send.confirm', {
|
||||
url: '/confirm/:thirdParty/:amount/:fromWalletId/:toWalletId/:toAddress',
|
||||
url: '/confirm',
|
||||
views: {
|
||||
'tab-send@tabs': {
|
||||
controller: 'confirmController',
|
||||
|
|
@ -1207,7 +1207,7 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr
|
|||
}
|
||||
});
|
||||
})
|
||||
.run(function($rootScope, $state, $location, $log, $timeout, startupService, ionicToast, fingerprintService, $ionicHistory, $ionicPlatform, $window, appConfigService, lodash, platformInfo, profileService, uxLanguage, gettextCatalog, openURLService, storageService, scannerService, configService, emailService, /* plugins START HERE => */ buydotbitcoindotcomService, glideraService, amazonService, bitpayCardService, applicationService, mercadoLibreService, rateService) {
|
||||
.run(function($rootScope, $state, $location, $log, $timeout, startupService, ionicToast, fingerprintService, $ionicHistory, $ionicPlatform, $window, appConfigService, lodash, platformInfo, profileService, uxLanguage, gettextCatalog, openURLService, storageService, scannerService, configService, emailService, /* plugins START HERE => */ buydotbitcoindotcomService, pushNotificationsService, glideraService, amazonService, bitpayCardService, applicationService, mercadoLibreService, rateService) {
|
||||
|
||||
$ionicPlatform.ready(function() {
|
||||
|
||||
|
|
@ -1231,6 +1231,11 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr
|
|||
}
|
||||
});
|
||||
|
||||
configService.whenAvailable(function(config) {
|
||||
pushNotificationsService.init();
|
||||
});
|
||||
//firebaseEventsService.init();
|
||||
|
||||
var channel = "ga";
|
||||
if (platformInfo.isCordova) {
|
||||
channel = "firebase";
|
||||
|
|
@ -1272,6 +1277,13 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr
|
|||
});
|
||||
window.BitAnalytics.ActionHandlers.trackAction(actionTabOpen);
|
||||
|
||||
var actionShapeShiftStart = new window.BitAnalytics.ActionFactory.createAction('click', {
|
||||
name: 'shapeshift_start_click',
|
||||
class: 'track_shapeshift_start_click',
|
||||
channels: [channel]
|
||||
});
|
||||
window.BitAnalytics.ActionHandlers.trackAction(actionShapeShiftStart);
|
||||
|
||||
// Init language
|
||||
uxLanguage.init(function (lang) {
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copayApp.services').factory('clipboardService', function ($http, $log, platformInfo, nodeWebkitService, gettextCatalog, ionicToast, clipboard) {
|
||||
angular.module('copayApp.services').factory('clipboardService', function ($http, $log, $timeout, platformInfo, nodeWebkitService, gettextCatalog, ionicToast, clipboard) {
|
||||
var root = {};
|
||||
|
||||
root.copyToClipboard = function (data) {
|
||||
|
|
@ -13,7 +13,7 @@ angular.module('copayApp.services').factory('clipboardService', function ($http,
|
|||
nodeWebkitService.writeToClipboard(data);
|
||||
} else if (navigator && navigator.clipboard) {
|
||||
$log.debug("Use navigator clipboard.")
|
||||
navigator.clipboard.writeText(data).catch(err => {
|
||||
navigator.clipboard.writeText(data).catch(function onClipboardError(err) {
|
||||
$log.debug("Clipboard writing is not supported in your browser..");
|
||||
});
|
||||
} else if (clipboard.supported) {
|
||||
|
|
@ -31,7 +31,9 @@ angular.module('copayApp.services').factory('clipboardService', function ($http,
|
|||
cb(text);
|
||||
})
|
||||
} else if (platformInfo.isNW) {
|
||||
cb(nodeWebkitService.readFromClipboard());
|
||||
$timeout(function() {
|
||||
cb(nodeWebkitService.readFromClipboard());
|
||||
},0);
|
||||
} else {
|
||||
navigator.clipboard.readText()
|
||||
.then(function (text) {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
'use strict';
|
||||
angular.module('copayApp.services').factory('firebaseEventsService', function firebaseEventsService($log, $state, $ionicHistory, sjcl, platformInfo, lodash, appConfigService, profileService, configService) {
|
||||
angular.module('copayApp.services').factory('firebaseEventsService', function firebaseEventsService($log, platformInfo) {
|
||||
var root = {};
|
||||
var useEvents = platformInfo.isCordova && !platformInfo.isWP;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copayApp.services').factory('incomingData', function($log, $state, $timeout, $ionicHistory, bitcore, bitcoreCash, $rootScope, payproService, scannerService, appConfigService, popupService, gettextCatalog, bitcoinCashJsService) {
|
||||
angular.module('copayApp.services').factory('incomingData', function($log, $state, $timeout, $ionicHistory, bitcore, bitcoreCash, $rootScope, payproService, scannerService, sendFlowService, appConfigService, popupService, gettextCatalog, bitcoinCashJsService) {
|
||||
|
||||
var root = {};
|
||||
|
||||
|
|
@ -82,7 +82,7 @@ angular.module('copayApp.services').factory('incomingData', function($log, $stat
|
|||
});
|
||||
// Timeout is required to enable the "Back" button
|
||||
$timeout(function() {
|
||||
var params = {};
|
||||
var params = sendFlowService.getStateClone();
|
||||
|
||||
if (amount) {
|
||||
params.amount = amount;
|
||||
|
|
@ -105,10 +105,11 @@ angular.module('copayApp.services').factory('incomingData', function($log, $stat
|
|||
params.thirdParty = [];
|
||||
params.thirdParty.id = serviceId;
|
||||
params.thirdParty.data = serviceData;
|
||||
params.thirdParty = JSON.stringify(params.thirdParty);
|
||||
$state.transitionTo('tabs.send.amount', params);
|
||||
sendFlowService.pushState(params);
|
||||
$state.transitionTo('tabs.send.amount');
|
||||
} else {
|
||||
$state.transitionTo('tabs.send.origin', params);
|
||||
sendFlowService.pushState(params);
|
||||
$state.transitionTo('tabs.send.origin');
|
||||
}
|
||||
}, 100);
|
||||
}
|
||||
|
|
@ -387,11 +388,13 @@ angular.module('copayApp.services').factory('incomingData', function($log, $stat
|
|||
'notify': $state.current.name == 'tabs.send' ? false : true
|
||||
});
|
||||
$timeout(function() {
|
||||
$state.transitionTo('tabs.send.origin', {
|
||||
var stateParams = {
|
||||
toAddress: toAddress,
|
||||
coin: coin,
|
||||
noPrefix: 1
|
||||
});
|
||||
};
|
||||
sendFlowService.pushState(stateParams);
|
||||
$state.transitionTo('tabs.send.origin');
|
||||
}, 100);
|
||||
}
|
||||
|
||||
|
|
@ -444,7 +447,7 @@ angular.module('copayApp.services').factory('incomingData', function($log, $stat
|
|||
amount: thirdPartyData.amount,
|
||||
toAddress: thirdPartyData.toAddress,
|
||||
coin: coin,
|
||||
thirdParty: JSON.stringify(thirdPartyData)
|
||||
thirdParty: thirdPartyData
|
||||
};
|
||||
|
||||
// fee
|
||||
|
|
@ -452,13 +455,17 @@ angular.module('copayApp.services').factory('incomingData', function($log, $stat
|
|||
stateParams.requiredFeeRate = thirdPartyData.requiredFeeRate * 1024;
|
||||
}
|
||||
|
||||
// This does not make sense, thirdPartyData gets added by stateParams below
|
||||
//sendFlowService.pushState(thirdPartyData);
|
||||
|
||||
scannerService.pausePreview();
|
||||
$state.go('tabs.send', {}, {
|
||||
'reload': true,
|
||||
'notify': $state.current.name == 'tabs.send' ? false : true
|
||||
}).then(function() {
|
||||
$timeout(function() {
|
||||
$state.transitionTo('tabs.send.origin', stateParams);
|
||||
sendFlowService.pushState(stateParams); // Need to do more here
|
||||
$state.transitionTo('tabs.send.origin');
|
||||
});
|
||||
});
|
||||
}
|
||||
|
|
|
|||
101
src/js/services/sendFlowService.js
Normal file
101
src/js/services/sendFlowService.js
Normal file
|
|
@ -0,0 +1,101 @@
|
|||
'use strict';
|
||||
|
||||
(function(){
|
||||
|
||||
angular
|
||||
.module('copayApp.services')
|
||||
.factory('sendFlowService', sendFlowService);
|
||||
|
||||
function sendFlowService($log) {
|
||||
|
||||
var service = {
|
||||
// A separate state variable so we can ensure it is cleared of everything,
|
||||
// even other properties added that this service does not know about. (such as "coin")
|
||||
state: {
|
||||
amount: '',
|
||||
fromWalletId: '',
|
||||
sendMax: false,
|
||||
thirdParty: null,
|
||||
toAddress: '',
|
||||
toWalletId: ''
|
||||
},
|
||||
previousStates: [],
|
||||
|
||||
// Functions
|
||||
clear: clear,
|
||||
getStateClone: getStateClone,
|
||||
map: map,
|
||||
popState: popState,
|
||||
pushState: pushState,
|
||||
startSend: startSend
|
||||
};
|
||||
|
||||
return service;
|
||||
|
||||
function clear() {
|
||||
console.log("sendFlow clear()");
|
||||
clearCurrent();
|
||||
service.previousStates = [];
|
||||
}
|
||||
|
||||
function clearCurrent() {
|
||||
console.log("sendFlow clearCurrent()");
|
||||
service.state = {
|
||||
amount: '',
|
||||
fromWalletId: '',
|
||||
sendMax: false,
|
||||
thirdParty: null,
|
||||
toAddress: '',
|
||||
toWalletId: ''
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Handy for debugging
|
||||
*/
|
||||
function getStateClone() {
|
||||
var currentState = {};
|
||||
Object.keys(service.state).forEach(function forCurrentParam(key) {
|
||||
if (typeof service.state[key] !== 'function' && key !== 'previousStates') {
|
||||
currentState[key] = service.state[key];
|
||||
}
|
||||
});
|
||||
return currentState;
|
||||
}
|
||||
|
||||
/**
|
||||
* Clears all previous state
|
||||
*/
|
||||
function startSend(params) {
|
||||
console.log('startSend()');
|
||||
clear();
|
||||
map(params);
|
||||
}
|
||||
|
||||
function map(params) {
|
||||
Object.keys(params).forEach(function forNewParam(key) {
|
||||
service.state[key] = params[key];
|
||||
});
|
||||
};
|
||||
|
||||
function popState() {
|
||||
console.log('sendFlow pop');
|
||||
if (service.previousStates.length) {
|
||||
var params = service.previousStates.pop();
|
||||
clearCurrent();
|
||||
map(params);
|
||||
} else {
|
||||
clear();
|
||||
}
|
||||
};
|
||||
|
||||
function pushState(params) {
|
||||
console.log('sendFlow push');
|
||||
var currentParams = getStateClone();
|
||||
service.previousStates.push(currentParams);
|
||||
clearCurrent();
|
||||
map(params);
|
||||
};
|
||||
};
|
||||
|
||||
})();
|
||||
|
|
@ -1,7 +1,12 @@
|
|||
'use strict'
|
||||
angular.module('copayApp.services').factory('servicesService', function(configService, $log, lodash) {
|
||||
var root = {};
|
||||
var services = [];
|
||||
var services = [{
|
||||
name: 'shapeshift',
|
||||
title: 'Shapeshift',
|
||||
icon: 'icon-shapeshift',
|
||||
sref: 'tabs.shapeshift',
|
||||
}];
|
||||
|
||||
root.register = function(serviceInfo) {
|
||||
$log.info('Adding Services entry:' + serviceInfo.name);
|
||||
|
|
|
|||
|
|
@ -137,17 +137,5 @@ angular.module('copayApp.services').factory('shapeshiftService', function ($http
|
|||
});
|
||||
};
|
||||
|
||||
var servicesItem = {
|
||||
name: 'shapeshift',
|
||||
title: 'Shapeshift',
|
||||
icon: 'icon-shapeshift',
|
||||
sref: 'tabs.shapeshift',
|
||||
};
|
||||
|
||||
var register = function() {
|
||||
servicesService.register(servicesItem);
|
||||
};
|
||||
|
||||
register();
|
||||
return root;
|
||||
});
|
||||
|
|
|
|||
|
|
@ -343,21 +343,19 @@ angular.module('copayApp.services').factory('walletService', function($log, $tim
|
|||
if (err) return cb(err);
|
||||
|
||||
if (!txsFromServer.length)
|
||||
return cb();
|
||||
return cb(null, []);
|
||||
|
||||
var res = lodash.takeWhile(txsFromServer, function(tx) {
|
||||
return tx.txid != endingTxid;
|
||||
});
|
||||
|
||||
return cb(null, res, res.length >= limit);
|
||||
return cb(null, txsFromServer);
|
||||
});
|
||||
};
|
||||
|
||||
var removeAndMarkSoftConfirmedTx = function(txs) {
|
||||
return lodash.filter(txs, function(tx) {
|
||||
if (tx.confirmations >= root.SOFT_CONFIRMATION_LIMIT)
|
||||
return tx;
|
||||
tx.recent = true;
|
||||
var isConfirm = (tx.confirmations >= root.SOFT_CONFIRMATION_LIMIT);
|
||||
if (!isConfirm) {
|
||||
tx.recent = true;
|
||||
}
|
||||
return isConfirm;
|
||||
});
|
||||
}
|
||||
|
||||
|
|
@ -437,12 +435,14 @@ angular.module('copayApp.services').factory('walletService', function($log, $tim
|
|||
var endingTxid = confirmedTxs[0] ? confirmedTxs[0].txid : null;
|
||||
var endingTs = confirmedTxs[0] ? confirmedTxs[0].time : null;
|
||||
|
||||
$log.debug('Confirmed TXs. Got:' + confirmedTxs.length + '/' + txsFromLocal.length);
|
||||
|
||||
// First update
|
||||
progressFn(txsFromLocal, 0);
|
||||
wallet.completeHistory = txsFromLocal;
|
||||
|
||||
function getNewTxs(newTxs, skip, next) {
|
||||
getTxsFromServer(wallet, skip, endingTxid, requestLimit, function(err, res, shouldContinue) {
|
||||
getTxsFromServer(wallet, skip, endingTxid, requestLimit, function(err, res) {
|
||||
if (err) {
|
||||
$log.warn(bwcError.msg(err, 'Server Error')); //TODO
|
||||
if (err instanceof errors.CONNECTION_ERROR || (err.message && err.message.match(/5../))) {
|
||||
|
|
@ -454,7 +454,22 @@ angular.module('copayApp.services').factory('walletService', function($log, $tim
|
|||
return next(err);
|
||||
}
|
||||
|
||||
newTxs = newTxs.concat(processNewTxs(wallet, lodash.compact(res)));
|
||||
// Check if new txs are founds, if yes, lets investigate in the 50 next
|
||||
// To be sure we are not missing txs by sorting (maybe a new tx is after the "endingTxid"
|
||||
var newDiscoveredTxs = res.filter(function (x) {
|
||||
return confirmedTxs.filter(function (confX) {
|
||||
return confX.txid == x.txid;
|
||||
}).length == 0;
|
||||
});
|
||||
|
||||
$log.debug('Discovering TXs. Got:' + newDiscoveredTxs.length);
|
||||
|
||||
var shouldContinue = newDiscoveredTxs.length > 0;
|
||||
|
||||
// If no new tx, no need to check
|
||||
if (shouldContinue) {
|
||||
newTxs = newTxs.concat(processNewTxs(wallet, lodash.compact(newDiscoveredTxs)));
|
||||
}
|
||||
|
||||
progressFn(newTxs.concat(txsFromLocal), newTxs.length);
|
||||
|
||||
|
|
|
|||
|
|
@ -55,6 +55,7 @@
|
|||
.button {
|
||||
border-radius: 6px;
|
||||
&.button-full {
|
||||
border-radius: 0;
|
||||
display: block;
|
||||
}
|
||||
&-green {
|
||||
|
|
@ -73,7 +74,7 @@
|
|||
color: #FFF;
|
||||
}
|
||||
&-outline {
|
||||
@include button-style(transparent, #FFFFFF, #FAFAFA, #FFF, #FFFFFF);
|
||||
@include button-style(transparent, #FFFFFF, #FFFFFF, #FFFFFF, #FFFFFF);
|
||||
@include button-outline(#FFFFFF);
|
||||
background: none;
|
||||
box-shadow: none;
|
||||
|
|
|
|||
|
|
@ -8,4 +8,5 @@
|
|||
@import "action-minor";
|
||||
@import "expand-content";
|
||||
@import "fee-summary";
|
||||
@import "amount.scss";
|
||||
@import "formatted-amount";
|
||||
@import "wallet-balance";
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
.amount {
|
||||
.formatted-amount {
|
||||
display: inline-block;
|
||||
|
||||
.start,
|
||||
.middle,
|
||||
.end,
|
||||
3
src/sass/components/wallet-balance.scss
Normal file
3
src/sass/components/wallet-balance.scss
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
.wallet-balance-directive {
|
||||
display: inline-block;
|
||||
}
|
||||
|
|
@ -305,7 +305,8 @@
|
|||
|
||||
&.very-long {
|
||||
input, .unit, .primary-amount-display {
|
||||
font-size: 0.9em;
|
||||
font-size: 1.2em; // OK for iPhone 5 / SE with BCH to 8dp
|
||||
|
||||
|
||||
@media (min-width: 375px) {
|
||||
font-size: 1.3em;
|
||||
|
|
@ -382,41 +383,46 @@
|
|||
|
||||
.available-funds {
|
||||
color: #6F6F70;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.change-currency {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.warning {
|
||||
color: $v-warning-color-2;
|
||||
}
|
||||
|
||||
.extra,
|
||||
button.extra {
|
||||
/*display: flex;*/
|
||||
flex: 0 1 auto;
|
||||
}
|
||||
|
||||
button.extra {
|
||||
background: none;
|
||||
border: none;
|
||||
color: #000;
|
||||
font-family: 'ProximaNova';
|
||||
font-size: 14px;
|
||||
.extra {
|
||||
flex: 1;
|
||||
line-height: normal;
|
||||
min-height: auto;
|
||||
min-width: auto;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.button .icon:before {
|
||||
font-size: 14px;
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
.button {
|
||||
background: none;
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
color: #000;
|
||||
font-family: 'ProximaNova';
|
||||
font-size: 14px;
|
||||
line-height: normal;
|
||||
min-height: auto;
|
||||
min-width: auto;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.button {
|
||||
span {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
.button .icon:before {
|
||||
font-size: 14px;
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
|
||||
.button {
|
||||
span {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ click-to-accept {
|
|||
.click-to-accept {
|
||||
|
||||
&__button.button.button-primary.button-standard {
|
||||
border-radius: 0;
|
||||
height: 100%;
|
||||
max-width: 9999px;
|
||||
width: 100%;
|
||||
|
|
|
|||
|
|
@ -13,6 +13,9 @@ slide-to-accept {
|
|||
}
|
||||
|
||||
.slide {
|
||||
.button {
|
||||
border-radius: 0;
|
||||
}
|
||||
&__listener {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
#view-review {
|
||||
background-color: #494949;
|
||||
|
||||
slide-to-accept, slide-to-accept-success {
|
||||
margin-bottom: constant(safe-area-inset-bottom); /* iOS 11.0 */
|
||||
|
|
|
|||
|
|
@ -2,15 +2,15 @@
|
|||
@extend .deflash-blue;
|
||||
|
||||
&-header{
|
||||
height: 300px;
|
||||
//height: 300px;
|
||||
width: 100%;
|
||||
}
|
||||
&-contacts {
|
||||
height: calc(100vh - 300px - 50px - 44px); /* screen size - button container - bottom-tab-menu - header top */
|
||||
//height: calc(100vh - 300px - 50px - 44px); /* screen size - button container - bottom-tab-menu - header top */
|
||||
&.ios {
|
||||
height: calc(100vh - 300px - 50px - 44px - 18px); // Remove the notification-bar height on iOS
|
||||
//height: calc(100vh - 300px - 50px - 44px - 18px); // Remove the notification-bar height on iOS
|
||||
}
|
||||
overflow: scroll;
|
||||
//overflow: scroll;
|
||||
}
|
||||
|
||||
.input {
|
||||
|
|
@ -223,12 +223,12 @@
|
|||
}
|
||||
}
|
||||
#tab-send-header {
|
||||
height: 270px;
|
||||
//height: 270px;
|
||||
}
|
||||
#tab-send-contacts {
|
||||
height: calc(100vh - 270px - 50px - 44px); /* screen size - button container - bottom-tab-menu - header top */
|
||||
//height: calc(100vh - 270px - 50px - 44px); /* screen size - button container - bottom-tab-menu - header top */
|
||||
&.ios {
|
||||
height: calc(100vh - 270px - 50px - 44px - 18px); // Remove the notification-bar height on iOS
|
||||
//height: calc(100vh - 270px - 50px - 44px - 18px); // Remove the notification-bar height on iOS
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -261,6 +261,7 @@
|
|||
.no-alternative {
|
||||
padding-top: 45px;
|
||||
}
|
||||
|
||||
.item.item-footer {
|
||||
font-weight: lighter;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -11168,16 +11168,8 @@ qrcode {
|
|||
background-color: #fab915 !important; }
|
||||
|
||||
#tab-send-header {
|
||||
height: 300px;
|
||||
width: 100%; }
|
||||
|
||||
#tab-send-contacts {
|
||||
height: calc(100vh - 300px - 50px - 44px);
|
||||
/* screen size - button container - bottom-tab-menu - header top */
|
||||
overflow: scroll; }
|
||||
#tab-send-contacts.ios {
|
||||
height: calc(100vh - 300px - 50px - 44px - 18px); }
|
||||
|
||||
#tab-send .input {
|
||||
width: 100%; }
|
||||
#tab-send .input input {
|
||||
|
|
@ -11358,14 +11350,7 @@ qrcode {
|
|||
#tab-send .send-wrapper .buttons .button-qr {
|
||||
height: 60px; }
|
||||
#tab-send .send-wrapper .buttons .button-qr span {
|
||||
font-size: 16px; }
|
||||
#tab-send #tab-send-header {
|
||||
height: 270px; }
|
||||
#tab-send #tab-send-contacts {
|
||||
height: calc(100vh - 270px - 50px - 44px);
|
||||
/* screen size - button container - bottom-tab-menu - header top */ }
|
||||
#tab-send #tab-send-contacts.ios {
|
||||
height: calc(100vh - 270px - 50px - 44px - 18px); } }
|
||||
font-size: 16px; } }
|
||||
|
||||
#wallet-origin-destination .header--request {
|
||||
padding: 30px 24px;
|
||||
|
|
@ -15374,8 +15359,6 @@ log-options #check-bar .checkbox-icon {
|
|||
#view-review .fee-summary {
|
||||
position: absolute;
|
||||
bottom: 92px; }
|
||||
#view-review .fee-summary-spacer {
|
||||
height: 15px; }
|
||||
#view-review .shapeshift-banner, #view-review .bitpay-banner, #view-review .egifter-banner {
|
||||
box-shadow: none; }
|
||||
#view-review .warning {
|
||||
|
|
@ -15551,31 +15534,28 @@ ion-content.padded-bottom-cta-with-summary {
|
|||
.fee-summary .amount .fee-crypto {
|
||||
color: #A7A7A7; }
|
||||
|
||||
.amount .start,
|
||||
.amount .middle,
|
||||
.amount .end,
|
||||
.amount .currency {
|
||||
.formatted-amount {
|
||||
display: inline-block; }
|
||||
|
||||
.amount .start {
|
||||
font-size: 1em; }
|
||||
|
||||
.amount .middle {
|
||||
font-size: 0.7857em;
|
||||
margin-left: 5px; }
|
||||
|
||||
.amount .end {
|
||||
font-size: 0.7857em;
|
||||
margin-left: 5px; }
|
||||
|
||||
.amount.size-equal .middle,
|
||||
.amount.size-equal .end {
|
||||
font-size: 1em; }
|
||||
|
||||
.amount .currency {
|
||||
font-size: 1em;
|
||||
margin-left: 5px;
|
||||
text-transform: uppercase; }
|
||||
.formatted-amount .start,
|
||||
.formatted-amount .middle,
|
||||
.formatted-amount .end,
|
||||
.formatted-amount .currency {
|
||||
display: inline-block; }
|
||||
.formatted-amount .start {
|
||||
font-size: 1em; }
|
||||
.formatted-amount .middle {
|
||||
font-size: 0.7857em;
|
||||
margin-left: 5px; }
|
||||
.formatted-amount .end {
|
||||
font-size: 0.7857em;
|
||||
margin-left: 5px; }
|
||||
.formatted-amount.size-equal .middle,
|
||||
.formatted-amount.size-equal .end {
|
||||
font-size: 1em; }
|
||||
.formatted-amount .currency {
|
||||
font-size: 1em;
|
||||
margin-left: 5px;
|
||||
text-transform: uppercase; }
|
||||
|
||||
/* This is for rules that don't yet have a home.
|
||||
* Our goal is to delete this file. Search the regex: /class=".*CLASS.*?"/
|
||||
|
|
|
|||
|
|
@ -14,12 +14,14 @@
|
|||
<div class="send-amount-tool">
|
||||
<div class="send-amount-tool-input amount">
|
||||
<div class="primary-amount"
|
||||
ng-class="{long: vm.amount.length > 5, 'very-long': vm.amount.length > 10}">
|
||||
<span class="primary-amount-display text-selectable">{{vm.amount || '0'}} {{vm.unit}}</span>
|
||||
ng-class="{long: vm.amount.length > 5, 'very-long': vm.amount.length > 8}">
|
||||
<span class="primary-amount-display text-selectable">
|
||||
{{vm.amount || '0'}} {{vm.unit}}
|
||||
</span>
|
||||
</div>
|
||||
<span ng-show="vm.globalResult">{{vm.globalResult}} {{vm.unit}}</span>
|
||||
<span ng-show="vm.globalResult"><formatted-amount value="{{vm.globalResult}}" currency="{{vm.unit}}"></formatted-amount></span>
|
||||
<div class="alternative-amount">
|
||||
<span class="text-selectable">{{vm.alternativeAmount || '0.00'}}</span> <span>{{vm.alternativeUnit}}</span>
|
||||
<span class="text-selectable">{{vm.alternativeAmount || '0.00'}} {{vm.alternativeUnit}}</span>
|
||||
</div>
|
||||
<div class="switch-currencies" ng-click="vm.changeUnit()"><img src="img/icon-convert.svg"></div>
|
||||
</div>
|
||||
|
|
@ -32,17 +34,20 @@
|
|||
</div>
|
||||
|
||||
<div class="send-amount-extras text-center">
|
||||
<button class="extra button" ng-click="vm.openPopup()">
|
||||
<span>
|
||||
<img src="img/icon-alternative-currency-black.svg"/>
|
||||
 
|
||||
<span translate>Change Currency</span>
|
||||
</span>
|
||||
</button>
|
||||
<div class="extra available-funds"
|
||||
<div class="extra change-currency">
|
||||
<button class="button" ng-click="vm.openPopup()">
|
||||
<span>
|
||||
<img src="img/icon-alternative-currency-black.svg"/>
|
||||
<pre> </pre>
|
||||
<span translate>Change Currency</span>
|
||||
</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="extra available-funds"
|
||||
ng-class="{warning: vm.fundsAreInsufficient}"
|
||||
ng-if="!vm.isRequestingSpecificAmount" translate>
|
||||
<span>Available Funds:</span> <span>{{vm.availableFunds}}</span>
|
||||
<span translate>Available Funds</span>: <span><formatted-amount value="{{vm.availableFunds}}" size-equal="true"></formatted-amount></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -52,7 +57,7 @@
|
|||
<button class="button button-sendmax" ng-click="vm.sendMax()">
|
||||
<span>
|
||||
<span translate>Use All Available Funds</span> 
|
||||
<span class="available-funds-amount">({{vm.availableFunds}})</span>
|
||||
<span class="available-funds-amount">(<formatted-amount value="{{vm.availableFunds}}"></formatted-amount>)</span>
|
||||
</span>
|
||||
</button>
|
||||
</div>
|
||||
|
|
@ -88,7 +93,7 @@
|
|||
<button
|
||||
class="button button-full button-primary no-margin"
|
||||
ng-disabled="!vm.allowSend"
|
||||
ng-click="vm.finish()"
|
||||
ng-click="vm.next()"
|
||||
style="position: absolute; bottom: 0;"
|
||||
translate>
|
||||
Next
|
||||
|
|
|
|||
|
|
@ -32,15 +32,15 @@
|
|||
</div>
|
||||
<div ng-show="!showingPaymentReceived" class="amount">
|
||||
<div ng-show="selectedPriceDisplay=='fiat'">
|
||||
<span class="size-36">{{amountUnitStr}}</span>
|
||||
<span class="size-36"><formatted-amount value="{{amountUnitStr}}"></formatted-amount></span>
|
||||
<div class="size-14 amount-alternative">
|
||||
{{altAmountStr | uppercase}}
|
||||
<formatted-amount value="{{altAmountStr | uppercase}}"></formatted-amount>
|
||||
</div>
|
||||
</div>
|
||||
<div ng-show="selectedPriceDisplay=='crypto'">
|
||||
<span class="size-36">{{altAmountStr | uppercase}}</span>
|
||||
<span class="size-36"><formatted-amount value="{{altAmountStr | uppercase}}"></formatted-amount></span>
|
||||
<div class="size-14 amount-alternative">
|
||||
{{amountUnitStr}}
|
||||
<formatted-amount value="{{amountUnitStr}}"></formatted-amount>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<div class="amount"
|
||||
ng-class="{ 'size-equal': displaySizeEqual }">
|
||||
<span ng-if="start.length > 0" class="start">{{start}}</span><span ng-if="middle.length > 0" class="middle">{{middle}}</span><span ng-if="end.length > 0" class="end">{{end}}</span><span ng-if="currency.length > 0" class="currency">{{currency}}</span>
|
||||
<div class="formatted-amount"
|
||||
ng-class="{ 'size-equal': displaySizeEqual }" ng-show="canShow">
|
||||
<span ng-if="start.length > 0" class="start">{{start}}</span><span ng-if="middle.length > 0" class="middle">{{middle}}</span><span ng-if="end.length > 0" class="end">{{end}}</span><span ng-if="vm.currency.length > 0" class="currency">{{vm.currency}}</span>
|
||||
</div>
|
||||
|
|
@ -24,7 +24,7 @@
|
|||
(possible double spend)
|
||||
</span>
|
||||
<span ng-if="tx.action != 'invalid'">
|
||||
– {{tx.amountStr}}
|
||||
– <formatted-amount value={{tx.amountStr}}></formatted-amount>
|
||||
</span>
|
||||
</span>
|
||||
<div>
|
||||
|
|
|
|||
3
www/views/includes/wallet-balance.html
Normal file
3
www/views/includes/wallet-balance.html
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
<div class="wallet-balance-directive">
|
||||
<formatted-amount value="{{displayAmount}}"></formatted-amount><span ng-if="age">{{· (cachedBalanceUpdatedOn * 1000 | amTimeAgo)}}</span>
|
||||
</div>
|
||||
|
|
@ -10,7 +10,7 @@
|
|||
<div ng-if="notification.type == 'NewOutgoingTx'">
|
||||
<span translate>Payment Sent </span>
|
||||
<div class="wallet-activity-amount">
|
||||
{{notification.amountStr}}
|
||||
<formatted-amount value={{notification.amountStr}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
@ -19,7 +19,7 @@
|
|||
<div ng-if="notification.type == 'NewIncomingTx'">
|
||||
<span translate>Payment Received</span>
|
||||
<div class="wallet-activity-amount">
|
||||
{{notification.amountStr}}
|
||||
<formatted-amount value={{notification.amountStr}}></formatted-amount>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
@ -27,7 +27,7 @@
|
|||
<span translate>Proposal Deleted</span>:
|
||||
<b>{{notification.message}}</b>
|
||||
<div class="wallet-activity-amount">
|
||||
{{notification.amountStr}}:
|
||||
<formatted-amount value={{notification.amountStr}}></formatted-amount>:
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
@ -35,7 +35,7 @@
|
|||
<span translate>Proposal Rejected</span>:
|
||||
<b>{{notification.message}}</b>
|
||||
<div class="wallet-activity-amount">
|
||||
{{notification.amountStr}}:
|
||||
<formatted-amount value={{notification.amountStr}}></formatted-amount>:
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
@ -43,7 +43,7 @@
|
|||
<span translate>New Proposal</span>:
|
||||
<b>{{notification.message}}</b>
|
||||
<div class="wallet-activity-amount">
|
||||
{{notification.amountStr}}
|
||||
<formatted-amount value={{notification.amountStr}}></formatted-amount>
|
||||
</div>
|
||||
</span>
|
||||
|
||||
|
|
@ -51,7 +51,7 @@
|
|||
<span translate>Proposal Accepted</span>:
|
||||
<b>{{notification.message}}</b>
|
||||
<div class="wallet-activity-amount">
|
||||
{{notification.amountStr}}
|
||||
<formatted-amount value={{notification.amountStr}}></formatted-amount>
|
||||
</div>
|
||||
</span>
|
||||
|
||||
|
|
|
|||
|
|
@ -64,17 +64,16 @@
|
|||
|
||||
<span class="item-note text-right wallet-details__tx-amount">
|
||||
<span class="wallet-details__tx-amount" ng-class="{'wallet-details__tx-amount--recent': btx.recent, 'wallet-details__tx-amount--received': btx.action == 'received', 'wallet-details__tx-amount--sent': btx.action == 'sent'}">
|
||||
<span ng-if="btx.action == 'sent'">–</span>
|
||||
<span class="size-12" ng-if="btx.action == 'invalid'" translate>
|
||||
(possible double spend)
|
||||
</span>
|
||||
<span ng-if="btx.action != 'invalid'">
|
||||
{{btx.amountValueStr}} {{btx.amountUnitStr}}
|
||||
<formatted-amount value="{{btx.action == 'sent'?'-':''}}{{btx.amountValueStr}}" currency="{{btx.amountUnitStr}}"></formatted-amount>
|
||||
</span>
|
||||
</span>
|
||||
<div>
|
||||
<span class="size-12 wallet-details__tx-amount" ng-class="{'wallet-details__tx-amount--recent': btx.recent, 'wallet-details__tx-amount--received': btx.action == 'received', 'wallet-details__tx-amount--sent': btx.action == 'sent'}">
|
||||
{{btx.alternativeAmountStr}}
|
||||
<formatted-amount value="{{btx.action == 'sent'?'-':''}}{{btx.alternativeAmountStr}}"></formatted-amount>
|
||||
</span>
|
||||
</div>
|
||||
</span>
|
||||
|
|
|
|||
|
|
@ -7,8 +7,12 @@
|
|||
Incomplete
|
||||
</span>
|
||||
<span ng-if="wallet.isComplete()">
|
||||
<span ng-if="selectedPriceDisplay == 'crypto' && !wallet.balanceHidden && !wallet.scanning"> {{wallet.status.totalBalanceStr ? wallet.status.totalBalanceStr : ( wallet.cachedBalance ? wallet.cachedBalance + (wallet.cachedBalanceUpdatedOn ? ' · ' + ( wallet.cachedBalanceUpdatedOn * 1000 | amTimeAgo) : '') : '' ) }} </span>
|
||||
<span ng-if="selectedPriceDisplay == 'fiat' && !wallet.balanceHidden && !wallet.scanning"> {{wallet.status.totalBalanceAlternative ? wallet.status.totalBalanceAlternative : ( wallet.cachedBalance ? wallet.cachedBalance + (wallet.cachedBalanceUpdatedOn ? ' · ' + ( wallet.cachedBalanceUpdatedOn * 1000 | amTimeAgo) : '') : '' ) }} {{wallet.status.alternativeIsoCode}}</span>
|
||||
<span ng-if="selectedPriceDisplay == 'crypto' && !wallet.balanceHidden && !wallet.scanning">
|
||||
<formatted-amount value="{{wallet.status.totalBalanceStr ? wallet.status.totalBalanceStr : ( wallet.cachedBalance ? wallet.cachedBalance : '' ) }}"></formatted-amount> {{(!wallet.status.totalBalanceStr && wallet.cachedBalanceUpdatedOn ? ' · ' + ( wallet.cachedBalanceUpdatedOn * 1000 | amTimeAgo) : '')}}
|
||||
</span>
|
||||
<span ng-if="selectedPriceDisplay == 'fiat' && !wallet.balanceHidden && !wallet.scanning">
|
||||
<formatted-amount value="{{wallet.status.totalBalanceAlternative ? wallet.status.totalBalanceAlternative : (wallet.cachedBalance ? wallet.cachedBalance : '') }}" currency="{{wallet.status.alternativeIsoCode}}"></formatted-amount> {{( !wallet.status.totalBalanceAlternative && wallet.cachedBalance ? (wallet.cachedBalanceUpdatedOn ? ' · ' + ( wallet.cachedBalanceUpdatedOn * 1000 | amTimeAgo) : '') : '' )}}
|
||||
</span>
|
||||
<span ng-if="wallet.scanning" translate> Scanning funds... </span>
|
||||
|
||||
<span ng-if="wallet.balanceHidden && !wallet.scanning" translate>[Balance Hidden]</span>
|
||||
|
|
|
|||
|
|
@ -27,8 +27,8 @@
|
|||
Incomplete
|
||||
</span>
|
||||
<span ng-if="wallet.isComplete()">
|
||||
<span ng-if="displayBalanceAsFiat && !wallet.balanceHidden">{{wallet.status.totalBalanceAlternative}} {{wallet.status.alternativeIsoCode}}</span>
|
||||
<span ng-if="!displayBalanceAsFiat && !wallet.balanceHidden">{{wallet.status.availableBalanceStr}}</span>
|
||||
<span ng-if="displayBalanceAsFiat && !wallet.balanceHidden"><formatted-amount value="{{wallet.status.totalBalanceAlternative}}" currency="{{wallet.status.alternativeIsoCode}}"></formatted-amount></span>
|
||||
<span ng-if="!displayBalanceAsFiat && !wallet.balanceHidden"><formatted-amount value="{{wallet.status.availableBalanceStr}}"></formatted-amount></span>
|
||||
<span ng-if="wallet.balanceHidden" translate>[Balance Hidden]</span>
|
||||
</span>
|
||||
</span>
|
||||
|
|
@ -58,8 +58,8 @@
|
|||
Incomplete
|
||||
</span>
|
||||
<span ng-if="wallet.isComplete()">
|
||||
<span ng-if="displayBalanceAsFiat && !wallet.balanceHidden">{{wallet.status.totalBalanceAlternative}} {{wallet.status.alternativeIsoCode}}</span>
|
||||
<span ng-if="!displayBalanceAsFiat && !wallet.balanceHidden">{{wallet.status.availableBalanceStr}}</span>
|
||||
<span ng-if="displayBalanceAsFiat && !wallet.balanceHidden"><formatted-amount value="{{wallet.status.totalBalanceAlternative}}" currency="{{wallet.status.alternativeIsoCode}}"></formatted-amount></span>
|
||||
<span ng-if="!displayBalanceAsFiat && !wallet.balanceHidden"><formatted-amount value="{{wallet.status.availableBalanceStr}}"></formatted-amount></span>
|
||||
<span ng-if="wallet.balanceHidden" translate>[Balance Hidden]</span>
|
||||
</span>
|
||||
</span>
|
||||
|
|
|
|||
|
|
@ -3,8 +3,7 @@
|
|||
<ion-nav-title>
|
||||
{{'Review Transaction' | translate}}
|
||||
</ion-nav-title>
|
||||
<ion-nav-back-button>
|
||||
</ion-nav-back-button>
|
||||
<ion-nav-back-button ng-click="vm.goBack()"></ion-nav-back-button>
|
||||
</ion-nav-bar>
|
||||
|
||||
<ion-content class="padded-bottom-cta-with-summary bg-neutral">
|
||||
|
|
@ -12,14 +11,14 @@
|
|||
<div class="header {{vm.origin.currency.toLowerCase()}}" ng-class="vm.thirdParty.id">
|
||||
<div class="content">
|
||||
<p>{{vm.sendingTitle}}</p>
|
||||
<p class="large">{{vm.primaryAmount}} {{vm.primaryCurrency}}</p>
|
||||
<p ng-show="vm.secondaryAmount">{{vm.secondaryAmount}} {{vm.secondaryCurrency}}</p>
|
||||
<p class="large"><formatted-amount value="{{vm.primaryAmount}}" currency="{{vm.primaryCurrency}}"></formatted-amount></p>
|
||||
<p ng-show="vm.secondaryAmount"><formatted-amount value="{{vm.secondaryAmount}}" currency="{{vm.secondaryCurrency}}"></formatted-amount></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="content-frame negative-top">
|
||||
<div class="card card-gutter-compact">
|
||||
<div class="item item-compact" translate>From:</div>
|
||||
<div class="item item-compact"><span translate>From</span>:</div>
|
||||
<div class="item item-gutterless item-complex item-avatar">
|
||||
<div class="item-content item-content-avatar">
|
||||
<i class="icon big-icon-svg theme-circle theme-circle-services">
|
||||
|
|
@ -53,7 +52,7 @@
|
|||
<img ng-if="vm.thirdParty.name === 'BitPay'" src="img/icon-bitpay.svg" class="bg">
|
||||
<img ng-if="vm.thirdParty.name === 'eGifter'" src="img/icon-egifter.png" class="bg">
|
||||
<h2>{{vm.destination.name}}</h2>
|
||||
<p translate ng-if="!vm.paymentExpired">Payment expires: {{vm.remainingTimeStr}}</p>
|
||||
<p translate ng-if="!vm.paymentExpired"><span translate>Payment expires:</span> {{vm.remainingTimeStr}}</p>
|
||||
<p class="warning" translate ng-if="vm.paymentExpired">Payment request has expired</p>
|
||||
</div>
|
||||
<div class="item-content item-content-compact" ng-init="addressExpanded = false" ng-if="vm.destination.kind === 'address' && !vm.thirdParty">
|
||||
|
|
@ -68,14 +67,14 @@
|
|||
ng-class="{ 'expand-content-revealed': vm.memoExpanded }"
|
||||
ng-click="vm.memoExpanded = !vm.memoExpanded">
|
||||
<img src="img/icon-bookmark.svg" class="action-icon">
|
||||
<span class="action-text">Add personal note</span>
|
||||
<span class="action-text" translate>Add personal note</span>
|
||||
</div>
|
||||
<div class="card card-gutter-compact expand-content"
|
||||
ng-class="{ 'expand-content-revealed': vm.memoExpanded }">
|
||||
<div class="item item-compact" translate>Personal Note:</div>
|
||||
<div class="item">
|
||||
<div class="item-content">
|
||||
<textarea elastic placeholder="{{btx.note.body || btx.message || 'Enter text here'}}" class="elastic" ng-model="vm.memo"></textarea>
|
||||
<textarea elastic placeholder="{{btx.note.body || btx.message || vm.personalNotePlaceholder}}" class="elastic" ng-model="vm.memo"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -85,12 +84,12 @@
|
|||
</ion-content>
|
||||
|
||||
<div class="fee-summary">
|
||||
<div ng-if="vm.thirdParty && vm.thirdParty.id === 'bip70'" translate="">Suggested by merchant:</div>
|
||||
<div ng-if="vm.thirdParty && vm.thirdParty.id === 'bip70'" translate>Suggested by merchant:</div>
|
||||
<div class="amount">
|
||||
<div class="fee-fiat positive" ng-if="vm.feeLessThanACent">Fee: Less than 1 cent</div>
|
||||
<div class="fee-fiat" ng-class="vm.feeIsHigh ? 'negative' : 'positive'" ng-if="!vm.feeLessThanACent">Fee: {{vm.feeFiat}} {{vm.feeCurrency}}</div>
|
||||
<div class="fee-fiat positive" ng-if="vm.feeLessThanACent"><span translate>Fee:</span> <span translate>Less than 1 cent</span></div>
|
||||
<div class="fee-fiat" ng-class="vm.feeIsHigh ? 'negative' : 'positive'" ng-if="!vm.feeLessThanACent"><span translate>Fee:</span> {{vm.feeFiat}} {{vm.feeCurrency}}</div>
|
||||
<div class="fee-crypto" ng-if="vm.feeCrypto">
|
||||
{{vm.feeCrypto}} {{vm.origin.currency}}
|
||||
<formatted-amount value="{{vm.feeCrypto}}" currency="{{vm.origin.currency}}"></formatted-amount>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@
|
|||
<span translate>Buy Bitcoin</span>
|
||||
</div>
|
||||
<div class="button button-outline button-grey-outline" ng-class="{'ng-hide': !walletsWithFunds.length}"
|
||||
ui-sref="tabs.send">
|
||||
ng-click="startFreshSend()">
|
||||
<span translate>Send</span>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -61,8 +61,8 @@
|
|||
</svg>
|
||||
<p class="success animated fadeIn">
|
||||
<br/>Payment Received!
|
||||
<span ng-if="!(displayBalanceAsFiat && paymentReceivedAlternativeAmount)" class="payment-received-amount">{{ paymentReceivedAmount }} <span class="payment-received-currency">{{ paymentReceivedCoin }}</span></span>
|
||||
<span ng-if="displayBalanceAsFiat && paymentReceivedAlternativeAmount" class="payment-received-amount">{{ paymentReceivedAlternativeAmount }}</span></span>
|
||||
<span ng-if="!(displayBalanceAsFiat && paymentReceivedAlternativeAmount)" class="payment-received-amount"><formatted-amount value="{{ paymentReceivedAmount }}" currency="{{paymentReceivedCoin}}"></formatted-amount></span>
|
||||
<span ng-if="displayBalanceAsFiat && paymentReceivedAlternativeAmount" class="payment-received-amount"><formatted-amount value="{{ paymentReceivedAlternativeAmount }}"></formatted-amount></span></span>
|
||||
Return To Address<br/>
|
||||
</p>
|
||||
</div>
|
||||
|
|
@ -95,8 +95,8 @@
|
|||
{{wallet.name || wallet.id}}
|
||||
</span>
|
||||
<p>
|
||||
<span ng-if="displayBalanceAsFiat && !wallet.balanceHidden" translate> {{wallet.status.totalBalanceAlternative}} {{wallet.status.alternativeIsoCode}} </span>
|
||||
<span ng-if="!displayBalanceAsFiat && !wallet.balanceHidden"> {{wallet.status.totalBalanceStr}} </span>
|
||||
<span ng-if="displayBalanceAsFiat && !wallet.balanceHidden" translate> <formatted-amount value="{{wallet.status.totalBalanceAlternative}}" currency="{{wallet.status.alternativeIsoCode}}"></formatted-amount></span>
|
||||
<span ng-if="!displayBalanceAsFiat && !wallet.balanceHidden"> <formatted-amount value="{{wallet.status.totalBalanceStr}}"></formatted-amount> </span>
|
||||
|
||||
<span ng-if="wallet.balanceHidden" translate>[Balance Hidden]</span>
|
||||
<span class="tab-home__wallet__multisig-number" ng-if="wallet.n > 1">
|
||||
|
|
|
|||
|
|
@ -4,6 +4,32 @@
|
|||
</ion-nav-bar>
|
||||
<ion-content>
|
||||
<div id="tab-send-header" ng-if="hasFunds">
|
||||
|
||||
<div class="content-frame" ng-if="fromWallet">
|
||||
<div class="card card-gutter-compact">
|
||||
<div class="item item-compact"><span translate>From</span>:</div>
|
||||
<div class="item item-gutterless item-complex item-avatar">
|
||||
<div class="item-content item-content-avatar">
|
||||
<i class="icon big-icon-svg theme-circle theme-circle-services">
|
||||
<div class="bg icon-wallet"
|
||||
style="background-color: {{fromWallet.color}}"
|
||||
></div>
|
||||
</i>
|
||||
<h2>{{fromWallet.name}}</h2>
|
||||
<wallet-balance
|
||||
display-as-fiat="{{displayBalanceAsFiat}}"
|
||||
wallet-status="{{fromWallet.status}}"
|
||||
wallet-cached-balance="{{fromWallet.cachedBalance}}"
|
||||
wallet-cached-balance-updated-on="{{fromWallet.cachedBalanceUpdatedOn}}"
|
||||
wallet-cached-status="{{fromWallet.cachedStatus}}"
|
||||
total-balance-sat="{{fromWallet.status.totalBalanceSat}}"></wallet-balance>
|
||||
<!--<p ng-show="vm.origin.balanceAmount">{{vm.origin.balanceAmount}} {{vm.origin.balanceCurrency}}</p>-->
|
||||
<!--<formatted-amount value="{{fromWallet.status.totalBalanceStr ? fromWallet.status.totalBalanceStr : ( fromWallet.cachedBalance ? fromWallet.cachedBalance + (fromWallet.cachedBalanceUpdatedOn ? ' · ' + ( fromWallet.cachedBalanceUpdatedOn * 1000 | amTimeAgo) : '') : '' ) }}"></formatted-amount>-->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="send-wrapper item">
|
||||
<div class="row">
|
||||
<div class="input" ng-class="{'focus': searchFocus}">
|
||||
|
|
@ -22,7 +48,7 @@
|
|||
</button>
|
||||
</div>
|
||||
<div class="col-60">
|
||||
<button class="button button-standard button-primary button-outline" ui-sref="tabs.send.wallet-to-wallet">
|
||||
<button class="button button-standard button-primary button-outline" ng-click="startWalletToWalletTransfer()">
|
||||
<img src="img/icon-w2w.svg"/><br/>
|
||||
<span translate>Transfer between wallets</span>
|
||||
</button>
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
<ion-nav-view name="tab-scan"></ion-nav-view>
|
||||
</ion-tab>
|
||||
|
||||
<ion-tab class="track_tab_open" id="tab_open_send" title="{{'Send'|translate}}" icon-off="ico-send" icon-on="ico-send-selected" ui-sref="tabs.send">
|
||||
<ion-tab class="track_tab_open" id="tab_open_send" title="{{'Send'|translate}}" icon-off="ico-send" icon-on="ico-send-selected" ng-click="startFreshSend()">
|
||||
<ion-nav-view name="tab-send"></ion-nav-view>
|
||||
</ion-tab>
|
||||
|
||||
|
|
|
|||
|
|
@ -24,13 +24,13 @@
|
|||
<span ng-if="btx.action == 'received'" translate>Receiving</span>
|
||||
</div>
|
||||
<div class="amount-label">
|
||||
<div class="amount">{{btx.amountValueStr}} <span class="unit">{{btx.amountUnitStr}}</span></div>
|
||||
<div class="amount"><formatted-amount value="{{btx.action == 'sent'?'-':''}}{{btx.amountValueStr}}" currency="{{btx.amountUnitStr}}"></formatted-amount></div>
|
||||
<div class="alternative" ng-click="showRate = !showRate">
|
||||
<span ng-if="!showRate">{{btx.alternativeAmountStr}}</span>
|
||||
<span ng-if="!showRate"><formatted-amount value="{{btx.action == 'sent'?'-':''}}{{btx.alternativeAmountStr}}"></formatted-amount></span>
|
||||
<span ng-if="showRate">
|
||||
<span ng-if="!rate">...</span>
|
||||
<span ng-if="rate">
|
||||
{{rate| currency:'':2}} {{alternativeIsoCode}} ({{rateDate | amDateFormat:'MM/DD/YYYY HH:mm a'}})
|
||||
<formatted-amount value="{{rate| currency:'':2}}" currency="{{alternativeIsoCode}}"></formatted-amount> ({{rateDate | amDateFormat:'MM/DD/YYYY HH:mm a'}})
|
||||
</span>
|
||||
</span>
|
||||
</div>
|
||||
|
|
@ -115,7 +115,7 @@
|
|||
<span class="label" translate>Fee</span>
|
||||
<span class="m10l">{{btx.feeStr || '...'}}</span>
|
||||
<span class="item-note m10l">
|
||||
<span>{{btx.feeFiatStr || '...'}} <span class="fee-rate" ng-if="btx.feeRateStr" translate>- {{btx.feeRateStr}} of the transaction</span></span>
|
||||
<span><span ng-if="btx.feeFiatStr"><formatted-amount value="{{btx.feeFiatStr}}"></formatted-amount></span><span ng-if="!btx.feeFiatStr">...</span><span class="fee-rate" ng-if="btx.feeRateStr" translate>- {{btx.feeRateStr}} of the transaction</span></span>
|
||||
</span>
|
||||
</div>
|
||||
<div class="item low-fees" ng-if="btx.action == 'received' && btx.lowFees">
|
||||
|
|
|
|||
|
|
@ -10,6 +10,11 @@
|
|||
</button>
|
||||
</ion-nav-buttons>
|
||||
</ion-nav-bar>
|
||||
<style type="text/css">
|
||||
.button-white-outline.button-outline.active, .button-white-outline.button-outline.activated {
|
||||
color: {{ wallet.color }};
|
||||
}
|
||||
</style>
|
||||
|
||||
<div class="bp-content" ng-class="{'status-bar': isCordova}">
|
||||
|
||||
|
|
@ -34,12 +39,14 @@
|
|||
on-hold="hideToggle()"
|
||||
ng-style="{'transform': amountScale}"
|
||||
ng-class="{amount__balance: amountIsCollapsible}">
|
||||
<strong class="size-25">{{status.totalBalanceAlternative}} {{status.alternativeIsoCode}}</strong>
|
||||
<strong class="size-36" ng-show="status.totalBalanceAlternative">
|
||||
<formatted-amount value="{{status.totalBalanceAlternative}}" currency="{{status.alternativeIsoCode}}"></formatted-amount>
|
||||
</strong>
|
||||
<div
|
||||
class="size-14 amount-alternative"
|
||||
ng-if="status.totalBalanceAlternative && wallet.network == 'livenet'"
|
||||
ng-if="status.totalBalanceStr && wallet.network == 'livenet'"
|
||||
ng-style="{opacity: altAmountOpacity}">
|
||||
{{status.totalBalanceStr}}
|
||||
<formatted-amount value="{{status.totalBalanceStr}}" size-equal="true"></formatted-amount>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
@ -47,13 +54,16 @@
|
|||
ng-show="selectedPriceDisplay=='crypto' && !updateStatusError && !wallet.balanceHidden && !wallet.scanning"
|
||||
on-hold="hideToggle()"
|
||||
ng-style="{'transform': amountScale}"
|
||||
ng-if="status.totalBalanceStr"
|
||||
ng-class="{amount__balance: amountIsCollapsible}">
|
||||
<strong class="size-25">{{status.totalBalanceStr}}</strong>
|
||||
<strong class="size-36">
|
||||
<formatted-amount value="{{status.totalBalanceStr}}"></formatted-amount>
|
||||
</strong>
|
||||
<div
|
||||
class="size-14 amount-alternative"
|
||||
ng-if="status.totalBalanceAlternative && wallet.network == 'livenet'"
|
||||
ng-style="{opacity: altAmountOpacity}">
|
||||
{{status.totalBalanceAlternative}} {{status.alternativeIsoCode}}
|
||||
<formatted-amount value="{{status.totalBalanceAlternative}}" currency="{{status.alternativeIsoCode}}"></formatted-amount>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
@ -86,7 +96,7 @@
|
|||
</strong>
|
||||
|
||||
<span>
|
||||
{{status.spendableBalanceAlternative}} {{status.alternativeIsoCode}}
|
||||
<formatted-amount value="{{status.spendableBalanceAlternative}}" currency="{{status.alternativeIsoCode}}"></formatted-amount>
|
||||
</span>
|
||||
</button>
|
||||
</div>
|
||||
|
|
@ -143,12 +153,12 @@
|
|||
on-hold="hideToggle()"
|
||||
ng-style="{'transform': amountScale}"
|
||||
ng-class="{amount__balance: amountIsCollapsible}">
|
||||
<strong class="size-25">{{status.totalBalanceStr}}</strong>
|
||||
<strong ng-if="status.totalBalanceStr" class="size-36"><formatted-amount value="{{status.totalBalanceStr}}"></formatted-amount></strong>
|
||||
<div
|
||||
class="size-14 amount-alternative"
|
||||
ng-if="status.totalBalanceAlternative && wallet.network == 'livenet'"
|
||||
ng-style="{opacity: altAmountOpacity}">
|
||||
{{status.totalBalanceAlternative}} {{status.alternativeIsoCode}}
|
||||
<formatted-amount value="{{status.totalBalanceAlternative}}" currency="{{status.alternativeIsoCode}}"></formatted-amount>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
@ -158,12 +168,12 @@
|
|||
on-hold="hideToggle()"
|
||||
ng-style="{'transform': amountScale}"
|
||||
ng-class="{amount__balance: amountIsCollapsible}">
|
||||
<strong class="size-25">{{status.totalBalanceAlternative}} {{status.alternativeIsoCode}}</strong>
|
||||
<strong class="size-36"><formatted-amount value="{{status.totalBalanceAlternative}}" currency="{{status.alternativeIsoCode}}"></formatted-amount></strong>
|
||||
<div
|
||||
class="size-16 amount-alternative"
|
||||
ng-if="status.totalBalanceAlternative && wallet.network == 'livenet'"
|
||||
class="size-14 amount-alternative"
|
||||
ng-if="status.totalBalanceStr && wallet.network == 'livenet'"
|
||||
ng-style="{opacity: altAmountOpacity}">
|
||||
{{status.totalBalanceStr}}
|
||||
<formatted-amount value="{{status.totalBalanceStr}}"></formatted-amount>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
@ -196,7 +206,7 @@
|
|||
</strong>
|
||||
|
||||
<span>
|
||||
{{status.spendableBalanceAlternative}} {{status.alternativeIsoCode}}
|
||||
<formatted-amount value="{{status.spendableBalanceAlternative}}" currency="{{status.alternativeIsoCode}}"></formatted-amount>
|
||||
</span>
|
||||
</button>
|
||||
</div>
|
||||
|
|
@ -205,7 +215,7 @@
|
|||
<button class="button button-standard button-primary amount__button-balance size-14" ng-click="openBalanceModal()">
|
||||
<i class="icon ion-ios-checkmark-outline"></i>
|
||||
<strong>
|
||||
{{status.spendableBalanceAlternative}} {{status.alternativeIsoCode}}
|
||||
<formatted-amount value="{{status.spendableBalanceAlternative}}" currency="{{status.alternativeIsoCode}}"></formatted-amount>
|
||||
</strong>
|
||||
|
||||
<span>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue