diff --git a/.gitignore b/.gitignore index 837bbf05d..762a6d9e9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # translation -po/*.mo +i18n/po/*.mo +i18n/crowdin_api_key.txt src/js/translations.js # version @@ -26,9 +27,6 @@ browser-extensions/chrome/copay-chrome-extension.zip logs *.log -# readme -README.html - # Runtime data pids *.pid diff --git a/CHANGES.md b/CHANGES.md deleted file mode 100644 index 696a9f691..000000000 --- a/CHANGES.md +++ /dev/null @@ -1,45 +0,0 @@ -CHANGES -======= - -v0.2.1 ------- - -New features ------------- - * Smart backup restore procedure: now it is possible to restore all wallet's fund with an old backup (thanks Ian for the feedback). - * Transaction proposals can now have a short note attached for reference (thanks Gentry for the feedback). - * New wallet settings: Bitcoin Unit, defaults to *bits* (thanks Eric for the suggestion) - * Backup is now auto generated on wallet completion (thanks Eric for the suggestion) - * A wallet now can be removed from a particular system from the UX. - * New address book shared between copayers. - -Security --------- - * Asymmetric encryption and signing using ECIES. Details at https://gist.github.com/ryanxcharles/c29fc94d31de7c8c89dc - * Default SSL connection to Insight and PeerJs servers - -Code quality ------------- - * Test coverage from 60.9% to 74% (1) (thanks Ryan for insisting on this) - * Mayor refactoring of Angular services (backupService, controllerUtils, wallet's Indexes handling, txProposal merge related functions, - * Add +30 karma tests for Angular controllers and services - * Unified js-beautifier format throw all the code - -Other ------ - * Backup to email have been removed - * Performance improvements when signing transactions - * Review of Copay 1-of-1 UX - * Minor UX and wording fixes (address list on receiving funds, notifications fixes, error handling on bad passwords, network timeouts, feedback at importing process, etc). - -Next steps ----------- - * Make Copay available in other platforms (update Gordon's Atom shell packages, Android bundle, Firefox / Chrome extensions). - * Implement Copay 2.0 design: http://invis.io/FWZGJWUS (please take a look at leave comments) - - -Please check https://github.com/bitpay/copay/wiki/Copay-Known-issues before using Copay. - - -(1) not including Karma tests, not included on Coveralls yet. - diff --git a/CONTRIBUTE.md b/CONTRIBUTE.md deleted file mode 100644 index 4400c428f..000000000 --- a/CONTRIBUTE.md +++ /dev/null @@ -1,25 +0,0 @@ -# QA - Bug Reporting - -To provide the most helpful bug reports to our developers, ensure that each issue/report that you create contains the following information: - -- Brief description of the bug -- Steps to reproduce the bug -- Platform in which you are testing -- Screenshots if possible -- Expected behaviour - - -**For example:** - -``` -Description: The application fails at login. - -1) Launch the app `npm run start` -2) Click on "Join a Wallet" -3) Type an nonexistent username -4) The app stops working and throws an "Unhandled exception" error. - -Expected: The app should login and show the home screen without any error. - -Platform: Android 4.3, Android 4.4, iOS -``` diff --git a/Gruntfile.js b/Gruntfile.js index 0ab31cdc4..4f4747dc4 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -3,27 +3,6 @@ module.exports = function(grunt) { // Project Configuration grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), - release: { - options: { - bump: true, - file: 'package.json', - add: true, - commit: true, - tag: true, - push: true, - pushTags: true, - npm: false, - npmtag: true, - tagName: 'v<%= version %>', - commitMessage: 'New release v<%= version %>', - tagMessage: 'Version <%= version %>', - github: { - repo: 'bitpay/copay', - usernameVar: 'GITHUB_USERNAME', //ENVIRONMENT VARIABLE that contains Github username - passwordVar: 'GITHUB_PASSWORD' //ENVIRONMENT VARIABLE that contains Github password - } - } - }, exec: { version: { command: 'node ./util/version.js' @@ -45,10 +24,6 @@ module.exports = function(grunt) { grunt.log.writeln('Waiting for more changes...'); }, }, - readme: { - files: ['README.md'], - tasks: ['markdown'] - }, css: { files: ['src/css/*.css'], tasks: ['concat:css'] @@ -67,16 +42,6 @@ module.exports = function(grunt) { tasks: ['concat:js'] } }, - markdown: { - all: { - files: [{ - expand: true, - src: 'README.md', - dest: './doc', - ext: '.html' - }] - } - }, concat: { options: { sourceMap: false, @@ -144,7 +109,7 @@ module.exports = function(grunt) { nggettext_extract: { pot: { files: { - 'po/template.pot': [ + 'i18n/po/template.pot': [ 'public/index.html', 'public/views/*.html', 'public/views/**/*.html', @@ -161,7 +126,7 @@ module.exports = function(grunt) { module: 'copayApp' }, files: { - 'src/js/translations.js': ['po/*.po'] + 'src/js/translations.js': ['i18n/po/*.po'] } }, }, @@ -174,8 +139,8 @@ module.exports = function(grunt) { }, linux: { files: [ - {expand: true, cwd: 'webkitbuilds/',src: ['.desktop', 'favicon.ico'],dest: 'webkitbuilds/copay/linux32/', flatten: true, filter: 'isFile' }, - {expand: true, cwd: 'webkitbuilds/',src: ['.desktop', 'favicon.ico'],dest: 'webkitbuilds/copay/linux64/', flatten: true, filter: 'isFile' }, + {expand: true, cwd: 'webkitbuilds/',src: ['.desktop', '../public/img/icons/favicon.ico', '../public/img/icons/icon-256.png'],dest: 'webkitbuilds/copay/linux32/', flatten: true, filter: 'isFile' }, + {expand: true, cwd: 'webkitbuilds/',src: ['.desktop', '../public/img/icons/favicon.ico', '../public/img/icons/icon-256.png'],dest: 'webkitbuilds/copay/linux64/', flatten: true, filter: 'isFile' }, ], } }, @@ -234,20 +199,14 @@ module.exports = function(grunt) { grunt.loadNpmTasks('grunt-contrib-watch'); grunt.loadNpmTasks('grunt-contrib-uglify'); grunt.loadNpmTasks('grunt-angular-gettext'); - grunt.loadNpmTasks('grunt-markdown'); - grunt.loadNpmTasks('grunt-release'); grunt.loadNpmTasks('grunt-exec'); grunt.loadNpmTasks('grunt-karma'); grunt.loadNpmTasks('grunt-karma-coveralls'); grunt.loadNpmTasks('grunt-node-webkit-builder'); grunt.loadNpmTasks('grunt-contrib-compress'); - grunt.registerTask('default', [ - 'nggettext_compile', 'exec:version', 'concat', 'copy:icons' - ]); - grunt.registerTask('prod', [ - 'default', 'uglify' - ]); + grunt.registerTask('default', ['nggettext_compile', 'exec:version', 'concat', 'copy:icons']); + grunt.registerTask('prod', ['default', 'uglify']); grunt.registerTask('translate', ['nggettext_extract']); grunt.registerTask('test', ['karma:unit']); grunt.registerTask('test-coveralls', ['karma:prod', 'coveralls']); diff --git a/README.md b/README.md index aef68f66d..96f396c44 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ Copay [![Build Status](https://secure.travis-ci.org/bitpay/copay.svg)](http://travis-ci.org/bitpay/copay) +[![Crowdin](https://d322cqt584bo4o.cloudfront.net/copay/localized.png)](https://crowdin.com/project/copay) Copay is an easy-to-use, open-source, multiplatform, multisignature, secure bitcoin wallet platform for both individuals and companies. Copay uses [Bitcore Wallet Service](https://github.com/bitpay/bitcore-wallet-service) (BWS) for peer synchronization and bitcore network interfacing. @@ -95,12 +96,32 @@ Copay also implements [BIP32](https://github.com/bitcoin/bips/blob/master/bip-00 For more information regarding how addresses are generated using this procedure, see: [Structure for Deterministic P2SH Multisignature Wallets](https://github.com/bitcoin/bips/blob/master/bip-0045.mediawiki). +## Backup format + +Copay encrypts the backup with the Stanford JS Cryto Library (https://crypto.stanford.edu/sjcl/). To extract the private key of your wallet you can use https://bitwiseshiftleft.github.io/sjcl/demo/, copy the backup to 'ciphertext' and enter your password. The resulting JSON will have a key named: `xPrivKey`, that is the extended private key of your wallet. That information is enought to sign any transaction of your wallet, so be careful handling it. + +The backup also contains the key `publicKeyRing` that hold the extended public keys of the Copayers. Using a tool like [Bitcore PlayGround](http://bitcore.io/playground/#/multisig), and following [BIP45](https://github.com/bitcoin/bips/blob/master/bip-0045.mediawiki) it is possible to generate all wallet address. Note that addresses generated at BWS use the 'shared cosigner index' (2147483647) so Copay address index look like: +`m/45'/2147483647/0/x` for main addresses and +`m/45'/2147483647/1/y` for change addresses, where `x` and `y` are integers starting from `0`. The maximun values of `x` and `y` depend on the wallet usage, and in a restore procedure, the generated addresses are scanned on the blockchain looking for transactions (this is the 'scan' procedure that you can see on Settings at Copay App). To generate the wallet addresses the required number of copayers also need to be specified (backup key `m`). + + ## Bitcore Wallet Service Copay depends on [Bitcore Wallet Service](https://github.com/bitpay/bitcore-wallet-service) (BWS) for blockchain information, networking and copayer synchronization. A BWS instance can be setup and operational within minutes or you can use a public instance like `https://bws.bitpay.com`. Switching between BWS instances is very simple and can be done with a click from within Copay. BWS also allows Copay to interoperate with others wallet like [Bitcore Wallet CLI] (https://github.com/bitpay/bitcore-wallet). ## Translations -Copay uses standard gettext PO files for translations and is currently translated to Spanish, Japanese, French, German and Portuguese thanks to community contributions. See https://github.com/bitpay/copay/pull/2880 as an example pull request for adding translations. +Copay uses standard gettext PO files for translations and [Crowdin](https://crowdin.com/project/copay) as front-end for translators. + +To join our team of translators, please create an account at [Crowdin](https://crowdin.com) and translate into your native language to help spread Multisig. + +To download and build using the latest translations from crowdin, please use the following commands. + +```sh +cd i18n +node crowdin_download.js +``` + +This will download all partially/completely translated languages and clean out any un-translated ones. **Translation Credits:** - Japanese: @dabura667 @@ -108,5 +129,25 @@ Copay uses standard gettext PO files for translations and is currently translate - Portuguese: @pmichelazzo - Spanish: @cmgustavo - German: @saschad +- Russian: @vadim0 *Gracias totales!​* + +## Release schedules +Copay uses following convention for versioning: +``` + MAJOR.MINOR.BATCH, eg: 1.1.3 +``` +Any release that adds features should modify the MINOR or MAJOR number. + +### Bug Fixing Releases + +We release it ASAP in all platforms. As soon as the bug is fixed, we release the new version to all platforms. A week later we can send a new release with translation update (like 1.1.4 and then 1.1.5). There is no coordination so all platforms are updated at the same time. + +### Minor and Major releases + - t+0: tag the release 1.2 and "text lock" (meaning, only non-text related bug fixes. Though this rule is sometimes broken, it's good to make a rule.) + - t+7: testing for 1.2 is finished, translation is also finished, and 1.2.1 is tagged with all translations and bug fixes made in the last week. + - t+7: iOS is submitted for 1.2.1. All other platforms submitted with auto-release off. + - t + (~17): All platforms 1.2.1 is released when iOS approves. + + diff --git a/bower.json b/bower.json index e13a87001..2b07effab 100644 --- a/bower.json +++ b/bower.json @@ -15,9 +15,9 @@ "foundation": "zurb/bower-foundation#~5.5.1", "foundation-icon-fonts": "*", "ng-lodash": "~0.2.0", - "angular-moment": "~0.10.1", - "moment": "~2.10.3", - "angular-bitcore-wallet-client": "^0.0.26", + "angular-moment": "0.10.1", + "moment": "2.10.3", + "angular-bitcore-wallet-client": "^0.1.2", "angular-ui-router": "~0.2.13", "qrcode-decoder-js": "*", "fastclick": "*", diff --git a/browser-extensions/chrome/manifest.json b/browser-extensions/chrome/manifest.json index d5361b40e..c628f0073 100644 --- a/browser-extensions/chrome/manifest.json +++ b/browser-extensions/chrome/manifest.json @@ -14,6 +14,6 @@ } }, "icons": { - "128": "img/icons/icon.png" + "128": "img/icons/icon-chrome-128.png" } } diff --git a/cordova/config.xml b/cordova/config.xml index 40e873480..46c8cf90c 100644 --- a/cordova/config.xml +++ b/cordova/config.xml @@ -1,8 +1,8 @@ + version="1.1.3" + android-versionCode="40" + ios-CFBundleVersion="1.1.3"> Copay A secure bitcoin wallet for friends and companies. diff --git a/cordova/docs/appstore_el b/cordova/docs/appstore_el new file mode 100644 index 000000000..b655e9e61 --- /dev/null +++ b/cordova/docs/appstore_el @@ -0,0 +1,61 @@ +-------------------------------- +Description +-------------------------------- +Εξασφαλίστε τα Bitcoin σας με τους δικούς σας όρους με ένα ανοιχτού κώδικα, πορτοφόλι πολλών υπογραφών από την BitPay. +Οι χρήστες copay μπορούν να κρατούν και να διαχειρίζονται κεφάλαια ατομικά ή να τα μοιράζονται με ασφάλεια με άλλους χρήστες με το πορτοφόλι πολλών υπογραφών, το οποίο εμποδίζει τις μη εξουσιοδοτημένες πληρωμές και απαιτεί πολλαπλές εγκρίσεις. Εδώ είναι μερικοί τρόποι με τους οποίους το copay μπορεί να χρησιμοποιηθεί σε συνδιασμό με άλλους ανθρώπους: + +Για να αποθηκεύσετε για τις διακοπές σας ή να κάνετε κοινές αγορές με τους φίλους σας +Για να παρακολουθήσετε τις οικογενειακές δαπάνες και τα επιδόμάτα +Για τη διαχείριση επιχειρήσεων, κλαμπ, ή κεφάλαια οργανισμών και έξοδα οργάνωσης + +Χτίσαμε τα ακόλουθα χαρακτηριστικά σε αυτή την έκδοση του copay για ένα πορτοφόλι Bitcoin που δεν θέτει σε κίνδυνο την ασφάλεια ή την προσβασιμότητα: + +Δημιουργία πολλαπλών πορτοφολιών και διαχείριση εντός εφαρμογής +Διαισθητική ασφαλείας πολλών υπογραφών για προσωπικά ή κοινόχρηστα πορτοφόλια +Εύκολη ροή προτάσεων δαπάνών για κοινόχρηστα πορτοφόλια και πληρωμές ομάδων +Ιεραρχική ντετερμινιστική δημιουργία διευθύνσεων (HD) και αντιγράφων ασφαλείας πορτοφολιού +Ασφάλεια με βάση τη συσκευή: όλα τα ιδιωτικά κλειδιά αποθηκεύονται τοπικά, όχι στο σύννεφο +Υποστήριξη για πορτοφόλια του δοκιμαστικού δικτύου Bitcoin +Σύγχρονισμένη πρόσβαση σε όλες τις μεγάλες πλατφόρμες, φορητές και επιτραπέζιες +Πρωτόκολλο πληρωμής (BIP70-BIP73) το οποίο υποστηρίζει: εύκολα αναγνωρίσιμες αιτήσεις πληρωμής και διασφάλισμένες και επαληθεύσιμες πληρωμές με Bitcoin +Υποστήριξη για επιλογές τιμολόγησης 150+ νομισμάτων και ονομαστική αξία σε BTC ή bits +Ειδοποιήσεις μέσω email για πληρωμές και μεταφορές +Προσαρμόσιμο όνομα πορτοφολιών και χρώματα φόντου +4 υποστηριζόμενες γλώσσες (Αγγλικά, Ιαπωνικά, Γαλλικά, Ισπανικά) + +Το Copay είναι ελεύθερο και ανοικτού κώδικα λογισμικό το οποίο τρέχει σε μη ιδιόκτητους διακομιστές, έτσι δεν υπάρχει καμία ανάγκη να στηριχθεί σε οποιαδήποτε εταιρεία για να έχει συνεχή υποστήριξη. Ο καθένας μπορεί να αναθεωρήσει ή να συμβάλει στον πηγαίο κώδικα του copay στο GitHub (https://github.com/bitpay/copay). + +-------------------------------- +Release Notes: "What's new" +-------------------------------- +v1.1.2 +-------------------------------- +* Τώρα είναι δυνατό να κάνετε αντίγραφα ασφαλείας, χωρίς δυνατότητες ψηφιακής υπογραφής (για περισσότερες πληροφορίες δείτε εδώ https://github.com/bitpay/copay/pull/2998) +* Βελτίωση των κανόνων ανανέωσης και της διαλογής στο ιστορικό συναλλαγών +* Καλύτερη διαχείριση των `λανθασμένων` συναλλαγών στο ιστορικό +* Καλύτερη διαχείριση των πορτοφολιών με 1000+ συναλλαγές στο ιστορικό τους +* Εξάγει τα αρχεία .csv με αναγνωριστικό συναλλαγής +* Καλύτερη πολιτική επιλογής αξόδευτων συναλλαγών +* Μικρές διορθώσεις σφαλμάτων +-------------------------------- +v1.1.0 +-------------------------------- +QR κώδικες με συγκεκριμένο ποσό για την είσπραξη πληρωμών +Μεταφορά χρημάτων μεταξύ πορτοφολιών +Ειδοποιήσεις ηλεκτρονικού ταχυδρομείου σε μορφή HTML +Προσαρμοσμένες ρυθμίσεις εξόδων συναλλαγών +Αποστολή ανώτατου ορίου των χρημάτων +Νέοι κανόνες διαγραφής πρότάσεων δαπανών +Διορθώσεις σφαλμάτων στη λειτουργία εκτός σύνδεσης +-------------------------------- +v1.0.2 +-------------------------------- +Το Copay είναι εκτός της δοκιμαστικής έκδοσης Βήτα! Έχουμε ολοκληρώσει οκτώ μήνες δοκιμών με το copay, και είμαστε έτοιμοι για την παραγωγή. +-------------------------------- +v1.0.1 +-------------------------------- +Καλύτερη διαχείριση των σφαλμάτων διακοπής του δικτύου +Καλύτερη λογική ανανέωσης μετά την αποδοχή/απόρριψη πληρωμών +Ενημερώσεις στις μεταφράσεις των Ισπανικών των Γαλλικών και των Ιαπωνικών +Διορθώσαμε την λειτουργία μετακίνησης μεσα σε ορισμένα πλαίσια κειμένου +-------------------------------- \ No newline at end of file diff --git a/cordova/ios/Copay-Info.plist b/cordova/ios/Copay-Info.plist index 76ff152b7..1e7b16959 100644 --- a/cordova/ios/Copay-Info.plist +++ b/cordova/ios/Copay-Info.plist @@ -57,11 +57,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.1.1 + 1.1.3 CFBundleSignature ???? CFBundleVersion - 1.1.1 + 1.1.3 LSRequiresIPhoneOS NSMainNibFile diff --git a/cordova/wp/Package.appxmanifest b/cordova/wp/Package.appxmanifest index 1c41b0ece..8585fc499 100644 --- a/cordova/wp/Package.appxmanifest +++ b/cordova/wp/Package.appxmanifest @@ -1,6 +1,6 @@  - + Copay Wallet diff --git a/i18n/crowdin_download.js b/i18n/crowdin_download.js new file mode 100644 index 000000000..84f3597e1 --- /dev/null +++ b/i18n/crowdin_download.js @@ -0,0 +1,248 @@ +#!/usr/bin/env node + +'use strict'; + +if (process.argv[2]) { + var no_key = (process.argv[2].toLowerCase() == '--nokey') + if (no_key == false) { + console.log('Incorrect arg. Please use --nokey if you would like to download without api key.'); + process.exit(1); + }; +} else { + var no_key = false; + console.log('\n' + + 'Please note: If you do not have the crowdin API key and would like to download the ' + + 'translations without building anyways, please make sure your English files are the same ' + + 'version as crowdin, and then run this script with --nokey\n\n' + + 'eg. "node crowdin_download.js --nokey"\n\n'); +}; + +var fs = require('fs'); +var path = require('path'); +var https = require('https'); +var AdmZip = require('adm-zip'); + +var crowdin_identifier = 'copay' + +var local_file_name2 = path.join(__dirname, 'docs/appstore_en.txt') +var local_file_name3 = path.join(__dirname, 'docs/updateinfo_en.txt') + +try { + fs.statSync(local_file_name2); + fs.statSync(local_file_name3); +} +catch (e) { + console.log('\n### ABORTING ### One of the following files does not exist:\n' + local_file_name2 + '\n' + local_file_name3); + process.exit(1); +} + +if (no_key == false) { // Reminder: Any changes to the script below must also be made to the else clause and vice versa. + + try { + // obtain the crowdin api key + var crowdin_api_key = fs.readFileSync(path.join(__dirname, 'crowdin_api_key.txt'), 'utf8') + } catch (e) { + console.log('### ERROR ### You do not have the crowdin api key in ./crowdin_api_key.txt so the translation build has failed.\nFor download only use --nokey.'); + process.exit(1); + }; + + // This call will tell the server to generate a new zip file for you based on most recent translations. + https.get('https://api.crowdin.com/api/project/' + crowdin_identifier + '/export?key=' + crowdin_api_key, function(res) { + + console.log('Export Got response: ' + res.statusCode); + + res.on('data', function(chunk) { + var resxml = chunk.toString('utf8'); + console.log(resxml); + + if (resxml.indexOf('status="skipped"') >= 0) { + console.log('Translation build was skipped due to either:\n' + + '1. No changes since last translation build, or\n' + + '2. API limit of once per 30 minutes has not been waited.\n\n' + + 'Since we can not guarantee that translations have been built properly, this script will end here.\n' + + 'Log in to Copay\'s Crowdin Settings and click the "Build Project" button to assure it is built recently, and then run this ' + + 'script again with the --nokey arg to download translations without checking if built.'); + process.exit(1); + }; + + // Download most recent translations for all languages. + https.get('https://crowdin.com/download/project/' + crowdin_identifier + '.zip', function(res) { + var data = [], dataLen = 0; + + res.on('data', function(chunk) { + data.push(chunk); + dataLen += chunk.length; + }).on('end', function() { + var buf = new Buffer(dataLen); + for (var i=0, len = data.length, pos = 0; i < len; i++) { + data[i].copy(buf, pos); + pos += data[i].length; + }; + var zip = new AdmZip(buf); + zip.extractAllTo('./', true); + console.log('Done extracting ZIP file.'); + + var files = fs.readdirSync('./docs'); + + for (var i in files) { + debugger; + if (files[i].slice(0,9) == 'appstore_' && files[i].slice(-4) == '.txt' && files[i] != 'appstore_en.txt') { + var english_file = fs.readFileSync(local_file_name2, 'utf8'); + var compare_file = fs.readFileSync(path.join(__dirname, 'docs/' + files[i]), 'utf8') + english_file = english_file.replace(/\r\n/g, '\n'); + compare_file = compare_file.replace(/\r\n/g, '\n'); + if (compare_file == english_file) { + fs.unlinkSync(path.join(__dirname, 'docs/' + files[i])); + }; + }; + if (files[i].slice(0,11) == 'updateinfo_' && files[i].slice(-4) == '.txt' && files[i] != 'updateinfo_en.txt') { + var english_file = fs.readFileSync(local_file_name3, 'utf8'); + var compare_file = fs.readFileSync(path.join(__dirname, 'docs/' + files[i]), 'utf8') + english_file = english_file.replace(/\r\n/g, '\n'); + compare_file = compare_file.replace(/\r\n/g, '\n'); + if (compare_file == english_file) { + fs.unlinkSync(path.join(__dirname, 'docs/' + files[i])); + }; + }; + }; + + console.log('Cleaned out completely untranslated appstore docs.'); + + var files = fs.readdirSync('./po'); + + for (var i in files) { + if (files[i] != 'template.pot') { + var po_file = fs.readFileSync(path.join(__dirname, 'po/' + files[i]), 'utf8'); + var po_array = po_file.split('\n'); + for (var j in po_array) { + if (po_array[j].slice(0,5) == 'msgid') { + var source_text = po_array[j].slice(5); + } else if (po_array[j].slice(0,6) == 'msgstr') { + var translate_text = po_array[j].slice(6); + // if a line is not == English, it means there is translation. Keep this file. + if (source_text != translate_text) { + // erase email addresses of last translator for privacy + po_file = po_file.replace(/ <.+@.+\..+>/, '') + fs.writeFileSync(path.join(__dirname, 'po/' + files[i]), po_file); + + // split the file into 3 parts, before locale, locale, and after locale. + var lang_pos = po_file.search('"Language: ') + 11; + var po_start = po_file.slice(0,lang_pos); + var po_locale = po_file.slice(lang_pos,lang_pos + 5); + var po_end = po_file.slice(lang_pos + 5); + + // check for underscore, if it's there, only take the first 2 letters and reconstruct the po file. + if (po_locale.search('_') > 0) { + fs.writeFileSync(path.join(__dirname, 'po/' + files[i]), po_start + po_locale.slice(0,2) + po_end); + po_start = ''; + po_locale = ''; + po_end = ''; + }; + break; + }; + }; + if (j == po_array.length - 1) { // All strings are exactly identical to English. Delete po file. + fs.unlinkSync(path.join(__dirname, 'po/' + files[i])); + }; + }; + }; + }; + + console.log('Cleaned out completely untranslated po files.'); + + }); + }); + }); + }).on('error', function(e) { + console.log('Export Got error: ' + e.message); + }); + +} else { // Reminder: Any changes to the script below must also be made to the above and vice versa. + + // Download most recent translations for all languages. + https.get('https://crowdin.com/download/project/' + crowdin_identifier + '.zip', function(res) { + var data = [], dataLen = 0; + + res.on('data', function(chunk) { + data.push(chunk); + dataLen += chunk.length; + }).on('end', function() { + var buf = new Buffer(dataLen); + for (var i=0, len = data.length, pos = 0; i < len; i++) { + data[i].copy(buf, pos); + pos += data[i].length; + }; + var zip = new AdmZip(buf); + zip.extractAllTo('./', true); + console.log('Done extracting ZIP file.'); + + var files = fs.readdirSync('./docs'); + + for (var i in files) { + if (files[i].slice(0,9) == 'appstore_' && files[i].slice(-4) == '.txt' && files[i] != 'appstore_en.txt') { + var english_file = fs.readFileSync(local_file_name2, 'utf8'); + var compare_file = fs.readFileSync(path.join(__dirname, 'docs/' + files[i]), 'utf8') + english_file = english_file.replace(/\r\n/g, '\n'); + compare_file = compare_file.replace(/\r\n/g, '\n'); + if (compare_file == english_file) { + fs.unlinkSync(path.join(__dirname, 'docs/' + files[i])); + }; + }; + if (files[i].slice(0,11) == 'updateinfo_' && files[i].slice(-4) == '.txt' && files[i] != 'updateinfo_en.txt') { + var english_file = fs.readFileSync(local_file_name3, 'utf8'); + var compare_file = fs.readFileSync(path.join(__dirname, 'docs/' + files[i]), 'utf8') + english_file = english_file.replace(/\r\n/g, '\n'); + compare_file = compare_file.replace(/\r\n/g, '\n'); + if (compare_file == english_file) { + fs.unlinkSync(path.join(__dirname, 'docs/' + files[i])); + }; + }; + }; + + console.log('Cleaned out completely untranslated appstore docs.'); + + var files = fs.readdirSync('./po'); + + for (var i in files) { + if (files[i] != 'template.pot') { + var po_file = fs.readFileSync(path.join(__dirname, 'po/' + files[i]), 'utf8'); + var po_array = po_file.split('\n'); + for (var j in po_array) { + if (po_array[j].slice(0,5) == 'msgid') { + var source_text = po_array[j].slice(5); + } else if (po_array[j].slice(0,6) == 'msgstr') { + var translate_text = po_array[j].slice(6); + // if a line is not == English, it means there is translation. Keep this file. + if (source_text != translate_text) { + // erase email addresses of last translator for privacy + po_file = po_file.replace(/ <.+@.+\..+>/, '') + fs.writeFileSync(path.join(__dirname, 'po/' + files[i]), po_file); + + // split the file into 3 parts, before locale, locale, and after locale. + var lang_pos = po_file.search('"Language: ') + 11; + var po_start = po_file.slice(0,lang_pos); + var po_locale = po_file.slice(lang_pos,lang_pos + 5); + var po_end = po_file.slice(lang_pos + 5); + + // check for underscore, if it's there, only take the first 2 letters and reconstruct the po file. + if (po_locale.search('_') > 0) { + fs.writeFileSync(path.join(__dirname, 'po/' + files[i]), po_start + po_locale.slice(0,2) + po_end); + po_start = ''; + po_locale = ''; + po_end = ''; + }; + break; + }; + }; + if (j == po_array.length - 1) { // All strings are exactly identical to English. Delete po file. + fs.unlinkSync(path.join(__dirname, 'po/' + files[i])); + }; + }; + }; + }; + + console.log('Cleaned out completely untranslated po files.'); + + }); + }); +}; diff --git a/i18n/crowdin_update.js b/i18n/crowdin_update.js new file mode 100644 index 000000000..8f351f3c8 --- /dev/null +++ b/i18n/crowdin_update.js @@ -0,0 +1,66 @@ +#!/usr/bin/env node + +'use strict'; + +var fs = require('fs'); +var path = require('path'); +var https = require('https'); +var bhttp = require('bhttp'); + +var crowdin_identifier = 'copay' + +var local_file_name1 = path.join(__dirname, 'po/template.pot') + +// Similar to Github, normalize all line breaks to CRLF so that different people +// using different OSes to update does not constantly swith format back and forth. +var local_file1_text = fs.readFileSync(local_file_name1, 'utf8'); +local_file1_text = local_file1_text.replace(/\r\n/g, '\n'); +local_file1_text = local_file1_text.replace(/\n/g, '\r\n'); +fs.writeFileSync(local_file_name1, local_file1_text); + +var local_file1 = fs.createReadStream(local_file_name1) + +var local_file_name2 = path.join(__dirname, 'docs/appstore_en.txt') + +var local_file2_text = fs.readFileSync(local_file_name2, 'utf8'); +local_file2_text = local_file2_text.replace(/\r\n/g, '\n'); +local_file2_text = local_file2_text.replace(/\n/g, '\r\n'); +fs.writeFileSync(local_file_name2, local_file2_text); + +var local_file2 = fs.createReadStream(local_file_name2) + +var local_file_name3 = path.join(__dirname, 'docs/updateinfo_en.txt') + +var local_file3_text = fs.readFileSync(local_file_name3, 'utf8'); +local_file3_text = local_file3_text.replace(/\r\n/g, '\n'); +local_file3_text = local_file3_text.replace(/\n/g, '\r\n'); +fs.writeFileSync(local_file_name3, local_file3_text); + +var local_file3 = fs.createReadStream(local_file_name3) + +// obtain the crowdin api key +var crowdin_api_key = fs.readFileSync(path.join(__dirname, 'crowdin_api_key.txt')) +//console.log('api key: ' + crowdin_api_key); + +if (crowdin_api_key != '') { + + var payload = { + 'files[template.pot]': local_file1, + 'files[appstore/appstore_en.txt]': local_file2, + 'files[appstore/updateinfo_en.txt]': local_file3 + }; + + bhttp.post('https://api.crowdin.com/api/project/' + crowdin_identifier + '/update-file?key=' + crowdin_api_key, payload, {}, function(err, response) { + console.log('\nResponse from update file call:\n', response.body.toString()); + + // This call will tell the server to generate a new zip file for you based on most recent translations. + https.get('https://api.crowdin.com/api/project/' + crowdin_identifier + '/export?key=' + crowdin_api_key, function(res) { + console.log('Export Got response: ' + res.statusCode); + res.on('data', function(chunk) { + console.log(chunk.toString('utf8')); + }); + }).on('error', function(e) { + console.log('Export Got error: ' + e.message); + }); + }) +}; diff --git a/appstore_de b/i18n/docs/appstore_de.txt similarity index 68% rename from appstore_de rename to i18n/docs/appstore_de.txt index e0448ff0c..c65e43e35 100644 --- a/appstore_de +++ b/i18n/docs/appstore_de.txt @@ -1,20 +1,16 @@ --------------------------------- -Google Play Store Beschreibung --------------------------------- -Sichere Bitcoins zu eigenen Bedingungen, mit einem quelloffenen Gemeinschaftswallet(elektronische Brieftasche mit Mehrfachunterschriften) von BitPay. -Copay Nutzer können ihre Beträge individuell speichern oder ihre Finanzen mit anderen Nutzern in Gemeinschaftswallets teilen, die je nach Einstellung mehrere Bestätigungen (elektronische Unterschriften) benötigen und so nichtautorisierte Zahlungen verhindern. -Ein paar Einsatzmöglichkeiten, wie ein solches Wallet mit anderen Copayern genutzt werden kann: +Sichere Bitcoins zu eigenen Bedingungen, mit einem quelloffenen Gemeinschaftswallet (elektronische Brieftasche mit Mehrfachunterschriften) von BitPay. +Copay Nutzer können ihre Beträge individuell speichern oder ihre Finanzen mit anderen Nutzern in Gemeinschaftswallets teilen, die je nach Einstellung mehrere Bestätigungen (elektronische Unterschriften) benötigen und so nichtautorisierte Zahlungen verhindern. Ein paar Einsatzmöglichkeiten, wie ein solches Wallet mit anderen Copayern genutzt werden kann: -Ansparen von Beträgen für Urlaub oder gemeinsame Anschaffungen (z.B. mit Freunden) +Ansparen von Beträgen für Urlaub oder gemeinsame Anschaffungen (z.B. mit Freunden) Überwachung von Ausgaben und Einkünften der Familie Organisation der Ausgaben in Firmen, Vereinen oder Organisationen Folgende Funktionen wurden in diese Version von Copay eingebaut um ein Bitcoin Wallet anzubieten das keine Kompromisse in Sichereit oder Zugänglichkeit eingeht: -Anlage und Verwaltung von mehreren Wallets innerhalb der Anwendung -Intiutive mehrfachunterschriften Sicherheit für persönliche und geteilete Wallets +Anlage und Verwaltung von mehreren Wallets innerhalb der Anwendung +Intiutive mehrfachunterschriften Sicherheit für persönliche und geteilete Wallets Einfache Ausgabenvorschläge für geteilte Walltes und Gruppenzahlungen -Hierarchische deterministische(HD) Adresserzeugung und Sicherung der Wallets +Hierarchische deterministische(HD) Adresserzeugung und Sicherung der Wallets Gerätebasierte Sicherheit: Alle privaten Schlüssel werden auf dem Gerät und nicht in der Cloud gespreichert Unterstützung von Bitcoin Testnet Wallets Gleichzeitiger Zugriff über alle wichtigen mobilen Systeme und Desktop-Plattformen @@ -24,19 +20,4 @@ E-Mail Benachrichtigung für Zahlungen und Transaktionen Anpasspare Wallets: Eigene Namen und Hintergrundfarben 6 unterstützte Sprachen (deutsch, englisch, spanisch, französisch, japanisch, portugiesisch) -Copay ist eine kostenlose und quelloffene Software, die auf nicht firmeneigenen Servern läuft und es somit nicht nötig ist, sich auf ein bestimmtes Unternehmen und dessen kontinuierliche Unterstützung zu verlassen. Jeder hat die Möglichkeit den Quelltext zu überprüfen oder auf GitHub (https://github.com/bitpay/copay) eigene Änderungen beizutragen und an der Weiterentwicklung mitzuwirken. - --------------------------------- -Google Play Store Release Notes: "What's new" --------------------------------- -v1.0.2 --------------------------------- -Nach achtmonatigem Test hat Copay die Betaphase verlassen! --------------------------------- -v1.0.1 --------------------------------- -Besserer Umgang mit Fehlern durch Netzwerkunterbrechungen -Bessere Logik nach Akzeptanz oder Ablehung von Zahlungen -Aktualisierung von ES, FR and JP Übersetzungen -Korrektur der Scroll-/Blätterfunktion in einigen Popups --------------------------------- +Copay ist eine kostenlose und quelloffene Software, die auf nicht firmeneigenen Servern läuft und es somit nicht nötig ist, sich auf ein bestimmtes Unternehmen und dessen kontinuierliche Unterstützung zu verlassen. Jeder hat die Möglichkeit den Quelltext zu überprüfen oder auf GitHub (https://github.com/bitpay/copay) eigene Änderungen beizutragen und an der Weiterentwicklung mitzuwirken. diff --git a/i18n/docs/appstore_el.txt b/i18n/docs/appstore_el.txt new file mode 100644 index 000000000..fb00582c0 --- /dev/null +++ b/i18n/docs/appstore_el.txt @@ -0,0 +1,23 @@ +Εξασφαλίστε τα Bitcoin σας με τους δικούς σας όρους με ένα ανοιχτού κώδικα, πορτοφόλι πολλών υπογραφών από την BitPay. +Οι χρήστες copay μπορούν να κρατούν και να διαχειρίζονται κεφάλαια ατομικά ή να τα μοιράζονται με ασφάλεια με άλλους χρήστες με το πορτοφόλι πολλών υπογραφών, το οποίο εμποδίζει τις μη εξουσιοδοτημένες πληρωμές και απαιτεί πολλαπλές εγκρίσεις. Εδώ είναι μερικοί τρόποι με τους οποίους το copay μπορεί να χρησιμοποιηθεί σε συνδιασμό με άλλους ανθρώπους: + +Για να αποθηκεύσετε για τις διακοπές σας ή να κάνετε κοινές αγορές με τους φίλους σας +Για να παρακολουθήσετε τις οικογενειακές δαπάνες και τα επιδόμάτα +Για τη διαχείριση επιχειρήσεων, κλαμπ, ή κεφάλαια οργανισμών και έξοδα οργάνωσης + +Χτίσαμε τα ακόλουθα χαρακτηριστικά σε αυτή την έκδοση του copay για ένα πορτοφόλι Bitcoin που δεν θέτει σε κίνδυνο την ασφάλεια ή την προσβασιμότητα: + +Δημιουργία πολλαπλών πορτοφολιών και διαχείριση εντός εφαρμογής +Διαισθητική ασφαλείας πολλών υπογραφών για προσωπικά ή κοινόχρηστα πορτοφόλια +Εύκολη ροή προτάσεων δαπάνών για κοινόχρηστα πορτοφόλια και πληρωμές ομάδων +Ιεραρχική ντετερμινιστική δημιουργία διευθύνσεων (HD) και αντιγράφων ασφαλείας πορτοφολιού +Ασφάλεια με βάση τη συσκευή: όλα τα ιδιωτικά κλειδιά αποθηκεύονται τοπικά, όχι στο σύννεφο +Υποστήριξη για πορτοφόλια του δοκιμαστικού δικτύου Bitcoin +Σύγχρονισμένη πρόσβαση σε όλες τις μεγάλες πλατφόρμες, φορητές και επιτραπέζιες +Πρωτόκολλο πληρωμής (BIP70-BIP73) το οποίο υποστηρίζει: εύκολα αναγνωρίσιμες αιτήσεις πληρωμής και διασφάλισμένες και επαληθεύσιμες πληρωμές με Bitcoin +Υποστήριξη για επιλογές τιμολόγησης 150+ νομισμάτων και ονομαστική αξία σε BTC ή bits +Ειδοποιήσεις μέσω email για πληρωμές και μεταφορές +Προσαρμόσιμο όνομα πορτοφολιών και χρώματα φόντου +4 υποστηριζόμενες γλώσσες (Αγγλικά, Ιαπωνικά, Γαλλικά, Ισπανικά) + +Το Copay είναι ελεύθερο και ανοικτού κώδικα λογισμικό το οποίο τρέχει σε μη ιδιόκτητους διακομιστές, έτσι δεν υπάρχει καμία ανάγκη να στηριχθεί σε οποιαδήποτε εταιρεία για να έχει συνεχή υποστήριξη. Ο καθένας μπορεί να αναθεωρήσει ή να συμβάλει στον πηγαίο κώδικα του copay στο GitHub (https://github.com/bitpay/copay). diff --git a/appstore_en b/i18n/docs/appstore_en.txt similarity index 63% rename from appstore_en rename to i18n/docs/appstore_en.txt index deb67f576..0a6e38fc8 100644 --- a/appstore_en +++ b/i18n/docs/appstore_en.txt @@ -1,6 +1,3 @@ --------------------------------- -Google Play store description --------------------------------- Secure bitcoin on your own terms with an open source, multisignature wallet from BitPay. Copay users can hold funds individually or share finances securely with other users with multisignature wallets, which prevent unauthorized payments by requiring multiple approvals. Here are some ways Copay can be used with others: @@ -24,28 +21,3 @@ Customizable wallet naming and background colors 4 supported languages (EN, JP, FR, ES) Copay is free and open source software run on non-proprietary servers, so there's no need to rely on any company for continuous support. Anyone can review or contribute to Copay's source code on GitHub (https://github.com/bitpay/copay). - --------------------------------- -Google Play store Release Notes: "What's new" --------------------------------- -v1.1.0 --------------------------------- -QR Codes with specified amount for Receiving Payments -Fund Transfer Between Wallets -HTML Email Notifications -Custom Transaction Fee Settings -Send Maximum Amount of Funds -New Spending Proposal Deletion Rules -Bugs Fixes for Offline Functionality --------------------------------- -v1.0.2 --------------------------------- -Copay is now out of beta! We've spent eight months testing Copay, and we're production-ready. --------------------------------- -v1.0.1 --------------------------------- -Better handling of network interruption errors -Better refresh logic after accepting/rejecting payments -Updates ES, JP and FR translations -Fix scroll with in certain popups --------------------------------- diff --git a/appstore_es b/i18n/docs/appstore_es.txt similarity index 67% rename from appstore_es rename to i18n/docs/appstore_es.txt index d3abac92c..f85dd3839 100644 --- a/appstore_es +++ b/i18n/docs/appstore_es.txt @@ -1,42 +1,23 @@ --------------------------------- -Google Play store description --------------------------------- -Asegura tus bitcoin con tus propias reglas con el monedero de código abierto, multifirma de BitPay. - +Asegura tus bitcoin con tus propias reglas con el monedero de código abierto, multifirma de BitPay. Los usuario de Copay pueden mantener sus fondos individuales o compartir sus finanzas de forma segura con otros usuarios utilizando monederos multifirmas, que previenen de pagos sin autorización al requerir múltiples aprobaciones. Estas son algunas formas en que puede ser utilizado Copay con otros usuarios: -Ahorrar para vacaciones o compras conjuntas con amigos +Ahorrar para vacaciones o compras conjuntas con amigos Controlar los gastos familiares Manejar los fondos y gastos de negocios, clubes y organizaciones. Construimos las siguientes características en esta versión de Copay que no compromete la seguridad ni la accesibilidad: -Creación y manejo de múltiples monederos dentro de la misma aplicación +Creación y manejo de múltiples monederos dentro de la misma aplicación Seguridad multifirma intuitiva para monederos personales y compartidos Sencillo flujo de propuesta de gastos para monederos compartidos y grupos de pagos -Generación de direcciones HD (Hierarchical deterministic) y copias de seguridad +Generación de direcciones HD (Hierarchical deterministic) y copias de seguridad Seguridad basada en el dispositivo: todas las claves privadas se guardan localmente, no en la nube Soporta monederos bitcoin en testnet -Acceso sincrónico desde las principales plataformas móviles y de escritorio +Acceso sincrónico desde las principales plataformas móviles y de escritorio Soporte al protocolo de pago (BIP70-BIP73): solicitudes de pagos fácilmente identificable y verificables como pago seguro en bitcoin Soporte a más de 150 precios de monedas y unidades de denominación en BTC o bits Notificaciones por email de pagos y transferencias Monederos con nombres y colores de fondo personalizables 4 idiomas soportados (EN, JP, FR, ES) -Copay es un software gratuito y de código abierto que funciona en servidores no-propietarios, por lo que no es necesario confiar en una empresa para soporte continuo. Cualquier persona puede revisar y contribuir al código fuente de Copay en GitHub (https://github.com/bitpay/copay). - --------------------------------- -Google Play store Release Notes: "What's new" --------------------------------- -v1.0.2 --------------------------------- -¡Copay esta fuera de beta! Estuvimos ocho meses probando Copay, y ahora estamos listos en producción. --------------------------------- -v1.0.1 --------------------------------- -Mejor manejo de errores en interrupciones de la red -Mejor lógica de actualización luego de aceptar/rechazar pagos -Actualiza traducciones en ES, JR y FR. -Corrige el desplazamiento en algunas ventanas emergentes --------------------------------- +Copay es un software gratuito y de código abierto que funciona en servidores no-propietarios, por lo que no es necesario confiar en una empresa para soporte continuo. Cualquier persona puede revisar y contribuir al código fuente de Copay en GitHub (https://github.com/bitpay/copay). diff --git a/appstore_fr b/i18n/docs/appstore_fr.txt similarity index 58% rename from appstore_fr rename to i18n/docs/appstore_fr.txt index 25bef46da..055019f15 100644 --- a/appstore_fr +++ b/i18n/docs/appstore_fr.txt @@ -1,20 +1,16 @@ --------------------------------- -Google Play store description --------------------------------- Sécurisez vos bitcoins selon vos conditions avec un portefeuille open source et multi-signatures par BitPay. -Les utilisateurs de Copay peuvent détenir leurs fonds de manière individuelle, ou partager leurs finances de manière sécurisée avec les autres utilisateurs en utilisant des portefeuilles multi-signatures, ce qui empêche les paiements non autorisés en exigeant des approbations multiples. -Voici quelques exemples d'utilisation que vous pouvez avoir avec Copay et avec d'autres utilisateurs : +Les utilisateurs de Copay peuvent détenir leurs fonds de manière individuelle, ou partager leurs finances de manière sécurisée avec les autres utilisateurs en utilisant des portefeuilles multi-signatures, ce qui empêche les paiements non autorisés en exigeant des approbations multiples. Voici quelques exemples d'utilisation que vous pouvez avoir avec Copay et avec d'autres utilisateurs : -• Économiser pour des vacances ou partager des frais avec des amis. +• Économiser pour des vacances ou partager des frais avec des amis. • Suivre des dépenses et remboursements familiaux. • Gérer des fonds et des dépenses pour une entreprise, un club ou une organisation. Nous avons développé les fonctionnalités suivantes dans cette version de Copay pour un portefeuille bitcoin qui ne fait pas de compromis sur la sécurité ou sur l'accessibilité : -• Création et gestion de portefeuilles multiples. +• Création et gestion de portefeuilles multiples. • Sécurité de multi-signatures intuitive pour les portefeuilles personnels ou partagés. • Demande de paiement facile pour les portefeuilles partagés et pour les paiements de groupe. -• Génération d'adresse déterministe hiérarchique (HD) et sauvegardes de portefeuilles. +• Génération d'adresse déterministe hiérarchique (HD) et sauvegardes de portefeuilles. • Sécurité basée sur l'appareil : toutes les clés privées sont stockées localement, pas dans le cloud. • Prise en charge des portefeuilles bitcoin testnet. • Accès synchrone sur toutes les principales plateformes mobiles et de bureau. @@ -25,28 +21,3 @@ Nous avons développé les fonctionnalités suivantes dans cette version de Copa • 4 langues prises en charge (EN, JP, FR, ES). Copay est un logiciel gratuit et open source qui tourne sur des serveurs non-propriétaires, il n'y a donc pas besoin de compter sur une entreprise pour un support continuel. N'importe qui peut examiner ou contribuer au code source de Copay sur GitHub (https://github.com/bitpay/copay). - --------------------------------- -Google Play store Release Notes: "What's new" --------------------------------- -v1.1.0 --------------------------------- -• Code QR avec montant personnalisable pour recevoir des paiements. -• Transfert de fonds entre portefeuilles. -• Notifications e-mail HTML. -• Frais de transactions personnalisables. -• Possibilité d'envoyer le montant maximal des fonds disponibles. -• Nouvelles règles de suppression des propositions de dépenses. -• Corrections de bugs pour les fonctionnalités hors ligne. --------------------------------- -v1.0.2 --------------------------------- -Copay est sorti de sa phase beta ! Nous avons passé huit mois à tester Copay, et nous sommes prêts pour sa mise en production. --------------------------------- -v1.0.1 --------------------------------- -Meilleur traitement des erreurs d'interruption réseau -Meilleure logique de rafraichissement après l'acceptation/le rejet de paiements -Mise à jour des traductions ES, JP et FR -Corrige le défilement dans certaines pop-ups --------------------------------- diff --git a/i18n/docs/appstore_it.txt b/i18n/docs/appstore_it.txt new file mode 100644 index 000000000..242f699cc --- /dev/null +++ b/i18n/docs/appstore_it.txt @@ -0,0 +1,23 @@ +Metti al sicuro i tuoi bitcoins, alle tue condizioni, con un portafoglio open source e multifirma realizzato da BitPay. +Gli utenti Copay possono gestire i propri fondi individualmente, o condividerli in maniera sicura con altri utenti grazie ai portafogli multifirma, che prevengono pagamenti non autorizzati richiedendo più approvazioni. Ecco alcuni modi per utilizzare Copay con altre persone: + +Per rismarmiare soldi per le vacanze o per acquisti congiunti con gli amici +Per tenere traccia di spese familiari o indennità +Per gestire i fondi e le spese di aziende, club, or organizzazioni + +In questa versione di Copay abbiamo realizzato le seguenti funzioni per un portafoglio bitcoin che non comprometta sicurezza o accessibilità: + +Creazione e gestione integrata di portafogli multipli +Sicurezza multifirma intuitiva per portafogli personali o condivisi +Proposte di pagamento facili da iniziare per portafogli condivisi e pagamenti di gruppo +Generazione di portafogli gerarchici deterministici (HD) e funzionalità di backup +Sicurezza integrata nel dispositivo: tutte le chiave private sono memorizzate localmente, non nel cloud +Supporto per portafogli della testnet Bitcoin +Accesso sincrono in tutte le piattaforme mobile e desktop +Supporto per il protocollo di pagamento (BIP70-BIP73): richieste di pagamento facilmente identificabili e pagamenti bitcoin sicuri e verificabili +Supporto per 150+ valute e denominazione in BTC o bits +Notifiche email per pagamenti o trasferimenti +Colori di sfondo e nomi dei portafogli personalizzabli +4 lingue supportate (EN, JP, FR, ES) + +Copay è un software gratuito e open source che non dipende da server proprietari, pertanto il supporto del software non dipende da nessuna azienda. Chiunque può rivedere o contribuire al codice sorgente di Copay su GitHub (https://github.com/bitpay/copay). diff --git a/appstore_ja b/i18n/docs/appstore_ja.txt similarity index 53% rename from appstore_ja rename to i18n/docs/appstore_ja.txt index 992159111..3bdc7988a 100644 --- a/appstore_ja +++ b/i18n/docs/appstore_ja.txt @@ -1,20 +1,16 @@ --------------------------------- -Google Play store description --------------------------------- -ビットコインにおける高度なセキュリティーを手軽に扱えるオープンソースマルチシグネチャウォレットです。 -Copayは個人のご利用はもちろんのこと、複数人によるウォレット管理の権限分散も簡単なウォレットソフトを通してご活用いただけます。 +ビットコインにおける高度なセキュリティーを手軽に扱えるオープンソースマルチシグネチャウォレットです。 +Copayは個人のご利用はもちろんのこと、複数人によるウォレット管理の権限分散も簡単なウォレットソフトを通してご活用いただけます。 例えば: -例えば: -友達との旅行や買い物のために透明性抜群の環境で貯蓄したい時 +友達との旅行や買い物のために透明性抜群の環境で貯蓄したい時 家族のお小遣いや日常の家計簿管理がしたい時 ビジネス・クラブ・団体の資金や財産管理を透明な管理分散がしたい時 下記の機能でセキュリティーも利便性も妥協しない最高のウォレットをCopayでご提供させていただきました: -■ 複数のウォレットの作成・管理がアプリ内で管理可能 +■ 複数のウォレットの作成・管理がアプリ内で管理可能 ■ マルチシグネチャのウォレット分散管理でも個人ウォレットでも使いやすさ抜群 ■ 送金の提案・承認・却下の流れが非常に直感的で分散管理が簡単 -■ 階級的決定性ウォレット(HDウォレット)でアドレス生成とバックアップ管理をしているためバックアップは永久に各参加者1回ずつのみ +■ 階級的決定性ウォレット(HDウォレット)でアドレス生成とバックアップ管理をしているためバックアップは永久に各参加者1回ずつのみ ■ 端末に依存するセキュリティー、秘密鍵が全て端末に保管され、サーバに送ることは無い ■ ビットコインの開発テスト用ネットワークにも対応 ■ メジャーなプラットフォーム全てに対応 (Windows, Mac, Linux, Android, iPhone, Windows Phone) @@ -24,29 +20,4 @@ Copayは個人のご利用はもちろんのこと、複数人によるウォレ ■ ウォレットごとの背景色設定や通称設定も可能でカスタマイズ性抜群 ■ 4ヶ国語に対応 (英日仏西) -Copayは永久無料でオープンソースのソフトです。サーバーもオープンソースなので、独自運用や法人の利用やソース流用は許可します。ソースをご覧の際に間違いなどが見つかった場合、Githubにてご報告・ソース修正のプルリクエストなどをお願いします。(https://github.com/bitpay/copay) - --------------------------------- -Google Play store Release Notes: "What's new" --------------------------------- -v1.1.0 --------------------------------- -■ QRコードによる指定額の受取要請。 -■ ウォレット間の送金が円滑に。 -■ メール通知のHTML化。 -■ ビットコインネットワーク手数料が指定可能に。 -■ ボタン一つで全残高を一気に送金が可能に。 -■ 送金の提案の取下げ条件の変更。 -■ オフライン機能のバグ修正。 --------------------------------- -v1.0.2 --------------------------------- -Copayがようやくベータ版を抜けてリリース版になりました! 8ヶ月の時間を掛けて品質テストしてきたので、皆さんに安全に使っていただけるようになりました! --------------------------------- -v1.0.1 --------------------------------- -ネットワーク接続エラーの処理改善 -送金の提案を承諾・却下した後の更新ロジックを改善 -スペイン語、日本語、フランス語の翻訳を更新 -特定のポップアップにおけるスクロール問題を改善 --------------------------------- +Copayは永久無料でオープンソースのソフトです。サーバーもオープンソースなので、独自運用や法人の利用やソース流用は許可します。 ソースをご覧の際に間違いなどが見つかった場合、Githubにてご報告・ソース修正のプルリクエストなどをお願いします。(https://github.com/bitpay/copay) diff --git a/i18n/docs/appstore_ko.txt b/i18n/docs/appstore_ko.txt new file mode 100644 index 000000000..c9fd43243 --- /dev/null +++ b/i18n/docs/appstore_ko.txt @@ -0,0 +1,23 @@ +비트코인을 당신이 원하는 방식으로 안전하게 보관할 수 있는 오픈소스 다중서명 지갑이 BitPay에서 출시됐습니다. +Copay는 사용자의 개인적인 자금 보관은 물론이고, 여러 명의 동의가 필요한 다중서명 지갑을 통해 누군가 독단적으로 자금을 써버리는 일을 방지하고 여럿이 함께 자금을 관리 할 수 있습니다. 예를 들면 이런 식으로 사용할 수 있습니다: + +친구들과 함께 휴가를 떠나거나 공동구매를 하기 위해 돈을 모을 때 +가족의 소비와 지출을 관리하고 싶을 때 +사업, 동호회, 단체의 자금과 소비를 관리 하고 싶을 때 + +이번 버전 Copay는 안전과 접근성에 대해 타협하지 않는 비트코인 지갑이 되기 위해 다음과 같은 기능이 포함돼 있습니다 + +앱 안에서 가능한 여러 개의 지갑 생성과 관리 +개인, 공유 지갑을 위한 직관적인 다중서명 안전장치 +공유 지갑과 공동지불을 위해 손쉽게 가능한 지불제안 +계층결정론적(Hierarchical deterministic, HD) 주소 생성과 지갑 백업 +장치기반 보안: 모든 비밀키는 클라우드가 아닌 장치 내부에 보관됩니다 +비트코인 테스트넷 지갑 지원 +모든 주요 모바일, 데스크탑 플랫폼에서의 동시 접속을 지원합니다 +Payment protocol (BIP70-BIP73)지원: 쉽게 확인 가능한 지불요청과 증명 가능한 비트코인 안전 결제 +150가지가 넘는 통화 지원과 BTC와 bits의 단위 지원 +지불, 송금의 이메일 알림 +바꿀 수 있는 지갑의 이름과 배경색 +4개국어 지원(영어, 일본어, 프랑스어, 스페인어) + +Copay는 누구나 운영할 수 있는 서버에서 돌아가는 무료 오픈소스 소프트웨어입니다. 그러므로 어떤 한 회사의 지속적인 지원에 의지할 필요가 없습니다. 누구나 GitHub(https://github.com/bitpay/copay)에서 Copay의 소스코드를 검토하거나 참여할 수 있습니다 diff --git a/appstore_pt b/i18n/docs/appstore_pt.txt similarity index 68% rename from appstore_pt rename to i18n/docs/appstore_pt.txt index 39fee8183..5c11244cd 100644 --- a/appstore_pt +++ b/i18n/docs/appstore_pt.txt @@ -1,19 +1,16 @@ --------------------------------- -Google Play store description --------------------------------- Armazene bitcoin com seus próprios termos com uma carteira de multi-assinaturas, open source, do BitPay. Usuários Copay podem manter fundos individualmente ou compartilhar finanças seguramente com outros usuários por meio de carteiras multi-assinadas, que previnem pagamentos não autorizados por meio de múltiplas aprovações. Algumas formas que a Copay pode ser usada com outros: -Para economizar para férias ou juntar compras com amigos -Para rastrear despesas familiares e To track family spending and descontos +Para economizar para férias ou juntar compras com amigos +Para rastrear despesas familiares e descontos Para gerenciar negócios, clube ou organizar saldos e despesas Nós construímos as seguintes funcionalidades nesta versão da Copay para uma carteira bitcoin que não comprometa segurança ou acessibilidade: -Criação de múltiplas carteiras com gerenciamento no aplicativo +Criação de múltiplas carteiras com gerenciamento no aplicativo Segurança de multi-assinaturas intuitiva para carteiras pessoais ou compartilhadas Fácil fluxo de propostas de gastos para carteiras compartilhadas e pagamentos agrupados -Geração de endereço Hierarchical deterministic (HD) e backups de carteiras +Geração de endereço Hierarchical deterministic (HD) e backups de carteiras Segurança baseada em dispositivo: todas as chaves privadas são armazenadas localmente e não na nuvem Suporte para carteiras de testes na Bitcoin testnet Acesso síncrono entre todas as principais plataformas móveis e desktops @@ -23,19 +20,4 @@ Notificações por e-mail para pagamentos e transferências Nomes e cores de fundo customizáveis para carteiras 5 idiomas suportados (EN, JP, FR, ES, PT-BR) -Copay é gratuito e um software livre rodando em servidores não-proprietários, que não precisa de nenhuma empresa para o suporte contínuo. Qualquer um pode revisar ou contribuir para o código-fonte da Copay no GitHub (https://github.com/bitpay/copay). - --------------------------------- -Google Play store Release Notes: "What's new" --------------------------------- -v1.0.2 --------------------------------- -Copay agora está fora do beta! Nós gastamos oito meses testando a Copay e estamos prontos para entrar em produção. --------------------------------- -v1.0.1 --------------------------------- -Melhoria no tratamento de erros de interrupção de rede -Melhoria no lógica de renovação após aceitar/rejeitar pagamentos -Atualização das traduções para ES, JP e FR -Resolvida rolagem de certos popups --------------------------------- +Copay é gratuito e um software livre rodando em servidores não-proprietários, que não precisa de nenhuma empresa para o suporte contínuo. Qualquer um pode revisar ou contribuir para o código-fonte da Copay no GitHub (https://github.com/bitpay/copay). diff --git a/i18n/docs/appstore_ru.txt b/i18n/docs/appstore_ru.txt new file mode 100644 index 000000000..87d9af542 --- /dev/null +++ b/i18n/docs/appstore_ru.txt @@ -0,0 +1,23 @@ +Обезопасьте биткойны на своих условиях с открытым исходным кодом, кошельком с мультиподписью от BitPay. +Пользователи Copay могут хранить средства самостоятельно или совместно безопасно управлять средствами вместе с другими пользователями с помощью кошельков с мультиподписью (multisignature wallets), которые предотвращают несанкционированный платежи, требуя несколько одобрений. Вот некоторые способы как Copay может быть использован вместе с другими пользователями: + +Накопить на отпуск или совместные покупки с друзьями +Отслеживать семейные траты и карманные деньги +Управлять бизнесом, клубом, или средствами и расходами организации + +Мы встроили следующие функции в эту версию Copay для биткойн-кошелька, которые не идут на компромисс безопасности или доступности: + +Создание и управление множеством кошельков внутри приложения +Интуитивно-понятная безопасность, основанная на мультиподписи, для личных и общих кошельков +Удобный порядок предложений платежей для совместных кошельков и и групповых платежей +Генерирование иерархически-детерминированных (HD) адресов и бэкакоп кошельков +Безопасность на основе устройств: все закрытые ключи хранятся локально, а не в облаке +Поддержка кошельков Bitcoin testnet +Синхронный доступ со всех основных мобильных и настольных платформ +Поддержка платежных протоколов (BIP70-BIP73): легко идентифицируемые платежные запросы и проверяемо-безопасные биткойн-платежи +Поддержка отображения сумм в более чем 150 валютах и обозначение в BTC или bits +Уведомления о платежах и переводах по email +Настраиваемые названия кошельков и цветов фона +4 поддерживаемых языка (английский, японский, французский, испанский) + +Copay бесплатен и является программным обеспечением с открытым исходным кодом, запускаемым на не-проприетарных серверах, поэтому нет необходимости полагаться на какую-либо компанию и её постоянную поддержку. Любой может просмотреть и сделать предложение по изменению исходного кода Copay на GitHub (https://github.com/bitpay/copay). diff --git a/i18n/docs/appstore_tr.txt b/i18n/docs/appstore_tr.txt new file mode 100644 index 000000000..2553f6ee6 --- /dev/null +++ b/i18n/docs/appstore_tr.txt @@ -0,0 +1,23 @@ +Bitcoinlerinizi kendi kurallarınıza göre BitPay tarafından oluşturulan açık kaynak, çoklu imzalı bir cüzdan ile koruyun. +Copay kullanıcıları paralarını ayrı ayrı tutabilir veya çoklu imzalı cüzdanlar ile diğer kullanıcılarla arasında mali durumları paylaşabilirler ki birden fazla onay isteyen yetkilendirilmemiş ödemeleri önleyebilirler. Diğerleri ile kullanmak için bazı Copay yolları: + +To save for vacations or joint purchases with friends +To track family spending and allowances +To manage business, club, or organization funds and expenses + +We built the following features into this version of Copay for a bitcoin wallet that doesn't compromise on security or accessibility: + +Multiple wallet creation and management in-app +Intuitive multisignature security for personal or shared wallets +Easy spending proposal flow for shared wallets and group payments +Hierarchical deterministic (HD) address generation and wallet backups +Device-based security: all private keys are stored locally, not in the cloud +Support for Bitcoin testnet wallets +Synchronous access across all major mobile and desktop platforms +Payment protocol (BIP70-BIP73) support: easily-identifiable payment requests and verifiably secure bitcoin payments +Support for 150+ currency pricing options and unit denomination in BTC or bits +Email notifications for payments and transfers +Customizable wallet naming and background colors +4 supported languages (EN, JP, FR, ES) + +Copay is free and open source software run on non-proprietary servers, so there's no need to rely on any company for continuous support. Anyone can review or contribute to Copay's source code on GitHub (https://github.com/bitpay/copay). diff --git a/i18n/docs/appstore_zh.txt b/i18n/docs/appstore_zh.txt new file mode 100644 index 000000000..848f5c720 --- /dev/null +++ b/i18n/docs/appstore_zh.txt @@ -0,0 +1,23 @@ +Secure bitcoin on your own terms with an open source, multisignature wallet from BitPay. +Copay users can hold funds individually or share finances securely with other users with multisignature wallets, which prevent unauthorized payments by requiring multiple approvals. Here are some ways Copay can be used with others: + +To save for vacations or joint purchases with friends +To track family spending and allowances +可用来管理商务,团体,或集团的收支 + +We built the following features into this version of Copay for a bitcoin wallet that doesn't compromise on security or accessibility: + +Multiple wallet creation and management in-app +Intuitive multisignature security for personal or shared wallets +Easy spending proposal flow for shared wallets and group payments +Hierarchical deterministic (HD) address generation and wallet backups +Device-based security: all private keys are stored locally, not in the cloud +Support for Bitcoin testnet wallets +Synchronous access across all major mobile and desktop platforms +Payment protocol (BIP70-BIP73) support: easily-identifiable payment requests and verifiably secure bitcoin payments +Support for 150+ currency pricing options and unit denomination in BTC or bits +Email notifications for payments and transfers +Customizable wallet naming and background colors +4种可用语言 (EN,JP,FR,ES) + +Copay is free and open source software run on non-proprietary servers, so there's no need to rely on any company for continuous support. Anyone can review or contribute to Copay's source code on GitHub (https://github.com/bitpay/copay). diff --git a/i18n/docs/updateinfo_de.txt b/i18n/docs/updateinfo_de.txt new file mode 100644 index 000000000..b837f53bd --- /dev/null +++ b/i18n/docs/updateinfo_de.txt @@ -0,0 +1,5 @@ +* Adaptive fee levels based on bitcoin network load +* Option to prevent creating transactions with unconfirmed inputs +* Added advanced sending options +* Added Italian, Russian, and Greek language options +* Kleinere Bug-Fixes diff --git a/i18n/docs/updateinfo_el.txt b/i18n/docs/updateinfo_el.txt new file mode 100644 index 000000000..9e57216d8 --- /dev/null +++ b/i18n/docs/updateinfo_el.txt @@ -0,0 +1,5 @@ +* Adaptive fee levels based on bitcoin network load +* Option to prevent creating transactions with unconfirmed inputs +* Added advanced sending options +* Added Italian, Russian, and Greek language options +* Μικρές διορθώσεις σφαλμάτων diff --git a/i18n/docs/updateinfo_en.txt b/i18n/docs/updateinfo_en.txt new file mode 100644 index 000000000..b3fb2e069 --- /dev/null +++ b/i18n/docs/updateinfo_en.txt @@ -0,0 +1,5 @@ +* Adaptive fee levels based on bitcoin network load +* Option to prevent creating transactions with unconfirmed inputs +* Added advanced sending options +* Added Italian, Russian, and Greek language options +* Minor bug fixes diff --git a/i18n/docs/updateinfo_es.txt b/i18n/docs/updateinfo_es.txt new file mode 100644 index 000000000..edd1cff7d --- /dev/null +++ b/i18n/docs/updateinfo_es.txt @@ -0,0 +1,5 @@ +* Niveles de tasa adaptables en base a la carga de la red bitcoin +* Opción para evitar la creación de transacciones con entradas sin confirmar +* Opciones de envío avanzado +* Nuevos idiomas: Italiano, Ruso, and Griego +* Corrección de errores menores diff --git a/i18n/docs/updateinfo_fr.txt b/i18n/docs/updateinfo_fr.txt new file mode 100644 index 000000000..5b1238c23 --- /dev/null +++ b/i18n/docs/updateinfo_fr.txt @@ -0,0 +1,5 @@ +* Les frais sont maintenant calculés dynamiquement, en fonction de la charge du réseau Bitcoin +* Ajout d'une option permettant d'éviter la création de transactions avec des entrées non confirmées +* Ajout d'options d'envois avancés +* Ajout de langues : Italien, Russe et Grec +* Corrections de bugs mineurs diff --git a/i18n/docs/updateinfo_it.txt b/i18n/docs/updateinfo_it.txt new file mode 100644 index 000000000..5f40e600d --- /dev/null +++ b/i18n/docs/updateinfo_it.txt @@ -0,0 +1,5 @@ +* Livello della commissione basata sul carico del network bitcoin +* Opzione per impedire la creazione di transazioni con input non confermati +* Aggiunte le opzioni avanzate di invio +* Aggiunto il supporto alla lingua italiana, russa e greca +* Correzione bug minori diff --git a/i18n/docs/updateinfo_ja.txt b/i18n/docs/updateinfo_ja.txt new file mode 100644 index 000000000..f84c8c5ed --- /dev/null +++ b/i18n/docs/updateinfo_ja.txt @@ -0,0 +1,5 @@ +■ ネットワーク混雑状況に自動的に合わせる手数料設定 +■ 未承認資金の使用を禁止するオプション +■ 詳細な送金設定の追加 +■ イタリア語、ロシア語、ギリシャ語の言語選択を追加 +■ バグの修正 diff --git a/i18n/docs/updateinfo_ko.txt b/i18n/docs/updateinfo_ko.txt new file mode 100644 index 000000000..b656af4fd --- /dev/null +++ b/i18n/docs/updateinfo_ko.txt @@ -0,0 +1,5 @@ +* Adaptive fee levels based on bitcoin network load +* Option to prevent creating transactions with unconfirmed inputs +* Added advanced sending options +* Added Italian, Russian, and Greek language options +자잘한 버그 수정 diff --git a/i18n/docs/updateinfo_nl.txt b/i18n/docs/updateinfo_nl.txt new file mode 100644 index 000000000..d0bd09c97 --- /dev/null +++ b/i18n/docs/updateinfo_nl.txt @@ -0,0 +1,5 @@ +* Adaptive fee levels based on bitcoin network load +* Option to prevent creating transactions with unconfirmed inputs +* Added advanced sending options +* Added Italian, Russian, and Greek language options +* Kleine bug fixes diff --git a/i18n/docs/updateinfo_ru.txt b/i18n/docs/updateinfo_ru.txt new file mode 100644 index 000000000..b1ee96416 --- /dev/null +++ b/i18n/docs/updateinfo_ru.txt @@ -0,0 +1,5 @@ +* Адаптивные уровни комиссий на основе загрузки сети Bitcoin +* Опция, запрещающая создание транзакций с неподтверждёнными входами +* Добавлены расширенные настройки отправки +* Добавлены итальянский, русский и греческий языки +* Исправлены мелкие ошибки diff --git a/i18n/docs/updateinfo_tr.txt b/i18n/docs/updateinfo_tr.txt new file mode 100644 index 000000000..77bb46d5d --- /dev/null +++ b/i18n/docs/updateinfo_tr.txt @@ -0,0 +1,5 @@ +* Bitcoin ağ yüküne göre daha uygun ücret düzeyleri +* Onaylanmamış girişler ile işlem oluşturmayı önlemek için tercih +* Gelişmiş gönderme seçenekleri eklendi +* İtalyanca, Rusça ve Yunanca dil seçenekleri eklendi +* Ufak hata düzeltmeleri diff --git a/i18n/docs/updateinfo_zh.txt b/i18n/docs/updateinfo_zh.txt new file mode 100644 index 000000000..b1291c0a5 --- /dev/null +++ b/i18n/docs/updateinfo_zh.txt @@ -0,0 +1,5 @@ +* Adaptive fee levels based on bitcoin network load +* Option to prevent creating transactions with unconfirmed inputs +* Added advanced sending options +* Added Italian, Russian, and Greek language options +*修复一些bug diff --git a/po/de.po b/i18n/po/de.po similarity index 50% rename from po/de.po rename to i18n/po/de.po index 8f0d5e41f..907f2966c 100644 --- a/po/de.po +++ b/i18n/po/de.po @@ -2,30 +2,33 @@ msgid "" msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Project-Id-Version: Copay\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: \n" -"Last-Translator: Sascha Dückers \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"X-Generator: Poedit 1.8.1\n" +"Project-Id-Version: copay\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: crowdin.com\n" +"X-Crowdin-Project: copay\n" +"X-Crowdin-Language: de\n" +"X-Crowdin-File: template.pot\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Last-Translator: cmgustavo83\n" +"Language-Team: German\n" "Language: de\n" +"PO-Revision-Date: 2015-08-13 09:15-0400\n" + +#: public/views/walletHome.html +msgid "(possible double spend)" +msgstr "(mögliche Doppelausgabe)" #: public/views/modals/txp-details.html -msgid "" -"* Only payment proposals created by yourself with no peer actions can be " -"removed" -msgstr "" -"* Es können nur eigene Zahlungsvorschläge ohne Peer-Aktionen entfernt werden" +msgid "* A payment proposal can be deleted if 1) you are the creator, and no other copayer has signed, or 2) 24 hours have passed since the proposal was created." +msgstr "* A payment proposal can be deleted if 1) you are the creator, and no other copayer has signed, or 2) 24 hours have passed since the proposal was created." #: public/views/backup.html -msgid "" -"* You can safely install your backup on another device and use your wallet " -"from multiple devices at the same time." -msgstr "" -"* Das Backup kann sicher auf anderen Geräten installiert und das Wallet von " -"mehreren Geräten gleichzeitig verwendet werden." +msgid "* You can safely install your backup on another device and use your wallet from multiple devices at the same time." +msgstr "* Das Backup kann sicher auf anderen Geräten installiert und das Wallet von mehreren Geräten gleichzeitig verwendet werden." + +#: public/views/backup.html +msgid "A backup without its private key will allow the user to see the wallet balance, transactions, and create spend proposals. However, it will not be able to approve (sign) proposals." +msgstr "A backup without its private key will allow the user to see the wallet balance, transactions, and create spend proposals. However, it will not be able to approve (sign) proposals." #: public/views/splash.html msgid "A multisignature bitcoin wallet" @@ -36,6 +39,9 @@ msgid "About Copay" msgstr "Über Copay" #: public/views/modals/txp-details.html +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js msgid "Accept" msgstr "Akzeptieren" @@ -43,7 +49,9 @@ msgstr "Akzeptieren" msgid "Add wallet" msgstr "Wallet hinzufügen" -#: public/views/paymentUri.html public/views/modals/paypro.html +#: public/views/paymentUri.html +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html msgid "Address" msgstr "Adresse" @@ -51,10 +59,22 @@ msgstr "Adresse" msgid "Advanced" msgstr "Erweitert" +#: public/views/modals/advancedSend.html +msgid "Advanced Send" +msgstr "Advanced Send" + +#: public/views/disclaimer.html +msgid "Agree" +msgstr "Zustimmen" + #: public/views/preferencesAlias.html msgid "Alias for {{index.walletName}}" msgstr "Alias für {{index.walletName}}" +#: public/views/translators.html +msgid "All contributions to Copay's translation are welcome. Sign up at crowdin.com and join the Copay project at" +msgstr "All contributions to Copay's translation are welcome. Sign up at crowdin.com and join the Copay project at" + #: public/views/splash.html msgid "Already have a wallet?" msgstr "Existiert bereits ein Wallet?" @@ -63,12 +83,19 @@ msgstr "Existiert bereits ein Wallet?" msgid "Alternative Currency" msgstr "Alternative Währung" -#: public/views/paymentUri.html public/views/walletHome.html -#: public/views/modals/txp-details.html +#: public/views/paymentUri.html +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/modals/customized-amount.html msgid "Amount" msgstr "Betrag" +#: src/js/services/bwsError.js +msgid "Amount below dust threshold" +msgstr "Amount below dust threshold" + #: public/views/walletHome.html +#: public/views/modals/customized-amount.html msgid "Amount in" msgstr "Betrag in" @@ -76,7 +103,8 @@ msgstr "Betrag in" msgid "Applying changes" msgstr "Änderungen anwenden" -#: src/js/controllers/copayers.js src/js/controllers/preferencesDelete.js +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js msgid "Are you sure you want to delete this wallet?" msgstr "Soll das Wallet wirklich gelöscht werden?" @@ -84,11 +112,18 @@ msgstr "Soll das Wallet wirklich gelöscht werden?" msgid "Available Balance" msgstr "Verfügbarer Gesamtbetrag" -#: public/views/create.html public/views/join.html +#: public/views/preferencesFee.html +#: public/views/modals/advancedSend.html +msgid "Average confirmation time: {{fee.nbBlocks * 10}} minutes" +msgstr "Average confirmation time: {{fee.nbBlocks * 10}} minutes" + +#: public/views/create.html +#: public/views/join.html msgid "BIP32 master extended private key" msgstr "BIP32 erweiterter privater Hauptschlüssel" -#: public/views/includes/topbar.html public/views/modals/tx-details.html +#: public/views/includes/topbar.html +#: public/views/modals/tx-details.html #: public/views/modals/txp-details.html msgid "Back" msgstr "Zurück" @@ -109,12 +144,17 @@ msgstr "Jetzt sichern" msgid "Backup options" msgstr "Sicherungseinstellungen" +#: src/js/services/profileService.js +msgid "Bad wallet invitation" +msgstr "Bad wallet invitation" + #: public/views/walletHome.html -msgid "" -"Before receiving funds, it is highly recommended you backup your wallet keys." -msgstr "" -"Bevor Beträge empfangen werden, wird dringend empfohlen die Wallet Schlüssel " -"zu sichern." +msgid "Before receiving funds, it is highly recommended you backup your wallet keys." +msgstr "Bevor Beträge empfangen werden, wird dringend empfohlen die Wallet Schlüssel zu sichern." + +#: public/views/preferences.html +msgid "Bitcoin Network Fee Policy" +msgstr "Bitcoin Network Fee Policy" #: public/views/paymentUri.html msgid "Bitcoin URI is NOT valid!" @@ -124,6 +164,10 @@ msgstr "Bitcoin URI ist NICHT gültig!" msgid "Bitcoin address" msgstr "Bitcoinadresse" +#: public/views/preferencesFee.html +msgid "Bitcoin transactions may include a fee collected by miners on the network. The higher the fee, the greater the incentive a miner has to include that transaction in a block. Actual fees are determined based on network load and the selected policy." +msgstr "Bitcoin transactions may include a fee collected by miners on the network. The higher the fee, the greater the incentive a miner has to include that transaction in a block. Actual fees are determined based on network load and the selected policy." + #: public/views/modals/txp-details.html msgid "Broadcast Payment" msgstr "Zahlung übermitteln" @@ -148,29 +192,42 @@ msgstr "Aber nicht übermittelt. Bitte manuelle Übermittlung versuchen" msgid "CANCEL" msgstr "ABBRUCH" -#: public/views/copayers.html public/views/walletHome.html +#: public/views/copayers.html +#: public/views/walletHome.html +#: public/views/modals/confirmation.html +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js msgid "Cancel" msgstr "Abbruch" +#: src/js/services/profileService.js +msgid "Cannot join the same wallet more that once" +msgstr "Cannot join the same wallet more that once" + #: public/views/modals/paypro.html msgid "Certified by" msgstr "Zertifiziert von" #: public/views/preferencesAlias.html msgid "Changing wallet alias only affects the local wallet name." -msgstr "" -"Änderung der Aliases hat nur Auswirkungen auf den lokalen Namen des Wallets" - -#: src/js/controllers/walletHome.js -msgid "Check you connection and try again" -msgstr "Bitte die Verbindung prüfen und erneut probieren" +msgstr "Änderung der Aliases hat nur Auswirkungen auf den lokalen Namen des Wallets" #: public/views/import.html msgid "Choose a backup file from your computer" msgstr "Bitte eine Sicherungsdatei vom Computer wählen" -#: public/views/includes/topbar.html public/views/modals/copayers.html -#: public/views/modals/paypro.html public/views/modals/scanner.html +#: public/views/modals/wallets.html +msgid "Choose a wallet to send funds" +msgstr "Wählen Sie eine Zahlungsmethode, um Geld zu senden" + +#: public/views/includes/topbar.html +#: public/views/modals/advancedSend.html +#: public/views/modals/copayers.html +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +#: public/views/modals/scanner.html +#: public/views/modals/wallets.html msgid "Close" msgstr "Schließen" @@ -182,14 +239,42 @@ msgstr "Farbe" msgid "Commit hash" msgstr "Hash übertragen" +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Confirm" +msgstr "Bestätigen" + #: public/views/modals/tx-details.html msgid "Confirmations" msgstr "Bestätigungen" +#: src/js/services/bwsError.js +msgid "Copayer already in this wallet" +msgstr "Copayer already in this wallet" + +#: src/js/services/bwsError.js +msgid "Copayer already registered" +msgstr "Copayer already registered" + +#: src/js/services/bwsError.js +msgid "Copayer already voted on this spend proposal" +msgstr "Copayer already voted on this spend proposal" + +#: src/js/services/bwsError.js +msgid "Copayer data mismatch" +msgstr "Copayer data mismatch" + #: public/views/modals/copayers.html msgid "Copayers" msgstr "Copayers" +#: src/js/controllers/backup.js +#: src/js/controllers/copayers.js +#: src/js/controllers/walletHome.js +msgid "Copied to clipboard" +msgstr "In Zwischenablage kopiert" + #: public/views/backup.html msgid "Copy backup to a safe place" msgstr "Sicherung an einen sicheren Ort kopieren" @@ -203,30 +288,20 @@ msgid "Copy to clipboard" msgstr "In die Zwischenablage kopieren" #: src/js/controllers/walletHome.js -msgid "Could not accept payment. Check you connection and try again" -msgstr "" -"Zahlung konnte nicht angenommen werden. Bitte die Verbindung überprüfen und " -"erneut versuchen" +msgid "Could not accept payment" +msgstr "Could not accept payment" + +#: src/js/controllers/index.js +msgid "Could not access Wallet Service: Not found" +msgstr "Could not access Wallet Service: Not found" #: src/js/controllers/walletHome.js -msgid "Could not broadcast payment. Check you connection and try again" -msgstr "" -"Zahlung kann nicht übermittelt werden. Bitte die Verbindung prüfen und " -"erneut probieren" +msgid "Could not broadcast payment" +msgstr "Could not broadcast payment" -#: src/js/controllers/walletHome.js -msgid "" -"Could not connect wallet service. Check your Internet connexion and your " -"wallet service configuration." -msgstr "" -"Kann keine Verbindung zum Wallet Service aufgebaut werden. Bitte die " -"Internetverbindung und die Wallet Service Einstellung überprüfen." - -#: src/js/controllers/walletHome.js -msgid "Could not create address. Check you connection and try again" -msgstr "" -"Es kann keine Adresse erzeugt werden. Bitte Verbindung prüfen und erneut " -"versuchen" +#: src/js/services/addressService.js +msgid "Could not create address" +msgstr "Could not create address" #: src/js/controllers/walletHome.js msgid "Could not create payment proposal" @@ -241,10 +316,8 @@ msgid "Could not decrypt file, check your password" msgstr "Datei kann nicht entschlüsselt werden, bitte das Passwort überprüfen" #: src/js/controllers/walletHome.js -msgid "Could not delete payment proposal. Check you connection and try again" -msgstr "" -"Die Zahlungsanweisung kann nicht gelöscht werden. Bitte Verbindung prüfen " -"und erneut probieren" +msgid "Could not delete payment proposal" +msgstr "Could not delete payment proposal" #: src/js/controllers/walletHome.js msgid "Could not fetch payment information" @@ -260,24 +333,25 @@ msgstr "Import nicht möglich. Bitte Datei und Passwort überprüfen" #: src/js/services/profileService.js msgid "Could not join using the specified extended private key" -msgstr "" -"Teilnahme mit spezifizierten erweiterten privaten Schlüssel nicht möglich" +msgstr "Teilnahme mit spezifizierten erweiterten privaten Schlüssel nicht möglich" -#: src/js/controllers/join.js -msgid "Could not join wallet:" -msgstr "Beteiligung am Wallet nicht möglich" +#: src/js/services/profileService.js +msgid "Could not join wallet" +msgstr "Could not join wallet" #: src/js/controllers/walletHome.js -msgid "Could not reject payment. Check you connection and try again" -msgstr "" -"Zahlung kann nicht abgelehnt werden. Bitte Verbindung prüfen und erneut " -"versuchen" +msgid "Could not recognize a valid Bitcoin QR Code" +msgstr "Es konnte kein gültiger Bitcoin-QR-Code erkannt werden," + +#: src/js/controllers/walletHome.js +msgid "Could not reject payment" +msgstr "Could not reject payment" #: src/js/controllers/walletHome.js msgid "Could not send payment" msgstr "Zahlung kann nicht gesendet werden" -#: public/views/walletHome.html +#: src/js/controllers/index.js msgid "Could not update Wallet" msgstr "Wallet kann nicht aktualisiert werden" @@ -286,6 +360,7 @@ msgid "Create" msgstr "Erzeugen" #: public/views/add.html +#: public/views/create.html msgid "Create new wallet" msgstr "Neues Wallet erzeugen" @@ -313,6 +388,11 @@ msgstr "Wallet erstellen..." msgid "Creating transaction" msgstr "Transaktion erstellen" +#: public/views/preferencesFee.html +#: public/views/modals/advancedSend.html +msgid "Current fee rate for this policy: {{fee.feePerKBUnit}}/kiB" +msgstr "Current fee rate for this policy: {{fee.feePerKBUnit}}/kiB" + #: public/views/modals/tx-details.html msgid "Date" msgstr "Datum" @@ -337,7 +417,9 @@ msgstr "Wallet löschen" msgid "Deleting payment" msgstr "Zahlung löschen" -#: public/views/modals/paypro.html public/views/modals/tx-details.html +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +#: public/views/modals/tx-details.html #: public/views/modals/txp-details.html msgid "Details" msgstr "Details" @@ -346,13 +428,25 @@ msgstr "Details" msgid "Disabled" msgstr "Deaktiviert" +#: public/views/backup.html +msgid "Do not include private key in backup" +msgstr "Keine privaten Schlüssel zur Sicherung hinzufügen" + +#: public/views/translators.html +msgid "Don't see your language on Crowdin? Contact the Owner on Crowdin! We'd love to support your language." +msgstr "Wird deine Sprache auf Crowdin nicht angezeigt? Kontaktiere den Support von Crowdin, denn wir würden deine Sprache gerne hinzufügen." + +#: public/views/walletHome.html +msgid "Download CSV file" +msgstr "CSV-Datei herunterladen" + #: public/views/backup.html msgid "Download backup" msgstr "Download der Sicherung " -#: public/views/includes/password.html -msgid "ENTER" -msgstr "ENTER" +#: src/js/services/feeService.js +msgid "Economy" +msgstr "Wirtschaft" #: public/views/preferences.html msgid "Email Notifications" @@ -366,30 +460,31 @@ msgstr "Verschlüsselung des privaten Schlüssels" msgid "Encrypted backup file saved" msgstr "Verschlüsselte Sicherungsdatei wurde gespeichert" -#: src/js/controllers/index.js -msgid "English" -msgstr "English" - #: public/views/includes/password.html msgid "Enter your password" msgstr "Passwort eingeben" +#: src/js/controllers/index.js +msgid "Error at Wallet Service" +msgstr "Error at Wallet Service" + #: src/js/services/profileService.js msgid "Error creating wallet" msgstr "Fehler beim Erstellen des Wallets" -#: src/js/services/profileService.js -msgid "Error creating wallet. Check your internet connection" -msgstr "Fehler beim Erstellen des Wallets. Bitte die Internetverbindung prüfen" - #: src/js/services/profileService.js msgid "Error importing wallet:" msgstr "Fehler beim Import des Wallets" -#: public/views/modals/paypro.html public/views/modals/txp-details.html +#: public/views/modals/paypro.html +#: public/views/modals/txp-details.html msgid "Expires" msgstr "Gültig bis" +#: public/views/backup.html +msgid "Failed to create backup" +msgstr "Fehler beim Erstellen der Sicherung" + #: src/js/controllers/importLegacy.js msgid "Failed to import wallets" msgstr "Import des Wallets fehlgeschlagen" @@ -398,15 +493,32 @@ msgstr "Import des Wallets fehlgeschlagen" msgid "Family vacation funds" msgstr "Familienurlaub" +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Fee" +msgstr "Gebühr" + +#: public/views/modals/advancedSend.html +msgid "Fee Policy" +msgstr "Fee Policy" + +#: public/views/walletHome.html +msgid "Fee policy for this transaction" +msgstr "Fee policy for this transaction" + #. Get information of payment if using Payment Protocol #: src/js/controllers/walletHome.js msgid "Fetching Payment Information" msgstr "Zahlungsinformationen abrufen" -#: src/js/controllers/index.js +#: public/views/translators.html msgid "French" msgstr "Français" +#: src/js/services/bwsError.js +msgid "Funds are locked by pending spend proposals" +msgstr "Funds are locked by pending spend proposals" + #: src/js/services/notificationsService.js msgid "Funds received" msgstr "Beträge empfangen" @@ -415,21 +527,48 @@ msgstr "Beträge empfangen" msgid "GET STARTED" msgstr "JETZT STARTEN" +#: public/views/modals/customized-amount.html +msgid "Generate QR Code" +msgstr "QR-Code generieren" + #: public/views/walletHome.html msgid "Generate new address" msgstr "Neue Adresse erzeugen" +#: public/views/walletHome.html +msgid "Generating .csv file..." +msgstr "CSV-Datei erzeugen..." + +#: public/views/translators.html +msgid "German" +msgstr "Deutsch" + +#: public/views/modals/wallets.html +msgid "Getting address for wallet {{selectedWalletName}} ..." +msgstr "Getting address for wallet {{selectedWalletName}} ..." + #: public/views/preferences.html msgid "Global settings" msgstr "Globale Einstellungen" +#: public/views/disclaimer.html +msgid "Go back" +msgstr "Zurück" + +#: public/views/translators.html +msgid "Greek" +msgstr "Griechisch" + #: public/views/import.html msgid "Have a Backup from Copay v0.9?" msgstr "Ist eine Copay v0.9 Sicherung vorhanden" -#: public/views/create.html public/views/join.html -msgid "Hide Advanced options" -msgstr "Erweiterte Optionen ausblenden" +#: public/views/backup.html +#: public/views/create.html +#: public/views/join.html +#: public/views/walletHome.html +msgid "Hide advanced options" +msgstr "Hide advanced options" #: src/js/controllers/index.js msgid "History" @@ -439,15 +578,21 @@ msgstr "Historie" msgid "Home" msgstr "Start" -#: public/views/create.html public/views/join.html +#: public/views/disclaimer.html +msgid "I affirm that I have read, understood, and agree with these terms." +msgstr "I affirm that I have read, understood, and agree with these terms." + +#: public/views/create.html +#: public/views/join.html msgid "If not given, a secure key will be generated" msgstr "Sofern nicht angegeben, wird ein sicherer Schlüssel erzeugt " #: public/views/importLegacy.html msgid "Import" -msgstr "Import" +msgstr "Importien" -#: public/views/import.html public/views/splash.html +#: public/views/import.html +#: public/views/splash.html msgid "Import backup" msgstr "Importiere Sicherung" @@ -471,11 +616,40 @@ msgstr "Wallet wird importiert..." msgid "Importing..." msgstr "Importiere..." -#: src/js/controllers/index.js +#: src/js/services/bwsError.js +msgid "Incorrect address network" +msgstr "Incorrect address network" + +#: src/js/services/bwsError.js +msgid "Insufficient funds" +msgstr "Insufficient funds" + +#: src/js/services/bwsError.js +msgid "Insufficient funds for fee" +msgstr "Insufficient funds for fee" + +#: public/views/walletHome.html +msgid "Invalid" +msgstr "Ungültig" + +#: src/js/services/bwsError.js +msgid "Invalid address" +msgstr "Invalid address" + +#: src/js/controllers/copayers.js +msgid "Invitation to share a Copay Wallet" +msgstr "Invitation to share a Copay Wallet" + +#: public/views/translators.html +msgid "Italian" +msgstr "Italienisch" + +#: public/views/translators.html msgid "Japanese" msgstr "日本語" -#: public/views/create.html public/views/join.html +#: public/views/create.html +#: public/views/join.html msgid "John" msgstr "Sascha" @@ -483,6 +657,10 @@ msgstr "Sascha" msgid "Join" msgstr "Teilnehmen" +#: src/js/controllers/copayers.js +msgid "Join my Copay wallet. Here is the invitation code: {{secret}} You can download Copay for your phone or desktop at https://copay.io" +msgstr "Join my Copay wallet. Here is the invitation code: {{secret}} You can download Copay for your phone or desktop at https://copay.io" + #: public/views/add.html msgid "Join shared wallet" msgstr "Gemeinschaftliches Wallet" @@ -499,16 +677,27 @@ msgstr "Sprache" msgid "Learn more about Wallet Migration" msgstr "Mehr über die Migration von Wallets erfahren" +#: src/js/services/bwsError.js +msgid "Locktime in effect. Please wait to create a new spend proposal" +msgstr "Locktime in effect. Please wait to create a new spend proposal" + +#: src/js/services/bwsError.js +msgid "Locktime in effect. Please wait to remove this spend proposal" +msgstr "Locktime in effect. Please wait to remove this spend proposal" + #: public/views/paymentUri.html msgid "Make a payment to" msgstr "Sende eine Zahlung an" -#: public/views/create.html public/views/join.html +#: public/views/create.html +#: public/views/join.html msgid "Master extended private key" msgstr "Erweiterter privater Hauptschlüssel" -#: public/views/includes/copayers.html public/views/modals/copayers.html -#: public/views/modals/tx-details.html public/views/modals/txp-details.html +#: public/views/includes/copayers.html +#: public/views/modals/copayers.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html msgid "Me" msgstr "Ich" @@ -544,44 +733,63 @@ msgstr "Eigene Bitcoinadresse" msgid "Network" msgstr "Netzwerk" +#: src/js/services/bwsError.js +msgid "Network connection error" +msgstr "Network connection error" + #: src/js/services/notificationsService.js msgid "New Payment Proposal" msgstr "Neue Zahlungsvorschlag" -#: public/views/modals/confirmation.html -msgid "No" -msgstr "Nein" +#: public/views/walletHome.html +msgid "No Private key" +msgstr "Kein privater Schlüssel" #: public/views/walletHome.html msgid "No transactions yet" msgstr "Noch keine Transaktionen" +#: src/js/services/feeService.js +msgid "Normal" +msgstr "Normal" + +#: src/js/services/bwsError.js +msgid "Not authorized" +msgstr "Not authorized" + #: public/views/walletHome.html +#: public/views/modals/customized-amount.html msgid "Not valid" msgstr "Nicht gültig" -#: public/views/walletHome.html public/views/modals/tx-details.html -#: public/views/modals/txp-details.html +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/modals/tx-details.html msgid "Note" msgstr "Notiz" +#: public/views/includes/alert.html +#: public/views/includes/password.html +msgid "OK" +msgstr "OK" + #: public/views/modals/tx-status.html msgid "OKAY" -msgstr "OKAY" +msgstr "Okay" -#: public/views/modals/tx-details.html public/views/modals/txp-details.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html msgid "Participants" msgstr "Teilnehmer" -#: public/views/import.html public/views/importLegacy.html +#: public/views/import.html +#: public/views/importLegacy.html msgid "Password" msgstr "Passwort" #: public/views/includes/password.html msgid "Password cannot be recovered. Be sure to write it down" -msgstr "" -"Passwort kann nicht wiederhergestellt werden. Bitte sicherheitshalber " -"notieren" +msgstr "Passwort kann nicht wiederhergestellt werden. Bitte sicherheitshalber notieren" #: src/js/services/profileService.js msgid "Password needed" @@ -639,7 +847,8 @@ msgstr "Zahlungsprotokoll wird nicht von der Chrome App unterstützt" msgid "Payment Rejected" msgstr "Zahlung abgelehnt" -#: public/views/modals/tx-status.html src/js/services/notificationsService.js +#: public/views/modals/tx-status.html +#: src/js/services/notificationsService.js msgid "Payment Sent" msgstr "Zahlung gesendet" @@ -667,24 +876,32 @@ msgstr "Zahlung gesendet!" msgid "Payment to" msgstr "Zahlung an" +#: public/views/walletHome.html +msgid "Pending Confirmation" +msgstr "Pending Confirmation" + #: public/views/preferencesDeleteWallet.html msgid "Permanently delete this wallet. THIS ACTION CANNOT BE REVERSED" -msgstr "" -"Wallet dauerhaft löschen. DIESE AKTION KANN NICHT RÜCKGÄNGIG GEMACHT WERDEN" +msgstr "Wallet dauerhaft löschen. DIESE AKTION KANN NICHT RÜCKGÄNGIG GEMACHT WERDEN" #: public/views/create.html msgid "Personal Wallet" msgstr "Persönliches Wallet" -#: src/js/controllers/create.js src/js/controllers/join.js +#: src/js/controllers/create.js +#: src/js/controllers/join.js msgid "Please enter the required fields" msgstr "Bitte die benötigten Felder ausfüllen" +#: src/js/services/bwsError.js +msgid "Please upgrade Copay to perform this action" +msgstr "Please upgrade Copay to perform this action" + #: src/js/controllers/import.js msgid "Please, select your backup file" msgstr "Bitte die Sicherungsdatei wählen" -#: src/js/controllers/index.js +#: public/views/translators.html msgid "Portuguese" msgstr "Português" @@ -692,6 +909,18 @@ msgstr "Português" msgid "Preferences" msgstr "Einstellungen" +#: src/js/controllers/backup.js +msgid "Preparing backup..." +msgstr "Backup wird vorbereitet..." + +#: src/js/services/feeService.js +msgid "Priority" +msgstr "Priorität" + +#: public/views/modals/customized-amount.html +msgid "QR Code" +msgstr "QR-Code" + #: public/views/modals/scanner.html msgid "QR-Scanner" msgstr "QR-Scanner" @@ -704,6 +933,11 @@ msgstr "Empfangen" msgid "Received" msgstr "Empfangen" +#: public/views/includes/output.html +#: public/views/includes/transaction.html +msgid "Recipients" +msgstr "Empfänger" + #: public/views/walletHome.html msgid "Reconnecting to Wallet Service..." msgstr "Neuverbindung zum Wallet Service... " @@ -728,11 +962,18 @@ msgstr "Zahlung ablehenen" msgid "Release Information" msgstr "Information zur Veröffentlichung" -#: public/views/backup.html public/views/includes/password.html +#: public/views/backup.html +#: public/views/includes/password.html msgid "Repeat password" msgstr "Passwort wiederholen" -#: public/views/import.html public/views/join.html +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html +msgid "Request a specific amount" +msgstr "Einen bestimmten Betrag anfordern" + +#: public/views/import.html +#: public/views/join.html msgid "Required" msgstr "Benötigt" @@ -740,6 +981,10 @@ msgstr "Benötigt" msgid "Retrying..." msgstr "Neuer Versuch..." +#: public/views/translators.html +msgid "Russian" +msgstr "Russian" + #: public/views/includes/password.html msgid "SET" msgstr "EINRICHTEN" @@ -748,7 +993,8 @@ msgstr "EINRICHTEN" msgid "SKIP BACKUP" msgstr "SICHERUNG ÜBERSPRINGEN" -#: public/views/preferencesAlias.html public/views/preferencesBwsUrl.html +#: public/views/preferencesAlias.html +#: public/views/preferencesBwsUrl.html #: public/views/preferencesEmail.html msgid "Save" msgstr "Speichern" @@ -793,12 +1039,18 @@ msgstr "Bitte die benötigte Anzahl der Unterschriften wählen" msgid "Select total number of copayers" msgstr "Bitte die Gesamtanzahl der Copayer wählen" -#: public/views/walletHome.html public/views/includes/transaction.html +#: public/views/walletHome.html +#: public/views/includes/transaction.html #: src/js/controllers/index.js msgid "Send" msgstr "Senden" -#: public/views/backup.html public/views/preferencesLogs.html +#: public/views/walletHome.html +msgid "Send All" +msgstr "Alle senden" + +#: public/views/backup.html +#: public/views/preferencesLogs.html msgid "Send by email" msgstr "Per E-Mail versenden" @@ -823,14 +1075,8 @@ msgid "Set up a password" msgstr "Passwort einrichten" #: public/views/preferencesEmail.html -msgid "" -"Setting up email notifications could weaken your privacy, if the wallet " -"service provider is compromised. Information available to an attacker would " -"include your wallet addresses and its balance, but no more." -msgstr "" -"Das Einrichten einer E-Mail Benachrichtigung schwächt die Privatsphäre, wenn " -"der Wallet Service Anbieter kompromittiert wurde. Der Angreifer kann jedoch " -"nur Wallet Adresse und Guthaben erfahren, mehr nicht." +msgid "Setting up email notifications could weaken your privacy, if the wallet service provider is compromised. Information available to an attacker would include your wallet addresses and its balance, but no more." +msgstr "Das Einrichten einer E-Mail Benachrichtigung schwächt die Privatsphäre, wenn der Wallet Service Anbieter kompromittiert wurde. Der Angreifer kann jedoch nur Wallet Adresse und Guthaben erfahren, mehr nicht." #: public/views/walletHome.html msgid "Share address" @@ -845,20 +1091,23 @@ msgid "Share this invitation with your copayers" msgstr "Einladung mit Copayern teilen" #: public/views/walletHome.html -msgid "" -"Share this wallet address to receive payments. To protect your privacy, new " -"addresses are generated automatically once you use them." -msgstr "" -"Um Zahlungen zu empfangen, die hier angegebene Adresse teilen. Um die " -"Privatsphäre zu schützen wird nach jeder Nutzung eine neue Adresse erzeugt." +msgid "Share this wallet address to receive payments. To protect your privacy, new addresses are generated automatically once you use them." +msgstr "Um Zahlungen zu empfangen, die hier angegebene Adresse teilen. Um die Privatsphäre zu schützen wird nach jeder Nutzung eine neue Adresse erzeugt." #: public/views/create.html msgid "Shared Wallet" msgstr "Wallet teilen" -#: public/views/create.html public/views/join.html -msgid "Show Advanced options" -msgstr "Erweiterte Optionen anzeigen" +#: public/views/backup.html +#: public/views/create.html +#: public/views/join.html +#: public/views/walletHome.html +msgid "Show advanced options" +msgstr "Show advanced options" + +#: src/js/services/bwsError.js +msgid "Signatures rejected by server" +msgstr "Signatures rejected by server" #: src/js/controllers/walletHome.js msgid "Signing payment" @@ -868,11 +1117,20 @@ msgstr "Zahlung unterschreiben" msgid "Signing transaction" msgstr "Transaktion unterschreiben" -#: src/js/controllers/index.js +#: public/views/translators.html msgid "Spanish" msgstr "Español" -#: src/js/controllers/copayers.js src/js/controllers/import.js +#: src/js/services/bwsError.js +msgid "Spend proposal is not accepted" +msgstr "Spend proposal is not accepted" + +#: src/js/services/bwsError.js +msgid "Spend proposal not found" +msgstr "Spend proposal not found" + +#: src/js/controllers/copayers.js +#: src/js/controllers/import.js #: src/js/controllers/preferencesDelete.js msgid "Success" msgstr "Erfolgreich" @@ -881,71 +1139,80 @@ msgstr "Erfolgreich" msgid "Tap to retry" msgstr "Zum Wiederholen antippen" +#: public/views/disclaimer.html +#: public/views/preferencesAbout.html +msgid "Terms of Use" +msgstr "Nutzungsbedingungen" + #: public/views/create.html msgid "Testnet" msgstr "Testnet" #: src/js/controllers/walletHome.js -msgid "" -"The payment was created but could not be completed. Please try again from " -"home screen" -msgstr "" -"Die Zahlung wurde erzeugt, kann aber nicht abgeschlossen werden. Bitte " -"erneut über die Startseite versuchen" +msgid "The payment was created but could not be completed. Please try again from home screen" +msgstr "Die Zahlung wurde erzeugt, kann aber nicht abgeschlossen werden. Bitte erneut über die Startseite versuchen" #: src/js/controllers/walletHome.js -msgid "" -"The payment was created but could not be signed. Please try again from home " -"screen." -msgstr "" -"Die Zahlung wurde erzeugt, kann aber nicht unterschrieben werden. Bitte " -"erneut über die Startseite versuchen" +msgid "The payment was created but could not be signed. Please try again from home screen" +msgstr "The payment was created but could not be signed. Please try again from home screen" #: public/views/modals/txp-details.html msgid "The payment was removed by creator" msgstr "Die Zahlung wurde vom Ersteller entfernt" #: src/js/controllers/walletHome.js -msgid "" -"The payment was signed but could not be broadcasted. Please try again from " -"home screen." -msgstr "" -"Die Zahlung wurde unterschrieben, kann aber nicht übertragen werden. Bitte " -"erneut über die Startseite versuchen" +msgid "The payment was signed but could not be broadcasted. Please try again from home screen" +msgstr "The payment was signed but could not be broadcasted. Please try again from home screen" #: public/views/backup.html -msgid "" -"The private key for this wallet is encrypted. Exporting a backup will keep " -"the private key encrypted in the backup archive." -msgstr "" -"Der private Schlüssel für dieses Wallet ist verschlüsselt. Ein Export der " -"Sicherung behält diesen verschlüsselt im Sicherungsarchiv" +msgid "The private key for this wallet is encrypted. Exporting a backup will keep the private key encrypted in the backup archive." +msgstr "Der private Schlüssel für dieses Wallet ist verschlüsselt. Ein Export der Sicherung behält diesen verschlüsselt im Sicherungsarchiv" -#: src/js/controllers/copayers.js src/js/controllers/preferencesDelete.js +#: public/views/disclaimer.html +msgid "The software you are about to use functions as a free, open source, and multi-signature digital wallet. The software does not constitute an account where BitPay or other third parties serve as financial intermediaries or custodians of your bitcoin. While the software has undergone beta testing and continues to be improved by feedback from the open-source user and developer community, we cannot guarantee that there will be no bugs in the software. You acknowledge that your use of this software is at your own discretion and in compliance with all applicable laws. You are responsible for safekeeping your passwords, private key pairs, PINs and any other codes you use to access the software. IF YOU LOSE ACCESS TO YOUR COPAY WALLET OR YOUR ENCRYPTED PRIVATE KEYS AND YOU HAVE NOT SEPARATELY STORED A BACKUP OF YOUR WALLET AND CORRESPONDING PASSWORD, YOU ACKNOWLEDGE AND AGREE THAT ANY BITCOIN YOU HAVE ASSOCIATED WITH THAT COPAY WALLET WILL BECOME INACCESSIBLE. All transaction requests are irreversible. The authors of the software, employees and affiliates of Bitpay, copyright holders, and BitPay, Inc. cannot retrieve your private keys or passwords if you lose or forget them and cannot guarantee transaction confirmation as they do not have control over the Bitcoin network. To the fullest extent permitted by law, this software is provided “as is” and no representations or warranties can be made of any kind, express or implied, including but not limited to the warranties of merchantability, fitness or a particular purpose and noninfringement. You assume any and all risks associated with the use of the software. In no event shall the authors of the software, employees and affiliates of Bitpay, copyright holders, or BitPay, Inc. be held liable for any claim, damages or other liability, whether in an action of contract, tort, or otherwise, arising from, out of or in connection with the software. We reserve the right to modify this disclaimer from time to time." +msgstr "The software you are about to use functions as a free, open source, and multi-signature digital wallet. The software does not constitute an account where BitPay or other third parties serve as financial intermediaries or custodians of your bitcoin. While the software has undergone beta testing and continues to be improved by feedback from the open-source user and developer community, we cannot guarantee that there will be no bugs in the software. You acknowledge that your use of this software is at your own discretion and in compliance with all applicable laws. You are responsible for safekeeping your passwords, private key pairs, PINs and any other codes you use to access the software. IF YOU LOSE ACCESS TO YOUR COPAY WALLET OR YOUR ENCRYPTED PRIVATE KEYS AND YOU HAVE NOT SEPARATELY STORED A BACKUP OF YOUR WALLET AND CORRESPONDING PASSWORD, YOU ACKNOWLEDGE AND AGREE THAT ANY BITCOIN YOU HAVE ASSOCIATED WITH THAT COPAY WALLET WILL BECOME INACCESSIBLE. All transaction requests are irreversible. The authors of the software, employees and affiliates of Bitpay, copyright holders, and BitPay, Inc. cannot retrieve your private keys or passwords if you lose or forget them and cannot guarantee transaction confirmation as they do not have control over the Bitcoin network. To the fullest extent permitted by law, this software is provided “as is” and no representations or warranties can be made of any kind, express or implied, including but not limited to the warranties of merchantability, fitness or a particular purpose and noninfringement. You assume any and all risks associated with the use of the software. In no event shall the authors of the software, employees and affiliates of Bitpay, copyright holders, or BitPay, Inc. be held liable for any claim, damages or other liability, whether in an action of contract, tort, or otherwise, arising from, out of or in connection with the software. We reserve the right to modify this disclaimer from time to time." + +#: src/js/services/bwsError.js +msgid "The spend proposal is not pending" +msgstr "The spend proposal is not pending" + +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js msgid "The wallet \"{{walletName}}\" was deleted" msgstr "Wallet \"{{walletName}}\" wurde gelöscht" +#: public/views/paymentUri.html +msgid "There are no wallets to make this payment" +msgstr "There are no wallets to make this payment" + #: src/js/controllers/import.js msgid "There is an error in the form" msgstr "Es ist ein Fehler im Formular aufgetreten" +#: public/views/modals/tx-details.html +msgid "This transaction has become invalid; possibly due to a double spend attempt." +msgstr "This transaction has become invalid; possibly due to a double spend attempt." + #: public/views/walletHome.html -msgid "" -"This wallet is not registered at the given Bitcore Wallet Service (BWS). You " -"can recreate it from the local information." -msgstr "" -"Dieses Wallet ist nicht beim angegebenen Bitcore Wallet Service (BWS) " -"registriert. Bitte aus den lokalen Informationen wiederherstellen" +msgid "This wallet is not registered at the given Bitcore Wallet Service (BWS). You can recreate it from the local information." +msgstr "Dieses Wallet ist nicht beim angegebenen Bitcore Wallet Service (BWS) registriert. Bitte aus den lokalen Informationen wiederherstellen" #: public/views/modals/txp-details.html msgid "Time" msgstr "Zeit" -#: public/views/walletHome.html public/views/includes/transaction.html -#: public/views/modals/tx-details.html public/views/modals/txp-details.html +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/includes/transaction.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html msgid "To" msgstr "Zu" +#: public/views/includes/output.html +msgid "Total" +msgstr "Gesamtsumme" + #: public/views/walletHome.html msgid "Total Locked Balance" msgstr "Ingesamt gesperrter Gesamtsaldo" @@ -954,11 +1221,24 @@ msgstr "Ingesamt gesperrter Gesamtsaldo" msgid "Transaction" msgstr "Transaktion" +#: src/js/services/bwsError.js +msgid "Transaction already broadcasted" +msgstr "Transaction already broadcasted" + +#: public/views/translators.html +msgid "Translation Credits" +msgstr "Danksagung an die Übersetzer" + +#: public/views/preferencesAbout.html +msgid "Translators" +msgstr "Übersetzer" + #: src/js/controllers/walletHome.js msgid "Unable to send transaction proposal" msgstr "Transaktionsvorschlag kann nicht gesendet werden" -#: public/views/walletHome.html public/views/modals/tx-details.html +#: public/views/walletHome.html +#: public/views/modals/tx-details.html msgid "Unconfirmed" msgstr "Unbestätigt" @@ -978,6 +1258,11 @@ msgstr "Nicht Vertrauenswürdig" msgid "Updating Wallet..." msgstr "Wallet aktualisieren..." +#: public/views/preferences.html +#: public/views/walletHome.html +msgid "Use Unconfirmed Funds" +msgstr "Use Unconfirmed Funds" + #: public/views/preferencesAbout.html msgid "Version" msgstr "Version" @@ -1022,6 +1307,7 @@ msgstr "Wallet Einladung" msgid "Wallet Invitation is not valid!" msgstr "Wallet Einladung nicht gültig!" +#: src/js/services/bwsError.js #: src/js/services/profileService.js msgid "Wallet already exists" msgstr "Wallet exstiert bereits" @@ -1030,22 +1316,34 @@ msgstr "Wallet exstiert bereits" msgid "Wallet incomplete and broken" msgstr "Wallet unvollständig oder defekt" +#: src/js/services/bwsError.js +msgid "Wallet is full" +msgstr "Wallet is full" + +#: src/js/services/bwsError.js +msgid "Wallet is not complete" +msgstr "Wallet is not complete" + #: public/views/create.html msgid "Wallet name" msgstr "Name des Wallets" -#: src/js/controllers/walletHome.js -msgid "" -"Wallet service timed out. Check your Internet connexion and your wallet " -"service configuration." -msgstr "" -"Walletdienst antwortet nicht. Bitte die Internetverbinung und Walletdienst " -"überprüfen." +#: src/js/services/bwsError.js +msgid "Wallet not found" +msgstr "Wallet not found" + +#: src/js/services/bwsError.js +msgid "Wallet service not found" +msgstr "Wallet service not found" #: public/views/preferencesDeleteWallet.html msgid "Warning!" msgstr "Warnung!" +#: public/views/modals/txp-details.html +msgid "Warning: this transaction has unconfirmed inputs" +msgstr "Warning: this transaction has unconfirmed inputs" + #: src/js/services/profileService.js msgid "Wrong password" msgstr "Falsches Passwort" @@ -1058,11 +1356,13 @@ msgstr "Ja" msgid "You do not have a wallet" msgstr "Kein Wallet vorhanden" -#: public/views/backup.html public/views/import.html +#: public/views/backup.html +#: public/views/import.html msgid "Your backup password" msgstr "Passwort zur Sicherung" -#: public/views/create.html public/views/join.html +#: public/views/create.html +#: public/views/join.html msgid "Your nickname" msgstr "Name des Teilnehmers" @@ -1086,7 +1386,8 @@ msgstr "E-Mail für Wallet Benachrichtigungen" msgid "locked by pending payments" msgstr "durch ausstehende Zahlungen gesperrt" -#: public/views/copayers.html public/views/walletHome.html +#: public/views/copayers.html +#: public/views/walletHome.html #: public/views/includes/sidebar.html msgid "of" msgstr "von" @@ -1103,10 +1404,11 @@ msgstr "Einstellungen" msgid "too long!" msgstr "zu lang!" +#: src/js/controllers/walletHome.js +msgid "{{fee}} will be discounted for bitcoin networking fees" +msgstr "{{fee}} will be discounted for bitcoin networking fees" + #: src/js/controllers/importLegacy.js -msgid "" -"{{len}} wallets imported. Funds scanning in progress. Hold on to see updated " -"balance" -msgstr "" -"{{len}} Wallets importiert. Beträge werden gescannt. Bitte auf die " -"Aktualisierung des Gesamtsaldos warten" +msgid "{{len}} wallets imported. Funds scanning in progress. Hold on to see updated balance" +msgstr "{{len}} Wallets importiert. Beträge werden gescannt. Bitte auf die Aktualisierung des Gesamtsaldos warten" + diff --git a/i18n/po/el.po b/i18n/po/el.po new file mode 100644 index 000000000..5fff2d04a --- /dev/null +++ b/i18n/po/el.po @@ -0,0 +1,1414 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Project-Id-Version: copay\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: crowdin.com\n" +"X-Crowdin-Project: copay\n" +"X-Crowdin-Language: el\n" +"X-Crowdin-File: template.pot\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Last-Translator: cmgustavo83\n" +"Language-Team: Greek\n" +"Language: el\n" +"PO-Revision-Date: 2015-08-13 09:15-0400\n" + +#: public/views/walletHome.html +msgid "(possible double spend)" +msgstr "(πιθανό διπλό ξόδεμα)" + +#: public/views/modals/txp-details.html +msgid "* A payment proposal can be deleted if 1) you are the creator, and no other copayer has signed, or 2) 24 hours have passed since the proposal was created." +msgstr "Μια πρόταση πληρωμής μπορεί να διαγραφεί εάν 1) είστε ο δημιουργός, και κανένας άλλος χρήστης του copay δεν έχει υπογράψει, ή 2) έχουν περάσει 24 ώρες απο την ώρα που η πρόταση δημιουργήθηκε." + +#: public/views/backup.html +msgid "* You can safely install your backup on another device and use your wallet from multiple devices at the same time." +msgstr "Μπορείτε με ασφάλεια να εγκαταστήσετε το αντίγραφο ασφαλείας σας σε μια άλλη συσκευή και να χρησιμοποιήσετε το πορτοφόλι σας απο πολλαπλές συσκευές την ίδια στιγμή." + +#: public/views/backup.html +msgid "A backup without its private key will allow the user to see the wallet balance, transactions, and create spend proposals. However, it will not be able to approve (sign) proposals." +msgstr "Ένα αντίγραφο ασφαλείας χωρίς το ιδιωτικό κλειδί θα επιτρέψει στον χρήστη να δεί το υπόλοιπο του πορτοφολιού, τις συναλλαγές και να δημιουργήσει προτάσεις εξόδων. Μολονότι, δεν θα μπορεί να επιβεβαιώσει (υπογράψει) προτάσεις." + +#: public/views/splash.html +msgid "A multisignature bitcoin wallet" +msgstr "Ένα πορτοφόλι bitcoin με δυνατότητα πολλαπλών υπογραφών" + +#: public/views/preferences.html +msgid "About Copay" +msgstr "Σχετικά με το Copay" + +#: public/views/modals/txp-details.html +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Accept" +msgstr "Αποδοχή" + +#: public/views/includes/sidebar.html +msgid "Add wallet" +msgstr "Προσθήκη Πορτοφολιού" + +#: public/views/paymentUri.html +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +msgid "Address" +msgstr "Διεύθυνση" + +#: public/views/preferences.html +msgid "Advanced" +msgstr "Για προχωρημένους" + +#: public/views/modals/advancedSend.html +msgid "Advanced Send" +msgstr "Advanced Send" + +#: public/views/disclaimer.html +msgid "Agree" +msgstr "Συμφωνώ" + +#: public/views/preferencesAlias.html +msgid "Alias for {{index.walletName}}" +msgstr "Ψευδώνυμο για {{index.walletName}}" + +#: public/views/translators.html +msgid "All contributions to Copay's translation are welcome. Sign up at crowdin.com and join the Copay project at" +msgstr "All contributions to Copay's translation are welcome. Sign up at crowdin.com and join the Copay project at" + +#: public/views/splash.html +msgid "Already have a wallet?" +msgstr "Έχετε ήδη πορτοφόλι?" + +#: public/views/preferences.html +msgid "Alternative Currency" +msgstr "Εναλλακτικό Νόμισμα" + +#: public/views/paymentUri.html +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/modals/customized-amount.html +msgid "Amount" +msgstr "Ποσό" + +#: src/js/services/bwsError.js +msgid "Amount below dust threshold" +msgstr "Amount below dust threshold" + +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html +msgid "Amount in" +msgstr "Ποσό εισόδου" + +#: public/views/preferencesLanguage.html +msgid "Applying changes" +msgstr "Αποδοχή αλλαγών" + +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +msgid "Are you sure you want to delete this wallet?" +msgstr "Είσαι σίγουρος ότι θέλετε να διαγράψετε αυτό το πορτοφόλι?" + +#: public/views/walletHome.html +msgid "Available Balance" +msgstr "Διαθέσιμο Υπόλοιπο" + +#: public/views/preferencesFee.html +#: public/views/modals/advancedSend.html +msgid "Average confirmation time: {{fee.nbBlocks * 10}} minutes" +msgstr "Average confirmation time: {{fee.nbBlocks * 10}} minutes" + +#: public/views/create.html +#: public/views/join.html +msgid "BIP32 master extended private key" +msgstr "Πρωτεύον ιδιωτικό κλειδί επέκτασης BIP32" + +#: public/views/includes/topbar.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Back" +msgstr "Πίσω" + +#: public/views/preferences.html +msgid "Backup" +msgstr "Αντίγραφο Ασφαλείας" + +#: src/js/controllers/backup.js +msgid "Backup created" +msgstr "Αντίγραφο Ασφαλείας δημιουργήθηκε" + +#: public/views/walletHome.html +msgid "Backup now" +msgstr "Πάρτε Αντίγραφο Ασφαλείας τώρα" + +#: public/views/backup.html +msgid "Backup options" +msgstr "Επιλογές Αντιγράφου Ασφαλείας" + +#: src/js/services/profileService.js +msgid "Bad wallet invitation" +msgstr "Bad wallet invitation" + +#: public/views/walletHome.html +msgid "Before receiving funds, it is highly recommended you backup your wallet keys." +msgstr "Πρίν λάβετε χρήματα, προτέινεται ισχυρά να πάρετε αντίγραφο ασφαλείας των κλειδιών του πορτοφολιού σας." + +#: public/views/preferences.html +msgid "Bitcoin Network Fee Policy" +msgstr "Πολιτική Χρέωσης Δικτύου Bitcoin" + +#: public/views/paymentUri.html +msgid "Bitcoin URI is NOT valid!" +msgstr "Το σύστημα Bitcoin URI δεν είναι έγκυρο!" + +#: public/views/walletHome.html +msgid "Bitcoin address" +msgstr "Διεύθυνση Bitcoin" + +#: public/views/preferencesFee.html +msgid "Bitcoin transactions may include a fee collected by miners on the network. The higher the fee, the greater the incentive a miner has to include that transaction in a block. Actual fees are determined based on network load and the selected policy." +msgstr "Bitcoin transactions may include a fee collected by miners on the network. The higher the fee, the greater the incentive a miner has to include that transaction in a block. Actual fees are determined based on network load and the selected policy." + +#: public/views/modals/txp-details.html +msgid "Broadcast Payment" +msgstr "Μετάδοση Πληρωμής" + +#: src/js/controllers/walletHome.js +msgid "Broadcasting Payment" +msgstr "Μεταδίδω την Πληρωμή" + +#: src/js/controllers/walletHome.js +msgid "Broadcasting transaction" +msgstr "Μεταδίδοντας την συναλλαγή" + +#: public/views/unsupported.html +msgid "Browser unsupported" +msgstr "Ο πλοηγός δέν υποστηρίζεται" + +#: public/views/modals/txp-details.html +msgid "But not broadcasted. Try to send manually" +msgstr "Αλλά δέν μεταδόθηκε. Προσπαθήστε να στείλετε χειροκίνητα" + +#: public/views/includes/password.html +msgid "CANCEL" +msgstr "ΑΚΥΡΟ" + +#: public/views/copayers.html +#: public/views/walletHome.html +#: public/views/modals/confirmation.html +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Cancel" +msgstr "Άκυρο" + +#: src/js/services/profileService.js +msgid "Cannot join the same wallet more that once" +msgstr "Cannot join the same wallet more that once" + +#: public/views/modals/paypro.html +msgid "Certified by" +msgstr "Πιστοποιήθηκε από" + +#: public/views/preferencesAlias.html +msgid "Changing wallet alias only affects the local wallet name." +msgstr "Αλλάζοντας το ψευδώνυμο του πορτοφολιού επηρεάζει μόνο το τοπικό όνομα πορτοφολιού." + +#: public/views/import.html +msgid "Choose a backup file from your computer" +msgstr "Επιλέξτε ένα αντίγραφο ασφαλείας απο τον υπολογιστή σας" + +#: public/views/modals/wallets.html +msgid "Choose a wallet to send funds" +msgstr "Επιλέξτε ένα πορτοφόλι για να στείλετε χρήματα" + +#: public/views/includes/topbar.html +#: public/views/modals/advancedSend.html +#: public/views/modals/copayers.html +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +#: public/views/modals/scanner.html +#: public/views/modals/wallets.html +msgid "Close" +msgstr "Κλείσιμο" + +#: public/views/preferences.html +msgid "Color" +msgstr "Χρώμα" + +#: public/views/preferencesAbout.html +msgid "Commit hash" +msgstr "Δέσμευση λύσης" + +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Confirm" +msgstr "Confirm" + +#: public/views/modals/tx-details.html +msgid "Confirmations" +msgstr "Επιβεβαιώσεις" + +#: src/js/services/bwsError.js +msgid "Copayer already in this wallet" +msgstr "Copayer already in this wallet" + +#: src/js/services/bwsError.js +msgid "Copayer already registered" +msgstr "Copayer already registered" + +#: src/js/services/bwsError.js +msgid "Copayer already voted on this spend proposal" +msgstr "Copayer already voted on this spend proposal" + +#: src/js/services/bwsError.js +msgid "Copayer data mismatch" +msgstr "Copayer data mismatch" + +#: public/views/modals/copayers.html +msgid "Copayers" +msgstr "Μέλη του πορτοφολιού Copay" + +#: src/js/controllers/backup.js +#: src/js/controllers/copayers.js +#: src/js/controllers/walletHome.js +msgid "Copied to clipboard" +msgstr "Copied to clipboard" + +#: public/views/backup.html +msgid "Copy backup to a safe place" +msgstr "Αποθηκεύστε το αντίγραφο ασφαλείας σε ασφαλές μέρος" + +#: public/views/backup.html +msgid "Copy this text as it is to a safe place (notepad or email)" +msgstr "Αντιγράψτε αυτο το κείμενο ώς έχει σε ασφαλές μέρος (σε εφαρμογή κειμένου ή ηλεκτρονικό ταχυδρομείο)" + +#: public/views/backup.html +msgid "Copy to clipboard" +msgstr "Αντιγραφή στο πρόχειρο" + +#: src/js/controllers/walletHome.js +msgid "Could not accept payment" +msgstr "Could not accept payment" + +#: src/js/controllers/index.js +msgid "Could not access Wallet Service: Not found" +msgstr "Could not access Wallet Service: Not found" + +#: src/js/controllers/walletHome.js +msgid "Could not broadcast payment" +msgstr "Could not broadcast payment" + +#: src/js/services/addressService.js +msgid "Could not create address" +msgstr "Could not create address" + +#: src/js/controllers/walletHome.js +msgid "Could not create payment proposal" +msgstr "Δεν ήταν δυνατή η δημιουργία πρότασης πληρωμής" + +#: src/js/services/profileService.js +msgid "Could not create using the specified extended private key" +msgstr "Δεν ήταν δυνατή η δημιουργία χρησιμοποιώντας το συγκεκριμένο ιδιωτικό κλειδί επέκτασης" + +#: src/js/controllers/import.js +msgid "Could not decrypt file, check your password" +msgstr "Δεν ήταν δυνατή η αποκρυπτογράφηση του αρχείου, ελέγξτε τον κωδικό σας" + +#: src/js/controllers/walletHome.js +msgid "Could not delete payment proposal" +msgstr "Could not delete payment proposal" + +#: src/js/controllers/walletHome.js +msgid "Could not fetch payment information" +msgstr "Δεν ήταν δυνατή η ανάκτηση των στοιχείων πληρωμής" + +#: public/views/walletHome.html +msgid "Could not fetch transaction history" +msgstr "Δεν ήταν δυνατή η λήψη του ιστορικού συναλλαγών" + +#: src/js/services/profileService.js +msgid "Could not import. Check input file and password" +msgstr "Δεν ήταν δυνατή η εισαγωγή. Ελέγξτε το αρχείο και τον κωδικό πρόσβασης" + +#: src/js/services/profileService.js +msgid "Could not join using the specified extended private key" +msgstr "Δεν μπορείτε να συμμετέχετε χρησιμοποιώντας το συγκεκριμένο ιδιωτικό κλειδί επέκτασης" + +#: src/js/services/profileService.js +msgid "Could not join wallet" +msgstr "Could not join wallet" + +#: src/js/controllers/walletHome.js +msgid "Could not recognize a valid Bitcoin QR Code" +msgstr "Δεν ήταν δυνατή η αναγνώριση ενός έγκυρου κωδικού QR για Βitcoin" + +#: src/js/controllers/walletHome.js +msgid "Could not reject payment" +msgstr "Could not reject payment" + +#: src/js/controllers/walletHome.js +msgid "Could not send payment" +msgstr "Δεν είναι δυνατή η αποστολή της πληρωμής" + +#: src/js/controllers/index.js +msgid "Could not update Wallet" +msgstr "Δεν ήταν δυνατή η ενημέρωση του πορτοφολιού" + +#: public/views/walletHome.html +msgid "Create" +msgstr "Δημιουργία" + +#: public/views/add.html +#: public/views/create.html +msgid "Create new wallet" +msgstr "Δημιουργήστε νέο πορτοφόλι" + +#: public/views/create.html +msgid "Create {{requiredCopayers}}-of-{{totalCopayers}} wallet" +msgstr "Δημιουργία {{requiredCopayers}} των {{totalCopayers}} του πορτοφολιού" + +#: public/views/includes/sidebar.html +msgid "Create, join or import" +msgstr "Δημιουργία, συμμετοχή ή εισαγωγή" + +#: public/views/modals/txp-details.html +msgid "Created by" +msgstr "Δημιουργήθηκε από" + +#: public/views/splash.html +msgid "Creating Profile..." +msgstr "Δημιουργία του Προφίλ..." + +#: public/views/create.html +msgid "Creating Wallet..." +msgstr "Δημιουργία του Πορτοφολιού..." + +#: src/js/controllers/walletHome.js +msgid "Creating transaction" +msgstr "Δημιουργία συναλλαγής" + +#: public/views/preferencesFee.html +#: public/views/modals/advancedSend.html +msgid "Current fee rate for this policy: {{fee.feePerKBUnit}}/kiB" +msgstr "Current fee rate for this policy: {{fee.feePerKBUnit}}/kiB" + +#: public/views/modals/tx-details.html +msgid "Date" +msgstr "Ημερομηνία" + +#: public/views/modals/txp-details.html +msgid "Delete Payment Proposal" +msgstr "Διαγράψτε την Πρόταση Πληρωμής" + +#: public/views/preferencesAdvanced.html +msgid "Delete Wallet" +msgstr "Διαγραφή Πορτοφολιού" + +#: public/views/copayers.html +msgid "Delete it and create a new one" +msgstr "Διαγράψετε το και δημιουργήστε ένα νέο" + +#: public/views/preferencesDeleteWallet.html +msgid "Delete wallet" +msgstr "Διαγραφή Πορτοφολιού" + +#: src/js/controllers/walletHome.js +msgid "Deleting payment" +msgstr "Διαγραφή πληρωμής" + +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Details" +msgstr "Λεπτομέρειες" + +#: public/views/preferences.html +msgid "Disabled" +msgstr "Απενεργοποιημένο" + +#: public/views/backup.html +msgid "Do not include private key in backup" +msgstr "Μην συμπεριλάβετε το ιδιωτικό κλειδί στο αντίγραφο ασφαλείας" + +#: public/views/translators.html +msgid "Don't see your language on Crowdin? Contact the Owner on Crowdin! We'd love to support your language." +msgstr "Don't see your language on Crowdin? Contact the Owner on Crowdin! We'd love to support your language." + +#: public/views/walletHome.html +msgid "Download CSV file" +msgstr "Κατεβάστε το αρχείο CSV" + +#: public/views/backup.html +msgid "Download backup" +msgstr "Λήψη αντιγράφου ασφαλείας" + +#: src/js/services/feeService.js +msgid "Economy" +msgstr "Economy" + +#: public/views/preferences.html +msgid "Email Notifications" +msgstr "Ειδοποιήσεις Email" + +#: public/views/preferences.html +msgid "Encrypt Private Key" +msgstr "Κρυπτογράφηση ιδιωτικού κλειδιού" + +#: src/js/controllers/backup.js +msgid "Encrypted backup file saved" +msgstr "Κρυπτογραφημένο αρχείο αντιγράφου ασφαλείας αποθηκεύτηκε" + +#: public/views/includes/password.html +msgid "Enter your password" +msgstr "Παρακαλώ εισάγετε τον κωδικό σας" + +#: src/js/controllers/index.js +msgid "Error at Wallet Service" +msgstr "Error at Wallet Service" + +#: src/js/services/profileService.js +msgid "Error creating wallet" +msgstr "Σφάλμα στην δημιουργία πορτοφολιού" + +#: src/js/services/profileService.js +msgid "Error importing wallet:" +msgstr "Σφάλμα στην εισαγωγή πορτοφολίου:" + +#: public/views/modals/paypro.html +#: public/views/modals/txp-details.html +msgid "Expires" +msgstr "Λήγει" + +#: public/views/backup.html +msgid "Failed to create backup" +msgstr "Αδυναμία δημιουργίας αντιγράφου ασφαλείας" + +#: src/js/controllers/importLegacy.js +msgid "Failed to import wallets" +msgstr "Αποτυχία εισαγωγής πορτοφολιού" + +#: public/views/create.html +msgid "Family vacation funds" +msgstr "Χρήματα διακοπών της οικογένειας" + +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Fee" +msgstr "Αμοιβή" + +#: public/views/modals/advancedSend.html +msgid "Fee Policy" +msgstr "Fee Policy" + +#: public/views/walletHome.html +msgid "Fee policy for this transaction" +msgstr "Fee policy for this transaction" + +#. Get information of payment if using Payment Protocol +#: src/js/controllers/walletHome.js +msgid "Fetching Payment Information" +msgstr "Λήψη Πληροφοριών Πληρωμής" + +#: public/views/translators.html +msgid "French" +msgstr "Γαλλικά" + +#: src/js/services/bwsError.js +msgid "Funds are locked by pending spend proposals" +msgstr "Funds are locked by pending spend proposals" + +#: src/js/services/notificationsService.js +msgid "Funds received" +msgstr "Χρήματα ελήφθησαν" + +#: public/views/splash.html +msgid "GET STARTED" +msgstr "ΞΕΚΙΝΗΣΤΕ" + +#: public/views/modals/customized-amount.html +msgid "Generate QR Code" +msgstr "Δημιουργία Κώδικα QR" + +#: public/views/walletHome.html +msgid "Generate new address" +msgstr "Δημιουργία νέας διεύθυνσης" + +#: public/views/walletHome.html +msgid "Generating .csv file..." +msgstr "Δημιουργία .csv αρχείου..." + +#: public/views/translators.html +msgid "German" +msgstr "Γερμανικά" + +#: public/views/modals/wallets.html +msgid "Getting address for wallet {{selectedWalletName}} ..." +msgstr "Λήψη διεύθυνσης για το πορτοφόλι {{selectedWalletName}} ..." + +#: public/views/preferences.html +msgid "Global settings" +msgstr "Καθολικές ρυθμίσεις" + +#: public/views/disclaimer.html +msgid "Go back" +msgstr "Πάμε πίσω" + +#: public/views/translators.html +msgid "Greek" +msgstr "Ελληνικά" + +#: public/views/import.html +msgid "Have a Backup from Copay v0.9?" +msgstr "Έχετε ένα αντίγραφο ασφαλείας από το Copay έκδοση 0.9?" + +#: public/views/backup.html +#: public/views/create.html +#: public/views/join.html +#: public/views/walletHome.html +msgid "Hide advanced options" +msgstr "Hide advanced options" + +#: src/js/controllers/index.js +msgid "History" +msgstr "Ιστορικό" + +#: src/js/controllers/index.js +msgid "Home" +msgstr "Αρχική Σελίδα" + +#: public/views/disclaimer.html +msgid "I affirm that I have read, understood, and agree with these terms." +msgstr "Βεβαιώνω ότι έχω διαβάσει, κατανοήσει και συμφωνήσει με αυτούς τους όρους." + +#: public/views/create.html +#: public/views/join.html +msgid "If not given, a secure key will be generated" +msgstr "Αν δεν σας έχει δοθεί, ένα ασφαλές κλειδί θα δημιουργηθεί" + +#: public/views/importLegacy.html +msgid "Import" +msgstr "Εισαγωγή" + +#: public/views/import.html +#: public/views/splash.html +msgid "Import backup" +msgstr "Εισαγωγή αντιγράφου ασφαλείας" + +#: public/views/importLegacy.html +msgid "Import from the Cloud?" +msgstr "Εισαγωγή από το σύννεφο?" + +#: public/views/import.html +msgid "Import here" +msgstr "Εισαγωγή εδώ" + +#: public/views/add.html +msgid "Import wallet" +msgstr "Εισαγωγή πορτοφολιού" + +#: public/views/import.html +msgid "Importing wallet..." +msgstr "Εισάγεται το πορτοφόλι ..." + +#: public/views/importLegacy.html +msgid "Importing..." +msgstr "Εισαγωγή ..." + +#: src/js/services/bwsError.js +msgid "Incorrect address network" +msgstr "Incorrect address network" + +#: src/js/services/bwsError.js +msgid "Insufficient funds" +msgstr "Insufficient funds" + +#: src/js/services/bwsError.js +msgid "Insufficient funds for fee" +msgstr "Insufficient funds for fee" + +#: public/views/walletHome.html +msgid "Invalid" +msgstr "Μη έγκυρο" + +#: src/js/services/bwsError.js +msgid "Invalid address" +msgstr "Invalid address" + +#: src/js/controllers/copayers.js +msgid "Invitation to share a Copay Wallet" +msgstr "Invitation to share a Copay Wallet" + +#: public/views/translators.html +msgid "Italian" +msgstr "Ιταλικά" + +#: public/views/translators.html +msgid "Japanese" +msgstr "Ιαπωνικά" + +#: public/views/create.html +#: public/views/join.html +msgid "John" +msgstr "Ιωάννης" + +#: public/views/join.html +msgid "Join" +msgstr "Συμμετοχή" + +#: src/js/controllers/copayers.js +msgid "Join my Copay wallet. Here is the invitation code: {{secret}} You can download Copay for your phone or desktop at https://copay.io" +msgstr "Join my Copay wallet. Here is the invitation code: {{secret}} You can download Copay for your phone or desktop at https://copay.io" + +#: public/views/add.html +msgid "Join shared wallet" +msgstr "Συμμετοχή σε κοινόχρηστο πορτοφόλι" + +#: public/views/join.html +msgid "Joining Wallet..." +msgstr "Εισαγωγή στο Πορτοφόλι..." + +#: public/views/preferences.html +msgid "Language" +msgstr "Γλώσσα" + +#: public/views/importLegacy.html +msgid "Learn more about Wallet Migration" +msgstr "Μάθετε περισσότερα για τη Μετανάστευση Πορτοφολιού" + +#: src/js/services/bwsError.js +msgid "Locktime in effect. Please wait to create a new spend proposal" +msgstr "Locktime in effect. Please wait to create a new spend proposal" + +#: src/js/services/bwsError.js +msgid "Locktime in effect. Please wait to remove this spend proposal" +msgstr "Locktime in effect. Please wait to remove this spend proposal" + +#: public/views/paymentUri.html +msgid "Make a payment to" +msgstr "Κάντε μια πληρωμή σε" + +#: public/views/create.html +#: public/views/join.html +msgid "Master extended private key" +msgstr "Πρωτεύον ιδιωτικό κλειδί επέκτασης" + +#: public/views/includes/copayers.html +#: public/views/modals/copayers.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Me" +msgstr "Εγώ" + +#: public/views/modals/paypro.html +msgid "Memo" +msgstr "Σημείωση" + +#: public/views/modals/tx-details.html +msgid "Merchant message" +msgstr "Μήνυμα Εμπόρου" + +#: public/views/paymentUri.html +msgid "Message" +msgstr "Μήνυμα" + +#: public/views/walletHome.html +msgid "More" +msgstr "Περισσότερα" + +#: public/views/walletHome.html +msgid "Moved" +msgstr "Μετακινήθηκε" + +#: public/views/walletHome.html +msgid "Multisignature wallet" +msgstr "Πορτοφόλι Πολλών Υπογραφών" + +#: public/views/walletHome.html +msgid "My Bitcoin address" +msgstr "Η διεύθυνση Bitcoin μου" + +#: public/views/paymentUri.html +msgid "Network" +msgstr "Δίκτυο" + +#: src/js/services/bwsError.js +msgid "Network connection error" +msgstr "Network connection error" + +#: src/js/services/notificationsService.js +msgid "New Payment Proposal" +msgstr "Νέα Πρόταση Πληρωμής" + +#: public/views/walletHome.html +msgid "No Private key" +msgstr "Δεν υπάρχει ιδιωτικό κλειδί" + +#: public/views/walletHome.html +msgid "No transactions yet" +msgstr "Δεν υπάρχουν συναλλαγές ακόμα" + +#: src/js/services/feeService.js +msgid "Normal" +msgstr "Normal" + +#: src/js/services/bwsError.js +msgid "Not authorized" +msgstr "Not authorized" + +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html +msgid "Not valid" +msgstr "Δεν είναι έγκυρη" + +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/modals/tx-details.html +msgid "Note" +msgstr "Σημείωση" + +#: public/views/includes/alert.html +#: public/views/includes/password.html +msgid "OK" +msgstr "OK" + +#: public/views/modals/tx-status.html +msgid "OKAY" +msgstr "ΕΝΤΑΞΕΙ" + +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Participants" +msgstr "Συμμετέχοντες" + +#: public/views/import.html +#: public/views/importLegacy.html +msgid "Password" +msgstr "Κωδικός πρόσβασης" + +#: public/views/includes/password.html +msgid "Password cannot be recovered. Be sure to write it down" +msgstr "Ο Κωδικός πρόσβασης δεν μπορεί να ανακτηθεί. Να είστε βέβαιος οτι τον σημειώσατε" + +#: src/js/services/profileService.js +msgid "Password needed" +msgstr "Κωδικός πρόσβασης απαιτείται" + +#: src/js/controllers/password.js +msgid "Passwords do not match" +msgstr "Οι κωδικοί πρόσβασης δεν ταιριάζουν" + +#: public/views/join.html +msgid "Paste invitation here" +msgstr "Επικολλήστε την πρόσκληση σας εδώ" + +#: public/views/import.html +msgid "Paste the backup plain text code" +msgstr "Επικολλήστε τον κώδικα δημιουργίας αντιγράφων ασφαλείας εδώ" + +#: public/views/modals/paypro.html +msgid "Pay To" +msgstr "Πληρωμή Πρός" + +#: public/views/modals/tx-status.html +msgid "Payment Accepted" +msgstr "Πληρωμή Αποδεκτή" + +#: public/views/modals/txp-details.html +msgid "Payment Proposal" +msgstr "Πρόταση Πληρωμής" + +#: public/views/modals/tx-status.html +msgid "Payment Proposal Created" +msgstr "Πρόταση Πληρωμής Δημιουργήθηκε" + +#: src/js/services/notificationsService.js +msgid "Payment Proposal Rejected" +msgstr "Πρόταση Πληρωμής Απορρίφθηκε" + +#: src/js/services/notificationsService.js +msgid "Payment Proposal Rejected by Copayer" +msgstr "Το Copayer Απέρριψε την Πρόταση Πληρωμής" + +#: src/js/services/notificationsService.js +msgid "Payment Proposal Signed by Copayer" +msgstr "Η Πρόταση Πληρωμής Υπογράφηκε από το Copayer" + +#: public/views/walletHome.html +msgid "Payment Proposals" +msgstr "Πρόταση Πληρωμής" + +#: src/js/controllers/walletHome.js +msgid "Payment Protocol not supported on Chrome App" +msgstr "Το Πρωτόκολλο Πληρωμής δεν υποστηρίζεται στην εφαρμογή Chrome" + +#: public/views/modals/tx-status.html +msgid "Payment Rejected" +msgstr "Πληρωμή Απερρίφθη" + +#: public/views/modals/tx-status.html +#: src/js/services/notificationsService.js +msgid "Payment Sent" +msgstr "Πληρωμή Εστάλη" + +#: public/views/modals/txp-details.html +msgid "Payment accepted..." +msgstr "Πληρωμή αποδεκτή..." + +#: public/views/modals/txp-details.html +msgid "Payment details" +msgstr "Λεπτομέρειες πληρωμής" + +#: public/views/modals/txp-details.html +msgid "Payment finally rejected" +msgstr "Η πληρωμή τελικά απορρίφθηκε" + +#: public/views/modals/paypro.html +msgid "Payment request" +msgstr "Αίτηση πληρωμής" + +#: public/views/modals/txp-details.html +msgid "Payment sent!" +msgstr "Πληρωμή Εστάλη!" + +#: public/views/walletHome.html +msgid "Payment to" +msgstr "Πληρωμή σε" + +#: public/views/walletHome.html +msgid "Pending Confirmation" +msgstr "Pending Confirmation" + +#: public/views/preferencesDeleteWallet.html +msgid "Permanently delete this wallet. THIS ACTION CANNOT BE REVERSED" +msgstr "Να διαγράφεί μόνιμα αυτό το πορτοφόλι? ΑΥΤΗ Η ΕΝΕΡΓΕΙΑ ΔΕΝ ΜΠΟΡΕΙ ΝΑ ΑΝΤΙΣΤΡΑΦΕΙ" + +#: public/views/create.html +msgid "Personal Wallet" +msgstr "Προσωπικό πορτοφόλι" + +#: src/js/controllers/create.js +#: src/js/controllers/join.js +msgid "Please enter the required fields" +msgstr "Παρακαλώ εισάγετε τα απαιτούμενα πεδία" + +#: src/js/services/bwsError.js +msgid "Please upgrade Copay to perform this action" +msgstr "Please upgrade Copay to perform this action" + +#: src/js/controllers/import.js +msgid "Please, select your backup file" +msgstr "Παρακαλώ, επιλέξτε το αρχείο αντιγράφου ασφαλείας" + +#: public/views/translators.html +msgid "Portuguese" +msgstr "Πορτογαλικά" + +#: public/views/walletHome.html +msgid "Preferences" +msgstr "Προτιμήσεις" + +#: src/js/controllers/backup.js +msgid "Preparing backup..." +msgstr "Preparing backup..." + +#: src/js/services/feeService.js +msgid "Priority" +msgstr "Priority" + +#: public/views/modals/customized-amount.html +msgid "QR Code" +msgstr "Κωδικός QR" + +#: public/views/modals/scanner.html +msgid "QR-Scanner" +msgstr "Σαρωτής QR" + +#: src/js/controllers/index.js +msgid "Receive" +msgstr "Λάβετε" + +#: public/views/walletHome.html +msgid "Received" +msgstr "Ληφθέντα" + +#: public/views/includes/output.html +#: public/views/includes/transaction.html +msgid "Recipients" +msgstr "Recipients" + +#: public/views/walletHome.html +msgid "Reconnecting to Wallet Service..." +msgstr "Γίνεται επανασύνδεση στην Υπηρεσία Πορτοφολιού..." + +#: public/views/walletHome.html +msgid "Recreate" +msgstr "Αναδημιουργία" + +#: public/views/walletHome.html +msgid "Recreating Wallet..." +msgstr "Αναδημιουργία πορτοφολιού..." + +#: public/views/modals/txp-details.html +msgid "Reject" +msgstr "Απόρριψη" + +#: src/js/controllers/walletHome.js +msgid "Rejecting payment" +msgstr "Απόρριψη πληρωμής" + +#: public/views/preferencesAbout.html +msgid "Release Information" +msgstr "Πληροφορίες Έκδοσης" + +#: public/views/backup.html +#: public/views/includes/password.html +msgid "Repeat password" +msgstr "Επανάληψη κωδικού" + +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html +msgid "Request a specific amount" +msgstr "Ζητήστε ένα συγκεκριμένο ποσό" + +#: public/views/import.html +#: public/views/join.html +msgid "Required" +msgstr "Απαιτείτε" + +#: public/views/splash.html +msgid "Retrying..." +msgstr "Επανάληψη..." + +#: public/views/translators.html +msgid "Russian" +msgstr "Russian" + +#: public/views/includes/password.html +msgid "SET" +msgstr "Ορισμός" + +#: public/views/walletHome.html +msgid "SKIP BACKUP" +msgstr "ΠΑΡΑΛΕΙΨΗ ΔΗΜΙΟΥΡΓΙΑΣ ΑΝΤΙΓΡΑΦΩΝ ΑΣΦΑΛΕΙΑΣ" + +#: public/views/preferencesAlias.html +#: public/views/preferencesBwsUrl.html +#: public/views/preferencesEmail.html +msgid "Save" +msgstr "Αποθήκευση" + +#: public/views/preferencesEmail.html +msgid "Saving preferences..." +msgstr "Αποθήκευση προτιμήσεων..." + +#: src/js/services/notificationsService.js +msgid "Scan Finished" +msgstr "Η σάρωση ολοκληρώθηκε" + +#: public/views/preferencesAdvanced.html +msgid "Scan addresses for funds" +msgstr "Σάρωση διευθύνσεων για χρήματα" + +#: public/views/walletHome.html +msgid "Scan status finished with error" +msgstr "Η σάρωση έχει τελειώσει με σφάλματα" + +#: public/views/walletHome.html +msgid "Scanning Wallet funds..." +msgstr "Σάρωση χρημάτων Πορτοφολιού..." + +#: public/views/modals/tx-details.html +msgid "See it on the blockchain" +msgstr "Δείτε τη συναλλαγή στην αλυσίδα συναλλαγών" + +#: public/views/import.html +msgid "Select a backup file" +msgstr "Επιλέξτε ένα αρχείο αντιγράφου ασφαλείας" + +#: public/views/paymentUri.html +msgid "Select a wallet" +msgstr "Επιλέξτε ένα πορτοφόλι" + +#: public/views/create.html +msgid "Select required number of signatures" +msgstr "Επιλέξτε τον απαιτούμενο αριθμό υπογραφών" + +#: public/views/create.html +msgid "Select total number of copayers" +msgstr "Επιλέξτε το συνολικό αριθμό των copayers" + +#: public/views/walletHome.html +#: public/views/includes/transaction.html +#: src/js/controllers/index.js +msgid "Send" +msgstr "Αποστολή" + +#: public/views/walletHome.html +msgid "Send All" +msgstr "Αποστολή Όλων" + +#: public/views/backup.html +#: public/views/preferencesLogs.html +msgid "Send by email" +msgstr "Αποστολή με email" + +#: public/views/walletHome.html +msgid "Sent" +msgstr "Εξερχόμενα" + +#: public/views/importLegacy.html +msgid "Server" +msgstr "Διακομιστής" + +#: public/views/preferencesAbout.html +msgid "Session log" +msgstr "Ημερολόγιο συνεδριών" + +#: public/views/backup.html +msgid "Set up a Password for your backup" +msgstr "Ορίστε έναν Κωδικό Πρόσβασης για το αντίγραφο ασφαλείας" + +#: public/views/includes/password.html +msgid "Set up a password" +msgstr "Ορίστε έναν κωδικό πρόσβασης" + +#: public/views/preferencesEmail.html +msgid "Setting up email notifications could weaken your privacy, if the wallet service provider is compromised. Information available to an attacker would include your wallet addresses and its balance, but no more." +msgstr "Ενεργοποιώντας τις ενημερώσεις μέσω ηλεκτρονικού ταχυδρομείου μπορεί να μειωθεί η ιδιωτικότητα σας, εάν ο πάροχος του πορτοφολιού παραβιαστεί. Οι πληροφορίες που θα διαθέτει ένας εισβολέας θα περιλαμβάνουν τις διευθύνσεις του πορτοφόλιου σας και το ποσόν των χρημάτων σας, αλλά τίποτα περισσότερο." + +#: public/views/walletHome.html +msgid "Share address" +msgstr "Μοιραστείτε τη διεύθυνση" + +#: public/views/copayers.html +msgid "Share invitation" +msgstr "Μοιραστείτε μια πρόσκληση" + +#: public/views/copayers.html +msgid "Share this invitation with your copayers" +msgstr "Μοιραστείτε αυτήν την πρόσκληση με άλλους copayers" + +#: public/views/walletHome.html +msgid "Share this wallet address to receive payments. To protect your privacy, new addresses are generated automatically once you use them." +msgstr "Μοιραστείτε αυτή τη διεύθυνση πορτοφόλιού ώστε να λάβετε πληρωμές. Για την προστασία της ιδιωτικότητας σας, νέες διευθύνσεις δημιουργούνται αυτόματα μόλις χρησιμοποιήσετε τις παλιές." + +#: public/views/create.html +msgid "Shared Wallet" +msgstr "Κοινόχρηστο πορτοφόλι" + +#: public/views/backup.html +#: public/views/create.html +#: public/views/join.html +#: public/views/walletHome.html +msgid "Show advanced options" +msgstr "Show advanced options" + +#: src/js/services/bwsError.js +msgid "Signatures rejected by server" +msgstr "Signatures rejected by server" + +#: src/js/controllers/walletHome.js +msgid "Signing payment" +msgstr "Υπογραφή πληρωμής" + +#: src/js/controllers/walletHome.js +msgid "Signing transaction" +msgstr "Υπογραφή συναλλαγής" + +#: public/views/translators.html +msgid "Spanish" +msgstr "Ισπανικά" + +#: src/js/services/bwsError.js +msgid "Spend proposal is not accepted" +msgstr "Spend proposal is not accepted" + +#: src/js/services/bwsError.js +msgid "Spend proposal not found" +msgstr "Spend proposal not found" + +#: src/js/controllers/copayers.js +#: src/js/controllers/import.js +#: src/js/controllers/preferencesDelete.js +msgid "Success" +msgstr "Επιτυχία" + +#: public/views/walletHome.html +msgid "Tap to retry" +msgstr "Πατήστε για να προσπαθήσετε ξανά" + +#: public/views/disclaimer.html +#: public/views/preferencesAbout.html +msgid "Terms of Use" +msgstr "Όροι Χρήσης" + +#: public/views/create.html +msgid "Testnet" +msgstr "Δοκιμαστικό Δίκτυο" + +#: src/js/controllers/walletHome.js +msgid "The payment was created but could not be completed. Please try again from home screen" +msgstr "Η πληρωμή δημιουργήθηκε, αλλά δεν ήταν δυνατό να ολοκληρωθεί. Παρακαλώ ξαναπροσπαθήστε από την αρχική οθόνη" + +#: src/js/controllers/walletHome.js +msgid "The payment was created but could not be signed. Please try again from home screen" +msgstr "The payment was created but could not be signed. Please try again from home screen" + +#: public/views/modals/txp-details.html +msgid "The payment was removed by creator" +msgstr "Η πληρωμή έχει αφαιρεθεί από τον δημιουργό της" + +#: src/js/controllers/walletHome.js +msgid "The payment was signed but could not be broadcasted. Please try again from home screen" +msgstr "The payment was signed but could not be broadcasted. Please try again from home screen" + +#: public/views/backup.html +msgid "The private key for this wallet is encrypted. Exporting a backup will keep the private key encrypted in the backup archive." +msgstr "Το ιδιωτικό κλειδί για αυτό το πορτοφόλι είναι κρυπτογραφημένο. Εξάγωντας ένα αντίγραφο ασφαλείας θα κρατήθει το ιδιωτικό κλειδί που έχει κρυπτογραφηθεί στο εφεδρικό αρχείο." + +#: public/views/disclaimer.html +msgid "The software you are about to use functions as a free, open source, and multi-signature digital wallet. The software does not constitute an account where BitPay or other third parties serve as financial intermediaries or custodians of your bitcoin. While the software has undergone beta testing and continues to be improved by feedback from the open-source user and developer community, we cannot guarantee that there will be no bugs in the software. You acknowledge that your use of this software is at your own discretion and in compliance with all applicable laws. You are responsible for safekeeping your passwords, private key pairs, PINs and any other codes you use to access the software. IF YOU LOSE ACCESS TO YOUR COPAY WALLET OR YOUR ENCRYPTED PRIVATE KEYS AND YOU HAVE NOT SEPARATELY STORED A BACKUP OF YOUR WALLET AND CORRESPONDING PASSWORD, YOU ACKNOWLEDGE AND AGREE THAT ANY BITCOIN YOU HAVE ASSOCIATED WITH THAT COPAY WALLET WILL BECOME INACCESSIBLE. All transaction requests are irreversible. The authors of the software, employees and affiliates of Bitpay, copyright holders, and BitPay, Inc. cannot retrieve your private keys or passwords if you lose or forget them and cannot guarantee transaction confirmation as they do not have control over the Bitcoin network. To the fullest extent permitted by law, this software is provided “as is” and no representations or warranties can be made of any kind, express or implied, including but not limited to the warranties of merchantability, fitness or a particular purpose and noninfringement. You assume any and all risks associated with the use of the software. In no event shall the authors of the software, employees and affiliates of Bitpay, copyright holders, or BitPay, Inc. be held liable for any claim, damages or other liability, whether in an action of contract, tort, or otherwise, arising from, out of or in connection with the software. We reserve the right to modify this disclaimer from time to time." +msgstr "Το λογισμικό που πρόκειται να χρησιμοποιήσετε λειτουργεί ως ένα δωρεάν, ανοικτού κώδικα και πολλαπλών υπογραφών ψηφιακό πορτοφόλι. Το λογισμικό δεν αποτελεί ένα λογαριασμό όπου το BitPay ή άλλα τρίτα μέρη χρησιμεύουν ως ενδιάμεσοι χρηματοπιστωτικοί οργανισμοί ή θεματοφύλακες των bitcoin σας. Ενώ το λογισμικό έχει υποβληθεί σε δοκιμή beta και συνεχίζει να βελτιώνεται από χρήστες ανοικτού κώδικα και την κοινότητα των προγραμματιστών, εμείς δεν μπορούμε να εγγυηθούμε ότι δεν θα υπάρξει κανένα σφάλμα στο λογισμικό. Αναγνωρίζετε ότι η χρήση αυτού του λογισμικού είναι στην κρίση σας και σε συμφωνία με όλους τους ισχύοντες νόμους. Είστε υπεύθυνος για τη διαφύλαξή των κωδικών πρόσβασής σας, το ιδιωτικό ζεύγος κλειδιών, τετραψήφιων κωδικών PIN και οποιουσδήποτε άλλους κωδικούς που χρησιμοποιείτε για να έχετε πρόσβαση στο λογισμικό. ΕΑΝ ΧΑΣΕΤΕ ΤΗΝ ΠΡΟΣΒΑΣΗ ΝΑ ΣΑΣ ΣΤΟ ΠΟΡΤΟΦΌΛΙ COPAY Ή ΣΤΑ ΚΡΥΠΤΟΓΡΑΦΗΜΕΝΑ ΙΔΙΩΤΙΚΑ ΣΑΣ ΚΛΕΙΔΙΑ ΚΑΙ ΔΕΝ ΑΠΟΘΗΚΕΥΣΑΤΕ ΧΩΡΙΣΤΆ ΕΝΑ ΑΝΤΙΓΡΑΦΟ ΑΣΦΑΛΕΙΑΣ ΤΟΥ ΠΟΡΤΟΦΟΛΙΟΥ ΚΑΙ ΤΟΥ ΑΝΤΙΣΤΟΙΧΟΥ ΚΩΔΙΚΟΥ ΠΡΌΣΒΑΣΗΣ, ΑΠΟΔΕΧΕΣΤΕ ΚΑΙ ΣΥΜΦΩΝΕΙΤΕ ΟΤΙ ΟΠΟΙΑΔΗΠΟΤΕ ΠΟΣΟΤΗΤΑ BITCOIN ΠΟΥ ΕΧΕΤΕ ΣΥΣΧΕΤΙΣΕΙ ΜΕ ΤΟ ΠΟΡΤΟΦΟΛΙ ΤΟΥ COPAY ΘΑ ΓΙΝΟΥΝ ΑΠΡΟΣΠΕΛΑΣΤΑ. Όλες οι αιτήσεις για συναλλαγές είναι αμετάκλητες. Οι συγγραφείς του λογισμικού, οι εργαζόμενοι και οι συνεργάτες του Bitpay, οι κατόχοι πνευματικών δικαιωμάτων, και η BitPay α.ε., δεν μπορούν να ανακτήσουν ιδιωτικά κλειδιά ή τους κωδικούς πρόσβασης σας, εάν χάσετε ή ξεχασετε αυτούς και δεν μπορούν να εγγυηθούν την επιβεβαίωση της συναλλαγής, δεδομένου ότι δεν έχουν τον έλεγχο του δικτύου Bitcoin. Στο μέγιστο βαθμό που επιτρέπει το δίκαιο, το λογισμικό παρέχεται \"ως έχει\" και καμία δήλωση ή εγγύηση μπορεί να γίνει του κάθε είδους, ρητή ή σιωπηρή, συμπεριλαμβανομένων, αλλά μη περιορισμένων, των εγγυήσεων εμπορευσιμότητας, καταλληλότητας ή συγκεκριμένου σκοπού και νομιμότητας. Αναλάμβανετε κάθε κινδύνο που συνδέεται με τη χρήση του λογισμικού. Σε καμία περίπτωση οι συντάκτες του λογισμικού, οι συνεργάτες του Bitpay, οι κατόχοι πνευματικών δικαιωμάτων, ή η BitPay α.ε. ευθύνεται για οποιαδήποτε αξίωση, ζημία ή άλλη ευθύνη, είτε βαση κάποιας σύμβασης, αδικοπραξίας, ή άλλο, που προκύπτει από την σχέση σας με το λογισμικό. Διατηρούμε το δικαίωμα να τροποποιήσουμε αυτή την αποποίηση ευθυνών από καιρό σε καιρό." + +#: src/js/services/bwsError.js +msgid "The spend proposal is not pending" +msgstr "The spend proposal is not pending" + +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +msgid "The wallet \"{{walletName}}\" was deleted" +msgstr "Διαγράφηκε το πορτοφόλι \"{{walletName}}\"" + +#: public/views/paymentUri.html +msgid "There are no wallets to make this payment" +msgstr "Δεν υπάρχουν πορτοφόλια για να πραγματοποιηθεί η πληρωμή" + +#: src/js/controllers/import.js +msgid "There is an error in the form" +msgstr "Υπάρχει ένα λάθος στη φόρμα εισαγωγής" + +#: public/views/modals/tx-details.html +msgid "This transaction has become invalid; possibly due to a double spend attempt." +msgstr "Αυτή η συναλλαγή είναι άκυρη, πιθανόν λόγω μιας προσπάθειας διπλού ξοδέματος." + +#: public/views/walletHome.html +msgid "This wallet is not registered at the given Bitcore Wallet Service (BWS). You can recreate it from the local information." +msgstr "Το πορτοφόλι δεν έχει καταχωρηθεί στη Βάση Δεδομένων Πορτοφολιών Bitcore (BWS). Μπορείτε να την ξαναδημιουργήσετε από τις τοπικές πληροφορίες." + +#: public/views/modals/txp-details.html +msgid "Time" +msgstr "Ώρα" + +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/includes/transaction.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "To" +msgstr "Προς" + +#: public/views/includes/output.html +msgid "Total" +msgstr "Total" + +#: public/views/walletHome.html +msgid "Total Locked Balance" +msgstr "Συνολικό Κλειδωμένο Υπόλοιπο" + +#: public/views/modals/tx-details.html +msgid "Transaction" +msgstr "Συναλλαγή" + +#: src/js/services/bwsError.js +msgid "Transaction already broadcasted" +msgstr "Transaction already broadcasted" + +#: public/views/translators.html +msgid "Translation Credits" +msgstr "Translation Credits" + +#: public/views/preferencesAbout.html +msgid "Translators" +msgstr "Translators" + +#: src/js/controllers/walletHome.js +msgid "Unable to send transaction proposal" +msgstr "Δεν είναι δυνατή η αποστολή πρότασης συναλλαγής" + +#: public/views/walletHome.html +#: public/views/modals/tx-details.html +msgid "Unconfirmed" +msgstr "Ανεπιβεβαίωτες" + +#: public/views/preferences.html +msgid "Unit" +msgstr "Μονάδα" + +#: public/views/walletHome.html +msgid "Unsent transactions" +msgstr "Μη Απεσταλμένες συναλλαγές" + +#: public/views/modals/paypro.html +msgid "Untrusted" +msgstr "Μη αξιόπιστη" + +#: public/views/walletHome.html +msgid "Updating Wallet..." +msgstr "Ενημέρωση πορτοφολιού..." + +#: public/views/preferences.html +#: public/views/walletHome.html +msgid "Use Unconfirmed Funds" +msgstr "Use Unconfirmed Funds" + +#: public/views/preferencesAbout.html +msgid "Version" +msgstr "Έκδοση" + +#: public/views/backup.html +msgid "View backup" +msgstr "Προβολή αντιγράφων ασφαλείας" + +#: public/views/walletHome.html +msgid "WARNING: Backup needed" +msgstr "Προειδοποίηση: Δημιουργία αντιγράφων ασφαλείας απαιτείται" + +#: public/views/walletHome.html +msgid "WARNING: Wallet not registered" +msgstr "Προειδοποίηση: Το πορτοφόλι δεν έχει καταχωρηθεί" + +#: public/views/splash.html +msgid "WELCOME TO COPAY" +msgstr "ΚΑΛΩΣ ΗΛΘΑΤΕ ΣΤΟ COPAY" + +#: public/views/copayers.html +msgid "Waiting for copayers" +msgstr "Αναμονή για copayers" + +#: public/views/copayers.html +msgid "Waiting..." +msgstr "Σε αναμονή..." + +#: public/views/preferences.html +msgid "Wallet Alias" +msgstr "Ψευδώνυμο Πορτοφολιού" + +#: src/js/services/profileService.js +msgid "Wallet Already Imported:" +msgstr "Το Πορτοφόλι έχει ήδη εισαχθεί:" + +#: public/views/join.html +msgid "Wallet Invitation" +msgstr "Πρόσκληση πορτοφολιού" + +#: public/views/join.html +msgid "Wallet Invitation is not valid!" +msgstr "Η πρόσκληση πορτοφολιού δεν είναι έγκυρη!" + +#: src/js/services/bwsError.js +#: src/js/services/profileService.js +msgid "Wallet already exists" +msgstr "Υπάρχει ήδη το πορτοφόλι" + +#: public/views/copayers.html +msgid "Wallet incomplete and broken" +msgstr "Πορτοφόλι ελλιπές και χαλασμένο" + +#: src/js/services/bwsError.js +msgid "Wallet is full" +msgstr "Wallet is full" + +#: src/js/services/bwsError.js +msgid "Wallet is not complete" +msgstr "Wallet is not complete" + +#: public/views/create.html +msgid "Wallet name" +msgstr "Όνομα πορτοφολιού" + +#: src/js/services/bwsError.js +msgid "Wallet not found" +msgstr "Wallet not found" + +#: src/js/services/bwsError.js +msgid "Wallet service not found" +msgstr "Wallet service not found" + +#: public/views/preferencesDeleteWallet.html +msgid "Warning!" +msgstr "Προειδοποίηση!" + +#: public/views/modals/txp-details.html +msgid "Warning: this transaction has unconfirmed inputs" +msgstr "Warning: this transaction has unconfirmed inputs" + +#: src/js/services/profileService.js +msgid "Wrong password" +msgstr "Λάθος κωδικός πρόσβασης" + +#: public/views/modals/confirmation.html +msgid "Yes" +msgstr "Ναι" + +#: public/views/walletHome.html +msgid "You do not have a wallet" +msgstr "Δεν έχετε πορτοφόλι" + +#: public/views/backup.html +#: public/views/import.html +msgid "Your backup password" +msgstr "Ο κωδικός πρόσβασης των αντιγράφων ασφαλείας σας" + +#: public/views/create.html +#: public/views/join.html +msgid "Your nickname" +msgstr "Το ψευδώνυμό σας" + +#: public/views/includes/password.html +msgid "Your password" +msgstr "Ο κωδικός σας" + +#: public/views/importLegacy.html +msgid "Your profile password" +msgstr "Ο κωδικός πρόσβασης του προφίλ σας" + +#: src/js/controllers/import.js +msgid "Your wallet has been imported correctly" +msgstr "Το πορτοφόλι σας έχει εισαχθεί σωστά" + +#: public/views/preferencesEmail.html +msgid "email for wallet notifications" +msgstr "Το ηλεκτρονικό σας ταχυδρομείο για τις ειδοποιήσεις του πορτοφόλιού σας" + +#: public/views/walletHome.html +msgid "locked by pending payments" +msgstr "κλειδωμένο από εκκρεμούσες πληρωμές" + +#: public/views/copayers.html +#: public/views/walletHome.html +#: public/views/includes/sidebar.html +msgid "of" +msgstr "από" + +#: public/views/walletHome.html +msgid "optional" +msgstr "προαιρετικό" + +#: public/views/preferences.html +msgid "settings" +msgstr "ρυθμίσεις" + +#: public/views/walletHome.html +msgid "too long!" +msgstr "πάρα πολύ μεγάλο μέγεθος!" + +#: src/js/controllers/walletHome.js +msgid "{{fee}} will be discounted for bitcoin networking fees" +msgstr "{{fee}}, θα προεξοφληθεί ώς τέλος του δικτύου bitcoin" + +#: src/js/controllers/importLegacy.js +msgid "{{len}} wallets imported. Funds scanning in progress. Hold on to see updated balance" +msgstr "{{len}} τα πορτοφόλια εισάχθηκαν. Σάρωση χρημάτων σε εξέλιξη. Περιμένετε για να δείτε το τελικό σας υπόλοιπο" + diff --git a/i18n/po/es.po b/i18n/po/es.po new file mode 100644 index 000000000..f850efd92 --- /dev/null +++ b/i18n/po/es.po @@ -0,0 +1,1414 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Project-Id-Version: copay\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: crowdin.com\n" +"X-Crowdin-Project: copay\n" +"X-Crowdin-Language: es-ES\n" +"X-Crowdin-File: template.pot\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Last-Translator: cmgustavo83\n" +"Language-Team: Spanish\n" +"Language: es\n" +"PO-Revision-Date: 2015-08-14 02:33-0400\n" + +#: public/views/walletHome.html +msgid "(possible double spend)" +msgstr "(Posible doble gasto)" + +#: public/views/modals/txp-details.html +msgid "* A payment proposal can be deleted if 1) you are the creator, and no other copayer has signed, or 2) 24 hours have passed since the proposal was created." +msgstr "* Una propuesta de pago puede ser eliminada si 1) Ud. es el creador, y ningún otro copayer la ha firmado, o 2) han transcurrido 24 horas desde la creación de la propuesta." + +#: public/views/backup.html +msgid "* You can safely install your backup on another device and use your wallet from multiple devices at the same time." +msgstr "* Usted puede instalar la copia de seguridad en otro dispositivo y usar el monedero al mismo tiempo en varios dispositivos." + +#: public/views/backup.html +msgid "A backup without its private key will allow the user to see the wallet balance, transactions, and create spend proposals. However, it will not be able to approve (sign) proposals." +msgstr "Una copia de seguridad sin la clave privada permitirá al usuario ver el balance del monedero, las transacciones y crear propuestas de gasto. Sin embargo, no podrá aprobar (firmar) propuestas." + +#: public/views/splash.html +msgid "A multisignature bitcoin wallet" +msgstr "Monedero multifirma de bitcoin" + +#: public/views/preferences.html +msgid "About Copay" +msgstr "Acerca de Copay" + +#: public/views/modals/txp-details.html +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Accept" +msgstr "Aceptar" + +#: public/views/includes/sidebar.html +msgid "Add wallet" +msgstr "Agregar monedero" + +#: public/views/paymentUri.html +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +msgid "Address" +msgstr "Dirección" + +#: public/views/preferences.html +msgid "Advanced" +msgstr "Avanzado" + +#: public/views/modals/advancedSend.html +msgid "Advanced Send" +msgstr "Envío avanzado" + +#: public/views/disclaimer.html +msgid "Agree" +msgstr "Aceptar" + +#: public/views/preferencesAlias.html +msgid "Alias for {{index.walletName}}" +msgstr "Alias de {{index.walletName}}" + +#: public/views/translators.html +msgid "All contributions to Copay's translation are welcome. Sign up at crowdin.com and join the Copay project at" +msgstr "Todas las contribuciones a la traducción de Copay son bienvenidas. Regístrese en crowdin.com y únase al proyecto Copay en" + +#: public/views/splash.html +msgid "Already have a wallet?" +msgstr "¿Ya dispone de un monedero?" + +#: public/views/preferences.html +msgid "Alternative Currency" +msgstr "Moneda Alternativa" + +#: public/views/paymentUri.html +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/modals/customized-amount.html +msgid "Amount" +msgstr "Importe" + +#: src/js/services/bwsError.js +msgid "Amount below dust threshold" +msgstr "Cantidad debajo del umbral permitido" + +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html +msgid "Amount in" +msgstr "Importe en" + +#: public/views/preferencesLanguage.html +msgid "Applying changes" +msgstr "Aplicando los cambios" + +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +msgid "Are you sure you want to delete this wallet?" +msgstr "¿Estas seguro de borrar este monedero?" + +#: public/views/walletHome.html +msgid "Available Balance" +msgstr "Balance disponible" + +#: public/views/preferencesFee.html +#: public/views/modals/advancedSend.html +msgid "Average confirmation time: {{fee.nbBlocks * 10}} minutes" +msgstr "Tiempo promedio de confirmación: {{fee.nbBlocks * 10}} minutos" + +#: public/views/create.html +#: public/views/join.html +msgid "BIP32 master extended private key" +msgstr "BIP32 master extended private key" + +#: public/views/includes/topbar.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Back" +msgstr "Volver" + +#: public/views/preferences.html +msgid "Backup" +msgstr "Copia de seguridad" + +#: src/js/controllers/backup.js +msgid "Backup created" +msgstr "Copia de Seguridad creada" + +#: public/views/walletHome.html +msgid "Backup now" +msgstr "Copia de seguridad" + +#: public/views/backup.html +msgid "Backup options" +msgstr "Opciones de copia de seguridad" + +#: src/js/services/profileService.js +msgid "Bad wallet invitation" +msgstr "Invitación incorrecta al monedero" + +#: public/views/walletHome.html +msgid "Before receiving funds, it is highly recommended you backup your wallet keys." +msgstr "Antes de recibir fondos, es altamente recomendable realizar una copia de seguridad." + +#: public/views/preferences.html +msgid "Bitcoin Network Fee Policy" +msgstr "Política de Costo de la Red Bitcoin" + +#: public/views/paymentUri.html +msgid "Bitcoin URI is NOT valid!" +msgstr "¡Bitcoin URI no es válida!" + +#: public/views/walletHome.html +msgid "Bitcoin address" +msgstr "Dirección bitcoin" + +#: public/views/preferencesFee.html +msgid "Bitcoin transactions may include a fee collected by miners on the network. The higher the fee, the greater the incentive a miner has to include that transaction in a block. Actual fees are determined based on network load and the selected policy." +msgstr "Las transacciones de Bitcoin pueden incluir una tasa colectada por los mineros en la red. Cuanto mayor sea la tasa, mayor será el incentivo para que el minero incluya esa transacción en un bloque. Las tasas reales se determinan en base a la carga de la red y a la política seleccionada." + +#: public/views/modals/txp-details.html +msgid "Broadcast Payment" +msgstr "Emitir Pago" + +#: src/js/controllers/walletHome.js +msgid "Broadcasting Payment" +msgstr "Emitiendo el Pago" + +#: src/js/controllers/walletHome.js +msgid "Broadcasting transaction" +msgstr "Emitiendo transacción" + +#: public/views/unsupported.html +msgid "Browser unsupported" +msgstr "Navegador no soportado" + +#: public/views/modals/txp-details.html +msgid "But not broadcasted. Try to send manually" +msgstr "Pero no transmitida. Inténtelo manualmente" + +#: public/views/includes/password.html +msgid "CANCEL" +msgstr "CANCELAR" + +#: public/views/copayers.html +#: public/views/walletHome.html +#: public/views/modals/confirmation.html +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Cancel" +msgstr "Cancelar" + +#: src/js/services/profileService.js +msgid "Cannot join the same wallet more that once" +msgstr "No puede unirse al mismo monedero más de una vez" + +#: public/views/modals/paypro.html +msgid "Certified by" +msgstr "Certificado por" + +#: public/views/preferencesAlias.html +msgid "Changing wallet alias only affects the local wallet name." +msgstr "Cambiar el alias del monedero solo afecta al nombre del monedero local." + +#: public/views/import.html +msgid "Choose a backup file from your computer" +msgstr "Seleccione el archivo backup de su computadora" + +#: public/views/modals/wallets.html +msgid "Choose a wallet to send funds" +msgstr "Seleccione un monedero para enviar fondos" + +#: public/views/includes/topbar.html +#: public/views/modals/advancedSend.html +#: public/views/modals/copayers.html +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +#: public/views/modals/scanner.html +#: public/views/modals/wallets.html +msgid "Close" +msgstr "Cerrar" + +#: public/views/preferences.html +msgid "Color" +msgstr "Color" + +#: public/views/preferencesAbout.html +msgid "Commit hash" +msgstr "Commit hash" + +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Confirm" +msgstr "Confirmar" + +#: public/views/modals/tx-details.html +msgid "Confirmations" +msgstr "Confirmaciones" + +#: src/js/services/bwsError.js +msgid "Copayer already in this wallet" +msgstr "Ya se encuentra en este monedero" + +#: src/js/services/bwsError.js +msgid "Copayer already registered" +msgstr "Ya esta registrado" + +#: src/js/services/bwsError.js +msgid "Copayer already voted on this spend proposal" +msgstr "Ya ha votado en esta propuesta de gasto" + +#: src/js/services/bwsError.js +msgid "Copayer data mismatch" +msgstr "Discrepancia en los datos del Copayer" + +#: public/views/modals/copayers.html +msgid "Copayers" +msgstr "Copayers" + +#: src/js/controllers/backup.js +#: src/js/controllers/copayers.js +#: src/js/controllers/walletHome.js +msgid "Copied to clipboard" +msgstr "Copiado al portapapeles" + +#: public/views/backup.html +msgid "Copy backup to a safe place" +msgstr "Guardar copia de seguridad en un lugar seguro" + +#: public/views/backup.html +msgid "Copy this text as it is to a safe place (notepad or email)" +msgstr "Copiar el texto como esta en un lugar seguro (bloc de notas o correo electrónico)" + +#: public/views/backup.html +msgid "Copy to clipboard" +msgstr "Copiar al portapapeles" + +#: src/js/controllers/walletHome.js +msgid "Could not accept payment" +msgstr "No se pudo aceptar el pago" + +#: src/js/controllers/index.js +msgid "Could not access Wallet Service: Not found" +msgstr "No se pudo acceder a Wallet Service: No encontrado" + +#: src/js/controllers/walletHome.js +msgid "Could not broadcast payment" +msgstr "No se pudo emitir el pago" + +#: src/js/services/addressService.js +msgid "Could not create address" +msgstr "No se pudo crear dirección" + +#: src/js/controllers/walletHome.js +msgid "Could not create payment proposal" +msgstr "No se pudo crear la propuesta de pago" + +#: src/js/services/profileService.js +msgid "Could not create using the specified extended private key" +msgstr "No se pudo crear el monedero usando la clave privada ingresada" + +#: src/js/controllers/import.js +msgid "Could not decrypt file, check your password" +msgstr "No se pudo desencriptar el archivo, verifique su contraseña" + +#: src/js/controllers/walletHome.js +msgid "Could not delete payment proposal" +msgstr "No se pudo eliminar la propuesta de pago" + +#: src/js/controllers/walletHome.js +msgid "Could not fetch payment information" +msgstr "No se pudo obtener información del pago" + +#: public/views/walletHome.html +msgid "Could not fetch transaction history" +msgstr "No se pudo obtener el historial de transacciones" + +#: src/js/services/profileService.js +msgid "Could not import. Check input file and password" +msgstr "No se pudo importar. Verifique el archivo y su contraseña" + +#: src/js/services/profileService.js +msgid "Could not join using the specified extended private key" +msgstr "No se pudo unir al monedero usando la clave privada ingresada" + +#: src/js/services/profileService.js +msgid "Could not join wallet" +msgstr "No se pudo unir al monedero" + +#: src/js/controllers/walletHome.js +msgid "Could not recognize a valid Bitcoin QR Code" +msgstr "No se reconoció un código QR de Bitcoin válido" + +#: src/js/controllers/walletHome.js +msgid "Could not reject payment" +msgstr "No se pudo rechazar el pago" + +#: src/js/controllers/walletHome.js +msgid "Could not send payment" +msgstr "No se pudo enviar el pago" + +#: src/js/controllers/index.js +msgid "Could not update Wallet" +msgstr "No se puede actualizar el monedero" + +#: public/views/walletHome.html +msgid "Create" +msgstr "Crear" + +#: public/views/add.html +#: public/views/create.html +msgid "Create new wallet" +msgstr "Crear nuevo monedero" + +#: public/views/create.html +msgid "Create {{requiredCopayers}}-of-{{totalCopayers}} wallet" +msgstr "Crea monedero {{requiredCopayers}}-de-{{totalCopayers}}" + +#: public/views/includes/sidebar.html +msgid "Create, join or import" +msgstr "Crear, unirse o importar" + +#: public/views/modals/txp-details.html +msgid "Created by" +msgstr "Creado por" + +#: public/views/splash.html +msgid "Creating Profile..." +msgstr "Creando el Perfil..." + +#: public/views/create.html +msgid "Creating Wallet..." +msgstr "Creando Monedero..." + +#: src/js/controllers/walletHome.js +msgid "Creating transaction" +msgstr "Creando transacción" + +#: public/views/preferencesFee.html +#: public/views/modals/advancedSend.html +msgid "Current fee rate for this policy: {{fee.feePerKBUnit}}/kiB" +msgstr "Costo actual para esta política: {{fee.feePerKBUnit}}/kiB" + +#: public/views/modals/tx-details.html +msgid "Date" +msgstr "Fecha" + +#: public/views/modals/txp-details.html +msgid "Delete Payment Proposal" +msgstr "Eliminar Propuesta de Pago" + +#: public/views/preferencesAdvanced.html +msgid "Delete Wallet" +msgstr "Eliminar monedero" + +#: public/views/copayers.html +msgid "Delete it and create a new one" +msgstr "Borrarlo y crear uno nuevo" + +#: public/views/preferencesDeleteWallet.html +msgid "Delete wallet" +msgstr "Eliminar monedero" + +#: src/js/controllers/walletHome.js +msgid "Deleting payment" +msgstr "Eliminando el Pago" + +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Details" +msgstr "Detalles" + +#: public/views/preferences.html +msgid "Disabled" +msgstr "Deshabilitado" + +#: public/views/backup.html +msgid "Do not include private key in backup" +msgstr "No incluir la clave privada en la copia de seguridad" + +#: public/views/translators.html +msgid "Don't see your language on Crowdin? Contact the Owner on Crowdin! We'd love to support your language." +msgstr "¿No ve su idioma en Crowdin? Contáctese con el encargado del proyecto! Nos encantaría soportar su idioma." + +#: public/views/walletHome.html +msgid "Download CSV file" +msgstr "Descargar archivo CSV" + +#: public/views/backup.html +msgid "Download backup" +msgstr "Descargar copia de seguridad" + +#: src/js/services/feeService.js +msgid "Economy" +msgstr "Económico" + +#: public/views/preferences.html +msgid "Email Notifications" +msgstr "Notificaciones por Email" + +#: public/views/preferences.html +msgid "Encrypt Private Key" +msgstr "Encriptar Clave Privada" + +#: src/js/controllers/backup.js +msgid "Encrypted backup file saved" +msgstr "Archivo de copia de seguridad encriptado guardado" + +#: public/views/includes/password.html +msgid "Enter your password" +msgstr "Escribe tu contraseña" + +#: src/js/controllers/index.js +msgid "Error at Wallet Service" +msgstr "Error en Wallet Service" + +#: src/js/services/profileService.js +msgid "Error creating wallet" +msgstr "Error al crear monedero" + +#: src/js/services/profileService.js +msgid "Error importing wallet:" +msgstr "Error al importar monedero: " + +#: public/views/modals/paypro.html +#: public/views/modals/txp-details.html +msgid "Expires" +msgstr "Expira" + +#: public/views/backup.html +msgid "Failed to create backup" +msgstr "Falló al crear copia de seguridad" + +#: src/js/controllers/importLegacy.js +msgid "Failed to import wallets" +msgstr "Falló al importar monederos" + +#: public/views/create.html +msgid "Family vacation funds" +msgstr "Fondos para vacaciones en familia" + +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Fee" +msgstr "Costo" + +#: public/views/modals/advancedSend.html +msgid "Fee Policy" +msgstr "Política de costo" + +#: public/views/walletHome.html +msgid "Fee policy for this transaction" +msgstr "Política de costo para esta transacción" + +#. Get information of payment if using Payment Protocol +#: src/js/controllers/walletHome.js +msgid "Fetching Payment Information" +msgstr "Obteniendo información del pago" + +#: public/views/translators.html +msgid "French" +msgstr "Francés" + +#: src/js/services/bwsError.js +msgid "Funds are locked by pending spend proposals" +msgstr "Los fondos están bloqueados por propuestas de gastos pendientes" + +#: src/js/services/notificationsService.js +msgid "Funds received" +msgstr "Fondos Recibidos" + +#: public/views/splash.html +msgid "GET STARTED" +msgstr "COMENZAR" + +#: public/views/modals/customized-amount.html +msgid "Generate QR Code" +msgstr "Generar código QR" + +#: public/views/walletHome.html +msgid "Generate new address" +msgstr "Generar nueva dirección" + +#: public/views/walletHome.html +msgid "Generating .csv file..." +msgstr "Generando archivo .csv..." + +#: public/views/translators.html +msgid "German" +msgstr "Alemán" + +#: public/views/modals/wallets.html +msgid "Getting address for wallet {{selectedWalletName}} ..." +msgstr "Obteniendo direcciones para el monedero {{selectedWalletName}} ..." + +#: public/views/preferences.html +msgid "Global settings" +msgstr "Opciones globales" + +#: public/views/disclaimer.html +msgid "Go back" +msgstr "Volver" + +#: public/views/translators.html +msgid "Greek" +msgstr "Griego" + +#: public/views/import.html +msgid "Have a Backup from Copay v0.9?" +msgstr "¿Tiene una copia de seguridad de Copay v0.9?" + +#: public/views/backup.html +#: public/views/create.html +#: public/views/join.html +#: public/views/walletHome.html +msgid "Hide advanced options" +msgstr "Ocultar opciones avanzadas" + +#: src/js/controllers/index.js +msgid "History" +msgstr "Historial" + +#: src/js/controllers/index.js +msgid "Home" +msgstr "Inicio" + +#: public/views/disclaimer.html +msgid "I affirm that I have read, understood, and agree with these terms." +msgstr "Confirmo haber leído, entendido y aceptado estos términos." + +#: public/views/create.html +#: public/views/join.html +msgid "If not given, a secure key will be generated" +msgstr "Si no se ingresa, una clave segura será generada" + +#: public/views/importLegacy.html +msgid "Import" +msgstr "Importar" + +#: public/views/import.html +#: public/views/splash.html +msgid "Import backup" +msgstr "Importar copia de seguridad" + +#: public/views/importLegacy.html +msgid "Import from the Cloud?" +msgstr "¿Importar de la Nube?" + +#: public/views/import.html +msgid "Import here" +msgstr "Importar aquí" + +#: public/views/add.html +msgid "Import wallet" +msgstr "Importar monedero" + +#: public/views/import.html +msgid "Importing wallet..." +msgstr "Importando monedero..." + +#: public/views/importLegacy.html +msgid "Importing..." +msgstr "Importando..." + +#: src/js/services/bwsError.js +msgid "Incorrect address network" +msgstr "Dirección de red incorrecta" + +#: src/js/services/bwsError.js +msgid "Insufficient funds" +msgstr "Fondos insuficientes" + +#: src/js/services/bwsError.js +msgid "Insufficient funds for fee" +msgstr "Fondos insuficientes por el costo" + +#: public/views/walletHome.html +msgid "Invalid" +msgstr "Inválido" + +#: src/js/services/bwsError.js +msgid "Invalid address" +msgstr "Dirección inválida" + +#: src/js/controllers/copayers.js +msgid "Invitation to share a Copay Wallet" +msgstr "Invitación para compartir un monedero Copay" + +#: public/views/translators.html +msgid "Italian" +msgstr "Italiano" + +#: public/views/translators.html +msgid "Japanese" +msgstr "Japonés" + +#: public/views/create.html +#: public/views/join.html +msgid "John" +msgstr "Juan" + +#: public/views/join.html +msgid "Join" +msgstr "Unirse" + +#: src/js/controllers/copayers.js +msgid "Join my Copay wallet. Here is the invitation code: {{secret}} You can download Copay for your phone or desktop at https://copay.io" +msgstr "Únase a mi monedero Copay. Aquí esta el código de invitación: {{secret}}. Puede descargar Copay para su teléfono o computadora en https://copay.io" + +#: public/views/add.html +msgid "Join shared wallet" +msgstr "Unirse a un monedero" + +#: public/views/join.html +msgid "Joining Wallet..." +msgstr "Uniéndose al Monedero..." + +#: public/views/preferences.html +msgid "Language" +msgstr "Idioma" + +#: public/views/importLegacy.html +msgid "Learn more about Wallet Migration" +msgstr "Más detalles para migrar Monedero" + +#: src/js/services/bwsError.js +msgid "Locktime in effect. Please wait to create a new spend proposal" +msgstr "Bloqueo temporal. Por favor espere para crear una nueva propuesta de gasto" + +#: src/js/services/bwsError.js +msgid "Locktime in effect. Please wait to remove this spend proposal" +msgstr "Bloqueo temporal. Por favor espere para eliminar esta propuesta de gasto" + +#: public/views/paymentUri.html +msgid "Make a payment to" +msgstr "Hacer un pago a" + +#: public/views/create.html +#: public/views/join.html +msgid "Master extended private key" +msgstr "Master extended private key" + +#: public/views/includes/copayers.html +#: public/views/modals/copayers.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Me" +msgstr "Yo" + +#: public/views/modals/paypro.html +msgid "Memo" +msgstr "Nota" + +#: public/views/modals/tx-details.html +msgid "Merchant message" +msgstr "Mensaje del negocio" + +#: public/views/paymentUri.html +msgid "Message" +msgstr "Mensaje" + +#: public/views/walletHome.html +msgid "More" +msgstr "Más" + +#: public/views/walletHome.html +msgid "Moved" +msgstr "Movido" + +#: public/views/walletHome.html +msgid "Multisignature wallet" +msgstr "Monedero multifirma" + +#: public/views/walletHome.html +msgid "My Bitcoin address" +msgstr "Mi dirección Bitcoin" + +#: public/views/paymentUri.html +msgid "Network" +msgstr "Red" + +#: src/js/services/bwsError.js +msgid "Network connection error" +msgstr "Error de conexión a la red" + +#: src/js/services/notificationsService.js +msgid "New Payment Proposal" +msgstr "Nueva Propuesta de Pago" + +#: public/views/walletHome.html +msgid "No Private key" +msgstr "Sin clave privada" + +#: public/views/walletHome.html +msgid "No transactions yet" +msgstr "Sin transacciones todavía" + +#: src/js/services/feeService.js +msgid "Normal" +msgstr "Normal" + +#: src/js/services/bwsError.js +msgid "Not authorized" +msgstr "No autorizado" + +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html +msgid "Not valid" +msgstr "No válido" + +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/modals/tx-details.html +msgid "Note" +msgstr "Nota" + +#: public/views/includes/alert.html +#: public/views/includes/password.html +msgid "OK" +msgstr "OK" + +#: public/views/modals/tx-status.html +msgid "OKAY" +msgstr "LISTO" + +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Participants" +msgstr "Participantes" + +#: public/views/import.html +#: public/views/importLegacy.html +msgid "Password" +msgstr "Contraseña" + +#: public/views/includes/password.html +msgid "Password cannot be recovered. Be sure to write it down" +msgstr "La contraseña no se puede recuperar. Asegúrese de escribirla en un lugar seguro" + +#: src/js/services/profileService.js +msgid "Password needed" +msgstr "Contraseña requerida" + +#: src/js/controllers/password.js +msgid "Passwords do not match" +msgstr "Las contraseñas no coinciden" + +#: public/views/join.html +msgid "Paste invitation here" +msgstr "Pegar invitación aquí" + +#: public/views/import.html +msgid "Paste the backup plain text code" +msgstr "Pegar copia de seguridad en texto plano" + +#: public/views/modals/paypro.html +msgid "Pay To" +msgstr "Pagar A" + +#: public/views/modals/tx-status.html +msgid "Payment Accepted" +msgstr "El Pago fue Aceptado" + +#: public/views/modals/txp-details.html +msgid "Payment Proposal" +msgstr "Propuesta de Pago" + +#: public/views/modals/tx-status.html +msgid "Payment Proposal Created" +msgstr "Propuesta de Pago Creada" + +#: src/js/services/notificationsService.js +msgid "Payment Proposal Rejected" +msgstr "Propuesta de Pago Rechazada" + +#: src/js/services/notificationsService.js +msgid "Payment Proposal Rejected by Copayer" +msgstr "Propuesta de Pago Rechazada por Copayer" + +#: src/js/services/notificationsService.js +msgid "Payment Proposal Signed by Copayer" +msgstr "Propuesta de Pago Firmada por Copayer" + +#: public/views/walletHome.html +msgid "Payment Proposals" +msgstr "Propuestas de Pago" + +#: src/js/controllers/walletHome.js +msgid "Payment Protocol not supported on Chrome App" +msgstr "El protocolo de pago no está soportado en Chrome" + +#: public/views/modals/tx-status.html +msgid "Payment Rejected" +msgstr "El pago fue rechazado" + +#: public/views/modals/tx-status.html +#: src/js/services/notificationsService.js +msgid "Payment Sent" +msgstr "Pago Enviado" + +#: public/views/modals/txp-details.html +msgid "Payment accepted..." +msgstr "El pago aceptado..." + +#: public/views/modals/txp-details.html +msgid "Payment details" +msgstr "Detalles del pago" + +#: public/views/modals/txp-details.html +msgid "Payment finally rejected" +msgstr "El pago fue finalmente rechazado" + +#: public/views/modals/paypro.html +msgid "Payment request" +msgstr "Solicitud de pago" + +#: public/views/modals/txp-details.html +msgid "Payment sent!" +msgstr "¡Pago enviado!" + +#: public/views/walletHome.html +msgid "Payment to" +msgstr "Pago a" + +#: public/views/walletHome.html +msgid "Pending Confirmation" +msgstr "Pendiente a Confirmar" + +#: public/views/preferencesDeleteWallet.html +msgid "Permanently delete this wallet. THIS ACTION CANNOT BE REVERSED" +msgstr "Borrar permanentemente este monedero. ESTA ACCIÓN NO PUEDE SER REVERTIDA" + +#: public/views/create.html +msgid "Personal Wallet" +msgstr "Monedero Personal" + +#: src/js/controllers/create.js +#: src/js/controllers/join.js +msgid "Please enter the required fields" +msgstr "Por favor ingrese los campos requeridos" + +#: src/js/services/bwsError.js +msgid "Please upgrade Copay to perform this action" +msgstr "Por favor actualizar Copay para realizar esta acción" + +#: src/js/controllers/import.js +msgid "Please, select your backup file" +msgstr "Por favor, selecciona el archivo de copia de seguridad" + +#: public/views/translators.html +msgid "Portuguese" +msgstr "Portugués" + +#: public/views/walletHome.html +msgid "Preferences" +msgstr "Preferencias" + +#: src/js/controllers/backup.js +msgid "Preparing backup..." +msgstr "Preparando copia de seguridad..." + +#: src/js/services/feeService.js +msgid "Priority" +msgstr "Prioritario" + +#: public/views/modals/customized-amount.html +msgid "QR Code" +msgstr "Código QR" + +#: public/views/modals/scanner.html +msgid "QR-Scanner" +msgstr "Escáner QR" + +#: src/js/controllers/index.js +msgid "Receive" +msgstr "Recibir" + +#: public/views/walletHome.html +msgid "Received" +msgstr "Recibido" + +#: public/views/includes/output.html +#: public/views/includes/transaction.html +msgid "Recipients" +msgstr "Destinatarios" + +#: public/views/walletHome.html +msgid "Reconnecting to Wallet Service..." +msgstr "Reconectando a Wallet Service..." + +#: public/views/walletHome.html +msgid "Recreate" +msgstr "Recrear" + +#: public/views/walletHome.html +msgid "Recreating Wallet..." +msgstr "Recreando Monedero..." + +#: public/views/modals/txp-details.html +msgid "Reject" +msgstr "Rechazar" + +#: src/js/controllers/walletHome.js +msgid "Rejecting payment" +msgstr "Rechazando pago" + +#: public/views/preferencesAbout.html +msgid "Release Information" +msgstr "Información de la versión" + +#: public/views/backup.html +#: public/views/includes/password.html +msgid "Repeat password" +msgstr "Repite la contraseña" + +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html +msgid "Request a specific amount" +msgstr "Solicitar una cantidad específica" + +#: public/views/import.html +#: public/views/join.html +msgid "Required" +msgstr "Requerido" + +#: public/views/splash.html +msgid "Retrying..." +msgstr "Reintentando..." + +#: public/views/translators.html +msgid "Russian" +msgstr "Ruso" + +#: public/views/includes/password.html +msgid "SET" +msgstr "ESTABLECER" + +#: public/views/walletHome.html +msgid "SKIP BACKUP" +msgstr "OMITIR" + +#: public/views/preferencesAlias.html +#: public/views/preferencesBwsUrl.html +#: public/views/preferencesEmail.html +msgid "Save" +msgstr "Guardar" + +#: public/views/preferencesEmail.html +msgid "Saving preferences..." +msgstr "Guardando preferencias..." + +#: src/js/services/notificationsService.js +msgid "Scan Finished" +msgstr "Escáner Finalizado" + +#: public/views/preferencesAdvanced.html +msgid "Scan addresses for funds" +msgstr "Escanear direcciones con fondos" + +#: public/views/walletHome.html +msgid "Scan status finished with error" +msgstr "El escáner del estado finalizó con error" + +#: public/views/walletHome.html +msgid "Scanning Wallet funds..." +msgstr "Escaneando fondos..." + +#: public/views/modals/tx-details.html +msgid "See it on the blockchain" +msgstr "Ver en la blockchain" + +#: public/views/import.html +msgid "Select a backup file" +msgstr "Seleccionar el archivo de copia de seguridad" + +#: public/views/paymentUri.html +msgid "Select a wallet" +msgstr "Seleccione un monedero" + +#: public/views/create.html +msgid "Select required number of signatures" +msgstr "Seleccione el número de firmas requeridas" + +#: public/views/create.html +msgid "Select total number of copayers" +msgstr "Seleccione el total de copayers" + +#: public/views/walletHome.html +#: public/views/includes/transaction.html +#: src/js/controllers/index.js +msgid "Send" +msgstr "Enviar" + +#: public/views/walletHome.html +msgid "Send All" +msgstr "Enviar Todo" + +#: public/views/backup.html +#: public/views/preferencesLogs.html +msgid "Send by email" +msgstr "Enviar por correo electrónico" + +#: public/views/walletHome.html +msgid "Sent" +msgstr "Enviado" + +#: public/views/importLegacy.html +msgid "Server" +msgstr "Servidor" + +#: public/views/preferencesAbout.html +msgid "Session log" +msgstr "Registro de sesión" + +#: public/views/backup.html +msgid "Set up a Password for your backup" +msgstr "Establecer contraseña para tu copia de seguridad" + +#: public/views/includes/password.html +msgid "Set up a password" +msgstr "Configure una contraseña" + +#: public/views/preferencesEmail.html +msgid "Setting up email notifications could weaken your privacy, if the wallet service provider is compromised. Information available to an attacker would include your wallet addresses and its balance, but no more." +msgstr "Configurar notificaciones por correo electrónico podría debilitar su privacidad, si el proveedor de servicio se ve comprometido. Información disponible para un atacante incluiría sus direcciones de cartera y su balance, pero no más." + +#: public/views/walletHome.html +msgid "Share address" +msgstr "Compartir dirección" + +#: public/views/copayers.html +msgid "Share invitation" +msgstr "Compartir invitación" + +#: public/views/copayers.html +msgid "Share this invitation with your copayers" +msgstr "Comparta esta invitación con sus copayers" + +#: public/views/walletHome.html +msgid "Share this wallet address to receive payments. To protect your privacy, new addresses are generated automatically once you use them." +msgstr "Compartir esta dirección para recibir pagos. Para proteger su privacidad, se generan nuevas direcciones automáticamente luego de recibir un pago." + +#: public/views/create.html +msgid "Shared Wallet" +msgstr "Monedero Compartido" + +#: public/views/backup.html +#: public/views/create.html +#: public/views/join.html +#: public/views/walletHome.html +msgid "Show advanced options" +msgstr "Mostrar opciones avanzadas" + +#: src/js/services/bwsError.js +msgid "Signatures rejected by server" +msgstr "Firmas rechazadas por el servidor" + +#: src/js/controllers/walletHome.js +msgid "Signing payment" +msgstr "Firmando el pago" + +#: src/js/controllers/walletHome.js +msgid "Signing transaction" +msgstr "Firmando transacción" + +#: public/views/translators.html +msgid "Spanish" +msgstr "Español" + +#: src/js/services/bwsError.js +msgid "Spend proposal is not accepted" +msgstr "La propuesta de gasto no es aceptada" + +#: src/js/services/bwsError.js +msgid "Spend proposal not found" +msgstr "Propuesta de gasto no encontrada" + +#: src/js/controllers/copayers.js +#: src/js/controllers/import.js +#: src/js/controllers/preferencesDelete.js +msgid "Success" +msgstr "Listo" + +#: public/views/walletHome.html +msgid "Tap to retry" +msgstr "Toque para reintentar" + +#: public/views/disclaimer.html +#: public/views/preferencesAbout.html +msgid "Terms of Use" +msgstr "Términos de Uso" + +#: public/views/create.html +msgid "Testnet" +msgstr "Testnet" + +#: src/js/controllers/walletHome.js +msgid "The payment was created but could not be completed. Please try again from home screen" +msgstr "El pago fue creado pero no se pudo completar. Por favor intente nuevamente desde la pantalla de inicio." + +#: src/js/controllers/walletHome.js +msgid "The payment was created but could not be signed. Please try again from home screen" +msgstr "El pago fue creado pero no pudo ser firmado. Por favor intente nuevamente desde la pantalla de inicio" + +#: public/views/modals/txp-details.html +msgid "The payment was removed by creator" +msgstr "El pago fue eliminado por el creador" + +#: src/js/controllers/walletHome.js +msgid "The payment was signed but could not be broadcasted. Please try again from home screen" +msgstr "El pago fue firmado pero no pudo ser enviado. Por favor intente nuevamente desde la pantalla de inicio" + +#: public/views/backup.html +msgid "The private key for this wallet is encrypted. Exporting a backup will keep the private key encrypted in the backup archive." +msgstr "Este monedero tiene sus claves privadas encriptadas. Exportar una copia de seguridad mantendrá la clave privada encriptada en la copia de seguridad." + +#: public/views/disclaimer.html +msgid "The software you are about to use functions as a free, open source, and multi-signature digital wallet. The software does not constitute an account where BitPay or other third parties serve as financial intermediaries or custodians of your bitcoin. While the software has undergone beta testing and continues to be improved by feedback from the open-source user and developer community, we cannot guarantee that there will be no bugs in the software. You acknowledge that your use of this software is at your own discretion and in compliance with all applicable laws. You are responsible for safekeeping your passwords, private key pairs, PINs and any other codes you use to access the software. IF YOU LOSE ACCESS TO YOUR COPAY WALLET OR YOUR ENCRYPTED PRIVATE KEYS AND YOU HAVE NOT SEPARATELY STORED A BACKUP OF YOUR WALLET AND CORRESPONDING PASSWORD, YOU ACKNOWLEDGE AND AGREE THAT ANY BITCOIN YOU HAVE ASSOCIATED WITH THAT COPAY WALLET WILL BECOME INACCESSIBLE. All transaction requests are irreversible. The authors of the software, employees and affiliates of Bitpay, copyright holders, and BitPay, Inc. cannot retrieve your private keys or passwords if you lose or forget them and cannot guarantee transaction confirmation as they do not have control over the Bitcoin network. To the fullest extent permitted by law, this software is provided “as is” and no representations or warranties can be made of any kind, express or implied, including but not limited to the warranties of merchantability, fitness or a particular purpose and noninfringement. You assume any and all risks associated with the use of the software. In no event shall the authors of the software, employees and affiliates of Bitpay, copyright holders, or BitPay, Inc. be held liable for any claim, damages or other liability, whether in an action of contract, tort, or otherwise, arising from, out of or in connection with the software. We reserve the right to modify this disclaimer from time to time." +msgstr "El software que va a utilizar es un monedero digital de código abierto y multi-firmas. El software no constituye una cuenta donde BitPay u otras terceras partes sirven como intermediarios financieros o custodios de su bitcoin. Mientras que el software ha sido objeto de pruebas beta y continúa siendo mejorada por los comentarios de los usuarios de código abierto y la comunidad de desarrolladores, no podemos garantizar que no habrá errores en el software. Usted reconoce que el uso de este software es bajo tu propia responsabilidad y en cumplimiento con todas las leyes aplicables. Usted es responsable de la custodia de sus contraseñas, pares de claves privadas, PIN y cualquier otro código que se utiliza para acceder al software. SI UD. PIERDE ACCESO A SU MONEDERO COPAY O A SUS CLAVES PRIVADAS ENCRIPTADAS Y NO HA GUARDADO POR SEPARADO UNA COPIA DE SEGURIDAD DE SU MONEDERO Y CONTRASEÑA CORRESPONDIENTES, USTED RECONOCE Y ACEPTA QUE CUALQUIER BITCOIN QUE HA ASOCIADO CON ESE MONEDERO COPAY SERÁ INACCESIBLE. Todas las solicitudes de transacción son irreversibles. Los autores de los software, empleados y afiliados de Bitpay, los titulares de derechos de autor, y BitPay, Inc. no pueden recuperar sus claves privadas o contraseñas si se pierde o se olvida de ellos y no se puede garantizar la confirmación de la transacción, ya que no tienen control sobre la red Bitcoin. En la máxima medida permitida por la ley, este software se proporciona \"tal cual\" y no asume la responsabilidad ni ofrece garantías de ningún tipo, expresa o implícita, incluyendo, pero no limitado a las garantías comerciales, de conveniencia o a un propósito particular. Usted asume todos los riesgos asociados con el uso del software. En ningún caso los autores, empleados y afiliados de Bitpay, los titulares de derechos de autor, o BitPay, Inc. serán declarados responsables de los reclamos, daños o cualquier otra responsabilidad, ya sea en una acción de contrato, agravio o de otra manera, que surja fuera de la conexión con el software. Nos reservamos el derecho a modificar el presente aviso legal de vez en cuando.

The software you are about to use functions as a free, open source, and multi-signature digital wallet. The software does not constitute an account where BitPay or other third parties serve as financial intermediaries or custodians of your bitcoin. While the software has undergone beta testing and continues to be improved by feedback from the open-source user and developer community, we cannot guarantee that there will be no bugs in the software. You acknowledge that your use of this software is at your own discretion and in compliance with all applicable laws. You are responsible for safekeeping your passwords, private key pairs, PINs and any other codes you use to access the software. IF YOU LOSE ACCESS TO YOUR COPAY WALLET OR YOUR ENCRYPTED PRIVATE KEYS AND YOU HAVE NOT SEPARATELY STORED A BACKUP OF YOUR WALLET AND CORRESPONDING PASSWORD, YOU ACKNOWLEDGE AND AGREE THAT ANY BITCOIN YOU HAVE ASSOCIATED WITH THAT COPAY WALLET WILL BECOME INACCESSIBLE. All transaction requests are irreversible. The authors of the software, employees and affiliates of Bitpay, copyright holders, and BitPay, Inc. cannot retrieve your private keys or passwords if you lose or forget them and cannot guarantee transaction confirmation as they do not have control over the Bitcoin network. To the fullest extent permitted by law, this software is provided “as is” and no representations or warranties can be made of any kind, express or implied, including but not limited to the warranties of merchantability, fitness or a particular purpose and noninfringement. You assume any and all risks associated with the use of the software. In no event shall the authors of the software, employees and affiliates of Bitpay, copyright holders, or BitPay, Inc. be held liable for any claim, damages or other liability, whether in an action of contract, tort, or otherwise, arising from, out of or in connection with the software. We reserve the right to modify this disclaimer from time to time." + +#: src/js/services/bwsError.js +msgid "The spend proposal is not pending" +msgstr "La propuesta de gasto no esta pendiente" + +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +msgid "The wallet \"{{walletName}}\" was deleted" +msgstr "El monedero \"{{walletName}}\" fue eliminado" + +#: public/views/paymentUri.html +msgid "There are no wallets to make this payment" +msgstr "No dispone de monederos para realizar este pago" + +#: src/js/controllers/import.js +msgid "There is an error in the form" +msgstr "Hay un error en el formulario" + +#: public/views/modals/tx-details.html +msgid "This transaction has become invalid; possibly due to a double spend attempt." +msgstr "Esta transacción se ha invalidado; posiblemente debido a un intento de doble gasto." + +#: public/views/walletHome.html +msgid "This wallet is not registered at the given Bitcore Wallet Service (BWS). You can recreate it from the local information." +msgstr "Este monedero no esta registrado en el servidor Bitcore Wallet Service (BWS). Debe recrearlo con la información local disponible." + +#: public/views/modals/txp-details.html +msgid "Time" +msgstr "Hora" + +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/includes/transaction.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "To" +msgstr "Para" + +#: public/views/includes/output.html +msgid "Total" +msgstr "Total" + +#: public/views/walletHome.html +msgid "Total Locked Balance" +msgstr "Balance total bloqueado" + +#: public/views/modals/tx-details.html +msgid "Transaction" +msgstr "Transacción" + +#: src/js/services/bwsError.js +msgid "Transaction already broadcasted" +msgstr "La transacción ya se ha enviado" + +#: public/views/translators.html +msgid "Translation Credits" +msgstr "Créditos de traducción" + +#: public/views/preferencesAbout.html +msgid "Translators" +msgstr "Traductores" + +#: src/js/controllers/walletHome.js +msgid "Unable to send transaction proposal" +msgstr "No se puede enviar propuesta de transacción" + +#: public/views/walletHome.html +#: public/views/modals/tx-details.html +msgid "Unconfirmed" +msgstr "Sin confirmar" + +#: public/views/preferences.html +msgid "Unit" +msgstr "Unidad" + +#: public/views/walletHome.html +msgid "Unsent transactions" +msgstr "Transacciones no enviadas" + +#: public/views/modals/paypro.html +msgid "Untrusted" +msgstr "No es de confianza" + +#: public/views/walletHome.html +msgid "Updating Wallet..." +msgstr "Actualizando Monedero..." + +#: public/views/preferences.html +#: public/views/walletHome.html +msgid "Use Unconfirmed Funds" +msgstr "Utilizar los fondos sin confirmar" + +#: public/views/preferencesAbout.html +msgid "Version" +msgstr "Versión" + +#: public/views/backup.html +msgid "View backup" +msgstr "Ver Copia de Seguridad" + +#: public/views/walletHome.html +msgid "WARNING: Backup needed" +msgstr "ADVERTENCIA: Se requiere hacer copia de seguridad" + +#: public/views/walletHome.html +msgid "WARNING: Wallet not registered" +msgstr "ADVERTENCIA: Monedero no registrado" + +#: public/views/splash.html +msgid "WELCOME TO COPAY" +msgstr "BIENVENIDO A COPAY" + +#: public/views/copayers.html +msgid "Waiting for copayers" +msgstr "Esperando copayers" + +#: public/views/copayers.html +msgid "Waiting..." +msgstr "Esperando..." + +#: public/views/preferences.html +msgid "Wallet Alias" +msgstr "Alias del monedero" + +#: src/js/services/profileService.js +msgid "Wallet Already Imported:" +msgstr "Este monedero ya fue importado: " + +#: public/views/join.html +msgid "Wallet Invitation" +msgstr "Invitación para unirse al monedero" + +#: public/views/join.html +msgid "Wallet Invitation is not valid!" +msgstr "¡Invitación no válida!" + +#: src/js/services/bwsError.js +#: src/js/services/profileService.js +msgid "Wallet already exists" +msgstr "El monedero ya existe" + +#: public/views/copayers.html +msgid "Wallet incomplete and broken" +msgstr "Monedero incompleto y roto" + +#: src/js/services/bwsError.js +msgid "Wallet is full" +msgstr "El monedero está lleno" + +#: src/js/services/bwsError.js +msgid "Wallet is not complete" +msgstr "El monedero no esta completo" + +#: public/views/create.html +msgid "Wallet name" +msgstr "Nombre del monedero" + +#: src/js/services/bwsError.js +msgid "Wallet not found" +msgstr "Monedero no encontrado" + +#: src/js/services/bwsError.js +msgid "Wallet service not found" +msgstr "Wallet Service no encontrado" + +#: public/views/preferencesDeleteWallet.html +msgid "Warning!" +msgstr "¡Advertencia!" + +#: public/views/modals/txp-details.html +msgid "Warning: this transaction has unconfirmed inputs" +msgstr "Advertencia: esta operación tiene entradas sin confirmar" + +#: src/js/services/profileService.js +msgid "Wrong password" +msgstr "Contraseña incorrecta" + +#: public/views/modals/confirmation.html +msgid "Yes" +msgstr "Si" + +#: public/views/walletHome.html +msgid "You do not have a wallet" +msgstr "No tienes ningún monedero" + +#: public/views/backup.html +#: public/views/import.html +msgid "Your backup password" +msgstr "Tu contraseña" + +#: public/views/create.html +#: public/views/join.html +msgid "Your nickname" +msgstr "Tu sobrenombre" + +#: public/views/includes/password.html +msgid "Your password" +msgstr "Tu contraseña" + +#: public/views/importLegacy.html +msgid "Your profile password" +msgstr "Contraseña de tu perfil" + +#: src/js/controllers/import.js +msgid "Your wallet has been imported correctly" +msgstr "Su monedero se ha importado correctamente" + +#: public/views/preferencesEmail.html +msgid "email for wallet notifications" +msgstr "email para recibir notificaciones" + +#: public/views/walletHome.html +msgid "locked by pending payments" +msgstr "bloqueado por pagos pendientes" + +#: public/views/copayers.html +#: public/views/walletHome.html +#: public/views/includes/sidebar.html +msgid "of" +msgstr "de" + +#: public/views/walletHome.html +msgid "optional" +msgstr "opcional" + +#: public/views/preferences.html +msgid "settings" +msgstr "configuración" + +#: public/views/walletHome.html +msgid "too long!" +msgstr "¡demasiado largo!" + +#: src/js/controllers/walletHome.js +msgid "{{fee}} will be discounted for bitcoin networking fees" +msgstr "{{fee}} se descontarán de los costos de la red bitcoin" + +#: src/js/controllers/importLegacy.js +msgid "{{len}} wallets imported. Funds scanning in progress. Hold on to see updated balance" +msgstr "{{len}} monederos importados. Escáner de fondos en progreso. Espere a ver el balance actualizado" + diff --git a/po/fr.po b/i18n/po/fr.po similarity index 70% rename from po/fr.po rename to i18n/po/fr.po index 94a104e5d..fc829fd30 100644 --- a/po/fr.po +++ b/i18n/po/fr.po @@ -2,24 +2,34 @@ msgid "" msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Project-Id-Version: Copay\n" +"Project-Id-Version: copay\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" +"X-Generator: crowdin.com\n" +"X-Crowdin-Project: copay\n" +"X-Crowdin-Language: fr\n" +"X-Crowdin-File: template.pot\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Last-Translator: cmgustavo83\n" +"Language-Team: French\n" "Language: fr\n" -"X-Generator: Poedit 1.6.10\n" +"PO-Revision-Date: 2015-08-14 02:33-0400\n" + +#: public/views/walletHome.html +msgid "(possible double spend)" +msgstr "(double dépense éventuelle)" #: public/views/modals/txp-details.html msgid "* A payment proposal can be deleted if 1) you are the creator, and no other copayer has signed, or 2) 24 hours have passed since the proposal was created." -msgstr " Une proposition de transaction peut être supprimée si 1) vous êtes le créateur, et aucun des autres copayers n'a signé, ou 2) 24 heures sont passées depuis la création de la proposition." +msgstr "* Une proposition de paiement peut être supprimée si vous en êtes le créateur et qu'aucun des autres copayers n'a signé, ou si 24 heures sont passées depuis la création de la proposition." #: public/views/backup.html msgid "* You can safely install your backup on another device and use your wallet from multiple devices at the same time." msgstr "Vous pouvez installer en toute sécurité votre sauvegarde sur un autre appareil et utiliser votre portefeuille depuis plusieurs appareils en même temps." +#: public/views/backup.html +msgid "A backup without its private key will allow the user to see the wallet balance, transactions, and create spend proposals. However, it will not be able to approve (sign) proposals." +msgstr "Une sauvegarde ne disposant pas de sa clé privée autorisera l'utilisateur à voir le solde du portefeuille, les transactions, et à créer des propositions de dépense. Cependant, il ne pourra pas approuver (signer) les propositions." + #: public/views/splash.html msgid "A multisignature bitcoin wallet" msgstr "Un portefeuille bitcoin multi-signatures" @@ -29,6 +39,9 @@ msgid "About Copay" msgstr "À propos de Copay" #: public/views/modals/txp-details.html +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js msgid "Accept" msgstr "Accepter" @@ -46,6 +59,10 @@ msgstr "Adresse" msgid "Advanced" msgstr "Avancés" +#: public/views/modals/advancedSend.html +msgid "Advanced Send" +msgstr "Envoi avancé" + #: public/views/disclaimer.html msgid "Agree" msgstr "Accepter" @@ -54,6 +71,10 @@ msgstr "Accepter" msgid "Alias for {{index.walletName}}" msgstr "Alias pour {{index.walletName}}" +#: public/views/translators.html +msgid "All contributions to Copay's translation are welcome. Sign up at crowdin.com and join the Copay project at" +msgstr "Toutes les contributions à la traduction de Copay sont les bienvenues. Inscrivez-vous sur crowdin.com et rejoignez le projet Copay sur" + #: public/views/splash.html msgid "Already have a wallet?" msgstr "Vous avez déjà un portefeuille ?" @@ -64,11 +85,15 @@ msgstr "Devise alternative" #: public/views/paymentUri.html #: public/views/walletHome.html +#: public/views/includes/output.html #: public/views/modals/customized-amount.html -#: public/views/modals/txp-details.html msgid "Amount" msgstr "Montant" +#: src/js/services/bwsError.js +msgid "Amount below dust threshold" +msgstr "Montant en dessous du seuil minimal recommandé" + #: public/views/walletHome.html #: public/views/modals/customized-amount.html msgid "Amount in" @@ -87,6 +112,11 @@ msgstr "Êtes-vous certain de vouloir supprimer ce portefeuille ?" msgid "Available Balance" msgstr "Solde disponible" +#: public/views/preferencesFee.html +#: public/views/modals/advancedSend.html +msgid "Average confirmation time: {{fee.nbBlocks * 10}} minutes" +msgstr "Temps de confirmation moyen : {{fee.nbBlocks * 10}} minutes" + #: public/views/create.html #: public/views/join.html msgid "BIP32 master extended private key" @@ -114,13 +144,17 @@ msgstr "Sauvegarder" msgid "Backup options" msgstr "Options de sauvegarde" +#: src/js/services/profileService.js +msgid "Bad wallet invitation" +msgstr "Mauvaise invitation de portefeuille" + #: public/views/walletHome.html msgid "Before receiving funds, it is highly recommended you backup your wallet keys." msgstr "Avant de recevoir des fonds, il est fortement recommandé de sauvegarder les clés de votre portefeuille." #: public/views/preferences.html msgid "Bitcoin Network Fee Policy" -msgstr "Politique des frais de réseau Bitcoin" +msgstr "Stratégie des frais de réseau Bitcoin" #: public/views/paymentUri.html msgid "Bitcoin URI is NOT valid!" @@ -131,8 +165,8 @@ msgid "Bitcoin address" msgstr "Adresse Bitcoin" #: public/views/preferencesFee.html -msgid "Bitcoin transactions may include a fee collected by miners on the network. The higher the fee, the greater the incentive a miner has to include that transaction in a block. The ‘Emergency’ level should only be used when there is a network congestion." -msgstr "Les transactions Bitcoin peuvent inclure des frais collectés par les mineurs du réseau. Plus les frais sont élevés, et plus l'incitation à inclure une transaction dans un bloc est importante pour les mineurs. La priorité "Urgente" ne devrait être utilisée que lorsque le réseau présente une congestion." +msgid "Bitcoin transactions may include a fee collected by miners on the network. The higher the fee, the greater the incentive a miner has to include that transaction in a block. Actual fees are determined based on network load and the selected policy." +msgstr "Les transactions Bitcoin peuvent inclure des frais prélevés par les mineurs sur le réseau. Plus les frais sont élevés, et plus un mineur sera incité à inclure cette transaction dans un bloc. Les frais actuels sont déterminés en fonction de la charge du réseau et de la stratégie sélectionnée." #: public/views/modals/txp-details.html msgid "Broadcast Payment" @@ -160,9 +194,17 @@ msgstr "ANNULER" #: public/views/copayers.html #: public/views/walletHome.html +#: public/views/modals/confirmation.html +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js msgid "Cancel" msgstr "Annuler" +#: src/js/services/profileService.js +msgid "Cannot join the same wallet more that once" +msgstr "Impossible de rejoindre le même portefeuille plus d'une fois" + #: public/views/modals/paypro.html msgid "Certified by" msgstr "Certifié par" @@ -171,10 +213,6 @@ msgstr "Certifié par" msgid "Changing wallet alias only affects the local wallet name." msgstr "La modification d'un alias de portefeuille affecte uniquement le nom du portefeuille local." -#: src/js/controllers/walletHome.js -msgid "Check you connection and try again" -msgstr "Vérifiez votre connexion internet et réessayez" - #: public/views/import.html msgid "Choose a backup file from your computer" msgstr "Choisissez un fichier de sauvegarde depuis votre ordinateur" @@ -184,6 +222,7 @@ msgid "Choose a wallet to send funds" msgstr "Choisissez un portefeuille pour envoyer des fonds" #: public/views/includes/topbar.html +#: public/views/modals/advancedSend.html #: public/views/modals/copayers.html #: public/views/modals/customized-amount.html #: public/views/modals/paypro.html @@ -200,14 +239,42 @@ msgstr "Couleur" msgid "Commit hash" msgstr "Commit hash" +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Confirm" +msgstr "Confirmer" + #: public/views/modals/tx-details.html msgid "Confirmations" msgstr "Confirmations" +#: src/js/services/bwsError.js +msgid "Copayer already in this wallet" +msgstr "Copayer déjà dans ce portefeuille" + +#: src/js/services/bwsError.js +msgid "Copayer already registered" +msgstr "Copayer déjà inscrit" + +#: src/js/services/bwsError.js +msgid "Copayer already voted on this spend proposal" +msgstr "Le Copayer a déjà voté pour cette proposition de dépense" + +#: src/js/services/bwsError.js +msgid "Copayer data mismatch" +msgstr "Les données Copayer ne correspondent pas" + #: public/views/modals/copayers.html msgid "Copayers" msgstr "Copayers" +#: src/js/controllers/backup.js +#: src/js/controllers/copayers.js +#: src/js/controllers/walletHome.js +msgid "Copied to clipboard" +msgstr "Copié dans le presse-papier" + #: public/views/backup.html msgid "Copy backup to a safe place" msgstr "Copiez la sauvegarde vers un endroit sûr" @@ -216,25 +283,25 @@ msgstr "Copiez la sauvegarde vers un endroit sûr" msgid "Copy this text as it is to a safe place (notepad or email)" msgstr "Copiez ce texte présenté tel quel vers un endroit sûr (bloc-notes ou e-mail)" -#: public/views/backup.html +#: public/views/backup.html msgid "Copy to clipboard" msgstr "Copier dans le presse-papier" #: src/js/controllers/walletHome.js -msgid "Could not accept payment. Check you connection and try again" -msgstr "Impossible d'accepter le paiement. Vérifiez votre connexion internet et réessayez" +msgid "Could not accept payment" +msgstr "Impossible d'accepter le paiement" + +#: src/js/controllers/index.js +msgid "Could not access Wallet Service: Not found" +msgstr "Impossible d'accéder au Wallet Service : Introuvable" #: src/js/controllers/walletHome.js -msgid "Could not broadcast payment. Check you connection and try again" -msgstr "Impossible de diffuser le paiement. Vérifiez votre connexion internet et réessayez" +msgid "Could not broadcast payment" +msgstr "Impossible de diffuser le paiement" -#: src/js/controllers/walletHome.js -msgid "Could not connect wallet service. Check your Internet connexion and your wallet service configuration." -msgstr "Impossible de se connecter au service de portefeuille. Vérifiez votre connexion Internet et la configuration de votre service de portefeuille." - -#: src/js/controllers/walletHome.js -msgid "Could not create address. Check you connection and try again" -msgstr "Impossible de créer l'adresse. Vérifiez votre connexion internet et réessayez" +#: src/js/services/addressService.js +msgid "Could not create address" +msgstr "Impossible de créer l'adresse" #: src/js/controllers/walletHome.js msgid "Could not create payment proposal" @@ -249,8 +316,8 @@ msgid "Could not decrypt file, check your password" msgstr "Impossible de déchiffrer le fichier, vérifiez votre mot de passe" #: src/js/controllers/walletHome.js -msgid "Could not delete payment proposal. Check you connection and try again" -msgstr "Impossible de supprimer la proposition de paiement. Vérifiez votre connexion internet et réessayez" +msgid "Could not delete payment proposal" +msgstr "Impossible de supprimer la proposition de paiement" #: src/js/controllers/walletHome.js msgid "Could not fetch payment information" @@ -266,21 +333,25 @@ msgstr "Impossible d'importer. Vérifiez le fichier d'entrée et le mot de passe #: src/js/services/profileService.js msgid "Could not join using the specified extended private key" -msgstr "" +msgstr "Impossible de rejoindre en utilisant la clé privée étendue spécifiée" -#: src/js/controllers/join.js -msgid "Could not join wallet:" +#: src/js/services/profileService.js +msgid "Could not join wallet" msgstr "Impossible de rejoindre le portefeuille" #: src/js/controllers/walletHome.js -msgid "Could not reject payment. Check you connection and try again" -msgstr "Impossible de rejeter le paiement. Vérifiez votre connexion internet réessayez" +msgid "Could not recognize a valid Bitcoin QR Code" +msgstr "Impossible de reconnaître un code QR Bitcoin valide" + +#: src/js/controllers/walletHome.js +msgid "Could not reject payment" +msgstr "Impossible de rejeter le paiement" #: src/js/controllers/walletHome.js msgid "Could not send payment" msgstr "Impossible d'envoyer le paiement" -#: public/views/walletHome.html +#: src/js/controllers/index.js msgid "Could not update Wallet" msgstr "Impossible de mettre à jour le portefeuille" @@ -309,7 +380,7 @@ msgstr "Créée par" msgid "Creating Profile..." msgstr "Création du profile..." -#: public/views/create.html +#: public/views/create.html msgid "Creating Wallet..." msgstr "Création du portefeuille..." @@ -317,6 +388,11 @@ msgstr "Création du portefeuille..." msgid "Creating transaction" msgstr "Création de la transaction" +#: public/views/preferencesFee.html +#: public/views/modals/advancedSend.html +msgid "Current fee rate for this policy: {{fee.feePerKBUnit}}/kiB" +msgstr "Frais actuels pour cette stratégie : {{fee.feePerKBUnit}}/kiB" + #: public/views/modals/tx-details.html msgid "Date" msgstr "Date" @@ -348,23 +424,27 @@ msgstr "Suppression du paiement" msgid "Details" msgstr "Détails" -#: src/js/controllers/index.js -msgid "Deutsch" -msgstr "Allemand" - #: public/views/preferences.html msgid "Disabled" msgstr "Désactivé" +#: public/views/backup.html +msgid "Do not include private key in backup" +msgstr "Ne pas inclure la clé privée dans la sauvegarde" + +#: public/views/translators.html +msgid "Don't see your language on Crowdin? Contact the Owner on Crowdin! We'd love to support your language." +msgstr "Vous ne voyez pas votre langue sur Crowdin ? Contactez le propriétaire sur Crowdin ! Nous serions ravis de prendre en charge votre langue." + +#: public/views/walletHome.html +msgid "Download CSV file" +msgstr "Télécharger le fichier CSV" + #: public/views/backup.html msgid "Download backup" msgstr "Télécharger la sauvegarde" -#: public/views/includes/password.html -msgid "ENTER" -msgstr "ENTRER" - -#: src/js/controllers/preferencesFee.js +#: src/js/services/feeService.js msgid "Economy" msgstr "Économique" @@ -372,10 +452,6 @@ msgstr "Économique" msgid "Email Notifications" msgstr "Notifications e-mail" -#: src/js/controllers/preferencesFee.js -msgid "Emergency" -msgstr "Urgente" - #: public/views/preferences.html msgid "Encrypt Private Key" msgstr "Chiffrer la clé privée" @@ -384,22 +460,18 @@ msgstr "Chiffrer la clé privée" msgid "Encrypted backup file saved" msgstr "Le fichier de sauvegarde chiffré a été sauvegardé" -#: src/js/controllers/index.js -msgid "English" -msgstr "Anglais" - #: public/views/includes/password.html msgid "Enter your password" msgstr "Entrer votre mot de passe" +#: src/js/controllers/index.js +msgid "Error at Wallet Service" +msgstr "Erreur au niveau de Wallet Service" + #: src/js/services/profileService.js msgid "Error creating wallet" msgstr "Erreur de création du portefeuille" -#: src/js/services/profileService.js -msgid "Error creating wallet. Check your internet connection" -msgstr "Erreur de création du portefeuille. Vérifiez votre connexion internet" - #: src/js/services/profileService.js msgid "Error importing wallet:" msgstr "Erreur d'importation du portefeuille :" @@ -409,6 +481,10 @@ msgstr "Erreur d'importation du portefeuille :" msgid "Expires" msgstr "Expire" +#: public/views/backup.html +msgid "Failed to create backup" +msgstr "Impossible de créer la sauvegarde" + #: src/js/controllers/importLegacy.js msgid "Failed to import wallets" msgstr "Impossible d'importer les portefeuilles" @@ -417,19 +493,32 @@ msgstr "Impossible d'importer les portefeuilles" msgid "Family vacation funds" msgstr "Fonds pour les vacances familiales" +#: public/views/modals/tx-details.html #: public/views/modals/txp-details.html msgid "Fee" msgstr "Frais" +#: public/views/modals/advancedSend.html +msgid "Fee Policy" +msgstr "Stratégie des frais" + +#: public/views/walletHome.html +msgid "Fee policy for this transaction" +msgstr "Stratégie des frais pour cette transaction" + #. Get information of payment if using Payment Protocol #: src/js/controllers/walletHome.js msgid "Fetching Payment Information" msgstr "Récupération des informations de paiement" -#: src/js/controllers/index.js +#: public/views/translators.html msgid "French" msgstr "Français" +#: src/js/services/bwsError.js +msgid "Funds are locked by pending spend proposals" +msgstr "Les fonds sont verrouillés par des propositions de dépenses en attente" + #: src/js/services/notificationsService.js msgid "Funds received" msgstr "Fonds reçus" @@ -446,6 +535,14 @@ msgstr "Générer un code QR" msgid "Generate new address" msgstr "Générer une nouvelle adresse" +#: public/views/walletHome.html +msgid "Generating .csv file..." +msgstr "Génération du fichier .csv..." + +#: public/views/translators.html +msgid "German" +msgstr "Allemand" + #: public/views/modals/wallets.html msgid "Getting address for wallet {{selectedWalletName}} ..." msgstr "Obtention d'une adresse pour le portefeuille {{selectedWalletName}} ..." @@ -458,13 +555,19 @@ msgstr "Paramètres globaux" msgid "Go back" msgstr "Retour" +#: public/views/translators.html +msgid "Greek" +msgstr "Grec" + #: public/views/import.html msgid "Have a Backup from Copay v0.9?" msgstr "Vous avez une sauvegarde de Copay v0.9 ?" -#: public/views/create.html +#: public/views/backup.html +#: public/views/create.html #: public/views/join.html -msgid "Hide Advanced options" +#: public/views/walletHome.html +msgid "Hide advanced options" msgstr "Masquer les options avancées" #: src/js/controllers/index.js @@ -513,11 +616,39 @@ msgstr "Importation du portefeuille..." msgid "Importing..." msgstr "Importation..." -#: src/js/controllers/index.js +#: src/js/services/bwsError.js +msgid "Incorrect address network" +msgstr "Adresse réseau incorrecte" + +#: src/js/services/bwsError.js +msgid "Insufficient funds" +msgstr "Fonds insuffisants" + +#: src/js/services/bwsError.js +msgid "Insufficient funds for fee" +msgstr "Fonds insuffisants pour les frais" + +#: public/views/walletHome.html +msgid "Invalid" +msgstr "Invalide" + +#: src/js/services/bwsError.js +msgid "Invalid address" +msgstr "Adresse invalide" + +#: src/js/controllers/copayers.js +msgid "Invitation to share a Copay Wallet" +msgstr "Invitation pour partager un portefeuille Copay" + +#: public/views/translators.html +msgid "Italian" +msgstr "Italien" + +#: public/views/translators.html msgid "Japanese" msgstr "Japonais" -#: public/views/create.html +#: public/views/create.html #: public/views/join.html msgid "John" msgstr "John" @@ -526,6 +657,10 @@ msgstr "John" msgid "Join" msgstr "Rejoindre" +#: src/js/controllers/copayers.js +msgid "Join my Copay wallet. Here is the invitation code: {{secret}} You can download Copay for your phone or desktop at https://copay.io" +msgstr "Rejoignez mon portefeuille Copay. Voici le code d'invitation : {{secret}} Vous pouvez télécharger Copay pour votre téléphone ou pour votre ordinateur sur https://copay.io" + #: public/views/add.html msgid "Join shared wallet" msgstr "Rejoindre" @@ -542,6 +677,14 @@ msgstr "Langue" msgid "Learn more about Wallet Migration" msgstr "En savoir plus sur la migration de portefeuille" +#: src/js/services/bwsError.js +msgid "Locktime in effect. Please wait to create a new spend proposal" +msgstr "Locktime effectif. Veuillez patienter pour créer une nouvelle proposition de dépense" + +#: src/js/services/bwsError.js +msgid "Locktime in effect. Please wait to remove this spend proposal" +msgstr "Locktime effectif. Veuillez patienter pour supprimer cette proposition de dépense" + #: public/views/paymentUri.html msgid "Make a payment to" msgstr "Faire un paiement à" @@ -551,14 +694,17 @@ msgstr "Faire un paiement à" msgid "Master extended private key" msgstr "Clé privée étendue maîtresse" -#: public/views/includes/copayers.html +#: public/views/includes/copayers.html #: public/views/modals/copayers.html #: public/views/modals/tx-details.html #: public/views/modals/txp-details.html msgid "Me" msgstr "Moi" -#: public/views/modals/paypro.html +#: public/views/modals/paypro.html +msgid "Memo" +msgstr "Note" + #: public/views/modals/tx-details.html msgid "Merchant message" msgstr "Message marchand" @@ -587,32 +733,45 @@ msgstr "Mon adresse Bitcoin" msgid "Network" msgstr "Réseau" +#: src/js/services/bwsError.js +msgid "Network connection error" +msgstr "Erreur de connexion réseau" + #: src/js/services/notificationsService.js msgid "New Payment Proposal" msgstr "Nouvelle proposition de paiement" -#: public/views/modals/confirmation.html -msgid "No" -msgstr "Non" +#: public/views/walletHome.html +msgid "No Private key" +msgstr "Aucune clé privée" #: public/views/walletHome.html msgid "No transactions yet" msgstr "Aucune transaction" -#: src/js/controllers/preferencesFee.js +#: src/js/services/feeService.js msgid "Normal" msgstr "Normale" +#: src/js/services/bwsError.js +msgid "Not authorized" +msgstr "Non autorisé" + #: public/views/walletHome.html #: public/views/modals/customized-amount.html msgid "Not valid" msgstr "Non valide" #: public/views/walletHome.html +#: public/views/includes/output.html #: public/views/modals/tx-details.html -#: public/views/modals/txp-details.html -msgid "Note:" -msgstr "Note :" +msgid "Note" +msgstr "Note" + +#: public/views/includes/alert.html +#: public/views/includes/password.html +msgid "OK" +msgstr "Ok" #: public/views/modals/tx-status.html msgid "OKAY" @@ -623,7 +782,7 @@ msgstr "Ok" msgid "Participants" msgstr "Participants" -#: public/views/import.html +#: public/views/import.html #: public/views/importLegacy.html msgid "Password" msgstr "Mot de passe" @@ -717,6 +876,10 @@ msgstr "Paiement envoyé !" msgid "Payment to" msgstr "Paiement à" +#: public/views/walletHome.html +msgid "Pending Confirmation" +msgstr "Confirmations en attente" + #: public/views/preferencesDeleteWallet.html msgid "Permanently delete this wallet. THIS ACTION CANNOT BE REVERSED" msgstr "Supprimer définitivement ce portefeuille. CETTE ACTION NE PEUT PAS ÊTRE ANNULÉE" @@ -730,11 +893,15 @@ msgstr "Portefeuille personnel" msgid "Please enter the required fields" msgstr "Veuillez saisir les champs requis" +#: src/js/services/bwsError.js +msgid "Please upgrade Copay to perform this action" +msgstr "Veuillez mettre à jour Copay pour effectuer cette action" + #: src/js/controllers/import.js msgid "Please, select your backup file" msgstr "Veuillez sélectionner votre fichier de sauvegarde" -#: src/js/controllers/index.js +#: public/views/translators.html msgid "Portuguese" msgstr "Portugais" @@ -742,7 +909,11 @@ msgstr "Portugais" msgid "Preferences" msgstr "Préférences" -#: src/js/controllers/preferencesFee.js +#: src/js/controllers/backup.js +msgid "Preparing backup..." +msgstr "Préparation de la sauvegarde..." + +#: src/js/services/feeService.js msgid "Priority" msgstr "Prioritaire" @@ -762,6 +933,11 @@ msgstr "Recevoir" msgid "Received" msgstr "Reçue" +#: public/views/includes/output.html +#: public/views/includes/transaction.html +msgid "Recipients" +msgstr "Destinataires" + #: public/views/walletHome.html msgid "Reconnecting to Wallet Service..." msgstr "Reconnexion au service de portefeuille..." @@ -786,7 +962,7 @@ msgstr "Rejet du paiement" msgid "Release Information" msgstr "Informations de version" -#: public/views/backup.html +#: public/views/backup.html #: public/views/includes/password.html msgid "Repeat password" msgstr "Répétez le mot de passe" @@ -796,7 +972,7 @@ msgstr "Répétez le mot de passe" msgid "Request a specific amount" msgstr "Demander un montant précis" -#: public/views/import.html +#: public/views/import.html #: public/views/join.html msgid "Required" msgstr "Requis" @@ -805,6 +981,10 @@ msgstr "Requis" msgid "Retrying..." msgstr "Nouvelle tentative" +#: public/views/translators.html +msgid "Russian" +msgstr "Russe" + #: public/views/includes/password.html msgid "SET" msgstr "DEFINIR" @@ -918,10 +1098,16 @@ msgstr "Partagez cette adresse de portefeuille pour recevoir des paiements. Pour msgid "Shared Wallet" msgstr "Portefeuille partagé" +#: public/views/backup.html #: public/views/create.html #: public/views/join.html -msgid "Show Advanced options" -msgstr "Montrer les options avancées" +#: public/views/walletHome.html +msgid "Show advanced options" +msgstr "Afficher les options avancées" + +#: src/js/services/bwsError.js +msgid "Signatures rejected by server" +msgstr "Signatures rejetées par le serveur" #: src/js/controllers/walletHome.js msgid "Signing payment" @@ -931,13 +1117,17 @@ msgstr "Signature du paiement" msgid "Signing transaction" msgstr "Signature de la transaction" -#: src/js/controllers/index.js +#: public/views/translators.html msgid "Spanish" msgstr "Espagnol" -#: public/views/walletHome.html -msgid "Spend proposals" -msgstr "Propositions de dépense" +#: src/js/services/bwsError.js +msgid "Spend proposal is not accepted" +msgstr "La proposition de dépense n'est pas acceptée" + +#: src/js/services/bwsError.js +msgid "Spend proposal not found" +msgstr "Propostion de dépense introuvable" #: src/js/controllers/copayers.js #: src/js/controllers/import.js @@ -963,20 +1153,39 @@ msgid "The payment was created but could not be completed. Please try again from msgstr "Le paiement a été créé mais n'a pas pu être achevé. Veuillez réessayer depuis l'écran d'accueil" #: src/js/controllers/walletHome.js -msgid "The payment was created but could not be signed. Please try again from home screen." +msgid "The payment was created but could not be signed. Please try again from home screen" msgstr "Le paiement a été créé mais n'a pas pu être signé. Veuillez réessayer depuis l'écran d'accueil" #: public/views/modals/txp-details.html msgid "The payment was removed by creator" msgstr "Le paiement a été supprimé par le créateur" +#: src/js/controllers/walletHome.js +msgid "The payment was signed but could not be broadcasted. Please try again from home screen" +msgstr "Le paiement a été signé mais ne peut pas être diffusé. Veuillez réessayer depuis l'écran d'accueil" + #: public/views/backup.html msgid "The private key for this wallet is encrypted. Exporting a backup will keep the private key encrypted in the backup archive." msgstr "La clé privée pour ce portefeuille est chiffrée. Exporter une sauvegarde conservera le chiffrement de la clé dans l'archive de sauvegarde." #: public/views/disclaimer.html msgid "The software you are about to use functions as a free, open source, and multi-signature digital wallet. The software does not constitute an account where BitPay or other third parties serve as financial intermediaries or custodians of your bitcoin. While the software has undergone beta testing and continues to be improved by feedback from the open-source user and developer community, we cannot guarantee that there will be no bugs in the software. You acknowledge that your use of this software is at your own discretion and in compliance with all applicable laws. You are responsible for safekeeping your passwords, private key pairs, PINs and any other codes you use to access the software. IF YOU LOSE ACCESS TO YOUR COPAY WALLET OR YOUR ENCRYPTED PRIVATE KEYS AND YOU HAVE NOT SEPARATELY STORED A BACKUP OF YOUR WALLET AND CORRESPONDING PASSWORD, YOU ACKNOWLEDGE AND AGREE THAT ANY BITCOIN YOU HAVE ASSOCIATED WITH THAT COPAY WALLET WILL BECOME INACCESSIBLE. All transaction requests are irreversible. The authors of the software, employees and affiliates of Bitpay, copyright holders, and BitPay, Inc. cannot retrieve your private keys or passwords if you lose or forget them and cannot guarantee transaction confirmation as they do not have control over the Bitcoin network. To the fullest extent permitted by law, this software is provided “as is” and no representations or warranties can be made of any kind, express or implied, including but not limited to the warranties of merchantability, fitness or a particular purpose and noninfringement. You assume any and all risks associated with the use of the software. In no event shall the authors of the software, employees and affiliates of Bitpay, copyright holders, or BitPay, Inc. be held liable for any claim, damages or other liability, whether in an action of contract, tort, or otherwise, arising from, out of or in connection with the software. We reserve the right to modify this disclaimer from time to time." -msgstr "Le logiciel que vous êtes sur le point d'utiliser fonctionne comme un portefeuille numérique gratuit, open source et multi-signatures.\nLe logiciel ne constitue pas un compte où BitPay, ou des tiers, agissent comme des intermédiaires financiers ou dépositaires de vos bitcoins.\nBien que le logiciel ait subi des tests bêta et continue d'être amélioré par les commentaires d'utilisateurs et de développeurs de la communauté open source, nous ne pouvons pas garantir qu'il n'y aura plus de bugs dans le logiciel.\nVous reconnaissez que votre utilisation de ce logiciel est à votre propre discrétion et est en conformité avec toutes les lois applicables.\nVous êtes responsable de la sauvegarde de vos mots de passe, paires de clés privées, codes PIN et autres codes que vous utilisez pour accéder au logiciel.\nSI VOUS PERDEZ L'ACCÈS À VOTRE PORTEFEUILLE COPAY OU À VOS CLÉS PRIVÉES CHIFFRÉES ET QUE VOUS N'AVEZ PAS ENTREPOSÉ SÉPARÉMENT UNE SAUVEGARDE DE VOTRE PORTEFEUILLE ET LES MOTS DE PASSE CORRESPONDANT, VOUS RECONNAISSEZ ET ACCEPTEZ QUE LES BITCOINS QUE VOUS AVEZ ASSOCIÉ À CE PORTEFEUILLE COPAY DEVIENNENT INACCESSIBLES.\nToutes les transactions sont irréversibles.\nLes auteurs de ce logiciel, employés et sociétés affiliés à BitPay, détenteurs de droits d'auteur, et BitPay, Inc. ne peuvent pas récupérer vos clés privées ou mots de passe si vous les perdez et ne peuvent pas garantir la confirmation des transactions étant donné qu'ils n'ont pas de contrôle sur le réseau Bitcoin.\nDans toute la mesure permise par la loi, ce logiciel est fourni “tel quel” et aucune représentation ou garantie ne peut être faite de toute nature, expresse ou implicite, y compris, mais sans s'y limiter, les garanties de qualité marchande, la conformité ou un usage particulier et absent de contrefaçon.\nVous assumez tous les risques associés à l'utilisation du logiciel.\nEn aucun cas les auteurs des logiciels, employés et sociétés affiliés de Bitpay, détenteurs de droits d'auteur, ou BitPay, Inc. ne peuvent être tenus responsables de toute réclamation, dommages ou autre responsabilité, que ce soit dans une action contractuelle, délictuelle ou autre, découlant ou en étant en connexion avec le logiciel.\nNous nous réservons le droit de modifier cette clause de temps à autre." +msgstr "Le logiciel que vous êtes sur le point d'utiliser fonctionne comme un portefeuille numérique gratuit, open source et multi-signatures.\n" +"Le logiciel ne constitue pas un compte où BitPay, ou des tiers, agissent comme des intermédiaires financiers ou dépositaires de vos bitcoins.\n" +"Bien que le logiciel ait subi des tests bêta et continue d'être amélioré par les commentaires d'utilisateurs et de développeurs de la communauté open source, nous ne pouvons pas garantir qu'il n'y aura plus de bugs dans le logiciel.\n" +"Vous reconnaissez que votre utilisation de ce logiciel est à votre propre discrétion et est en conformité avec toutes les lois applicables.\n" +"Vous êtes responsable de la sauvegarde de vos mots de passe, paires de clés privées, codes PIN et autres codes que vous utilisez pour accéder au logiciel.\n" +"SI VOUS PERDEZ L'ACCÈS À VOTRE PORTEFEUILLE COPAY OU À VOS CLÉS PRIVÉES CHIFFRÉES ET QUE VOUS N'AVEZ PAS ENTREPOSÉ SÉPARÉMENT UNE SAUVEGARDE DE VOTRE PORTEFEUILLE ET LES MOTS DE PASSE CORRESPONDANT, VOUS RECONNAISSEZ ET ACCEPTEZ QUE LES BITCOINS QUE VOUS AVEZ ASSOCIÉ À CE PORTEFEUILLE COPAY DEVIENNENT INACCESSIBLES.\n" +"Toutes les transactions sont irréversibles.\n" +"Les auteurs de ce logiciel, employés et sociétés affiliés à BitPay, détenteurs de droits d'auteur, et BitPay, Inc. ne peuvent pas récupérer vos clés privées ou mots de passe si vous les perdez et ne peuvent pas garantir la confirmation des transactions étant donné qu'ils n'ont pas de contrôle sur le réseau Bitcoin.\n" +"Dans toute la mesure permise par la loi, ce logiciel est fourni “tel quel” et aucune représentation ou garantie ne peut être faite de toute nature, expresse ou implicite, y compris, mais sans s'y limiter, les garanties de qualité marchande, la conformité ou un usage particulier et absent de contrefaçon.\n" +"Vous assumez tous les risques associés à l'utilisation du logiciel.\n" +"En aucun cas les auteurs des logiciels, employés et sociétés affiliés de Bitpay, détenteurs de droits d'auteur, ou BitPay, Inc. ne peuvent être tenus responsables de toute réclamation, dommages ou autre responsabilité, que ce soit dans une action contractuelle, délictuelle ou autre, découlant ou en étant en connexion avec le logiciel.\n" +"Nous nous réservons le droit de modifier cette clause de temps à autre." + +#: src/js/services/bwsError.js +msgid "The spend proposal is not pending" +msgstr "La proposition de dépense n'est pas en attente" #: src/js/controllers/copayers.js #: src/js/controllers/preferencesDelete.js @@ -991,21 +1200,30 @@ msgstr "Il n'y a pas de portefeuilles pour faire ce paiement" msgid "There is an error in the form" msgstr "Il y a une erreur dans la forme" +#: public/views/modals/tx-details.html +msgid "This transaction has become invalid; possibly due to a double spend attempt." +msgstr "Cette transaction est devenue invalide ; il s'agit peut-être d'une tentative de double dépense." + #: public/views/walletHome.html msgid "This wallet is not registered at the given Bitcore Wallet Service (BWS). You can recreate it from the local information." -msgstr "Ce portefeuille n'est pas enregistré dans le Bitcore Wallet Service (BWS).Vous pouvez le recréer depuis l'information locale." +msgstr "Ce portefeuille n'est pas enregistré dans le Bitcore Wallet Service (BWS) donné. Vous pouvez le recréer depuis l'information locale." #: public/views/modals/txp-details.html msgid "Time" -msgstr "Heure" +msgstr "Ancienneté" #: public/views/walletHome.html +#: public/views/includes/output.html #: public/views/includes/transaction.html #: public/views/modals/tx-details.html #: public/views/modals/txp-details.html msgid "To" msgstr "À" +#: public/views/includes/output.html +msgid "Total" +msgstr "Total" + #: public/views/walletHome.html msgid "Total Locked Balance" msgstr "Solde verrouillé total" @@ -1014,11 +1232,23 @@ msgstr "Solde verrouillé total" msgid "Transaction" msgstr "Transaction" +#: src/js/services/bwsError.js +msgid "Transaction already broadcasted" +msgstr "Transaction déjà diffusée" + +#: public/views/translators.html +msgid "Translation Credits" +msgstr "Crédits de traduction" + +#: public/views/preferencesAbout.html +msgid "Translators" +msgstr "Traducteurs" + #: src/js/controllers/walletHome.js msgid "Unable to send transaction proposal" msgstr "Impossible d'envoyer la proposition de transaction" -#: public/views/walletHome.html +#: public/views/walletHome.html #: public/views/modals/tx-details.html msgid "Unconfirmed" msgstr "Non confirmée" @@ -1039,6 +1269,11 @@ msgstr "Non-approuvé" msgid "Updating Wallet..." msgstr "Mise à jour du portefeuille..." +#: public/views/preferences.html +#: public/views/walletHome.html +msgid "Use Unconfirmed Funds" +msgstr "Utiliser les fonds non confirmés" + #: public/views/preferencesAbout.html msgid "Version" msgstr "Version" @@ -1083,6 +1318,7 @@ msgstr "Invitation de portefeuille" msgid "Wallet Invitation is not valid!" msgstr "L'invitation de portefeuille n'est pas valide !" +#: src/js/services/bwsError.js #: src/js/services/profileService.js msgid "Wallet already exists" msgstr "Le portefeuille existe déjà" @@ -1091,18 +1327,34 @@ msgstr "Le portefeuille existe déjà" msgid "Wallet incomplete and broken" msgstr "Portefeuille incomplet et cassé " +#: src/js/services/bwsError.js +msgid "Wallet is full" +msgstr "Le portefeuille est plein" + +#: src/js/services/bwsError.js +msgid "Wallet is not complete" +msgstr "Le portefeuille n'est pas complet" + #: public/views/create.html msgid "Wallet name" msgstr "Nom du portefeuille" -#: src/js/controllers/walletHome.js -msgid "Wallet service timed out. Check your Internet connexion and your wallet service configuration." -msgstr "Le service de portefeuille s'est déconnecté. Vérifiez votre connexion Internetet la configuration de votre service de portefeuille." +#: src/js/services/bwsError.js +msgid "Wallet not found" +msgstr "Portefeuille introuvable" + +#: src/js/services/bwsError.js +msgid "Wallet service not found" +msgstr "Wallet Service introuvable" #: public/views/preferencesDeleteWallet.html msgid "Warning!" msgstr "Attention !" +#: public/views/modals/txp-details.html +msgid "Warning: this transaction has unconfirmed inputs" +msgstr "ATTENTION : Cette transaction a des entrées non confirmées" + #: src/js/services/profileService.js msgid "Wrong password" msgstr "Mauvais mot de passe" @@ -1115,7 +1367,7 @@ msgstr "Oui" msgid "You do not have a wallet" msgstr "Vous n'avez aucun portefeuille" -#: public/views/backup.html +#: public/views/backup.html #: public/views/import.html msgid "Your backup password" msgstr "Votre mot de passe de sauvegarde" @@ -1163,10 +1415,6 @@ msgstr "paramètres" msgid "too long!" msgstr "trop long !" -#: public/views/preferencesFee.html -msgid "{{fee.value}} bits per kB" -msgstr "{{fee.value}} bits par kB" - #: src/js/controllers/walletHome.js msgid "{{fee}} will be discounted for bitcoin networking fees" msgstr "{{fee}} seront déduits pour les frais de réseau Bitcoin" @@ -1174,3 +1422,4 @@ msgstr "{{fee}} seront déduits pour les frais de réseau Bitcoin" #: src/js/controllers/importLegacy.js msgid "{{len}} wallets imported. Funds scanning in progress. Hold on to see updated balance" msgstr "{{len}} portefeuilles importés. L'analyse des fonds a démarré. Le solde va se mettre à jour" + diff --git a/i18n/po/it.po b/i18n/po/it.po new file mode 100644 index 000000000..bec7713b2 --- /dev/null +++ b/i18n/po/it.po @@ -0,0 +1,1414 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Project-Id-Version: copay\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: crowdin.com\n" +"X-Crowdin-Project: copay\n" +"X-Crowdin-Language: it\n" +"X-Crowdin-File: template.pot\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Last-Translator: cmgustavo83\n" +"Language-Team: Italian\n" +"Language: it\n" +"PO-Revision-Date: 2015-08-14 02:34-0400\n" + +#: public/views/walletHome.html +msgid "(possible double spend)" +msgstr "(possibile doppia spesa)" + +#: public/views/modals/txp-details.html +msgid "* A payment proposal can be deleted if 1) you are the creator, and no other copayer has signed, or 2) 24 hours have passed since the proposal was created." +msgstr "* Una proposta di pagamento può essere eliminata se 1) Tu sei il creatore e nessun altro copayer ha firmato, oppure 2) Sono passate 24 ore da quando la proposta e' stata creata." + +#: public/views/backup.html +msgid "* You can safely install your backup on another device and use your wallet from multiple devices at the same time." +msgstr "* Puoi installare in modo sicuro il tuo backup su un altro device e usare il tuo portafoglio da più dispositivi contemporaneamente." + +#: public/views/backup.html +msgid "A backup without its private key will allow the user to see the wallet balance, transactions, and create spend proposals. However, it will not be able to approve (sign) proposals." +msgstr "Un backup senza la sua chiave privata permetterà l'utente di vedere il saldo del portafoglio, le transazioni e creare proposte di spese. Tuttavia, non sarà possibile approvare le proposte (firma)." + +#: public/views/splash.html +msgid "A multisignature bitcoin wallet" +msgstr "Un portafoglio bitcoin multifirma" + +#: public/views/preferences.html +msgid "About Copay" +msgstr "Circa Copay" + +#: public/views/modals/txp-details.html +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Accept" +msgstr "Accetta" + +#: public/views/includes/sidebar.html +msgid "Add wallet" +msgstr "Aggiungi un portafoglio" + +#: public/views/paymentUri.html +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +msgid "Address" +msgstr "Indirizzo" + +#: public/views/preferences.html +msgid "Advanced" +msgstr "Avanzato" + +#: public/views/modals/advancedSend.html +msgid "Advanced Send" +msgstr "Invio Avanzato" + +#: public/views/disclaimer.html +msgid "Agree" +msgstr "Acconsento" + +#: public/views/preferencesAlias.html +msgid "Alias for {{index.walletName}}" +msgstr "Alias per {{index.walletName}}" + +#: public/views/translators.html +msgid "All contributions to Copay's translation are welcome. Sign up at crowdin.com and join the Copay project at" +msgstr "Tutti i contributori alla traduzione di Copay sono i benvenuti. Iscriviti a crowdin e unisciti al progetto Copay presso" + +#: public/views/splash.html +msgid "Already have a wallet?" +msgstr "Hai già un portafoglio?" + +#: public/views/preferences.html +msgid "Alternative Currency" +msgstr "Valuta alternativa" + +#: public/views/paymentUri.html +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/modals/customized-amount.html +msgid "Amount" +msgstr "Ammontare" + +#: src/js/services/bwsError.js +msgid "Amount below dust threshold" +msgstr "Importo sotto soglia" + +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html +msgid "Amount in" +msgstr "Importo in" + +#: public/views/preferencesLanguage.html +msgid "Applying changes" +msgstr "Applicando le modifiche" + +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +msgid "Are you sure you want to delete this wallet?" +msgstr "Sei sicuro di voler eliminare questo portafoglio?" + +#: public/views/walletHome.html +msgid "Available Balance" +msgstr "Saldo disponibile" + +#: public/views/preferencesFee.html +#: public/views/modals/advancedSend.html +msgid "Average confirmation time: {{fee.nbBlocks * 10}} minutes" +msgstr "Tempo medio di conferma: {{fee.nbBlocks * 10}} minuti" + +#: public/views/create.html +#: public/views/join.html +msgid "BIP32 master extended private key" +msgstr "BIP32 Chiave privata master estesa" + +#: public/views/includes/topbar.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Back" +msgstr "Indietro" + +#: public/views/preferences.html +msgid "Backup" +msgstr "Backup" + +#: src/js/controllers/backup.js +msgid "Backup created" +msgstr "Backup creato" + +#: public/views/walletHome.html +msgid "Backup now" +msgstr "Esegui backup ora" + +#: public/views/backup.html +msgid "Backup options" +msgstr "Opzioni di backup" + +#: src/js/services/profileService.js +msgid "Bad wallet invitation" +msgstr "Invito al wallet non corretto" + +#: public/views/walletHome.html +msgid "Before receiving funds, it is highly recommended you backup your wallet keys." +msgstr "Prima di ricevere fondi, è altamente raccomandato eseguire il backup delle chiavi del portafoglio." + +#: public/views/preferences.html +msgid "Bitcoin Network Fee Policy" +msgstr "Criterio delle Commissioni del Bitcoin Network" + +#: public/views/paymentUri.html +msgid "Bitcoin URI is NOT valid!" +msgstr "Il Bitcoin URI NON è valido!" + +#: public/views/walletHome.html +msgid "Bitcoin address" +msgstr "Indirizzo Bitcoin" + +#: public/views/preferencesFee.html +msgid "Bitcoin transactions may include a fee collected by miners on the network. The higher the fee, the greater the incentive a miner has to include that transaction in a block. Actual fees are determined based on network load and the selected policy." +msgstr "Le transazioni bitcoin possono includere una tassa raccolta dai minatori della rete. Più alto è il costo, maggiore sarà la possibilità di includere tale transazione in un blocco. Le tasse effettive sono determinate in base al carico della rete ed ai criteri selezionati." + +#: public/views/modals/txp-details.html +msgid "Broadcast Payment" +msgstr "Diffusione del Pagamento" + +#: src/js/controllers/walletHome.js +msgid "Broadcasting Payment" +msgstr "Diffondendo il Pagamento" + +#: src/js/controllers/walletHome.js +msgid "Broadcasting transaction" +msgstr "Diffondendo la transazione" + +#: public/views/unsupported.html +msgid "Browser unsupported" +msgstr "Browser non supportato" + +#: public/views/modals/txp-details.html +msgid "But not broadcasted. Try to send manually" +msgstr "Ma non trasmesso. Prova a inviare manualmente" + +#: public/views/includes/password.html +msgid "CANCEL" +msgstr "Annulla" + +#: public/views/copayers.html +#: public/views/walletHome.html +#: public/views/modals/confirmation.html +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Cancel" +msgstr "Annulla" + +#: src/js/services/profileService.js +msgid "Cannot join the same wallet more that once" +msgstr "Non è possibile aggiungere un portafoglio più di una volta" + +#: public/views/modals/paypro.html +msgid "Certified by" +msgstr "Certificato da" + +#: public/views/preferencesAlias.html +msgid "Changing wallet alias only affects the local wallet name." +msgstr "Il cambiamento degli alias dei portafogli influenza solo il nome del portafoglio locale." + +#: public/views/import.html +msgid "Choose a backup file from your computer" +msgstr "Seleziona un file di backup dal tuo computer" + +#: public/views/modals/wallets.html +msgid "Choose a wallet to send funds" +msgstr "Seleziona un portafoglio per inviare fondi" + +#: public/views/includes/topbar.html +#: public/views/modals/advancedSend.html +#: public/views/modals/copayers.html +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +#: public/views/modals/scanner.html +#: public/views/modals/wallets.html +msgid "Close" +msgstr "Chiudi" + +#: public/views/preferences.html +msgid "Color" +msgstr "Colore" + +#: public/views/preferencesAbout.html +msgid "Commit hash" +msgstr "Commit hash" + +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Confirm" +msgstr "Conferma" + +#: public/views/modals/tx-details.html +msgid "Confirmations" +msgstr "Conferme" + +#: src/js/services/bwsError.js +msgid "Copayer already in this wallet" +msgstr "Copayer già in questo portafoglio" + +#: src/js/services/bwsError.js +msgid "Copayer already registered" +msgstr "Copayer già registrato" + +#: src/js/services/bwsError.js +msgid "Copayer already voted on this spend proposal" +msgstr "Copayer già votato su questa proposta" + +#: src/js/services/bwsError.js +msgid "Copayer data mismatch" +msgstr "Mancata corrispondenza dei dati del copayer" + +#: public/views/modals/copayers.html +msgid "Copayers" +msgstr "Copayers" + +#: src/js/controllers/backup.js +#: src/js/controllers/copayers.js +#: src/js/controllers/walletHome.js +msgid "Copied to clipboard" +msgstr "Copiato negli appunti" + +#: public/views/backup.html +msgid "Copy backup to a safe place" +msgstr "Copia il backup in un posto sicuro" + +#: public/views/backup.html +msgid "Copy this text as it is to a safe place (notepad or email)" +msgstr "Copia questo testo cosí com'è in un posto sicuro (blocco note o email)" + +#: public/views/backup.html +msgid "Copy to clipboard" +msgstr "Copia negli appunti" + +#: src/js/controllers/walletHome.js +msgid "Could not accept payment" +msgstr "Impossibile accettare il pagamento" + +#: src/js/controllers/index.js +msgid "Could not access Wallet Service: Not found" +msgstr "Impossibile accedere al Wallet Service: non trovato" + +#: src/js/controllers/walletHome.js +msgid "Could not broadcast payment" +msgstr "Impossibile trasmettere il pagamento" + +#: src/js/services/addressService.js +msgid "Could not create address" +msgstr "Impossibile creare un indirizzo" + +#: src/js/controllers/walletHome.js +msgid "Could not create payment proposal" +msgstr "Non posso creare la proposta di pagamento" + +#: src/js/services/profileService.js +msgid "Could not create using the specified extended private key" +msgstr "Non posso crearlo utilizzando la chiave privata estesa specificata" + +#: src/js/controllers/import.js +msgid "Could not decrypt file, check your password" +msgstr "Impossibile decrittografare il file, controlla la tua password" + +#: src/js/controllers/walletHome.js +msgid "Could not delete payment proposal" +msgstr "Impossibile eliminare la proposta di pagamento" + +#: src/js/controllers/walletHome.js +msgid "Could not fetch payment information" +msgstr "Impossibile recuperare le informazioni di pagamento" + +#: public/views/walletHome.html +msgid "Could not fetch transaction history" +msgstr "Impossibile recuperare la cronologie delle transazioni" + +#: src/js/services/profileService.js +msgid "Could not import. Check input file and password" +msgstr "Impossibile importare. Verifica file importato e password" + +#: src/js/services/profileService.js +msgid "Could not join using the specified extended private key" +msgstr "Impossibile partecipare utilizzando la chiave privata estesa specificata" + +#: src/js/services/profileService.js +msgid "Could not join wallet" +msgstr "Impossibile partecipare al portafoglio" + +#: src/js/controllers/walletHome.js +msgid "Could not recognize a valid Bitcoin QR Code" +msgstr "Impossibile riconoscere un Codice QR Bitcoin valido" + +#: src/js/controllers/walletHome.js +msgid "Could not reject payment" +msgstr "Impossibile rifiutare il pagamento" + +#: src/js/controllers/walletHome.js +msgid "Could not send payment" +msgstr "Impossibile inviare il pagamento" + +#: src/js/controllers/index.js +msgid "Could not update Wallet" +msgstr "Impossibile aggiornare il Portafoglio" + +#: public/views/walletHome.html +msgid "Create" +msgstr "Crea" + +#: public/views/add.html +#: public/views/create.html +msgid "Create new wallet" +msgstr "Crea nuovo portafoglio" + +#: public/views/create.html +msgid "Create {{requiredCopayers}}-of-{{totalCopayers}} wallet" +msgstr "Crea portafoglio {{requiredCopayers}}-di-{{totalCopayers}}" + +#: public/views/includes/sidebar.html +msgid "Create, join or import" +msgstr "Crea, partecipa o importa" + +#: public/views/modals/txp-details.html +msgid "Created by" +msgstr "Creato da" + +#: public/views/splash.html +msgid "Creating Profile..." +msgstr "Creazione Profilo..." + +#: public/views/create.html +msgid "Creating Wallet..." +msgstr "Creazione Portafoglio..." + +#: src/js/controllers/walletHome.js +msgid "Creating transaction" +msgstr "Creazione transazione" + +#: public/views/preferencesFee.html +#: public/views/modals/advancedSend.html +msgid "Current fee rate for this policy: {{fee.feePerKBUnit}}/kiB" +msgstr "Tassa corrente per questa policy: {{fee.feePerKBUnit}}/kiB" + +#: public/views/modals/tx-details.html +msgid "Date" +msgstr "Data" + +#: public/views/modals/txp-details.html +msgid "Delete Payment Proposal" +msgstr "Elimina Proposta di Pagamento" + +#: public/views/preferencesAdvanced.html +msgid "Delete Wallet" +msgstr "Elimina Portafoglio" + +#: public/views/copayers.html +msgid "Delete it and create a new one" +msgstr "Eliminalo e creane uno nuovo" + +#: public/views/preferencesDeleteWallet.html +msgid "Delete wallet" +msgstr "Elimina portafoglio" + +#: src/js/controllers/walletHome.js +msgid "Deleting payment" +msgstr "Eliminazione portafoglio" + +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Details" +msgstr "Dettagli" + +#: public/views/preferences.html +msgid "Disabled" +msgstr "Disabilitato" + +#: public/views/backup.html +msgid "Do not include private key in backup" +msgstr "Non includere la chiave privata nel backup" + +#: public/views/translators.html +msgid "Don't see your language on Crowdin? Contact the Owner on Crowdin! We'd love to support your language." +msgstr "Non vedi la tua lingua su Crowdin? Contatta il proprietario su Crowdin! Ci piacerebbe supportare la lingua." + +#: public/views/walletHome.html +msgid "Download CSV file" +msgstr "Scarica in formato CSV" + +#: public/views/backup.html +msgid "Download backup" +msgstr "Scarica il backup" + +#: src/js/services/feeService.js +msgid "Economy" +msgstr "Economia" + +#: public/views/preferences.html +msgid "Email Notifications" +msgstr "Notifiche Email" + +#: public/views/preferences.html +msgid "Encrypt Private Key" +msgstr "Cripta la chiave privata" + +#: src/js/controllers/backup.js +msgid "Encrypted backup file saved" +msgstr "Backup criptato salvato" + +#: public/views/includes/password.html +msgid "Enter your password" +msgstr "Inserisci la tua password" + +#: src/js/controllers/index.js +msgid "Error at Wallet Service" +msgstr "Errore del Wallet Service" + +#: src/js/services/profileService.js +msgid "Error creating wallet" +msgstr "Errore creazione portafoglio" + +#: src/js/services/profileService.js +msgid "Error importing wallet:" +msgstr "Errore importazione portafoglio:" + +#: public/views/modals/paypro.html +#: public/views/modals/txp-details.html +msgid "Expires" +msgstr "Scadenza" + +#: public/views/backup.html +msgid "Failed to create backup" +msgstr "Impossibile creare il backup" + +#: src/js/controllers/importLegacy.js +msgid "Failed to import wallets" +msgstr "Impossibile importare portafogli" + +#: public/views/create.html +msgid "Family vacation funds" +msgstr "Fondi vacanza di famiglia" + +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Fee" +msgstr "Tassa" + +#: public/views/modals/advancedSend.html +msgid "Fee Policy" +msgstr "Politica delle tasse" + +#: public/views/walletHome.html +msgid "Fee policy for this transaction" +msgstr "Commissioni per questa transazione" + +#. Get information of payment if using Payment Protocol +#: src/js/controllers/walletHome.js +msgid "Fetching Payment Information" +msgstr "Recuperando le informazioni del pagamento" + +#: public/views/translators.html +msgid "French" +msgstr "Francese" + +#: src/js/services/bwsError.js +msgid "Funds are locked by pending spend proposals" +msgstr "I fondi sono bloccati in attesa della proposta di pagamento" + +#: src/js/services/notificationsService.js +msgid "Funds received" +msgstr "Fondi ricevuti" + +#: public/views/splash.html +msgid "GET STARTED" +msgstr "INIZIA" + +#: public/views/modals/customized-amount.html +msgid "Generate QR Code" +msgstr "Genera un codice QR" + +#: public/views/walletHome.html +msgid "Generate new address" +msgstr "Genera un nuovo indirizzo" + +#: public/views/walletHome.html +msgid "Generating .csv file..." +msgstr "Genera un file .csv..." + +#: public/views/translators.html +msgid "German" +msgstr "Tedesco" + +#: public/views/modals/wallets.html +msgid "Getting address for wallet {{selectedWalletName}} ..." +msgstr "Ottengo l'indirizzo per il portafoglio {{selectedWalletName}}..." + +#: public/views/preferences.html +msgid "Global settings" +msgstr "Impostazioni Globali" + +#: public/views/disclaimer.html +msgid "Go back" +msgstr "Indietro" + +#: public/views/translators.html +msgid "Greek" +msgstr "Greco" + +#: public/views/import.html +msgid "Have a Backup from Copay v0.9?" +msgstr "Hai un Backup da Copay v0.9?" + +#: public/views/backup.html +#: public/views/create.html +#: public/views/join.html +#: public/views/walletHome.html +msgid "Hide advanced options" +msgstr "Nascondi opzioni avanzate" + +#: src/js/controllers/index.js +msgid "History" +msgstr "Storico" + +#: src/js/controllers/index.js +msgid "Home" +msgstr "Home" + +#: public/views/disclaimer.html +msgid "I affirm that I have read, understood, and agree with these terms." +msgstr "Affermo di aver letto, compreso e accettato questi termini." + +#: public/views/create.html +#: public/views/join.html +msgid "If not given, a secure key will be generated" +msgstr "Se non fornita, una chiave sicura sarà generata" + +#: public/views/importLegacy.html +msgid "Import" +msgstr "Importa" + +#: public/views/import.html +#: public/views/splash.html +msgid "Import backup" +msgstr "Importa backup" + +#: public/views/importLegacy.html +msgid "Import from the Cloud?" +msgstr "Importare dal Cloud?" + +#: public/views/import.html +msgid "Import here" +msgstr "Importare qui" + +#: public/views/add.html +msgid "Import wallet" +msgstr "Importa un portafoglio" + +#: public/views/import.html +msgid "Importing wallet..." +msgstr "Importando il portafoglio..." + +#: public/views/importLegacy.html +msgid "Importing..." +msgstr "Importando..." + +#: src/js/services/bwsError.js +msgid "Incorrect address network" +msgstr "Indirizzo della rete incorretto" + +#: src/js/services/bwsError.js +msgid "Insufficient funds" +msgstr "Fondi insufficienti" + +#: src/js/services/bwsError.js +msgid "Insufficient funds for fee" +msgstr "Fondi insufficienti per la commissione" + +#: public/views/walletHome.html +msgid "Invalid" +msgstr "Invalido" + +#: src/js/services/bwsError.js +msgid "Invalid address" +msgstr "Indirizzo non valido" + +#: src/js/controllers/copayers.js +msgid "Invitation to share a Copay Wallet" +msgstr "Invito a condividere un portafoglio Copay" + +#: public/views/translators.html +msgid "Italian" +msgstr "Italiano" + +#: public/views/translators.html +msgid "Japanese" +msgstr "Giapponese" + +#: public/views/create.html +#: public/views/join.html +msgid "John" +msgstr "John" + +#: public/views/join.html +msgid "Join" +msgstr "Unisciti" + +#: src/js/controllers/copayers.js +msgid "Join my Copay wallet. Here is the invitation code: {{secret}} You can download Copay for your phone or desktop at https://copay.io" +msgstr "Unisciti al mio portafoglio Copay. Ecco il codice di invito: {{secret}} Puoi scaricare Copay dal tuo telefono o computer da https://copay.io" + +#: public/views/add.html +msgid "Join shared wallet" +msgstr "Unisciti al portafoglio condiviso" + +#: public/views/join.html +msgid "Joining Wallet..." +msgstr "Unendo al portafoglio..." + +#: public/views/preferences.html +msgid "Language" +msgstr "Lingua" + +#: public/views/importLegacy.html +msgid "Learn more about Wallet Migration" +msgstr "Ulteriori informazioni sulla migrazione di portafoglio" + +#: src/js/services/bwsError.js +msgid "Locktime in effect. Please wait to create a new spend proposal" +msgstr "Locktime in effetto. Si prega di attendere per creare una nuova proposta di pagamento" + +#: src/js/services/bwsError.js +msgid "Locktime in effect. Please wait to remove this spend proposal" +msgstr "Locktime in effetto. Si prega di attendere per rimuovere questa proposta di pagamento" + +#: public/views/paymentUri.html +msgid "Make a payment to" +msgstr "Effettuare un pagamento a" + +#: public/views/create.html +#: public/views/join.html +msgid "Master extended private key" +msgstr "Chiave privata principale estesa" + +#: public/views/includes/copayers.html +#: public/views/modals/copayers.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Me" +msgstr "Io" + +#: public/views/modals/paypro.html +msgid "Memo" +msgstr "Nota" + +#: public/views/modals/tx-details.html +msgid "Merchant message" +msgstr "Messaggio commerciale" + +#: public/views/paymentUri.html +msgid "Message" +msgstr "Messaggio" + +#: public/views/walletHome.html +msgid "More" +msgstr "Di più" + +#: public/views/walletHome.html +msgid "Moved" +msgstr "Spostato" + +#: public/views/walletHome.html +msgid "Multisignature wallet" +msgstr "Portafoglio Multi-firma" + +#: public/views/walletHome.html +msgid "My Bitcoin address" +msgstr "Il mio indirizzo Bitcoin" + +#: public/views/paymentUri.html +msgid "Network" +msgstr "Network" + +#: src/js/services/bwsError.js +msgid "Network connection error" +msgstr "Errore di connessione alla rete" + +#: src/js/services/notificationsService.js +msgid "New Payment Proposal" +msgstr "Nuova proposta di pagamento" + +#: public/views/walletHome.html +msgid "No Private key" +msgstr "Nessuna chiave privata" + +#: public/views/walletHome.html +msgid "No transactions yet" +msgstr "Ancora nessuna transazione" + +#: src/js/services/feeService.js +msgid "Normal" +msgstr "Normale" + +#: src/js/services/bwsError.js +msgid "Not authorized" +msgstr "Non autorizzato" + +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html +msgid "Not valid" +msgstr "Non valido" + +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/modals/tx-details.html +msgid "Note" +msgstr "Nota" + +#: public/views/includes/alert.html +#: public/views/includes/password.html +msgid "OK" +msgstr "Ok" + +#: public/views/modals/tx-status.html +msgid "OKAY" +msgstr "OKAY" + +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Participants" +msgstr "Partecipanti" + +#: public/views/import.html +#: public/views/importLegacy.html +msgid "Password" +msgstr "Password" + +#: public/views/includes/password.html +msgid "Password cannot be recovered. Be sure to write it down" +msgstr "La password non può essere recuperata. Assicurati di averla scritta/salvata da qualche parte" + +#: src/js/services/profileService.js +msgid "Password needed" +msgstr "Password necessaria" + +#: src/js/controllers/password.js +msgid "Passwords do not match" +msgstr "Le passwords non corrispondono" + +#: public/views/join.html +msgid "Paste invitation here" +msgstr "Incolla qui l'invito" + +#: public/views/import.html +msgid "Paste the backup plain text code" +msgstr "Incolla qui il codice di backup" + +#: public/views/modals/paypro.html +msgid "Pay To" +msgstr "Paga A" + +#: public/views/modals/tx-status.html +msgid "Payment Accepted" +msgstr "Pagamento Accettato" + +#: public/views/modals/txp-details.html +msgid "Payment Proposal" +msgstr "Proposta di Pagamento" + +#: public/views/modals/tx-status.html +msgid "Payment Proposal Created" +msgstr "Proposta di Pagamento Creata" + +#: src/js/services/notificationsService.js +msgid "Payment Proposal Rejected" +msgstr "Proposta di Pagamento Rifiutata" + +#: src/js/services/notificationsService.js +msgid "Payment Proposal Rejected by Copayer" +msgstr "Proposta di Pagamento Rifiutata dai Copayers" + +#: src/js/services/notificationsService.js +msgid "Payment Proposal Signed by Copayer" +msgstr "Proposta di Pagamento Firmata dai Copayers" + +#: public/views/walletHome.html +msgid "Payment Proposals" +msgstr "Proposte di Pagamento" + +#: src/js/controllers/walletHome.js +msgid "Payment Protocol not supported on Chrome App" +msgstr "Proposta di Pagamento non supportata dall'applicazione Chrome" + +#: public/views/modals/tx-status.html +msgid "Payment Rejected" +msgstr "Pagamento Rifiutato" + +#: public/views/modals/tx-status.html +#: src/js/services/notificationsService.js +msgid "Payment Sent" +msgstr "Pagamento Inviato" + +#: public/views/modals/txp-details.html +msgid "Payment accepted..." +msgstr "Pagamento accettato..." + +#: public/views/modals/txp-details.html +msgid "Payment details" +msgstr "Dettagli pagamento" + +#: public/views/modals/txp-details.html +msgid "Payment finally rejected" +msgstr "Pagamento rifiutato" + +#: public/views/modals/paypro.html +msgid "Payment request" +msgstr "Richiesta di pagamento" + +#: public/views/modals/txp-details.html +msgid "Payment sent!" +msgstr "Pagamento inviato!" + +#: public/views/walletHome.html +msgid "Payment to" +msgstr "Pagamento a" + +#: public/views/walletHome.html +msgid "Pending Confirmation" +msgstr "In attesa di conferma" + +#: public/views/preferencesDeleteWallet.html +msgid "Permanently delete this wallet. THIS ACTION CANNOT BE REVERSED" +msgstr "Elimina definitivamente questo portafoglio. QUESTA AZIONE NON PUO' ESSERE INVERTITA" + +#: public/views/create.html +msgid "Personal Wallet" +msgstr "Portafoglio Personale" + +#: src/js/controllers/create.js +#: src/js/controllers/join.js +msgid "Please enter the required fields" +msgstr "Per favore completa i campi richiesti" + +#: src/js/services/bwsError.js +msgid "Please upgrade Copay to perform this action" +msgstr "Si prega di aggiornare Copay per eseguire questa azione" + +#: src/js/controllers/import.js +msgid "Please, select your backup file" +msgstr "Per favore, selezione il tuo file di backup" + +#: public/views/translators.html +msgid "Portuguese" +msgstr "Portoghese" + +#: public/views/walletHome.html +msgid "Preferences" +msgstr "Preferenze" + +#: src/js/controllers/backup.js +msgid "Preparing backup..." +msgstr "Preparando il backup..." + +#: src/js/services/feeService.js +msgid "Priority" +msgstr "Priorità" + +#: public/views/modals/customized-amount.html +msgid "QR Code" +msgstr "Codice QR" + +#: public/views/modals/scanner.html +msgid "QR-Scanner" +msgstr "QR-Scanner" + +#: src/js/controllers/index.js +msgid "Receive" +msgstr "Ricevi" + +#: public/views/walletHome.html +msgid "Received" +msgstr "Ricevuti" + +#: public/views/includes/output.html +#: public/views/includes/transaction.html +msgid "Recipients" +msgstr "Destinatari" + +#: public/views/walletHome.html +msgid "Reconnecting to Wallet Service..." +msgstr "Riconnessione al Servizio Portafoglio..." + +#: public/views/walletHome.html +msgid "Recreate" +msgstr "Ricrea" + +#: public/views/walletHome.html +msgid "Recreating Wallet..." +msgstr "Ricreando Portafoglio..." + +#: public/views/modals/txp-details.html +msgid "Reject" +msgstr "Rifiuta" + +#: src/js/controllers/walletHome.js +msgid "Rejecting payment" +msgstr "Rifiutando il pagamento" + +#: public/views/preferencesAbout.html +msgid "Release Information" +msgstr "Informazioni Release" + +#: public/views/backup.html +#: public/views/includes/password.html +msgid "Repeat password" +msgstr "Ripeti password" + +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html +msgid "Request a specific amount" +msgstr "Richiedi un importo specifico" + +#: public/views/import.html +#: public/views/join.html +msgid "Required" +msgstr "Richiesto" + +#: public/views/splash.html +msgid "Retrying..." +msgstr "Sto riprovando..." + +#: public/views/translators.html +msgid "Russian" +msgstr "Russo" + +#: public/views/includes/password.html +msgid "SET" +msgstr "IMPOSTA" + +#: public/views/walletHome.html +msgid "SKIP BACKUP" +msgstr "SALTA BACKUP" + +#: public/views/preferencesAlias.html +#: public/views/preferencesBwsUrl.html +#: public/views/preferencesEmail.html +msgid "Save" +msgstr "Salva" + +#: public/views/preferencesEmail.html +msgid "Saving preferences..." +msgstr "Sto salvando le preferenze..." + +#: src/js/services/notificationsService.js +msgid "Scan Finished" +msgstr "Scansione terminata" + +#: public/views/preferencesAdvanced.html +msgid "Scan addresses for funds" +msgstr "Scansione degli indirizzi per fondi" + +#: public/views/walletHome.html +msgid "Scan status finished with error" +msgstr "La scansione è terminata con un errore" + +#: public/views/walletHome.html +msgid "Scanning Wallet funds..." +msgstr "Scansione fondi Portafoglio..." + +#: public/views/modals/tx-details.html +msgid "See it on the blockchain" +msgstr "Guardala nella blockchain" + +#: public/views/import.html +msgid "Select a backup file" +msgstr "Seleziona un file di backup" + +#: public/views/paymentUri.html +msgid "Select a wallet" +msgstr "Selezionare un portafoglio" + +#: public/views/create.html +msgid "Select required number of signatures" +msgstr "Selezionare il numero necessario di firme" + +#: public/views/create.html +msgid "Select total number of copayers" +msgstr "Selezionare il numero totale di copayers" + +#: public/views/walletHome.html +#: public/views/includes/transaction.html +#: src/js/controllers/index.js +msgid "Send" +msgstr "Invia" + +#: public/views/walletHome.html +msgid "Send All" +msgstr "Invia tutto" + +#: public/views/backup.html +#: public/views/preferencesLogs.html +msgid "Send by email" +msgstr "Invia via email" + +#: public/views/walletHome.html +msgid "Sent" +msgstr "Inviato" + +#: public/views/importLegacy.html +msgid "Server" +msgstr "Server" + +#: public/views/preferencesAbout.html +msgid "Session log" +msgstr "Registro sessione" + +#: public/views/backup.html +msgid "Set up a Password for your backup" +msgstr "Imposta una password per il tuo backup" + +#: public/views/includes/password.html +msgid "Set up a password" +msgstr "Imposta una password" + +#: public/views/preferencesEmail.html +msgid "Setting up email notifications could weaken your privacy, if the wallet service provider is compromised. Information available to an attacker would include your wallet addresses and its balance, but no more." +msgstr "Impostando le notifiche e-mail potrebbe indebolire la tua privacy se il provider di servizio del portafoglio è compromesso. Le informazioni disponibili ad un utente malintenzionato potrebbero includere l'indirizzo del tuo portafoglio e il suo saldo, ma non di più." + +#: public/views/walletHome.html +msgid "Share address" +msgstr "Condividi l'indirizzo" + +#: public/views/copayers.html +msgid "Share invitation" +msgstr "Condividi l'invito" + +#: public/views/copayers.html +msgid "Share this invitation with your copayers" +msgstr "Condividi questo invito con i tuoi copayers" + +#: public/views/walletHome.html +msgid "Share this wallet address to receive payments. To protect your privacy, new addresses are generated automatically once you use them." +msgstr "Condividi questo indirizzo del portafoglio per ricevere pagamenti. Per proteggere la tua privacy, ad ogni utilizzo sono generati nuovi indirizzi." + +#: public/views/create.html +msgid "Shared Wallet" +msgstr "Portafoglio Condiviso" + +#: public/views/backup.html +#: public/views/create.html +#: public/views/join.html +#: public/views/walletHome.html +msgid "Show advanced options" +msgstr "Mostra opzioni avanzate" + +#: src/js/services/bwsError.js +msgid "Signatures rejected by server" +msgstr "Firme rifiutate dal server" + +#: src/js/controllers/walletHome.js +msgid "Signing payment" +msgstr "Sto firmando il pagamento" + +#: src/js/controllers/walletHome.js +msgid "Signing transaction" +msgstr "Sto firmando la transazione" + +#: public/views/translators.html +msgid "Spanish" +msgstr "Spagnolo" + +#: src/js/services/bwsError.js +msgid "Spend proposal is not accepted" +msgstr "La proposta di pagamento non è accettata" + +#: src/js/services/bwsError.js +msgid "Spend proposal not found" +msgstr "Proposta di pagamento non trovata" + +#: src/js/controllers/copayers.js +#: src/js/controllers/import.js +#: src/js/controllers/preferencesDelete.js +msgid "Success" +msgstr "Completato" + +#: public/views/walletHome.html +msgid "Tap to retry" +msgstr "Tocca per riprovare" + +#: public/views/disclaimer.html +#: public/views/preferencesAbout.html +msgid "Terms of Use" +msgstr "Termini di Utilizzo" + +#: public/views/create.html +msgid "Testnet" +msgstr "Testnet" + +#: src/js/controllers/walletHome.js +msgid "The payment was created but could not be completed. Please try again from home screen" +msgstr "Il pagamento è stato creato ma è stato impossibile completarlo. Per favore prova di nuovo dalla schermata iniziale" + +#: src/js/controllers/walletHome.js +msgid "The payment was created but could not be signed. Please try again from home screen" +msgstr "Il pagamento è stato creato ma è stato impossibile firmarlo. Per favore prova di nuovo dalla schermata iniziale" + +#: public/views/modals/txp-details.html +msgid "The payment was removed by creator" +msgstr "Il pagamento è stato rimosso dal creatore" + +#: src/js/controllers/walletHome.js +msgid "The payment was signed but could not be broadcasted. Please try again from home screen" +msgstr "Il pagamento è stato firmato ma non è stato possibile trasmetterlo. Per favore prova di nuovo dalla schermata principale" + +#: public/views/backup.html +msgid "The private key for this wallet is encrypted. Exporting a backup will keep the private key encrypted in the backup archive." +msgstr "La chiave privata di questo portafoglio è criptata. L'esportazione del backup manterrà la chiave privata criptata nell'archivio backup." + +#: public/views/disclaimer.html +msgid "The software you are about to use functions as a free, open source, and multi-signature digital wallet. The software does not constitute an account where BitPay or other third parties serve as financial intermediaries or custodians of your bitcoin. While the software has undergone beta testing and continues to be improved by feedback from the open-source user and developer community, we cannot guarantee that there will be no bugs in the software. You acknowledge that your use of this software is at your own discretion and in compliance with all applicable laws. You are responsible for safekeeping your passwords, private key pairs, PINs and any other codes you use to access the software. IF YOU LOSE ACCESS TO YOUR COPAY WALLET OR YOUR ENCRYPTED PRIVATE KEYS AND YOU HAVE NOT SEPARATELY STORED A BACKUP OF YOUR WALLET AND CORRESPONDING PASSWORD, YOU ACKNOWLEDGE AND AGREE THAT ANY BITCOIN YOU HAVE ASSOCIATED WITH THAT COPAY WALLET WILL BECOME INACCESSIBLE. All transaction requests are irreversible. The authors of the software, employees and affiliates of Bitpay, copyright holders, and BitPay, Inc. cannot retrieve your private keys or passwords if you lose or forget them and cannot guarantee transaction confirmation as they do not have control over the Bitcoin network. To the fullest extent permitted by law, this software is provided “as is” and no representations or warranties can be made of any kind, express or implied, including but not limited to the warranties of merchantability, fitness or a particular purpose and noninfringement. You assume any and all risks associated with the use of the software. In no event shall the authors of the software, employees and affiliates of Bitpay, copyright holders, or BitPay, Inc. be held liable for any claim, damages or other liability, whether in an action of contract, tort, or otherwise, arising from, out of or in connection with the software. We reserve the right to modify this disclaimer from time to time." +msgstr "Il software che stai per utilizzare è un portafoglio digitale gratis, open source, e multi-firma. Il software non costituisce un account in cui BitPay o altre terze parti servono come intermediari finanziari o custodi dei tuoi bitcoins. Anche se il software beta è stato testato e continua ad essere migliorato dai feedback dalla comunità open source e dai programmatori, non possiamo garantire la completa assenza di errori nel software. Sei consapevole che l'utilizzo di questo software avviene a tua discrezione e in accordo con tutte le leggi applicabili. Sei responsabile della gestione della tua password, chiavi private, PIN e tutti gli altri codici che utilizzi per accedere a questo portafoglio. SE PERDI L'ACCESSO AL TUO PORTAFOGLIO O ALLE TUE CHIAVI PRIVATE CRIPTATE, E NON POSSIEDI UN BACKUP DEL PORTAFOGLIO O DELLE PASSWORD CORRISPONDENTI, SEI CONSAPEVOLE DEL FATTO CHE OGNI BITCOIN ASSOCIATO AL TUO PORTAFOGLIO COPAY SARA' INACCESSIBILE. Tutte le richieste di transazione sono irreversibili. Gli autori del software, dipendenti e affiliati di BitPay, possessori del copyright, e BitPay, Inc., non possono recuperare le tue chiavi private o le tue passwords se le dimentichi o le perdi, e non possono garantire la conferma delle transazioni poichè non sono in controllo del Network Bitcoin. Nella misura massima consentita dalla legge, il software è reso disponibile \"così com'è\" e nessuna rappresentazione o richiesta di garanzia può essere inoltrata, espressa o implicita, comprese ma non limitato alle garanzie di commerciabilità, idoneità o a particolare scopo e non-infrazione. Ti assumi tutti i rischi relativi all'utilizzo del software. In nessuno caso gli autori del software, dipendenti o affiliati BitPay, possessori del Copyright, o BitPay, inc, sono responsabili di qualsiasi rivendicazioni, danni o responsabili di terzi, sia in un'azione di contratto, torto, o derivanti da, o i connessione con questo software. Ci riserviamo il diritto di modificare questi termini di volta in volta." + +#: src/js/services/bwsError.js +msgid "The spend proposal is not pending" +msgstr "La proposta di pagamento non è in sospeso" + +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +msgid "The wallet \"{{walletName}}\" was deleted" +msgstr "Il portafoglio {{walletName}} è stato eliminato" + +#: public/views/paymentUri.html +msgid "There are no wallets to make this payment" +msgstr "Non ci sono portafogli per effettuare questo pagamento" + +#: src/js/controllers/import.js +msgid "There is an error in the form" +msgstr "C'è un errore nel form" + +#: public/views/modals/tx-details.html +msgid "This transaction has become invalid; possibly due to a double spend attempt." +msgstr "Questa transazione è diventata invalida; forse a causa di un tentativo di doppia spesa." + +#: public/views/walletHome.html +msgid "This wallet is not registered at the given Bitcore Wallet Service (BWS). You can recreate it from the local information." +msgstr "Questo portafoglio non è registrato al Bitcore Wallet Service (BWS). Puoi ricrearlo dalle informazioni locali." + +#: public/views/modals/txp-details.html +msgid "Time" +msgstr "Tempo" + +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/includes/transaction.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "To" +msgstr "A" + +#: public/views/includes/output.html +msgid "Total" +msgstr "Totale" + +#: public/views/walletHome.html +msgid "Total Locked Balance" +msgstr "Totale Importo Bloccato" + +#: public/views/modals/tx-details.html +msgid "Transaction" +msgstr "Transazione" + +#: src/js/services/bwsError.js +msgid "Transaction already broadcasted" +msgstr "Transazione già trasmessa" + +#: public/views/translators.html +msgid "Translation Credits" +msgstr "Ringraziamenti per la traduzione" + +#: public/views/preferencesAbout.html +msgid "Translators" +msgstr "Traduttori" + +#: src/js/controllers/walletHome.js +msgid "Unable to send transaction proposal" +msgstr "Impossibile inviare la proposta di transazione" + +#: public/views/walletHome.html +#: public/views/modals/tx-details.html +msgid "Unconfirmed" +msgstr "Non confermato" + +#: public/views/preferences.html +msgid "Unit" +msgstr "Unità" + +#: public/views/walletHome.html +msgid "Unsent transactions" +msgstr "Transazioni non inviate" + +#: public/views/modals/paypro.html +msgid "Untrusted" +msgstr "Non attendibile" + +#: public/views/walletHome.html +msgid "Updating Wallet..." +msgstr "Aggiornamento portafoglio..." + +#: public/views/preferences.html +#: public/views/walletHome.html +msgid "Use Unconfirmed Funds" +msgstr "Usa i fondi non confermati" + +#: public/views/preferencesAbout.html +msgid "Version" +msgstr "Versione" + +#: public/views/backup.html +msgid "View backup" +msgstr "Visualizza il backup" + +#: public/views/walletHome.html +msgid "WARNING: Backup needed" +msgstr "AVVISO: Backup necessario" + +#: public/views/walletHome.html +msgid "WARNING: Wallet not registered" +msgstr "AVVISO: Portafoglio non registrato" + +#: public/views/splash.html +msgid "WELCOME TO COPAY" +msgstr "BENVENUTO A COPAY" + +#: public/views/copayers.html +msgid "Waiting for copayers" +msgstr "In attesa di copayers" + +#: public/views/copayers.html +msgid "Waiting..." +msgstr "In attesa..." + +#: public/views/preferences.html +msgid "Wallet Alias" +msgstr "Alias Portafoglio" + +#: src/js/services/profileService.js +msgid "Wallet Already Imported:" +msgstr "Portafoglio già importato:" + +#: public/views/join.html +msgid "Wallet Invitation" +msgstr "Invito Portafoglio" + +#: public/views/join.html +msgid "Wallet Invitation is not valid!" +msgstr "Invito Portafoglio non valido!" + +#: src/js/services/bwsError.js +#: src/js/services/profileService.js +msgid "Wallet already exists" +msgstr "Il portafoglio esiste già" + +#: public/views/copayers.html +msgid "Wallet incomplete and broken" +msgstr "Portafoglio incompleto e danneggiato" + +#: src/js/services/bwsError.js +msgid "Wallet is full" +msgstr "Portafoglio è pieno" + +#: src/js/services/bwsError.js +msgid "Wallet is not complete" +msgstr "Portafoglio non è completo" + +#: public/views/create.html +msgid "Wallet name" +msgstr "Nome Portafoglio" + +#: src/js/services/bwsError.js +msgid "Wallet not found" +msgstr "Portafoglio non trovato" + +#: src/js/services/bwsError.js +msgid "Wallet service not found" +msgstr "Wallet service non trovato" + +#: public/views/preferencesDeleteWallet.html +msgid "Warning!" +msgstr "Attenzione!" + +#: public/views/modals/txp-details.html +msgid "Warning: this transaction has unconfirmed inputs" +msgstr "Attenzione: questa transazione ha inputs non confermati" + +#: src/js/services/profileService.js +msgid "Wrong password" +msgstr "Password sbagliata" + +#: public/views/modals/confirmation.html +msgid "Yes" +msgstr "Sì" + +#: public/views/walletHome.html +msgid "You do not have a wallet" +msgstr "Non hai un portafoglio" + +#: public/views/backup.html +#: public/views/import.html +msgid "Your backup password" +msgstr "La tua password di backup" + +#: public/views/create.html +#: public/views/join.html +msgid "Your nickname" +msgstr "Il tuo nickname" + +#: public/views/includes/password.html +msgid "Your password" +msgstr "La tua password" + +#: public/views/importLegacy.html +msgid "Your profile password" +msgstr "La tua password del profilo" + +#: src/js/controllers/import.js +msgid "Your wallet has been imported correctly" +msgstr "Il tuo portafoglio è stato importato correttamente" + +#: public/views/preferencesEmail.html +msgid "email for wallet notifications" +msgstr "indirizzo email per le notifiche del portafoglio" + +#: public/views/walletHome.html +msgid "locked by pending payments" +msgstr "bloccati da pagamenti in sospeso" + +#: public/views/copayers.html +#: public/views/walletHome.html +#: public/views/includes/sidebar.html +msgid "of" +msgstr "di" + +#: public/views/walletHome.html +msgid "optional" +msgstr "opzionale" + +#: public/views/preferences.html +msgid "settings" +msgstr "impostazioni" + +#: public/views/walletHome.html +msgid "too long!" +msgstr "troppo lungo!" + +#: src/js/controllers/walletHome.js +msgid "{{fee}} will be discounted for bitcoin networking fees" +msgstr "{{fee}} verranno scalati come commissione del Network Bitcoin" + +#: src/js/controllers/importLegacy.js +msgid "{{len}} wallets imported. Funds scanning in progress. Hold on to see updated balance" +msgstr "{{len}} portafogli importati. Scansione fondi in corso. Aspetta per vedere il bilancio aggiornato" + diff --git a/po/ja.po b/i18n/po/ja.po similarity index 50% rename from po/ja.po rename to i18n/po/ja.po index b4c873b3f..c319bf3ed 100644 --- a/po/ja.po +++ b/i18n/po/ja.po @@ -1,34 +1,34 @@ msgid "" msgstr "" -"Project-Id-Version: Copay\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: dabura667\n" -"Language: ja\n" -"MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Project-Id-Version: copay\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 1.6.4\n" +"X-Generator: crowdin.com\n" +"X-Crowdin-Project: copay\n" +"X-Crowdin-Language: ja\n" +"X-Crowdin-File: template.pot\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Last-Translator: cmgustavo83\n" +"Language-Team: Japanese\n" +"Language: ja\n" +"PO-Revision-Date: 2015-08-15 11:27-0400\n" + +#: public/views/walletHome.html +msgid "(possible double spend)" +msgstr "(二重払い可能性あり)" #: public/views/modals/txp-details.html -msgid "" -"* A payment proposal can be deleted if 1) you are the creator, and no other " -"copayer has signed, or 2) 24 hours have passed since the proposal was " -"created." -msgstr "" -"* 送金の提案の取下げは①他のウォレット参加者に署名されていなかった場合、提案者" -"に提案を取り下げることができます。②提案の起案から24時間が経っても解決しなかっ" -"た場合、全員に取り下げることができます。" +msgid "* A payment proposal can be deleted if 1) you are the creator, and no other copayer has signed, or 2) 24 hours have passed since the proposal was created." +msgstr "* 送金の提案の取下げは①他のウォレット参加者に署名されていなかった場合、提案者に提案を取り下げることができます。②提案の起案から24時間が経っても解決しなかった場合、全員に取り下げることができます。" #: public/views/backup.html -msgid "" -"* You can safely install your backup on another device and use your wallet " -"from multiple devices at the same time." -msgstr "" -"* 安全にバックアップを別のデバイスにインポートして、同じウォレットを複数の端" -"末でご利用いただけます。" +msgid "* You can safely install your backup on another device and use your wallet from multiple devices at the same time." +msgstr "* 安全にバックアップを別のデバイスにインポートして、同じウォレットを複数の端末でご利用いただけます。" + +#: public/views/backup.html +msgid "A backup without its private key will allow the user to see the wallet balance, transactions, and create spend proposals. However, it will not be able to approve (sign) proposals." +msgstr "秘密鍵なしのバックアップでは、残高の確認、取引履歴の確認、送金の提案ができます。しかし、送金の提案を承諾 (署名) できません。" #: public/views/splash.html msgid "A multisignature bitcoin wallet" @@ -39,6 +39,9 @@ msgid "About Copay" msgstr "Copayについて" #: public/views/modals/txp-details.html +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js msgid "Accept" msgstr "承諾" @@ -46,7 +49,8 @@ msgstr "承諾" msgid "Add wallet" msgstr "ウォレットを追加" -#: public/views/paymentUri.html public/views/modals/customized-amount.html +#: public/views/paymentUri.html +#: public/views/modals/customized-amount.html #: public/views/modals/paypro.html msgid "Address" msgstr "アドレス" @@ -55,6 +59,10 @@ msgstr "アドレス" msgid "Advanced" msgstr "上級者向け" +#: public/views/modals/advancedSend.html +msgid "Advanced Send" +msgstr "上級者向け送金" + #: public/views/disclaimer.html msgid "Agree" msgstr "同意します" @@ -63,6 +71,10 @@ msgstr "同意します" msgid "Alias for {{index.walletName}}" msgstr "{{index.walletName}} の通称設定" +#: public/views/translators.html +msgid "All contributions to Copay's translation are welcome. Sign up at crowdin.com and join the Copay project at" +msgstr "Copayの翻訳は簡単に投稿することができます。crowdin.comのアカウント作成の後、自由にご参加いただけるプロジェクトページはこちら" + #: public/views/splash.html msgid "Already have a wallet?" msgstr "すでにウォレットをお持ちですか?" @@ -71,13 +83,19 @@ msgstr "すでにウォレットをお持ちですか?" msgid "Alternative Currency" msgstr "表示通貨" -#: public/views/paymentUri.html public/views/walletHome.html +#: public/views/paymentUri.html +#: public/views/walletHome.html +#: public/views/includes/output.html #: public/views/modals/customized-amount.html -#: public/views/modals/txp-details.html msgid "Amount" msgstr "金額" -#: public/views/walletHome.html public/views/modals/customized-amount.html +#: src/js/services/bwsError.js +msgid "Amount below dust threshold" +msgstr "最小送金額を下回っています。" + +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html msgid "Amount in" msgstr "換算済金額" @@ -85,21 +103,28 @@ msgstr "換算済金額" msgid "Applying changes" msgstr "変更を反映" -#: src/js/controllers/copayers.js src/js/controllers/preferencesDelete.js +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js msgid "Are you sure you want to delete this wallet?" -msgstr "" -"本当にこのウォレットを削除しても\n" +msgstr "本当にこのウォレットを削除しても\n" "宜しいですか?" #: public/views/walletHome.html msgid "Available Balance" msgstr "送金可能残高" -#: public/views/create.html public/views/join.html +#: public/views/preferencesFee.html +#: public/views/modals/advancedSend.html +msgid "Average confirmation time: {{fee.nbBlocks * 10}} minutes" +msgstr "承認までの時間(平均): {{fee.nbBlocks * 10}} 分" + +#: public/views/create.html +#: public/views/join.html msgid "BIP32 master extended private key" msgstr "マスタ拡張秘密鍵" -#: public/views/includes/topbar.html public/views/modals/tx-details.html +#: public/views/includes/topbar.html +#: public/views/modals/tx-details.html #: public/views/modals/txp-details.html msgid "Back" msgstr "戻る" @@ -120,12 +145,13 @@ msgstr "今すぐバックアップ" msgid "Backup options" msgstr "バックアップ設定" +#: src/js/services/profileService.js +msgid "Bad wallet invitation" +msgstr "不正なウォレット招待コード" + #: public/views/walletHome.html -msgid "" -"Before receiving funds, it is highly recommended you backup your wallet keys." -msgstr "" -"ビットコインをもらう前に、このウォレットのバックアップすることを強くおすすめ" -"します。" +msgid "Before receiving funds, it is highly recommended you backup your wallet keys." +msgstr "ビットコインをもらう前に、このウォレットのバックアップすることを強くおすすめします。" #: public/views/preferences.html msgid "Bitcoin Network Fee Policy" @@ -140,16 +166,8 @@ msgid "Bitcoin address" msgstr "ビットコインアドレス" #: public/views/preferencesFee.html -msgid "" -"Bitcoin transactions may include a fee collected by miners on the network. " -"The higher the fee, the greater the incentive a miner has to include that " -"transaction in a block. The ‘Emergency’ level should only be used when there " -"is a network congestion." -msgstr "" -"円滑な送金をしていただくために、ビットコインの送金には少量の手数料を付けるこ" -"とが義務付けられております。この手数料はビットコインのネットワークを運用する" -"人たちに寄付され、より高い手数料であればより優先的にブロックに含まれ、承認さ" -"れます。「緊急」の設定はネットワーク全体の混雑時にのみご利用下さい。" +msgid "Bitcoin transactions may include a fee collected by miners on the network. The higher the fee, the greater the incentive a miner has to include that transaction in a block. Actual fees are determined based on network load and the selected policy." +msgstr "円滑な送金をしていただくために、ビットコインの送金には少量の手数料を付けることが義務付けられております。この手数料はビットコインのネットワークを運用する人たちに寄付され、より高い手数料であればより優先的にブロックに含まれ、承認されます。選択された手数料基準やネットワークの混雑状況により、実際に払われる手数料が変動することがあります。" #: public/views/modals/txp-details.html msgid "Broadcast Payment" @@ -175,10 +193,19 @@ msgstr "しかし未送信です。手動で送信してみて下さい。" msgid "CANCEL" msgstr "キャンセル" -#: public/views/copayers.html public/views/walletHome.html +#: public/views/copayers.html +#: public/views/walletHome.html +#: public/views/modals/confirmation.html +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js msgid "Cancel" msgstr "キャンセル" +#: src/js/services/profileService.js +msgid "Cannot join the same wallet more that once" +msgstr "同じ端末で同じウォレットに複数回参加することができません。" + #: public/views/modals/paypro.html msgid "Certified by" msgstr "証明元:" @@ -187,10 +214,6 @@ msgstr "証明元:" msgid "Changing wallet alias only affects the local wallet name." msgstr "ウォレット通称を変更しても、この端末でしか変わりません。" -#: src/js/controllers/walletHome.js -msgid "Check you connection and try again" -msgstr "接続を確認し、やり直して下さい。" - #: public/views/import.html msgid "Choose a backup file from your computer" msgstr "パソコンからバックアップファイルを選択して下さい。" @@ -199,9 +222,13 @@ msgstr "パソコンからバックアップファイルを選択して下さい msgid "Choose a wallet to send funds" msgstr "送金元のウォレットを選択して下さい" -#: public/views/includes/topbar.html public/views/modals/copayers.html -#: public/views/modals/customized-amount.html public/views/modals/paypro.html -#: public/views/modals/scanner.html public/views/modals/wallets.html +#: public/views/includes/topbar.html +#: public/views/modals/advancedSend.html +#: public/views/modals/copayers.html +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +#: public/views/modals/scanner.html +#: public/views/modals/wallets.html msgid "Close" msgstr "閉じる" @@ -213,47 +240,69 @@ msgstr "色" msgid "Commit hash" msgstr "コミットのハッシュ値" +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Confirm" +msgstr "確認" + #: public/views/modals/tx-details.html msgid "Confirmations" msgstr "承認回数" +#: src/js/services/bwsError.js +msgid "Copayer already in this wallet" +msgstr "ウォレット参加者が既に存在しています。" + +#: src/js/services/bwsError.js +msgid "Copayer already registered" +msgstr "ウォレット参加者が既に登録されています。" + +#: src/js/services/bwsError.js +msgid "Copayer already voted on this spend proposal" +msgstr "ウォレット参加者が既に送金の提案の意思表明をしています。" + +#: src/js/services/bwsError.js +msgid "Copayer data mismatch" +msgstr "ウォレット参加者のデータ不整合" + #: public/views/modals/copayers.html msgid "Copayers" msgstr "ウォレット参加者" +#: src/js/controllers/backup.js +#: src/js/controllers/copayers.js +#: src/js/controllers/walletHome.js +msgid "Copied to clipboard" +msgstr "クリップボードにコピーしました" + #: public/views/backup.html msgid "Copy backup to a safe place" msgstr "安全な場所でバックアップを保管して下さい" #: public/views/backup.html msgid "Copy this text as it is to a safe place (notepad or email)" -msgstr "" -"このテキストを安全な場所に貼り付けて保管して下さい (メモ帳やメールの下書きな" -"ど)" +msgstr "このテキストを安全な場所に貼り付けて保管して下さい (メモ帳やメールの下書きなど)" #: public/views/backup.html msgid "Copy to clipboard" msgstr "クリップボードへコピー" #: src/js/controllers/walletHome.js -msgid "Could not accept payment. Check you connection and try again" -msgstr "送金の提案が承諾できませんでした。接続を確認し、やり直して下さい。" +msgid "Could not accept payment" +msgstr "送金を承認できませんでした。" + +#: src/js/controllers/index.js +msgid "Could not access Wallet Service: Not found" +msgstr "Wallet Serviceにアクセスできませんでした: 見つかりません" #: src/js/controllers/walletHome.js -msgid "Could not broadcast payment. Check you connection and try again" -msgstr "送金できませんでした。接続を確認し、やり直して下さい。" +msgid "Could not broadcast payment" +msgstr "送金を配信できませんでした。" -#: src/js/controllers/walletHome.js -msgid "" -"Could not connect wallet service. Check your Internet connexion and your " -"wallet service configuration." -msgstr "" -"ウォレットサービスと接続できませんでした。インターネットの接続とウォレット" -"サービスの設定を確認して下さい。" - -#: src/js/controllers/walletHome.js -msgid "Could not create address. Check you connection and try again" -msgstr "アドレスが生成できませんでした。接続を確認し、やり直して下さい。" +#: src/js/services/addressService.js +msgid "Could not create address" +msgstr "アドレスを生成できませんでした。" #: src/js/controllers/walletHome.js msgid "Could not create payment proposal" @@ -268,8 +317,8 @@ msgid "Could not decrypt file, check your password" msgstr "複合化できませんでした。パスワードが正しいかご確認下さい。" #: src/js/controllers/walletHome.js -msgid "Could not delete payment proposal. Check you connection and try again" -msgstr "送金の提案が削除できませんでした。接続を確認し、やり直して下さい。" +msgid "Could not delete payment proposal" +msgstr "送金の提案を削除できませんでした" #: src/js/controllers/walletHome.js msgid "Could not fetch payment information" @@ -281,26 +330,29 @@ msgstr "取引履歴を取得できませんでした。" #: src/js/services/profileService.js msgid "Could not import. Check input file and password" -msgstr "" -"インポートできませんでした。入力ファイルとパスワードが正しいかご確認下さい。" +msgstr "インポートできませんでした。入力ファイルとパスワードが正しいかご確認下さい。" #: src/js/services/profileService.js msgid "Could not join using the specified extended private key" msgstr "指定された拡張秘密鍵で参加できませんでした。" -#: src/js/controllers/join.js -msgid "Could not join wallet:" +#: src/js/services/profileService.js +msgid "Could not join wallet" msgstr "ウォレットに参加できませんでした。" #: src/js/controllers/walletHome.js -msgid "Could not reject payment. Check you connection and try again" -msgstr "送金の提案を却下できませんでした。接続を確認し、やり直して下さい。" +msgid "Could not recognize a valid Bitcoin QR Code" +msgstr "有効なビットコインQRコードが認識できませんでした。" + +#: src/js/controllers/walletHome.js +msgid "Could not reject payment" +msgstr "送金を却下できませんでした。" #: src/js/controllers/walletHome.js msgid "Could not send payment" msgstr "送金できませんでした。" -#: public/views/walletHome.html +#: src/js/controllers/index.js msgid "Could not update Wallet" msgstr "ウォレットが更新できませんでした。" @@ -308,7 +360,8 @@ msgstr "ウォレットが更新できませんでした。" msgid "Create" msgstr "作成" -#: public/views/add.html public/views/create.html +#: public/views/add.html +#: public/views/create.html msgid "Create new wallet" msgstr "新規ウォレット作成" @@ -336,6 +389,11 @@ msgstr "ウォレット作成中…" msgid "Creating transaction" msgstr "取引作成中…" +#: public/views/preferencesFee.html +#: public/views/modals/advancedSend.html +msgid "Current fee rate for this policy: {{fee.feePerKBUnit}}/kiB" +msgstr "この手数料基準の現レート: {{fee.feePerKBUnit}}/kiB" + #: public/views/modals/tx-details.html msgid "Date" msgstr "日付" @@ -360,28 +418,34 @@ msgstr "ウォレットを削除" msgid "Deleting payment" msgstr "取引削除中…" -#: public/views/modals/customized-amount.html public/views/modals/paypro.html -#: public/views/modals/tx-details.html public/views/modals/txp-details.html +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html msgid "Details" msgstr "詳細" -#: src/js/controllers/index.js -msgid "Deutsch" -msgstr "ドイツ語" - #: public/views/preferences.html msgid "Disabled" msgstr "無効" +#: public/views/backup.html +msgid "Do not include private key in backup" +msgstr "バックアップに秘密鍵を含めない" + +#: public/views/translators.html +msgid "Don't see your language on Crowdin? Contact the Owner on Crowdin! We'd love to support your language." +msgstr "ご自分の言語はCrowdinで見当たりませんか?Crowdinの管理者に連絡とってみてください。是非とも対応したく思っております。" + +#: public/views/walletHome.html +msgid "Download CSV file" +msgstr "CSVファイルをダウンロード" + #: public/views/backup.html msgid "Download backup" msgstr "バックアップをダウンロード" -#: public/views/includes/password.html -msgid "ENTER" -msgstr "ENTER" - -#: src/js/controllers/preferencesFee.js +#: src/js/services/feeService.js msgid "Economy" msgstr "節約" @@ -389,10 +453,6 @@ msgstr "節約" msgid "Email Notifications" msgstr "メールのお知らせ" -#: src/js/controllers/preferencesFee.js -msgid "Emergency" -msgstr "緊急" - #: public/views/preferences.html msgid "Encrypt Private Key" msgstr "秘密鍵を暗号化" @@ -401,30 +461,31 @@ msgstr "秘密鍵を暗号化" msgid "Encrypted backup file saved" msgstr "暗号化されたバックアップ保存しました" -#: src/js/controllers/index.js -msgid "English" -msgstr "英語" - #: public/views/includes/password.html msgid "Enter your password" msgstr "パスワードを入力して下さい。" +#: src/js/controllers/index.js +msgid "Error at Wallet Service" +msgstr "Wallet Serviceにてエラー" + #: src/js/services/profileService.js msgid "Error creating wallet" msgstr "ウォレット作成時にエラー" -#: src/js/services/profileService.js -msgid "Error creating wallet. Check your internet connection" -msgstr "ウォレット作成時にエラー発生、インターネットの接続をご確認下さい。" - #: src/js/services/profileService.js msgid "Error importing wallet:" -msgstr "ウォレットインポート時にエラー" +msgstr "ウォレットインポート時にエラー:" -#: public/views/modals/paypro.html public/views/modals/txp-details.html +#: public/views/modals/paypro.html +#: public/views/modals/txp-details.html msgid "Expires" msgstr "有効期限:" +#: public/views/backup.html +msgid "Failed to create backup" +msgstr "バックアップに失敗しました。" + #: src/js/controllers/importLegacy.js msgid "Failed to import wallets" msgstr "ウォレットのインポート失敗しました" @@ -433,19 +494,32 @@ msgstr "ウォレットのインポート失敗しました" msgid "Family vacation funds" msgstr "家族旅行貯金" +#: public/views/modals/tx-details.html #: public/views/modals/txp-details.html msgid "Fee" msgstr "手数料" +#: public/views/modals/advancedSend.html +msgid "Fee Policy" +msgstr "手数料基準" + +#: public/views/walletHome.html +msgid "Fee policy for this transaction" +msgstr "当取引の手数料基準" + #. Get information of payment if using Payment Protocol #: src/js/controllers/walletHome.js msgid "Fetching Payment Information" msgstr "支払い情報要求しています…" -#: src/js/controllers/index.js +#: public/views/translators.html msgid "French" msgstr "フランス語" +#: src/js/services/bwsError.js +msgid "Funds are locked by pending spend proposals" +msgstr "協議中の送金の提案により、資金がロックされています。" + #: src/js/services/notificationsService.js msgid "Funds received" msgstr "着金あり" @@ -462,6 +536,14 @@ msgstr "QRコードを生成" msgid "Generate new address" msgstr "新規アドレスを生成" +#: public/views/walletHome.html +msgid "Generating .csv file..." +msgstr "CSVファイル作成中…" + +#: public/views/translators.html +msgid "German" +msgstr "ドイツ語" + #: public/views/modals/wallets.html msgid "Getting address for wallet {{selectedWalletName}} ..." msgstr "「{{selectedWalletName}}」のアドレスを取得中…" @@ -474,13 +556,20 @@ msgstr "グローバル設定" msgid "Go back" msgstr "前に戻る" +#: public/views/translators.html +msgid "Greek" +msgstr "ギリシャ語" + #: public/views/import.html msgid "Have a Backup from Copay v0.9?" msgstr "Copay v0.9 のバックアップをお持ちですか?" -#: public/views/create.html public/views/join.html -msgid "Hide Advanced options" -msgstr "詳細設定 非表示" +#: public/views/backup.html +#: public/views/create.html +#: public/views/join.html +#: public/views/walletHome.html +msgid "Hide advanced options" +msgstr "詳細設定を非表示" #: src/js/controllers/index.js msgid "History" @@ -494,7 +583,8 @@ msgstr "ホーム" msgid "I affirm that I have read, understood, and agree with these terms." msgstr "内容をよく読み、理解し、同意します。" -#: public/views/create.html public/views/join.html +#: public/views/create.html +#: public/views/join.html msgid "If not given, a secure key will be generated" msgstr "空欄の場合、安全な鍵を生成します。" @@ -502,7 +592,8 @@ msgstr "空欄の場合、安全な鍵を生成します。" msgid "Import" msgstr "インポート" -#: public/views/import.html public/views/splash.html +#: public/views/import.html +#: public/views/splash.html msgid "Import backup" msgstr "バックアップをインポート" @@ -526,11 +617,40 @@ msgstr "ウォレットインポート中…" msgid "Importing..." msgstr "インポート中…" -#: src/js/controllers/index.js +#: src/js/services/bwsError.js +msgid "Incorrect address network" +msgstr "アドレスのネットワークが不正です。" + +#: src/js/services/bwsError.js +msgid "Insufficient funds" +msgstr "残高不足" + +#: src/js/services/bwsError.js +msgid "Insufficient funds for fee" +msgstr "手数料付けるには残高が足りません" + +#: public/views/walletHome.html +msgid "Invalid" +msgstr "無効" + +#: src/js/services/bwsError.js +msgid "Invalid address" +msgstr "不正アドレス" + +#: src/js/controllers/copayers.js +msgid "Invitation to share a Copay Wallet" +msgstr "Copay共有ウォレットへの招待" + +#: public/views/translators.html +msgid "Italian" +msgstr "イタリア語" + +#: public/views/translators.html msgid "Japanese" msgstr "日本語" -#: public/views/create.html public/views/join.html +#: public/views/create.html +#: public/views/join.html msgid "John" msgstr "山田太郎" @@ -538,6 +658,10 @@ msgstr "山田太郎" msgid "Join" msgstr "参加" +#: src/js/controllers/copayers.js +msgid "Join my Copay wallet. Here is the invitation code: {{secret}} You can download Copay for your phone or desktop at https://copay.io" +msgstr "Copayの共有ウォレット作りました: {{secret}} この招待コードを入力して、ウォレットに参加して下さい。アプリのダウンロードは https://copay.io にてどうぞ!" + #: public/views/add.html msgid "Join shared wallet" msgstr "共有ウォレットに参加" @@ -554,16 +678,27 @@ msgstr "言語設定" msgid "Learn more about Wallet Migration" msgstr "ウォレット移行について詳しく" +#: src/js/services/bwsError.js +msgid "Locktime in effect. Please wait to create a new spend proposal" +msgstr "Locktime待ち中です。新しい送金の提案が作成できるまであとしばらくお待ち下さい。" + +#: src/js/services/bwsError.js +msgid "Locktime in effect. Please wait to remove this spend proposal" +msgstr "Locktime待ち中です。この送金の提案が削除できるまであとしばらくお待ち下さい。" + #: public/views/paymentUri.html msgid "Make a payment to" msgstr "支払いは次の宛先へ" -#: public/views/create.html public/views/join.html +#: public/views/create.html +#: public/views/join.html msgid "Master extended private key" msgstr "マスタ拡張秘密鍵" -#: public/views/includes/copayers.html public/views/modals/copayers.html -#: public/views/modals/tx-details.html public/views/modals/txp-details.html +#: public/views/includes/copayers.html +#: public/views/modals/copayers.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html msgid "Me" msgstr "自分" @@ -599,48 +734,63 @@ msgstr "私のビットコインアドレス:" msgid "Network" msgstr "ネットワーク" +#: src/js/services/bwsError.js +msgid "Network connection error" +msgstr "ネットワーク接続エラー" + #: src/js/services/notificationsService.js msgid "New Payment Proposal" msgstr "新しい送金の提案" -#: public/views/modals/confirmation.html -msgid "No" -msgstr "いいえ" +#: public/views/walletHome.html +msgid "No Private key" +msgstr "秘密鍵なし" #: public/views/walletHome.html msgid "No transactions yet" msgstr "取引がありません" -#: src/js/controllers/preferencesFee.js +#: src/js/services/feeService.js msgid "Normal" msgstr "通常" -#: public/views/walletHome.html public/views/modals/customized-amount.html +#: src/js/services/bwsError.js +msgid "Not authorized" +msgstr "権限がありません。" + +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html msgid "Not valid" msgstr "無効です" -#: public/views/walletHome.html public/views/modals/tx-details.html -#: public/views/modals/txp-details.html +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/modals/tx-details.html msgid "Note" msgstr "メモ" +#: public/views/includes/alert.html +#: public/views/includes/password.html +msgid "OK" +msgstr "OK" + #: public/views/modals/tx-status.html msgid "OKAY" msgstr "OK" -#: public/views/modals/tx-details.html public/views/modals/txp-details.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html msgid "Participants" msgstr "参加者" -#: public/views/import.html public/views/importLegacy.html +#: public/views/import.html +#: public/views/importLegacy.html msgid "Password" msgstr "パスワード" #: public/views/includes/password.html msgid "Password cannot be recovered. Be sure to write it down" -msgstr "" -"Copayではパスワードをリセットしてくれる機能がありませんので、パスワードを忘れ" -"ないよう、控えておいて下さい。" +msgstr "Copayではパスワードをリセットしてくれる機能がありませんので、パスワードを忘れないよう、控えておいて下さい。" #: src/js/services/profileService.js msgid "Password needed" @@ -698,7 +848,8 @@ msgstr "クロームのアプリではペイメントプロトコールがサポ msgid "Payment Rejected" msgstr "送金が却下されました" -#: public/views/modals/tx-status.html src/js/services/notificationsService.js +#: public/views/modals/tx-status.html +#: src/js/services/notificationsService.js msgid "Payment Sent" msgstr "送金が完了しました" @@ -726,25 +877,33 @@ msgstr "支払いを送信しました!" msgid "Payment to" msgstr "支払い先" +#: public/views/walletHome.html +msgid "Pending Confirmation" +msgstr "承認待ち" + #: public/views/preferencesDeleteWallet.html msgid "Permanently delete this wallet. THIS ACTION CANNOT BE REVERSED" -msgstr "" -"永久にこのウォレットを削除します。\n" +msgstr "永久にこのウォレットを削除します。\n" "二度と取り戻せない行為ですのどご注意下さい。" #: public/views/create.html msgid "Personal Wallet" msgstr "個人用ウォレット" -#: src/js/controllers/create.js src/js/controllers/join.js +#: src/js/controllers/create.js +#: src/js/controllers/join.js msgid "Please enter the required fields" msgstr "必須項目をご入力下さい" +#: src/js/services/bwsError.js +msgid "Please upgrade Copay to perform this action" +msgstr "この操作を実行するにはCopayを最新バージョンに更新してください" + #: src/js/controllers/import.js msgid "Please, select your backup file" msgstr "バックアップファイルを選択" -#: src/js/controllers/index.js +#: public/views/translators.html msgid "Portuguese" msgstr "ポルトガル語" @@ -752,7 +911,11 @@ msgstr "ポルトガル語" msgid "Preferences" msgstr "設定" -#: src/js/controllers/preferencesFee.js +#: src/js/controllers/backup.js +msgid "Preparing backup..." +msgstr "バックアップを準備中..." + +#: src/js/services/feeService.js msgid "Priority" msgstr "優先" @@ -772,6 +935,11 @@ msgstr "受取" msgid "Received" msgstr "受取済み" +#: public/views/includes/output.html +#: public/views/includes/transaction.html +msgid "Recipients" +msgstr "受取人" + #: public/views/walletHome.html msgid "Reconnecting to Wallet Service..." msgstr "Wallet Serviceへ再接続しています…" @@ -796,15 +964,18 @@ msgstr "送金の提案却下中" msgid "Release Information" msgstr "リリース情報" -#: public/views/backup.html public/views/includes/password.html +#: public/views/backup.html +#: public/views/includes/password.html msgid "Repeat password" msgstr "パスワードを再入力" -#: public/views/walletHome.html public/views/modals/customized-amount.html +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html msgid "Request a specific amount" msgstr "指定金額を要求" -#: public/views/import.html public/views/join.html +#: public/views/import.html +#: public/views/join.html msgid "Required" msgstr "入力必須" @@ -812,6 +983,10 @@ msgstr "入力必須" msgid "Retrying..." msgstr "再度試しています…" +#: public/views/translators.html +msgid "Russian" +msgstr "ロシア語" + #: public/views/includes/password.html msgid "SET" msgstr "指定" @@ -820,7 +995,8 @@ msgstr "指定" msgid "SKIP BACKUP" msgstr "バックアップをスキップ" -#: public/views/preferencesAlias.html public/views/preferencesBwsUrl.html +#: public/views/preferencesAlias.html +#: public/views/preferencesBwsUrl.html #: public/views/preferencesEmail.html msgid "Save" msgstr "保存" @@ -865,7 +1041,8 @@ msgstr "必要な署名の数を選択" msgid "Select total number of copayers" msgstr "参加人数を選択して下さい。" -#: public/views/walletHome.html public/views/includes/transaction.html +#: public/views/walletHome.html +#: public/views/includes/transaction.html #: src/js/controllers/index.js msgid "Send" msgstr "送信" @@ -874,7 +1051,8 @@ msgstr "送信" msgid "Send All" msgstr "全額を送金" -#: public/views/backup.html public/views/preferencesLogs.html +#: public/views/backup.html +#: public/views/preferencesLogs.html msgid "Send by email" msgstr "メールで送信" @@ -899,14 +1077,8 @@ msgid "Set up a password" msgstr "パスワードを設定" #: public/views/preferencesEmail.html -msgid "" -"Setting up email notifications could weaken your privacy, if the wallet " -"service provider is compromised. Information available to an attacker would " -"include your wallet addresses and its balance, but no more." -msgstr "" -"メールのお知らせを有効にすると、悪意のあるサーバー運用者ならあなたの全てのア" -"ドレスとそれぞれの残高・履歴情報が把握できプライバシーの侵害に繋がる可能性が" -"あります。" +msgid "Setting up email notifications could weaken your privacy, if the wallet service provider is compromised. Information available to an attacker would include your wallet addresses and its balance, but no more." +msgstr "メールのお知らせを有効にすると、悪意のあるサーバー運用者ならあなたの全てのアドレスとそれぞれの残高・履歴情報が把握できプライバシーの侵害に繋がる可能性があります。" #: public/views/walletHome.html msgid "Share address" @@ -918,27 +1090,28 @@ msgstr "招待コードを共有" #: public/views/copayers.html msgid "Share this invitation with your copayers" -msgstr "" -"ウォレット参加者に\n" -"この招待コードを\n" +msgstr "ウォレット参加者に\n" +"この招待コードを\n" "送って下さい。" #: public/views/walletHome.html -msgid "" -"Share this wallet address to receive payments. To protect your privacy, new " -"addresses are generated automatically once you use them." -msgstr "" -"これを人に共有することでビットコインを送ってもらうことができます。プライバ" -"シー向上の観点から、アドレスが1回でも使用されたら新しいアドレスが自動生成され" -"ます。" +msgid "Share this wallet address to receive payments. To protect your privacy, new addresses are generated automatically once you use them." +msgstr "これを人に共有することでビットコインを送ってもらうことができます。プライバシー向上の観点から、アドレスが1回でも使用されたら新しいアドレスが自動生成されます。" #: public/views/create.html msgid "Shared Wallet" msgstr "共有ウォレットに参加" -#: public/views/create.html public/views/join.html -msgid "Show Advanced options" -msgstr "詳細設定 表示" +#: public/views/backup.html +#: public/views/create.html +#: public/views/join.html +#: public/views/walletHome.html +msgid "Show advanced options" +msgstr "詳細設定を表示" + +#: src/js/services/bwsError.js +msgid "Signatures rejected by server" +msgstr "サーバーより署名が却下されました。" #: src/js/controllers/walletHome.js msgid "Signing payment" @@ -948,11 +1121,20 @@ msgstr "送金の提案署名中" msgid "Signing transaction" msgstr "取引署名中" -#: src/js/controllers/index.js +#: public/views/translators.html msgid "Spanish" msgstr "スペイン語" -#: src/js/controllers/copayers.js src/js/controllers/import.js +#: src/js/services/bwsError.js +msgid "Spend proposal is not accepted" +msgstr "送金の提案が受諾されませんでした。" + +#: src/js/services/bwsError.js +msgid "Spend proposal not found" +msgstr "送金の提案が見つかりませんでした。" + +#: src/js/controllers/copayers.js +#: src/js/controllers/import.js #: src/js/controllers/preferencesDelete.js msgid "Success" msgstr "成功" @@ -961,7 +1143,8 @@ msgstr "成功" msgid "Tap to retry" msgstr "タップしてやり直し" -#: public/views/disclaimer.html public/views/preferencesAbout.html +#: public/views/disclaimer.html +#: public/views/preferencesAbout.html msgid "Terms of Use" msgstr "利用規約" @@ -970,123 +1153,36 @@ msgid "Testnet" msgstr "テスト用ネットワーク" #: src/js/controllers/walletHome.js -msgid "" -"The payment was created but could not be completed. Please try again from " -"home screen" -msgstr "" -"送金の提案は作成されましたが完了できませんでした。ホーム画面からやり直して下" -"さい。" +msgid "The payment was created but could not be completed. Please try again from home screen" +msgstr "送金の提案は作成されましたが完了できませんでした。ホーム画面からやり直して下さい。" #: src/js/controllers/walletHome.js -msgid "" -"The payment was created but could not be signed. Please try again from home " -"screen." -msgstr "" -"送金の提案は作成されましたが署名できませんでした。ホーム画面からやり直して下" -"さい。" +msgid "The payment was created but could not be signed. Please try again from home screen" +msgstr "送金の提案は作成されましたが署名できませんでした。ホーム画面からやり直して下さい。" #: public/views/modals/txp-details.html msgid "The payment was removed by creator" msgstr "送金の提案が作成者により削除されました" #: src/js/controllers/walletHome.js -msgid "" -"The payment was signed but could not be broadcasted. Please try again from " -"home screen." -msgstr "" -"送金の提案は署名されましたが送信できませんでした。ホーム画面からやり直して下" -"さい。" +msgid "The payment was signed but could not be broadcasted. Please try again from home screen" +msgstr "送金の提案は署名されましたが送信できませんでした。ホーム画面からやり直して下さい。" #: public/views/backup.html -msgid "" -"The private key for this wallet is encrypted. Exporting a backup will keep " -"the private key encrypted in the backup archive." -msgstr "" -"このウォレットの秘密鍵が暗号化されています。バックアップをエクスポートすると" -"秘密鍵が暗号化された状態でバックアップアーカイブとして守られます。" +msgid "The private key for this wallet is encrypted. Exporting a backup will keep the private key encrypted in the backup archive." +msgstr "このウォレットの秘密鍵が暗号化されています。バックアップをエクスポートすると秘密鍵が暗号化された状態でバックアップアーカイブとして守られます。" #: public/views/disclaimer.html -msgid "" -"The software you are about to use functions as a free, open source, and " -"multi-signature digital wallet. The software does not constitute an account " -"where BitPay or other third parties serve as financial intermediaries or " -"custodians of your bitcoin. While the software has undergone beta testing " -"and continues to be improved by feedback from the open-source user and " -"developer community, we cannot guarantee that there will be no bugs in the " -"software. You acknowledge that your use of this software is at your own " -"discretion and in compliance with all applicable laws. You are responsible " -"for safekeeping your passwords, private key pairs, PINs and any other codes " -"you use to access the software. IF YOU LOSE ACCESS TO YOUR COPAY WALLET OR " -"YOUR ENCRYPTED PRIVATE KEYS AND YOU HAVE NOT SEPARATELY STORED A BACKUP OF " -"YOUR WALLET AND CORRESPONDING PASSWORD, YOU ACKNOWLEDGE AND AGREE THAT ANY " -"BITCOIN YOU HAVE ASSOCIATED WITH THAT COPAY WALLET WILL BECOME " -"INACCESSIBLE. All transaction requests are irreversible. The authors of the " -"software, employees and affiliates of Bitpay, copyright holders, and BitPay, " -"Inc. cannot retrieve your private keys or passwords if you lose or forget " -"them and cannot guarantee transaction confirmation as they do not have " -"control over the Bitcoin network. To the fullest extent permitted by law, " -"this software is provided “as is” and no representations or warranties can " -"be made of any kind, express or implied, including but not limited to the " -"warranties of merchantability, fitness or a particular purpose and " -"noninfringement. You assume any and all risks associated with the use of the " -"software. In no event shall the authors of the software, employees and " -"affiliates of Bitpay, copyright holders, or BitPay, Inc. be held liable for " -"any claim, damages or other liability, whether in an action of contract, " -"tort, or otherwise, arising from, out of or in connection with the software. " -"We reserve the right to modify this disclaimer from time to time." -msgstr "" -"当ソフトウェアは無料のオープンソースプロジェクトで、マルチシグネチャを用いる" -"デジタルウォレットです。BitPay, Inc. 若しくはその他の第三者がアクセス権限を管" -"理する、若しくはデジタル資産の代理保管を行うサービスではありません。このソフ" -"トは長いテスト期間を経てリリースしましたが、今後バグや不具合が見つからないと" -"いう保障はございません。この規約に同意することで、自己責任で利用するものと" -"し、このソフトを用いてお住まいの地域の法令の違反はしないことを意味します。こ" -"のソフトを正常に利用するために必要なパスワード、秘密鍵、暗証番号などの秘密情" -"報は自己責任で管理するものとします。***Copayウォレットとその中にある秘密鍵" -"の情報を紛失してしまい、尚且つバックアップが無い、若しくはそのバックアップを" -"暗号化した際のパスワードが分からないなどの状況に陥ってしまえば、そのウォレッ" -"トに含まれた全てのビットコインが永久送金不可能となってしまうことを認識し、同" -"意するものとします。***署名が完了してしまった取引は取り消しが不可能となり" -"ます。このソフトの開発者、BitPayの従業員とその関係者、著作権所有者、BitPay, " -"Inc.自体もパスワード・秘密鍵・パスワードなどへのアクセスが不可能なため、教え" -"ることがだきません、なお、ビットコインのネットワークへの影響が無いので、取引" -"の取り消しや優先的な承認などはできません。このソフトはそのままの提供となり、" -"このソフトの利用に関わるあらゆる責任とリスクを自己責任で被り、利用するものと" -"し、いかなる損害が発生しても、このソフトの開発者、BitPayの従業員とその関係" -"者、著作権所有者、BitPay, Inc.自体も責任を求めることは無いと誓います。この規" -"約の言葉や表現のニュアンスによる解釈が必要となった場合、規約の元である英語の" -"ものを正とします。和訳は簡単な要約と考えて下さい。下記に英語の規約があります" -"ので、英語が理解できる方は是非熟読して下さい。\n" -"\n" -"The software you are about to use functions as a free, open source, and " -"multi-signature digital wallet. The software does not constitute an account " -"where BitPay or other third parties serve as financial intermediaries or " -"custodians of your bitcoin. While the software has undergone beta testing " -"and continues to be improved by feedback from the open-source user and " -"developer community, we cannot guarantee that there will be no bugs in the " -"software. You acknowledge that your use of this software is at your own " -"discretion and in compliance with all applicable laws. You are responsible " -"for safekeeping your passwords, private key pairs, PINs and any other codes " -"you use to access the software. IF YOU LOSE ACCESS TO YOUR COPAY WALLET OR " -"YOUR ENCRYPTED PRIVATE KEYS AND YOU HAVE NOT SEPARATELY STORED A BACKUP OF " -"YOUR WALLET AND CORRESPONDING PASSWORD, YOU ACKNOWLEDGE AND AGREE THAT ANY " -"BITCOIN YOU HAVE ASSOCIATED WITH THAT COPAY WALLET WILL BECOME " -"INACCESSIBLE. All transaction requests are irreversible. The authors of the " -"software, employees and affiliates of Bitpay, copyright holders, and BitPay, " -"Inc. cannot retrieve your private keys or passwords if you lose or forget " -"them and cannot guarantee transaction confirmation as they do not have " -"control over the Bitcoin network. To the fullest extent permitted by law, " -"this software is provided “as is” and no representations or warranties can " -"be made of any kind, express or implied, including but not limited to the " -"warranties of merchantability, fitness or a particular purpose and " -"noninfringement. You assume any and all risks associated with the use of the " -"software. In no event shall the authors of the software, employees and " -"affiliates of Bitpay, copyright holders, or BitPay, Inc. be held liable for " -"any claim, damages or other liability, whether in an action of contract, " -"tort, or otherwise, arising from, out of or in connection with the software. " -"We reserve the right to modify this disclaimer from time to time." +msgid "The software you are about to use functions as a free, open source, and multi-signature digital wallet. The software does not constitute an account where BitPay or other third parties serve as financial intermediaries or custodians of your bitcoin. While the software has undergone beta testing and continues to be improved by feedback from the open-source user and developer community, we cannot guarantee that there will be no bugs in the software. You acknowledge that your use of this software is at your own discretion and in compliance with all applicable laws. You are responsible for safekeeping your passwords, private key pairs, PINs and any other codes you use to access the software. IF YOU LOSE ACCESS TO YOUR COPAY WALLET OR YOUR ENCRYPTED PRIVATE KEYS AND YOU HAVE NOT SEPARATELY STORED A BACKUP OF YOUR WALLET AND CORRESPONDING PASSWORD, YOU ACKNOWLEDGE AND AGREE THAT ANY BITCOIN YOU HAVE ASSOCIATED WITH THAT COPAY WALLET WILL BECOME INACCESSIBLE. All transaction requests are irreversible. The authors of the software, employees and affiliates of Bitpay, copyright holders, and BitPay, Inc. cannot retrieve your private keys or passwords if you lose or forget them and cannot guarantee transaction confirmation as they do not have control over the Bitcoin network. To the fullest extent permitted by law, this software is provided “as is” and no representations or warranties can be made of any kind, express or implied, including but not limited to the warranties of merchantability, fitness or a particular purpose and noninfringement. You assume any and all risks associated with the use of the software. In no event shall the authors of the software, employees and affiliates of Bitpay, copyright holders, or BitPay, Inc. be held liable for any claim, damages or other liability, whether in an action of contract, tort, or otherwise, arising from, out of or in connection with the software. We reserve the right to modify this disclaimer from time to time." +msgstr "当ソフトウェアは無料のオープンソースプロジェクトで、マルチシグネチャを用いるデジタルウォレットです。BitPay, Inc. 若しくはその他の第三者がアクセス権限を管理する、若しくはデジタル資産の代理保管を行うサービスではありません。このソフトは長いテスト期間を経てリリースしましたが、今後バグや不具合が見つからないという保障はございません。この規約に同意することで、自己責任で利用するものとし、このソフトを用いてお住まいの地域の法令の違反はしないことを意味します。このソフトを正常に利用するために必要なパスワード、秘密鍵、暗証番号などの秘密情報は自己責任で管理するものとします。***Copayウォレットとその中にある秘密鍵の情報を紛失してしまい、尚且つバックアップが無い、若しくはそのバックアップを暗号化した際のパスワードが分からないなどの状況に陥ってしまえば、そのウォレットに含まれた全てのビットコインが永久送金不可能となってしまうことを認識し、同意するものとします。***署名が完了してしまった取引は取り消しが不可能となります。このソフトの開発者、BitPayの従業員とその関係者、著作権所有者、BitPay, Inc.自体もパスワード・秘密鍵・パスワードなどへのアクセスが不可能なため、教えることがだきません、なお、ビットコインのネットワークへの影響が無いので、取引の取り消しや優先的な承認などはできません。このソフトはそのままの提供となり、このソフトの利用に関わるあらゆる責任とリスクを自己責任で被り、利用するものとし、いかなる損害が発生しても、このソフトの開発者、BitPayの従業員とその関係者、著作権所有者、BitPay, Inc.自体も責任を求めることは無いと誓います。この規約の言葉や表現のニュアンスによる解釈が必要となった場合、規約の元である英語のものを正とします。和訳は簡単な要約と考えて下さい。下記に英語の規約がありますので、英語が理解できる方は是非熟読して下さい。\n\n" +"The software you are about to use functions as a free, open source, and multi-signature digital wallet. The software does not constitute an account where BitPay or other third parties serve as financial intermediaries or custodians of your bitcoin. While the software has undergone beta testing and continues to be improved by feedback from the open-source user and developer community, we cannot guarantee that there will be no bugs in the software. You acknowledge that your use of this software is at your own discretion and in compliance with all applicable laws. You are responsible for safekeeping your passwords, private key pairs, PINs and any other codes you use to access the software. IF YOU LOSE ACCESS TO YOUR COPAY WALLET OR YOUR ENCRYPTED PRIVATE KEYS AND YOU HAVE NOT SEPARATELY STORED A BACKUP OF YOUR WALLET AND CORRESPONDING PASSWORD, YOU ACKNOWLEDGE AND AGREE THAT ANY BITCOIN YOU HAVE ASSOCIATED WITH THAT COPAY WALLET WILL BECOME INACCESSIBLE. All transaction requests are irreversible. The authors of the software, employees and affiliates of Bitpay, copyright holders, and BitPay, Inc. cannot retrieve your private keys or passwords if you lose or forget them and cannot guarantee transaction confirmation as they do not have control over the Bitcoin network. To the fullest extent permitted by law, this software is provided “as is” and no representations or warranties can be made of any kind, express or implied, including but not limited to the warranties of merchantability, fitness or a particular purpose and noninfringement. You assume any and all risks associated with the use of the software. In no event shall the authors of the software, employees and affiliates of Bitpay, copyright holders, or BitPay, Inc. be held liable for any claim, damages or other liability, whether in an action of contract, tort, or otherwise, arising from, out of or in connection with the software. We reserve the right to modify this disclaimer from time to time." -#: src/js/controllers/copayers.js src/js/controllers/preferencesDelete.js +#: src/js/services/bwsError.js +msgid "The spend proposal is not pending" +msgstr "送金の提案が協議中ではありません。" + +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js msgid "The wallet \"{{walletName}}\" was deleted" msgstr "ウォレット \"{{walletName}}\" が削除されました" @@ -1098,23 +1194,30 @@ msgstr "送金可能なウォレットがありません" msgid "There is an error in the form" msgstr "フォームにエラーがありました" +#: public/views/modals/tx-details.html +msgid "This transaction has become invalid; possibly due to a double spend attempt." +msgstr "この取引が無効になりました。二重払いの可能性があります。" + #: public/views/walletHome.html -msgid "" -"This wallet is not registered at the given Bitcore Wallet Service (BWS). You " -"can recreate it from the local information." -msgstr "" -"現在設定中のBitcore Wallet Service (BWS) サーバーにて、このウォレットの登録が" -"ありません。再登録を行うこともできます。" +msgid "This wallet is not registered at the given Bitcore Wallet Service (BWS). You can recreate it from the local information." +msgstr "現在設定中のBitcore Wallet Service (BWS) サーバーにて、このウォレットの登録がありません。再登録を行うこともできます。" #: public/views/modals/txp-details.html msgid "Time" msgstr "時刻" -#: public/views/walletHome.html public/views/includes/transaction.html -#: public/views/modals/tx-details.html public/views/modals/txp-details.html +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/includes/transaction.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html msgid "To" msgstr "宛先" +#: public/views/includes/output.html +msgid "Total" +msgstr "合計" + #: public/views/walletHome.html msgid "Total Locked Balance" msgstr "ロック中の残高" @@ -1123,11 +1226,24 @@ msgstr "ロック中の残高" msgid "Transaction" msgstr "取引" +#: src/js/services/bwsError.js +msgid "Transaction already broadcasted" +msgstr "取引は既に配信されました。" + +#: public/views/translators.html +msgid "Translation Credits" +msgstr "翻訳ボランティアの皆さん" + +#: public/views/preferencesAbout.html +msgid "Translators" +msgstr "翻訳者" + #: src/js/controllers/walletHome.js msgid "Unable to send transaction proposal" msgstr "取引提案を送れませんでした。" -#: public/views/walletHome.html public/views/modals/tx-details.html +#: public/views/walletHome.html +#: public/views/modals/tx-details.html msgid "Unconfirmed" msgstr "未承認" @@ -1141,12 +1257,17 @@ msgstr "未送信取引" #: public/views/modals/paypro.html msgid "Untrusted" -msgstr "信用していない" +msgstr "信頼されていません。" #: public/views/walletHome.html msgid "Updating Wallet..." msgstr "ウォレット更新中…" +#: public/views/preferences.html +#: public/views/walletHome.html +msgid "Use Unconfirmed Funds" +msgstr "未承認ビットコインを使用" + #: public/views/preferencesAbout.html msgid "Version" msgstr "バージョン" @@ -1191,6 +1312,7 @@ msgstr "ウォレット招待" msgid "Wallet Invitation is not valid!" msgstr "ウォレット招待コードが無効です!" +#: src/js/services/bwsError.js #: src/js/services/profileService.js msgid "Wallet already exists" msgstr "既存のウォレットです" @@ -1199,22 +1321,34 @@ msgstr "既存のウォレットです" msgid "Wallet incomplete and broken" msgstr "ウォレットが未完成で破損しています" +#: src/js/services/bwsError.js +msgid "Wallet is full" +msgstr "ウォレットがいっぱいです。" + +#: src/js/services/bwsError.js +msgid "Wallet is not complete" +msgstr "ウォレットが未完成です。" + #: public/views/create.html msgid "Wallet name" msgstr "ウォレット名" -#: src/js/controllers/walletHome.js -msgid "" -"Wallet service timed out. Check your Internet connexion and your wallet " -"service configuration." -msgstr "" -"ウォレットサービスがタイムアウトになりました。インターネットの接続とウォレッ" -"トサービスの設定を確認して下さい。" +#: src/js/services/bwsError.js +msgid "Wallet not found" +msgstr "ウォレットが見つかりません。" + +#: src/js/services/bwsError.js +msgid "Wallet service not found" +msgstr "Wallet serviceが見つかりません。" #: public/views/preferencesDeleteWallet.html msgid "Warning!" msgstr "注意!" +#: public/views/modals/txp-details.html +msgid "Warning: this transaction has unconfirmed inputs" +msgstr "注意: この取引は未承認資金が含まれており、承認されるまで商品等をお渡しするのを待つことをお勧めします。" + #: src/js/services/profileService.js msgid "Wrong password" msgstr "不正なパスワード" @@ -1227,11 +1361,13 @@ msgstr "はい" msgid "You do not have a wallet" msgstr "ウォレットがありません" -#: public/views/backup.html public/views/import.html +#: public/views/backup.html +#: public/views/import.html msgid "Your backup password" msgstr "バックアップパスワード" -#: public/views/create.html public/views/join.html +#: public/views/create.html +#: public/views/join.html msgid "Your nickname" msgstr "自分のハンドルネーム" @@ -1255,7 +1391,8 @@ msgstr "メールによるウォレットのお知らせ" msgid "locked by pending payments" msgstr "未対応送金の提案によりロック中" -#: public/views/copayers.html public/views/walletHome.html +#: public/views/copayers.html +#: public/views/walletHome.html #: public/views/includes/sidebar.html msgid "of" msgstr "of" @@ -1272,18 +1409,11 @@ msgstr "設定" msgid "too long!" msgstr "長すぎます!" -#: public/views/preferencesFee.html -msgid "{{fee.value}} bits per kB" -msgstr "1キロバイト当たり {{fee.value}} bits" - #: src/js/controllers/walletHome.js msgid "{{fee}} will be discounted for bitcoin networking fees" msgstr "{{fee}} のビットコインネットワーク手数料が差し引かれます。" #: src/js/controllers/importLegacy.js -msgid "" -"{{len}} wallets imported. Funds scanning in progress. Hold on to see updated " -"balance" -msgstr "" -"{{len}} 個のウォレットをインポートしました。残高照会中のため、少々お待ち下さ" -"い。" +msgid "{{len}} wallets imported. Funds scanning in progress. Hold on to see updated balance" +msgstr "{{len}} 個のウォレットをインポートしました。残高照会中のため、少々お待ち下さい。" + diff --git a/i18n/po/ko.po b/i18n/po/ko.po new file mode 100644 index 000000000..c2639d8dc --- /dev/null +++ b/i18n/po/ko.po @@ -0,0 +1,1414 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Project-Id-Version: copay\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: crowdin.com\n" +"X-Crowdin-Project: copay\n" +"X-Crowdin-Language: ko\n" +"X-Crowdin-File: template.pot\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Last-Translator: cmgustavo83\n" +"Language-Team: Korean\n" +"Language: ko\n" +"PO-Revision-Date: 2015-08-13 09:15-0400\n" + +#: public/views/walletHome.html +msgid "(possible double spend)" +msgstr "(이중 사용 가능성 있음)" + +#: public/views/modals/txp-details.html +msgid "* A payment proposal can be deleted if 1) you are the creator, and no other copayer has signed, or 2) 24 hours have passed since the proposal was created." +msgstr "* 지불제안은 다음 조건이 만족할 때 지울 수 있습니다. 1) 당신이 작성자이고, 다른 지갑 참여자가 사인하지 않았을 때, 또는 2) 제안이 작성된 지 24시간 이상이 지났을 때." + +#: public/views/backup.html +msgid "* You can safely install your backup on another device and use your wallet from multiple devices at the same time." +msgstr "* 다른 장치에 안전하게 백업을 설치하고 여러 기기에서 동시에 지갑을 사용할 수 있습니다." + +#: public/views/backup.html +msgid "A backup without its private key will allow the user to see the wallet balance, transactions, and create spend proposals. However, it will not be able to approve (sign) proposals." +msgstr "비밀키가 없는 백업은 잔액 확인, 거래 확인, 지불 제안을 작성할 수 있지만, 제안에 찬성(서명)할 수는 없습니다." + +#: public/views/splash.html +msgid "A multisignature bitcoin wallet" +msgstr "다중서명 비트코인 지갑" + +#: public/views/preferences.html +msgid "About Copay" +msgstr "Copay에 대하여" + +#: public/views/modals/txp-details.html +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Accept" +msgstr "승인" + +#: public/views/includes/sidebar.html +msgid "Add wallet" +msgstr "지갑 추가" + +#: public/views/paymentUri.html +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +msgid "Address" +msgstr "주소" + +#: public/views/preferences.html +msgid "Advanced" +msgstr "고급" + +#: public/views/modals/advancedSend.html +msgid "Advanced Send" +msgstr "Advanced Send" + +#: public/views/disclaimer.html +msgid "Agree" +msgstr "동의" + +#: public/views/preferencesAlias.html +msgid "Alias for {{index.walletName}}" +msgstr "{{index.walletName}}의 별명" + +#: public/views/translators.html +msgid "All contributions to Copay's translation are welcome. Sign up at crowdin.com and join the Copay project at" +msgstr "All contributions to Copay's translation are welcome. Sign up at crowdin.com and join the Copay project at" + +#: public/views/splash.html +msgid "Already have a wallet?" +msgstr "이미 지갑을 가지고 있나요?" + +#: public/views/preferences.html +msgid "Alternative Currency" +msgstr "표시 통화" + +#: public/views/paymentUri.html +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/modals/customized-amount.html +msgid "Amount" +msgstr "금액" + +#: src/js/services/bwsError.js +msgid "Amount below dust threshold" +msgstr "Amount below dust threshold" + +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html +msgid "Amount in" +msgstr "Amount in" + +#: public/views/preferencesLanguage.html +msgid "Applying changes" +msgstr "변경 사항 적용 중" + +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +msgid "Are you sure you want to delete this wallet?" +msgstr "정말로 지갑을 삭제하시겠습니까?" + +#: public/views/walletHome.html +msgid "Available Balance" +msgstr "사용 가능한 잔액" + +#: public/views/preferencesFee.html +#: public/views/modals/advancedSend.html +msgid "Average confirmation time: {{fee.nbBlocks * 10}} minutes" +msgstr "Average confirmation time: {{fee.nbBlocks * 10}} minutes" + +#: public/views/create.html +#: public/views/join.html +msgid "BIP32 master extended private key" +msgstr "BIP32 마스터확장비밀키" + +#: public/views/includes/topbar.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Back" +msgstr "뒤로" + +#: public/views/preferences.html +msgid "Backup" +msgstr "백업" + +#: src/js/controllers/backup.js +msgid "Backup created" +msgstr "백업 생성됨" + +#: public/views/walletHome.html +msgid "Backup now" +msgstr "지금 백업" + +#: public/views/backup.html +msgid "Backup options" +msgstr "백업 옵션" + +#: src/js/services/profileService.js +msgid "Bad wallet invitation" +msgstr "Bad wallet invitation" + +#: public/views/walletHome.html +msgid "Before receiving funds, it is highly recommended you backup your wallet keys." +msgstr "비트코인을 받기 전에 지갑의 키를 백업하길 강력히 권장합니다." + +#: public/views/preferences.html +msgid "Bitcoin Network Fee Policy" +msgstr "비트코인 네트워크 수수료 설정" + +#: public/views/paymentUri.html +msgid "Bitcoin URI is NOT valid!" +msgstr "비트코인 URI가 유효하지 않습니다!" + +#: public/views/walletHome.html +msgid "Bitcoin address" +msgstr "비트코인 주소" + +#: public/views/preferencesFee.html +msgid "Bitcoin transactions may include a fee collected by miners on the network. The higher the fee, the greater the incentive a miner has to include that transaction in a block. Actual fees are determined based on network load and the selected policy." +msgstr "Bitcoin transactions may include a fee collected by miners on the network. The higher the fee, the greater the incentive a miner has to include that transaction in a block. Actual fees are determined based on network load and the selected policy." + +#: public/views/modals/txp-details.html +msgid "Broadcast Payment" +msgstr "Broadcast Payment" + +#: src/js/controllers/walletHome.js +msgid "Broadcasting Payment" +msgstr "결제 전송 중" + +#: src/js/controllers/walletHome.js +msgid "Broadcasting transaction" +msgstr "Broadcasting transaction" + +#: public/views/unsupported.html +msgid "Browser unsupported" +msgstr "지원되지 않는 브라우저" + +#: public/views/modals/txp-details.html +msgid "But not broadcasted. Try to send manually" +msgstr "But not broadcasted. Try to send manually" + +#: public/views/includes/password.html +msgid "CANCEL" +msgstr "취소" + +#: public/views/copayers.html +#: public/views/walletHome.html +#: public/views/modals/confirmation.html +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Cancel" +msgstr "취소" + +#: src/js/services/profileService.js +msgid "Cannot join the same wallet more that once" +msgstr "Cannot join the same wallet more that once" + +#: public/views/modals/paypro.html +msgid "Certified by" +msgstr "Certified by" + +#: public/views/preferencesAlias.html +msgid "Changing wallet alias only affects the local wallet name." +msgstr "Changing wallet alias only affects the local wallet name." + +#: public/views/import.html +msgid "Choose a backup file from your computer" +msgstr "컴퓨터에서 백업 파일을 골라주세요" + +#: public/views/modals/wallets.html +msgid "Choose a wallet to send funds" +msgstr "돈을 보낼 지갑을 선택해주세요" + +#: public/views/includes/topbar.html +#: public/views/modals/advancedSend.html +#: public/views/modals/copayers.html +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +#: public/views/modals/scanner.html +#: public/views/modals/wallets.html +msgid "Close" +msgstr "닫기" + +#: public/views/preferences.html +msgid "Color" +msgstr "색상" + +#: public/views/preferencesAbout.html +msgid "Commit hash" +msgstr "커밋 해시" + +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Confirm" +msgstr "Confirm" + +#: public/views/modals/tx-details.html +msgid "Confirmations" +msgstr "승인횟수" + +#: src/js/services/bwsError.js +msgid "Copayer already in this wallet" +msgstr "Copayer already in this wallet" + +#: src/js/services/bwsError.js +msgid "Copayer already registered" +msgstr "Copayer already registered" + +#: src/js/services/bwsError.js +msgid "Copayer already voted on this spend proposal" +msgstr "Copayer already voted on this spend proposal" + +#: src/js/services/bwsError.js +msgid "Copayer data mismatch" +msgstr "Copayer data mismatch" + +#: public/views/modals/copayers.html +msgid "Copayers" +msgstr "Copayers" + +#: src/js/controllers/backup.js +#: src/js/controllers/copayers.js +#: src/js/controllers/walletHome.js +msgid "Copied to clipboard" +msgstr "Copied to clipboard" + +#: public/views/backup.html +msgid "Copy backup to a safe place" +msgstr "백업을 안전한 장소에 복사해주세요" + +#: public/views/backup.html +msgid "Copy this text as it is to a safe place (notepad or email)" +msgstr "이 텍스트를 있는 그대로 복사해두세요(메모장이나 이메일등으로)" + +#: public/views/backup.html +msgid "Copy to clipboard" +msgstr "클립보드에 복사" + +#: src/js/controllers/walletHome.js +msgid "Could not accept payment" +msgstr "Could not accept payment" + +#: src/js/controllers/index.js +msgid "Could not access Wallet Service: Not found" +msgstr "Could not access Wallet Service: Not found" + +#: src/js/controllers/walletHome.js +msgid "Could not broadcast payment" +msgstr "Could not broadcast payment" + +#: src/js/services/addressService.js +msgid "Could not create address" +msgstr "Could not create address" + +#: src/js/controllers/walletHome.js +msgid "Could not create payment proposal" +msgstr "Could not create payment proposal" + +#: src/js/services/profileService.js +msgid "Could not create using the specified extended private key" +msgstr "Could not create using the specified extended private key" + +#: src/js/controllers/import.js +msgid "Could not decrypt file, check your password" +msgstr "Could not decrypt file, check your password" + +#: src/js/controllers/walletHome.js +msgid "Could not delete payment proposal" +msgstr "Could not delete payment proposal" + +#: src/js/controllers/walletHome.js +msgid "Could not fetch payment information" +msgstr "Could not fetch payment information" + +#: public/views/walletHome.html +msgid "Could not fetch transaction history" +msgstr "거래내역을 가져올 수 없습니다" + +#: src/js/services/profileService.js +msgid "Could not import. Check input file and password" +msgstr "가져올 수 없습니다. 파일과 패스워드를 확인해 주세요" + +#: src/js/services/profileService.js +msgid "Could not join using the specified extended private key" +msgstr "Could not join using the specified extended private key" + +#: src/js/services/profileService.js +msgid "Could not join wallet" +msgstr "Could not join wallet" + +#: src/js/controllers/walletHome.js +msgid "Could not recognize a valid Bitcoin QR Code" +msgstr "유효한 비트코인 QR코드를 인식할 수 없었습니다" + +#: src/js/controllers/walletHome.js +msgid "Could not reject payment" +msgstr "Could not reject payment" + +#: src/js/controllers/walletHome.js +msgid "Could not send payment" +msgstr "Could not send payment" + +#: src/js/controllers/index.js +msgid "Could not update Wallet" +msgstr "지갑을 업데이트할 수 없습니다" + +#: public/views/walletHome.html +msgid "Create" +msgstr "작성" + +#: public/views/add.html +#: public/views/create.html +msgid "Create new wallet" +msgstr "새로운 지갑 만들기" + +#: public/views/create.html +msgid "Create {{requiredCopayers}}-of-{{totalCopayers}} wallet" +msgstr "{{requiredCopayers}}-of-{{totalCopayers}} 지갑 만들기" + +#: public/views/includes/sidebar.html +msgid "Create, join or import" +msgstr "만들기, 참가하기, 불러오기" + +#: public/views/modals/txp-details.html +msgid "Created by" +msgstr "작성자" + +#: public/views/splash.html +msgid "Creating Profile..." +msgstr "프로필 만드는 중.." + +#: public/views/create.html +msgid "Creating Wallet..." +msgstr "지갑 만드는 중..." + +#: src/js/controllers/walletHome.js +msgid "Creating transaction" +msgstr "Creating transaction" + +#: public/views/preferencesFee.html +#: public/views/modals/advancedSend.html +msgid "Current fee rate for this policy: {{fee.feePerKBUnit}}/kiB" +msgstr "Current fee rate for this policy: {{fee.feePerKBUnit}}/kiB" + +#: public/views/modals/tx-details.html +msgid "Date" +msgstr "날짜" + +#: public/views/modals/txp-details.html +msgid "Delete Payment Proposal" +msgstr "지불제안 삭제" + +#: public/views/preferencesAdvanced.html +msgid "Delete Wallet" +msgstr "지갑 삭제" + +#: public/views/copayers.html +msgid "Delete it and create a new one" +msgstr "이 지갑을 삭제하고 새로운 지갑 만들기" + +#: public/views/preferencesDeleteWallet.html +msgid "Delete wallet" +msgstr "지갑 삭제" + +#: src/js/controllers/walletHome.js +msgid "Deleting payment" +msgstr "Deleting payment" + +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Details" +msgstr "상세" + +#: public/views/preferences.html +msgid "Disabled" +msgstr "Disabled" + +#: public/views/backup.html +msgid "Do not include private key in backup" +msgstr "Do not include private key in backup" + +#: public/views/translators.html +msgid "Don't see your language on Crowdin? Contact the Owner on Crowdin! We'd love to support your language." +msgstr "Don't see your language on Crowdin? Contact the Owner on Crowdin! We'd love to support your language." + +#: public/views/walletHome.html +msgid "Download CSV file" +msgstr "CSV 파일 다운로드" + +#: public/views/backup.html +msgid "Download backup" +msgstr "백업 다운로드" + +#: src/js/services/feeService.js +msgid "Economy" +msgstr "Economy" + +#: public/views/preferences.html +msgid "Email Notifications" +msgstr "이메일 알림" + +#: public/views/preferences.html +msgid "Encrypt Private Key" +msgstr "비밀키 암호화" + +#: src/js/controllers/backup.js +msgid "Encrypted backup file saved" +msgstr "암호화된 백업파일이 저장됐습니다" + +#: public/views/includes/password.html +msgid "Enter your password" +msgstr "패스워드를 입력해주세요" + +#: src/js/controllers/index.js +msgid "Error at Wallet Service" +msgstr "Error at Wallet Service" + +#: src/js/services/profileService.js +msgid "Error creating wallet" +msgstr "지갑 생성 중 오류" + +#: src/js/services/profileService.js +msgid "Error importing wallet:" +msgstr "지갑 가져오는 중 오류" + +#: public/views/modals/paypro.html +#: public/views/modals/txp-details.html +msgid "Expires" +msgstr "Expires" + +#: public/views/backup.html +msgid "Failed to create backup" +msgstr "백업 생성 실패" + +#: src/js/controllers/importLegacy.js +msgid "Failed to import wallets" +msgstr "지갑 가져오기 실패" + +#: public/views/create.html +msgid "Family vacation funds" +msgstr "가족 휴가 자금" + +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Fee" +msgstr "수수료" + +#: public/views/modals/advancedSend.html +msgid "Fee Policy" +msgstr "Fee Policy" + +#: public/views/walletHome.html +msgid "Fee policy for this transaction" +msgstr "Fee policy for this transaction" + +#. Get information of payment if using Payment Protocol +#: src/js/controllers/walletHome.js +msgid "Fetching Payment Information" +msgstr "Fetching Payment Information" + +#: public/views/translators.html +msgid "French" +msgstr "French" + +#: src/js/services/bwsError.js +msgid "Funds are locked by pending spend proposals" +msgstr "Funds are locked by pending spend proposals" + +#: src/js/services/notificationsService.js +msgid "Funds received" +msgstr "Funds received" + +#: public/views/splash.html +msgid "GET STARTED" +msgstr "시작하기" + +#: public/views/modals/customized-amount.html +msgid "Generate QR Code" +msgstr "Generate QR Code" + +#: public/views/walletHome.html +msgid "Generate new address" +msgstr "새로운 주소 생성" + +#: public/views/walletHome.html +msgid "Generating .csv file..." +msgstr ".csv 파일 생성중..." + +#: public/views/translators.html +msgid "German" +msgstr "German" + +#: public/views/modals/wallets.html +msgid "Getting address for wallet {{selectedWalletName}} ..." +msgstr "'{{selectedWalletName}}' 지갑의 주소 얻는 중..." + +#: public/views/preferences.html +msgid "Global settings" +msgstr "전역 설정" + +#: public/views/disclaimer.html +msgid "Go back" +msgstr "뒤로 가기" + +#: public/views/translators.html +msgid "Greek" +msgstr "Greek" + +#: public/views/import.html +msgid "Have a Backup from Copay v0.9?" +msgstr "Copay v0.9용 백업을 가지고 계신가요?" + +#: public/views/backup.html +#: public/views/create.html +#: public/views/join.html +#: public/views/walletHome.html +msgid "Hide advanced options" +msgstr "Hide advanced options" + +#: src/js/controllers/index.js +msgid "History" +msgstr "내역" + +#: src/js/controllers/index.js +msgid "Home" +msgstr "홈" + +#: public/views/disclaimer.html +msgid "I affirm that I have read, understood, and agree with these terms." +msgstr "I affirm that I have read, understood, and agree with these terms." + +#: public/views/create.html +#: public/views/join.html +msgid "If not given, a secure key will be generated" +msgstr "If not given, a secure key will be generated" + +#: public/views/importLegacy.html +msgid "Import" +msgstr "가져오기" + +#: public/views/import.html +#: public/views/splash.html +msgid "Import backup" +msgstr "백업 가져오기" + +#: public/views/importLegacy.html +msgid "Import from the Cloud?" +msgstr "클라우드에서 가져올까요?" + +#: public/views/import.html +msgid "Import here" +msgstr "Import here" + +#: public/views/add.html +msgid "Import wallet" +msgstr "지갑 가져오기" + +#: public/views/import.html +msgid "Importing wallet..." +msgstr "지갑 가져오는 중..." + +#: public/views/importLegacy.html +msgid "Importing..." +msgstr "가져오는 중..." + +#: src/js/services/bwsError.js +msgid "Incorrect address network" +msgstr "Incorrect address network" + +#: src/js/services/bwsError.js +msgid "Insufficient funds" +msgstr "Insufficient funds" + +#: src/js/services/bwsError.js +msgid "Insufficient funds for fee" +msgstr "Insufficient funds for fee" + +#: public/views/walletHome.html +msgid "Invalid" +msgstr "Invalid" + +#: src/js/services/bwsError.js +msgid "Invalid address" +msgstr "Invalid address" + +#: src/js/controllers/copayers.js +msgid "Invitation to share a Copay Wallet" +msgstr "Invitation to share a Copay Wallet" + +#: public/views/translators.html +msgid "Italian" +msgstr "Italian" + +#: public/views/translators.html +msgid "Japanese" +msgstr "Japanese" + +#: public/views/create.html +#: public/views/join.html +msgid "John" +msgstr "John" + +#: public/views/join.html +msgid "Join" +msgstr "참가" + +#: src/js/controllers/copayers.js +msgid "Join my Copay wallet. Here is the invitation code: {{secret}} You can download Copay for your phone or desktop at https://copay.io" +msgstr "Join my Copay wallet. Here is the invitation code: {{secret}} You can download Copay for your phone or desktop at https://copay.io" + +#: public/views/add.html +msgid "Join shared wallet" +msgstr "공유지갑에 참가" + +#: public/views/join.html +msgid "Joining Wallet..." +msgstr "지갑에 참가하는 중..." + +#: public/views/preferences.html +msgid "Language" +msgstr "언어" + +#: public/views/importLegacy.html +msgid "Learn more about Wallet Migration" +msgstr "지갑 이동에 대해 더 알아보기" + +#: src/js/services/bwsError.js +msgid "Locktime in effect. Please wait to create a new spend proposal" +msgstr "Locktime in effect. Please wait to create a new spend proposal" + +#: src/js/services/bwsError.js +msgid "Locktime in effect. Please wait to remove this spend proposal" +msgstr "Locktime in effect. Please wait to remove this spend proposal" + +#: public/views/paymentUri.html +msgid "Make a payment to" +msgstr "Make a payment to" + +#: public/views/create.html +#: public/views/join.html +msgid "Master extended private key" +msgstr "Master extended private key" + +#: public/views/includes/copayers.html +#: public/views/modals/copayers.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Me" +msgstr "나" + +#: public/views/modals/paypro.html +msgid "Memo" +msgstr "메모" + +#: public/views/modals/tx-details.html +msgid "Merchant message" +msgstr "Merchant message" + +#: public/views/paymentUri.html +msgid "Message" +msgstr "메시지" + +#: public/views/walletHome.html +msgid "More" +msgstr "More" + +#: public/views/walletHome.html +msgid "Moved" +msgstr "Moved" + +#: public/views/walletHome.html +msgid "Multisignature wallet" +msgstr "다중서명 지갑" + +#: public/views/walletHome.html +msgid "My Bitcoin address" +msgstr "나의 비트코인 주소" + +#: public/views/paymentUri.html +msgid "Network" +msgstr "네트워크" + +#: src/js/services/bwsError.js +msgid "Network connection error" +msgstr "Network connection error" + +#: src/js/services/notificationsService.js +msgid "New Payment Proposal" +msgstr "새 지불제안" + +#: public/views/walletHome.html +msgid "No Private key" +msgstr "No Private key" + +#: public/views/walletHome.html +msgid "No transactions yet" +msgstr "No transactions yet" + +#: src/js/services/feeService.js +msgid "Normal" +msgstr "Normal" + +#: src/js/services/bwsError.js +msgid "Not authorized" +msgstr "Not authorized" + +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html +msgid "Not valid" +msgstr "Not valid" + +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/modals/tx-details.html +msgid "Note" +msgstr "메모" + +#: public/views/includes/alert.html +#: public/views/includes/password.html +msgid "OK" +msgstr "OK" + +#: public/views/modals/tx-status.html +msgid "OKAY" +msgstr "OKAY" + +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Participants" +msgstr "참가자" + +#: public/views/import.html +#: public/views/importLegacy.html +msgid "Password" +msgstr "Password" + +#: public/views/includes/password.html +msgid "Password cannot be recovered. Be sure to write it down" +msgstr "Password cannot be recovered. Be sure to write it down" + +#: src/js/services/profileService.js +msgid "Password needed" +msgstr "비밀번호가 필요합니다" + +#: src/js/controllers/password.js +msgid "Passwords do not match" +msgstr "비밀번호가 일치하지 않습니다" + +#: public/views/join.html +msgid "Paste invitation here" +msgstr "Paste invitation here" + +#: public/views/import.html +msgid "Paste the backup plain text code" +msgstr "Paste the backup plain text code" + +#: public/views/modals/paypro.html +msgid "Pay To" +msgstr "Pay To" + +#: public/views/modals/tx-status.html +msgid "Payment Accepted" +msgstr "Payment Accepted" + +#: public/views/modals/txp-details.html +msgid "Payment Proposal" +msgstr "지불제안" + +#: public/views/modals/tx-status.html +msgid "Payment Proposal Created" +msgstr "Payment Proposal Created" + +#: src/js/services/notificationsService.js +msgid "Payment Proposal Rejected" +msgstr "Payment Proposal Rejected" + +#: src/js/services/notificationsService.js +msgid "Payment Proposal Rejected by Copayer" +msgstr "Payment Proposal Rejected by Copayer" + +#: src/js/services/notificationsService.js +msgid "Payment Proposal Signed by Copayer" +msgstr "Payment Proposal Signed by Copayer" + +#: public/views/walletHome.html +msgid "Payment Proposals" +msgstr "지불제안" + +#: src/js/controllers/walletHome.js +msgid "Payment Protocol not supported on Chrome App" +msgstr "Payment Protocol not supported on Chrome App" + +#: public/views/modals/tx-status.html +msgid "Payment Rejected" +msgstr "Payment Rejected" + +#: public/views/modals/tx-status.html +#: src/js/services/notificationsService.js +msgid "Payment Sent" +msgstr "Payment Sent" + +#: public/views/modals/txp-details.html +msgid "Payment accepted..." +msgstr "Payment accepted..." + +#: public/views/modals/txp-details.html +msgid "Payment details" +msgstr "Payment details" + +#: public/views/modals/txp-details.html +msgid "Payment finally rejected" +msgstr "Payment finally rejected" + +#: public/views/modals/paypro.html +msgid "Payment request" +msgstr "Payment request" + +#: public/views/modals/txp-details.html +msgid "Payment sent!" +msgstr "Payment sent!" + +#: public/views/walletHome.html +msgid "Payment to" +msgstr "Payment to" + +#: public/views/walletHome.html +msgid "Pending Confirmation" +msgstr "Pending Confirmation" + +#: public/views/preferencesDeleteWallet.html +msgid "Permanently delete this wallet. THIS ACTION CANNOT BE REVERSED" +msgstr "Permanently delete this wallet. THIS ACTION CANNOT BE REVERSED" + +#: public/views/create.html +msgid "Personal Wallet" +msgstr "Personal Wallet" + +#: src/js/controllers/create.js +#: src/js/controllers/join.js +msgid "Please enter the required fields" +msgstr "Please enter the required fields" + +#: src/js/services/bwsError.js +msgid "Please upgrade Copay to perform this action" +msgstr "Please upgrade Copay to perform this action" + +#: src/js/controllers/import.js +msgid "Please, select your backup file" +msgstr "Please, select your backup file" + +#: public/views/translators.html +msgid "Portuguese" +msgstr "Portuguese" + +#: public/views/walletHome.html +msgid "Preferences" +msgstr "Preferences" + +#: src/js/controllers/backup.js +msgid "Preparing backup..." +msgstr "Preparing backup..." + +#: src/js/services/feeService.js +msgid "Priority" +msgstr "Priority" + +#: public/views/modals/customized-amount.html +msgid "QR Code" +msgstr "QR코드" + +#: public/views/modals/scanner.html +msgid "QR-Scanner" +msgstr "QR스캐너" + +#: src/js/controllers/index.js +msgid "Receive" +msgstr "Receive" + +#: public/views/walletHome.html +msgid "Received" +msgstr "Received" + +#: public/views/includes/output.html +#: public/views/includes/transaction.html +msgid "Recipients" +msgstr "Recipients" + +#: public/views/walletHome.html +msgid "Reconnecting to Wallet Service..." +msgstr "Reconnecting to Wallet Service..." + +#: public/views/walletHome.html +msgid "Recreate" +msgstr "Recreate" + +#: public/views/walletHome.html +msgid "Recreating Wallet..." +msgstr "Recreating Wallet..." + +#: public/views/modals/txp-details.html +msgid "Reject" +msgstr "거절" + +#: src/js/controllers/walletHome.js +msgid "Rejecting payment" +msgstr "Rejecting payment" + +#: public/views/preferencesAbout.html +msgid "Release Information" +msgstr "Release Information" + +#: public/views/backup.html +#: public/views/includes/password.html +msgid "Repeat password" +msgstr "패스워드 다시 입력" + +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html +msgid "Request a specific amount" +msgstr "Request a specific amount" + +#: public/views/import.html +#: public/views/join.html +msgid "Required" +msgstr "Required" + +#: public/views/splash.html +msgid "Retrying..." +msgstr "다시 시도 중..." + +#: public/views/translators.html +msgid "Russian" +msgstr "Russian" + +#: public/views/includes/password.html +msgid "SET" +msgstr "SET" + +#: public/views/walletHome.html +msgid "SKIP BACKUP" +msgstr "백업 건너뛰기" + +#: public/views/preferencesAlias.html +#: public/views/preferencesBwsUrl.html +#: public/views/preferencesEmail.html +msgid "Save" +msgstr "Save" + +#: public/views/preferencesEmail.html +msgid "Saving preferences..." +msgstr "Saving preferences..." + +#: src/js/services/notificationsService.js +msgid "Scan Finished" +msgstr "Scan Finished" + +#: public/views/preferencesAdvanced.html +msgid "Scan addresses for funds" +msgstr "Scan addresses for funds" + +#: public/views/walletHome.html +msgid "Scan status finished with error" +msgstr "Scan status finished with error" + +#: public/views/walletHome.html +msgid "Scanning Wallet funds..." +msgstr "Scanning Wallet funds..." + +#: public/views/modals/tx-details.html +msgid "See it on the blockchain" +msgstr "블록체인에서 보기" + +#: public/views/import.html +msgid "Select a backup file" +msgstr "백업 파일 선택" + +#: public/views/paymentUri.html +msgid "Select a wallet" +msgstr "Select a wallet" + +#: public/views/create.html +msgid "Select required number of signatures" +msgstr "Select required number of signatures" + +#: public/views/create.html +msgid "Select total number of copayers" +msgstr "Select total number of copayers" + +#: public/views/walletHome.html +#: public/views/includes/transaction.html +#: src/js/controllers/index.js +msgid "Send" +msgstr "Send" + +#: public/views/walletHome.html +msgid "Send All" +msgstr "Send All" + +#: public/views/backup.html +#: public/views/preferencesLogs.html +msgid "Send by email" +msgstr "Send by email" + +#: public/views/walletHome.html +msgid "Sent" +msgstr "Sent" + +#: public/views/importLegacy.html +msgid "Server" +msgstr "서버" + +#: public/views/preferencesAbout.html +msgid "Session log" +msgstr "세션 로그" + +#: public/views/backup.html +msgid "Set up a Password for your backup" +msgstr "백업을 위한 패스워드를 설정해주세요" + +#: public/views/includes/password.html +msgid "Set up a password" +msgstr "패스워드 설정" + +#: public/views/preferencesEmail.html +msgid "Setting up email notifications could weaken your privacy, if the wallet service provider is compromised. Information available to an attacker would include your wallet addresses and its balance, but no more." +msgstr "Setting up email notifications could weaken your privacy, if the wallet service provider is compromised. Information available to an attacker would include your wallet addresses and its balance, but no more." + +#: public/views/walletHome.html +msgid "Share address" +msgstr "Share address" + +#: public/views/copayers.html +msgid "Share invitation" +msgstr "Share invitation" + +#: public/views/copayers.html +msgid "Share this invitation with your copayers" +msgstr "Share this invitation with your copayers" + +#: public/views/walletHome.html +msgid "Share this wallet address to receive payments. To protect your privacy, new addresses are generated automatically once you use them." +msgstr "Share this wallet address to receive payments. To protect your privacy, new addresses are generated automatically once you use them." + +#: public/views/create.html +msgid "Shared Wallet" +msgstr "공유 지갑" + +#: public/views/backup.html +#: public/views/create.html +#: public/views/join.html +#: public/views/walletHome.html +msgid "Show advanced options" +msgstr "Show advanced options" + +#: src/js/services/bwsError.js +msgid "Signatures rejected by server" +msgstr "Signatures rejected by server" + +#: src/js/controllers/walletHome.js +msgid "Signing payment" +msgstr "Signing payment" + +#: src/js/controllers/walletHome.js +msgid "Signing transaction" +msgstr "Signing transaction" + +#: public/views/translators.html +msgid "Spanish" +msgstr "Spanish" + +#: src/js/services/bwsError.js +msgid "Spend proposal is not accepted" +msgstr "Spend proposal is not accepted" + +#: src/js/services/bwsError.js +msgid "Spend proposal not found" +msgstr "Spend proposal not found" + +#: src/js/controllers/copayers.js +#: src/js/controllers/import.js +#: src/js/controllers/preferencesDelete.js +msgid "Success" +msgstr "성공" + +#: public/views/walletHome.html +msgid "Tap to retry" +msgstr "Tap to retry" + +#: public/views/disclaimer.html +#: public/views/preferencesAbout.html +msgid "Terms of Use" +msgstr "이용약관" + +#: public/views/create.html +msgid "Testnet" +msgstr "Testnet" + +#: src/js/controllers/walletHome.js +msgid "The payment was created but could not be completed. Please try again from home screen" +msgstr "The payment was created but could not be completed. Please try again from home screen" + +#: src/js/controllers/walletHome.js +msgid "The payment was created but could not be signed. Please try again from home screen" +msgstr "The payment was created but could not be signed. Please try again from home screen" + +#: public/views/modals/txp-details.html +msgid "The payment was removed by creator" +msgstr "The payment was removed by creator" + +#: src/js/controllers/walletHome.js +msgid "The payment was signed but could not be broadcasted. Please try again from home screen" +msgstr "The payment was signed but could not be broadcasted. Please try again from home screen" + +#: public/views/backup.html +msgid "The private key for this wallet is encrypted. Exporting a backup will keep the private key encrypted in the backup archive." +msgstr "The private key for this wallet is encrypted. Exporting a backup will keep the private key encrypted in the backup archive." + +#: public/views/disclaimer.html +msgid "The software you are about to use functions as a free, open source, and multi-signature digital wallet. The software does not constitute an account where BitPay or other third parties serve as financial intermediaries or custodians of your bitcoin. While the software has undergone beta testing and continues to be improved by feedback from the open-source user and developer community, we cannot guarantee that there will be no bugs in the software. You acknowledge that your use of this software is at your own discretion and in compliance with all applicable laws. You are responsible for safekeeping your passwords, private key pairs, PINs and any other codes you use to access the software. IF YOU LOSE ACCESS TO YOUR COPAY WALLET OR YOUR ENCRYPTED PRIVATE KEYS AND YOU HAVE NOT SEPARATELY STORED A BACKUP OF YOUR WALLET AND CORRESPONDING PASSWORD, YOU ACKNOWLEDGE AND AGREE THAT ANY BITCOIN YOU HAVE ASSOCIATED WITH THAT COPAY WALLET WILL BECOME INACCESSIBLE. All transaction requests are irreversible. The authors of the software, employees and affiliates of Bitpay, copyright holders, and BitPay, Inc. cannot retrieve your private keys or passwords if you lose or forget them and cannot guarantee transaction confirmation as they do not have control over the Bitcoin network. To the fullest extent permitted by law, this software is provided “as is” and no representations or warranties can be made of any kind, express or implied, including but not limited to the warranties of merchantability, fitness or a particular purpose and noninfringement. You assume any and all risks associated with the use of the software. In no event shall the authors of the software, employees and affiliates of Bitpay, copyright holders, or BitPay, Inc. be held liable for any claim, damages or other liability, whether in an action of contract, tort, or otherwise, arising from, out of or in connection with the software. We reserve the right to modify this disclaimer from time to time." +msgstr "The software you are about to use functions as a free, open source, and multi-signature digital wallet. The software does not constitute an account where BitPay or other third parties serve as financial intermediaries or custodians of your bitcoin. While the software has undergone beta testing and continues to be improved by feedback from the open-source user and developer community, we cannot guarantee that there will be no bugs in the software. You acknowledge that your use of this software is at your own discretion and in compliance with all applicable laws. You are responsible for safekeeping your passwords, private key pairs, PINs and any other codes you use to access the software. IF YOU LOSE ACCESS TO YOUR COPAY WALLET OR YOUR ENCRYPTED PRIVATE KEYS AND YOU HAVE NOT SEPARATELY STORED A BACKUP OF YOUR WALLET AND CORRESPONDING PASSWORD, YOU ACKNOWLEDGE AND AGREE THAT ANY BITCOIN YOU HAVE ASSOCIATED WITH THAT COPAY WALLET WILL BECOME INACCESSIBLE. All transaction requests are irreversible. The authors of the software, employees and affiliates of Bitpay, copyright holders, and BitPay, Inc. cannot retrieve your private keys or passwords if you lose or forget them and cannot guarantee transaction confirmation as they do not have control over the Bitcoin network. To the fullest extent permitted by law, this software is provided “as is” and no representations or warranties can be made of any kind, express or implied, including but not limited to the warranties of merchantability, fitness or a particular purpose and noninfringement. You assume any and all risks associated with the use of the software. In no event shall the authors of the software, employees and affiliates of Bitpay, copyright holders, or BitPay, Inc. be held liable for any claim, damages or other liability, whether in an action of contract, tort, or otherwise, arising from, out of or in connection with the software. We reserve the right to modify this disclaimer from time to time." + +#: src/js/services/bwsError.js +msgid "The spend proposal is not pending" +msgstr "The spend proposal is not pending" + +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +msgid "The wallet \"{{walletName}}\" was deleted" +msgstr "The wallet \"{{walletName}}\" was deleted" + +#: public/views/paymentUri.html +msgid "There are no wallets to make this payment" +msgstr "There are no wallets to make this payment" + +#: src/js/controllers/import.js +msgid "There is an error in the form" +msgstr "There is an error in the form" + +#: public/views/modals/tx-details.html +msgid "This transaction has become invalid; possibly due to a double spend attempt." +msgstr "This transaction has become invalid; possibly due to a double spend attempt." + +#: public/views/walletHome.html +msgid "This wallet is not registered at the given Bitcore Wallet Service (BWS). You can recreate it from the local information." +msgstr "This wallet is not registered at the given Bitcore Wallet Service (BWS). You can recreate it from the local information." + +#: public/views/modals/txp-details.html +msgid "Time" +msgstr "시간" + +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/includes/transaction.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "To" +msgstr "To" + +#: public/views/includes/output.html +msgid "Total" +msgstr "Total" + +#: public/views/walletHome.html +msgid "Total Locked Balance" +msgstr "Total Locked Balance" + +#: public/views/modals/tx-details.html +msgid "Transaction" +msgstr "Transaction" + +#: src/js/services/bwsError.js +msgid "Transaction already broadcasted" +msgstr "Transaction already broadcasted" + +#: public/views/translators.html +msgid "Translation Credits" +msgstr "Translation Credits" + +#: public/views/preferencesAbout.html +msgid "Translators" +msgstr "Translators" + +#: src/js/controllers/walletHome.js +msgid "Unable to send transaction proposal" +msgstr "Unable to send transaction proposal" + +#: public/views/walletHome.html +#: public/views/modals/tx-details.html +msgid "Unconfirmed" +msgstr "Unconfirmed" + +#: public/views/preferences.html +msgid "Unit" +msgstr "단위" + +#: public/views/walletHome.html +msgid "Unsent transactions" +msgstr "Unsent transactions" + +#: public/views/modals/paypro.html +msgid "Untrusted" +msgstr "Untrusted" + +#: public/views/walletHome.html +msgid "Updating Wallet..." +msgstr "Updating Wallet..." + +#: public/views/preferences.html +#: public/views/walletHome.html +msgid "Use Unconfirmed Funds" +msgstr "Use Unconfirmed Funds" + +#: public/views/preferencesAbout.html +msgid "Version" +msgstr "버전" + +#: public/views/backup.html +msgid "View backup" +msgstr "백업 보기" + +#: public/views/walletHome.html +msgid "WARNING: Backup needed" +msgstr "경고: 백업이 필요합니다" + +#: public/views/walletHome.html +msgid "WARNING: Wallet not registered" +msgstr "WARNING: Wallet not registered" + +#: public/views/splash.html +msgid "WELCOME TO COPAY" +msgstr "WELCOME TO COPAY" + +#: public/views/copayers.html +msgid "Waiting for copayers" +msgstr "Waiting for copayers" + +#: public/views/copayers.html +msgid "Waiting..." +msgstr "대기 중..." + +#: public/views/preferences.html +msgid "Wallet Alias" +msgstr "지갑 별명" + +#: src/js/services/profileService.js +msgid "Wallet Already Imported:" +msgstr "이미 가져온 지갑:" + +#: public/views/join.html +msgid "Wallet Invitation" +msgstr "지갑 초대" + +#: public/views/join.html +msgid "Wallet Invitation is not valid!" +msgstr "지갑 초대가 유효하지 않습니다!" + +#: src/js/services/bwsError.js +#: src/js/services/profileService.js +msgid "Wallet already exists" +msgstr "이미 존재하는 지갑입니다" + +#: public/views/copayers.html +msgid "Wallet incomplete and broken" +msgstr "Wallet incomplete and broken" + +#: src/js/services/bwsError.js +msgid "Wallet is full" +msgstr "Wallet is full" + +#: src/js/services/bwsError.js +msgid "Wallet is not complete" +msgstr "Wallet is not complete" + +#: public/views/create.html +msgid "Wallet name" +msgstr "지갑 이름" + +#: src/js/services/bwsError.js +msgid "Wallet not found" +msgstr "Wallet not found" + +#: src/js/services/bwsError.js +msgid "Wallet service not found" +msgstr "Wallet service not found" + +#: public/views/preferencesDeleteWallet.html +msgid "Warning!" +msgstr "경고!" + +#: public/views/modals/txp-details.html +msgid "Warning: this transaction has unconfirmed inputs" +msgstr "Warning: this transaction has unconfirmed inputs" + +#: src/js/services/profileService.js +msgid "Wrong password" +msgstr "잘못된 비밀번호" + +#: public/views/modals/confirmation.html +msgid "Yes" +msgstr "Yes" + +#: public/views/walletHome.html +msgid "You do not have a wallet" +msgstr "지갑이 없습니다" + +#: public/views/backup.html +#: public/views/import.html +msgid "Your backup password" +msgstr "백업 패스워드" + +#: public/views/create.html +#: public/views/join.html +msgid "Your nickname" +msgstr "당신의 닉네임" + +#: public/views/includes/password.html +msgid "Your password" +msgstr "당신의 비밀번호" + +#: public/views/importLegacy.html +msgid "Your profile password" +msgstr "프로필 패스워드" + +#: src/js/controllers/import.js +msgid "Your wallet has been imported correctly" +msgstr "지갑을 정상적으로 가져왔습니다" + +#: public/views/preferencesEmail.html +msgid "email for wallet notifications" +msgstr "지갑 알림을 위한 이메일" + +#: public/views/walletHome.html +msgid "locked by pending payments" +msgstr "locked by pending payments" + +#: public/views/copayers.html +#: public/views/walletHome.html +#: public/views/includes/sidebar.html +msgid "of" +msgstr "of" + +#: public/views/walletHome.html +msgid "optional" +msgstr "선택사항" + +#: public/views/preferences.html +msgid "settings" +msgstr "설정" + +#: public/views/walletHome.html +msgid "too long!" +msgstr "너무 깁니다!" + +#: src/js/controllers/walletHome.js +msgid "{{fee}} will be discounted for bitcoin networking fees" +msgstr "{{fee}} will be discounted for bitcoin networking fees" + +#: src/js/controllers/importLegacy.js +msgid "{{len}} wallets imported. Funds scanning in progress. Hold on to see updated balance" +msgstr "{{len}} 개의 지갑을 가져왔습니다. 잔액을 조회하고 있습니다. 갱신된 잔액을 확인하려면 기다려 주세요" + diff --git a/i18n/po/nl.po b/i18n/po/nl.po new file mode 100644 index 000000000..e536677f7 --- /dev/null +++ b/i18n/po/nl.po @@ -0,0 +1,1414 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Project-Id-Version: copay\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: crowdin.com\n" +"X-Crowdin-Project: copay\n" +"X-Crowdin-Language: nl\n" +"X-Crowdin-File: template.pot\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Last-Translator: cmgustavo83\n" +"Language-Team: Dutch\n" +"Language: nl\n" +"PO-Revision-Date: 2015-08-13 09:15-0400\n" + +#: public/views/walletHome.html +msgid "(possible double spend)" +msgstr "(mogelijk dubbel besteed)" + +#: public/views/modals/txp-details.html +msgid "* A payment proposal can be deleted if 1) you are the creator, and no other copayer has signed, or 2) 24 hours have passed since the proposal was created." +msgstr "* Een betalingsvoorstel kan worden verwijderd als 1) u de aanmaker bent, en geen andere medebetaler heeft ondertekend, of 2) 24 uur zijn verstreken sinds het voorstel werd aangemaakt." + +#: public/views/backup.html +msgid "* You can safely install your backup on another device and use your wallet from multiple devices at the same time." +msgstr "* U kunt veilig uw back-up op een ander apparaat installeren en gebruik maken van uw portefeuille op meerdere apparaten op hetzelfde moment." + +#: public/views/backup.html +msgid "A backup without its private key will allow the user to see the wallet balance, transactions, and create spend proposals. However, it will not be able to approve (sign) proposals." +msgstr "A backup without its private key will allow the user to see the wallet balance, transactions, and create spend proposals. However, it will not be able to approve (sign) proposals." + +#: public/views/splash.html +msgid "A multisignature bitcoin wallet" +msgstr "A multisignature bitcoin wallet" + +#: public/views/preferences.html +msgid "About Copay" +msgstr "About Copay" + +#: public/views/modals/txp-details.html +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Accept" +msgstr "Accept" + +#: public/views/includes/sidebar.html +msgid "Add wallet" +msgstr "Add wallet" + +#: public/views/paymentUri.html +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +msgid "Address" +msgstr "Address" + +#: public/views/preferences.html +msgid "Advanced" +msgstr "Advanced" + +#: public/views/modals/advancedSend.html +msgid "Advanced Send" +msgstr "Advanced Send" + +#: public/views/disclaimer.html +msgid "Agree" +msgstr "Agree" + +#: public/views/preferencesAlias.html +msgid "Alias for {{index.walletName}}" +msgstr "Alias for {{index.walletName}}" + +#: public/views/translators.html +msgid "All contributions to Copay's translation are welcome. Sign up at crowdin.com and join the Copay project at" +msgstr "All contributions to Copay's translation are welcome. Sign up at crowdin.com and join the Copay project at" + +#: public/views/splash.html +msgid "Already have a wallet?" +msgstr "Already have a wallet?" + +#: public/views/preferences.html +msgid "Alternative Currency" +msgstr "Alternative Currency" + +#: public/views/paymentUri.html +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/modals/customized-amount.html +msgid "Amount" +msgstr "Amount" + +#: src/js/services/bwsError.js +msgid "Amount below dust threshold" +msgstr "Amount below dust threshold" + +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html +msgid "Amount in" +msgstr "Amount in" + +#: public/views/preferencesLanguage.html +msgid "Applying changes" +msgstr "Applying changes" + +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +msgid "Are you sure you want to delete this wallet?" +msgstr "Are you sure you want to delete this wallet?" + +#: public/views/walletHome.html +msgid "Available Balance" +msgstr "Available Balance" + +#: public/views/preferencesFee.html +#: public/views/modals/advancedSend.html +msgid "Average confirmation time: {{fee.nbBlocks * 10}} minutes" +msgstr "Average confirmation time: {{fee.nbBlocks * 10}} minutes" + +#: public/views/create.html +#: public/views/join.html +msgid "BIP32 master extended private key" +msgstr "BIP32 master extended private key" + +#: public/views/includes/topbar.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Back" +msgstr "Back" + +#: public/views/preferences.html +msgid "Backup" +msgstr "Backup" + +#: src/js/controllers/backup.js +msgid "Backup created" +msgstr "Backup created" + +#: public/views/walletHome.html +msgid "Backup now" +msgstr "Backup now" + +#: public/views/backup.html +msgid "Backup options" +msgstr "Backup options" + +#: src/js/services/profileService.js +msgid "Bad wallet invitation" +msgstr "Bad wallet invitation" + +#: public/views/walletHome.html +msgid "Before receiving funds, it is highly recommended you backup your wallet keys." +msgstr "Before receiving funds, it is highly recommended you backup your wallet keys." + +#: public/views/preferences.html +msgid "Bitcoin Network Fee Policy" +msgstr "Bitcoin Network Fee Policy" + +#: public/views/paymentUri.html +msgid "Bitcoin URI is NOT valid!" +msgstr "Bitcoin URI is NOT valid!" + +#: public/views/walletHome.html +msgid "Bitcoin address" +msgstr "Bitcoin address" + +#: public/views/preferencesFee.html +msgid "Bitcoin transactions may include a fee collected by miners on the network. The higher the fee, the greater the incentive a miner has to include that transaction in a block. Actual fees are determined based on network load and the selected policy." +msgstr "Bitcoin transactions may include a fee collected by miners on the network. The higher the fee, the greater the incentive a miner has to include that transaction in a block. Actual fees are determined based on network load and the selected policy." + +#: public/views/modals/txp-details.html +msgid "Broadcast Payment" +msgstr "Broadcast Payment" + +#: src/js/controllers/walletHome.js +msgid "Broadcasting Payment" +msgstr "Broadcasting Payment" + +#: src/js/controllers/walletHome.js +msgid "Broadcasting transaction" +msgstr "Broadcasting transaction" + +#: public/views/unsupported.html +msgid "Browser unsupported" +msgstr "Browser unsupported" + +#: public/views/modals/txp-details.html +msgid "But not broadcasted. Try to send manually" +msgstr "But not broadcasted. Try to send manually" + +#: public/views/includes/password.html +msgid "CANCEL" +msgstr "CANCEL" + +#: public/views/copayers.html +#: public/views/walletHome.html +#: public/views/modals/confirmation.html +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Cancel" +msgstr "Cancel" + +#: src/js/services/profileService.js +msgid "Cannot join the same wallet more that once" +msgstr "Cannot join the same wallet more that once" + +#: public/views/modals/paypro.html +msgid "Certified by" +msgstr "Certified by" + +#: public/views/preferencesAlias.html +msgid "Changing wallet alias only affects the local wallet name." +msgstr "Changing wallet alias only affects the local wallet name." + +#: public/views/import.html +msgid "Choose a backup file from your computer" +msgstr "Choose a backup file from your computer" + +#: public/views/modals/wallets.html +msgid "Choose a wallet to send funds" +msgstr "Choose a wallet to send funds" + +#: public/views/includes/topbar.html +#: public/views/modals/advancedSend.html +#: public/views/modals/copayers.html +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +#: public/views/modals/scanner.html +#: public/views/modals/wallets.html +msgid "Close" +msgstr "Close" + +#: public/views/preferences.html +msgid "Color" +msgstr "Color" + +#: public/views/preferencesAbout.html +msgid "Commit hash" +msgstr "Commit hash" + +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Confirm" +msgstr "Confirm" + +#: public/views/modals/tx-details.html +msgid "Confirmations" +msgstr "Confirmations" + +#: src/js/services/bwsError.js +msgid "Copayer already in this wallet" +msgstr "Copayer already in this wallet" + +#: src/js/services/bwsError.js +msgid "Copayer already registered" +msgstr "Copayer already registered" + +#: src/js/services/bwsError.js +msgid "Copayer already voted on this spend proposal" +msgstr "Copayer already voted on this spend proposal" + +#: src/js/services/bwsError.js +msgid "Copayer data mismatch" +msgstr "Copayer data mismatch" + +#: public/views/modals/copayers.html +msgid "Copayers" +msgstr "Copayers" + +#: src/js/controllers/backup.js +#: src/js/controllers/copayers.js +#: src/js/controllers/walletHome.js +msgid "Copied to clipboard" +msgstr "Copied to clipboard" + +#: public/views/backup.html +msgid "Copy backup to a safe place" +msgstr "Copy backup to a safe place" + +#: public/views/backup.html +msgid "Copy this text as it is to a safe place (notepad or email)" +msgstr "Copy this text as it is to a safe place (notepad or email)" + +#: public/views/backup.html +msgid "Copy to clipboard" +msgstr "Copy to clipboard" + +#: src/js/controllers/walletHome.js +msgid "Could not accept payment" +msgstr "Could not accept payment" + +#: src/js/controllers/index.js +msgid "Could not access Wallet Service: Not found" +msgstr "Could not access Wallet Service: Not found" + +#: src/js/controllers/walletHome.js +msgid "Could not broadcast payment" +msgstr "Could not broadcast payment" + +#: src/js/services/addressService.js +msgid "Could not create address" +msgstr "Could not create address" + +#: src/js/controllers/walletHome.js +msgid "Could not create payment proposal" +msgstr "Could not create payment proposal" + +#: src/js/services/profileService.js +msgid "Could not create using the specified extended private key" +msgstr "Could not create using the specified extended private key" + +#: src/js/controllers/import.js +msgid "Could not decrypt file, check your password" +msgstr "Could not decrypt file, check your password" + +#: src/js/controllers/walletHome.js +msgid "Could not delete payment proposal" +msgstr "Could not delete payment proposal" + +#: src/js/controllers/walletHome.js +msgid "Could not fetch payment information" +msgstr "Could not fetch payment information" + +#: public/views/walletHome.html +msgid "Could not fetch transaction history" +msgstr "Could not fetch transaction history" + +#: src/js/services/profileService.js +msgid "Could not import. Check input file and password" +msgstr "Could not import. Check input file and password" + +#: src/js/services/profileService.js +msgid "Could not join using the specified extended private key" +msgstr "Could not join using the specified extended private key" + +#: src/js/services/profileService.js +msgid "Could not join wallet" +msgstr "Could not join wallet" + +#: src/js/controllers/walletHome.js +msgid "Could not recognize a valid Bitcoin QR Code" +msgstr "Could not recognize a valid Bitcoin QR Code" + +#: src/js/controllers/walletHome.js +msgid "Could not reject payment" +msgstr "Could not reject payment" + +#: src/js/controllers/walletHome.js +msgid "Could not send payment" +msgstr "Could not send payment" + +#: src/js/controllers/index.js +msgid "Could not update Wallet" +msgstr "Could not update Wallet" + +#: public/views/walletHome.html +msgid "Create" +msgstr "Create" + +#: public/views/add.html +#: public/views/create.html +msgid "Create new wallet" +msgstr "Create new wallet" + +#: public/views/create.html +msgid "Create {{requiredCopayers}}-of-{{totalCopayers}} wallet" +msgstr "Create {{requiredCopayers}}-of-{{totalCopayers}} wallet" + +#: public/views/includes/sidebar.html +msgid "Create, join or import" +msgstr "Create, join or import" + +#: public/views/modals/txp-details.html +msgid "Created by" +msgstr "Created by" + +#: public/views/splash.html +msgid "Creating Profile..." +msgstr "Creating Profile..." + +#: public/views/create.html +msgid "Creating Wallet..." +msgstr "Creating Wallet..." + +#: src/js/controllers/walletHome.js +msgid "Creating transaction" +msgstr "Creating transaction" + +#: public/views/preferencesFee.html +#: public/views/modals/advancedSend.html +msgid "Current fee rate for this policy: {{fee.feePerKBUnit}}/kiB" +msgstr "Current fee rate for this policy: {{fee.feePerKBUnit}}/kiB" + +#: public/views/modals/tx-details.html +msgid "Date" +msgstr "Date" + +#: public/views/modals/txp-details.html +msgid "Delete Payment Proposal" +msgstr "Delete Payment Proposal" + +#: public/views/preferencesAdvanced.html +msgid "Delete Wallet" +msgstr "Delete Wallet" + +#: public/views/copayers.html +msgid "Delete it and create a new one" +msgstr "Delete it and create a new one" + +#: public/views/preferencesDeleteWallet.html +msgid "Delete wallet" +msgstr "Delete wallet" + +#: src/js/controllers/walletHome.js +msgid "Deleting payment" +msgstr "Deleting payment" + +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Details" +msgstr "Details" + +#: public/views/preferences.html +msgid "Disabled" +msgstr "Disabled" + +#: public/views/backup.html +msgid "Do not include private key in backup" +msgstr "Do not include private key in backup" + +#: public/views/translators.html +msgid "Don't see your language on Crowdin? Contact the Owner on Crowdin! We'd love to support your language." +msgstr "Don't see your language on Crowdin? Contact the Owner on Crowdin! We'd love to support your language." + +#: public/views/walletHome.html +msgid "Download CSV file" +msgstr "Download CSV file" + +#: public/views/backup.html +msgid "Download backup" +msgstr "Download backup" + +#: src/js/services/feeService.js +msgid "Economy" +msgstr "Economy" + +#: public/views/preferences.html +msgid "Email Notifications" +msgstr "Email Notifications" + +#: public/views/preferences.html +msgid "Encrypt Private Key" +msgstr "Encrypt Private Key" + +#: src/js/controllers/backup.js +msgid "Encrypted backup file saved" +msgstr "Encrypted backup file saved" + +#: public/views/includes/password.html +msgid "Enter your password" +msgstr "Enter your password" + +#: src/js/controllers/index.js +msgid "Error at Wallet Service" +msgstr "Error at Wallet Service" + +#: src/js/services/profileService.js +msgid "Error creating wallet" +msgstr "Error creating wallet" + +#: src/js/services/profileService.js +msgid "Error importing wallet:" +msgstr "Error importing wallet:" + +#: public/views/modals/paypro.html +#: public/views/modals/txp-details.html +msgid "Expires" +msgstr "Expires" + +#: public/views/backup.html +msgid "Failed to create backup" +msgstr "Failed to create backup" + +#: src/js/controllers/importLegacy.js +msgid "Failed to import wallets" +msgstr "Failed to import wallets" + +#: public/views/create.html +msgid "Family vacation funds" +msgstr "Family vacation funds" + +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Fee" +msgstr "Fee" + +#: public/views/modals/advancedSend.html +msgid "Fee Policy" +msgstr "Fee Policy" + +#: public/views/walletHome.html +msgid "Fee policy for this transaction" +msgstr "Fee policy for this transaction" + +#. Get information of payment if using Payment Protocol +#: src/js/controllers/walletHome.js +msgid "Fetching Payment Information" +msgstr "Fetching Payment Information" + +#: public/views/translators.html +msgid "French" +msgstr "French" + +#: src/js/services/bwsError.js +msgid "Funds are locked by pending spend proposals" +msgstr "Funds are locked by pending spend proposals" + +#: src/js/services/notificationsService.js +msgid "Funds received" +msgstr "Funds received" + +#: public/views/splash.html +msgid "GET STARTED" +msgstr "GET STARTED" + +#: public/views/modals/customized-amount.html +msgid "Generate QR Code" +msgstr "Generate QR Code" + +#: public/views/walletHome.html +msgid "Generate new address" +msgstr "Generate new address" + +#: public/views/walletHome.html +msgid "Generating .csv file..." +msgstr "Generating .csv file..." + +#: public/views/translators.html +msgid "German" +msgstr "German" + +#: public/views/modals/wallets.html +msgid "Getting address for wallet {{selectedWalletName}} ..." +msgstr "Getting address for wallet {{selectedWalletName}} ..." + +#: public/views/preferences.html +msgid "Global settings" +msgstr "Global settings" + +#: public/views/disclaimer.html +msgid "Go back" +msgstr "Go back" + +#: public/views/translators.html +msgid "Greek" +msgstr "Greek" + +#: public/views/import.html +msgid "Have a Backup from Copay v0.9?" +msgstr "Have a Backup from Copay v0.9?" + +#: public/views/backup.html +#: public/views/create.html +#: public/views/join.html +#: public/views/walletHome.html +msgid "Hide advanced options" +msgstr "Hide advanced options" + +#: src/js/controllers/index.js +msgid "History" +msgstr "History" + +#: src/js/controllers/index.js +msgid "Home" +msgstr "Home" + +#: public/views/disclaimer.html +msgid "I affirm that I have read, understood, and agree with these terms." +msgstr "I affirm that I have read, understood, and agree with these terms." + +#: public/views/create.html +#: public/views/join.html +msgid "If not given, a secure key will be generated" +msgstr "If not given, a secure key will be generated" + +#: public/views/importLegacy.html +msgid "Import" +msgstr "Import" + +#: public/views/import.html +#: public/views/splash.html +msgid "Import backup" +msgstr "Import backup" + +#: public/views/importLegacy.html +msgid "Import from the Cloud?" +msgstr "Import from the Cloud?" + +#: public/views/import.html +msgid "Import here" +msgstr "Import here" + +#: public/views/add.html +msgid "Import wallet" +msgstr "Import wallet" + +#: public/views/import.html +msgid "Importing wallet..." +msgstr "Importing wallet..." + +#: public/views/importLegacy.html +msgid "Importing..." +msgstr "Importing..." + +#: src/js/services/bwsError.js +msgid "Incorrect address network" +msgstr "Incorrect address network" + +#: src/js/services/bwsError.js +msgid "Insufficient funds" +msgstr "Insufficient funds" + +#: src/js/services/bwsError.js +msgid "Insufficient funds for fee" +msgstr "Insufficient funds for fee" + +#: public/views/walletHome.html +msgid "Invalid" +msgstr "Invalid" + +#: src/js/services/bwsError.js +msgid "Invalid address" +msgstr "Invalid address" + +#: src/js/controllers/copayers.js +msgid "Invitation to share a Copay Wallet" +msgstr "Invitation to share a Copay Wallet" + +#: public/views/translators.html +msgid "Italian" +msgstr "Italian" + +#: public/views/translators.html +msgid "Japanese" +msgstr "Japanese" + +#: public/views/create.html +#: public/views/join.html +msgid "John" +msgstr "John" + +#: public/views/join.html +msgid "Join" +msgstr "Join" + +#: src/js/controllers/copayers.js +msgid "Join my Copay wallet. Here is the invitation code: {{secret}} You can download Copay for your phone or desktop at https://copay.io" +msgstr "Join my Copay wallet. Here is the invitation code: {{secret}} You can download Copay for your phone or desktop at https://copay.io" + +#: public/views/add.html +msgid "Join shared wallet" +msgstr "Join shared wallet" + +#: public/views/join.html +msgid "Joining Wallet..." +msgstr "Joining Wallet..." + +#: public/views/preferences.html +msgid "Language" +msgstr "Language" + +#: public/views/importLegacy.html +msgid "Learn more about Wallet Migration" +msgstr "Learn more about Wallet Migration" + +#: src/js/services/bwsError.js +msgid "Locktime in effect. Please wait to create a new spend proposal" +msgstr "Locktime in effect. Please wait to create a new spend proposal" + +#: src/js/services/bwsError.js +msgid "Locktime in effect. Please wait to remove this spend proposal" +msgstr "Locktime in effect. Please wait to remove this spend proposal" + +#: public/views/paymentUri.html +msgid "Make a payment to" +msgstr "Make a payment to" + +#: public/views/create.html +#: public/views/join.html +msgid "Master extended private key" +msgstr "Master extended private key" + +#: public/views/includes/copayers.html +#: public/views/modals/copayers.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Me" +msgstr "Me" + +#: public/views/modals/paypro.html +msgid "Memo" +msgstr "Memo" + +#: public/views/modals/tx-details.html +msgid "Merchant message" +msgstr "Merchant message" + +#: public/views/paymentUri.html +msgid "Message" +msgstr "Message" + +#: public/views/walletHome.html +msgid "More" +msgstr "More" + +#: public/views/walletHome.html +msgid "Moved" +msgstr "Moved" + +#: public/views/walletHome.html +msgid "Multisignature wallet" +msgstr "Multisignature wallet" + +#: public/views/walletHome.html +msgid "My Bitcoin address" +msgstr "My Bitcoin address" + +#: public/views/paymentUri.html +msgid "Network" +msgstr "Network" + +#: src/js/services/bwsError.js +msgid "Network connection error" +msgstr "Network connection error" + +#: src/js/services/notificationsService.js +msgid "New Payment Proposal" +msgstr "New Payment Proposal" + +#: public/views/walletHome.html +msgid "No Private key" +msgstr "No Private key" + +#: public/views/walletHome.html +msgid "No transactions yet" +msgstr "No transactions yet" + +#: src/js/services/feeService.js +msgid "Normal" +msgstr "Normal" + +#: src/js/services/bwsError.js +msgid "Not authorized" +msgstr "Not authorized" + +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html +msgid "Not valid" +msgstr "Not valid" + +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/modals/tx-details.html +msgid "Note" +msgstr "Note" + +#: public/views/includes/alert.html +#: public/views/includes/password.html +msgid "OK" +msgstr "OK" + +#: public/views/modals/tx-status.html +msgid "OKAY" +msgstr "OKAY" + +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Participants" +msgstr "Participants" + +#: public/views/import.html +#: public/views/importLegacy.html +msgid "Password" +msgstr "Password" + +#: public/views/includes/password.html +msgid "Password cannot be recovered. Be sure to write it down" +msgstr "Password cannot be recovered. Be sure to write it down" + +#: src/js/services/profileService.js +msgid "Password needed" +msgstr "Password needed" + +#: src/js/controllers/password.js +msgid "Passwords do not match" +msgstr "Passwords do not match" + +#: public/views/join.html +msgid "Paste invitation here" +msgstr "Paste invitation here" + +#: public/views/import.html +msgid "Paste the backup plain text code" +msgstr "Paste the backup plain text code" + +#: public/views/modals/paypro.html +msgid "Pay To" +msgstr "Pay To" + +#: public/views/modals/tx-status.html +msgid "Payment Accepted" +msgstr "Payment Accepted" + +#: public/views/modals/txp-details.html +msgid "Payment Proposal" +msgstr "Payment Proposal" + +#: public/views/modals/tx-status.html +msgid "Payment Proposal Created" +msgstr "Payment Proposal Created" + +#: src/js/services/notificationsService.js +msgid "Payment Proposal Rejected" +msgstr "Payment Proposal Rejected" + +#: src/js/services/notificationsService.js +msgid "Payment Proposal Rejected by Copayer" +msgstr "Payment Proposal Rejected by Copayer" + +#: src/js/services/notificationsService.js +msgid "Payment Proposal Signed by Copayer" +msgstr "Payment Proposal Signed by Copayer" + +#: public/views/walletHome.html +msgid "Payment Proposals" +msgstr "Payment Proposals" + +#: src/js/controllers/walletHome.js +msgid "Payment Protocol not supported on Chrome App" +msgstr "Payment Protocol not supported on Chrome App" + +#: public/views/modals/tx-status.html +msgid "Payment Rejected" +msgstr "Payment Rejected" + +#: public/views/modals/tx-status.html +#: src/js/services/notificationsService.js +msgid "Payment Sent" +msgstr "Payment Sent" + +#: public/views/modals/txp-details.html +msgid "Payment accepted..." +msgstr "Payment accepted..." + +#: public/views/modals/txp-details.html +msgid "Payment details" +msgstr "Payment details" + +#: public/views/modals/txp-details.html +msgid "Payment finally rejected" +msgstr "Payment finally rejected" + +#: public/views/modals/paypro.html +msgid "Payment request" +msgstr "Payment request" + +#: public/views/modals/txp-details.html +msgid "Payment sent!" +msgstr "Payment sent!" + +#: public/views/walletHome.html +msgid "Payment to" +msgstr "Payment to" + +#: public/views/walletHome.html +msgid "Pending Confirmation" +msgstr "Pending Confirmation" + +#: public/views/preferencesDeleteWallet.html +msgid "Permanently delete this wallet. THIS ACTION CANNOT BE REVERSED" +msgstr "Permanently delete this wallet. THIS ACTION CANNOT BE REVERSED" + +#: public/views/create.html +msgid "Personal Wallet" +msgstr "Personal Wallet" + +#: src/js/controllers/create.js +#: src/js/controllers/join.js +msgid "Please enter the required fields" +msgstr "Please enter the required fields" + +#: src/js/services/bwsError.js +msgid "Please upgrade Copay to perform this action" +msgstr "Please upgrade Copay to perform this action" + +#: src/js/controllers/import.js +msgid "Please, select your backup file" +msgstr "Please, select your backup file" + +#: public/views/translators.html +msgid "Portuguese" +msgstr "Portuguese" + +#: public/views/walletHome.html +msgid "Preferences" +msgstr "Preferences" + +#: src/js/controllers/backup.js +msgid "Preparing backup..." +msgstr "Preparing backup..." + +#: src/js/services/feeService.js +msgid "Priority" +msgstr "Priority" + +#: public/views/modals/customized-amount.html +msgid "QR Code" +msgstr "QR Code" + +#: public/views/modals/scanner.html +msgid "QR-Scanner" +msgstr "QR-Scanner" + +#: src/js/controllers/index.js +msgid "Receive" +msgstr "Receive" + +#: public/views/walletHome.html +msgid "Received" +msgstr "Received" + +#: public/views/includes/output.html +#: public/views/includes/transaction.html +msgid "Recipients" +msgstr "Recipients" + +#: public/views/walletHome.html +msgid "Reconnecting to Wallet Service..." +msgstr "Reconnecting to Wallet Service..." + +#: public/views/walletHome.html +msgid "Recreate" +msgstr "Recreate" + +#: public/views/walletHome.html +msgid "Recreating Wallet..." +msgstr "Recreating Wallet..." + +#: public/views/modals/txp-details.html +msgid "Reject" +msgstr "Reject" + +#: src/js/controllers/walletHome.js +msgid "Rejecting payment" +msgstr "Rejecting payment" + +#: public/views/preferencesAbout.html +msgid "Release Information" +msgstr "Release Information" + +#: public/views/backup.html +#: public/views/includes/password.html +msgid "Repeat password" +msgstr "Repeat password" + +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html +msgid "Request a specific amount" +msgstr "Request a specific amount" + +#: public/views/import.html +#: public/views/join.html +msgid "Required" +msgstr "Required" + +#: public/views/splash.html +msgid "Retrying..." +msgstr "Retrying..." + +#: public/views/translators.html +msgid "Russian" +msgstr "Russian" + +#: public/views/includes/password.html +msgid "SET" +msgstr "SET" + +#: public/views/walletHome.html +msgid "SKIP BACKUP" +msgstr "SKIP BACKUP" + +#: public/views/preferencesAlias.html +#: public/views/preferencesBwsUrl.html +#: public/views/preferencesEmail.html +msgid "Save" +msgstr "Save" + +#: public/views/preferencesEmail.html +msgid "Saving preferences..." +msgstr "Saving preferences..." + +#: src/js/services/notificationsService.js +msgid "Scan Finished" +msgstr "Scan Finished" + +#: public/views/preferencesAdvanced.html +msgid "Scan addresses for funds" +msgstr "Scan addresses for funds" + +#: public/views/walletHome.html +msgid "Scan status finished with error" +msgstr "Scan status finished with error" + +#: public/views/walletHome.html +msgid "Scanning Wallet funds..." +msgstr "Scanning Wallet funds..." + +#: public/views/modals/tx-details.html +msgid "See it on the blockchain" +msgstr "See it on the blockchain" + +#: public/views/import.html +msgid "Select a backup file" +msgstr "Select a backup file" + +#: public/views/paymentUri.html +msgid "Select a wallet" +msgstr "Select a wallet" + +#: public/views/create.html +msgid "Select required number of signatures" +msgstr "Select required number of signatures" + +#: public/views/create.html +msgid "Select total number of copayers" +msgstr "Select total number of copayers" + +#: public/views/walletHome.html +#: public/views/includes/transaction.html +#: src/js/controllers/index.js +msgid "Send" +msgstr "Send" + +#: public/views/walletHome.html +msgid "Send All" +msgstr "Send All" + +#: public/views/backup.html +#: public/views/preferencesLogs.html +msgid "Send by email" +msgstr "Send by email" + +#: public/views/walletHome.html +msgid "Sent" +msgstr "Sent" + +#: public/views/importLegacy.html +msgid "Server" +msgstr "Server" + +#: public/views/preferencesAbout.html +msgid "Session log" +msgstr "Session log" + +#: public/views/backup.html +msgid "Set up a Password for your backup" +msgstr "Set up a Password for your backup" + +#: public/views/includes/password.html +msgid "Set up a password" +msgstr "Set up a password" + +#: public/views/preferencesEmail.html +msgid "Setting up email notifications could weaken your privacy, if the wallet service provider is compromised. Information available to an attacker would include your wallet addresses and its balance, but no more." +msgstr "Setting up email notifications could weaken your privacy, if the wallet service provider is compromised. Information available to an attacker would include your wallet addresses and its balance, but no more." + +#: public/views/walletHome.html +msgid "Share address" +msgstr "Share address" + +#: public/views/copayers.html +msgid "Share invitation" +msgstr "Share invitation" + +#: public/views/copayers.html +msgid "Share this invitation with your copayers" +msgstr "Share this invitation with your copayers" + +#: public/views/walletHome.html +msgid "Share this wallet address to receive payments. To protect your privacy, new addresses are generated automatically once you use them." +msgstr "Share this wallet address to receive payments. To protect your privacy, new addresses are generated automatically once you use them." + +#: public/views/create.html +msgid "Shared Wallet" +msgstr "Shared Wallet" + +#: public/views/backup.html +#: public/views/create.html +#: public/views/join.html +#: public/views/walletHome.html +msgid "Show advanced options" +msgstr "Show advanced options" + +#: src/js/services/bwsError.js +msgid "Signatures rejected by server" +msgstr "Signatures rejected by server" + +#: src/js/controllers/walletHome.js +msgid "Signing payment" +msgstr "Signing payment" + +#: src/js/controllers/walletHome.js +msgid "Signing transaction" +msgstr "Signing transaction" + +#: public/views/translators.html +msgid "Spanish" +msgstr "Spanish" + +#: src/js/services/bwsError.js +msgid "Spend proposal is not accepted" +msgstr "Spend proposal is not accepted" + +#: src/js/services/bwsError.js +msgid "Spend proposal not found" +msgstr "Spend proposal not found" + +#: src/js/controllers/copayers.js +#: src/js/controllers/import.js +#: src/js/controllers/preferencesDelete.js +msgid "Success" +msgstr "Success" + +#: public/views/walletHome.html +msgid "Tap to retry" +msgstr "Tap to retry" + +#: public/views/disclaimer.html +#: public/views/preferencesAbout.html +msgid "Terms of Use" +msgstr "Terms of Use" + +#: public/views/create.html +msgid "Testnet" +msgstr "Testnet" + +#: src/js/controllers/walletHome.js +msgid "The payment was created but could not be completed. Please try again from home screen" +msgstr "The payment was created but could not be completed. Please try again from home screen" + +#: src/js/controllers/walletHome.js +msgid "The payment was created but could not be signed. Please try again from home screen" +msgstr "The payment was created but could not be signed. Please try again from home screen" + +#: public/views/modals/txp-details.html +msgid "The payment was removed by creator" +msgstr "The payment was removed by creator" + +#: src/js/controllers/walletHome.js +msgid "The payment was signed but could not be broadcasted. Please try again from home screen" +msgstr "The payment was signed but could not be broadcasted. Please try again from home screen" + +#: public/views/backup.html +msgid "The private key for this wallet is encrypted. Exporting a backup will keep the private key encrypted in the backup archive." +msgstr "The private key for this wallet is encrypted. Exporting a backup will keep the private key encrypted in the backup archive." + +#: public/views/disclaimer.html +msgid "The software you are about to use functions as a free, open source, and multi-signature digital wallet. The software does not constitute an account where BitPay or other third parties serve as financial intermediaries or custodians of your bitcoin. While the software has undergone beta testing and continues to be improved by feedback from the open-source user and developer community, we cannot guarantee that there will be no bugs in the software. You acknowledge that your use of this software is at your own discretion and in compliance with all applicable laws. You are responsible for safekeeping your passwords, private key pairs, PINs and any other codes you use to access the software. IF YOU LOSE ACCESS TO YOUR COPAY WALLET OR YOUR ENCRYPTED PRIVATE KEYS AND YOU HAVE NOT SEPARATELY STORED A BACKUP OF YOUR WALLET AND CORRESPONDING PASSWORD, YOU ACKNOWLEDGE AND AGREE THAT ANY BITCOIN YOU HAVE ASSOCIATED WITH THAT COPAY WALLET WILL BECOME INACCESSIBLE. All transaction requests are irreversible. The authors of the software, employees and affiliates of Bitpay, copyright holders, and BitPay, Inc. cannot retrieve your private keys or passwords if you lose or forget them and cannot guarantee transaction confirmation as they do not have control over the Bitcoin network. To the fullest extent permitted by law, this software is provided “as is” and no representations or warranties can be made of any kind, express or implied, including but not limited to the warranties of merchantability, fitness or a particular purpose and noninfringement. You assume any and all risks associated with the use of the software. In no event shall the authors of the software, employees and affiliates of Bitpay, copyright holders, or BitPay, Inc. be held liable for any claim, damages or other liability, whether in an action of contract, tort, or otherwise, arising from, out of or in connection with the software. We reserve the right to modify this disclaimer from time to time." +msgstr "The software you are about to use functions as a free, open source, and multi-signature digital wallet. The software does not constitute an account where BitPay or other third parties serve as financial intermediaries or custodians of your bitcoin. While the software has undergone beta testing and continues to be improved by feedback from the open-source user and developer community, we cannot guarantee that there will be no bugs in the software. You acknowledge that your use of this software is at your own discretion and in compliance with all applicable laws. You are responsible for safekeeping your passwords, private key pairs, PINs and any other codes you use to access the software. IF YOU LOSE ACCESS TO YOUR COPAY WALLET OR YOUR ENCRYPTED PRIVATE KEYS AND YOU HAVE NOT SEPARATELY STORED A BACKUP OF YOUR WALLET AND CORRESPONDING PASSWORD, YOU ACKNOWLEDGE AND AGREE THAT ANY BITCOIN YOU HAVE ASSOCIATED WITH THAT COPAY WALLET WILL BECOME INACCESSIBLE. All transaction requests are irreversible. The authors of the software, employees and affiliates of Bitpay, copyright holders, and BitPay, Inc. cannot retrieve your private keys or passwords if you lose or forget them and cannot guarantee transaction confirmation as they do not have control over the Bitcoin network. To the fullest extent permitted by law, this software is provided “as is” and no representations or warranties can be made of any kind, express or implied, including but not limited to the warranties of merchantability, fitness or a particular purpose and noninfringement. You assume any and all risks associated with the use of the software. In no event shall the authors of the software, employees and affiliates of Bitpay, copyright holders, or BitPay, Inc. be held liable for any claim, damages or other liability, whether in an action of contract, tort, or otherwise, arising from, out of or in connection with the software. We reserve the right to modify this disclaimer from time to time." + +#: src/js/services/bwsError.js +msgid "The spend proposal is not pending" +msgstr "The spend proposal is not pending" + +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +msgid "The wallet \"{{walletName}}\" was deleted" +msgstr "The wallet \"{{walletName}}\" was deleted" + +#: public/views/paymentUri.html +msgid "There are no wallets to make this payment" +msgstr "There are no wallets to make this payment" + +#: src/js/controllers/import.js +msgid "There is an error in the form" +msgstr "There is an error in the form" + +#: public/views/modals/tx-details.html +msgid "This transaction has become invalid; possibly due to a double spend attempt." +msgstr "This transaction has become invalid; possibly due to a double spend attempt." + +#: public/views/walletHome.html +msgid "This wallet is not registered at the given Bitcore Wallet Service (BWS). You can recreate it from the local information." +msgstr "This wallet is not registered at the given Bitcore Wallet Service (BWS). You can recreate it from the local information." + +#: public/views/modals/txp-details.html +msgid "Time" +msgstr "Time" + +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/includes/transaction.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "To" +msgstr "To" + +#: public/views/includes/output.html +msgid "Total" +msgstr "Total" + +#: public/views/walletHome.html +msgid "Total Locked Balance" +msgstr "Total Locked Balance" + +#: public/views/modals/tx-details.html +msgid "Transaction" +msgstr "Transaction" + +#: src/js/services/bwsError.js +msgid "Transaction already broadcasted" +msgstr "Transaction already broadcasted" + +#: public/views/translators.html +msgid "Translation Credits" +msgstr "Translation Credits" + +#: public/views/preferencesAbout.html +msgid "Translators" +msgstr "Translators" + +#: src/js/controllers/walletHome.js +msgid "Unable to send transaction proposal" +msgstr "Unable to send transaction proposal" + +#: public/views/walletHome.html +#: public/views/modals/tx-details.html +msgid "Unconfirmed" +msgstr "Unconfirmed" + +#: public/views/preferences.html +msgid "Unit" +msgstr "Unit" + +#: public/views/walletHome.html +msgid "Unsent transactions" +msgstr "Unsent transactions" + +#: public/views/modals/paypro.html +msgid "Untrusted" +msgstr "Untrusted" + +#: public/views/walletHome.html +msgid "Updating Wallet..." +msgstr "Updating Wallet..." + +#: public/views/preferences.html +#: public/views/walletHome.html +msgid "Use Unconfirmed Funds" +msgstr "Use Unconfirmed Funds" + +#: public/views/preferencesAbout.html +msgid "Version" +msgstr "Version" + +#: public/views/backup.html +msgid "View backup" +msgstr "View backup" + +#: public/views/walletHome.html +msgid "WARNING: Backup needed" +msgstr "WARNING: Backup needed" + +#: public/views/walletHome.html +msgid "WARNING: Wallet not registered" +msgstr "WARNING: Wallet not registered" + +#: public/views/splash.html +msgid "WELCOME TO COPAY" +msgstr "WELCOME TO COPAY" + +#: public/views/copayers.html +msgid "Waiting for copayers" +msgstr "Waiting for copayers" + +#: public/views/copayers.html +msgid "Waiting..." +msgstr "Waiting..." + +#: public/views/preferences.html +msgid "Wallet Alias" +msgstr "Wallet Alias" + +#: src/js/services/profileService.js +msgid "Wallet Already Imported:" +msgstr "Wallet Already Imported:" + +#: public/views/join.html +msgid "Wallet Invitation" +msgstr "Wallet Invitation" + +#: public/views/join.html +msgid "Wallet Invitation is not valid!" +msgstr "Wallet Invitation is not valid!" + +#: src/js/services/bwsError.js +#: src/js/services/profileService.js +msgid "Wallet already exists" +msgstr "Wallet already exists" + +#: public/views/copayers.html +msgid "Wallet incomplete and broken" +msgstr "Wallet incomplete and broken" + +#: src/js/services/bwsError.js +msgid "Wallet is full" +msgstr "Wallet is full" + +#: src/js/services/bwsError.js +msgid "Wallet is not complete" +msgstr "Wallet is not complete" + +#: public/views/create.html +msgid "Wallet name" +msgstr "Wallet name" + +#: src/js/services/bwsError.js +msgid "Wallet not found" +msgstr "Wallet not found" + +#: src/js/services/bwsError.js +msgid "Wallet service not found" +msgstr "Wallet service not found" + +#: public/views/preferencesDeleteWallet.html +msgid "Warning!" +msgstr "Warning!" + +#: public/views/modals/txp-details.html +msgid "Warning: this transaction has unconfirmed inputs" +msgstr "Warning: this transaction has unconfirmed inputs" + +#: src/js/services/profileService.js +msgid "Wrong password" +msgstr "Wrong password" + +#: public/views/modals/confirmation.html +msgid "Yes" +msgstr "Yes" + +#: public/views/walletHome.html +msgid "You do not have a wallet" +msgstr "You do not have a wallet" + +#: public/views/backup.html +#: public/views/import.html +msgid "Your backup password" +msgstr "Your backup password" + +#: public/views/create.html +#: public/views/join.html +msgid "Your nickname" +msgstr "Your nickname" + +#: public/views/includes/password.html +msgid "Your password" +msgstr "Your password" + +#: public/views/importLegacy.html +msgid "Your profile password" +msgstr "Your profile password" + +#: src/js/controllers/import.js +msgid "Your wallet has been imported correctly" +msgstr "Your wallet has been imported correctly" + +#: public/views/preferencesEmail.html +msgid "email for wallet notifications" +msgstr "email for wallet notifications" + +#: public/views/walletHome.html +msgid "locked by pending payments" +msgstr "locked by pending payments" + +#: public/views/copayers.html +#: public/views/walletHome.html +#: public/views/includes/sidebar.html +msgid "of" +msgstr "of" + +#: public/views/walletHome.html +msgid "optional" +msgstr "optional" + +#: public/views/preferences.html +msgid "settings" +msgstr "settings" + +#: public/views/walletHome.html +msgid "too long!" +msgstr "too long!" + +#: src/js/controllers/walletHome.js +msgid "{{fee}} will be discounted for bitcoin networking fees" +msgstr "{{fee}} will be discounted for bitcoin networking fees" + +#: src/js/controllers/importLegacy.js +msgid "{{len}} wallets imported. Funds scanning in progress. Hold on to see updated balance" +msgstr "{{len}} wallets imported. Funds scanning in progress. Hold on to see updated balance" + diff --git a/i18n/po/pt.po b/i18n/po/pt.po new file mode 100644 index 000000000..7457cd6c8 --- /dev/null +++ b/i18n/po/pt.po @@ -0,0 +1,1414 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Project-Id-Version: copay\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: crowdin.com\n" +"X-Crowdin-Project: copay\n" +"X-Crowdin-Language: pt-PT\n" +"X-Crowdin-File: template.pot\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Last-Translator: cmgustavo83\n" +"Language-Team: Portuguese\n" +"Language: pt\n" +"PO-Revision-Date: 2015-08-13 09:15-0400\n" + +#: public/views/walletHome.html +msgid "(possible double spend)" +msgstr "(possible double spend)" + +#: public/views/modals/txp-details.html +msgid "* A payment proposal can be deleted if 1) you are the creator, and no other copayer has signed, or 2) 24 hours have passed since the proposal was created." +msgstr "* A payment proposal can be deleted if 1) you are the creator, and no other copayer has signed, or 2) 24 hours have passed since the proposal was created." + +#: public/views/backup.html +msgid "* You can safely install your backup on another device and use your wallet from multiple devices at the same time." +msgstr "* Você pode instalar com segurança seu backup em outro dispositivo e usar sua carteira a partir de vários dispositivos ao mesmo tempo." + +#: public/views/backup.html +msgid "A backup without its private key will allow the user to see the wallet balance, transactions, and create spend proposals. However, it will not be able to approve (sign) proposals." +msgstr "A backup without its private key will allow the user to see the wallet balance, transactions, and create spend proposals. However, it will not be able to approve (sign) proposals." + +#: public/views/splash.html +msgid "A multisignature bitcoin wallet" +msgstr "Uma carteira de bitcoin multi-assinada" + +#: public/views/preferences.html +msgid "About Copay" +msgstr "Sobre a Copay" + +#: public/views/modals/txp-details.html +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Accept" +msgstr "Aceitar" + +#: public/views/includes/sidebar.html +msgid "Add wallet" +msgstr "Adicionar carteira" + +#: public/views/paymentUri.html +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +msgid "Address" +msgstr "Endereço" + +#: public/views/preferences.html +msgid "Advanced" +msgstr "Avançado" + +#: public/views/modals/advancedSend.html +msgid "Advanced Send" +msgstr "Advanced Send" + +#: public/views/disclaimer.html +msgid "Agree" +msgstr "Agree" + +#: public/views/preferencesAlias.html +msgid "Alias for {{index.walletName}}" +msgstr "Alias for {{index.walletName}}" + +#: public/views/translators.html +msgid "All contributions to Copay's translation are welcome. Sign up at crowdin.com and join the Copay project at" +msgstr "All contributions to Copay's translation are welcome. Sign up at crowdin.com and join the Copay project at" + +#: public/views/splash.html +msgid "Already have a wallet?" +msgstr "Já tem uma carteira?" + +#: public/views/preferences.html +msgid "Alternative Currency" +msgstr "Moeda Alternativa" + +#: public/views/paymentUri.html +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/modals/customized-amount.html +msgid "Amount" +msgstr "Valor" + +#: src/js/services/bwsError.js +msgid "Amount below dust threshold" +msgstr "Amount below dust threshold" + +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html +msgid "Amount in" +msgstr "Montante em" + +#: public/views/preferencesLanguage.html +msgid "Applying changes" +msgstr "Aplicar alterações" + +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +msgid "Are you sure you want to delete this wallet?" +msgstr "Tem certeza que deseja excluir esta carteira?" + +#: public/views/walletHome.html +msgid "Available Balance" +msgstr "Saldo Disponível" + +#: public/views/preferencesFee.html +#: public/views/modals/advancedSend.html +msgid "Average confirmation time: {{fee.nbBlocks * 10}} minutes" +msgstr "Average confirmation time: {{fee.nbBlocks * 10}} minutes" + +#: public/views/create.html +#: public/views/join.html +msgid "BIP32 master extended private key" +msgstr "BIP32 master extended private key" + +#: public/views/includes/topbar.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Back" +msgstr "Voltar" + +#: public/views/preferences.html +msgid "Backup" +msgstr "Backup" + +#: src/js/controllers/backup.js +msgid "Backup created" +msgstr "Backup criado" + +#: public/views/walletHome.html +msgid "Backup now" +msgstr "Backup agora" + +#: public/views/backup.html +msgid "Backup options" +msgstr "Opções de backup" + +#: src/js/services/profileService.js +msgid "Bad wallet invitation" +msgstr "Bad wallet invitation" + +#: public/views/walletHome.html +msgid "Before receiving funds, it is highly recommended you backup your wallet keys." +msgstr "Antes de receber fundos, é altamente recomendável que você faça backup de suas chaves de carteira." + +#: public/views/preferences.html +msgid "Bitcoin Network Fee Policy" +msgstr "Bitcoin Network Fee Policy" + +#: public/views/paymentUri.html +msgid "Bitcoin URI is NOT valid!" +msgstr "Bitcoin URI não é válido!" + +#: public/views/walletHome.html +msgid "Bitcoin address" +msgstr "Endereço Bitcoin" + +#: public/views/preferencesFee.html +msgid "Bitcoin transactions may include a fee collected by miners on the network. The higher the fee, the greater the incentive a miner has to include that transaction in a block. Actual fees are determined based on network load and the selected policy." +msgstr "Bitcoin transactions may include a fee collected by miners on the network. The higher the fee, the greater the incentive a miner has to include that transaction in a block. Actual fees are determined based on network load and the selected policy." + +#: public/views/modals/txp-details.html +msgid "Broadcast Payment" +msgstr "Transmitir Pagamento" + +#: src/js/controllers/walletHome.js +msgid "Broadcasting Payment" +msgstr "Transmitindo Pagamento" + +#: src/js/controllers/walletHome.js +msgid "Broadcasting transaction" +msgstr "Transmitindo transação" + +#: public/views/unsupported.html +msgid "Browser unsupported" +msgstr "Navegador não suportado" + +#: public/views/modals/txp-details.html +msgid "But not broadcasted. Try to send manually" +msgstr "Mas não transmitido. Tente enviar manualmente" + +#: public/views/includes/password.html +msgid "CANCEL" +msgstr "CANCELAR" + +#: public/views/copayers.html +#: public/views/walletHome.html +#: public/views/modals/confirmation.html +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Cancel" +msgstr "Cancelar" + +#: src/js/services/profileService.js +msgid "Cannot join the same wallet more that once" +msgstr "Cannot join the same wallet more that once" + +#: public/views/modals/paypro.html +msgid "Certified by" +msgstr "Certificado por" + +#: public/views/preferencesAlias.html +msgid "Changing wallet alias only affects the local wallet name." +msgstr "Alterando o apelido da carteira somente afeta o nome da carteira local." + +#: public/views/import.html +msgid "Choose a backup file from your computer" +msgstr "Escolha um arquivo de backup do seu computador" + +#: public/views/modals/wallets.html +msgid "Choose a wallet to send funds" +msgstr "Choose a wallet to send funds" + +#: public/views/includes/topbar.html +#: public/views/modals/advancedSend.html +#: public/views/modals/copayers.html +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +#: public/views/modals/scanner.html +#: public/views/modals/wallets.html +msgid "Close" +msgstr "Fechar" + +#: public/views/preferences.html +msgid "Color" +msgstr "Cor" + +#: public/views/preferencesAbout.html +msgid "Commit hash" +msgstr "Commit de hash" + +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Confirm" +msgstr "Confirm" + +#: public/views/modals/tx-details.html +msgid "Confirmations" +msgstr "Confirmações" + +#: src/js/services/bwsError.js +msgid "Copayer already in this wallet" +msgstr "Copayer already in this wallet" + +#: src/js/services/bwsError.js +msgid "Copayer already registered" +msgstr "Copayer already registered" + +#: src/js/services/bwsError.js +msgid "Copayer already voted on this spend proposal" +msgstr "Copayer already voted on this spend proposal" + +#: src/js/services/bwsError.js +msgid "Copayer data mismatch" +msgstr "Copayer data mismatch" + +#: public/views/modals/copayers.html +msgid "Copayers" +msgstr "Copayers" + +#: src/js/controllers/backup.js +#: src/js/controllers/copayers.js +#: src/js/controllers/walletHome.js +msgid "Copied to clipboard" +msgstr "Copied to clipboard" + +#: public/views/backup.html +msgid "Copy backup to a safe place" +msgstr "Copie o backup para um lugar seguro" + +#: public/views/backup.html +msgid "Copy this text as it is to a safe place (notepad or email)" +msgstr "Copie este texto como está para um lugar seguro (bloco de notas ou e-mail)" + +#: public/views/backup.html +msgid "Copy to clipboard" +msgstr "Copiar para área de transferência" + +#: src/js/controllers/walletHome.js +msgid "Could not accept payment" +msgstr "Could not accept payment" + +#: src/js/controllers/index.js +msgid "Could not access Wallet Service: Not found" +msgstr "Could not access Wallet Service: Not found" + +#: src/js/controllers/walletHome.js +msgid "Could not broadcast payment" +msgstr "Could not broadcast payment" + +#: src/js/services/addressService.js +msgid "Could not create address" +msgstr "Could not create address" + +#: src/js/controllers/walletHome.js +msgid "Could not create payment proposal" +msgstr "Não foi possível criar proposta de pagamento" + +#: src/js/services/profileService.js +msgid "Could not create using the specified extended private key" +msgstr "Não foi possível criar usando a chave privada estendida especificada" + +#: src/js/controllers/import.js +msgid "Could not decrypt file, check your password" +msgstr "Não foi possível descriptografar o arquivo, verifique sua senha" + +#: src/js/controllers/walletHome.js +msgid "Could not delete payment proposal" +msgstr "Could not delete payment proposal" + +#: src/js/controllers/walletHome.js +msgid "Could not fetch payment information" +msgstr "Não foi possível obter a informação do pagamento" + +#: public/views/walletHome.html +msgid "Could not fetch transaction history" +msgstr "Não foi possível obter o histórico de transação" + +#: src/js/services/profileService.js +msgid "Could not import. Check input file and password" +msgstr "Não foi possível importar. Verifique o arquivo de entrada e senha" + +#: src/js/services/profileService.js +msgid "Could not join using the specified extended private key" +msgstr "Não é possível asssociar-se usando a chave privada estendida especificada" + +#: src/js/services/profileService.js +msgid "Could not join wallet" +msgstr "Could not join wallet" + +#: src/js/controllers/walletHome.js +msgid "Could not recognize a valid Bitcoin QR Code" +msgstr "Could not recognize a valid Bitcoin QR Code" + +#: src/js/controllers/walletHome.js +msgid "Could not reject payment" +msgstr "Could not reject payment" + +#: src/js/controllers/walletHome.js +msgid "Could not send payment" +msgstr "Não foi possível enviar o pagamento" + +#: src/js/controllers/index.js +msgid "Could not update Wallet" +msgstr "Não é possível atualizar carteira" + +#: public/views/walletHome.html +msgid "Create" +msgstr "Criar" + +#: public/views/add.html +#: public/views/create.html +msgid "Create new wallet" +msgstr "Criando nova carteira" + +#: public/views/create.html +msgid "Create {{requiredCopayers}}-of-{{totalCopayers}} wallet" +msgstr "Create {{requiredCopayers}}-of-{{totalCopayers}} wallet" + +#: public/views/includes/sidebar.html +msgid "Create, join or import" +msgstr "Criar, participar ou importar" + +#: public/views/modals/txp-details.html +msgid "Created by" +msgstr "Criado por" + +#: public/views/splash.html +msgid "Creating Profile..." +msgstr "Criando Perfil…" + +#: public/views/create.html +msgid "Creating Wallet..." +msgstr "Criando Carteira…" + +#: src/js/controllers/walletHome.js +msgid "Creating transaction" +msgstr "Criando transação" + +#: public/views/preferencesFee.html +#: public/views/modals/advancedSend.html +msgid "Current fee rate for this policy: {{fee.feePerKBUnit}}/kiB" +msgstr "Current fee rate for this policy: {{fee.feePerKBUnit}}/kiB" + +#: public/views/modals/tx-details.html +msgid "Date" +msgstr "Data" + +#: public/views/modals/txp-details.html +msgid "Delete Payment Proposal" +msgstr "Excluir Proposta de Pagamento" + +#: public/views/preferencesAdvanced.html +msgid "Delete Wallet" +msgstr "Excluir Carteira" + +#: public/views/copayers.html +msgid "Delete it and create a new one" +msgstr "Apagar e criar um novo" + +#: public/views/preferencesDeleteWallet.html +msgid "Delete wallet" +msgstr "Excluir carteira" + +#: src/js/controllers/walletHome.js +msgid "Deleting payment" +msgstr "Excluindo pagamento" + +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Details" +msgstr "Detalhes" + +#: public/views/preferences.html +msgid "Disabled" +msgstr "Desabilitado" + +#: public/views/backup.html +msgid "Do not include private key in backup" +msgstr "Do not include private key in backup" + +#: public/views/translators.html +msgid "Don't see your language on Crowdin? Contact the Owner on Crowdin! We'd love to support your language." +msgstr "Don't see your language on Crowdin? Contact the Owner on Crowdin! We'd love to support your language." + +#: public/views/walletHome.html +msgid "Download CSV file" +msgstr "Download CSV file" + +#: public/views/backup.html +msgid "Download backup" +msgstr "Baixar backup" + +#: src/js/services/feeService.js +msgid "Economy" +msgstr "Economy" + +#: public/views/preferences.html +msgid "Email Notifications" +msgstr "Notificações por E-mail" + +#: public/views/preferences.html +msgid "Encrypt Private Key" +msgstr "Criptografar Chave Privada" + +#: src/js/controllers/backup.js +msgid "Encrypted backup file saved" +msgstr "Arquivo de backup criptografado salvo" + +#: public/views/includes/password.html +msgid "Enter your password" +msgstr "Digite sua senha" + +#: src/js/controllers/index.js +msgid "Error at Wallet Service" +msgstr "Error at Wallet Service" + +#: src/js/services/profileService.js +msgid "Error creating wallet" +msgstr "Erro na criação da carteira" + +#: src/js/services/profileService.js +msgid "Error importing wallet:" +msgstr "Erro importando carteira:" + +#: public/views/modals/paypro.html +#: public/views/modals/txp-details.html +msgid "Expires" +msgstr "Expira" + +#: public/views/backup.html +msgid "Failed to create backup" +msgstr "Failed to create backup" + +#: src/js/controllers/importLegacy.js +msgid "Failed to import wallets" +msgstr "Falha ao importar carteiras" + +#: public/views/create.html +msgid "Family vacation funds" +msgstr "Fundos de férias com a família" + +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Fee" +msgstr "Fee" + +#: public/views/modals/advancedSend.html +msgid "Fee Policy" +msgstr "Fee Policy" + +#: public/views/walletHome.html +msgid "Fee policy for this transaction" +msgstr "Fee policy for this transaction" + +#. Get information of payment if using Payment Protocol +#: src/js/controllers/walletHome.js +msgid "Fetching Payment Information" +msgstr "Buscando Informação de Pagamento" + +#: public/views/translators.html +msgid "French" +msgstr "Francês" + +#: src/js/services/bwsError.js +msgid "Funds are locked by pending spend proposals" +msgstr "Funds are locked by pending spend proposals" + +#: src/js/services/notificationsService.js +msgid "Funds received" +msgstr "Fundos recebidos" + +#: public/views/splash.html +msgid "GET STARTED" +msgstr "COMEÇAR" + +#: public/views/modals/customized-amount.html +msgid "Generate QR Code" +msgstr "Generate QR Code" + +#: public/views/walletHome.html +msgid "Generate new address" +msgstr "Gerar novo endereço" + +#: public/views/walletHome.html +msgid "Generating .csv file..." +msgstr "Generating .csv file..." + +#: public/views/translators.html +msgid "German" +msgstr "Alemão" + +#: public/views/modals/wallets.html +msgid "Getting address for wallet {{selectedWalletName}} ..." +msgstr "Getting address for wallet {{selectedWalletName}} ..." + +#: public/views/preferences.html +msgid "Global settings" +msgstr "Configurações globais" + +#: public/views/disclaimer.html +msgid "Go back" +msgstr "Go back" + +#: public/views/translators.html +msgid "Greek" +msgstr "Grego" + +#: public/views/import.html +msgid "Have a Backup from Copay v0.9?" +msgstr "Tem um Backup do Copay v 0.9?" + +#: public/views/backup.html +#: public/views/create.html +#: public/views/join.html +#: public/views/walletHome.html +msgid "Hide advanced options" +msgstr "Hide advanced options" + +#: src/js/controllers/index.js +msgid "History" +msgstr "História" + +#: src/js/controllers/index.js +msgid "Home" +msgstr "Início" + +#: public/views/disclaimer.html +msgid "I affirm that I have read, understood, and agree with these terms." +msgstr "I affirm that I have read, understood, and agree with these terms." + +#: public/views/create.html +#: public/views/join.html +msgid "If not given, a secure key will be generated" +msgstr "Se não informada, uma chave de segurança será gerada" + +#: public/views/importLegacy.html +msgid "Import" +msgstr "Importar" + +#: public/views/import.html +#: public/views/splash.html +msgid "Import backup" +msgstr "Importar backup" + +#: public/views/importLegacy.html +msgid "Import from the Cloud?" +msgstr "Importar da nuvem?" + +#: public/views/import.html +msgid "Import here" +msgstr "Importar aqui" + +#: public/views/add.html +msgid "Import wallet" +msgstr "Importar carteira" + +#: public/views/import.html +msgid "Importing wallet..." +msgstr "Importando carteira…" + +#: public/views/importLegacy.html +msgid "Importing..." +msgstr "Importando…" + +#: src/js/services/bwsError.js +msgid "Incorrect address network" +msgstr "Incorrect address network" + +#: src/js/services/bwsError.js +msgid "Insufficient funds" +msgstr "Insufficient funds" + +#: src/js/services/bwsError.js +msgid "Insufficient funds for fee" +msgstr "Insufficient funds for fee" + +#: public/views/walletHome.html +msgid "Invalid" +msgstr "Invalid" + +#: src/js/services/bwsError.js +msgid "Invalid address" +msgstr "Invalid address" + +#: src/js/controllers/copayers.js +msgid "Invitation to share a Copay Wallet" +msgstr "Invitation to share a Copay Wallet" + +#: public/views/translators.html +msgid "Italian" +msgstr "Italiano" + +#: public/views/translators.html +msgid "Japanese" +msgstr "Japonês" + +#: public/views/create.html +#: public/views/join.html +msgid "John" +msgstr "John" + +#: public/views/join.html +msgid "Join" +msgstr "Participar" + +#: src/js/controllers/copayers.js +msgid "Join my Copay wallet. Here is the invitation code: {{secret}} You can download Copay for your phone or desktop at https://copay.io" +msgstr "Join my Copay wallet. Here is the invitation code: {{secret}} You can download Copay for your phone or desktop at https://copay.io" + +#: public/views/add.html +msgid "Join shared wallet" +msgstr "Associando carteira compartilhada" + +#: public/views/join.html +msgid "Joining Wallet..." +msgstr "Associando-se a Carteira…" + +#: public/views/preferences.html +msgid "Language" +msgstr "Idioma" + +#: public/views/importLegacy.html +msgid "Learn more about Wallet Migration" +msgstr "Saiba mais sobre Migração de Carteira" + +#: src/js/services/bwsError.js +msgid "Locktime in effect. Please wait to create a new spend proposal" +msgstr "Locktime in effect. Please wait to create a new spend proposal" + +#: src/js/services/bwsError.js +msgid "Locktime in effect. Please wait to remove this spend proposal" +msgstr "Locktime in effect. Please wait to remove this spend proposal" + +#: public/views/paymentUri.html +msgid "Make a payment to" +msgstr "Fazer um pagamento para" + +#: public/views/create.html +#: public/views/join.html +msgid "Master extended private key" +msgstr "Principal chave privada estendida" + +#: public/views/includes/copayers.html +#: public/views/modals/copayers.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Me" +msgstr "Eu" + +#: public/views/modals/paypro.html +msgid "Memo" +msgstr "Nota" + +#: public/views/modals/tx-details.html +msgid "Merchant message" +msgstr "Mensagem do Comerciante" + +#: public/views/paymentUri.html +msgid "Message" +msgstr "Mensagem" + +#: public/views/walletHome.html +msgid "More" +msgstr "Mais" + +#: public/views/walletHome.html +msgid "Moved" +msgstr "Movido" + +#: public/views/walletHome.html +msgid "Multisignature wallet" +msgstr "Carteira multi-assinada" + +#: public/views/walletHome.html +msgid "My Bitcoin address" +msgstr "Meu endereço Bitcoin" + +#: public/views/paymentUri.html +msgid "Network" +msgstr "Rede" + +#: src/js/services/bwsError.js +msgid "Network connection error" +msgstr "Network connection error" + +#: src/js/services/notificationsService.js +msgid "New Payment Proposal" +msgstr "Nova Proposta de Pagamento" + +#: public/views/walletHome.html +msgid "No Private key" +msgstr "No Private key" + +#: public/views/walletHome.html +msgid "No transactions yet" +msgstr "Nenhuma transação ainda" + +#: src/js/services/feeService.js +msgid "Normal" +msgstr "Normal" + +#: src/js/services/bwsError.js +msgid "Not authorized" +msgstr "Not authorized" + +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html +msgid "Not valid" +msgstr "Inválido" + +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/modals/tx-details.html +msgid "Note" +msgstr "Nota" + +#: public/views/includes/alert.html +#: public/views/includes/password.html +msgid "OK" +msgstr "OK" + +#: public/views/modals/tx-status.html +msgid "OKAY" +msgstr "OKAY" + +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Participants" +msgstr "Participantes" + +#: public/views/import.html +#: public/views/importLegacy.html +msgid "Password" +msgstr "Senha" + +#: public/views/includes/password.html +msgid "Password cannot be recovered. Be sure to write it down" +msgstr "Senha não pode ser recuperada. Tenha certeza de anotá-la" + +#: src/js/services/profileService.js +msgid "Password needed" +msgstr "Senha necessária" + +#: src/js/controllers/password.js +msgid "Passwords do not match" +msgstr "As senhas não coincidem" + +#: public/views/join.html +msgid "Paste invitation here" +msgstr "Cole o convite aqui" + +#: public/views/import.html +msgid "Paste the backup plain text code" +msgstr "Cole o texto puro do backup aqui" + +#: public/views/modals/paypro.html +msgid "Pay To" +msgstr "Pagar Para" + +#: public/views/modals/tx-status.html +msgid "Payment Accepted" +msgstr "Pagamento Aceito" + +#: public/views/modals/txp-details.html +msgid "Payment Proposal" +msgstr "Proposta de Pagamento" + +#: public/views/modals/tx-status.html +msgid "Payment Proposal Created" +msgstr "Proposta de Pagamento Criada" + +#: src/js/services/notificationsService.js +msgid "Payment Proposal Rejected" +msgstr "Proposta de Pagamento Rejeitada" + +#: src/js/services/notificationsService.js +msgid "Payment Proposal Rejected by Copayer" +msgstr "Proposta de Pagamento Rejeitada pelo Copayer" + +#: src/js/services/notificationsService.js +msgid "Payment Proposal Signed by Copayer" +msgstr "Proposta de Pagamento Assinada pelo Copayer" + +#: public/views/walletHome.html +msgid "Payment Proposals" +msgstr "Propostas de Pagamento" + +#: src/js/controllers/walletHome.js +msgid "Payment Protocol not supported on Chrome App" +msgstr "Protocolo de pagamento não suportado no Chrome App" + +#: public/views/modals/tx-status.html +msgid "Payment Rejected" +msgstr "Pagamento Rejeitado" + +#: public/views/modals/tx-status.html +#: src/js/services/notificationsService.js +msgid "Payment Sent" +msgstr "Pagamento Enviado" + +#: public/views/modals/txp-details.html +msgid "Payment accepted..." +msgstr "Pagamento aceito…" + +#: public/views/modals/txp-details.html +msgid "Payment details" +msgstr "Detalhes do pagamento" + +#: public/views/modals/txp-details.html +msgid "Payment finally rejected" +msgstr "Pagamento finalmente rejeitado" + +#: public/views/modals/paypro.html +msgid "Payment request" +msgstr "Pedido de pagamento" + +#: public/views/modals/txp-details.html +msgid "Payment sent!" +msgstr "Pagamento enviado!" + +#: public/views/walletHome.html +msgid "Payment to" +msgstr "Pagamento para" + +#: public/views/walletHome.html +msgid "Pending Confirmation" +msgstr "Pending Confirmation" + +#: public/views/preferencesDeleteWallet.html +msgid "Permanently delete this wallet. THIS ACTION CANNOT BE REVERSED" +msgstr "Permanently delete this wallet. THIS ACTION CANNOT BE REVERSED" + +#: public/views/create.html +msgid "Personal Wallet" +msgstr "Carteira Pessoal" + +#: src/js/controllers/create.js +#: src/js/controllers/join.js +msgid "Please enter the required fields" +msgstr "Por favor, preencha os campos obrigatórios" + +#: src/js/services/bwsError.js +msgid "Please upgrade Copay to perform this action" +msgstr "Please upgrade Copay to perform this action" + +#: src/js/controllers/import.js +msgid "Please, select your backup file" +msgstr "Por favor, selecione seu arquivo de backup" + +#: public/views/translators.html +msgid "Portuguese" +msgstr "Português" + +#: public/views/walletHome.html +msgid "Preferences" +msgstr "Preferências" + +#: src/js/controllers/backup.js +msgid "Preparing backup..." +msgstr "Preparing backup..." + +#: src/js/services/feeService.js +msgid "Priority" +msgstr "Priority" + +#: public/views/modals/customized-amount.html +msgid "QR Code" +msgstr "QR Code" + +#: public/views/modals/scanner.html +msgid "QR-Scanner" +msgstr "QR-Scanner" + +#: src/js/controllers/index.js +msgid "Receive" +msgstr "Receber" + +#: public/views/walletHome.html +msgid "Received" +msgstr "Recebido" + +#: public/views/includes/output.html +#: public/views/includes/transaction.html +msgid "Recipients" +msgstr "Recipients" + +#: public/views/walletHome.html +msgid "Reconnecting to Wallet Service..." +msgstr "Reconectando ao Serviço de Carteira…" + +#: public/views/walletHome.html +msgid "Recreate" +msgstr "Recriado" + +#: public/views/walletHome.html +msgid "Recreating Wallet..." +msgstr "Recriando Carteira…" + +#: public/views/modals/txp-details.html +msgid "Reject" +msgstr "Rejeitar" + +#: src/js/controllers/walletHome.js +msgid "Rejecting payment" +msgstr "Rejeitando pagamento" + +#: public/views/preferencesAbout.html +msgid "Release Information" +msgstr "Liberar Informação" + +#: public/views/backup.html +#: public/views/includes/password.html +msgid "Repeat password" +msgstr "Repetir Senha" + +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html +msgid "Request a specific amount" +msgstr "Request a specific amount" + +#: public/views/import.html +#: public/views/join.html +msgid "Required" +msgstr "Obrigatório" + +#: public/views/splash.html +msgid "Retrying..." +msgstr "Repetindo…" + +#: public/views/translators.html +msgid "Russian" +msgstr "Russian" + +#: public/views/includes/password.html +msgid "SET" +msgstr "DEFINIR" + +#: public/views/walletHome.html +msgid "SKIP BACKUP" +msgstr "PULAR BACKUP" + +#: public/views/preferencesAlias.html +#: public/views/preferencesBwsUrl.html +#: public/views/preferencesEmail.html +msgid "Save" +msgstr "Salvar" + +#: public/views/preferencesEmail.html +msgid "Saving preferences..." +msgstr "Salvando preferências…" + +#: src/js/services/notificationsService.js +msgid "Scan Finished" +msgstr "Pesquisa Finalizada" + +#: public/views/preferencesAdvanced.html +msgid "Scan addresses for funds" +msgstr "Pesquisando endereços por fundos" + +#: public/views/walletHome.html +msgid "Scan status finished with error" +msgstr "Pesquisa de status finalizada com erro" + +#: public/views/walletHome.html +msgid "Scanning Wallet funds..." +msgstr "Pesquisando fundos de carteira…" + +#: public/views/modals/tx-details.html +msgid "See it on the blockchain" +msgstr "Veja no blockchain" + +#: public/views/import.html +msgid "Select a backup file" +msgstr "Selecione um arquivo de backup" + +#: public/views/paymentUri.html +msgid "Select a wallet" +msgstr "Selecione uma carteira" + +#: public/views/create.html +msgid "Select required number of signatures" +msgstr "Selecione o número de assinaturas necessárias" + +#: public/views/create.html +msgid "Select total number of copayers" +msgstr "Selecione o número total de copayers" + +#: public/views/walletHome.html +#: public/views/includes/transaction.html +#: src/js/controllers/index.js +msgid "Send" +msgstr "Enviar" + +#: public/views/walletHome.html +msgid "Send All" +msgstr "Send All" + +#: public/views/backup.html +#: public/views/preferencesLogs.html +msgid "Send by email" +msgstr "Enviar por E-mail" + +#: public/views/walletHome.html +msgid "Sent" +msgstr "Enviado" + +#: public/views/importLegacy.html +msgid "Server" +msgstr "Servidor" + +#: public/views/preferencesAbout.html +msgid "Session log" +msgstr "Log da sessão" + +#: public/views/backup.html +msgid "Set up a Password for your backup" +msgstr "Configure uma senha para seu backup" + +#: public/views/includes/password.html +msgid "Set up a password" +msgstr "Configure uma senha" + +#: public/views/preferencesEmail.html +msgid "Setting up email notifications could weaken your privacy, if the wallet service provider is compromised. Information available to an attacker would include your wallet addresses and its balance, but no more." +msgstr "Configurar notificações de e-mail pode enfraquecer sua privacidade se o prestador de serviços de carteira está comprometido. As informações disponíveis para um invasor podem incluir seus endereços carteira e seu saldo, nada mais." + +#: public/views/walletHome.html +msgid "Share address" +msgstr "Compartilhar endereço" + +#: public/views/copayers.html +msgid "Share invitation" +msgstr "Compartilhar convite" + +#: public/views/copayers.html +msgid "Share this invitation with your copayers" +msgstr "Compartilhe este convite com seus copayers" + +#: public/views/walletHome.html +msgid "Share this wallet address to receive payments. To protect your privacy, new addresses are generated automatically once you use them." +msgstr "Compartilhe este endereço da carteira para receber pagamentos. Para proteger sua privacidade, novos endereços são gerados automaticamente cada vez que você usá-los." + +#: public/views/create.html +msgid "Shared Wallet" +msgstr "Compartilhar Carteira" + +#: public/views/backup.html +#: public/views/create.html +#: public/views/join.html +#: public/views/walletHome.html +msgid "Show advanced options" +msgstr "Show advanced options" + +#: src/js/services/bwsError.js +msgid "Signatures rejected by server" +msgstr "Signatures rejected by server" + +#: src/js/controllers/walletHome.js +msgid "Signing payment" +msgstr "Pagamento assinado" + +#: src/js/controllers/walletHome.js +msgid "Signing transaction" +msgstr "Transação assinada" + +#: public/views/translators.html +msgid "Spanish" +msgstr "Espanhol" + +#: src/js/services/bwsError.js +msgid "Spend proposal is not accepted" +msgstr "Spend proposal is not accepted" + +#: src/js/services/bwsError.js +msgid "Spend proposal not found" +msgstr "Spend proposal not found" + +#: src/js/controllers/copayers.js +#: src/js/controllers/import.js +#: src/js/controllers/preferencesDelete.js +msgid "Success" +msgstr "Sucesso" + +#: public/views/walletHome.html +msgid "Tap to retry" +msgstr "Bata para repetir" + +#: public/views/disclaimer.html +#: public/views/preferencesAbout.html +msgid "Terms of Use" +msgstr "Terms of Use" + +#: public/views/create.html +msgid "Testnet" +msgstr "Testnet" + +#: src/js/controllers/walletHome.js +msgid "The payment was created but could not be completed. Please try again from home screen" +msgstr "O pagamento foi criado mas não pode ser completado. Por favor, tente novamente a partir da tela inicial." + +#: src/js/controllers/walletHome.js +msgid "The payment was created but could not be signed. Please try again from home screen" +msgstr "The payment was created but could not be signed. Please try again from home screen" + +#: public/views/modals/txp-details.html +msgid "The payment was removed by creator" +msgstr "O pagamento foi removido pelo criador" + +#: src/js/controllers/walletHome.js +msgid "The payment was signed but could not be broadcasted. Please try again from home screen" +msgstr "The payment was signed but could not be broadcasted. Please try again from home screen" + +#: public/views/backup.html +msgid "The private key for this wallet is encrypted. Exporting a backup will keep the private key encrypted in the backup archive." +msgstr "A chave privada para esta carteira é criptografada. A exportação de um backup manterá a chave privada criptografada no arquivo de backup." + +#: public/views/disclaimer.html +msgid "The software you are about to use functions as a free, open source, and multi-signature digital wallet. The software does not constitute an account where BitPay or other third parties serve as financial intermediaries or custodians of your bitcoin. While the software has undergone beta testing and continues to be improved by feedback from the open-source user and developer community, we cannot guarantee that there will be no bugs in the software. You acknowledge that your use of this software is at your own discretion and in compliance with all applicable laws. You are responsible for safekeeping your passwords, private key pairs, PINs and any other codes you use to access the software. IF YOU LOSE ACCESS TO YOUR COPAY WALLET OR YOUR ENCRYPTED PRIVATE KEYS AND YOU HAVE NOT SEPARATELY STORED A BACKUP OF YOUR WALLET AND CORRESPONDING PASSWORD, YOU ACKNOWLEDGE AND AGREE THAT ANY BITCOIN YOU HAVE ASSOCIATED WITH THAT COPAY WALLET WILL BECOME INACCESSIBLE. All transaction requests are irreversible. The authors of the software, employees and affiliates of Bitpay, copyright holders, and BitPay, Inc. cannot retrieve your private keys or passwords if you lose or forget them and cannot guarantee transaction confirmation as they do not have control over the Bitcoin network. To the fullest extent permitted by law, this software is provided “as is” and no representations or warranties can be made of any kind, express or implied, including but not limited to the warranties of merchantability, fitness or a particular purpose and noninfringement. You assume any and all risks associated with the use of the software. In no event shall the authors of the software, employees and affiliates of Bitpay, copyright holders, or BitPay, Inc. be held liable for any claim, damages or other liability, whether in an action of contract, tort, or otherwise, arising from, out of or in connection with the software. We reserve the right to modify this disclaimer from time to time." +msgstr "The software you are about to use functions as a free, open source, and multi-signature digital wallet. The software does not constitute an account where BitPay or other third parties serve as financial intermediaries or custodians of your bitcoin. While the software has undergone beta testing and continues to be improved by feedback from the open-source user and developer community, we cannot guarantee that there will be no bugs in the software. You acknowledge that your use of this software is at your own discretion and in compliance with all applicable laws. You are responsible for safekeeping your passwords, private key pairs, PINs and any other codes you use to access the software. IF YOU LOSE ACCESS TO YOUR COPAY WALLET OR YOUR ENCRYPTED PRIVATE KEYS AND YOU HAVE NOT SEPARATELY STORED A BACKUP OF YOUR WALLET AND CORRESPONDING PASSWORD, YOU ACKNOWLEDGE AND AGREE THAT ANY BITCOIN YOU HAVE ASSOCIATED WITH THAT COPAY WALLET WILL BECOME INACCESSIBLE. All transaction requests are irreversible. The authors of the software, employees and affiliates of Bitpay, copyright holders, and BitPay, Inc. cannot retrieve your private keys or passwords if you lose or forget them and cannot guarantee transaction confirmation as they do not have control over the Bitcoin network. To the fullest extent permitted by law, this software is provided “as is” and no representations or warranties can be made of any kind, express or implied, including but not limited to the warranties of merchantability, fitness or a particular purpose and noninfringement. You assume any and all risks associated with the use of the software. In no event shall the authors of the software, employees and affiliates of Bitpay, copyright holders, or BitPay, Inc. be held liable for any claim, damages or other liability, whether in an action of contract, tort, or otherwise, arising from, out of or in connection with the software. We reserve the right to modify this disclaimer from time to time." + +#: src/js/services/bwsError.js +msgid "The spend proposal is not pending" +msgstr "The spend proposal is not pending" + +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +msgid "The wallet \"{{walletName}}\" was deleted" +msgstr "A carteira “{{walletName}}” foi removida" + +#: public/views/paymentUri.html +msgid "There are no wallets to make this payment" +msgstr "There are no wallets to make this payment" + +#: src/js/controllers/import.js +msgid "There is an error in the form" +msgstr "Existe um erro no formulário" + +#: public/views/modals/tx-details.html +msgid "This transaction has become invalid; possibly due to a double spend attempt." +msgstr "This transaction has become invalid; possibly due to a double spend attempt." + +#: public/views/walletHome.html +msgid "This wallet is not registered at the given Bitcore Wallet Service (BWS). You can recreate it from the local information." +msgstr "Esta carteira não está registrada no dado serviço Wallet Service Bitcore (BWS) informado. Você pode recriá-la a partir da informação local." + +#: public/views/modals/txp-details.html +msgid "Time" +msgstr "Hora" + +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/includes/transaction.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "To" +msgstr "Para" + +#: public/views/includes/output.html +msgid "Total" +msgstr "Total" + +#: public/views/walletHome.html +msgid "Total Locked Balance" +msgstr "Saldo Total Bloqueado" + +#: public/views/modals/tx-details.html +msgid "Transaction" +msgstr "Transação" + +#: src/js/services/bwsError.js +msgid "Transaction already broadcasted" +msgstr "Transaction already broadcasted" + +#: public/views/translators.html +msgid "Translation Credits" +msgstr "Translation Credits" + +#: public/views/preferencesAbout.html +msgid "Translators" +msgstr "Translators" + +#: src/js/controllers/walletHome.js +msgid "Unable to send transaction proposal" +msgstr "Impossível enviar a proposta de transação" + +#: public/views/walletHome.html +#: public/views/modals/tx-details.html +msgid "Unconfirmed" +msgstr "Não confirmado" + +#: public/views/preferences.html +msgid "Unit" +msgstr "Unidade" + +#: public/views/walletHome.html +msgid "Unsent transactions" +msgstr "Transações não enviadas" + +#: public/views/modals/paypro.html +msgid "Untrusted" +msgstr "Não confiável" + +#: public/views/walletHome.html +msgid "Updating Wallet..." +msgstr "Atualizando Carteira…" + +#: public/views/preferences.html +#: public/views/walletHome.html +msgid "Use Unconfirmed Funds" +msgstr "Use Unconfirmed Funds" + +#: public/views/preferencesAbout.html +msgid "Version" +msgstr "Versão" + +#: public/views/backup.html +msgid "View backup" +msgstr "Ver backup" + +#: public/views/walletHome.html +msgid "WARNING: Backup needed" +msgstr "Atenção: Backup necessário" + +#: public/views/walletHome.html +msgid "WARNING: Wallet not registered" +msgstr "Atenção: Carteira não registrada" + +#: public/views/splash.html +msgid "WELCOME TO COPAY" +msgstr "BEM-VINDO A COPAY" + +#: public/views/copayers.html +msgid "Waiting for copayers" +msgstr "Aguardando copayers" + +#: public/views/copayers.html +msgid "Waiting..." +msgstr "Aguardando…" + +#: public/views/preferences.html +msgid "Wallet Alias" +msgstr "Apelido da Carteira" + +#: src/js/services/profileService.js +msgid "Wallet Already Imported:" +msgstr "Carteira já importada:" + +#: public/views/join.html +msgid "Wallet Invitation" +msgstr "Convite para Carteira" + +#: public/views/join.html +msgid "Wallet Invitation is not valid!" +msgstr "O convite para carteira não é válido!" + +#: src/js/services/bwsError.js +#: src/js/services/profileService.js +msgid "Wallet already exists" +msgstr "A carteira já existe" + +#: public/views/copayers.html +msgid "Wallet incomplete and broken" +msgstr "Carteira incompleta e quebrada" + +#: src/js/services/bwsError.js +msgid "Wallet is full" +msgstr "Wallet is full" + +#: src/js/services/bwsError.js +msgid "Wallet is not complete" +msgstr "Wallet is not complete" + +#: public/views/create.html +msgid "Wallet name" +msgstr "Nome da carteira" + +#: src/js/services/bwsError.js +msgid "Wallet not found" +msgstr "Wallet not found" + +#: src/js/services/bwsError.js +msgid "Wallet service not found" +msgstr "Wallet service not found" + +#: public/views/preferencesDeleteWallet.html +msgid "Warning!" +msgstr "Atenção!" + +#: public/views/modals/txp-details.html +msgid "Warning: this transaction has unconfirmed inputs" +msgstr "Warning: this transaction has unconfirmed inputs" + +#: src/js/services/profileService.js +msgid "Wrong password" +msgstr "Senha errada" + +#: public/views/modals/confirmation.html +msgid "Yes" +msgstr "Sim" + +#: public/views/walletHome.html +msgid "You do not have a wallet" +msgstr "Você não tem uma carteira" + +#: public/views/backup.html +#: public/views/import.html +msgid "Your backup password" +msgstr "Sua senha de backup" + +#: public/views/create.html +#: public/views/join.html +msgid "Your nickname" +msgstr "Seu apelido" + +#: public/views/includes/password.html +msgid "Your password" +msgstr "Sua senha" + +#: public/views/importLegacy.html +msgid "Your profile password" +msgstr "Sua senha de perfil" + +#: src/js/controllers/import.js +msgid "Your wallet has been imported correctly" +msgstr "Sua carteira foi importada corretamente" + +#: public/views/preferencesEmail.html +msgid "email for wallet notifications" +msgstr "e-mail para notificações de carteira" + +#: public/views/walletHome.html +msgid "locked by pending payments" +msgstr "bloqueado por pagamentos pendentes" + +#: public/views/copayers.html +#: public/views/walletHome.html +#: public/views/includes/sidebar.html +msgid "of" +msgstr "de" + +#: public/views/walletHome.html +msgid "optional" +msgstr "opcional" + +#: public/views/preferences.html +msgid "settings" +msgstr "configurações" + +#: public/views/walletHome.html +msgid "too long!" +msgstr "muito tempo!" + +#: src/js/controllers/walletHome.js +msgid "{{fee}} will be discounted for bitcoin networking fees" +msgstr "{{fee}} will be discounted for bitcoin networking fees" + +#: src/js/controllers/importLegacy.js +msgid "{{len}} wallets imported. Funds scanning in progress. Hold on to see updated balance" +msgstr "{{len}} carteiras importadas. Recursos de digitalização em andamento. Espere para ver o saldo atualizado" + diff --git a/i18n/po/ru.po b/i18n/po/ru.po new file mode 100644 index 000000000..9414e2c39 --- /dev/null +++ b/i18n/po/ru.po @@ -0,0 +1,1414 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Project-Id-Version: copay\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: crowdin.com\n" +"X-Crowdin-Project: copay\n" +"X-Crowdin-Language: ru\n" +"X-Crowdin-File: template.pot\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Last-Translator: cmgustavo83\n" +"Language-Team: Russian\n" +"Language: ru\n" +"PO-Revision-Date: 2015-08-14 22:46-0400\n" + +#: public/views/walletHome.html +msgid "(possible double spend)" +msgstr "(возможна двойная трата)" + +#: public/views/modals/txp-details.html +msgid "* A payment proposal can be deleted if 1) you are the creator, and no other copayer has signed, or 2) 24 hours have passed since the proposal was created." +msgstr "* Предложение платежа может быть удалено если 1) вы создали предложение, и никто его еще не подписал, или 2) прошло более 24 часов с момента создания предложения." + +#: public/views/backup.html +msgid "* You can safely install your backup on another device and use your wallet from multiple devices at the same time." +msgstr "* Вы можете безопасно восстановить свою резервную копию на другом устройстве и использовать ваш кошелек с нескольких устройств одновременно." + +#: public/views/backup.html +msgid "A backup without its private key will allow the user to see the wallet balance, transactions, and create spend proposals. However, it will not be able to approve (sign) proposals." +msgstr "Резервная копия без закрытого ключа позволит пользователю видеть баланс кошелька, транзакции, и создавать предложения платежей. Однако будет невозможно одобрить (подписать) предложения." + +#: public/views/splash.html +msgid "A multisignature bitcoin wallet" +msgstr "Bitcoin-кошелёк с мультиподписью" + +#: public/views/preferences.html +msgid "About Copay" +msgstr "О Copay" + +#: public/views/modals/txp-details.html +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Accept" +msgstr "Принять" + +#: public/views/includes/sidebar.html +msgid "Add wallet" +msgstr "Добавить кошелёк" + +#: public/views/paymentUri.html +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +msgid "Address" +msgstr "Адрес" + +#: public/views/preferences.html +msgid "Advanced" +msgstr "Подробнее" + +#: public/views/modals/advancedSend.html +msgid "Advanced Send" +msgstr "Расширенные настройки платежа" + +#: public/views/disclaimer.html +msgid "Agree" +msgstr "Соглашаюсь" + +#: public/views/preferencesAlias.html +msgid "Alias for {{index.walletName}}" +msgstr "Псевдоним для {{index.walletName}}" + +#: public/views/translators.html +msgid "All contributions to Copay's translation are welcome. Sign up at crowdin.com and join the Copay project at" +msgstr "Любой вклад в перевод Copay приветствуются. Регистрируйтесь на crowdin.com и присоединяйтесь к проекту Copay на" + +#: public/views/splash.html +msgid "Already have a wallet?" +msgstr "Уже есть кошелек?" + +#: public/views/preferences.html +msgid "Alternative Currency" +msgstr "Альтернативная валюта" + +#: public/views/paymentUri.html +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/modals/customized-amount.html +msgid "Amount" +msgstr "Сумма" + +#: src/js/services/bwsError.js +msgid "Amount below dust threshold" +msgstr "Сумма ниже возможного порога" + +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html +msgid "Amount in" +msgstr "Сумма в" + +#: public/views/preferencesLanguage.html +msgid "Applying changes" +msgstr "Применение изменений" + +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +msgid "Are you sure you want to delete this wallet?" +msgstr "Вы уверены, что хотите удалить этот кошелек?" + +#: public/views/walletHome.html +msgid "Available Balance" +msgstr "Доступный баланс" + +#: public/views/preferencesFee.html +#: public/views/modals/advancedSend.html +msgid "Average confirmation time: {{fee.nbBlocks * 10}} minutes" +msgstr "Среднее время подтверждения: {{fee.nbBlocks * 10}} минут" + +#: public/views/create.html +#: public/views/join.html +msgid "BIP32 master extended private key" +msgstr "BIP32-мастер расширенного закрытого ключа" + +#: public/views/includes/topbar.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Back" +msgstr "Назад" + +#: public/views/preferences.html +msgid "Backup" +msgstr "Резервное копирование" + +#: src/js/controllers/backup.js +msgid "Backup created" +msgstr "Резервная копия создана" + +#: public/views/walletHome.html +msgid "Backup now" +msgstr "Создать резервную копию" + +#: public/views/backup.html +msgid "Backup options" +msgstr "Параметры резервной копии" + +#: src/js/services/profileService.js +msgid "Bad wallet invitation" +msgstr "Недействительное приглашение присоединиться к кошельку" + +#: public/views/walletHome.html +msgid "Before receiving funds, it is highly recommended you backup your wallet keys." +msgstr "До получения средств, настоятельно рекомендуется, чтобы вы сделали резервную копию ключей кошелька." + +#: public/views/preferences.html +msgid "Bitcoin Network Fee Policy" +msgstr "Политика комиссии в сети Bitcoin" + +#: public/views/paymentUri.html +msgid "Bitcoin URI is NOT valid!" +msgstr "Bitcoin URI не действителен!" + +#: public/views/walletHome.html +msgid "Bitcoin address" +msgstr "Адрес bitcoin" + +#: public/views/preferencesFee.html +msgid "Bitcoin transactions may include a fee collected by miners on the network. The higher the fee, the greater the incentive a miner has to include that transaction in a block. Actual fees are determined based on network load and the selected policy." +msgstr "Биткойн-транзакции могут включать комиссию, собираемую майнерами в сети. Чем выше комиссия, тем больше стимул для майнера включить транзакцию в блок. Фактическая комиссия определяется на основе сетевой нагрузки и выбранной политики." + +#: public/views/modals/txp-details.html +msgid "Broadcast Payment" +msgstr "Отправить платёж" + +#: src/js/controllers/walletHome.js +msgid "Broadcasting Payment" +msgstr "Отправление платежа" + +#: src/js/controllers/walletHome.js +msgid "Broadcasting transaction" +msgstr "Создание транзакции" + +#: public/views/unsupported.html +msgid "Browser unsupported" +msgstr "Браузер не поддерживается" + +#: public/views/modals/txp-details.html +msgid "But not broadcasted. Try to send manually" +msgstr "Не отправлено. Попробуйте отправить вручную" + +#: public/views/includes/password.html +msgid "CANCEL" +msgstr "ОТМЕНА" + +#: public/views/copayers.html +#: public/views/walletHome.html +#: public/views/modals/confirmation.html +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Cancel" +msgstr "Отмена" + +#: src/js/services/profileService.js +msgid "Cannot join the same wallet more that once" +msgstr "Нельзя присоединиться к одному и тому же кошельку более одного раза" + +#: public/views/modals/paypro.html +msgid "Certified by" +msgstr "Сертифицирован" + +#: public/views/preferencesAlias.html +msgid "Changing wallet alias only affects the local wallet name." +msgstr "Изменение псевдонима кошелька влияет только на название локального кошелька." + +#: public/views/import.html +msgid "Choose a backup file from your computer" +msgstr "Выберите файл резервной копии с вашего компьютера" + +#: public/views/modals/wallets.html +msgid "Choose a wallet to send funds" +msgstr "Выберите кошелёк для отправки средств" + +#: public/views/includes/topbar.html +#: public/views/modals/advancedSend.html +#: public/views/modals/copayers.html +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +#: public/views/modals/scanner.html +#: public/views/modals/wallets.html +msgid "Close" +msgstr "Закрыть" + +#: public/views/preferences.html +msgid "Color" +msgstr "Цвет" + +#: public/views/preferencesAbout.html +msgid "Commit hash" +msgstr "Хэш версии" + +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Confirm" +msgstr "Подтвердить" + +#: public/views/modals/tx-details.html +msgid "Confirmations" +msgstr "Подтверждения" + +#: src/js/services/bwsError.js +msgid "Copayer already in this wallet" +msgstr "Совладелец кошелька уже присоединился" + +#: src/js/services/bwsError.js +msgid "Copayer already registered" +msgstr "Совладелец кошелька уже зарегистрирован" + +#: src/js/services/bwsError.js +msgid "Copayer already voted on this spend proposal" +msgstr "Совладелец кошелька уже проголосовал по этому предложению платежа" + +#: src/js/services/bwsError.js +msgid "Copayer data mismatch" +msgstr "Несоответствие данных совладельца кошелька" + +#: public/views/modals/copayers.html +msgid "Copayers" +msgstr "Совладельцы кошелька" + +#: src/js/controllers/backup.js +#: src/js/controllers/copayers.js +#: src/js/controllers/walletHome.js +msgid "Copied to clipboard" +msgstr "Скопировано в буфер обмена" + +#: public/views/backup.html +msgid "Copy backup to a safe place" +msgstr "Сохраните резервную копию в надежном месте" + +#: public/views/backup.html +msgid "Copy this text as it is to a safe place (notepad or email)" +msgstr "Скопируйте этот текст как есть (в блокнот или отправьте по электронной почте)" + +#: public/views/backup.html +msgid "Copy to clipboard" +msgstr "Скопировать в буфер обмена" + +#: src/js/controllers/walletHome.js +msgid "Could not accept payment" +msgstr "Не удалось принять платёж" + +#: src/js/controllers/index.js +msgid "Could not access Wallet Service: Not found" +msgstr "Не удалось получить доступ к службе кошелька: не найдена" + +#: src/js/controllers/walletHome.js +msgid "Could not broadcast payment" +msgstr "Не удалось отправить платёж" + +#: src/js/services/addressService.js +msgid "Could not create address" +msgstr "Не удалось создать адрес" + +#: src/js/controllers/walletHome.js +msgid "Could not create payment proposal" +msgstr "Не удалось создать предложение платежа" + +#: src/js/services/profileService.js +msgid "Could not create using the specified extended private key" +msgstr "Не удалось создать используя указанный расширенный закрытый ключ" + +#: src/js/controllers/import.js +msgid "Could not decrypt file, check your password" +msgstr "Не удалось расшифровать файл, проверьте ваш пароль" + +#: src/js/controllers/walletHome.js +msgid "Could not delete payment proposal" +msgstr "Не удалось удалить предложение платежа" + +#: src/js/controllers/walletHome.js +msgid "Could not fetch payment information" +msgstr "Не удалось получить информацию о платеже" + +#: public/views/walletHome.html +msgid "Could not fetch transaction history" +msgstr "Не удалось получить историю транзакций" + +#: src/js/services/profileService.js +msgid "Could not import. Check input file and password" +msgstr "Не удалось импортировать. Проверьте входной файл и пароль" + +#: src/js/services/profileService.js +msgid "Could not join using the specified extended private key" +msgstr "Не удалось присоединиться используя указанный расширенный закрытый ключ" + +#: src/js/services/profileService.js +msgid "Could not join wallet" +msgstr "Не удалось присоединиться к кошельку" + +#: src/js/controllers/walletHome.js +msgid "Could not recognize a valid Bitcoin QR Code" +msgstr "Не удалось распознать действительный Bitcoin QR-код" + +#: src/js/controllers/walletHome.js +msgid "Could not reject payment" +msgstr "Не удалось отклонить платёж" + +#: src/js/controllers/walletHome.js +msgid "Could not send payment" +msgstr "Не удалось отправить платёж" + +#: src/js/controllers/index.js +msgid "Could not update Wallet" +msgstr "Не удалось обновить кошелёк" + +#: public/views/walletHome.html +msgid "Create" +msgstr "Создать" + +#: public/views/add.html +#: public/views/create.html +msgid "Create new wallet" +msgstr "Создать новый кошелёк" + +#: public/views/create.html +msgid "Create {{requiredCopayers}}-of-{{totalCopayers}} wallet" +msgstr "Создать кошелёк {{requiredCopayers}}-из-{{totalCopayers}}" + +#: public/views/includes/sidebar.html +msgid "Create, join or import" +msgstr "Создать, присоединиться или импортировать" + +#: public/views/modals/txp-details.html +msgid "Created by" +msgstr "Создан" + +#: public/views/splash.html +msgid "Creating Profile..." +msgstr "Создание профиля..." + +#: public/views/create.html +msgid "Creating Wallet..." +msgstr "Создание кошелька..." + +#: src/js/controllers/walletHome.js +msgid "Creating transaction" +msgstr "Создание транзакции" + +#: public/views/preferencesFee.html +#: public/views/modals/advancedSend.html +msgid "Current fee rate for this policy: {{fee.feePerKBUnit}}/kiB" +msgstr "Текущая ставка комиссии для этой политики: {{fee.feePerKBUnit}}/kiB" + +#: public/views/modals/tx-details.html +msgid "Date" +msgstr "Дата" + +#: public/views/modals/txp-details.html +msgid "Delete Payment Proposal" +msgstr "Удалить предложение платежа" + +#: public/views/preferencesAdvanced.html +msgid "Delete Wallet" +msgstr "Удалить кошелёк" + +#: public/views/copayers.html +msgid "Delete it and create a new one" +msgstr "Удалите и создайте заново" + +#: public/views/preferencesDeleteWallet.html +msgid "Delete wallet" +msgstr "Удалить кошелёк" + +#: src/js/controllers/walletHome.js +msgid "Deleting payment" +msgstr "Удаление платежа" + +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Details" +msgstr "Подробности" + +#: public/views/preferences.html +msgid "Disabled" +msgstr "Выключено" + +#: public/views/backup.html +msgid "Do not include private key in backup" +msgstr "Не включать в резервную копию закрытый ключ" + +#: public/views/translators.html +msgid "Don't see your language on Crowdin? Contact the Owner on Crowdin! We'd love to support your language." +msgstr "Не видите свой язык на Crowdin? Свяжитесь с владельцем по Crowdin! Мы с удовольствием поддержим ваш язык." + +#: public/views/walletHome.html +msgid "Download CSV file" +msgstr "Скачать CSV-файл" + +#: public/views/backup.html +msgid "Download backup" +msgstr "Скачать резервную копию" + +#: src/js/services/feeService.js +msgid "Economy" +msgstr "Экономичный" + +#: public/views/preferences.html +msgid "Email Notifications" +msgstr "Email-уведомления" + +#: public/views/preferences.html +msgid "Encrypt Private Key" +msgstr "Зашифровать закрытый ключ" + +#: src/js/controllers/backup.js +msgid "Encrypted backup file saved" +msgstr "Зашифрованный файл резервной копии сохранен" + +#: public/views/includes/password.html +msgid "Enter your password" +msgstr "Введите свой пароль" + +#: src/js/controllers/index.js +msgid "Error at Wallet Service" +msgstr "Ошибка в службе кошелька" + +#: src/js/services/profileService.js +msgid "Error creating wallet" +msgstr "Ошибка создания кошелька" + +#: src/js/services/profileService.js +msgid "Error importing wallet:" +msgstr "Ошибка импорта кошелька:" + +#: public/views/modals/paypro.html +#: public/views/modals/txp-details.html +msgid "Expires" +msgstr "Срок действия" + +#: public/views/backup.html +msgid "Failed to create backup" +msgstr "Не удалось создать резервную копию" + +#: src/js/controllers/importLegacy.js +msgid "Failed to import wallets" +msgstr "Не удалось импортировать кошельки" + +#: public/views/create.html +msgid "Family vacation funds" +msgstr "Средства на семейный отпуск" + +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Fee" +msgstr "Комиссия" + +#: public/views/modals/advancedSend.html +msgid "Fee Policy" +msgstr "Политика комиссии" + +#: public/views/walletHome.html +msgid "Fee policy for this transaction" +msgstr "Политика комиссий для этой транзакции" + +#. Get information of payment if using Payment Protocol +#: src/js/controllers/walletHome.js +msgid "Fetching Payment Information" +msgstr "Извлечение информации платежа" + +#: public/views/translators.html +msgid "French" +msgstr "французский" + +#: src/js/services/bwsError.js +msgid "Funds are locked by pending spend proposals" +msgstr "Средства заблокированы ожидающим предложением платежа" + +#: src/js/services/notificationsService.js +msgid "Funds received" +msgstr "Принят платёж" + +#: public/views/splash.html +msgid "GET STARTED" +msgstr "НАЧАТЬ" + +#: public/views/modals/customized-amount.html +msgid "Generate QR Code" +msgstr "Сгенерировать QR-код" + +#: public/views/walletHome.html +msgid "Generate new address" +msgstr "Создать новый адрес" + +#: public/views/walletHome.html +msgid "Generating .csv file..." +msgstr "Создание .сsv-файла..." + +#: public/views/translators.html +msgid "German" +msgstr "немецкий" + +#: public/views/modals/wallets.html +msgid "Getting address for wallet {{selectedWalletName}} ..." +msgstr "Получение адреса для кошелька {{selectedWalletName}}..." + +#: public/views/preferences.html +msgid "Global settings" +msgstr "Глобальные настройки" + +#: public/views/disclaimer.html +msgid "Go back" +msgstr "Вернуться" + +#: public/views/translators.html +msgid "Greek" +msgstr "греческий" + +#: public/views/import.html +msgid "Have a Backup from Copay v0.9?" +msgstr "Есть резервная копия из Copay v0.9?" + +#: public/views/backup.html +#: public/views/create.html +#: public/views/join.html +#: public/views/walletHome.html +msgid "Hide advanced options" +msgstr "Скрыть дополнительные настройки" + +#: src/js/controllers/index.js +msgid "History" +msgstr "История" + +#: src/js/controllers/index.js +msgid "Home" +msgstr "Главная" + +#: public/views/disclaimer.html +msgid "I affirm that I have read, understood, and agree with these terms." +msgstr "Я подтверждаю, что я прочитал(а), понял(а) и согласен(а) с настоящими условиями." + +#: public/views/create.html +#: public/views/join.html +msgid "If not given, a secure key will be generated" +msgstr "Если не указан, безопасный ключ будет создан" + +#: public/views/importLegacy.html +msgid "Import" +msgstr "Импорт" + +#: public/views/import.html +#: public/views/splash.html +msgid "Import backup" +msgstr "Импорт резервной копии" + +#: public/views/importLegacy.html +msgid "Import from the Cloud?" +msgstr "Импортировать из облака?" + +#: public/views/import.html +msgid "Import here" +msgstr "Импортировать сюда" + +#: public/views/add.html +msgid "Import wallet" +msgstr "Импорт кошелька" + +#: public/views/import.html +msgid "Importing wallet..." +msgstr "Импорт кошелька..." + +#: public/views/importLegacy.html +msgid "Importing..." +msgstr "Импорт..." + +#: src/js/services/bwsError.js +msgid "Incorrect address network" +msgstr "Неверный адрес" + +#: src/js/services/bwsError.js +msgid "Insufficient funds" +msgstr "Недостаточно средств" + +#: src/js/services/bwsError.js +msgid "Insufficient funds for fee" +msgstr "Недостаточно средств на комиссию" + +#: public/views/walletHome.html +msgid "Invalid" +msgstr "Недействительно" + +#: src/js/services/bwsError.js +msgid "Invalid address" +msgstr "Неверный адрес" + +#: src/js/controllers/copayers.js +msgid "Invitation to share a Copay Wallet" +msgstr "Приглашение присоединиться к кошельку Copay" + +#: public/views/translators.html +msgid "Italian" +msgstr "итальянский" + +#: public/views/translators.html +msgid "Japanese" +msgstr "японский" + +#: public/views/create.html +#: public/views/join.html +msgid "John" +msgstr "John" + +#: public/views/join.html +msgid "Join" +msgstr "Присоединиться" + +#: src/js/controllers/copayers.js +msgid "Join my Copay wallet. Here is the invitation code: {{secret}} You can download Copay for your phone or desktop at https://copay.io" +msgstr "Присоединяйтесь к моему кошельку Copay. Вот код приглашения: {{secret}} Вы можете скачать Copay для своего телефона или настольного компьютера на https://copay.io" + +#: public/views/add.html +msgid "Join shared wallet" +msgstr "Присоединиться к общему кошельку" + +#: public/views/join.html +msgid "Joining Wallet..." +msgstr "Присоединение к кошельку..." + +#: public/views/preferences.html +msgid "Language" +msgstr "Язык" + +#: public/views/importLegacy.html +msgid "Learn more about Wallet Migration" +msgstr "Узнайте больше о переносе кошелька" + +#: src/js/services/bwsError.js +msgid "Locktime in effect. Please wait to create a new spend proposal" +msgstr "Действует блокировка. Пожалуйста, подождите, чтобы создать новое предложение платежа" + +#: src/js/services/bwsError.js +msgid "Locktime in effect. Please wait to remove this spend proposal" +msgstr "Действует блокировка. Пожалуйста, подождите, чтобы удалить это предложение платежа" + +#: public/views/paymentUri.html +msgid "Make a payment to" +msgstr "Сделать платёж" + +#: public/views/create.html +#: public/views/join.html +msgid "Master extended private key" +msgstr "Мастер расширенного закрытого ключа" + +#: public/views/includes/copayers.html +#: public/views/modals/copayers.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Me" +msgstr "Я" + +#: public/views/modals/paypro.html +msgid "Memo" +msgstr "Памятка" + +#: public/views/modals/tx-details.html +msgid "Merchant message" +msgstr "Сообщение от продавца" + +#: public/views/paymentUri.html +msgid "Message" +msgstr "Сообщение" + +#: public/views/walletHome.html +msgid "More" +msgstr "Подробнее" + +#: public/views/walletHome.html +msgid "Moved" +msgstr "Перемещено" + +#: public/views/walletHome.html +msgid "Multisignature wallet" +msgstr "Кошелёк с мультиподписью" + +#: public/views/walletHome.html +msgid "My Bitcoin address" +msgstr "Мой адрес Bitcoin" + +#: public/views/paymentUri.html +msgid "Network" +msgstr "Сеть" + +#: src/js/services/bwsError.js +msgid "Network connection error" +msgstr "Ошибка сетевого подключения" + +#: src/js/services/notificationsService.js +msgid "New Payment Proposal" +msgstr "Новое предложение платежа" + +#: public/views/walletHome.html +msgid "No Private key" +msgstr "Нет закрытого ключа" + +#: public/views/walletHome.html +msgid "No transactions yet" +msgstr "Транзакций пока не было" + +#: src/js/services/feeService.js +msgid "Normal" +msgstr "Обычный" + +#: src/js/services/bwsError.js +msgid "Not authorized" +msgstr "Не авторизован" + +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html +msgid "Not valid" +msgstr "Не действительно" + +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/modals/tx-details.html +msgid "Note" +msgstr "Примечание" + +#: public/views/includes/alert.html +#: public/views/includes/password.html +msgid "OK" +msgstr "Хорошо" + +#: public/views/modals/tx-status.html +msgid "OKAY" +msgstr "ХОРОШО" + +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Participants" +msgstr "Участники" + +#: public/views/import.html +#: public/views/importLegacy.html +msgid "Password" +msgstr "Пароль" + +#: public/views/includes/password.html +msgid "Password cannot be recovered. Be sure to write it down" +msgstr "Пароль не может быть восстановлен. Обязательно запишите его" + +#: src/js/services/profileService.js +msgid "Password needed" +msgstr "Нужен пароль" + +#: src/js/controllers/password.js +msgid "Passwords do not match" +msgstr "Пароли не совпадают" + +#: public/views/join.html +msgid "Paste invitation here" +msgstr "Вставьте приглашение сюда" + +#: public/views/import.html +msgid "Paste the backup plain text code" +msgstr "Вставьте код резервной копии обычным текстом" + +#: public/views/modals/paypro.html +msgid "Pay To" +msgstr "Отправить платёж" + +#: public/views/modals/tx-status.html +msgid "Payment Accepted" +msgstr "Платёж принят" + +#: public/views/modals/txp-details.html +msgid "Payment Proposal" +msgstr "Предложение платежа" + +#: public/views/modals/tx-status.html +msgid "Payment Proposal Created" +msgstr "Создано предложение платежа" + +#: src/js/services/notificationsService.js +msgid "Payment Proposal Rejected" +msgstr "Предложение платежа отклонено" + +#: src/js/services/notificationsService.js +msgid "Payment Proposal Rejected by Copayer" +msgstr "Предложение платежа отклонено совладельцем кошелька" + +#: src/js/services/notificationsService.js +msgid "Payment Proposal Signed by Copayer" +msgstr "Предложение платежа подписано совладельцем кошелька" + +#: public/views/walletHome.html +msgid "Payment Proposals" +msgstr "Предложение платежа" + +#: src/js/controllers/walletHome.js +msgid "Payment Protocol not supported on Chrome App" +msgstr "Платёжный протокол не поддерживается в приложении Chrome" + +#: public/views/modals/tx-status.html +msgid "Payment Rejected" +msgstr "Платёж отклонён" + +#: public/views/modals/tx-status.html +#: src/js/services/notificationsService.js +msgid "Payment Sent" +msgstr "Платёж отправлен" + +#: public/views/modals/txp-details.html +msgid "Payment accepted..." +msgstr "Платёж принят..." + +#: public/views/modals/txp-details.html +msgid "Payment details" +msgstr "Детали платежа" + +#: public/views/modals/txp-details.html +msgid "Payment finally rejected" +msgstr "Платёж окончательно отклонён" + +#: public/views/modals/paypro.html +msgid "Payment request" +msgstr "Запрос платежа" + +#: public/views/modals/txp-details.html +msgid "Payment sent!" +msgstr "Платёж отправлен!" + +#: public/views/walletHome.html +msgid "Payment to" +msgstr "Платёж" + +#: public/views/walletHome.html +msgid "Pending Confirmation" +msgstr "Ожидание подтверждения" + +#: public/views/preferencesDeleteWallet.html +msgid "Permanently delete this wallet. THIS ACTION CANNOT BE REVERSED" +msgstr "Окончательно удалить этот кошелёк. ЭТО ДЕЙСТВИЕ НЕ МОЖЕТ БЫТЬ ОТМЕНЕНО" + +#: public/views/create.html +msgid "Personal Wallet" +msgstr "Личный кошелёк" + +#: src/js/controllers/create.js +#: src/js/controllers/join.js +msgid "Please enter the required fields" +msgstr "Пожалуйста, заполните необходимые поля" + +#: src/js/services/bwsError.js +msgid "Please upgrade Copay to perform this action" +msgstr "Пожалуйста, обновите Copay для выполнения этого действия" + +#: src/js/controllers/import.js +msgid "Please, select your backup file" +msgstr "Пожалуйста, выберите ваш файл резервной копии" + +#: public/views/translators.html +msgid "Portuguese" +msgstr "португальский" + +#: public/views/walletHome.html +msgid "Preferences" +msgstr "Предпочтения" + +#: src/js/controllers/backup.js +msgid "Preparing backup..." +msgstr "Подготовка резервной копии..." + +#: src/js/services/feeService.js +msgid "Priority" +msgstr "Приоритетный" + +#: public/views/modals/customized-amount.html +msgid "QR Code" +msgstr "QR-код" + +#: public/views/modals/scanner.html +msgid "QR-Scanner" +msgstr "QR-сканер" + +#: src/js/controllers/index.js +msgid "Receive" +msgstr "Получить" + +#: public/views/walletHome.html +msgid "Received" +msgstr "Получен" + +#: public/views/includes/output.html +#: public/views/includes/transaction.html +msgid "Recipients" +msgstr "Получатели" + +#: public/views/walletHome.html +msgid "Reconnecting to Wallet Service..." +msgstr "Повторное подключение к службе кошелька..." + +#: public/views/walletHome.html +msgid "Recreate" +msgstr "Создать заново" + +#: public/views/walletHome.html +msgid "Recreating Wallet..." +msgstr "Воссоздаю кошелёк..." + +#: public/views/modals/txp-details.html +msgid "Reject" +msgstr "Отклонить" + +#: src/js/controllers/walletHome.js +msgid "Rejecting payment" +msgstr "Отклонение платежа" + +#: public/views/preferencesAbout.html +msgid "Release Information" +msgstr "Расскрыть информацию" + +#: public/views/backup.html +#: public/views/includes/password.html +msgid "Repeat password" +msgstr "Повторите пароль" + +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html +msgid "Request a specific amount" +msgstr "Запросить определенную сумму" + +#: public/views/import.html +#: public/views/join.html +msgid "Required" +msgstr "Необходимо" + +#: public/views/splash.html +msgid "Retrying..." +msgstr "Повторная попытка..." + +#: public/views/translators.html +msgid "Russian" +msgstr "русский" + +#: public/views/includes/password.html +msgid "SET" +msgstr "УСТАНОВИТЬ" + +#: public/views/walletHome.html +msgid "SKIP BACKUP" +msgstr "ПРОПУСТИТЬ РЕЗЕРВНОЕ КОПИРОВАНИЕ" + +#: public/views/preferencesAlias.html +#: public/views/preferencesBwsUrl.html +#: public/views/preferencesEmail.html +msgid "Save" +msgstr "Сохранить" + +#: public/views/preferencesEmail.html +msgid "Saving preferences..." +msgstr "Сохранение настроек..." + +#: src/js/services/notificationsService.js +msgid "Scan Finished" +msgstr "Сканирование завершено" + +#: public/views/preferencesAdvanced.html +msgid "Scan addresses for funds" +msgstr "Сканировать адреса для средств" + +#: public/views/walletHome.html +msgid "Scan status finished with error" +msgstr "Сканирование завершено с ошибкой" + +#: public/views/walletHome.html +msgid "Scanning Wallet funds..." +msgstr "Сканирование средств кошелька..." + +#: public/views/modals/tx-details.html +msgid "See it on the blockchain" +msgstr "Посмотреть на blockchain" + +#: public/views/import.html +msgid "Select a backup file" +msgstr "Выберите файл резервной копии" + +#: public/views/paymentUri.html +msgid "Select a wallet" +msgstr "Выберите кошелёк" + +#: public/views/create.html +msgid "Select required number of signatures" +msgstr "Выберите необходимое количество подписей" + +#: public/views/create.html +msgid "Select total number of copayers" +msgstr "Выберите общее количество совладельцев кошелька" + +#: public/views/walletHome.html +#: public/views/includes/transaction.html +#: src/js/controllers/index.js +msgid "Send" +msgstr "Отправить" + +#: public/views/walletHome.html +msgid "Send All" +msgstr "Отправить все" + +#: public/views/backup.html +#: public/views/preferencesLogs.html +msgid "Send by email" +msgstr "Отправить по email" + +#: public/views/walletHome.html +msgid "Sent" +msgstr "Отправлено" + +#: public/views/importLegacy.html +msgid "Server" +msgstr "Сервер" + +#: public/views/preferencesAbout.html +msgid "Session log" +msgstr "Журнал сеанса" + +#: public/views/backup.html +msgid "Set up a Password for your backup" +msgstr "Выберите пароль для вашей резервной копии" + +#: public/views/includes/password.html +msgid "Set up a password" +msgstr "Выберите пароль" + +#: public/views/preferencesEmail.html +msgid "Setting up email notifications could weaken your privacy, if the wallet service provider is compromised. Information available to an attacker would include your wallet addresses and its balance, but no more." +msgstr "Включение email-уведомлений может ослабить вашу конфиденциальность, если поставщик услуг кошелька будет скомпрометирован. Информация доступная злоумышленнику будет включать адреса вашего кошелька и его баланс, но больше ничего." + +#: public/views/walletHome.html +msgid "Share address" +msgstr "Отправить адрес" + +#: public/views/copayers.html +msgid "Share invitation" +msgstr "Отправить приглашение" + +#: public/views/copayers.html +msgid "Share this invitation with your copayers" +msgstr "Отправьте приглашение совладельцам кошелька" + +#: public/views/walletHome.html +msgid "Share this wallet address to receive payments. To protect your privacy, new addresses are generated automatically once you use them." +msgstr "Поделитесь этим адресом кошелька получения платежей. Для защиты вашей конфиденциальности, новые адреса создаются автоматически как только вы их использовали." + +#: public/views/create.html +msgid "Shared Wallet" +msgstr "Общий бумажник" + +#: public/views/backup.html +#: public/views/create.html +#: public/views/join.html +#: public/views/walletHome.html +msgid "Show advanced options" +msgstr "Показать дополнительные настройки" + +#: src/js/services/bwsError.js +msgid "Signatures rejected by server" +msgstr "Подписи отклонены сервером" + +#: src/js/controllers/walletHome.js +msgid "Signing payment" +msgstr "Подписание платежа" + +#: src/js/controllers/walletHome.js +msgid "Signing transaction" +msgstr "Подписание транзакции" + +#: public/views/translators.html +msgid "Spanish" +msgstr "испанский" + +#: src/js/services/bwsError.js +msgid "Spend proposal is not accepted" +msgstr "Предложение платежа не принято" + +#: src/js/services/bwsError.js +msgid "Spend proposal not found" +msgstr "Предложение платежа не найдено" + +#: src/js/controllers/copayers.js +#: src/js/controllers/import.js +#: src/js/controllers/preferencesDelete.js +msgid "Success" +msgstr "Успешно" + +#: public/views/walletHome.html +msgid "Tap to retry" +msgstr "Нажмите для повторения" + +#: public/views/disclaimer.html +#: public/views/preferencesAbout.html +msgid "Terms of Use" +msgstr "Условия использования" + +#: public/views/create.html +msgid "Testnet" +msgstr "Testnet" + +#: src/js/controllers/walletHome.js +msgid "The payment was created but could not be completed. Please try again from home screen" +msgstr "Платёж был создан, но не может быть завершен. Пожалуйста, попробуйте снова с главной страницы" + +#: src/js/controllers/walletHome.js +msgid "The payment was created but could not be signed. Please try again from home screen" +msgstr "Платёж был создан, но не может быть завершен. Пожалуйста, попробуйте снова с главной страницы" + +#: public/views/modals/txp-details.html +msgid "The payment was removed by creator" +msgstr "Платёж был удалён его создателем" + +#: src/js/controllers/walletHome.js +msgid "The payment was signed but could not be broadcasted. Please try again from home screen" +msgstr "Платёж был подписан, но не может быть отправлен. Пожалуйста, попробуйте снова с главной страницы" + +#: public/views/backup.html +msgid "The private key for this wallet is encrypted. Exporting a backup will keep the private key encrypted in the backup archive." +msgstr "Закрытый ключ для этого кошелька зашифрован. Экспорт резервной копии будет содержать закрытый ключ в зашифрованном виде в архиве резервой копии." + +#: public/views/disclaimer.html +msgid "The software you are about to use functions as a free, open source, and multi-signature digital wallet. The software does not constitute an account where BitPay or other third parties serve as financial intermediaries or custodians of your bitcoin. While the software has undergone beta testing and continues to be improved by feedback from the open-source user and developer community, we cannot guarantee that there will be no bugs in the software. You acknowledge that your use of this software is at your own discretion and in compliance with all applicable laws. You are responsible for safekeeping your passwords, private key pairs, PINs and any other codes you use to access the software. IF YOU LOSE ACCESS TO YOUR COPAY WALLET OR YOUR ENCRYPTED PRIVATE KEYS AND YOU HAVE NOT SEPARATELY STORED A BACKUP OF YOUR WALLET AND CORRESPONDING PASSWORD, YOU ACKNOWLEDGE AND AGREE THAT ANY BITCOIN YOU HAVE ASSOCIATED WITH THAT COPAY WALLET WILL BECOME INACCESSIBLE. All transaction requests are irreversible. The authors of the software, employees and affiliates of Bitpay, copyright holders, and BitPay, Inc. cannot retrieve your private keys or passwords if you lose or forget them and cannot guarantee transaction confirmation as they do not have control over the Bitcoin network. To the fullest extent permitted by law, this software is provided “as is” and no representations or warranties can be made of any kind, express or implied, including but not limited to the warranties of merchantability, fitness or a particular purpose and noninfringement. You assume any and all risks associated with the use of the software. In no event shall the authors of the software, employees and affiliates of Bitpay, copyright holders, or BitPay, Inc. be held liable for any claim, damages or other liability, whether in an action of contract, tort, or otherwise, arising from, out of or in connection with the software. We reserve the right to modify this disclaimer from time to time." +msgstr "Программное обеспечение, которое вы собираетесь использовать, функционирует как цифровой кошелёк - бесплатный, с открытым исходным кодом и мультиподписью. Программное обеспечение не является счетом, где BitPay или других третьих сторон выступают в качестве финансовых посредников или хранителей ваших биткойнов. Хотя программное обеспечение прошло бета-тестирования и продолжает улучшаться путем обратной связи с пользователями открытого исходного кода и сообществом разработчиков, мы не можем гарантировать, что не будет никаких ошибок в программном обеспечении. Вы признаете, что используете это программное обеспечение по вашему собственному усмотрению и в соответствии со всеми применимыми законами. Вы ответственны за хранение ваших паролей, пары закрытых ключей, ПИН-кодов и любых других кодов, которые вы используете для доступа к программному обеспечению. ЕСЛИ ВЫ ПОТЕРЯЕТЕ ДОСТУП К ВАШЕМУ КОШЕЛЬКУ COPAY ИЛИ ВАШИМ ЗАШИФРОВАННЫМ ЗАКРЫТЫМ КЛЮЧАМ, И У ВАС НЕ ХРАНИЛАСЬ ОТДЕЛЬНО РЕЗЕРВНАЯ КОПИЯ ВАШЕГО БУМАЖНИКА И СООТВЕТСТВУЮЩИЙ ПАРОЛЬ, ВЫ ПРИЗНАЕТЕ И СОГЛАШАЕТЕСЬ, ЧТО ЛЮБЫЕ БИТКОЙНЫ, КОТОРЫЕ СВЯЗАННЫ С ЭТИМ КОШЕЛЬКОМ COPAY СТАНУТ НЕДОСТУПНЫМИ. Все транзакции являются необратимыми. Авторы программного обеспечения, работников и связанные лица Bitpay, владельцы авторских прав и BitPay, Inc. не могут восстановить ваши закрытые ключи или пароли, если вы потеряете или забудете их и не могут гарантировать подтверждение транзакций, поскольку они не имеют контроля над сетью Bitcoin. В максимальной степени, разрешенной законом это программное обеспечение предоставляется «как есть», и никаких заверений или гарантий не может быть дано - любого рода, явных или подразумеваемых, включая, но не ограничиваясь гарантии товарности, пригодности или конкретной цели и ненарушения. Вы принимаете на себя любые и все виды рисков, связанные с использованием программного обеспечения. Ни при каком случае авторы программного обеспечения, работников и связанные лица Bitpay, владельцы авторских прав, или BitPay, Inc. не несут ответственности за любые претензии, убытки или иной ответственности, будь то в действие контракта, правонарушения, или иным образом, проистекающей из, вне или в связи с программным обеспечением. Мы оставляем за собой право время от времени изменять этот отказ." + +#: src/js/services/bwsError.js +msgid "The spend proposal is not pending" +msgstr "Предложение платежа не в ожидании" + +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +msgid "The wallet \"{{walletName}}\" was deleted" +msgstr "Кошелёк «{{walletName}}» был удален" + +#: public/views/paymentUri.html +msgid "There are no wallets to make this payment" +msgstr "Нет кошельков, чтобы осуществить этот платёж" + +#: src/js/controllers/import.js +msgid "There is an error in the form" +msgstr "В форме ошибка" + +#: public/views/modals/tx-details.html +msgid "This transaction has become invalid; possibly due to a double spend attempt." +msgstr "Эта транзакция стала недействительной; возможно из-за попытки двойной траты." + +#: public/views/walletHome.html +msgid "This wallet is not registered at the given Bitcore Wallet Service (BWS). You can recreate it from the local information." +msgstr "Это кошелёк не зарегистрирован в данной службе кошелька Bitcore (BWS). Вы можете воссоздать его из локальной информации." + +#: public/views/modals/txp-details.html +msgid "Time" +msgstr "Время" + +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/includes/transaction.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "To" +msgstr "Кому" + +#: public/views/includes/output.html +msgid "Total" +msgstr "Итого" + +#: public/views/walletHome.html +msgid "Total Locked Balance" +msgstr "Всего заблокировано средств" + +#: public/views/modals/tx-details.html +msgid "Transaction" +msgstr "Транзакция" + +#: src/js/services/bwsError.js +msgid "Transaction already broadcasted" +msgstr "Транзакция уже отправлена" + +#: public/views/translators.html +msgid "Translation Credits" +msgstr "Благодарность за перевод" + +#: public/views/preferencesAbout.html +msgid "Translators" +msgstr "Переводчики" + +#: src/js/controllers/walletHome.js +msgid "Unable to send transaction proposal" +msgstr "Не удается отправить предложение транзакции" + +#: public/views/walletHome.html +#: public/views/modals/tx-details.html +msgid "Unconfirmed" +msgstr "Неподтверждено" + +#: public/views/preferences.html +msgid "Unit" +msgstr "Единица измерения" + +#: public/views/walletHome.html +msgid "Unsent transactions" +msgstr "Неотправленные транзакции" + +#: public/views/modals/paypro.html +msgid "Untrusted" +msgstr "Ненадежно" + +#: public/views/walletHome.html +msgid "Updating Wallet..." +msgstr "Обновление кошелька..." + +#: public/views/preferences.html +#: public/views/walletHome.html +msgid "Use Unconfirmed Funds" +msgstr "Использовать неподтверждённые средства" + +#: public/views/preferencesAbout.html +msgid "Version" +msgstr "Версия" + +#: public/views/backup.html +msgid "View backup" +msgstr "Просмотр резервной копии" + +#: public/views/walletHome.html +msgid "WARNING: Backup needed" +msgstr "ПРЕДУПРЕЖДЕНИЕ: Необходимо резервное копирование" + +#: public/views/walletHome.html +msgid "WARNING: Wallet not registered" +msgstr "ПРЕДУПРЕЖДЕНИЕ: Кошелёк не зарегистрирован" + +#: public/views/splash.html +msgid "WELCOME TO COPAY" +msgstr "ДОБРО ПОЖАЛОВАТЬ В COPAY" + +#: public/views/copayers.html +msgid "Waiting for copayers" +msgstr "Ожидание совладельцев кошелька" + +#: public/views/copayers.html +msgid "Waiting..." +msgstr "Ожидание..." + +#: public/views/preferences.html +msgid "Wallet Alias" +msgstr "Псевдоним кошелька" + +#: src/js/services/profileService.js +msgid "Wallet Already Imported:" +msgstr "Кошелек уже импортирован:" + +#: public/views/join.html +msgid "Wallet Invitation" +msgstr "Приглашение присоединиться к кошельку" + +#: public/views/join.html +msgid "Wallet Invitation is not valid!" +msgstr "Приглашение присоединиться к кошельку не действительно!" + +#: src/js/services/bwsError.js +#: src/js/services/profileService.js +msgid "Wallet already exists" +msgstr "Кошелёк уже существует" + +#: public/views/copayers.html +msgid "Wallet incomplete and broken" +msgstr "Сбой: кошелёк не работает" + +#: src/js/services/bwsError.js +msgid "Wallet is full" +msgstr "Все уже присоединены" + +#: src/js/services/bwsError.js +msgid "Wallet is not complete" +msgstr "Не все ещё присоединились" + +#: public/views/create.html +msgid "Wallet name" +msgstr "Имя кошелька" + +#: src/js/services/bwsError.js +msgid "Wallet not found" +msgstr "Кошелёк не найден" + +#: src/js/services/bwsError.js +msgid "Wallet service not found" +msgstr "Служба кошелька не найдена" + +#: public/views/preferencesDeleteWallet.html +msgid "Warning!" +msgstr "Предупреждение!" + +#: public/views/modals/txp-details.html +msgid "Warning: this transaction has unconfirmed inputs" +msgstr "Предупреждение: эта транзакция имеет неподтвержденные входы" + +#: src/js/services/profileService.js +msgid "Wrong password" +msgstr "Неверный пароль" + +#: public/views/modals/confirmation.html +msgid "Yes" +msgstr "Да" + +#: public/views/walletHome.html +msgid "You do not have a wallet" +msgstr "У вас нет кошелька" + +#: public/views/backup.html +#: public/views/import.html +msgid "Your backup password" +msgstr "Ваш пароль резервной копии" + +#: public/views/create.html +#: public/views/join.html +msgid "Your nickname" +msgstr "Ваше имя" + +#: public/views/includes/password.html +msgid "Your password" +msgstr "Ваш пароль" + +#: public/views/importLegacy.html +msgid "Your profile password" +msgstr "Пароль вашего профиля" + +#: src/js/controllers/import.js +msgid "Your wallet has been imported correctly" +msgstr "Ваш кошелёк был импортирован правильно" + +#: public/views/preferencesEmail.html +msgid "email for wallet notifications" +msgstr "адрес email для уведомлений кошелька" + +#: public/views/walletHome.html +msgid "locked by pending payments" +msgstr "заблокировано в ожидании платежей" + +#: public/views/copayers.html +#: public/views/walletHome.html +#: public/views/includes/sidebar.html +msgid "of" +msgstr "из" + +#: public/views/walletHome.html +msgid "optional" +msgstr "необязательно" + +#: public/views/preferences.html +msgid "settings" +msgstr "настройки" + +#: public/views/walletHome.html +msgid "too long!" +msgstr "слишком долго!" + +#: src/js/controllers/walletHome.js +msgid "{{fee}} will be discounted for bitcoin networking fees" +msgstr "{{fee}} будет использовано для оплаты комиссии" + +#: src/js/controllers/importLegacy.js +msgid "{{len}} wallets imported. Funds scanning in progress. Hold on to see updated balance" +msgstr "{{len}} кошельки импортированы. Идёт сканирование средств. Дождитесь обновлённого баланса" + diff --git a/i18n/po/sq.po b/i18n/po/sq.po new file mode 100644 index 000000000..899d2fd41 --- /dev/null +++ b/i18n/po/sq.po @@ -0,0 +1,1414 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Project-Id-Version: copay\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: crowdin.com\n" +"X-Crowdin-Project: copay\n" +"X-Crowdin-Language: sq\n" +"X-Crowdin-File: template.pot\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Last-Translator: cmgustavo83\n" +"Language-Team: Albanian\n" +"Language: sq\n" +"PO-Revision-Date: 2015-08-13 09:15-0400\n" + +#: public/views/walletHome.html +msgid "(possible double spend)" +msgstr "(possible double spend)" + +#: public/views/modals/txp-details.html +msgid "* A payment proposal can be deleted if 1) you are the creator, and no other copayer has signed, or 2) 24 hours have passed since the proposal was created." +msgstr "* A payment proposal can be deleted if 1) you are the creator, and no other copayer has signed, or 2) 24 hours have passed since the proposal was created." + +#: public/views/backup.html +msgid "* You can safely install your backup on another device and use your wallet from multiple devices at the same time." +msgstr "* You can safely install your backup on another device and use your wallet from multiple devices at the same time." + +#: public/views/backup.html +msgid "A backup without its private key will allow the user to see the wallet balance, transactions, and create spend proposals. However, it will not be able to approve (sign) proposals." +msgstr "A backup without its private key will allow the user to see the wallet balance, transactions, and create spend proposals. However, it will not be able to approve (sign) proposals." + +#: public/views/splash.html +msgid "A multisignature bitcoin wallet" +msgstr "A multisignature bitcoin wallet" + +#: public/views/preferences.html +msgid "About Copay" +msgstr "Rreth Copay" + +#: public/views/modals/txp-details.html +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Accept" +msgstr "Prano" + +#: public/views/includes/sidebar.html +msgid "Add wallet" +msgstr "Shto kuletë" + +#: public/views/paymentUri.html +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +msgid "Address" +msgstr "Adresa" + +#: public/views/preferences.html +msgid "Advanced" +msgstr "Avancuar" + +#: public/views/modals/advancedSend.html +msgid "Advanced Send" +msgstr "Dërgim i avancuar" + +#: public/views/disclaimer.html +msgid "Agree" +msgstr "Pranoj" + +#: public/views/preferencesAlias.html +msgid "Alias for {{index.walletName}}" +msgstr "Nofka për {{index.walletName}}" + +#: public/views/translators.html +msgid "All contributions to Copay's translation are welcome. Sign up at crowdin.com and join the Copay project at" +msgstr "All contributions to Copay's translation are welcome. Sign up at crowdin.com and join the Copay project at" + +#: public/views/splash.html +msgid "Already have a wallet?" +msgstr "Tashmë keni një kuletë?" + +#: public/views/preferences.html +msgid "Alternative Currency" +msgstr "Monedhë alternative" + +#: public/views/paymentUri.html +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/modals/customized-amount.html +msgid "Amount" +msgstr "Shuma" + +#: src/js/services/bwsError.js +msgid "Amount below dust threshold" +msgstr "Amount below dust threshold" + +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html +msgid "Amount in" +msgstr "Shuma në" + +#: public/views/preferencesLanguage.html +msgid "Applying changes" +msgstr "Duke aplikuar ndryshimet" + +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +msgid "Are you sure you want to delete this wallet?" +msgstr "Jeni i sigurtë që doni të fshini këtë kuletë?" + +#: public/views/walletHome.html +msgid "Available Balance" +msgstr "Shuma në dispozicion" + +#: public/views/preferencesFee.html +#: public/views/modals/advancedSend.html +msgid "Average confirmation time: {{fee.nbBlocks * 10}} minutes" +msgstr "Koha mesatare e konfirmimit: {{fee.nbBlocks * 10}} minuta" + +#: public/views/create.html +#: public/views/join.html +msgid "BIP32 master extended private key" +msgstr "BIP32 master çelësi privat i zgjëruar" + +#: public/views/includes/topbar.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Back" +msgstr "Prapa" + +#: public/views/preferences.html +msgid "Backup" +msgstr "Kopje rezervë" + +#: src/js/controllers/backup.js +msgid "Backup created" +msgstr "Kopja rezervë u krijua" + +#: public/views/walletHome.html +msgid "Backup now" +msgstr "Krijo kopjen rezervë tani" + +#: public/views/backup.html +msgid "Backup options" +msgstr "Opsionet e kopjes rezervë" + +#: src/js/services/profileService.js +msgid "Bad wallet invitation" +msgstr "Bad wallet invitation" + +#: public/views/walletHome.html +msgid "Before receiving funds, it is highly recommended you backup your wallet keys." +msgstr "Before receiving funds, it is highly recommended you backup your wallet keys." + +#: public/views/preferences.html +msgid "Bitcoin Network Fee Policy" +msgstr "Bitcoin Network Fee Policy" + +#: public/views/paymentUri.html +msgid "Bitcoin URI is NOT valid!" +msgstr "Bitcoin URI NUK është valid!" + +#: public/views/walletHome.html +msgid "Bitcoin address" +msgstr "Bitcoin adresa" + +#: public/views/preferencesFee.html +msgid "Bitcoin transactions may include a fee collected by miners on the network. The higher the fee, the greater the incentive a miner has to include that transaction in a block. Actual fees are determined based on network load and the selected policy." +msgstr "Bitcoin transactions may include a fee collected by miners on the network. The higher the fee, the greater the incentive a miner has to include that transaction in a block. Actual fees are determined based on network load and the selected policy." + +#: public/views/modals/txp-details.html +msgid "Broadcast Payment" +msgstr "Transmeto pagesën" + +#: src/js/controllers/walletHome.js +msgid "Broadcasting Payment" +msgstr "Duke transmetuar pagesën" + +#: src/js/controllers/walletHome.js +msgid "Broadcasting transaction" +msgstr "Duke transmetuar transaksionin" + +#: public/views/unsupported.html +msgid "Browser unsupported" +msgstr "Shfletues i pambështetur" + +#: public/views/modals/txp-details.html +msgid "But not broadcasted. Try to send manually" +msgstr "Por nuk u transmetua. Provo ta dërgoni manualisht" + +#: public/views/includes/password.html +msgid "CANCEL" +msgstr "ANULO" + +#: public/views/copayers.html +#: public/views/walletHome.html +#: public/views/modals/confirmation.html +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Cancel" +msgstr "Anulo" + +#: src/js/services/profileService.js +msgid "Cannot join the same wallet more that once" +msgstr "Cannot join the same wallet more that once" + +#: public/views/modals/paypro.html +msgid "Certified by" +msgstr "Çertifikuar nga" + +#: public/views/preferencesAlias.html +msgid "Changing wallet alias only affects the local wallet name." +msgstr "Ndërrimi i nofkës së kuletës ndikon vetëm në emrin lokal të kuletës." + +#: public/views/import.html +msgid "Choose a backup file from your computer" +msgstr "Choose a backup file from your computer" + +#: public/views/modals/wallets.html +msgid "Choose a wallet to send funds" +msgstr "Choose a wallet to send funds" + +#: public/views/includes/topbar.html +#: public/views/modals/advancedSend.html +#: public/views/modals/copayers.html +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +#: public/views/modals/scanner.html +#: public/views/modals/wallets.html +msgid "Close" +msgstr "Close" + +#: public/views/preferences.html +msgid "Color" +msgstr "Color" + +#: public/views/preferencesAbout.html +msgid "Commit hash" +msgstr "Commit hash" + +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Confirm" +msgstr "Confirm" + +#: public/views/modals/tx-details.html +msgid "Confirmations" +msgstr "Confirmations" + +#: src/js/services/bwsError.js +msgid "Copayer already in this wallet" +msgstr "Copayer already in this wallet" + +#: src/js/services/bwsError.js +msgid "Copayer already registered" +msgstr "Copayer already registered" + +#: src/js/services/bwsError.js +msgid "Copayer already voted on this spend proposal" +msgstr "Copayer already voted on this spend proposal" + +#: src/js/services/bwsError.js +msgid "Copayer data mismatch" +msgstr "Copayer data mismatch" + +#: public/views/modals/copayers.html +msgid "Copayers" +msgstr "Copayers" + +#: src/js/controllers/backup.js +#: src/js/controllers/copayers.js +#: src/js/controllers/walletHome.js +msgid "Copied to clipboard" +msgstr "Copied to clipboard" + +#: public/views/backup.html +msgid "Copy backup to a safe place" +msgstr "Copy backup to a safe place" + +#: public/views/backup.html +msgid "Copy this text as it is to a safe place (notepad or email)" +msgstr "Copy this text as it is to a safe place (notepad or email)" + +#: public/views/backup.html +msgid "Copy to clipboard" +msgstr "Copy to clipboard" + +#: src/js/controllers/walletHome.js +msgid "Could not accept payment" +msgstr "Could not accept payment" + +#: src/js/controllers/index.js +msgid "Could not access Wallet Service: Not found" +msgstr "Could not access Wallet Service: Not found" + +#: src/js/controllers/walletHome.js +msgid "Could not broadcast payment" +msgstr "Could not broadcast payment" + +#: src/js/services/addressService.js +msgid "Could not create address" +msgstr "Could not create address" + +#: src/js/controllers/walletHome.js +msgid "Could not create payment proposal" +msgstr "Could not create payment proposal" + +#: src/js/services/profileService.js +msgid "Could not create using the specified extended private key" +msgstr "Could not create using the specified extended private key" + +#: src/js/controllers/import.js +msgid "Could not decrypt file, check your password" +msgstr "Could not decrypt file, check your password" + +#: src/js/controllers/walletHome.js +msgid "Could not delete payment proposal" +msgstr "Could not delete payment proposal" + +#: src/js/controllers/walletHome.js +msgid "Could not fetch payment information" +msgstr "Could not fetch payment information" + +#: public/views/walletHome.html +msgid "Could not fetch transaction history" +msgstr "Could not fetch transaction history" + +#: src/js/services/profileService.js +msgid "Could not import. Check input file and password" +msgstr "Could not import. Check input file and password" + +#: src/js/services/profileService.js +msgid "Could not join using the specified extended private key" +msgstr "Could not join using the specified extended private key" + +#: src/js/services/profileService.js +msgid "Could not join wallet" +msgstr "Could not join wallet" + +#: src/js/controllers/walletHome.js +msgid "Could not recognize a valid Bitcoin QR Code" +msgstr "Could not recognize a valid Bitcoin QR Code" + +#: src/js/controllers/walletHome.js +msgid "Could not reject payment" +msgstr "Could not reject payment" + +#: src/js/controllers/walletHome.js +msgid "Could not send payment" +msgstr "Could not send payment" + +#: src/js/controllers/index.js +msgid "Could not update Wallet" +msgstr "Could not update Wallet" + +#: public/views/walletHome.html +msgid "Create" +msgstr "Create" + +#: public/views/add.html +#: public/views/create.html +msgid "Create new wallet" +msgstr "Create new wallet" + +#: public/views/create.html +msgid "Create {{requiredCopayers}}-of-{{totalCopayers}} wallet" +msgstr "Create {{requiredCopayers}}-of-{{totalCopayers}} wallet" + +#: public/views/includes/sidebar.html +msgid "Create, join or import" +msgstr "Create, join or import" + +#: public/views/modals/txp-details.html +msgid "Created by" +msgstr "Created by" + +#: public/views/splash.html +msgid "Creating Profile..." +msgstr "Creating Profile..." + +#: public/views/create.html +msgid "Creating Wallet..." +msgstr "Creating Wallet..." + +#: src/js/controllers/walletHome.js +msgid "Creating transaction" +msgstr "Creating transaction" + +#: public/views/preferencesFee.html +#: public/views/modals/advancedSend.html +msgid "Current fee rate for this policy: {{fee.feePerKBUnit}}/kiB" +msgstr "Current fee rate for this policy: {{fee.feePerKBUnit}}/kiB" + +#: public/views/modals/tx-details.html +msgid "Date" +msgstr "Date" + +#: public/views/modals/txp-details.html +msgid "Delete Payment Proposal" +msgstr "Delete Payment Proposal" + +#: public/views/preferencesAdvanced.html +msgid "Delete Wallet" +msgstr "Delete Wallet" + +#: public/views/copayers.html +msgid "Delete it and create a new one" +msgstr "Delete it and create a new one" + +#: public/views/preferencesDeleteWallet.html +msgid "Delete wallet" +msgstr "Delete wallet" + +#: src/js/controllers/walletHome.js +msgid "Deleting payment" +msgstr "Deleting payment" + +#: public/views/modals/customized-amount.html +#: public/views/modals/paypro.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Details" +msgstr "Details" + +#: public/views/preferences.html +msgid "Disabled" +msgstr "Disabled" + +#: public/views/backup.html +msgid "Do not include private key in backup" +msgstr "Do not include private key in backup" + +#: public/views/translators.html +msgid "Don't see your language on Crowdin? Contact the Owner on Crowdin! We'd love to support your language." +msgstr "Don't see your language on Crowdin? Contact the Owner on Crowdin! We'd love to support your language." + +#: public/views/walletHome.html +msgid "Download CSV file" +msgstr "Download CSV file" + +#: public/views/backup.html +msgid "Download backup" +msgstr "Download backup" + +#: src/js/services/feeService.js +msgid "Economy" +msgstr "Economy" + +#: public/views/preferences.html +msgid "Email Notifications" +msgstr "Email Notifications" + +#: public/views/preferences.html +msgid "Encrypt Private Key" +msgstr "Encrypt Private Key" + +#: src/js/controllers/backup.js +msgid "Encrypted backup file saved" +msgstr "Encrypted backup file saved" + +#: public/views/includes/password.html +msgid "Enter your password" +msgstr "Enter your password" + +#: src/js/controllers/index.js +msgid "Error at Wallet Service" +msgstr "Error at Wallet Service" + +#: src/js/services/profileService.js +msgid "Error creating wallet" +msgstr "Error creating wallet" + +#: src/js/services/profileService.js +msgid "Error importing wallet:" +msgstr "Error importing wallet:" + +#: public/views/modals/paypro.html +#: public/views/modals/txp-details.html +msgid "Expires" +msgstr "Expires" + +#: public/views/backup.html +msgid "Failed to create backup" +msgstr "Failed to create backup" + +#: src/js/controllers/importLegacy.js +msgid "Failed to import wallets" +msgstr "Failed to import wallets" + +#: public/views/create.html +msgid "Family vacation funds" +msgstr "Family vacation funds" + +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Fee" +msgstr "Fee" + +#: public/views/modals/advancedSend.html +msgid "Fee Policy" +msgstr "Fee Policy" + +#: public/views/walletHome.html +msgid "Fee policy for this transaction" +msgstr "Fee policy for this transaction" + +#. Get information of payment if using Payment Protocol +#: src/js/controllers/walletHome.js +msgid "Fetching Payment Information" +msgstr "Fetching Payment Information" + +#: public/views/translators.html +msgid "French" +msgstr "French" + +#: src/js/services/bwsError.js +msgid "Funds are locked by pending spend proposals" +msgstr "Funds are locked by pending spend proposals" + +#: src/js/services/notificationsService.js +msgid "Funds received" +msgstr "Funds received" + +#: public/views/splash.html +msgid "GET STARTED" +msgstr "GET STARTED" + +#: public/views/modals/customized-amount.html +msgid "Generate QR Code" +msgstr "Generate QR Code" + +#: public/views/walletHome.html +msgid "Generate new address" +msgstr "Generate new address" + +#: public/views/walletHome.html +msgid "Generating .csv file..." +msgstr "Generating .csv file..." + +#: public/views/translators.html +msgid "German" +msgstr "German" + +#: public/views/modals/wallets.html +msgid "Getting address for wallet {{selectedWalletName}} ..." +msgstr "Getting address for wallet {{selectedWalletName}} ..." + +#: public/views/preferences.html +msgid "Global settings" +msgstr "Global settings" + +#: public/views/disclaimer.html +msgid "Go back" +msgstr "Go back" + +#: public/views/translators.html +msgid "Greek" +msgstr "Greek" + +#: public/views/import.html +msgid "Have a Backup from Copay v0.9?" +msgstr "Have a Backup from Copay v0.9?" + +#: public/views/backup.html +#: public/views/create.html +#: public/views/join.html +#: public/views/walletHome.html +msgid "Hide advanced options" +msgstr "Hide advanced options" + +#: src/js/controllers/index.js +msgid "History" +msgstr "History" + +#: src/js/controllers/index.js +msgid "Home" +msgstr "Home" + +#: public/views/disclaimer.html +msgid "I affirm that I have read, understood, and agree with these terms." +msgstr "I affirm that I have read, understood, and agree with these terms." + +#: public/views/create.html +#: public/views/join.html +msgid "If not given, a secure key will be generated" +msgstr "If not given, a secure key will be generated" + +#: public/views/importLegacy.html +msgid "Import" +msgstr "Import" + +#: public/views/import.html +#: public/views/splash.html +msgid "Import backup" +msgstr "Import backup" + +#: public/views/importLegacy.html +msgid "Import from the Cloud?" +msgstr "Import from the Cloud?" + +#: public/views/import.html +msgid "Import here" +msgstr "Import here" + +#: public/views/add.html +msgid "Import wallet" +msgstr "Import wallet" + +#: public/views/import.html +msgid "Importing wallet..." +msgstr "Importing wallet..." + +#: public/views/importLegacy.html +msgid "Importing..." +msgstr "Importing..." + +#: src/js/services/bwsError.js +msgid "Incorrect address network" +msgstr "Incorrect address network" + +#: src/js/services/bwsError.js +msgid "Insufficient funds" +msgstr "Insufficient funds" + +#: src/js/services/bwsError.js +msgid "Insufficient funds for fee" +msgstr "Insufficient funds for fee" + +#: public/views/walletHome.html +msgid "Invalid" +msgstr "Invalid" + +#: src/js/services/bwsError.js +msgid "Invalid address" +msgstr "Invalid address" + +#: src/js/controllers/copayers.js +msgid "Invitation to share a Copay Wallet" +msgstr "Invitation to share a Copay Wallet" + +#: public/views/translators.html +msgid "Italian" +msgstr "Italian" + +#: public/views/translators.html +msgid "Japanese" +msgstr "Japanese" + +#: public/views/create.html +#: public/views/join.html +msgid "John" +msgstr "John" + +#: public/views/join.html +msgid "Join" +msgstr "Join" + +#: src/js/controllers/copayers.js +msgid "Join my Copay wallet. Here is the invitation code: {{secret}} You can download Copay for your phone or desktop at https://copay.io" +msgstr "Join my Copay wallet. Here is the invitation code: {{secret}} You can download Copay for your phone or desktop at https://copay.io" + +#: public/views/add.html +msgid "Join shared wallet" +msgstr "Join shared wallet" + +#: public/views/join.html +msgid "Joining Wallet..." +msgstr "Joining Wallet..." + +#: public/views/preferences.html +msgid "Language" +msgstr "Language" + +#: public/views/importLegacy.html +msgid "Learn more about Wallet Migration" +msgstr "Learn more about Wallet Migration" + +#: src/js/services/bwsError.js +msgid "Locktime in effect. Please wait to create a new spend proposal" +msgstr "Locktime in effect. Please wait to create a new spend proposal" + +#: src/js/services/bwsError.js +msgid "Locktime in effect. Please wait to remove this spend proposal" +msgstr "Locktime in effect. Please wait to remove this spend proposal" + +#: public/views/paymentUri.html +msgid "Make a payment to" +msgstr "Make a payment to" + +#: public/views/create.html +#: public/views/join.html +msgid "Master extended private key" +msgstr "Master extended private key" + +#: public/views/includes/copayers.html +#: public/views/modals/copayers.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Me" +msgstr "Me" + +#: public/views/modals/paypro.html +msgid "Memo" +msgstr "Memo" + +#: public/views/modals/tx-details.html +msgid "Merchant message" +msgstr "Merchant message" + +#: public/views/paymentUri.html +msgid "Message" +msgstr "Message" + +#: public/views/walletHome.html +msgid "More" +msgstr "More" + +#: public/views/walletHome.html +msgid "Moved" +msgstr "Moved" + +#: public/views/walletHome.html +msgid "Multisignature wallet" +msgstr "Multisignature wallet" + +#: public/views/walletHome.html +msgid "My Bitcoin address" +msgstr "My Bitcoin address" + +#: public/views/paymentUri.html +msgid "Network" +msgstr "Network" + +#: src/js/services/bwsError.js +msgid "Network connection error" +msgstr "Network connection error" + +#: src/js/services/notificationsService.js +msgid "New Payment Proposal" +msgstr "New Payment Proposal" + +#: public/views/walletHome.html +msgid "No Private key" +msgstr "No Private key" + +#: public/views/walletHome.html +msgid "No transactions yet" +msgstr "No transactions yet" + +#: src/js/services/feeService.js +msgid "Normal" +msgstr "Normal" + +#: src/js/services/bwsError.js +msgid "Not authorized" +msgstr "Not authorized" + +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html +msgid "Not valid" +msgstr "Not valid" + +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/modals/tx-details.html +msgid "Note" +msgstr "Note" + +#: public/views/includes/alert.html +#: public/views/includes/password.html +msgid "OK" +msgstr "OK" + +#: public/views/modals/tx-status.html +msgid "OKAY" +msgstr "OKAY" + +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "Participants" +msgstr "Participants" + +#: public/views/import.html +#: public/views/importLegacy.html +msgid "Password" +msgstr "Password" + +#: public/views/includes/password.html +msgid "Password cannot be recovered. Be sure to write it down" +msgstr "Password cannot be recovered. Be sure to write it down" + +#: src/js/services/profileService.js +msgid "Password needed" +msgstr "Password needed" + +#: src/js/controllers/password.js +msgid "Passwords do not match" +msgstr "Passwords do not match" + +#: public/views/join.html +msgid "Paste invitation here" +msgstr "Paste invitation here" + +#: public/views/import.html +msgid "Paste the backup plain text code" +msgstr "Paste the backup plain text code" + +#: public/views/modals/paypro.html +msgid "Pay To" +msgstr "Pay To" + +#: public/views/modals/tx-status.html +msgid "Payment Accepted" +msgstr "Payment Accepted" + +#: public/views/modals/txp-details.html +msgid "Payment Proposal" +msgstr "Payment Proposal" + +#: public/views/modals/tx-status.html +msgid "Payment Proposal Created" +msgstr "Payment Proposal Created" + +#: src/js/services/notificationsService.js +msgid "Payment Proposal Rejected" +msgstr "Payment Proposal Rejected" + +#: src/js/services/notificationsService.js +msgid "Payment Proposal Rejected by Copayer" +msgstr "Payment Proposal Rejected by Copayer" + +#: src/js/services/notificationsService.js +msgid "Payment Proposal Signed by Copayer" +msgstr "Payment Proposal Signed by Copayer" + +#: public/views/walletHome.html +msgid "Payment Proposals" +msgstr "Payment Proposals" + +#: src/js/controllers/walletHome.js +msgid "Payment Protocol not supported on Chrome App" +msgstr "Payment Protocol not supported on Chrome App" + +#: public/views/modals/tx-status.html +msgid "Payment Rejected" +msgstr "Payment Rejected" + +#: public/views/modals/tx-status.html +#: src/js/services/notificationsService.js +msgid "Payment Sent" +msgstr "Payment Sent" + +#: public/views/modals/txp-details.html +msgid "Payment accepted..." +msgstr "Payment accepted..." + +#: public/views/modals/txp-details.html +msgid "Payment details" +msgstr "Payment details" + +#: public/views/modals/txp-details.html +msgid "Payment finally rejected" +msgstr "Payment finally rejected" + +#: public/views/modals/paypro.html +msgid "Payment request" +msgstr "Payment request" + +#: public/views/modals/txp-details.html +msgid "Payment sent!" +msgstr "Payment sent!" + +#: public/views/walletHome.html +msgid "Payment to" +msgstr "Payment to" + +#: public/views/walletHome.html +msgid "Pending Confirmation" +msgstr "Pending Confirmation" + +#: public/views/preferencesDeleteWallet.html +msgid "Permanently delete this wallet. THIS ACTION CANNOT BE REVERSED" +msgstr "Permanently delete this wallet. THIS ACTION CANNOT BE REVERSED" + +#: public/views/create.html +msgid "Personal Wallet" +msgstr "Personal Wallet" + +#: src/js/controllers/create.js +#: src/js/controllers/join.js +msgid "Please enter the required fields" +msgstr "Please enter the required fields" + +#: src/js/services/bwsError.js +msgid "Please upgrade Copay to perform this action" +msgstr "Please upgrade Copay to perform this action" + +#: src/js/controllers/import.js +msgid "Please, select your backup file" +msgstr "Please, select your backup file" + +#: public/views/translators.html +msgid "Portuguese" +msgstr "Portuguese" + +#: public/views/walletHome.html +msgid "Preferences" +msgstr "Preferences" + +#: src/js/controllers/backup.js +msgid "Preparing backup..." +msgstr "Preparing backup..." + +#: src/js/services/feeService.js +msgid "Priority" +msgstr "Priority" + +#: public/views/modals/customized-amount.html +msgid "QR Code" +msgstr "QR Code" + +#: public/views/modals/scanner.html +msgid "QR-Scanner" +msgstr "QR-Scanner" + +#: src/js/controllers/index.js +msgid "Receive" +msgstr "Receive" + +#: public/views/walletHome.html +msgid "Received" +msgstr "Received" + +#: public/views/includes/output.html +#: public/views/includes/transaction.html +msgid "Recipients" +msgstr "Recipients" + +#: public/views/walletHome.html +msgid "Reconnecting to Wallet Service..." +msgstr "Reconnecting to Wallet Service..." + +#: public/views/walletHome.html +msgid "Recreate" +msgstr "Recreate" + +#: public/views/walletHome.html +msgid "Recreating Wallet..." +msgstr "Recreating Wallet..." + +#: public/views/modals/txp-details.html +msgid "Reject" +msgstr "Reject" + +#: src/js/controllers/walletHome.js +msgid "Rejecting payment" +msgstr "Rejecting payment" + +#: public/views/preferencesAbout.html +msgid "Release Information" +msgstr "Release Information" + +#: public/views/backup.html +#: public/views/includes/password.html +msgid "Repeat password" +msgstr "Repeat password" + +#: public/views/walletHome.html +#: public/views/modals/customized-amount.html +msgid "Request a specific amount" +msgstr "Request a specific amount" + +#: public/views/import.html +#: public/views/join.html +msgid "Required" +msgstr "Required" + +#: public/views/splash.html +msgid "Retrying..." +msgstr "Retrying..." + +#: public/views/translators.html +msgid "Russian" +msgstr "Russian" + +#: public/views/includes/password.html +msgid "SET" +msgstr "SET" + +#: public/views/walletHome.html +msgid "SKIP BACKUP" +msgstr "SKIP BACKUP" + +#: public/views/preferencesAlias.html +#: public/views/preferencesBwsUrl.html +#: public/views/preferencesEmail.html +msgid "Save" +msgstr "Save" + +#: public/views/preferencesEmail.html +msgid "Saving preferences..." +msgstr "Saving preferences..." + +#: src/js/services/notificationsService.js +msgid "Scan Finished" +msgstr "Scan Finished" + +#: public/views/preferencesAdvanced.html +msgid "Scan addresses for funds" +msgstr "Scan addresses for funds" + +#: public/views/walletHome.html +msgid "Scan status finished with error" +msgstr "Scan status finished with error" + +#: public/views/walletHome.html +msgid "Scanning Wallet funds..." +msgstr "Scanning Wallet funds..." + +#: public/views/modals/tx-details.html +msgid "See it on the blockchain" +msgstr "See it on the blockchain" + +#: public/views/import.html +msgid "Select a backup file" +msgstr "Select a backup file" + +#: public/views/paymentUri.html +msgid "Select a wallet" +msgstr "Select a wallet" + +#: public/views/create.html +msgid "Select required number of signatures" +msgstr "Select required number of signatures" + +#: public/views/create.html +msgid "Select total number of copayers" +msgstr "Select total number of copayers" + +#: public/views/walletHome.html +#: public/views/includes/transaction.html +#: src/js/controllers/index.js +msgid "Send" +msgstr "Send" + +#: public/views/walletHome.html +msgid "Send All" +msgstr "Send All" + +#: public/views/backup.html +#: public/views/preferencesLogs.html +msgid "Send by email" +msgstr "Send by email" + +#: public/views/walletHome.html +msgid "Sent" +msgstr "Sent" + +#: public/views/importLegacy.html +msgid "Server" +msgstr "Server" + +#: public/views/preferencesAbout.html +msgid "Session log" +msgstr "Session log" + +#: public/views/backup.html +msgid "Set up a Password for your backup" +msgstr "Set up a Password for your backup" + +#: public/views/includes/password.html +msgid "Set up a password" +msgstr "Set up a password" + +#: public/views/preferencesEmail.html +msgid "Setting up email notifications could weaken your privacy, if the wallet service provider is compromised. Information available to an attacker would include your wallet addresses and its balance, but no more." +msgstr "Setting up email notifications could weaken your privacy, if the wallet service provider is compromised. Information available to an attacker would include your wallet addresses and its balance, but no more." + +#: public/views/walletHome.html +msgid "Share address" +msgstr "Share address" + +#: public/views/copayers.html +msgid "Share invitation" +msgstr "Share invitation" + +#: public/views/copayers.html +msgid "Share this invitation with your copayers" +msgstr "Share this invitation with your copayers" + +#: public/views/walletHome.html +msgid "Share this wallet address to receive payments. To protect your privacy, new addresses are generated automatically once you use them." +msgstr "Share this wallet address to receive payments. To protect your privacy, new addresses are generated automatically once you use them." + +#: public/views/create.html +msgid "Shared Wallet" +msgstr "Shared Wallet" + +#: public/views/backup.html +#: public/views/create.html +#: public/views/join.html +#: public/views/walletHome.html +msgid "Show advanced options" +msgstr "Show advanced options" + +#: src/js/services/bwsError.js +msgid "Signatures rejected by server" +msgstr "Signatures rejected by server" + +#: src/js/controllers/walletHome.js +msgid "Signing payment" +msgstr "Signing payment" + +#: src/js/controllers/walletHome.js +msgid "Signing transaction" +msgstr "Signing transaction" + +#: public/views/translators.html +msgid "Spanish" +msgstr "Spanish" + +#: src/js/services/bwsError.js +msgid "Spend proposal is not accepted" +msgstr "Spend proposal is not accepted" + +#: src/js/services/bwsError.js +msgid "Spend proposal not found" +msgstr "Spend proposal not found" + +#: src/js/controllers/copayers.js +#: src/js/controllers/import.js +#: src/js/controllers/preferencesDelete.js +msgid "Success" +msgstr "Success" + +#: public/views/walletHome.html +msgid "Tap to retry" +msgstr "Tap to retry" + +#: public/views/disclaimer.html +#: public/views/preferencesAbout.html +msgid "Terms of Use" +msgstr "Terms of Use" + +#: public/views/create.html +msgid "Testnet" +msgstr "Testnet" + +#: src/js/controllers/walletHome.js +msgid "The payment was created but could not be completed. Please try again from home screen" +msgstr "The payment was created but could not be completed. Please try again from home screen" + +#: src/js/controllers/walletHome.js +msgid "The payment was created but could not be signed. Please try again from home screen" +msgstr "The payment was created but could not be signed. Please try again from home screen" + +#: public/views/modals/txp-details.html +msgid "The payment was removed by creator" +msgstr "The payment was removed by creator" + +#: src/js/controllers/walletHome.js +msgid "The payment was signed but could not be broadcasted. Please try again from home screen" +msgstr "The payment was signed but could not be broadcasted. Please try again from home screen" + +#: public/views/backup.html +msgid "The private key for this wallet is encrypted. Exporting a backup will keep the private key encrypted in the backup archive." +msgstr "The private key for this wallet is encrypted. Exporting a backup will keep the private key encrypted in the backup archive." + +#: public/views/disclaimer.html +msgid "The software you are about to use functions as a free, open source, and multi-signature digital wallet. The software does not constitute an account where BitPay or other third parties serve as financial intermediaries or custodians of your bitcoin. While the software has undergone beta testing and continues to be improved by feedback from the open-source user and developer community, we cannot guarantee that there will be no bugs in the software. You acknowledge that your use of this software is at your own discretion and in compliance with all applicable laws. You are responsible for safekeeping your passwords, private key pairs, PINs and any other codes you use to access the software. IF YOU LOSE ACCESS TO YOUR COPAY WALLET OR YOUR ENCRYPTED PRIVATE KEYS AND YOU HAVE NOT SEPARATELY STORED A BACKUP OF YOUR WALLET AND CORRESPONDING PASSWORD, YOU ACKNOWLEDGE AND AGREE THAT ANY BITCOIN YOU HAVE ASSOCIATED WITH THAT COPAY WALLET WILL BECOME INACCESSIBLE. All transaction requests are irreversible. The authors of the software, employees and affiliates of Bitpay, copyright holders, and BitPay, Inc. cannot retrieve your private keys or passwords if you lose or forget them and cannot guarantee transaction confirmation as they do not have control over the Bitcoin network. To the fullest extent permitted by law, this software is provided “as is” and no representations or warranties can be made of any kind, express or implied, including but not limited to the warranties of merchantability, fitness or a particular purpose and noninfringement. You assume any and all risks associated with the use of the software. In no event shall the authors of the software, employees and affiliates of Bitpay, copyright holders, or BitPay, Inc. be held liable for any claim, damages or other liability, whether in an action of contract, tort, or otherwise, arising from, out of or in connection with the software. We reserve the right to modify this disclaimer from time to time." +msgstr "The software you are about to use functions as a free, open source, and multi-signature digital wallet. The software does not constitute an account where BitPay or other third parties serve as financial intermediaries or custodians of your bitcoin. While the software has undergone beta testing and continues to be improved by feedback from the open-source user and developer community, we cannot guarantee that there will be no bugs in the software. You acknowledge that your use of this software is at your own discretion and in compliance with all applicable laws. You are responsible for safekeeping your passwords, private key pairs, PINs and any other codes you use to access the software. IF YOU LOSE ACCESS TO YOUR COPAY WALLET OR YOUR ENCRYPTED PRIVATE KEYS AND YOU HAVE NOT SEPARATELY STORED A BACKUP OF YOUR WALLET AND CORRESPONDING PASSWORD, YOU ACKNOWLEDGE AND AGREE THAT ANY BITCOIN YOU HAVE ASSOCIATED WITH THAT COPAY WALLET WILL BECOME INACCESSIBLE. All transaction requests are irreversible. The authors of the software, employees and affiliates of Bitpay, copyright holders, and BitPay, Inc. cannot retrieve your private keys or passwords if you lose or forget them and cannot guarantee transaction confirmation as they do not have control over the Bitcoin network. To the fullest extent permitted by law, this software is provided “as is” and no representations or warranties can be made of any kind, express or implied, including but not limited to the warranties of merchantability, fitness or a particular purpose and noninfringement. You assume any and all risks associated with the use of the software. In no event shall the authors of the software, employees and affiliates of Bitpay, copyright holders, or BitPay, Inc. be held liable for any claim, damages or other liability, whether in an action of contract, tort, or otherwise, arising from, out of or in connection with the software. We reserve the right to modify this disclaimer from time to time." + +#: src/js/services/bwsError.js +msgid "The spend proposal is not pending" +msgstr "The spend proposal is not pending" + +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +msgid "The wallet \"{{walletName}}\" was deleted" +msgstr "The wallet \"{{walletName}}\" was deleted" + +#: public/views/paymentUri.html +msgid "There are no wallets to make this payment" +msgstr "There are no wallets to make this payment" + +#: src/js/controllers/import.js +msgid "There is an error in the form" +msgstr "There is an error in the form" + +#: public/views/modals/tx-details.html +msgid "This transaction has become invalid; possibly due to a double spend attempt." +msgstr "This transaction has become invalid; possibly due to a double spend attempt." + +#: public/views/walletHome.html +msgid "This wallet is not registered at the given Bitcore Wallet Service (BWS). You can recreate it from the local information." +msgstr "This wallet is not registered at the given Bitcore Wallet Service (BWS). You can recreate it from the local information." + +#: public/views/modals/txp-details.html +msgid "Time" +msgstr "Time" + +#: public/views/walletHome.html +#: public/views/includes/output.html +#: public/views/includes/transaction.html +#: public/views/modals/tx-details.html +#: public/views/modals/txp-details.html +msgid "To" +msgstr "To" + +#: public/views/includes/output.html +msgid "Total" +msgstr "Total" + +#: public/views/walletHome.html +msgid "Total Locked Balance" +msgstr "Total Locked Balance" + +#: public/views/modals/tx-details.html +msgid "Transaction" +msgstr "Transaction" + +#: src/js/services/bwsError.js +msgid "Transaction already broadcasted" +msgstr "Transaction already broadcasted" + +#: public/views/translators.html +msgid "Translation Credits" +msgstr "Translation Credits" + +#: public/views/preferencesAbout.html +msgid "Translators" +msgstr "Translators" + +#: src/js/controllers/walletHome.js +msgid "Unable to send transaction proposal" +msgstr "Unable to send transaction proposal" + +#: public/views/walletHome.html +#: public/views/modals/tx-details.html +msgid "Unconfirmed" +msgstr "Unconfirmed" + +#: public/views/preferences.html +msgid "Unit" +msgstr "Unit" + +#: public/views/walletHome.html +msgid "Unsent transactions" +msgstr "Unsent transactions" + +#: public/views/modals/paypro.html +msgid "Untrusted" +msgstr "Untrusted" + +#: public/views/walletHome.html +msgid "Updating Wallet..." +msgstr "Updating Wallet..." + +#: public/views/preferences.html +#: public/views/walletHome.html +msgid "Use Unconfirmed Funds" +msgstr "Use Unconfirmed Funds" + +#: public/views/preferencesAbout.html +msgid "Version" +msgstr "Version" + +#: public/views/backup.html +msgid "View backup" +msgstr "View backup" + +#: public/views/walletHome.html +msgid "WARNING: Backup needed" +msgstr "WARNING: Backup needed" + +#: public/views/walletHome.html +msgid "WARNING: Wallet not registered" +msgstr "WARNING: Wallet not registered" + +#: public/views/splash.html +msgid "WELCOME TO COPAY" +msgstr "WELCOME TO COPAY" + +#: public/views/copayers.html +msgid "Waiting for copayers" +msgstr "Waiting for copayers" + +#: public/views/copayers.html +msgid "Waiting..." +msgstr "Waiting..." + +#: public/views/preferences.html +msgid "Wallet Alias" +msgstr "Wallet Alias" + +#: src/js/services/profileService.js +msgid "Wallet Already Imported:" +msgstr "Wallet Already Imported:" + +#: public/views/join.html +msgid "Wallet Invitation" +msgstr "Wallet Invitation" + +#: public/views/join.html +msgid "Wallet Invitation is not valid!" +msgstr "Wallet Invitation is not valid!" + +#: src/js/services/bwsError.js +#: src/js/services/profileService.js +msgid "Wallet already exists" +msgstr "Wallet already exists" + +#: public/views/copayers.html +msgid "Wallet incomplete and broken" +msgstr "Wallet incomplete and broken" + +#: src/js/services/bwsError.js +msgid "Wallet is full" +msgstr "Wallet is full" + +#: src/js/services/bwsError.js +msgid "Wallet is not complete" +msgstr "Wallet is not complete" + +#: public/views/create.html +msgid "Wallet name" +msgstr "Wallet name" + +#: src/js/services/bwsError.js +msgid "Wallet not found" +msgstr "Wallet not found" + +#: src/js/services/bwsError.js +msgid "Wallet service not found" +msgstr "Wallet service not found" + +#: public/views/preferencesDeleteWallet.html +msgid "Warning!" +msgstr "Warning!" + +#: public/views/modals/txp-details.html +msgid "Warning: this transaction has unconfirmed inputs" +msgstr "Warning: this transaction has unconfirmed inputs" + +#: src/js/services/profileService.js +msgid "Wrong password" +msgstr "Wrong password" + +#: public/views/modals/confirmation.html +msgid "Yes" +msgstr "Yes" + +#: public/views/walletHome.html +msgid "You do not have a wallet" +msgstr "You do not have a wallet" + +#: public/views/backup.html +#: public/views/import.html +msgid "Your backup password" +msgstr "Your backup password" + +#: public/views/create.html +#: public/views/join.html +msgid "Your nickname" +msgstr "Your nickname" + +#: public/views/includes/password.html +msgid "Your password" +msgstr "Your password" + +#: public/views/importLegacy.html +msgid "Your profile password" +msgstr "Your profile password" + +#: src/js/controllers/import.js +msgid "Your wallet has been imported correctly" +msgstr "Your wallet has been imported correctly" + +#: public/views/preferencesEmail.html +msgid "email for wallet notifications" +msgstr "email for wallet notifications" + +#: public/views/walletHome.html +msgid "locked by pending payments" +msgstr "locked by pending payments" + +#: public/views/copayers.html +#: public/views/walletHome.html +#: public/views/includes/sidebar.html +msgid "of" +msgstr "of" + +#: public/views/walletHome.html +msgid "optional" +msgstr "optional" + +#: public/views/preferences.html +msgid "settings" +msgstr "settings" + +#: public/views/walletHome.html +msgid "too long!" +msgstr "too long!" + +#: src/js/controllers/walletHome.js +msgid "{{fee}} will be discounted for bitcoin networking fees" +msgstr "{{fee}} will be discounted for bitcoin networking fees" + +#: src/js/controllers/importLegacy.js +msgid "{{len}} wallets imported. Funds scanning in progress. Hold on to see updated balance" +msgstr "{{len}} wallets imported. Funds scanning in progress. Hold on to see updated balance" + diff --git a/po/template.pot b/i18n/po/template.pot similarity index 79% rename from po/template.pot rename to i18n/po/template.pot index 4dbda9a80..9df6cf09a 100644 --- a/po/template.pot +++ b/i18n/po/template.pot @@ -4,6 +4,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Project-Id-Version: \n" +#: public/views/walletHome.html +msgid "(possible double spend)" +msgstr "" + #: public/views/modals/txp-details.html msgid "* A payment proposal can be deleted if 1) you are the creator, and no other copayer has signed, or 2) 24 hours have passed since the proposal was created." msgstr "" @@ -12,6 +16,10 @@ msgstr "" msgid "* You can safely install your backup on another device and use your wallet from multiple devices at the same time." msgstr "" +#: public/views/backup.html +msgid "A backup without its private key will allow the user to see the wallet balance, transactions, and create spend proposals. However, it will not be able to approve (sign) proposals." +msgstr "" + #: public/views/splash.html msgid "A multisignature bitcoin wallet" msgstr "" @@ -21,6 +29,9 @@ msgid "About Copay" msgstr "" #: public/views/modals/txp-details.html +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js msgid "Accept" msgstr "" @@ -38,6 +49,10 @@ msgstr "" msgid "Advanced" msgstr "" +#: public/views/modals/advancedSend.html +msgid "Advanced Send" +msgstr "" + #: public/views/disclaimer.html msgid "Agree" msgstr "" @@ -46,6 +61,10 @@ msgstr "" msgid "Alias for {{index.walletName}}" msgstr "" +#: public/views/translators.html +msgid "All contributions to Copay's translation are welcome. Sign up at crowdin.com and join the Copay project at" +msgstr "" + #: public/views/splash.html msgid "Already have a wallet?" msgstr "" @@ -56,11 +75,15 @@ msgstr "" #: public/views/paymentUri.html #: public/views/walletHome.html +#: public/views/includes/output.html #: public/views/modals/customized-amount.html -#: public/views/modals/txp-details.html msgid "Amount" msgstr "" +#: src/js/services/bwsError.js +msgid "Amount below dust threshold" +msgstr "" + #: public/views/walletHome.html #: public/views/modals/customized-amount.html msgid "Amount in" @@ -79,6 +102,11 @@ msgstr "" msgid "Available Balance" msgstr "" +#: public/views/preferencesFee.html +#: public/views/modals/advancedSend.html +msgid "Average confirmation time: {{fee.nbBlocks * 10}} minutes" +msgstr "" + #: public/views/create.html #: public/views/join.html msgid "BIP32 master extended private key" @@ -106,6 +134,10 @@ msgstr "" msgid "Backup options" msgstr "" +#: src/js/services/profileService.js +msgid "Bad wallet invitation" +msgstr "" + #: public/views/walletHome.html msgid "Before receiving funds, it is highly recommended you backup your wallet keys." msgstr "" @@ -123,7 +155,7 @@ msgid "Bitcoin address" msgstr "" #: public/views/preferencesFee.html -msgid "Bitcoin transactions may include a fee collected by miners on the network. The higher the fee, the greater the incentive a miner has to include that transaction in a block. The ‘Emergency’ level should only be used when there is a network congestion." +msgid "Bitcoin transactions may include a fee collected by miners on the network. The higher the fee, the greater the incentive a miner has to include that transaction in a block. Actual fees are determined based on network load and the selected policy." msgstr "" #: public/views/modals/txp-details.html @@ -152,9 +184,17 @@ msgstr "" #: public/views/copayers.html #: public/views/walletHome.html +#: public/views/modals/confirmation.html +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js msgid "Cancel" msgstr "" +#: src/js/services/profileService.js +msgid "Cannot join the same wallet more that once" +msgstr "" + #: public/views/modals/paypro.html msgid "Certified by" msgstr "" @@ -163,10 +203,6 @@ msgstr "" msgid "Changing wallet alias only affects the local wallet name." msgstr "" -#: src/js/controllers/walletHome.js -msgid "Check you connection and try again" -msgstr "" - #: public/views/import.html msgid "Choose a backup file from your computer" msgstr "" @@ -176,6 +212,7 @@ msgid "Choose a wallet to send funds" msgstr "" #: public/views/includes/topbar.html +#: public/views/modals/advancedSend.html #: public/views/modals/copayers.html #: public/views/modals/customized-amount.html #: public/views/modals/paypro.html @@ -192,14 +229,42 @@ msgstr "" msgid "Commit hash" msgstr "" +#: src/js/controllers/copayers.js +#: src/js/controllers/preferencesDelete.js +#: src/js/controllers/walletHome.js +msgid "Confirm" +msgstr "" + #: public/views/modals/tx-details.html msgid "Confirmations" msgstr "" +#: src/js/services/bwsError.js +msgid "Copayer already in this wallet" +msgstr "" + +#: src/js/services/bwsError.js +msgid "Copayer already registered" +msgstr "" + +#: src/js/services/bwsError.js +msgid "Copayer already voted on this spend proposal" +msgstr "" + +#: src/js/services/bwsError.js +msgid "Copayer data mismatch" +msgstr "" + #: public/views/modals/copayers.html msgid "Copayers" msgstr "" +#: src/js/controllers/backup.js +#: src/js/controllers/copayers.js +#: src/js/controllers/walletHome.js +msgid "Copied to clipboard" +msgstr "" + #: public/views/backup.html msgid "Copy backup to a safe place" msgstr "" @@ -213,19 +278,19 @@ msgid "Copy to clipboard" msgstr "" #: src/js/controllers/walletHome.js -msgid "Could not accept payment. Check you connection and try again" +msgid "Could not accept payment" +msgstr "" + +#: src/js/controllers/index.js +msgid "Could not access Wallet Service: Not found" msgstr "" #: src/js/controllers/walletHome.js -msgid "Could not broadcast payment. Check you connection and try again" +msgid "Could not broadcast payment" msgstr "" -#: src/js/controllers/walletHome.js -msgid "Could not connect wallet service. Check your Internet connexion and your wallet service configuration." -msgstr "" - -#: src/js/controllers/walletHome.js -msgid "Could not create address. Check you connection and try again" +#: src/js/services/addressService.js +msgid "Could not create address" msgstr "" #: src/js/controllers/walletHome.js @@ -241,7 +306,7 @@ msgid "Could not decrypt file, check your password" msgstr "" #: src/js/controllers/walletHome.js -msgid "Could not delete payment proposal. Check you connection and try again" +msgid "Could not delete payment proposal" msgstr "" #: src/js/controllers/walletHome.js @@ -260,19 +325,23 @@ msgstr "" msgid "Could not join using the specified extended private key" msgstr "" -#: src/js/controllers/join.js -msgid "Could not join wallet:" +#: src/js/services/profileService.js +msgid "Could not join wallet" msgstr "" #: src/js/controllers/walletHome.js -msgid "Could not reject payment. Check you connection and try again" +msgid "Could not recognize a valid Bitcoin QR Code" +msgstr "" + +#: src/js/controllers/walletHome.js +msgid "Could not reject payment" msgstr "" #: src/js/controllers/walletHome.js msgid "Could not send payment" msgstr "" -#: public/views/walletHome.html +#: src/js/controllers/index.js msgid "Could not update Wallet" msgstr "" @@ -309,6 +378,11 @@ msgstr "" msgid "Creating transaction" msgstr "" +#: public/views/preferencesFee.html +#: public/views/modals/advancedSend.html +msgid "Current fee rate for this policy: {{fee.feePerKBUnit}}/kiB" +msgstr "" + #: public/views/modals/tx-details.html msgid "Date" msgstr "" @@ -340,23 +414,27 @@ msgstr "" msgid "Details" msgstr "" -#: src/js/controllers/index.js -msgid "Deutsch" -msgstr "" - #: public/views/preferences.html msgid "Disabled" msgstr "" +#: public/views/backup.html +msgid "Do not include private key in backup" +msgstr "" + +#: public/views/translators.html +msgid "Don't see your language on Crowdin? Contact the Owner on Crowdin! We'd love to support your language." +msgstr "" + +#: public/views/walletHome.html +msgid "Download CSV file" +msgstr "" + #: public/views/backup.html msgid "Download backup" msgstr "" -#: public/views/includes/password.html -msgid "ENTER" -msgstr "" - -#: src/js/controllers/preferencesFee.js +#: src/js/services/feeService.js msgid "Economy" msgstr "" @@ -364,10 +442,6 @@ msgstr "" msgid "Email Notifications" msgstr "" -#: src/js/controllers/preferencesFee.js -msgid "Emergency" -msgstr "" - #: public/views/preferences.html msgid "Encrypt Private Key" msgstr "" @@ -376,20 +450,16 @@ msgstr "" msgid "Encrypted backup file saved" msgstr "" -#: src/js/controllers/index.js -msgid "English" -msgstr "" - #: public/views/includes/password.html msgid "Enter your password" msgstr "" -#: src/js/services/profileService.js -msgid "Error creating wallet" +#: src/js/controllers/index.js +msgid "Error at Wallet Service" msgstr "" #: src/js/services/profileService.js -msgid "Error creating wallet. Check your internet connection" +msgid "Error creating wallet" msgstr "" #: src/js/services/profileService.js @@ -401,6 +471,10 @@ msgstr "" msgid "Expires" msgstr "" +#: public/views/backup.html +msgid "Failed to create backup" +msgstr "" + #: src/js/controllers/importLegacy.js msgid "Failed to import wallets" msgstr "" @@ -409,19 +483,32 @@ msgstr "" msgid "Family vacation funds" msgstr "" +#: public/views/modals/tx-details.html #: public/views/modals/txp-details.html msgid "Fee" msgstr "" +#: public/views/modals/advancedSend.html +msgid "Fee Policy" +msgstr "" + +#: public/views/walletHome.html +msgid "Fee policy for this transaction" +msgstr "" + #. Get information of payment if using Payment Protocol #: src/js/controllers/walletHome.js msgid "Fetching Payment Information" msgstr "" -#: src/js/controllers/index.js +#: public/views/translators.html msgid "French" msgstr "" +#: src/js/services/bwsError.js +msgid "Funds are locked by pending spend proposals" +msgstr "" + #: src/js/services/notificationsService.js msgid "Funds received" msgstr "" @@ -438,6 +525,14 @@ msgstr "" msgid "Generate new address" msgstr "" +#: public/views/walletHome.html +msgid "Generating .csv file..." +msgstr "" + +#: public/views/translators.html +msgid "German" +msgstr "" + #: public/views/modals/wallets.html msgid "Getting address for wallet {{selectedWalletName}} ..." msgstr "" @@ -450,13 +545,19 @@ msgstr "" msgid "Go back" msgstr "" +#: public/views/translators.html +msgid "Greek" +msgstr "" + #: public/views/import.html msgid "Have a Backup from Copay v0.9?" msgstr "" +#: public/views/backup.html #: public/views/create.html #: public/views/join.html -msgid "Hide Advanced options" +#: public/views/walletHome.html +msgid "Hide advanced options" msgstr "" #: src/js/controllers/index.js @@ -505,7 +606,35 @@ msgstr "" msgid "Importing..." msgstr "" -#: src/js/controllers/index.js +#: src/js/services/bwsError.js +msgid "Incorrect address network" +msgstr "" + +#: src/js/services/bwsError.js +msgid "Insufficient funds" +msgstr "" + +#: src/js/services/bwsError.js +msgid "Insufficient funds for fee" +msgstr "" + +#: public/views/walletHome.html +msgid "Invalid" +msgstr "" + +#: src/js/services/bwsError.js +msgid "Invalid address" +msgstr "" + +#: src/js/controllers/copayers.js +msgid "Invitation to share a Copay Wallet" +msgstr "" + +#: public/views/translators.html +msgid "Italian" +msgstr "" + +#: public/views/translators.html msgid "Japanese" msgstr "" @@ -518,6 +647,10 @@ msgstr "" msgid "Join" msgstr "" +#: src/js/controllers/copayers.js +msgid "Join my Copay wallet. Here is the invitation code: {{secret}} You can download Copay for your phone or desktop at https://copay.io" +msgstr "" + #: public/views/add.html msgid "Join shared wallet" msgstr "" @@ -534,6 +667,14 @@ msgstr "" msgid "Learn more about Wallet Migration" msgstr "" +#: src/js/services/bwsError.js +msgid "Locktime in effect. Please wait to create a new spend proposal" +msgstr "" + +#: src/js/services/bwsError.js +msgid "Locktime in effect. Please wait to remove this spend proposal" +msgstr "" + #: public/views/paymentUri.html msgid "Make a payment to" msgstr "" @@ -582,33 +723,46 @@ msgstr "" msgid "Network" msgstr "" +#: src/js/services/bwsError.js +msgid "Network connection error" +msgstr "" + #: src/js/services/notificationsService.js msgid "New Payment Proposal" msgstr "" -#: public/views/modals/confirmation.html -msgid "No" +#: public/views/walletHome.html +msgid "No Private key" msgstr "" #: public/views/walletHome.html msgid "No transactions yet" msgstr "" -#: src/js/controllers/preferencesFee.js +#: src/js/services/feeService.js msgid "Normal" msgstr "" +#: src/js/services/bwsError.js +msgid "Not authorized" +msgstr "" + #: public/views/walletHome.html #: public/views/modals/customized-amount.html msgid "Not valid" msgstr "" #: public/views/walletHome.html +#: public/views/includes/output.html #: public/views/modals/tx-details.html -#: public/views/modals/txp-details.html msgid "Note" msgstr "" +#: public/views/includes/alert.html +#: public/views/includes/password.html +msgid "OK" +msgstr "" + #: public/views/modals/tx-status.html msgid "OKAY" msgstr "" @@ -712,6 +866,10 @@ msgstr "" msgid "Payment to" msgstr "" +#: public/views/walletHome.html +msgid "Pending Confirmation" +msgstr "" + #: public/views/preferencesDeleteWallet.html msgid "Permanently delete this wallet. THIS ACTION CANNOT BE REVERSED" msgstr "" @@ -725,11 +883,15 @@ msgstr "" msgid "Please enter the required fields" msgstr "" +#: src/js/services/bwsError.js +msgid "Please upgrade Copay to perform this action" +msgstr "" + #: src/js/controllers/import.js msgid "Please, select your backup file" msgstr "" -#: src/js/controllers/index.js +#: public/views/translators.html msgid "Portuguese" msgstr "" @@ -737,7 +899,11 @@ msgstr "" msgid "Preferences" msgstr "" -#: src/js/controllers/preferencesFee.js +#: src/js/controllers/backup.js +msgid "Preparing backup..." +msgstr "" + +#: src/js/services/feeService.js msgid "Priority" msgstr "" @@ -757,6 +923,11 @@ msgstr "" msgid "Received" msgstr "" +#: public/views/includes/output.html +#: public/views/includes/transaction.html +msgid "Recipients" +msgstr "" + #: public/views/walletHome.html msgid "Reconnecting to Wallet Service..." msgstr "" @@ -800,6 +971,10 @@ msgstr "" msgid "Retrying..." msgstr "" +#: public/views/translators.html +msgid "Russian" +msgstr "" + #: public/views/includes/password.html msgid "SET" msgstr "" @@ -913,9 +1088,15 @@ msgstr "" msgid "Shared Wallet" msgstr "" +#: public/views/backup.html #: public/views/create.html #: public/views/join.html -msgid "Show Advanced options" +#: public/views/walletHome.html +msgid "Show advanced options" +msgstr "" + +#: src/js/services/bwsError.js +msgid "Signatures rejected by server" msgstr "" #: src/js/controllers/walletHome.js @@ -926,10 +1107,18 @@ msgstr "" msgid "Signing transaction" msgstr "" -#: src/js/controllers/index.js +#: public/views/translators.html msgid "Spanish" msgstr "" +#: src/js/services/bwsError.js +msgid "Spend proposal is not accepted" +msgstr "" + +#: src/js/services/bwsError.js +msgid "Spend proposal not found" +msgstr "" + #: src/js/controllers/copayers.js #: src/js/controllers/import.js #: src/js/controllers/preferencesDelete.js @@ -954,7 +1143,7 @@ msgid "The payment was created but could not be completed. Please try again from msgstr "" #: src/js/controllers/walletHome.js -msgid "The payment was created but could not be signed. Please try again from home screen." +msgid "The payment was created but could not be signed. Please try again from home screen" msgstr "" #: public/views/modals/txp-details.html @@ -962,7 +1151,7 @@ msgid "The payment was removed by creator" msgstr "" #: src/js/controllers/walletHome.js -msgid "The payment was signed but could not be broadcasted. Please try again from home screen." +msgid "The payment was signed but could not be broadcasted. Please try again from home screen" msgstr "" #: public/views/backup.html @@ -973,6 +1162,10 @@ msgstr "" msgid "The software you are about to use functions as a free, open source, and multi-signature digital wallet. The software does not constitute an account where BitPay or other third parties serve as financial intermediaries or custodians of your bitcoin. While the software has undergone beta testing and continues to be improved by feedback from the open-source user and developer community, we cannot guarantee that there will be no bugs in the software. You acknowledge that your use of this software is at your own discretion and in compliance with all applicable laws. You are responsible for safekeeping your passwords, private key pairs, PINs and any other codes you use to access the software. IF YOU LOSE ACCESS TO YOUR COPAY WALLET OR YOUR ENCRYPTED PRIVATE KEYS AND YOU HAVE NOT SEPARATELY STORED A BACKUP OF YOUR WALLET AND CORRESPONDING PASSWORD, YOU ACKNOWLEDGE AND AGREE THAT ANY BITCOIN YOU HAVE ASSOCIATED WITH THAT COPAY WALLET WILL BECOME INACCESSIBLE. All transaction requests are irreversible. The authors of the software, employees and affiliates of Bitpay, copyright holders, and BitPay, Inc. cannot retrieve your private keys or passwords if you lose or forget them and cannot guarantee transaction confirmation as they do not have control over the Bitcoin network. To the fullest extent permitted by law, this software is provided “as is” and no representations or warranties can be made of any kind, express or implied, including but not limited to the warranties of merchantability, fitness or a particular purpose and noninfringement. You assume any and all risks associated with the use of the software. In no event shall the authors of the software, employees and affiliates of Bitpay, copyright holders, or BitPay, Inc. be held liable for any claim, damages or other liability, whether in an action of contract, tort, or otherwise, arising from, out of or in connection with the software. We reserve the right to modify this disclaimer from time to time." msgstr "" +#: src/js/services/bwsError.js +msgid "The spend proposal is not pending" +msgstr "" + #: src/js/controllers/copayers.js #: src/js/controllers/preferencesDelete.js msgid "The wallet \"{{walletName}}\" was deleted" @@ -986,6 +1179,10 @@ msgstr "" msgid "There is an error in the form" msgstr "" +#: public/views/modals/tx-details.html +msgid "This transaction has become invalid; possibly due to a double spend attempt." +msgstr "" + #: public/views/walletHome.html msgid "This wallet is not registered at the given Bitcore Wallet Service (BWS). You can recreate it from the local information." msgstr "" @@ -995,12 +1192,17 @@ msgid "Time" msgstr "" #: public/views/walletHome.html +#: public/views/includes/output.html #: public/views/includes/transaction.html #: public/views/modals/tx-details.html #: public/views/modals/txp-details.html msgid "To" msgstr "" +#: public/views/includes/output.html +msgid "Total" +msgstr "" + #: public/views/walletHome.html msgid "Total Locked Balance" msgstr "" @@ -1009,6 +1211,18 @@ msgstr "" msgid "Transaction" msgstr "" +#: src/js/services/bwsError.js +msgid "Transaction already broadcasted" +msgstr "" + +#: public/views/translators.html +msgid "Translation Credits" +msgstr "" + +#: public/views/preferencesAbout.html +msgid "Translators" +msgstr "" + #: src/js/controllers/walletHome.js msgid "Unable to send transaction proposal" msgstr "" @@ -1034,6 +1248,11 @@ msgstr "" msgid "Updating Wallet..." msgstr "" +#: public/views/preferences.html +#: public/views/walletHome.html +msgid "Use Unconfirmed Funds" +msgstr "" + #: public/views/preferencesAbout.html msgid "Version" msgstr "" @@ -1078,6 +1297,7 @@ msgstr "" msgid "Wallet Invitation is not valid!" msgstr "" +#: src/js/services/bwsError.js #: src/js/services/profileService.js msgid "Wallet already exists" msgstr "" @@ -1086,18 +1306,34 @@ msgstr "" msgid "Wallet incomplete and broken" msgstr "" +#: src/js/services/bwsError.js +msgid "Wallet is full" +msgstr "" + +#: src/js/services/bwsError.js +msgid "Wallet is not complete" +msgstr "" + #: public/views/create.html msgid "Wallet name" msgstr "" -#: src/js/controllers/walletHome.js -msgid "Wallet service timed out. Check your Internet connexion and your wallet service configuration." +#: src/js/services/bwsError.js +msgid "Wallet not found" +msgstr "" + +#: src/js/services/bwsError.js +msgid "Wallet service not found" msgstr "" #: public/views/preferencesDeleteWallet.html msgid "Warning!" msgstr "" +#: public/views/modals/txp-details.html +msgid "Warning: this transaction has unconfirmed inputs" +msgstr "" + #: src/js/services/profileService.js msgid "Wrong password" msgstr "" @@ -1158,10 +1394,6 @@ msgstr "" msgid "too long!" msgstr "" -#: public/views/preferencesFee.html -msgid "{{fee.value}} bits per kB" -msgstr "" - #: src/js/controllers/walletHome.js msgid "{{fee}} will be discounted for bitcoin networking fees" msgstr "" diff --git a/package.json b/package.json index 001cd1c24..2264f8b1c 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "copay", "description": "A multisignature wallet", "author": "BitPay", - "version": "1.1.1", + "version": "1.1.3", "keywords": [ "wallet", "copay", @@ -12,6 +12,8 @@ ], "main": "public/index.html", "window": { + "title": "Copay - A multisignature wallet", + "icon": "./public/img/icons/icon-256.png", "toolbar": false, "show": true, "visible": true, @@ -45,11 +47,10 @@ "grunt-cli": "^0.1.13", "grunt-contrib-concat": "^0.5.1", "grunt-contrib-copy": "^0.8.0", + "grunt-contrib-compress": "^0.13.0", "grunt-contrib-uglify": "^0.8.0", "grunt-contrib-watch": "^0.5.3", "grunt-exec": "^0.4.6", - "grunt-markdown": "^0.5.0", - "grunt-release": "^0.7.0", "shelljs": "^0.3.0" }, "scripts": { @@ -57,10 +58,10 @@ "test": "./node_modules/.bin/grunt test-coveralls" }, "devDependencies": { + "adm-zip": "^0.4.7", "angular": "^1.3.14", "angular-mocks": "^1.3.14", - "grunt-contrib-compress": "^0.13.0", - "grunt-contrib-copy": "^0.8.0", + "bhttp": "^1.2.1", "grunt-karma": "^0.10.1", "grunt-karma-coveralls": "^2.5.3", "grunt-node-webkit-builder": "^1.0.2", diff --git a/po/es.po b/po/es.po deleted file mode 100644 index 6f2499a88..000000000 --- a/po/es.po +++ /dev/null @@ -1,2149 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Copay\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Language: es\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.6.10\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: public/views/modals/txp-details.html -msgid "" -"* A payment proposal can be deleted if 1) you are the creator, and no other " -"copayer has signed, or 2) 24 hours have passed since the proposal was " -"created." -msgstr "" -"* Una propuesta de pago puede ser eliminada si 1) Ud. es el creador, y " -"ningún otro copayer la ha firmado, o 2) han transcurrido 24 horas desde la " -"creación de la propuesta." - -#: public/views/backup.html -msgid "" -"* You can safely install your backup on another device and use your wallet " -"from multiple devices at the same time." -msgstr "" -"* Usted puede instalar la copia de seguridad en otro dispositivo y usar el " -"monedero al mismo tiempo en varios dispositivos." - -#: public/views/splash.html -msgid "A multisignature bitcoin wallet" -msgstr "Monedero multifirma de bitcoin" - -#: public/views/preferences.html -msgid "About Copay" -msgstr "Acerca de Copay" - -#: public/views/modals/txp-details.html -msgid "Accept" -msgstr "Aceptar" - -#: public/views/includes/sidebar.html -msgid "Add wallet" -msgstr "Agregar monedero" - -#: public/views/paymentUri.html public/views/modals/customized-amount.html -#: public/views/modals/paypro.html -msgid "Address" -msgstr "Dirección" - -#: public/views/preferences.html -msgid "Advanced" -msgstr "Avanzado" - -#: public/views/disclaimer.html -msgid "Agree" -msgstr "Aceptar" - -#: public/views/preferencesAlias.html -msgid "Alias for {{index.walletName}}" -msgstr "Alias de {{index.walletName}}" - -#: public/views/splash.html -msgid "Already have a wallet?" -msgstr "¿Ya dispone de un monedero?" - -#: public/views/preferences.html -msgid "Alternative Currency" -msgstr "Moneda Alternativa" - -#: public/views/paymentUri.html public/views/walletHome.html -#: public/views/modals/customized-amount.html -#: public/views/modals/txp-details.html -msgid "Amount" -msgstr "Importe" - -#: public/views/walletHome.html public/views/modals/customized-amount.html -msgid "Amount in" -msgstr "Importe en" - -#: public/views/preferencesLanguage.html -msgid "Applying changes" -msgstr "Aplicando los cambios" - -#: src/js/controllers/copayers.js src/js/controllers/preferencesDelete.js -msgid "Are you sure you want to delete this wallet?" -msgstr "¿Estas seguro de borrar este monedero?" - -#: public/views/walletHome.html -msgid "Available Balance" -msgstr "Balance disponible" - -#: public/views/create.html public/views/join.html -msgid "BIP32 master extended private key" -msgstr "BIP32 master extended private key" - -#: public/views/includes/topbar.html public/views/modals/tx-details.html -#: public/views/modals/txp-details.html -msgid "Back" -msgstr "Volver" - -#: public/views/preferences.html -msgid "Backup" -msgstr "Copia de seguridad" - -#: src/js/controllers/backup.js -msgid "Backup created" -msgstr "Copia de Seguridad creada" - -#: public/views/walletHome.html -msgid "Backup now" -msgstr "Copia de seguridad" - -#: public/views/backup.html -msgid "Backup options" -msgstr "Opciones de copia de seguridad" - -#: public/views/walletHome.html -msgid "" -"Before receiving funds, it is highly recommended you backup your wallet keys." -msgstr "" -"Antes de recibir fondos, es altamente recomendable realizar una copia de " -"seguridad." - -#: public/views/preferences.html -msgid "Bitcoin Network Fee Policy" -msgstr "Política de Costo de la Red Bitcoin" - -#: public/views/paymentUri.html -msgid "Bitcoin URI is NOT valid!" -msgstr "¡Bitcoin URI no es válida!" - -#: public/views/walletHome.html -msgid "Bitcoin address" -msgstr "Dirección bitcoin" - -#: public/views/preferencesFee.html -msgid "" -"Bitcoin transactions may include a fee collected by miners on the network. " -"The higher the fee, the greater the incentive a miner has to include that " -"transaction in a block. The ‘Emergency’ level should only be used when there " -"is a network congestion." -msgstr "" -"Las transacciones de Bitcoin pueden incluir una tasa que es recaudada por " -"los mineros de la red. Cuanto mayor sea la tasa, mayor será el incentivo de " -"los mineros para incluir esa transacción en un bloque. El nivel 'Emergencia' " -"debe ser utilizado solo cuando hay una congestión en la red." - -#: public/views/modals/txp-details.html -msgid "Broadcast Payment" -msgstr "Emitir Pago" - -#: src/js/controllers/walletHome.js -msgid "Broadcasting Payment" -msgstr "Emitiendo el Pago" - -#: src/js/controllers/walletHome.js -msgid "Broadcasting transaction" -msgstr "Emitiendo transacción" - -#: public/views/unsupported.html -msgid "Browser unsupported" -msgstr "Navegador no soportado" - -#: public/views/modals/txp-details.html -msgid "But not broadcasted. Try to send manually" -msgstr "Pero no transmitida. Inténtelo manualmente" - -#: public/views/includes/password.html -msgid "CANCEL" -msgstr "CANCELAR" - -#: public/views/copayers.html public/views/walletHome.html -msgid "Cancel" -msgstr "Cancelar" - -#: public/views/modals/paypro.html -msgid "Certified by" -msgstr "Certificado por" - -#: public/views/preferencesAlias.html -msgid "Changing wallet alias only affects the local wallet name." -msgstr "" -"Cambiar el alias del monedero solo afecta al nombre del monedero local." - -#: src/js/controllers/walletHome.js -msgid "Check you connection and try again" -msgstr "Verifique su conexión e inténtelo nuevamente" - -#: public/views/import.html -msgid "Choose a backup file from your computer" -msgstr "Seleccione el archivo backup de su computadora" - -#: public/views/modals/wallets.html -msgid "Choose a wallet to send funds" -msgstr "Seleccione un monedero para enviar fondos" - -#: public/views/includes/topbar.html public/views/modals/copayers.html -#: public/views/modals/customized-amount.html public/views/modals/paypro.html -#: public/views/modals/scanner.html public/views/modals/wallets.html -msgid "Close" -msgstr "Cerrar" - -#: public/views/preferences.html -msgid "Color" -msgstr "Color" - -#: public/views/preferencesAbout.html -msgid "Commit hash" -msgstr "Commit hash" - -#: public/views/modals/tx-details.html -msgid "Confirmations" -msgstr "Confirmaciones" - -#: public/views/modals/copayers.html -msgid "Copayers" -msgstr "Copayers" - -#: public/views/backup.html -msgid "Copy backup to a safe place" -msgstr "Guardar copia de seguridad en un lugar seguro" - -#: public/views/backup.html -msgid "Copy this text as it is to a safe place (notepad or email)" -msgstr "" -"Copiar el texto como esta en un lugar seguro (bloc de notas o correo " -"electrónico)" - -#: public/views/backup.html -msgid "Copy to clipboard" -msgstr "Copiar al portapapeles" - -#: src/js/controllers/walletHome.js -msgid "Could not accept payment. Check you connection and try again" -msgstr "" -"No se pudo aceptar el pago. Verifique su conexión e inténtelo nuevamente" - -#: src/js/controllers/walletHome.js -msgid "Could not broadcast payment. Check you connection and try again" -msgstr "" -"No se pudo emitir el pago. Verifique su conexión e inténtelo nuevamente" - -#: src/js/controllers/walletHome.js -msgid "" -"Could not connect wallet service. Check your Internet connexion and your " -"wallet service configuration." -msgstr "" -"No se pudo conectar con Wallet Service. Verifique la conexión a internet y " -"la configuración a Wallet Service." - -#: src/js/controllers/walletHome.js -msgid "Could not create address. Check you connection and try again" -msgstr "" -"No se pudo crear la dirección. Verifique su conexión e inténtelo nuevamente" - -#: src/js/controllers/walletHome.js -msgid "Could not create payment proposal" -msgstr "No se pudo crear la propuesta de pago" - -#: src/js/services/profileService.js -msgid "Could not create using the specified extended private key" -msgstr "No se pudo crear el monedero usando la clave privada ingresada" - -#: src/js/controllers/import.js -msgid "Could not decrypt file, check your password" -msgstr "No se pudo desencriptar el archivo, verifique su contraseña" - -#: src/js/controllers/walletHome.js -msgid "Could not delete payment proposal. Check you connection and try again" -msgstr "" -"No se pudo eliminar la propuesta de pago. Verifique su conexión e inténtelo " -"nuevamente" - -#: src/js/controllers/walletHome.js -msgid "Could not fetch payment information" -msgstr "No se pudo obtener información del pago" - -#: public/views/walletHome.html -msgid "Could not fetch transaction history" -msgstr "No se pudo obtener el historial de transacciones" - -#: src/js/services/profileService.js -msgid "Could not import. Check input file and password" -msgstr "No se pudo importar. Verifique el archivo y su contraseña" - -#: src/js/services/profileService.js -msgid "Could not join using the specified extended private key" -msgstr "No se pudo unir al monedero usando la clave privada ingresada" - -#: src/js/controllers/join.js -msgid "Could not join wallet:" -msgstr "No se pudo unir al monedero:" - -#: src/js/controllers/walletHome.js -msgid "Could not reject payment. Check you connection and try again" -msgstr "" -"No se pudo rechazar el pago. Verifique su conexión e inténtelo nuevamente" - -#: src/js/controllers/walletHome.js -msgid "Could not send payment" -msgstr "No se pudo enviar el pago" - -#: public/views/walletHome.html -msgid "Could not update Wallet" -msgstr "No se puede actualizar el monedero" - -#: public/views/walletHome.html -msgid "Create" -msgstr "Crear" - -#: public/views/add.html public/views/create.html -msgid "Create new wallet" -msgstr "Crear nuevo monedero" - -#: public/views/create.html -msgid "Create {{requiredCopayers}}-of-{{totalCopayers}} wallet" -msgstr "Crea monedero {{requiredCopayers}}-de-{{totalCopayers}}" - -#: public/views/includes/sidebar.html -msgid "Create, join or import" -msgstr "Crear, unirse o importar" - -#: public/views/modals/txp-details.html -msgid "Created by" -msgstr "Creado por" - -#: public/views/splash.html -msgid "Creating Profile..." -msgstr "Creando el Perfil..." - -#: public/views/create.html -msgid "Creating Wallet..." -msgstr "Creando Monedero..." - -#: src/js/controllers/walletHome.js -msgid "Creating transaction" -msgstr "Creando transacción" - -#: public/views/modals/tx-details.html -msgid "Date" -msgstr "Fecha" - -#: public/views/modals/txp-details.html -msgid "Delete Payment Proposal" -msgstr "Eliminar Propuesta de Pago" - -#: public/views/preferencesAdvanced.html -msgid "Delete Wallet" -msgstr "Eliminar monedero" - -#: public/views/copayers.html -msgid "Delete it and create a new one" -msgstr "Borrarlo y crear uno nuevo" - -#: public/views/preferencesDeleteWallet.html -msgid "Delete wallet" -msgstr "Eliminar monedero" - -#: src/js/controllers/walletHome.js -msgid "Deleting payment" -msgstr "Eliminando el Pago" - -#: public/views/modals/customized-amount.html public/views/modals/paypro.html -#: public/views/modals/tx-details.html public/views/modals/txp-details.html -msgid "Details" -msgstr "Detalles" - -#: src/js/controllers/index.js -msgid "Deutsch" -msgstr "Alemán" - -#: public/views/preferences.html -msgid "Disabled" -msgstr "Deshabilitado" - -#: public/views/backup.html -msgid "Download backup" -msgstr "Descargar copia de seguridad" - -#: public/views/includes/password.html -msgid "ENTER" -msgstr "ENTRAR" - -#: src/js/controllers/preferencesFee.js -msgid "Economy" -msgstr "Económico" - -#: public/views/preferences.html -msgid "Email Notifications" -msgstr "Notificaciones por Email" - -#: src/js/controllers/preferencesFee.js -msgid "Emergency" -msgstr "Emergencia" - -#: public/views/preferences.html -msgid "Encrypt Private Key" -msgstr "Encriptar Clave Privada" - -#: src/js/controllers/backup.js -msgid "Encrypted backup file saved" -msgstr "Archivo de copia de seguridad encriptado guardado" - -#: src/js/controllers/index.js -msgid "English" -msgstr "Inglés" - -#: public/views/includes/password.html -msgid "Enter your password" -msgstr "Escribe tu contraseña" - -#: src/js/services/profileService.js -msgid "Error creating wallet" -msgstr "Error al crear monedero" - -#: src/js/services/profileService.js -msgid "Error creating wallet. Check your internet connection" -msgstr "Error al crear monedero. Verifique su conexión a internet" - -#: src/js/services/profileService.js -msgid "Error importing wallet:" -msgstr "Error al importar monedero: " - -#: public/views/modals/paypro.html public/views/modals/txp-details.html -msgid "Expires" -msgstr "Expira" - -#: src/js/controllers/importLegacy.js -msgid "Failed to import wallets" -msgstr "Falló al importar monederos" - -#: public/views/create.html -msgid "Family vacation funds" -msgstr "Fondos para vacaciones en familia" - -#: public/views/modals/txp-details.html -msgid "Fee" -msgstr "Costo" - -#. Get information of payment if using Payment Protocol -#: src/js/controllers/walletHome.js -msgid "Fetching Payment Information" -msgstr "Obteniendo información del pago" - -#: src/js/controllers/index.js -msgid "French" -msgstr "Francés" - -#: src/js/services/notificationsService.js -msgid "Funds received" -msgstr "Fondos Recibidos" - -#: public/views/splash.html -msgid "GET STARTED" -msgstr "COMENZAR" - -#: public/views/modals/customized-amount.html -msgid "Generate QR Code" -msgstr "Generar código QR" - -#: public/views/walletHome.html -msgid "Generate new address" -msgstr "Generar nueva dirección" - -#: public/views/modals/wallets.html -msgid "Getting address for wallet {{selectedWalletName}} ..." -msgstr "Obteniendo direcciones para el monedero {{selectedWalletName}} ..." - -#: public/views/preferences.html -msgid "Global settings" -msgstr "Opciones globales" - -#: public/views/disclaimer.html -msgid "Go back" -msgstr "Volver" - -#: public/views/import.html -msgid "Have a Backup from Copay v0.9?" -msgstr "¿Tiene una copia de seguridad de Copay v0.9?" - -#: public/views/create.html public/views/join.html -msgid "Hide Advanced options" -msgstr "Ocultar opciones avanzadas" - -#: src/js/controllers/index.js -msgid "History" -msgstr "Historial" - -#: src/js/controllers/index.js -msgid "Home" -msgstr "Inicio" - -#: public/views/disclaimer.html -msgid "I affirm that I have read, understood, and agree with these terms." -msgstr "Confirmo haber leído, entendido y aceptado estos términos." - -#: public/views/create.html public/views/join.html -msgid "If not given, a secure key will be generated" -msgstr "Si no se ingresa, una clave segura será generada" - -#: public/views/importLegacy.html -msgid "Import" -msgstr "Importar" - -#: public/views/import.html public/views/splash.html -msgid "Import backup" -msgstr "Importar copia de seguridad" - -#: public/views/importLegacy.html -msgid "Import from the Cloud?" -msgstr "¿Importar de la Nube?" - -#: public/views/import.html -msgid "Import here" -msgstr "Importar aquí" - -#: public/views/add.html -msgid "Import wallet" -msgstr "Importar monedero" - -#: public/views/import.html -msgid "Importing wallet..." -msgstr "Importando monedero..." - -#: public/views/importLegacy.html -msgid "Importing..." -msgstr "Importando..." - -#: src/js/controllers/index.js -msgid "Japanese" -msgstr "Japonés" - -#: public/views/create.html public/views/join.html -msgid "John" -msgstr "Juan" - -#: public/views/join.html -msgid "Join" -msgstr "Unirse" - -#: public/views/add.html -msgid "Join shared wallet" -msgstr "Unirse a un monedero" - -#: public/views/join.html -msgid "Joining Wallet..." -msgstr "Uniéndose al Monedero..." - -#: public/views/preferences.html -msgid "Language" -msgstr "Idioma" - -#: public/views/importLegacy.html -msgid "Learn more about Wallet Migration" -msgstr "Más detalles para migrar Monedero" - -#: public/views/paymentUri.html -msgid "Make a payment to" -msgstr "Hacer un pago a" - -#: public/views/create.html public/views/join.html -msgid "Master extended private key" -msgstr "Master extended private key" - -#: public/views/includes/copayers.html public/views/modals/copayers.html -#: public/views/modals/tx-details.html public/views/modals/txp-details.html -msgid "Me" -msgstr "Yo" - -#: public/views/modals/paypro.html -msgid "Memo" -msgstr "Nota" - -#: public/views/modals/tx-details.html -msgid "Merchant message" -msgstr "Mensaje del negocio" - -#: public/views/paymentUri.html -msgid "Message" -msgstr "Mensaje" - -#: public/views/walletHome.html -msgid "More" -msgstr "Más" - -#: public/views/walletHome.html -msgid "Moved" -msgstr "Movido" - -#: public/views/walletHome.html -msgid "Multisignature wallet" -msgstr "Monedero multifirma" - -#: public/views/walletHome.html -msgid "My Bitcoin address" -msgstr "Mi dirección Bitcoin" - -#: public/views/paymentUri.html -msgid "Network" -msgstr "Red" - -#: src/js/services/notificationsService.js -msgid "New Payment Proposal" -msgstr "Nueva Propuesta de Pago" - -#: public/views/modals/confirmation.html -msgid "No" -msgstr "No" - -#: public/views/walletHome.html -msgid "No transactions yet" -msgstr "Sin transacciones todavía" - -#: src/js/controllers/preferencesFee.js -msgid "Normal" -msgstr "Normal" - -#: public/views/walletHome.html public/views/modals/customized-amount.html -msgid "Not valid" -msgstr "No válido" - -#: public/views/walletHome.html public/views/modals/tx-details.html -#: public/views/modals/txp-details.html -msgid "Note" -msgstr "Nota" - -#: public/views/modals/tx-status.html -msgid "OKAY" -msgstr "LISTO" - -#: public/views/modals/tx-details.html public/views/modals/txp-details.html -msgid "Participants" -msgstr "Participantes" - -#: public/views/import.html public/views/importLegacy.html -msgid "Password" -msgstr "Contraseña" - -#: public/views/includes/password.html -msgid "Password cannot be recovered. Be sure to write it down" -msgstr "" -"La contraseña no se puede recuperar. Asegúrese de escribirla en un lugar " -"seguro" - -#: src/js/services/profileService.js -msgid "Password needed" -msgstr "Contraseña requerida" - -#: src/js/controllers/password.js -msgid "Passwords do not match" -msgstr "Las contraseñas no coinciden" - -#: public/views/join.html -msgid "Paste invitation here" -msgstr "Pegar invitación aquí" - -#: public/views/import.html -msgid "Paste the backup plain text code" -msgstr "Pegar copia de seguridad en texto plano" - -#: public/views/modals/paypro.html -msgid "Pay To" -msgstr "Pagar A" - -#: public/views/modals/tx-status.html -msgid "Payment Accepted" -msgstr "El Pago fue Aceptado" - -#: public/views/modals/txp-details.html -msgid "Payment Proposal" -msgstr "Propuesta de Pago" - -#: public/views/modals/tx-status.html -msgid "Payment Proposal Created" -msgstr "Propuesta de Pago Creada" - -#: src/js/services/notificationsService.js -msgid "Payment Proposal Rejected" -msgstr "Propuesta de Pago Rechazada" - -#: src/js/services/notificationsService.js -msgid "Payment Proposal Rejected by Copayer" -msgstr "Propuesta de Pago Rechazada por Copayer" - -#: src/js/services/notificationsService.js -msgid "Payment Proposal Signed by Copayer" -msgstr "Propuesta de Pago Firmada por Copayer" - -#: public/views/walletHome.html -msgid "Payment Proposals" -msgstr "Propuestas de Pago" - -#: src/js/controllers/walletHome.js -msgid "Payment Protocol not supported on Chrome App" -msgstr "El protocolo de pago no está soportado en Chrome" - -#: public/views/modals/tx-status.html -msgid "Payment Rejected" -msgstr "El pago fue rechazado" - -#: public/views/modals/tx-status.html src/js/services/notificationsService.js -msgid "Payment Sent" -msgstr "Pago Enviado" - -#: public/views/modals/txp-details.html -msgid "Payment accepted..." -msgstr "El pago aceptado..." - -#: public/views/modals/txp-details.html -msgid "Payment details" -msgstr "Detalles del pago" - -#: public/views/modals/txp-details.html -msgid "Payment finally rejected" -msgstr "El pago fue finalmente rechazado" - -#: public/views/modals/paypro.html -msgid "Payment request" -msgstr "Solicitud de pago" - -#: public/views/modals/txp-details.html -msgid "Payment sent!" -msgstr "¡Pago enviado!" - -#: public/views/walletHome.html -msgid "Payment to" -msgstr "Pago a" - -#: public/views/preferencesDeleteWallet.html -msgid "Permanently delete this wallet. THIS ACTION CANNOT BE REVERSED" -msgstr "" -"Borrar permanentemente este monedero. ESTA ACCIÓN NO PUEDE SER REVERTIDA" - -#: public/views/create.html -msgid "Personal Wallet" -msgstr "Monedero Personal" - -#: src/js/controllers/create.js src/js/controllers/join.js -msgid "Please enter the required fields" -msgstr "Por favor ingrese los campos requeridos" - -#: src/js/controllers/import.js -msgid "Please, select your backup file" -msgstr "Por favor, selecciona el archivo de copia de seguridad" - -#: src/js/controllers/index.js -msgid "Portuguese" -msgstr "Portugués" - -#: public/views/walletHome.html -msgid "Preferences" -msgstr "Preferencias" - -#: src/js/controllers/preferencesFee.js -msgid "Priority" -msgstr "Prioritario" - -#: public/views/modals/customized-amount.html -msgid "QR Code" -msgstr "Código QR" - -#: public/views/modals/scanner.html -msgid "QR-Scanner" -msgstr "Escáner QR" - -#: src/js/controllers/index.js -msgid "Receive" -msgstr "Recibir" - -#: public/views/walletHome.html -msgid "Received" -msgstr "Recibido" - -#: public/views/walletHome.html -msgid "Reconnecting to Wallet Service..." -msgstr "Reconectando a Wallet Service..." - -#: public/views/walletHome.html -msgid "Recreate" -msgstr "Recrear" - -#: public/views/walletHome.html -msgid "Recreating Wallet..." -msgstr "Recreando Monedero..." - -#: public/views/modals/txp-details.html -msgid "Reject" -msgstr "Rechazar" - -#: src/js/controllers/walletHome.js -msgid "Rejecting payment" -msgstr "Rechazando pago" - -#: public/views/preferencesAbout.html -msgid "Release Information" -msgstr "Información de la versión" - -#: public/views/backup.html public/views/includes/password.html -msgid "Repeat password" -msgstr "Repite la contraseña" - -#: public/views/walletHome.html public/views/modals/customized-amount.html -msgid "Request a specific amount" -msgstr "Solicitar una cantidad específica" - -#: public/views/import.html public/views/join.html -msgid "Required" -msgstr "Requerido" - -#: public/views/splash.html -msgid "Retrying..." -msgstr "Reintentando..." - -#: public/views/includes/password.html -msgid "SET" -msgstr "ESTABLECER" - -#: public/views/walletHome.html -msgid "SKIP BACKUP" -msgstr "OMITIR" - -#: public/views/preferencesAlias.html public/views/preferencesBwsUrl.html -#: public/views/preferencesEmail.html -msgid "Save" -msgstr "Guardar" - -#: public/views/preferencesEmail.html -msgid "Saving preferences..." -msgstr "Guardando preferencias..." - -#: src/js/services/notificationsService.js -msgid "Scan Finished" -msgstr "Escáner Finalizado" - -#: public/views/preferencesAdvanced.html -msgid "Scan addresses for funds" -msgstr "Escanear direcciones con fondos" - -#: public/views/walletHome.html -msgid "Scan status finished with error" -msgstr "El escáner del estado finalizó con error" - -#: public/views/walletHome.html -msgid "Scanning Wallet funds..." -msgstr "Escaneando fondos..." - -#: public/views/modals/tx-details.html -msgid "See it on the blockchain" -msgstr "Ver en la blockchain" - -#: public/views/import.html -msgid "Select a backup file" -msgstr "Seleccionar el archivo de copia de seguridad" - -#: public/views/paymentUri.html -msgid "Select a wallet" -msgstr "Seleccione un monedero" - -#: public/views/create.html -msgid "Select required number of signatures" -msgstr "Seleccione el número de firmas requeridas" - -#: public/views/create.html -msgid "Select total number of copayers" -msgstr "Seleccione el total de copayers" - -#: public/views/walletHome.html public/views/includes/transaction.html -#: src/js/controllers/index.js -msgid "Send" -msgstr "Enviar" - -#: public/views/walletHome.html -msgid "Send All" -msgstr "Enviar Todo" - -#: public/views/backup.html public/views/preferencesLogs.html -msgid "Send by email" -msgstr "Enviar por correo electrónico" - -#: public/views/walletHome.html -msgid "Sent" -msgstr "Enviado" - -#: public/views/importLegacy.html -msgid "Server" -msgstr "Servidor" - -#: public/views/preferencesAbout.html -msgid "Session log" -msgstr "Registro de sesión" - -#: public/views/backup.html -msgid "Set up a Password for your backup" -msgstr "Establecer contraseña para tu copia de seguridad" - -#: public/views/includes/password.html -msgid "Set up a password" -msgstr "Configure una contraseña" - -#: public/views/preferencesEmail.html -msgid "" -"Setting up email notifications could weaken your privacy, if the wallet " -"service provider is compromised. Information available to an attacker would " -"include your wallet addresses and its balance, but no more." -msgstr "" -"Configurar notificaciones por correo electrónico podría debilitar su " -"privacidad, si el proveedor de servicio se ve comprometido. Información " -"disponible para un atacante incluiría sus direcciones de cartera y su " -"balance, pero no más." - -#: public/views/walletHome.html -msgid "Share address" -msgstr "Compartir dirección" - -#: public/views/copayers.html -msgid "Share invitation" -msgstr "Compartir invitación" - -#: public/views/copayers.html -msgid "Share this invitation with your copayers" -msgstr "Comparta esta invitación con sus copayers" - -#: public/views/walletHome.html -msgid "" -"Share this wallet address to receive payments. To protect your privacy, new " -"addresses are generated automatically once you use them." -msgstr "" -"Compartir esta dirección para recibir pagos. Para proteger su privacidad, se " -"generan nuevas direcciones automáticamente luego de recibir un pago." - -#: public/views/create.html -msgid "Shared Wallet" -msgstr "Monedero Compartido" - -#: public/views/create.html public/views/join.html -msgid "Show Advanced options" -msgstr "Mostrar opciones avanzadas" - -#: src/js/controllers/walletHome.js -msgid "Signing payment" -msgstr "Firmando el pago" - -#: src/js/controllers/walletHome.js -msgid "Signing transaction" -msgstr "Firmando transacción" - -#: src/js/controllers/index.js -msgid "Spanish" -msgstr "Español" - -#: src/js/controllers/copayers.js src/js/controllers/import.js -#: src/js/controllers/preferencesDelete.js -msgid "Success" -msgstr "Listo" - -#: public/views/walletHome.html -msgid "Tap to retry" -msgstr "Toque para reintentar" - -#: public/views/disclaimer.html public/views/preferencesAbout.html -msgid "Terms of Use" -msgstr "Términos de Uso" - -#: public/views/create.html -msgid "Testnet" -msgstr "Testnet" - -#: src/js/controllers/walletHome.js -msgid "" -"The payment was created but could not be completed. Please try again from " -"home screen" -msgstr "" -"El pago fue creado pero no se pudo completar. Por favor intente nuevamente " -"desde la pantalla de inicio." - -#: src/js/controllers/walletHome.js -msgid "" -"The payment was created but could not be signed. Please try again from home " -"screen." -msgstr "" -"El pago fue creado pero no pudo ser firmado. Por favor intente nuevamente " -"desde la pantalla de inicio." - -#: public/views/modals/txp-details.html -msgid "The payment was removed by creator" -msgstr "El pago fue eliminado por el creador" - -#: src/js/controllers/walletHome.js -msgid "" -"The payment was signed but could not be broadcasted. Please try again from " -"home screen." -msgstr "" -"El pago fue firmado pero no pudo ser enviado. Por favor intente nuevamente " -"desde la pantalla de inicio." - -#: public/views/backup.html -msgid "" -"The private key for this wallet is encrypted. Exporting a backup will keep " -"the private key encrypted in the backup archive." -msgstr "" -"Este monedero tiene sus claves privadas encriptadas. Exportar una copia de " -"seguridad mantendrá la clave privada encriptada en la copia de seguridad." - -#: public/views/disclaimer.html -msgid "" -"The software you are about to use functions as a free, open source, and " -"multi-signature digital wallet. The software does not constitute an account " -"where BitPay or other third parties serve as financial intermediaries or " -"custodians of your bitcoin. While the software has undergone beta testing " -"and continues to be improved by feedback from the open-source user and " -"developer community, we cannot guarantee that there will be no bugs in the " -"software. You acknowledge that your use of this software is at your own " -"discretion and in compliance with all applicable laws. You are responsible " -"for safekeeping your passwords, private key pairs, PINs and any other codes " -"you use to access the software. IF YOU LOSE ACCESS TO YOUR COPAY WALLET OR " -"YOUR ENCRYPTED PRIVATE KEYS AND YOU HAVE NOT SEPARATELY STORED A BACKUP OF " -"YOUR WALLET AND CORRESPONDING PASSWORD, YOU ACKNOWLEDGE AND AGREE THAT ANY " -"BITCOIN YOU HAVE ASSOCIATED WITH THAT COPAY WALLET WILL BECOME " -"INACCESSIBLE. All transaction requests are irreversible. The authors of the " -"software, employees and affiliates of Bitpay, copyright holders, and BitPay, " -"Inc. cannot retrieve your private keys or passwords if you lose or forget " -"them and cannot guarantee transaction confirmation as they do not have " -"control over the Bitcoin network. To the fullest extent permitted by law, " -"this software is provided “as is” and no representations or warranties can " -"be made of any kind, express or implied, including but not limited to the " -"warranties of merchantability, fitness or a particular purpose and " -"noninfringement. You assume any and all risks associated with the use of the " -"software. In no event shall the authors of the software, employees and " -"affiliates of Bitpay, copyright holders, or BitPay, Inc. be held liable for " -"any claim, damages or other liability, whether in an action of contract, " -"tort, or otherwise, arising from, out of or in connection with the software. " -"We reserve the right to modify this disclaimer from time to time." -msgstr "" -"El software que va a utilizar es un monedero digital de código abierto y " -"multi-firmas. El software no constituye una cuenta donde BitPay u otras " -"terceras partes sirven como intermediarios financieros o custodios de su " -"bitcoin. Mientras que el software ha sido objeto de pruebas beta y continúa " -"siendo mejorada por los comentarios de los usuarios de código abierto y la " -"comunidad de desarrolladores, no podemos garantizar que no habrá errores en " -"el software. Usted reconoce que el uso de este software es bajo tu propia " -"responsabilidad y en cumplimiento con todas las leyes aplicables. Usted es " -"responsable de la custodia de sus contraseñas, pares de claves privadas, PIN " -"y cualquier otro código que se utiliza para acceder al software. SI UD. " -"PIERDE ACCESO A SU MONEDERO COPAY O A SUS CLAVES PRIVADAS ENCRIPTADAS Y NO " -"HA GUARDADO POR SEPARADO UNA COPIA DE SEGURIDAD DE SU MONEDERO Y CONTRASEÑA " -"CORRESPONDIENTES, USTED RECONOCE Y ACEPTA QUE CUALQUIER BITCOIN QUE HA " -"ASOCIADO CON ESE MONEDERO COPAY SERÁ INACCESIBLE. Todas las solicitudes de " -"transacción son irreversibles. Los autores de los software, empleados y " -"afiliados de Bitpay, los titulares de derechos de autor, y BitPay, Inc. no " -"pueden recuperar sus claves privadas o contraseñas si se pierde o se olvida " -"de ellos y no se puede garantizar la confirmación de la transacción, ya que " -"no tienen control sobre la red Bitcoin. En la máxima medida permitida por la " -"ley, este software se proporciona \"tal cual\" y no asume la responsabilidad " -"ni ofrece garantías de ningún tipo, expresa o implícita, incluyendo, pero no " -"limitado a las garantías comerciales, de conveniencia o a un propósito " -"particular. Usted asume todos los riesgos asociados con el uso del software. " -"En ningún caso los autores, empleados y afiliados de Bitpay, los titulares " -"de derechos de autor, o BitPay, Inc. serán declarados responsables de los " -"reclamos, daños o cualquier otra responsabilidad, ya sea en una acción de " -"contrato, agravio o de otra manera, que surja fuera de la conexión con el " -"software. Nos reservamos el derecho a modificar el presente aviso legal de " -"vez en cuando.

The software you are about to use functions as a free, " -"open source, and multi-signature digital wallet. The software does not " -"constitute an account where BitPay or other third parties serve as financial " -"intermediaries or custodians of your bitcoin. While the software has " -"undergone beta testing and continues to be improved by feedback from the " -"open-source user and developer community, we cannot guarantee that there " -"will be no bugs in the software. You acknowledge that your use of this " -"software is at your own discretion and in compliance with all applicable " -"laws. You are responsible for safekeeping your passwords, private key pairs, " -"PINs and any other codes you use to access the software. IF YOU LOSE ACCESS " -"TO YOUR COPAY WALLET OR YOUR ENCRYPTED PRIVATE KEYS AND YOU HAVE NOT " -"SEPARATELY STORED A BACKUP OF YOUR WALLET AND CORRESPONDING PASSWORD, YOU " -"ACKNOWLEDGE AND AGREE THAT ANY BITCOIN YOU HAVE ASSOCIATED WITH THAT COPAY " -"WALLET WILL BECOME INACCESSIBLE. All transaction requests are irreversible. " -"The authors of the software, employees and affiliates of Bitpay, copyright " -"holders, and BitPay, Inc. cannot retrieve your private keys or passwords if " -"you lose or forget them and cannot guarantee transaction confirmation as " -"they do not have control over the Bitcoin network. To the fullest extent " -"permitted by law, this software is provided “as is” and no representations " -"or warranties can be made of any kind, express or implied, including but not " -"limited to the warranties of merchantability, fitness or a particular " -"purpose and noninfringement. You assume any and all risks associated with " -"the use of the software. In no event shall the authors of the software, " -"employees and affiliates of Bitpay, copyright holders, or BitPay, Inc. be " -"held liable for any claim, damages or other liability, whether in an action " -"of contract, tort, or otherwise, arising from, out of or in connection with " -"the software. We reserve the right to modify this disclaimer from time to " -"time." - -#: src/js/controllers/copayers.js src/js/controllers/preferencesDelete.js -msgid "The wallet \"{{walletName}}\" was deleted" -msgstr "El monedero \"{{walletName}}\" fue eliminado" - -#: public/views/paymentUri.html -msgid "There are no wallets to make this payment" -msgstr "No dispone de monederos para realizar este pago" - -#: src/js/controllers/import.js -msgid "There is an error in the form" -msgstr "Hay un error en el formulario" - -#: public/views/walletHome.html -msgid "" -"This wallet is not registered at the given Bitcore Wallet Service (BWS). You " -"can recreate it from the local information." -msgstr "" -"Este monedero no esta registrado en el servidor Bitcore Wallet Service " -"(BWS). Debe recrearlo con la información local disponible." - -#: public/views/modals/txp-details.html -msgid "Time" -msgstr "Hora" - -#: public/views/walletHome.html public/views/includes/transaction.html -#: public/views/modals/tx-details.html public/views/modals/txp-details.html -msgid "To" -msgstr "Para" - -#: public/views/walletHome.html -msgid "Total Locked Balance" -msgstr "Balance total bloqueado" - -#: public/views/modals/tx-details.html -msgid "Transaction" -msgstr "Transacción" - -#: src/js/controllers/walletHome.js -msgid "Unable to send transaction proposal" -msgstr "No se puede enviar propuesta de transacción" - -#: public/views/walletHome.html public/views/modals/tx-details.html -msgid "Unconfirmed" -msgstr "Sin confirmar" - -#: public/views/preferences.html -msgid "Unit" -msgstr "Unidad" - -#: public/views/walletHome.html -msgid "Unsent transactions" -msgstr "Transacciones no enviadas" - -#: public/views/modals/paypro.html -msgid "Untrusted" -msgstr "No es de confianza" - -#: public/views/walletHome.html -msgid "Updating Wallet..." -msgstr "Actualizando Monedero..." - -#: public/views/preferencesAbout.html -msgid "Version" -msgstr "Versión" - -#: public/views/backup.html -msgid "View backup" -msgstr "Ver Copia de Seguridad" - -#: public/views/walletHome.html -msgid "WARNING: Backup needed" -msgstr "ADVERTENCIA: Se requiere hacer copia de seguridad" - -#: public/views/walletHome.html -msgid "WARNING: Wallet not registered" -msgstr "ADVERTENCIA: Monedero no registrado" - -#: public/views/splash.html -msgid "WELCOME TO COPAY" -msgstr "BIENVENIDO A COPAY" - -#: public/views/copayers.html -msgid "Waiting for copayers" -msgstr "Esperando copayers" - -#: public/views/copayers.html -msgid "Waiting..." -msgstr "Esperando..." - -#: public/views/preferences.html -msgid "Wallet Alias" -msgstr "Alias del monedero" - -#: src/js/services/profileService.js -msgid "Wallet Already Imported:" -msgstr "Este monedero ya fue importado: " - -#: public/views/join.html -msgid "Wallet Invitation" -msgstr "Invitación para unirse al monedero" - -#: public/views/join.html -msgid "Wallet Invitation is not valid!" -msgstr "¡Invitación no válida!" - -#: src/js/services/profileService.js -msgid "Wallet already exists" -msgstr "El monedero ya existe" - -#: public/views/copayers.html -msgid "Wallet incomplete and broken" -msgstr "Monedero incompleto y roto" - -#: public/views/create.html -msgid "Wallet name" -msgstr "Nombre del monedero" - -#: src/js/controllers/walletHome.js -msgid "" -"Wallet service timed out. Check your Internet connexion and your wallet " -"service configuration." -msgstr "" -"Tiempo de espera agotado. Verifique la conexión a internet y la " -"configuración a Wallet Service." - -#: public/views/preferencesDeleteWallet.html -msgid "Warning!" -msgstr "¡Advertencia!" - -#: src/js/services/profileService.js -msgid "Wrong password" -msgstr "Contraseña incorrecta" - -#: public/views/modals/confirmation.html -msgid "Yes" -msgstr "Si" - -#: public/views/walletHome.html -msgid "You do not have a wallet" -msgstr "No tienes ningún monedero" - -#: public/views/backup.html public/views/import.html -msgid "Your backup password" -msgstr "Tu contraseña" - -#: public/views/create.html public/views/join.html -msgid "Your nickname" -msgstr "Tu sobrenombre" - -#: public/views/includes/password.html -msgid "Your password" -msgstr "Tu contraseña" - -#: public/views/importLegacy.html -msgid "Your profile password" -msgstr "Contraseña de tu perfil" - -#: src/js/controllers/import.js -msgid "Your wallet has been imported correctly" -msgstr "Su monedero se ha importado correctamente" - -#: public/views/preferencesEmail.html -msgid "email for wallet notifications" -msgstr "email para recibir notificaciones" - -#: public/views/walletHome.html -msgid "locked by pending payments" -msgstr "bloqueado por pagos pendientes" - -#: public/views/copayers.html public/views/walletHome.html -#: public/views/includes/sidebar.html -msgid "of" -msgstr "de" - -#: public/views/walletHome.html -msgid "optional" -msgstr "opcional" - -#: public/views/preferences.html -msgid "settings" -msgstr "configuración" - -#: public/views/walletHome.html -msgid "too long!" -msgstr "¡demasiado largo!" - -#: public/views/preferencesFee.html -msgid "{{fee.value}} bits per kB" -msgstr "{{fee.value}} bits por kB" - -#: src/js/controllers/walletHome.js -msgid "{{fee}} will be discounted for bitcoin networking fees" -msgstr "{{fee}} se descontarán de los costos de la red bitcoin" - -#: src/js/controllers/importLegacy.js -msgid "" -"{{len}} wallets imported. Funds scanning in progress. Hold on to see updated " -"balance" -msgstr "" -"{{len}} monederos importados. Escáner de fondos en progreso. Espere a ver el " -"balance actualizado" - -#~ msgid "Receive a customized amount" -#~ msgstr "Recibir un monto personalizado" - -#~ msgid "" -#~ "* Only payment proposals created by yourself with no peer actions can be " -#~ "removed" -#~ msgstr "" -#~ "* Solo transacciones creadas por Usted mismo sin haber realizado acciones " -#~ "por otros usuarios, pueden ser eliminadas" - -#~ msgid "Alias for" -#~ msgstr "Alias para" - -#~ msgid "Hide" -#~ msgstr "Ocultar" - -#~ msgid "If not given, a random key will be generated" -#~ msgstr "Si no se ingresa, una clave aleatoria será generada" - -#~ msgid "Show" -#~ msgstr "Mostrar" - -#~ msgid "wallet" -#~ msgstr "monedero" - -#~ msgid "Transaction not broadcasted. Please try again." -#~ msgstr "Transacción no emitida. Por favor, intente nuevamente." - -#~ msgid "Could not sign transaction. Please try again." -#~ msgstr "No se pudo firmar la transacción. Por favor, intente nuevamente." - -#~ msgid "Payment Proposal Sent" -#~ msgstr "Propuesta de Pago Enviada" - -#~ msgid "Use test network" -#~ msgstr "Red de prueba" - -#~ msgid "A transaction was finally rejected" -#~ msgstr "Transacción finalmente rechazada" - -#~ msgid "Import from Copay Beta 0.9" -#~ msgstr "Importar de Copay Beta 0.9" - -#~ msgid "Information" -#~ msgstr "Información" - -#~ msgid "New Transaction" -#~ msgstr "Nueva Transacción" - -#~ msgid "Remove transaction" -#~ msgstr "Elimine la transacción" - -#~ msgid "Sign" -#~ msgstr "Firmar" - -#~ msgid "Signatures" -#~ msgstr "Firmas" - -#~ msgid "Spend proposals" -#~ msgstr "Propuestas de gastos" - -#~ msgid "Transaction Rejected" -#~ msgstr "Transacción Rechazada" - -#~ msgid "Transaction Sent" -#~ msgstr "Transacción Enviada" - -#~ msgid "Transaction Signed" -#~ msgstr "Transacción Firmada" - -#~ msgid "Transaction broadcasted" -#~ msgstr "Transacción enviada" - -#~ msgid "Transaction proposal" -#~ msgstr "Propuestas de transacción" - -#~ msgid "Transaction proposal signed" -#~ msgstr "Propuesta de transacción firmada" - -#~ msgid "Transaction sent!" -#~ msgstr "¡Transacción enviada!" - -#~ msgid "Transaction was rejected" -#~ msgstr "Transacción rechazada" - -#~ msgid "Transaction not rejected. Please try again." -#~ msgstr "Transacción no rechazada. Por favor, intente nuevamente." - -#~ msgid "Transaction not signed. Please try again." -#~ msgstr "Transacción no firmada. Por favor, intente nuevamente." - -#~ msgid "" -#~ "* In case you need to import wallets from previous Copay versions go to " -#~ "Menu" -#~ msgstr "" -#~ "* En caso que necesite importar monederos de una versión anterior de " -#~ "Copay, diríjase al Menú" - -#~ msgid "About" -#~ msgstr "Acerca de" - -#~ msgid "Delete" -#~ msgstr "Eliminar" - -#~ msgid "Import legacy wallet" -#~ msgstr "Importar monedero obsoleto" - -#~ msgid "Logs" -#~ msgstr "Registros" - -#~ msgid "" -#~ "Permanently delete this wallet. WARNING: this action cannot be reversed." -#~ msgstr "" -#~ "Borrar permanentemente este monedero. ADVERTENCIA: esta acción no puede " -#~ "deshacerse." - -#~ msgid "OK" -#~ msgstr "LISTO" - -#~ msgid "Copied to clipboard" -#~ msgstr "Copiado al portapapeles" - -#~ msgid "Preparing backup..." -#~ msgstr "Preparando copia de seguridad..." - -#~ msgid "Loading..." -#~ msgstr "Cargando..." - -#~ msgid "No pending spend proposals at the moment." -#~ msgstr "No hay gastos pendientes en este momento." - -#~ msgid "Joining shared wallet..." -#~ msgstr "Unirse a un monedero..." - -#~ msgid "Trying to reconnnect..." -#~ msgstr "Intentando reconectar..." - -#~ msgid "Updating Pending Transactions..." -#~ msgstr "Actualizando Transacciones Pendientes..." - -#~ msgid "Updating Status..." -#~ msgstr "Actualizando Estado..." - -#~ msgid "Wallet Service Error" -#~ msgstr "Error en Wallet Service" - -#~ msgid "To:" -#~ msgstr "Para:" - -#~ msgid "Add" -#~ msgstr "Agregar" - -#~ msgid "Add a new entry" -#~ msgstr "Nueva Entrada" - -#~ msgid "Add entry" -#~ msgstr "Nueva Entrada" - -#~ msgid "Address Book" -#~ msgstr "Libreta de Direcciones" - -#~ msgid "Creator" -#~ msgstr "Creador" - -#~ msgid "Date:" -#~ msgstr "Fecha:" - -#~ msgid "Empty. Create an alias for your addresses" -#~ msgstr "Vacío. Crea una etiqueta para tus direcciones" - -#~ msgid "Entry" -#~ msgstr "Entrada" - -#~ msgid "Label" -#~ msgstr "Etiqueta" - -#~ msgid "Note:" -#~ msgstr "Nota:" - -#~ msgid "Skip" -#~ msgstr "Omitir" - -#~ msgid "Visible" -#~ msgstr "Visible" - -#~ msgid "change" -#~ msgstr "vuelto" - -#~ msgid "Bitcore Wallet Service URL" -#~ msgstr "Bitcore Wallet Service URL" - -#~ msgid "Repeat Password" -#~ msgstr "Repita la contraseña" - -#~ msgid "* Using this device storage. Change to cloud storage on 'settings'." -#~ msgstr "" -#~ "* Utilizando este dispositivo para guardar. Cambiar a almacenamiento en " -#~ "la nube desde 'preferencias'." - -#~ msgid "-- choose wallet --" -#~ msgstr "-- Seleccionar monedero --" - -#~ msgid "A transaction was signed by" -#~ msgstr "Una transacción fue firmada por" - -#~ msgid "" -#~ "ALL Transactions Proposals will be discarded. This needs to be done on " -#~ "ALL peers of a wallet, to prevent the old proposals to be resynced " -#~ "again." -#~ msgstr "" -#~ "TODAS las Propuestas de Transacciones serán descartadas. Es necesario que " -#~ "lo hagan TODOS los compañeros del monedero, para prevenir que las " -#~ "viejas propuestas sean re sincronizadas de nuevo." - -#~ msgid "Access your wallets anywhere" -#~ msgstr "Acceder a sus monederos en cualquier lugar" - -#~ msgid "Accessing your profile" -#~ msgstr "Abriendo tu perfil" - -#~ msgid "Add Wallet" -#~ msgstr "Agregar Monedero" - -#~ msgid "Add a private comment to identify the transaction" -#~ msgstr "Agregar comentario privado para identificar la transacción" - -#~ msgid "An email was sent to" -#~ msgstr "Se envió un correo electrónico a" - -#~ msgid "Aprox. size:" -#~ msgstr "Tamaño aprox.:" - -#~ msgid "Are you sure you want to cancel and delete this wallet" -#~ msgstr "¿Estas seguro de cancelar y borrar este monedero?" - -#~ msgid "Are you sure you want to delete this profile?" -#~ msgstr "¿Estas seguro de borrar este perfil?" - -#~ msgid "Backups managed by the server" -#~ msgstr "Copias de seguridad gestionada por el servidor" - -#~ msgid "Balance:" -#~ msgstr "Balance:" - -#~ msgid "Choose a password" -#~ msgstr "Escribe una contraseña" - -#~ msgid "Confirm your email address" -#~ msgstr "Confirmar tu correo electrónico" - -#~ msgid "Confirm your email address to increase storage usage limits." -#~ msgstr "" -#~ "Confirmar correo electrónico para incrementar el límite de almacenamiento." - -#~ msgid "Continue anyways" -#~ msgstr "Continuar de todas maneras" - -#~ msgid "Copay now needs a profile to access wallets." -#~ msgstr "Copay ahora requiere un perfil para acceder a los monederos" - -#~ msgid "Create in the cloud" -#~ msgstr "Crear en la nube" - -#~ msgid "Create on this device" -#~ msgstr "Crear en este dispositivo" - -#~ msgid "Create profile" -#~ msgstr "Crear perfil" - -#~ msgid "Creating in the cloud" -#~ msgstr "Creando en la nube" - -#~ msgid "Creating on this device" -#~ msgstr "Creando en este dispositivo" - -#~ msgid "Delete Profile" -#~ msgstr "Borrar Perfil" - -#~ msgid "Disclaimer" -#~ msgstr "Renuncia" - -#~ msgid "Download CSV file" -#~ msgstr "Descargar archivo CSV" - -#~ msgid "Email" -#~ msgstr "Correo electrónico" - -#~ msgid "Email address confirmation needed" -#~ msgstr "Confirmar correo electrónico" - -#~ msgid "Email not confirmed" -#~ msgstr "Correo sin confirmar" - -#~ msgid "Enter PIN" -#~ msgstr "Ingresar PIN" - -#~ msgid "Error updating indexes:" -#~ msgstr "Error al actualizar índices:" - -#~ msgid "Fatal error connecting to Insight server" -#~ msgstr "Error fatal al conectar con el servidor Insight" - -#~ msgid "Form Error" -#~ msgstr "Error en formulario" - -#~ msgid "Hide them" -#~ msgstr "Ocultar" - -#~ msgid "Import a backup" -#~ msgstr "Importar una copia de seguridad" - -#~ msgid "Importing wallet - Reading backup..." -#~ msgstr "Importando monedero - Leyendo archivo..." - -#~ msgid "Importing wallet - Setting things up..." -#~ msgstr "Importando monedero - Configurando..." - -#~ msgid "Importing wallet - We are almost there..." -#~ msgstr "Importando monedero - Finalizando..." - -#~ msgid "Insight API server" -#~ msgstr "Servidor de Insight API" - -#~ msgid "" -#~ "Insight API server is open-source software. You can run your own " -#~ "instances, check" -#~ msgstr "" -#~ "Servidor de Insight API es un software código-abierto. Puedes correr tu " -#~ "propia instancia en Insight API Homepage" - -#~ msgid "It's important that you update your wallet at https://copay.io" -#~ msgstr "Es importante que actualices tu monedero en https://copay.io" - -#~ msgid "" -#~ "It's important to backup your profile so that you can recover it in case " -#~ "of disaster. The backup will include all your profile's wallets" -#~ msgstr "" -#~ "Es importante hacer copia de seguridad de tu monedero para que puedas " -#~ "recuperarlo en caso de pérdidas de datos de tu computadora" - -#~ msgid "Join Secret" -#~ msgstr "Ingresar Secreto" - -#~ msgid "Leave a private message to your copayers" -#~ msgstr "Dejar mensaje privado a tus compañeros" - -#~ msgid "Leave feedback" -#~ msgstr "Dejar comentarios" - -#~ msgid "Lock" -#~ msgstr "Bloquear" - -#~ msgid "Log level" -#~ msgstr "Nivel de registro" - -#~ msgid "" -#~ "Log level shows information on the console. This is useful to find bugs " -#~ "and to help users. 'debug' is the most verbose level while 'fatal' only " -#~ "shows unexpected errors" -#~ msgstr "" -#~ "Nivel de registro muestra información de la consola. Esto es útil para " -#~ "encontrar errores y ayudar a los usuarios. 'debug' es el nivel más " -#~ "detallado, mientras que 'mortal' sólo muestra errores inesperados" - -#~ msgid "Login Required" -#~ msgstr "Inicio de Sesión Requerido" - -#~ msgid "More pluggins are welcomed!" -#~ msgstr "¡Más extensiones son bienvenidas!" - -#~ msgid "My Profile" -#~ msgstr "Mi Perfil" - -#~ msgid "Name:" -#~ msgstr "Nombre:" - -#~ msgid "Need to be careful with backups" -#~ msgstr "Necesita ser cuidadoso con las copias de seguridad" - -#~ msgid "Needs Backup" -#~ msgstr "Copia de Seguridad necesaria" - -#~ msgid "Networking Error" -#~ msgstr "Error de Red" - -#~ msgid "New entry has been created" -#~ msgstr "Nueva entrada fue creada" - -#~ msgid "Next" -#~ msgstr "Siguiente" - -#~ msgid "No email required" -#~ msgstr "Correo electrónico no es requerido" - -#~ msgid "On this Device" -#~ msgstr "En este dispositivo" - -#~ msgid "" -#~ "Opening the wallet in multiple browser tabs could lead to unexpected " -#~ "results" -#~ msgstr "" -#~ "Abrir el monedero en varias ventanas del mismo navegador podría conducir " -#~ "a resultados inesperados" - -#~ msgid "Page not found" -#~ msgstr "Página no encontrada" - -#~ msgid "Paste wallet secret here" -#~ msgstr "Pegar código secreto del monedero aquí" - -#~ msgid "" -#~ "Pending Transactions Proposals will be discarded. This needs to be done " -#~ "on ALL peers of a wallet, to prevent the old proposals to be " -#~ "resynced again." -#~ msgstr "" -#~ "Las Propuestas de Transacciones Pendientes serán descartadas. Esto es " -#~ "necesario hacerlo con TODOS los compañeros del monedero, para " -#~ "prevenir que viejas propuestas sean re sincronizadas de nuevo." - -#~ msgid "" -#~ "Permanently delete this profile and all its wallets. WARNING: this action " -#~ "cannot be reversed." -#~ msgstr "" -#~ "Borrar permanentemente este perfil y sus monederos. ADVERTENCIA: esta " -#~ "acción no puede deshacerse." - -#~ msgid "Please complete required fields" -#~ msgstr "Por favor complete los campos requeridos" - -#~ msgid "" -#~ "Please confirm your email address using the confirmation link at the " -#~ "message we sent you" -#~ msgstr "" -#~ "Por favor confirma tu correo electrónico usando el enlace de este mensaje" - -#~ msgid "" -#~ "Please follow the link on it to confirm it. Unconfirmed profiles could be " -#~ "deleted from server." -#~ msgstr "" -#~ "Por favor sigue el enlace para confirmar. Perfiles sin confirmar podrían " -#~ "ser eliminados del servidor." - -#~ msgid "" -#~ "Please note the wallet creator must be online until all copayers " -#~ "have joined." -#~ msgstr "" -#~ "Por favor note que el creador del monedero debe estar conectado " -#~ "hasta que todos los compañeros se hayan unido." - -#~ msgid "Please open wallet to complete payment" -#~ msgstr "Por favor abrir un monedero para completar el pago" - -#~ msgid "Please sign in to access your wallets" -#~ msgstr "Por favor ingresa para ver tus monederos" - -#~ msgid "Please sign in to make the payment" -#~ msgstr "Por favor ingresa para completar el pago" - -#~ msgid "Please update your wallet at https://copay.io" -#~ msgstr "Por favor actualiza tu monedero de https://copay.io" - -#~ msgid "Profile" -#~ msgstr "Perfil" - -#~ msgid "Purge" -#~ msgstr "Purgar" - -#~ msgid "Purge ALL Transaction Proposals" -#~ msgstr "Purgar TODAS las Propuestas de Transacciones" - -#~ msgid "Purge All" -#~ msgstr "Purgar Todo" - -#~ msgid "Purge Pending Transaction Proposals" -#~ msgstr "Purgar Propuestas de Transacciones Pendientes" - -#~ msgid "Read and Store Profiles:" -#~ msgstr "Leer y guardar perfiles:" - -#~ msgid "Received corrupt message from" -#~ msgstr "Se recibió un mensaje corrupto de" - -#~ msgid "Received corrupt transaction from" -#~ msgstr "Se recibió una transacción corrupta de" - -#~ msgid "Recommended" -#~ msgstr "Recomendado" - -#~ msgid "Repeat PIN" -#~ msgstr "Repetir PIN" - -#~ msgid "Require pin to unlock" -#~ msgstr "Requiere PIN para desbloquear" - -#~ msgid "Scan" -#~ msgstr "Explorar" - -#~ msgid "Scaning for transactions" -#~ msgstr "Explorando transacciones" - -#~ msgid "Session closed because a long time of inactivity" -#~ msgstr "La sesión fue cerrada por mucho tiempo de inactividad" - -#~ msgid "Session will be closed" -#~ msgstr "La sesión se cerrará" - -#~ msgid "Share secret" -#~ msgstr "Compartir código secreto" - -#~ msgid "Show all my addresses" -#~ msgstr "Mostrar todas mis direcciones" - -#~ msgid "Sign in" -#~ msgstr "Ingresar" - -#~ msgid "Skip public keys" -#~ msgstr "Ignorar claves pública" - -#~ msgid "Skip transaction proposals" -#~ msgstr "Ignorar propuestas de transacciones" - -#~ msgid "Skipping fields: {{skipFields}}" -#~ msgstr "Saltear campos: {{skipFields}}" - -#~ msgid "Status:" -#~ msgstr "Estado:" - -#~ msgid "Storage" -#~ msgstr "Almacenamiento" - -#~ msgid "The balance is updated using the derived addresses" -#~ msgstr "El balance es actualizado utilizando direcciones derivadas" - -#~ msgid "The secret string you entered is invalid" -#~ msgstr "La palabra secreta ingresada no es válida" - -#~ msgid "The transaction proposal has been created" -#~ msgstr "La propuesta de transacción fue creada" - -#~ msgid "There was an error sending the transaction" -#~ msgstr "Hubo un error al enviar la transacción" - -#~ msgid "There was an error signing the transaction" -#~ msgstr "Hubo un error al firmar la transacción" - -#~ msgid "" -#~ "This is the initial secret join string. Since your wallet it is already " -#~ "complete, this is only useful to rejoin peers that lost their backup BUT " -#~ "have the extended private key stored (they will be rejected on other " -#~ "case). They need to enter their extended private key during the join " -#~ "process (in advanced options)." -#~ msgstr "" -#~ "Esta es el secreto para unirse. Desde la cartera ya está completa, esto " -#~ "sólo es útil para reunirse con sus compañeros que perdieron su respaldo " -#~ "pero tienen la extended private key almacenada (serán rechazadas en otro " -#~ "caso). Necesitan ingresar su extended private key durante el proceso de " -#~ "ingresar (en opciones avanzadas)." - -#~ msgid "This wallet appears to be currently open." -#~ msgstr "Este monedero parece estar actualmente abierto." - -#~ msgid "" -#~ "This will scan the blockchain looking for addresses derived from your " -#~ "wallet, in case you have funds in addresses not yet generated (e.g.: you " -#~ "restored an old backup). This will also trigger a synchronization of " -#~ "addresses to other connected peers." -#~ msgstr "" -#~ "Esto verificará la blockchain buscando direcciones derivadas de tu " -#~ "monedero, en caso de tener fondo en direcciones que no fueron generadas " -#~ "aún (por ej.: si restauraste una copia de seguridad antigua). Esto " -#~ "también activará la sincronización de direcciones a los demás compañeros " -#~ "conectados." - -#~ msgid "Transaction Error" -#~ msgstr "Error en Transacción" - -#~ msgid "Transactions Proposals Purged" -#~ msgstr "Propuestas de Transacciones Purgadas" - -#~ msgid "Type:" -#~ msgstr "Tipo:" - -#~ msgid "Username" -#~ msgstr "Nombre de usuario" - -#~ msgid "Using derived addresses from your wallet" -#~ msgstr "Usando direcciones derivadas de tu monedero" - -#~ msgid "Using network:" -#~ msgstr "Utilizando red:" - -#~ msgid "View My Profile" -#~ msgstr "Ver Mi Perfil" - -#~ msgid "Wallet info" -#~ msgstr "Información del monedero" - -#~ msgid "Wallet network configuration missmatch" -#~ msgstr "Configuración de la Red del monedero no coinciden" - -#~ msgid "" -#~ "Wallets and profiles are stored encrypted using your password as a key. " -#~ "You can store the encrypted data locally, on this device, or remotely on " -#~ "the cloud (Insight Server)." -#~ msgstr "" -#~ "Monederos y perfiles son almacenados encriptados utilizando tu " -#~ "contraseña. Puedes guardar los datos encriptados en tu dispositivo o " -#~ "remotamente en la nube (Servidor Insight)." - -#~ msgid "You can import your current wallets after" -#~ msgstr "Puedes importar tus monederos después" - -#~ msgid "You have" -#~ msgstr "Tienes" - -#~ msgid "You have a pending transaction proposal" -#~ msgstr "Tienes una propuesta de transacción pendiente" - -#~ msgid "You have old wallets in your localStorage. Choose one to import" -#~ msgstr "Tienes monederos locales antiguos. Selecciona para importar" - -#~ msgid "You rejected the transaction successfully" -#~ msgstr "Rechazaste la transacción con éxito" - -#~ msgid "" -#~ "Your current server usage quotas are: {{perItem}}kB per wallet and " -#~ "up to {{nrWallets}} wallets." -#~ msgstr "" -#~ "Actual uso de cuotas: {{perItem}}kB por monedero y hasta " -#~ "{{nrWallets}} monederos permitidos." - -#~ msgid "Your email was confimed!" -#~ msgstr "¡Tu correo electrónico fue confirmado!" - -#~ msgid "" -#~ "Your master private key contains the information to sign any " -#~ "transaction on this wallet. Handle with care." -#~ msgstr "" -#~ "Tu \"master private key\" contiene la información para firmar " -#~ "cualquier transacción de este monedero. Tenga cuidado al usar." - -#~ msgid "Your private keys never leave this device" -#~ msgstr "Tus claves privadas nunca dejan este dispositivo" - -#~ msgid "Your session is about to expire due to inactivity in" -#~ msgstr "Tu sesión está va a expirar por inactividad en" - -#~ msgid "" -#~ "Your session is about to expire due to inactivity in {{countdown}} seconds" -#~ msgstr "" -#~ "Tu sesión actual va a expirar por inactividad en {{countdown}} segundos" - -#~ msgid "Your wallet password" -#~ msgstr "Contraseña de tu monedero" - -#~ msgid "at" -#~ msgstr "en" - -#~ msgid "available." -#~ msgstr "disponible." - -#~ msgid "creating your profile" -#~ msgstr "creando tu perfil" - -#~ msgid "in TESTNET" -#~ msgstr "en TESTNET" - -#~ msgid "pending transaction proposals" -#~ msgstr "propuestas de transacciones pendientes" - -#~ msgid "seconds" -#~ msgstr "segundos" - -#, fuzzy -#~ msgid "" -#~ "Network Error.
Attempting to " -#~ "reconnect.." -#~ msgstr "Error de Red. Intentando reconectar..." - -#~ msgid "(*) The limits are imposed by the bitcoin network." -#~ msgstr "(*) Los límites son impuestos por la red de bitcoin." - -#~ msgid "Addresses" -#~ msgstr "Direcciones" - -#~ msgid "Balance locked in pending transaction proposals" -#~ msgstr "Balance bloqueado en las propuestas de transacción pendientes" - -#~ msgid "Connecting..." -#~ msgstr "Conectando..." - -#~ msgid "Creating and storing a backup will allow you to recover wallet funds" -#~ msgstr "" -#~ "Crear y guardar una copia de seguridad le permitirá recuperar el dinero " -#~ "de su monedero" - -#~ msgid "" -#~ "If all funds have been removed from your wallet and you do not wish to " -#~ "have the wallet data stored on your computer anymore, you can delete your " -#~ "wallet." -#~ msgstr "" -#~ "Si todos los fondos fueron removidos de tu monedero y no deseas tener los " -#~ "datos guardados en tu computadora, puedes eliminar tu monedero." - -#~ msgid "Including fee of" -#~ msgstr "Incluye tasa de" - -#~ msgid "Insufficient funds" -#~ msgstr "Fondos insuficientes" - -#~ msgid "Join a Wallet in Creation" -#~ msgstr "Unirse a un monedero" - -#~ msgid "Manual Update" -#~ msgstr "Actualización Manual" - -#~ msgid "No transactions proposals yet." -#~ msgstr "Sin propuestas de transacciones aún." - -#~ msgid "One person has" -#~ msgstr "Una persona" - -#~ msgid "One signature missing" -#~ msgstr "Falta una firma" - -#~ msgid "Open" -#~ msgstr "Abrir" - -#~ msgid "Open in external application" -#~ msgstr "Abrir en una aplicación externa" - -#~ msgid "Proposal ID" -#~ msgstr "ID de Propuesta" - -#~ msgid "Ready" -#~ msgstr "Listo" - -#~ msgid "Show all" -#~ msgstr "Ver todo" - -#~ msgid "Show less" -#~ msgstr "Ver menos" - -#~ msgid "Skip transaction proposals from Backup" -#~ msgstr "Ignorar propuestas de transacciones desde la Copia de Seguridad" - -#~ msgid "Total" -#~ msgstr "Total" - -#~ msgid "Use all funds" -#~ msgstr "Todos los fondos" - -#~ msgid "Valid" -#~ msgstr "Válido" - -#~ msgid "Waiting Copayers for {{$root.wallet.getName()}}" -#~ msgstr "Esperando compañeros a {{$root.wallet.getName()}}" - -#~ msgid "Waiting for other copayers to make a Backup" -#~ msgstr "Esperando que los otros compañeros hagan su copia de seguridad" - -#~ msgid "Your name (optional)" -#~ msgstr "Tu nombre (opcional)" - -#~ msgid "first seen at" -#~ msgstr "Visto el" - -#~ msgid "mined" -#~ msgstr "minado el" - -#~ msgid "not valid" -#~ msgstr "no válido" - -#~ msgid "people have" -#~ msgstr "personas" - -#~ msgid "required" -#~ msgstr "requerido" - -#~ msgid "valid!" -#~ msgstr "¡válido!" - -#~ msgid "yet to backup the wallet." -#~ msgstr "deben hacer su copia de seguridad" - -#~ msgid "yet to join." -#~ msgstr "deben unirse" - -#~ msgid "{{tx.missingSignatures}} signatures missing" -#~ msgstr "Faltan {{tx.missingSignatures}} firmas" - -#, fuzzy -#~ msgid "No transactions yet." -#~ msgstr "Aún no hay transacciones." - -#~ msgid "Authenticating and looking for peers..." -#~ msgstr "Autenticando y buscando compañeros..." - -#~ msgid "Private Key (Hex)" -#~ msgstr "Clave Privada (Hex)" - -#, fuzzy -#~ msgid "Wrong password que parece" -#~ msgstr "Contraseña incorrecta" - -#~ msgid "Add Address" -#~ msgstr "Agregar Dirección" - -#~ msgid "Add Address Book Entry" -#~ msgstr "Nueva entrada" - -#, fuzzy -#~ msgid "Your Password" -#~ msgstr "Tu contraseña" - -#~ msgid "Download seed backup" -#~ msgstr "Descargar copia de seguridad" - -#~ msgid "" -#~ "Network has been fixed to {{networkName}} in this setup. " -#~ "See copay.io for options to use Copay on " -#~ "both livenet and testnet." -#~ msgstr "" -#~ "La red fue fijada a {{networkName}} para esta " -#~ "configuración. Ver copay.io para más " -#~ "opciones de uso de Copay en livenet y testnet." - -#~ msgid "Port" -#~ msgstr "Puerto" - -#~ msgid "Use SSL" -#~ msgstr "Usar SSL" - -#~ msgid "Your Wallet Password" -#~ msgstr "Contraseña de tu Monedero" - -#~ msgid "" -#~ "{{$root.wallet.requiredCopayers}}-of-{{$root.wallet.totalCopayers}} wallet" -#~ msgstr "Monedero {{requiredCopayers}}-de-{{totalCopayers}}" - -#~ msgid "« Back" -#~ msgstr "« Volver" - -#~ msgid "Fees" -#~ msgstr "Tasas" - -#~ msgid "" -#~ "Wallet\n" -#~ " name" -#~ msgstr "" -#~ "Nombre del\n" -#~ " monedero" diff --git a/po/pt.po b/po/pt.po deleted file mode 100644 index d3ab2e553..000000000 --- a/po/pt.po +++ /dev/null @@ -1,1103 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Project-Id-Version: Copay\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: \n" -"Last-Translator: Tenda WP \n" -"Language-Team: Paulino Michelazzo \n" -"MIME-Version: 1.0\n" -"X-Generator: Poedit 1.6.10\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Language: pt\n" - -#: public/views/modals/txp-details.html -msgid "" -"* Only payment proposals created by yourself with no peer actions can be " -"removed" -msgstr "" -"* Apenas propostas de pagamento criadas por você com nenhuma ação de mesmo " -"nível podem ser removidas." - -#: public/views/backup.html -msgid "" -"* You can safely install your backup on another device and use your wallet " -"from multiple devices at the same time." -msgstr "" -"* Você pode instalar com segurança seu backup em outro dispositivo e usar " -"sua carteira a partir de vários dispositivos ao mesmo tempo." - -#: public/views/splash.html -msgid "A multisignature bitcoin wallet" -msgstr "Uma carteira de bitcoin multi-assinada" - -#: public/views/preferences.html -msgid "About Copay" -msgstr "Sobre a Copay" - -#: public/views/modals/txp-details.html -msgid "Accept" -msgstr "Aceitar" - -#: public/views/includes/sidebar.html -msgid "Add wallet" -msgstr "Adicionar carteira" - -#: public/views/paymentUri.html public/views/modals/paypro.html -msgid "Address" -msgstr "Endereço" - -#: public/views/preferences.html -msgid "Advanced" -msgstr "Avançado" - -#: public/views/create.html public/views/join.html -msgid "Advanced options" -msgstr "Opções avançadas" - -#: public/views/preferencesAlias.html -msgid "Alias for" -msgstr "Apelido para" - -#: public/views/splash.html -msgid "Already have a wallet?" -msgstr "Já tem uma carteira?" - -#: public/views/preferences.html -msgid "Alternative Currency" -msgstr "Moeda Alternativa" - -#: public/views/paymentUri.html public/views/walletHome.html -#: public/views/modals/txp-details.html -msgid "Amount" -msgstr "Valor" - -#: public/views/walletHome.html -msgid "Amount in" -msgstr "Montante em" - -#: public/views/preferencesLanguage.html -msgid "Applying changes" -msgstr "Aplicar alterações" - -#: src/js/controllers/copayers.js src/js/controllers/preferencesDelete.js -msgid "Are you sure you want to delete this wallet?" -msgstr "Tem certeza que deseja excluir esta carteira?" - -#: public/views/walletHome.html -msgid "Available Balance" -msgstr "Saldo Disponível" - -#: public/views/includes/topbar.html public/views/modals/tx-details.html -#: public/views/modals/txp-details.html -msgid "Back" -msgstr "Voltar" - -#: public/views/preferences.html -msgid "Backup" -msgstr "Backup" - -#: src/js/controllers/backup.js -msgid "Backup created" -msgstr "Backup criado" - -#: public/views/walletHome.html -msgid "Backup now" -msgstr "Backup agora" - -#: public/views/backup.html -msgid "Backup options" -msgstr "Opções de backup" - -#: public/views/walletHome.html -msgid "" -"Before receiving funds, it is highly recommended you backup your wallet keys." -msgstr "" -"Antes de receber fundos, é altamente recomendável que você faça backup de " -"suas chaves de carteira." - -#: public/views/paymentUri.html -msgid "Bitcoin URI is NOT valid!" -msgstr "Bitcoin URI não é válido!" - -#: public/views/walletHome.html -msgid "Bitcoin address" -msgstr "Endereço Bitcoin" - -#: public/views/modals/txp-details.html -msgid "Broadcast Payment" -msgstr "Transmitir Pagamento" - -#: src/js/controllers/walletHome.js -msgid "Broadcasting Payment" -msgstr "Transmitindo Pagamento" - -#: src/js/controllers/walletHome.js -msgid "Broadcasting transaction" -msgstr "Transmitindo transação" - -#: public/views/unsupported.html -msgid "Browser unsupported" -msgstr "Navegador não suportado" - -#: public/views/modals/txp-details.html -msgid "But not broadcasted. Try to send manually" -msgstr "Mas não transmitido. Tente enviar manualmente" - -#: public/views/includes/password.html -msgid "CANCEL" -msgstr "CANCELAR" - -#: public/views/copayers.html public/views/walletHome.html -msgid "Cancel" -msgstr "Cancelar" - -#: public/views/modals/paypro.html -msgid "Certified by" -msgstr "Certificado por" - -#: public/views/preferencesAlias.html -msgid "Changing wallet alias only affects the local wallet name." -msgstr "" -"Alterando o apelido da carteira somente afeta o nome da carteira local." - -#: src/js/controllers/walletHome.js -msgid "Check you connection and try again" -msgstr "Verifique sua conexão e tente novamente" - -#: public/views/import.html -msgid "Choose a backup file from your computer" -msgstr "Escolha um arquivo de backup do seu computador" - -#: public/views/includes/topbar.html public/views/modals/copayers.html -#: public/views/modals/paypro.html public/views/modals/scanner.html -msgid "Close" -msgstr "Fechar" - -#: public/views/preferences.html -msgid "Color" -msgstr "Cor" - -#: public/views/preferencesAbout.html -msgid "Commit hash" -msgstr "Commit de hash" - -#: public/views/modals/tx-details.html -msgid "Confirmations" -msgstr "Confirmações" - -#: public/views/modals/copayers.html -msgid "Copayers" -msgstr "Copayers" - -#: public/views/backup.html -msgid "Copy backup to a safe place" -msgstr "Copie o backup para um lugar seguro" - -#: public/views/backup.html -msgid "Copy this text as it is to a safe place (notepad or email)" -msgstr "" -"Copie este texto como está para um lugar seguro (bloco de notas ou e-mail)" - -#: public/views/backup.html -msgid "Copy to clipboard" -msgstr "Copiar para área de transferência" - -#: src/js/controllers/walletHome.js -msgid "Could not accept payment. Check you connection and try again" -msgstr "" -"Não foi possível aceitar pagamentos. Verifique sua conexão e tente novamente" - -#: src/js/controllers/walletHome.js -msgid "Could not broadcast payment. Check you connection and try again" -msgstr "" -"Não foi possível transmitir pagamentos. Verifique sua conexão e tente " -"novamente" - -#: src/js/controllers/walletHome.js -msgid "" -"Could not connect wallet service. Check your Internet connexion and your " -"wallet service configuration." -msgstr "" -"Não foi possível se conectar com o serviço de carteira. Verifique sua " -"conexão e as configurações de seu serviço de carteiras." - -#: src/js/controllers/walletHome.js -msgid "Could not create address. Check you connection and try again" -msgstr "" -"Não foi possível criar o endereço. Verifique sua conexão e tente novamente" - -#: src/js/controllers/walletHome.js -msgid "Could not create payment proposal" -msgstr "Não foi possível criar proposta de pagamento" - -#: src/js/services/profileService.js -msgid "Could not create using the specified extended private key" -msgstr "Não foi possível criar usando a chave privada estendida especificada" - -#: src/js/controllers/import.js -msgid "Could not decrypt file, check your password" -msgstr "Não foi possível descriptografar o arquivo, verifique sua senha" - -#: src/js/controllers/walletHome.js -msgid "Could not delete payment proposal. Check you connection and try again" -msgstr "" -"Não foi possível apagar a proposta de pagamento. Verifique sua conexão e " -"tente novamente" - -#: src/js/controllers/walletHome.js -msgid "Could not fetch payment information" -msgstr "Não foi possível obter a informação do pagamento" - -#: public/views/walletHome.html -msgid "Could not fetch transaction history" -msgstr "Não foi possível obter o histórico de transação" - -#: src/js/services/profileService.js -msgid "Could not import. Check input file and password" -msgstr "Não foi possível importar. Verifique o arquivo de entrada e senha" - -#: src/js/services/profileService.js -msgid "Could not join using the specified extended private key" -msgstr "" -"Não é possível asssociar-se usando a chave privada estendida especificada" - -#: src/js/controllers/join.js -msgid "Could not join wallet:" -msgstr "Não é possível se associar a carteira:" - -#: src/js/controllers/walletHome.js -msgid "Could not reject payment. Check you connection and try again" -msgstr "" -"Não é possível rejeitar o pagamentos. Verifique sua conexão e tente novamente" - -#: src/js/controllers/walletHome.js -msgid "Could not send payment" -msgstr "Não foi possível enviar o pagamento" - -#: public/views/walletHome.html -msgid "Could not update Wallet" -msgstr "Não é possível atualizar carteira" - -#: public/views/create.html public/views/walletHome.html -msgid "Create" -msgstr "Criar" - -#: public/views/add.html -msgid "Create new wallet" -msgstr "Criando nova carteira" - -#: public/views/includes/sidebar.html -msgid "Create, join or import" -msgstr "Criar, participar ou importar" - -#: public/views/modals/txp-details.html -msgid "Created by" -msgstr "Criado por" - -#: public/views/splash.html -msgid "Creating Profile..." -msgstr "Criando Perfil…" - -#: public/views/create.html -msgid "Creating Wallet..." -msgstr "Criando Carteira…" - -#: src/js/controllers/walletHome.js -msgid "Creating transaction" -msgstr "Criando transação" - -#: public/views/modals/tx-details.html -msgid "Date" -msgstr "Data" - -#: public/views/modals/txp-details.html -msgid "Delete Payment Proposal" -msgstr "Excluir Proposta de Pagamento" - -#: public/views/preferencesAdvanced.html -msgid "Delete Wallet" -msgstr "Excluir Carteira" - -#: public/views/copayers.html -msgid "Delete it and create a new one" -msgstr "Apagar e criar um novo" - -#: public/views/preferencesDeleteWallet.html -msgid "Delete wallet" -msgstr "Excluir carteira" - -#: src/js/controllers/walletHome.js -msgid "Deleting payment" -msgstr "Excluindo pagamento" - -#: public/views/modals/paypro.html public/views/modals/tx-details.html -#: public/views/modals/txp-details.html -msgid "Details" -msgstr "Detalhes" - -#: public/views/preferences.html -msgid "Disabled" -msgstr "Desabilitado" - -#: public/views/backup.html -msgid "Download backup" -msgstr "Baixar backup" - -#: public/views/includes/password.html -msgid "ENTER" -msgstr "ENTER" - -#: public/views/preferences.html -msgid "Email Notifications" -msgstr "Notificações por E-mail" - -#: public/views/preferences.html -msgid "Encrypt Private Key" -msgstr "Criptografar Chave Privada" - -#: src/js/controllers/backup.js -msgid "Encrypted backup file saved" -msgstr "Arquivo de backup criptografado salvo" - -#: src/js/controllers/index.js -msgid "English" -msgstr "Inglês" - -#: public/views/includes/password.html -msgid "Enter your password" -msgstr "Digite sua senha" - -#: src/js/services/profileService.js -msgid "Error creating wallet" -msgstr "Erro na criação da carteira" - -#: src/js/services/profileService.js -msgid "Error creating wallet. Check your internet connection" -msgstr "Erro criando carteira. Verifique sua conexão com a internet" - -#: src/js/services/profileService.js -msgid "Error importing wallet:" -msgstr "Erro importando carteira:" - -#: public/views/modals/paypro.html public/views/modals/txp-details.html -msgid "Expires" -msgstr "Expira" - -#: src/js/controllers/importLegacy.js -msgid "Failed to import wallets" -msgstr "Falha ao importar carteiras" - -#: public/views/create.html -msgid "Family vacation funds" -msgstr "Fundos de férias com a família" - -#. Get information of payment if using Payment Protocol -#: src/js/controllers/walletHome.js -msgid "Fetching Payment Information" -msgstr "Buscando Informação de Pagamento" - -#: src/js/controllers/index.js -msgid "French" -msgstr "Francês" - -#: src/js/services/notificationsService.js -msgid "Funds received" -msgstr "Fundos recebidos" - -#: public/views/splash.html -msgid "GET STARTED" -msgstr "COMEÇAR" - -#: public/views/walletHome.html -msgid "Generate new address" -msgstr "Gerar novo endereço" - -#: public/views/preferences.html -msgid "Global settings" -msgstr "Configurações globais" - -#: public/views/import.html -msgid "Have a Backup from Copay v0.9?" -msgstr "Tem um Backup do Copay v 0.9?" - -#: public/views/create.html public/views/join.html -msgid "Hide" -msgstr "Ocultar" - -#: src/js/controllers/index.js -msgid "History" -msgstr "História" - -#: src/js/controllers/index.js -msgid "Home" -msgstr "Início" - -#: public/views/create.html -msgid "If not given, a random key will be generated" -msgstr "Se não informada, uma chave randômica será gerada" - -#: public/views/join.html -msgid "If not given, a secure key will be generated" -msgstr "Se não informada, uma chave de segurança será gerada" - -#: public/views/importLegacy.html -msgid "Import" -msgstr "Importar" - -#: public/views/import.html public/views/splash.html -msgid "Import backup" -msgstr "Importar backup" - -#: public/views/importLegacy.html -msgid "Import from the Cloud?" -msgstr "Importar da nuvem?" - -#: public/views/import.html -msgid "Import here" -msgstr "Importar aqui" - -#: public/views/add.html -msgid "Import wallet" -msgstr "Importar carteira" - -#: public/views/import.html -msgid "Importing wallet..." -msgstr "Importando carteira…" - -#: public/views/importLegacy.html -msgid "Importing..." -msgstr "Importando…" - -#: src/js/controllers/index.js -msgid "Japanese" -msgstr "Japonês" - -#: public/views/create.html public/views/join.html -msgid "John" -msgstr "John" - -#: public/views/join.html -msgid "Join" -msgstr "Participar" - -#: public/views/add.html -msgid "Join shared wallet" -msgstr "Associando carteira compartilhada" - -#: public/views/join.html -msgid "Joining Wallet..." -msgstr "Associando-se a Carteira…" - -#: public/views/preferences.html -msgid "Language" -msgstr "Idioma" - -#: public/views/importLegacy.html -msgid "Learn more about Wallet Migration" -msgstr "Saiba mais sobre Migração de Carteira" - -#: public/views/paymentUri.html -msgid "Make a payment to" -msgstr "Fazer um pagamento para" - -#: public/views/create.html -msgid "Master extended private key" -msgstr "Principal chave privada estendida" - -#: public/views/includes/copayers.html public/views/modals/copayers.html -#: public/views/modals/tx-details.html public/views/modals/txp-details.html -msgid "Me" -msgstr "Eu" - -#: public/views/modals/paypro.html -msgid "Memo" -msgstr "Nota" - -#: public/views/modals/tx-details.html -msgid "Merchant message" -msgstr "Mensagem do Comerciante" - -#: public/views/paymentUri.html -msgid "Message" -msgstr "Mensagem" - -#: public/views/walletHome.html -msgid "More" -msgstr "Mais" - -#: public/views/walletHome.html -msgid "Moved" -msgstr "Movido" - -#: public/views/walletHome.html -msgid "Multisignature wallet" -msgstr "Carteira multi-assinada" - -#: public/views/walletHome.html -msgid "My Bitcoin address" -msgstr "Meu endereço Bitcoin" - -#: public/views/paymentUri.html -msgid "Network" -msgstr "Rede" - -#: src/js/services/notificationsService.js -msgid "New Payment Proposal" -msgstr "Nova Proposta de Pagamento" - -#: public/views/modals/confirmation.html -msgid "No" -msgstr "Não" - -#: public/views/walletHome.html -msgid "No transactions yet" -msgstr "Nenhuma transação ainda" - -#: public/views/walletHome.html -msgid "Not valid" -msgstr "Inválido" - -#: public/views/walletHome.html public/views/modals/tx-details.html -#: public/views/modals/txp-details.html -msgid "Note" -msgstr "Nota" - -#: public/views/modals/tx-status.html -msgid "OKAY" -msgstr "OKAY" - -#: public/views/modals/tx-details.html public/views/modals/txp-details.html -msgid "Participants" -msgstr "Participantes" - -#: public/views/import.html public/views/importLegacy.html -msgid "Password" -msgstr "Senha" - -#: public/views/includes/password.html -msgid "Password cannot be recovered. Be sure to write it down" -msgstr "Senha não pode ser recuperada. Tenha certeza de anotá-la" - -#: src/js/services/profileService.js -msgid "Password needed" -msgstr "Senha necessária" - -#: src/js/controllers/password.js -msgid "Passwords do not match" -msgstr "As senhas não coincidem" - -#: public/views/join.html -msgid "Paste invitation here" -msgstr "Cole o convite aqui" - -#: public/views/import.html -msgid "Paste the backup plain text code" -msgstr "Cole o texto puro do backup aqui" - -#: public/views/modals/paypro.html -msgid "Pay To" -msgstr "Pagar Para" - -#: public/views/modals/tx-status.html -msgid "Payment Accepted" -msgstr "Pagamento Aceito" - -#: public/views/modals/txp-details.html -msgid "Payment Proposal" -msgstr "Proposta de Pagamento" - -#: public/views/modals/tx-status.html -msgid "Payment Proposal Created" -msgstr "Proposta de Pagamento Criada" - -#: src/js/services/notificationsService.js -msgid "Payment Proposal Rejected" -msgstr "Proposta de Pagamento Rejeitada" - -#: src/js/services/notificationsService.js -msgid "Payment Proposal Rejected by Copayer" -msgstr "Proposta de Pagamento Rejeitada pelo Copayer" - -#: src/js/services/notificationsService.js -msgid "Payment Proposal Signed by Copayer" -msgstr "Proposta de Pagamento Assinada pelo Copayer" - -#: public/views/walletHome.html -msgid "Payment Proposals" -msgstr "Propostas de Pagamento" - -#: src/js/controllers/walletHome.js -msgid "Payment Protocol not supported on Chrome App" -msgstr "Protocolo de pagamento não suportado no Chrome App" - -#: public/views/modals/tx-status.html -msgid "Payment Rejected" -msgstr "Pagamento Rejeitado" - -#: public/views/modals/tx-status.html src/js/services/notificationsService.js -msgid "Payment Sent" -msgstr "Pagamento Enviado" - -#: public/views/modals/txp-details.html -msgid "Payment accepted..." -msgstr "Pagamento aceito…" - -#: public/views/modals/txp-details.html -msgid "Payment details" -msgstr "Detalhes do pagamento" - -#: public/views/modals/txp-details.html -msgid "Payment finally rejected" -msgstr "Pagamento finalmente rejeitado" - -#: public/views/modals/paypro.html -msgid "Payment request" -msgstr "Pedido de pagamento" - -#: public/views/modals/txp-details.html -msgid "Payment sent!" -msgstr "Pagamento enviado!" - -#: public/views/walletHome.html -msgid "Payment to" -msgstr "Pagamento para" - -#: public/views/preferencesDeleteWallet.html -msgid "Permanently delete this wallet. THIS ACTION CANNONT BE REVERSED" -msgstr "" -"Excluir permanentemente esta carteira. ESTA AÇÃO NÃO PODE SER REVERTIDA" - -#: public/views/create.html -msgid "Personal Wallet" -msgstr "Carteira Pessoal" - -#: src/js/controllers/create.js src/js/controllers/join.js -msgid "Please enter the required fields" -msgstr "Por favor, preencha os campos obrigatórios" - -#: src/js/controllers/import.js -msgid "Please, select your backup file" -msgstr "Por favor, selecione seu arquivo de backup" - -#: public/views/walletHome.html -msgid "Preferences" -msgstr "Preferências" - -#: src/js/controllers/index.js -msgid "Receive" -msgstr "Receber" - -#: public/views/walletHome.html -msgid "Received" -msgstr "Recebido" - -#: public/views/walletHome.html -msgid "Reconnecting to Wallet Service..." -msgstr "Reconectando ao Serviço de Carteira…" - -#: public/views/walletHome.html -msgid "Recreate" -msgstr "Recriado" - -#: public/views/walletHome.html -msgid "Recreating Wallet..." -msgstr "Recriando Carteira…" - -#: public/views/modals/txp-details.html -msgid "Reject" -msgstr "Rejeitar" - -#: src/js/controllers/walletHome.js -msgid "Rejecting payment" -msgstr "Rejeitando pagamento" - -#: public/views/preferencesAbout.html -msgid "Release Information" -msgstr "Liberar Informação" - -#: public/views/backup.html public/views/includes/password.html -msgid "Repeat password" -msgstr "Repetir Senha" - -#: public/views/import.html public/views/join.html -msgid "Required" -msgstr "Obrigatório" - -#: public/views/splash.html -msgid "Retrying..." -msgstr "Repetindo…" - -#: public/views/includes/password.html -msgid "SET" -msgstr "DEFINIR" - -#: public/views/walletHome.html -msgid "SKIP BACKUP" -msgstr "PULAR BACKUP" - -#: public/views/preferencesAlias.html public/views/preferencesBwsUrl.html -#: public/views/preferencesEmail.html -msgid "Save" -msgstr "Salvar" - -#: public/views/preferencesEmail.html -msgid "Saving preferences..." -msgstr "Salvando preferências…" - -#: src/js/services/notificationsService.js -msgid "Scan Finished" -msgstr "Pesquisa Finalizada" - -#: public/views/preferencesAdvanced.html -msgid "Scan addresses for funds" -msgstr "Pesquisando endereços por fundos" - -#: public/views/walletHome.html -msgid "Scan status finished with error" -msgstr "Pesquisa de status finalizada com erro" - -#: public/views/walletHome.html -msgid "Scanning Wallet funds..." -msgstr "Pesquisando fundos de carteira…" - -#: public/views/modals/tx-details.html -msgid "See it on the blockchain" -msgstr "Veja no blockchain" - -#: public/views/import.html -msgid "Select a backup file" -msgstr "Selecione um arquivo de backup" - -#: public/views/paymentUri.html -msgid "Select a wallet" -msgstr "Selecione uma carteira" - -#: public/views/create.html -msgid "Select required number of signatures" -msgstr "Selecione o número de assinaturas necessárias" - -#: public/views/create.html -msgid "Select total number of copayers" -msgstr "Selecione o número total de copayers" - -#: public/views/walletHome.html public/views/includes/transaction.html -#: src/js/controllers/index.js -msgid "Send" -msgstr "Enviar" - -#: public/views/backup.html public/views/preferencesLogs.html -msgid "Send by email" -msgstr "Enviar por E-mail" - -#: public/views/walletHome.html -msgid "Sent" -msgstr "Enviado" - -#: public/views/importLegacy.html -msgid "Server" -msgstr "Servidor" - -#: public/views/preferencesAbout.html -msgid "Session log" -msgstr "Log da sessão" - -#: public/views/backup.html -msgid "Set up a Password for your backup" -msgstr "Configure uma senha para seu backup" - -#: public/views/includes/password.html -msgid "Set up a password" -msgstr "Configure uma senha" - -#: public/views/preferencesEmail.html -msgid "" -"Setting up email notifications could weaken your privacy, if the wallet " -"service provider is compromised. Information available to an attacker would " -"include your wallet addresses and its balance, but no more." -msgstr "" -"Configurar notificações de e-mail pode enfraquecer sua privacidade se o " -"prestador de serviços de carteira está comprometido. As informações " -"disponíveis para um invasor podem incluir seus endereços carteira e seu " -"saldo, nada mais." - -#: public/views/walletHome.html -msgid "Share address" -msgstr "Compartilhar endereço" - -#: public/views/copayers.html -msgid "Share invitation" -msgstr "Compartilhar convite" - -#: public/views/copayers.html -msgid "Share this invitation with your copayers" -msgstr "Compartilhe este convite com seus copayers" - -#: public/views/walletHome.html -msgid "" -"Share this wallet address to receive payments. To protect your privacy, new " -"addresses are generated automatically once you use them." -msgstr "" -"Compartilhe este endereço da carteira para receber pagamentos. Para proteger " -"sua privacidade, novos endereços são gerados automaticamente cada vez que " -"você usá-los." - -#: public/views/create.html -msgid "Shared Wallet" -msgstr "Compartilhar Carteira" - -#: public/views/create.html public/views/join.html -msgid "Show" -msgstr "Mostrar" - -#: src/js/controllers/walletHome.js -msgid "Signing payment" -msgstr "Pagamento assinado" - -#: src/js/controllers/walletHome.js -msgid "Signing transaction" -msgstr "Transação assinada" - -#: src/js/controllers/index.js -msgid "Spanish" -msgstr "Espanhol" - -#: src/js/controllers/copayers.js src/js/controllers/import.js -#: src/js/controllers/preferencesDelete.js -msgid "Success" -msgstr "Sucesso" - -#: public/views/walletHome.html -msgid "Tap to retry" -msgstr "Bata para repetir" - -#: src/js/controllers/walletHome.js -msgid "" -"The payment was created but could not be completed. Please try again from " -"home screen" -msgstr "" -"O pagamento foi criado mas não pode ser completado. Por favor, tente " -"novamente a partir da tela inicial." - -#: src/js/controllers/walletHome.js -msgid "" -"The payment was created but could not be signed. Please try again from home " -"screen." -msgstr "" -"O pagamento foi criado mas não pode ser assinado. Por favor, tente novamente " -"a partir da tela inicial." - -#: public/views/modals/txp-details.html -msgid "The payment was removed by creator" -msgstr "O pagamento foi removido pelo criador" - -#: src/js/controllers/walletHome.js -msgid "" -"The payment was signed but could not be broadcasted. Please try again from " -"home screen." -msgstr "" -"O pagamento foi assinado mas não pode ser transmitido. Por favor, tente " -"novamente a partir da tela inicial." - -#: public/views/backup.html -msgid "" -"The private key for this wallet is encrypted. Exporting a backup will keep " -"the private key encrypted in the backup archive." -msgstr "" -"A chave privada para esta carteira é criptografada. A exportação de um " -"backup manterá a chave privada criptografada no arquivo de backup." - -#: src/js/controllers/copayers.js src/js/controllers/preferencesDelete.js -msgid "The wallet \"{{walletName}}\" was deleted" -msgstr "A carteira “{{walletName}}” foi removida" - -#: src/js/controllers/import.js -msgid "There is an error in the form" -msgstr "Existe um erro no formulário" - -#: public/views/walletHome.html -msgid "" -"This wallet is not registered at the given Bitcore Wallet Service (BWS). You " -"can recreate it from the local information." -msgstr "" -"Esta carteira não está registrada no dado serviço Wallet Service Bitcore " -"(BWS) informado. Você pode recriá-la a partir da informação local." - -#: public/views/modals/txp-details.html -msgid "Time" -msgstr "Hora" - -#: public/views/walletHome.html public/views/includes/transaction.html -#: public/views/modals/tx-details.html public/views/modals/txp-details.html -msgid "To" -msgstr "Para" - -#: public/views/walletHome.html -msgid "Total Locked Balance" -msgstr "Saldo Total Bloqueado" - -#: public/views/modals/tx-details.html -msgid "Transaction" -msgstr "Transação" - -#: src/js/controllers/walletHome.js -msgid "Unable to send transaction proposal" -msgstr "Impossível enviar a proposta de transação" - -#: public/views/walletHome.html public/views/modals/tx-details.html -msgid "Unconfirmed" -msgstr "Não confirmado" - -#: public/views/preferences.html -msgid "Unit" -msgstr "Unidade" - -#: public/views/walletHome.html -msgid "Unsent transactions" -msgstr "Transações não enviadas" - -#: public/views/modals/paypro.html -msgid "Untrusted" -msgstr "Não confiável" - -#: public/views/walletHome.html -msgid "Updating Wallet..." -msgstr "Atualizando Carteira…" - -#: public/views/preferencesAbout.html -msgid "Version" -msgstr "Versão" - -#: public/views/backup.html -msgid "View backup" -msgstr "Ver backup" - -#: public/views/walletHome.html -msgid "WARNING: Backup needed" -msgstr "Atenção: Backup necessário" - -#: public/views/walletHome.html -msgid "WARNING: Wallet not registered" -msgstr "Atenção: Carteira não registrada" - -#: public/views/splash.html -msgid "WELCOME TO COPAY" -msgstr "BEM-VINDO A COPAY" - -#: public/views/copayers.html -msgid "Waiting for copayers" -msgstr "Aguardando copayers" - -#: public/views/copayers.html -msgid "Waiting..." -msgstr "Aguardando…" - -#: public/views/preferences.html -msgid "Wallet Alias" -msgstr "Apelido da Carteira" - -#: src/js/services/profileService.js -msgid "Wallet Already Imported:" -msgstr "Carteira já importada:" - -#: public/views/join.html -msgid "Wallet Invitation" -msgstr "Convite para Carteira" - -#: public/views/join.html -msgid "Wallet Invitation is not valid!" -msgstr "O convite para carteira não é válido!" - -#: src/js/services/profileService.js -msgid "Wallet already exists" -msgstr "A carteira já existe" - -#: public/views/copayers.html -msgid "Wallet incomplete and broken" -msgstr "Carteira incompleta e quebrada" - -#: public/views/create.html -msgid "Wallet name" -msgstr "Nome da carteira" - -#: src/js/controllers/walletHome.js -msgid "" -"Wallet service timed out. Check your Internet connexion and your wallet " -"service configuration." -msgstr "" -"Serviço de carteira expirou. Verifique sua conexão à Internet e sua " -"configuração do serviço de carteira." - -#: public/views/preferencesDeleteWallet.html -msgid "Warning!" -msgstr "Atenção!" - -#: src/js/services/profileService.js -msgid "Wrong password" -msgstr "Senha errada" - -#: public/views/modals/confirmation.html -msgid "Yes" -msgstr "Sim" - -#: public/views/walletHome.html -msgid "You do not have a wallet" -msgstr "Você não tem uma carteira" - -#: public/views/backup.html public/views/import.html -msgid "Your backup password" -msgstr "Sua senha de backup" - -#: public/views/create.html public/views/join.html -msgid "Your nickname" -msgstr "Seu apelido" - -#: public/views/includes/password.html -msgid "Your password" -msgstr "Sua senha" - -#: public/views/importLegacy.html -msgid "Your profile password" -msgstr "Sua senha de perfil" - -#: src/js/controllers/import.js -msgid "Your wallet has been imported correctly" -msgstr "Sua carteira foi importada corretamente" - -#: public/views/preferencesEmail.html -msgid "email for wallet notifications" -msgstr "e-mail para notificações de carteira" - -#: public/views/walletHome.html -msgid "locked by pending payments" -msgstr "bloqueado por pagamentos pendentes" - -#: public/views/copayers.html public/views/create.html -#: public/views/walletHome.html public/views/includes/sidebar.html -msgid "of" -msgstr "de" - -#: public/views/walletHome.html -msgid "optional" -msgstr "opcional" - -#: public/views/preferences.html -msgid "settings" -msgstr "configurações" - -#: public/views/walletHome.html -msgid "too long!" -msgstr "muito tempo!" - -#: public/views/create.html -msgid "wallet" -msgstr "carteira" - -#: src/js/controllers/importLegacy.js -msgid "" -"{{len}} wallets imported. Funds scanning in progress. Hold on to see updated " -"balance" -msgstr "" -"{{len}} carteiras importadas. Recursos de digitalização em andamento. Espere " -"para ver o saldo atualizado" diff --git a/public/img/copay_crowdin.png b/public/img/copay_crowdin.png new file mode 100644 index 000000000..31695e998 Binary files /dev/null and b/public/img/copay_crowdin.png differ diff --git a/webkitbuilds/favicon.ico b/public/img/icons/favicon.ico similarity index 100% rename from webkitbuilds/favicon.ico rename to public/img/icons/favicon.ico diff --git a/public/img/icons/icon-256.png b/public/img/icons/icon-256.png new file mode 100644 index 000000000..f9978eb28 Binary files /dev/null and b/public/img/icons/icon-256.png differ diff --git a/public/img/icons/icon-chrome-128.png b/public/img/icons/icon-chrome-128.png new file mode 100644 index 000000000..0044af9ca Binary files /dev/null and b/public/img/icons/icon-chrome-128.png differ diff --git a/public/img/icons/logo-chrome-256.png b/public/img/icons/logo-chrome-256.png new file mode 100644 index 000000000..803f97494 Binary files /dev/null and b/public/img/icons/logo-chrome-256.png differ diff --git a/public/img/icons/logo-chrome-64.png b/public/img/icons/logo-chrome-64.png new file mode 100644 index 000000000..b09c6b57a Binary files /dev/null and b/public/img/icons/logo-chrome-64.png differ diff --git a/public/index.html b/public/index.html index 88cbd56cb..1c3633722 100644 --- a/public/index.html +++ b/public/index.html @@ -24,8 +24,8 @@
-
+
+
-
-
-
+
+
+
+ + Failed to create backup +
+ +
The private key for this wallet is encrypted. Exporting a backup will keep the private key encrypted in the backup archive. @@ -29,30 +34,56 @@ name="password" ng-model="backup.repeatpassword">
-
+
+
+ +
+ +
+ A backup without its private key will allow the user to see the wallet balance, transactions, and create spend proposals. However, it will not be able to approve (sign) proposals. + +
+
+ + + -

Backup options

- -
-
+ +

Copy backup to a safe place

@@ -65,8 +96,11 @@
-
- * You can safely install your backup on another device and use your wallet from multiple devices at the same time. +
+
+ * You can safely install your backup on another device and use your wallet from multiple devices at the same time. +
+
diff --git a/public/views/create.html b/public/views/create.html index d721f7b13..83f02975d 100644 --- a/public/views/create.html +++ b/public/views/create.html @@ -81,8 +81,8 @@
- Show Advanced options - Hide Advanced options + Show advanced options + Hide advanced options diff --git a/public/views/disclaimer.html b/public/views/disclaimer.html index 03a987300..6a3d86eba 100644 --- a/public/views/disclaimer.html +++ b/public/views/disclaimer.html @@ -10,7 +10,7 @@

Terms of Use - Copay +

@@ -19,11 +19,13 @@

I affirm that I have read, understood, and agree with these terms.

-
- +
diff --git a/public/views/history.html b/public/views/history.html deleted file mode 100644 index e69de29bb..000000000 diff --git a/public/views/includes/alert.html b/public/views/includes/alert.html new file mode 100644 index 000000000..a3a25ee4d --- /dev/null +++ b/public/views/includes/alert.html @@ -0,0 +1,14 @@ +
+
+ +
+
+
+ + {{index.showAlert.msg|translate}} +
+
+ OK +
+
+
diff --git a/public/views/includes/menu-toggle.html b/public/views/includes/menu-toggle.html new file mode 100644 index 000000000..dcb1b5cff --- /dev/null +++ b/public/views/includes/menu-toggle.html @@ -0,0 +1,5 @@ + diff --git a/public/views/includes/menu.html b/public/views/includes/menu.html index 5993029e8..451f67074 100644 --- a/public/views/includes/menu.html +++ b/public/views/includes/menu.html @@ -1,5 +1,21 @@ -
-
+ + +
+ + +
+ +
+ +
+ + diff --git a/public/views/includes/output.html b/public/views/includes/output.html new file mode 100644 index 000000000..e22e4b8c2 --- /dev/null +++ b/public/views/includes/output.html @@ -0,0 +1,14 @@ +
  • + To: + {{output.toAddress || output.address}} +
  • +
  • + Amount: + {{output.amountStr}} + {{output.alternativeAmountStr}} + +
  • +
  • + Note: + {{output.message}} +
  • diff --git a/public/views/includes/password.html b/public/views/includes/password.html index 42cd98f79..5f59ca1b7 100644 --- a/public/views/includes/password.html +++ b/public/views/includes/password.html @@ -30,7 +30,7 @@
    diff --git a/public/views/includes/sidebar.html b/public/views/includes/sidebar.html index e1742550c..fe2ceab1b 100644 --- a/public/views/includes/sidebar.html +++ b/public/views/includes/sidebar.html @@ -1,6 +1,6 @@
    - +
    diff --git a/public/views/includes/transaction.html b/public/views/includes/transaction.html index 4b0a2b47a..0a0be0be0 100644 --- a/public/views/includes/transaction.html +++ b/public/views/includes/transaction.html @@ -11,13 +11,20 @@
    - To: - - {{tx.merchant.domain}} - {{tx.merchant.domain}} + + Recipients: + {{tx.recipientCount}} + + + To: + + {{tx.merchant.domain}} + {{tx.merchant.domain}} + + + {{tx.toAddress}} + - - {{tx.toAddress}}
    {{tx.message}} diff --git a/public/views/join.html b/public/views/join.html index c18aed109..7c4a19f8a 100644 --- a/public/views/join.html +++ b/public/views/join.html @@ -66,8 +66,8 @@ - Show Advanced options - Hide Advanced options + Show advanced options + Hide advanced options diff --git a/public/views/modals/advancedSend.html b/public/views/modals/advancedSend.html new file mode 100644 index 000000000..740903e2c --- /dev/null +++ b/public/views/modals/advancedSend.html @@ -0,0 +1,34 @@ + + + + + diff --git a/public/views/modals/confirmation.html b/public/views/modals/confirmation.html index 1d56e2348..7bf89e5b6 100644 --- a/public/views/modals/confirmation.html +++ b/public/views/modals/confirmation.html @@ -1,16 +1,16 @@

    {{title|translate}}

    -
    - -
    +
    + +
    diff --git a/public/views/modals/customized-amount.html b/public/views/modals/customized-amount.html index d37f32dd5..af03b55de 100644 --- a/public/views/modals/customized-amount.html +++ b/public/views/modals/customized-amount.html @@ -53,7 +53,7 @@ Amount
    - {{unitName}} @@ -63,8 +63,8 @@ diff --git a/public/views/modals/tx-details.html b/public/views/modals/tx-details.html index 84b397cfd..c26f2fa53 100644 --- a/public/views/modals/tx-details.html +++ b/public/views/modals/tx-details.html @@ -14,17 +14,19 @@