diff --git a/.travis.yml b/.travis.yml index 0625090..b38dad9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,5 @@ +dist: trusty + matrix: include: # works on Precise and Trusty @@ -9,10 +11,12 @@ matrix: packages: ['clang-3.7', 'g++-8'] before_install: +# TODO: I usually make builds with 5.14 - Duke - sudo add-apt-repository ppa:beineri/opt-qt591-trusty -y - sudo apt-get update -qq - sudo apt-get install qt59base qt59websockets - source /opt/qt59/bin/qt59-env.sh + - chmod +x res/libsodium/buildlibsodium.sh script: - qmake -v @@ -22,6 +26,10 @@ script: - make CC=clang CXX=clang++ -j2 - make distclean - qmake silentdragon.pro CONFIG+=release -spec linux-g++ +# These next 2 lines test that translation source files can be compiled +# correctly and will hopefully catch syntax errors earlier +# We want the build to fail if we can't compile translations. + - lupdate silentdragon.pro + - lrelease silentdragon.pro - res/libsodium/buildlibsodium.sh - make CC=gcc-8 CXX=g++-8 -j2 - \ No newline at end of file diff --git a/application.qrc b/application.qrc index 9f8a1f4..298a692 100644 --- a/application.qrc +++ b/application.qrc @@ -11,14 +11,21 @@ res/zcashdlogo.gif res/logobig.gif + res/silentdragon-animated.gif + res/silentdragon-animated-dark.gif + res/silentdragon-animated-startup.gif + res/silentdragon-animated-startup-dark.gif + res/silentdragon_bg.qm res/silentdragon_de.qm res/silentdragon_es.qm res/silentdragon_fi.qm + res/silentdragon_fil.qm res/silentdragon_fr.qm res/silentdragon_hr.qm res/silentdragon_it.qm + res/silentdragon_id.qm res/silentdragon_nl.qm res/silentdragon_pt.qm res/silentdragon_ru.qm @@ -32,6 +39,7 @@ res/css/dark.css res/css/default.css res/css/light.css + res/css/midnight.css res/images/blue/unchecked.png diff --git a/res/css/midnight.css b/res/css/midnight.css new file mode 100644 index 0000000..39347c1 --- /dev/null +++ b/res/css/midnight.css @@ -0,0 +1,139 @@ +/* +Theme: Midnight Qt +Version: 1.0.2 +Reference: https://doc.qt.io/qt-5/stylesheet-reference.html + +Author: Charles Sharpe +Date: Apr. 23, 2020 +Website: https://www.csharpe.me +License: https://opensource.org/licenses/MIT +*/ + +QWidget, QMainWindow, QMenuBar, QMenu, QDialog, QTabWidget, QTableView, QTableView::item, QScrollArea, QGroupBox, QPlainTextEdit, QLineEdit, QLabel, MainWindow +{ +background-color: #111; +color: #fff; +} + +QPushButton { +padding: 10px 15px; +} + +QPushButton:hover { +background: #222; +} + +QLineEdit, QRadioButton::indicator::unchecked, QCheckBox::indicator::unchecked { +background: #222; +border: 1px solid #333; +border-radius: 3px; +} + +QLineEdit { +font-size: 12px; +} + +QLineEdit:focus { +border: 1px solid #9d8400; +} + +QWidget QLabel { +font-size: 11pt; +} + +QWidget QCheckBox { +font-weight: bold; +} + +QTabWidget QTabBar::tab { +min-height: 15px; +padding: 15px 25px; +border: 1px ridge #222; +left: 1px; /* Fix 1px alignment */ +background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 0.25, stop: 0 #333, stop: 1 #111); +} + +QTabWidget QTabBar::tab:selected { +background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 0.25, stop: 0 #555, stop: 1 #111); +color:#fff; +border: 1px ridge #222; +border-bottom: 0px; /* Overwrites border-bottom */ +} + +QTabWidget QTabBar::tab:hover { +background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 0.25, stop: 0 #555, stop: 1 #111); +} + +QHeaderView { /* Table Header */ +background-color:#111; +} + +QHeaderView::section { /* Table Header Sections */ +qproperty-alignment:center; +background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 0.25, stop: 0 #333, stop: 1 #111); +color:#fff; +min-height:25px; +font-weight:bold; +font-size:12px; +outline:0; +border:1px ridge #222; +padding: 2px 5px; +} + +QHeaderView::section:last { +border-right: 0px ridge #222; +} + +QScrollArea { +background:transparent; +border:0px; +} + +QTableView { /* Table - has to be selected as a class otherwise it throws off QCalendarWidget */ +background:#111; +} + +QTableView::item { /* Table Item */ +background-color:#111; +border:1px solid #222; +font-size:12px; +} + +QTableView::item:selected { /* Table Item Selected */ +background-color:#fff; +color:#000; +} + +QMenuBar { +background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 0.25, stop: 0 #222, stop: 1 #111); +color: #fff; +} + +QMenuBar::item { +background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 0.25, stop: 0 #222, stop: 1 #111); +color: #fff; +padding: 5px 7px; +margin: 0px; +} + +QMenuBar::item:selected { +background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 0.25, stop: 0 #333, stop: 1 #111); +} + +QMenu { +border:1px solid #222; +} + +QMenu::item { +padding: 7px 15px; +} + +QMenu::item:selected { +background: #222; +} + +QMenu::separator { + height: 1px; + margin: 3px 7px 3px 7px; /* space at ends of separator */ + background: #222; +} diff --git a/res/silentdragon-animated-dark.gif b/res/silentdragon-animated-dark.gif new file mode 100644 index 0000000..10999e1 Binary files /dev/null and b/res/silentdragon-animated-dark.gif differ diff --git a/res/silentdragon-animated-startup-dark.gif b/res/silentdragon-animated-startup-dark.gif new file mode 100644 index 0000000..5990a3d Binary files /dev/null and b/res/silentdragon-animated-startup-dark.gif differ diff --git a/res/silentdragon-animated-startup.gif b/res/silentdragon-animated-startup.gif new file mode 100644 index 0000000..9d816f4 Binary files /dev/null and b/res/silentdragon-animated-startup.gif differ diff --git a/res/silentdragon-animated.gif b/res/silentdragon-animated.gif new file mode 100644 index 0000000..c7c521c Binary files /dev/null and b/res/silentdragon-animated.gif differ diff --git a/res/silentdragon_bg.ts b/res/silentdragon_bg.ts new file mode 100644 index 0000000..097214b --- /dev/null +++ b/res/silentdragon_bg.ts @@ -0,0 +1,2208 @@ + + + + + AddressBookModel + + + Label + + + + + Address + + + + + BalancesTableModel + + + Address + + + + + Amount + + + + + ConnectionDialog + + + SilentDragon + + + + + The Dragon Awakens... + + + + + MainWindow + + + SilentDragon + + + + + Balance + + + + + Summary + + + + + Shielded + + + + + Transparent + + + + + Total + + + + + Some transactions are not yet confirmed + + + + + Address Balances + + + + + + Send + + + + + From + + + + + Address Balance + + + + + Send To + + + + + Recipient + + + + + + + + + Address + + + + + + Address Book + + + + + + + + Amount + + + + + Max Available + + + + + Upload File + + + + + + + + Memo + + + + + Add Recipient + + + + + Recurring payment + + + + + Every month, starting 12-May-2012, for 6 payments + + + + + Edit Schedule + + + + + + Miner Fee + + + + + 0 + + + + + Cancel + + + + + Receive + + + + + Address Type + + + + + Shielded Address (Private, Anonymous) + + + + + Transparent Address (Public, Metadata-Leaking) + + + + + New Address + + + + + View All Addresses + + + + + Label + + + + + Update Label + + + + + Address balance + + + + + Optional + + + + + + Export Private Key + + + + + Transactions + + + + + Market + + + + + <html><head/><body><p align="center"><span style=" font-weight:600;">Hush Market Information</span></p></body></html> + + + + + Market Cap + + + + + + + + + + + + + + + + + + + + + + + + + + + + Loading... + + + + + 24H Volume + + + + + hushd + + + + + You are currently not mining + + + + + Block height + + + + + Notarized Hash + + + + + + + + + + + + + + + + + + + + + | + + + + + Notarized txid + + + + + Notarized Lag + + + + + KMD Version + + + + + Protocol Version + + + + + Version + + + + + P2P Port + + + + + RPC Port + + + + + Client Name + + + + + Next Halving + + + + + Local Services + + + + + Longest Chain + + + + + Wallet Transactions + + + + + Chain Transactions + + + + + Network solution rate + + + + + Connections + + + + + &File + + + + + &Help + + + + + &Apps + + + + + &Edit + + + + + E&xit + + + + + &About + + + + + &Report a bug on Github + + + + + &Settings + + + + + Ctrl+P + + + + + &Send Duke Feedback + + + + + &Hush Discord + + + + + &Hush Website + + + + + Check github.com for &updates + + + + + Sapling &turnstile + + + + + Ctrl+A, Ctrl+T + + + + + &Import private key + + + + + &Export all private keys + + + + + &z-board.net + + + + + Ctrl+A, Ctrl+Z + + + + + Address &book + + + + + Ctrl+B + + + + + &Backup wallet.dat + + + + + + Export transactions + + + + + Pay HUSH &URI... + + + + + Connect mobile &app + + + + + Ctrl+M + + + + + Request HUSH... + + + + + Validate Address + + + + + Theme Change + + + + + + This change can take a few seconds. + + + + + Currency Change + + + + + Tor configuration is available only when running an embedded hushd. + + + + + You're using an external hushd. Please restart hushd with -rescan + + + + + You're using an external hushd. Please restart hushd with -reindex + + + + + Enable Tor + + + + + Connection over Tor has been enabled. To use this feature, you need to restart SilentDragon. + + + + + Disable Tor + + + + + Connection over Tor has been disabled. To fully disconnect from Tor, you need to restart SilentDragon. + + + + + SilentDragon needs to restart to rescan,reindex,consolidation or deletetx. SilentDragon will now close, please restart SilentDragon to continue + + + + + + Restart SilentDragon + + + + + SilentDragon needs to reindex for zindex. SilentDragon will now close, please restart SilentDragon to continue + + + + + Some feedback about SilentDragon or Hush... + + + + + Send Duke some private and shielded feedback about + + + + + or SilentDragon + + + + + Enter Address to validate + + + + + Transparent or Shielded Address: + + + + + Private key import rescan finished + + + + + Paste HUSH URI + + + + + Error paying Hush URI + + + + + URI should be of the form 'hush:<addr>?amt=x&memo=y + + + + + Please paste your private keys here, one per line + + + + + The keys will be imported into your connected Hush node + + + + + The keys were imported! It may take several minutes to rescan the blockchain. Until then, functionality may be limited + + + + + Error + + + + + Error exporting transactions, file was not saved + + + + + No wallet.dat + + + + + Couldn't find the wallet.dat on this computer + + + + + You need to back it up from the machine hushd is running on + + + + + Backup wallet.dat + + + + + Couldn't backup + + + + + Couldn't backup the wallet.dat file. + + + + + You need to back it up manually. + + + + + + Save File + + + + + + Unable to open file + + + + + These are all the private keys for all the addresses in your wallet + + + + + Private key for + + + + + + Copy address + + + + + + + Copied to clipboard + + + + + Get private key + + + + + Get viewing key + + + + + Shield balance to Sapling + + + + + + View on block explorer + + + + + Address Asset Viewer + + + + + Convert Address + + + + + Copy txid + + + + + Copy block explorer link + + + + + View Payment Request + + + + + View Memo + + + + + Reply to + + + + + Created new t-Addr + + + + + Copy Address + + + + + Address has been previously used + + + + + Address is unused + + + + + Recipient + + + + + + File Upload + + + + + Only z-addresses can have memos + + + + + File size too large + + + + + The file size + + + + + bytes is greater than + + + + + bytes + + + + + Memos can only be used with z-addresses + + + + + The memo field can only be used with a z-address. + + + + + + +doesn't look like a z-address + + + + + Change from + + + + + Current balance : + + + + + Balance after this Tx: + + + + + Transaction Error + + + + + Please wait... + + + + + Computing your transaction + + + + + Computing transaction: + + + + + Done! + + + + + From Address is Invalid! + + + + + Recipient Address + + + + + is Invalid + + + + + Amount '%1' is invalid! + + + + + MemoDialog + + + + Memo + + + + + Include Reply Address + + + + + MemoEdit + + + Reply to + + + + + MobileAppConnector + + + Connect Mobile App + + + + + Scan this QRCode in SilentDragonAndroid to connect your device + + + + + QR Code + + + + + Connection String + + + + + Allow connections over the internet via SilentDragon wormhole + + + + + SilentDragonAndroid + + + + + Disconnect + + + + + + TextLabel + + + + + Last seen: + + + + + Connection type: + + + + + PrivKey + + + Private Keys + + + + + QObject + + + Pick + + + + + Address or Label Error + + + + + Address or Label cannot be empty + + + + + Address Format Error + + + + + %1 doesn't seem to be a valid Hush address. + + + + + Label Error + + + + + The label '%1' already exists. Please remove the existing label. + + + + + Import Address Book + + + + + Unable to open file + + + + + Address Book Import Done + + + + + Imported %1 new Address book entries + + + + + Copy address + + + + + Copied to clipboard + + + + + Delete label + + + + + Attempting autoconnect + + + + + Starting embedded hushd + + + + + hushd is set to run as daemon + + + + + Waiting for hushd + + + + + You have hushd set to start as a daemon, which can cause problems with SilentDragon + +.Please remove the following line from your HUSH3.conf and restart SilentDragon +daemon=1 + + + + + Couldn't start the embedded hushd. + +Please try restarting. + +If you previously started hushd with custom arguments, you might need to reset HUSH3.conf. + +If all else fails, please run hushd manually. + + + + + The process returned + + + + + Couldn't connect to hushd configured in HUSH3.conf. + +Not starting embedded hushd because --no-embedded was passed + + + + + Hide Advanced Config + + + + + Show Advanced Config + + + + + Choose data directory + + + + + Could not create HUSH3.conf. + + + + + All Downloads Finished Successfully! + + + + + Couldn't download params. Please check the help site for more info. + + + + + + Downloading + + + + + more remaining ) + + + + + MB of + + + + + MB at + + + + + failed. Please check the help site for more info + + + + + hushd error + + + + + A manual connection was requested, but the settings are not configured. + +Please set the host/port and user/password in the Edit->Settings menu. + + + + + Could not connect to hushd configured in settings. + +Please set the host/port and user/password in the Edit->Settings menu. + + + + + Authentication failed. The username / password you specified was not accepted by hushd. Try changing it in the Edit->Settings menu + + + + + Your hushd is starting up. Please wait. + + + + + This may take several hours, grab some popcorn + + + + + + Connection Error + + + + + + Transaction Error + + + + + There was an error! : + + + + + + No Connection + + + + + Downloading blocks + + + + + Block height + + + + + Syncing + + + + + Connected + + + + + testnet: + + + + + Connected to hushd + + + + + hushd has no peer connections! Network issues? + + + + + There was an error connecting to hushd. The error was + + + + + transaction computing. + + + + + Update Available + + + + + A new release v%1 is available! You have v%2. + +Would you like to visit the releases page? + + + + + No updates available + + + + + You already have the latest release v%1 + + + + + Please enhance your calm and wait for SilentDragon to exit + + + + + Waiting for hushd to exit, y'all + + + + + Transaction + + + + + failed + + + + + The transaction with id + + + + + failed. The error was + + + + + Transaction submitted (right click to copy) txid: + + + + + Type + + + + + Address + + + + + Date/Time + + + + + Amount + + + + + Connected directly + + + + + Connected over the internet via SilentDragon wormhole service + + + + + Node is still syncing. + + + + + No addresses with enough balance to spend! Try sweeping funds into one address + + + + + RecurringDialog + + + Dialog + + + + + Add + + + + + Edit + + + + + Delete + + + + + RequestDialog + + + Payment Request + + + + + AddressBook + + + + + Request From + + + + + My Address + + + + + Amount in + + + + + z address + + + + + Amount + + + + + The recipient will see this address in the "to" field when they pay your request. + + + + + Amount USD + + + + + Memo + + + + + TextLabel + + + + + Request payment from a Sapling address. You'll send a HUSH 0.0001 transaction to the address with a HUSH payment URI. The memo will be included in the transaction when the address pays you. + + + + + Error paying HUSH URI + + + + + URI should be of the form 'hush:<addr>?amt=x&memo=y + + + + + Pay To + + + + + Pay + + + + + You are paying a payment request. Your address will not be visible to the person requesting this payment. + + + + + Can only request from Sapling addresses + + + + + Settings + + + Settings + + + + + hushd connection + + + + + Host + + + + + Port + + + + + RPC Username + + + + + RPC Password + + + + + Options + + + + + Theme + + + + + Local Currency + + + + + AED + + + + + ARS + + + + + AUD + + + + + BDT + + + + + BHD + + + + + BMD + + + + + BRL + + + + + BTC + + + + + CAD + + + + + CHF + + + + + CLP + + + + + CNY + + + + + CZK + + + + + DKK + + + + + EUR + + + + + GBP + + + + + HKD + + + + + HUF + + + + + IDR + + + + + ILS + + + + + INR + + + + + JPY + + + + + KRW + + + + + KWD + + + + + LKR + + + + + PKR + + + + + MXN + + + + + NOK + + + + + NZD + + + + + RUB + + + + + SAR + + + + + SEK + + + + + SGD + + + + + THB + + + + + TRY + + + + + TWD + + + + + UAH + + + + + USD + + + + + VEF + + + + + VND + + + + + XAG + + + + + XAU + + + + + ZAR + + + + + default + + + + + blue + + + + + light + + + + + dark + + + + + Connect via Tor + + + + + Check github for updates at startup + + + + + Remember shielded transactions + + + + + Normally, change from t-Addresses goes to another t-Address. Checking this option will send the change to your shielded sapling address instead. Check this option to increase your privacy. + + + + + Allow overriding the default fees when sending transactions. Enabling this option may compromise your privacy since fees are transparent. + + + + + Clear History + + + + + Shielded transactions are saved locally and shown in the transactions tab. If you uncheck this, shielded transactions will not appear in the transactions tab. + + + + + Allow custom fees + + + + + Shield change from t-Addresses to your sapling address + + + + + Connect to the Tor network via SOCKS proxy running on 127.0.0.1:9050. Please note that you'll have to install and run the Tor service externally. + + + + + Connect to github on startup to check for updates + + + + + Connect to the internet to fetch HUSH prices + + + + + Fetch HUSH prices + + + + + Explorer + + + + + Tx Explorer URL + + + + + Address Explorer URL + + + + + Testnet Tx Explorer URL + + + + + Testnet Address Explorer URL + + + + + Troubleshooting + + + + + Reindex + + + + + Rescan the blockchain for any missing wallet transactions and to correct your wallet balance. This may take several hours. You need to restart SilentDragon for this to take effect + + + + + Rescan + + + + + Rebuild the entire blockchain from the genesis block, by rescanning all the block files. This may take several hours to days, depending on your hardware. You need to restart SilentDragon for this to take effect + + + + + This code can greatly reduce the size of wallets and increase performance for service providers. It's designed mostly for exchanges and mining pools but anybody with a large wallet will benefit. + + + + + Enable Old Transaction Deletion + + + + + Consolidation + + + + + Deletetx + + + + + The new experimental Shielded Index (-zindex) which keeps track of many stats that can be seen via the new getchaintxstats RPC. These include shielded payments, anonymity set size and many other things. + + + + + Zindex + + + + + 100 + + + + + Wallet.dat Size : + + + + + MB + + + + + ValidateAddress + + + Validate Address + + + + + TextLabel + + + + + Address: + + + + + ValidateAddressesModel + + + Property + + + + + Value + + + + + ViewAddressesDialog + + + All Addresses + + + + + Export All Keys + + + + + ViewAllAddressesModel + + + Address + + + + + Balance (%1) + + + + + ViewKey + + + Viewing Key + + + + + about + + + About + + + + + addressBook + + + Address Book + + + + + Add New Address + + + + + Address (z-Addr or t-Addr) + + + + + Label + + + + + Add to Address Book + + + + + Import Address Book + + + + + confirm + + + Confirm Transaction + + + + + From + + + + + To + + + + + hushd doesn't seem to have any peers. You might not be connected to the internet, so this Transaction might not work. + + + + + You are sending a transaction while your node is still syncing. This may not work. + + + + + You are using a custom fee. Since fees are transparent, you are giving up some privacy. Please use this only if you know what you are doing! + + + + + createZcashConf + + + Configure HUSH3.conf + + + + + Show Advanced Configuration + + + + + Your Hush node will be configured for you automatically + + + + + Use custom datadir + + + + + Please choose a directory to store your wallet.dat and blockchain + + + + + Choose directory + + + + + Connect over Tor + + + + + Please note that you'll need to already have a Tor service configured on port 9050 + + + + + newRecurringDialog + + + Edit Schedule + + + + + Schedule + + + + + Payment Description + + + + + TextLabel + + + + + From + + + + + Number of payments + + + + + Amount + + + + + Next Payment + + + + + To + + + + + Memo + + + + diff --git a/res/silentdragon_de.qm b/res/silentdragon_de.qm index 9600219..5cca72f 100644 Binary files a/res/silentdragon_de.qm and b/res/silentdragon_de.qm differ diff --git a/res/silentdragon_de.ts b/res/silentdragon_de.ts index d45536d..e720f70 100644 --- a/res/silentdragon_de.ts +++ b/res/silentdragon_de.ts @@ -77,210 +77,210 @@ Gesamt - + Some transactions are not yet confirmed Einige Transaktionen sind noch nicht bestätigt - + Address Balances Guthaben der Adresse - - + + Send Senden - + From Von - + Address Balance Guthaben der Adresse - + Send To Sende zu - + Recipient Empfänger - - - + + + Address Adresse - + Address Book Adressbuch - - + + Amount Betrag - + Max Available Maximal verfügbare Summe - + Upload File Datei Upload - - - + + + Memo Nachricht hinzufügen - + Add Recipient Weiteren Empfänger hinzufügen - + Recurring payment Wiederkehrende Zahlung - + Every month, starting 12-May-2012, for 6 payments Jeden Monat, startet am 12. Mai 2019, für 6 Monate - + Edit Schedule Zeitplan bearbeiten - + Miner Fee Gebühr - + 0 0 - + Cancel Abbrechen - + Receive Empfangen - + Address Type Adressen Format - + View All Addresses Alle Adressen ansehen - + Market Markt - + <html><head/><body><p align="center"><span style=" font-weight:600;">Hush Market Information</span></p></body></html> <html><head/><body><p align="center"><span style=" font-weight:600;">Hush Markt Information</span></p></body></html> - + Market Cap Marktkapitalisierung - + 24H Volume 24 Stunden Volumen - + Local Services Lokaler Service - + Longest Chain Blockhöhe des Netzwerks - + Wallet Transactions - + Wallet Transaktionen - + Chain Transactions - + Chain Transaktionen - + E&xit &Beenden - + &Report a bug on Github - + &Melde einen Fehler über Github - + &Send Duke Feedback &Sende Duke Feedback - + &Hush Discord Discord von &Hush - + &Hush Website &Hush Homepage - + Pay HUSH &URI... Hush Zahlungs &URI - + Request HUSH... Fordere Hush an... - + Validate Address Bestätigte Adresse @@ -297,33 +297,33 @@ Sichere Adresse (Zs-) - + New Address Neue Adresse - + Label Beschriftung - + Update Label Beschriftung erneuern - + Address balance Guthaben der Adresse - + Optional Wahlweise - - + + Export Private Key Privaten Key exportieren @@ -332,160 +332,161 @@ verborgene Adresse - + Transactions Transaktionen - + hushd Hush Daemon - + You are currently not mining Sie minen momentan nicht - - + + + - - - - - - + + + + - - - - - - - - - - - - + + + + + + + + + + + + + + Loading... Lade... - + Block height Blöckhöhe - + Notarized Hash Beglaubigter Hash - + Notarized txid Beglaubigte txid - + Notarized Lag Beglaubigungs Verzögerung - + KMD Version KMD Version - + Protocol Version Protokoll Version - + Version Version - + P2P Port P2P Port - + RPC Port RPC Port - + Client Name Client Name - + Next Halving Nächstes Halving - + Network solution rate Netzwerk Leistung - + Connections Verbindungen - - - - + + + - - - - - - - - - - - - + + + + + + + + + + + + + | | - + Shielded Address (Private, Anonymous) Verborgene Adresse (Privat, Anonym) - + Transparent Address (Public, Metadata-Leaking) Sichtbare Adresse (Öffentlich, mit Metadaten) - + &File &Datei - + &Help &Hilfe - + &Apps &Apps - + &Edit &Bearbeiten @@ -494,17 +495,17 @@ &Beenden - + &About &Über - + &Settings &Einstellungen - + Ctrl+P Ctrl+P @@ -513,88 +514,88 @@ &Spenden - + Check github.com for &updates Besuche github.com für weitere &updates - + Sapling &turnstile Sicherheits &Hub - + Ctrl+A, Ctrl+T Ctrl+A, Ctrl+T - + &Import private key &Importiere einen private Key - + &Export all private keys &Exportiere alle private Keys - + &z-board.net &z-board.net - + Ctrl+A, Ctrl+Z Ctrl+A, Ctrl+Z - + Address &book Adress &Buch - + Ctrl+B Ctrl+B - + &Backup wallet.dat &Backup der wallet.dat - - + + Export transactions Exportiere Transaktionen - + Connect mobile &app Verbinde die Smartphone &App - + Ctrl+M Ctrl+M - + Tor configuration is available only when running an embedded hushd. Die Tor konfiguration ist nur möglich, wenn der integrierte hushd client läuft. - + You're using an external hushd. Please restart hushd with -rescan Sie benutzen einen externen hushd clienten. Bitte starten Sie hushd mit folgendem Parameter neu: -rescan - + You're using an external hushd. Please restart hushd with -reindex Sie benutzen einen externen hushd clienten. Bitte starten Sie hushd mit folgendem Parameter neu: -reindex - + Enable Tor Tor aktivieren @@ -603,7 +604,7 @@ Die Verbindung über Tor wurde aktiviert. Um Tor zu benutzen starten Sie bitte Silentdragon neu. - + Disable Tor Tor deaktivieren @@ -640,7 +641,7 @@ Die Keys wurden erfolgreich importiert. Es dauert einige Minuten um die Blockchain zu scannen. Bis dahin ist die Funktion von Silentdragon eingeschränkt - + Private key import rescan finished Scan beendet @@ -673,197 +674,214 @@ Die Keys werden in das verbundene hushd Node importiert - + Theme Change - + Design ändern - - + + This change can take a few seconds. - + Diese Änderung kann ein paar sekunden dauern. - + Currency Change - + Währung wechseln - + Connection over Tor has been enabled. To use this feature, you need to restart SilentDragon. Die Verbindung über Tor wurde aktiviert. Um Tor zu benutzen starten Sie bitte Silentdragon neu. - + Connection over Tor has been disabled. To fully disconnect from Tor, you need to restart SilentDragon. Die Verbindung über Tor wurde deaktiviert. Um die Verbingung zu Tor endgültig zu beenden, starten Sie bitte Silentdragon neu. - SilentDragon needs to restart to rescan/reindex. SilentDragon will now close, please restart SilentDragon to continue - Silentdragon muss für den Rescan/Reindex neu gestartet werden. Silentdragon wird nun schließen, bitte starten Sie Silentdragon neu um fortzufahren + Silentdragon muss für den Rescan/Reindex neu gestartet werden. Silentdragon wird nun schließen, bitte starten Sie Silentdragon neu um fortzufahren - + + Restart SilentDragon SilentDragon Neustart - + + SilentDragon needs to reindex for zindex. SilentDragon will now close, please restart SilentDragon to continue + Silentdragon muss für das aktivieren von "zindex" einen Reindex durchführen. Silentdragon wird nun schließen, bitte starten Sie Silentdragon neu um fortzufahren. Dies kann einige Zeit dauern. + + + Some feedback about SilentDragon or Hush... Rückmeldung zu Silentdragon oder Hush - + Send Duke some private and shielded feedback about Sende Duke ein anonymes Feedback über - + or SilentDragon oder Silentdragon - + Enter Address to validate Geben Sie die Adresse ein, die überprüft werden soll - + Transparent or Shielded Address: Sichtbare oder verborgene Adresse: - + Paste HUSH URI Füge HUSH URI ein - + Error paying Hush URI Fehler bei der Bezahl HUSH URI - + URI should be of the form 'hush:<addr>?amt=x&memo=y Die URI sollte im folgendem Format sein: 'hush:<Adresse>?Betrag=x&Nachricht=y - + Please paste your private keys here, one per line Bitte füge deinen Privat key, für eine sichere oder transparente Adresse ein. Ein Key pro Zeile - + The keys will be imported into your connected Hush node Die Keys werden in das verbundene hushd Node importiert - + The keys were imported! It may take several minutes to rescan the blockchain. Until then, functionality may be limited Die Keys wurden erfolgreich importiert. Es dauert einige Minuten um die Blockchain zu scannen. Bis dahin ist die Funktion von Silentdragon eingeschränkt - + Error Fehler - + Error exporting transactions, file was not saved Fehler beim exportieren der Transaktion. Die Datei wurde nicht gespeichert. - + No wallet.dat Fehlende Wallet.dat - + Couldn't find the wallet.dat on this computer Ich kann die wallet.dat auf Ihrem Computer nicht finden - + You need to back it up from the machine hushd is running on Die Sicherung geht nur auf dem System, wo hushd aktiv läuft - + Backup wallet.dat Sicherung der wallet.dat - + Couldn't backup Konnte keine Sicherung erstellen - + Couldn't backup the wallet.dat file. Ich konnte die wallet.dat nicht sichern - + You need to back it up manually. Sie müssen die Sicherung manuell durchführen - + These are all the private keys for all the addresses in your wallet Dies sind alle private Keys, für jede Adresse ihres Wallets - + Private key for Private Key für - + + Save File Datei speichern - + + SilentDragon needs to restart to rescan,reindex,consolidation or deletetx. SilentDragon will now close, please restart SilentDragon to continue + Silentdragon muss für den Rescan,Reindex, Consolidation oder Deletetx neu gestartet werden. Silentdragon wird nun schließen, bitte starten Sie Silentdragon neu um fortzufahren + + + + Unable to open file Kann Datei nicht öffnen - - + + Copy address Adresse kopieren - - - + + + Copied to clipboard In die Zwischenablage kopiert - + Get private key Private Key anzeigen - + + Get viewing key + Viewing Key anzeigen + + + Shield balance to Sapling Guthaben auf sichere Adresse (Sapling) verschieben - - + + View on block explorer Im Block explorer anzeigen - + Address Asset Viewer Alle Adressen anschauen - + Convert Address Adresse konvertieren @@ -872,47 +890,47 @@ Zu Sapling übertragen - + Copy txid Kopiere Transaktions ID - + Copy block explorer link - + Im Block explorer Link kopieren - + View Payment Request Zahlungsaufforderung ansehen - + View Memo Nachricht ansehen - + Reply to Antworten an - + Created new t-Addr Neue transparente Adresse erstellen - + Copy Address Adresse kopieren - + Address has been previously used Diese Adresse wurde schon einmal benutzt - + Address is unused Adresse wird nicht genutzt @@ -992,31 +1010,46 @@ Das sieht nicht wie eine sichere Adresse aus Transaktions Fehler - + + Please wait... + Bitte warten... + + + + Computing your transaction + Erzeuge die Transaktion + + + Computing transaction: - + Erzeugte Transaktion: + + + + Done! + Fertig! - + From Address is Invalid! - + Sender Adresse ist ungültig! From Address is Invalid Sender Adresse ist ungültig - + Recipient Address Empfänger Adresse - + is Invalid ist ungültig - + Amount '%1' is invalid! Betrag '%1' ist ungültig! @@ -1140,22 +1173,22 @@ Das sieht nicht wie eine sichere Adresse aus QObject - + Attempting autoconnect Versuch der automatischen Verbindung - + Starting embedded hushd Starte integriertes hushd - + hushd is set to run as daemon hushd wird im Hintergund gestartet - + Waiting for hushd Warte auf hushd @@ -1177,44 +1210,44 @@ If all else fails, please run hushd manually. Ich konnte den intergrierten hushd nicht starten. Wenn Sie hushd mit anderen Argumenten gestartet haben, müssen Sie die Hush3.conf resetten. Wenn dies nicht funktioniert, starten Sie hushd manuell - + Couldn't connect to hushd configured in HUSH3.conf. Not starting embedded hushd because --no-embedded was passed Starte den internen hushd Node nicht --no-embedded wurde eingestellt. - + Hide Advanced Config Verberge erweiterte Konfiguration - + Show Advanced Config Zeige erweiterte Konfiguration - + Choose data directory Datenquelle auswählen - + All Downloads Finished Successfully! Alle Downloads erfolgreich beendet! - + Couldn't download params. Please check the help site for more info. Konnte die Parameter nicht herunterladen. Bitte gehen Sie auf die Hilfe Seite für mehr informationen - + The process returned Antwort des Prozesses - + You have hushd set to start as a daemon, which can cause problems with SilentDragon .Please remove the following line from your HUSH3.conf and restart SilentDragon @@ -1222,7 +1255,7 @@ daemon=1 Sie haben hushd im Hintergrund gestartet, was zu Problemen führen kann. Bitte löschen Sie folgende Zeile aus Ihrer Hush3.conf: daemon=1 - + Couldn't start the embedded hushd. Please try restarting. @@ -1233,112 +1266,112 @@ If all else fails, please run hushd manually. Ich konnte den intergrierten hushd nicht starten. Wenn Sie hushd mit anderen Argumenten gestartet haben, müssen Sie die Hush3.conf resetten. Wenn dies nicht funktioniert, starten Sie hushd manuell - + Could not create HUSH3.conf. Konnte die Hush3.conf nicht erstellen - - + + Downloading Herunterladen - + more remaining ) mehr verbleibend ) - + MB of MB von - + MB at MB bei - + This may take several hours, grab some popcorn Dies kann einige Stunden dauern, machen Sie sich einen Kaffee - + There was an error! : Es gab einen Fehler! : - + Downloading blocks Lade Blöcke herunter - + Block height Blockhöhe - + Syncing Synchronisiere - + Connected Verbunden - + testnet: Testnetz: - + Connected to hushd Verbunden zu Hushd - + transaction computing. - + erzeuge Transaktion - + Please enhance your calm and wait for SilentDragon to exit - + Bitte warten Sie, bis Silentdragon beendet ist - + Waiting for hushd to exit, y'all - + Bitte warten Sie, bis Hushd beendet ist hushd has no peer connections Hushd hat keine Verbindung zu anderen Teilnehmern - + There was an error connecting to hushd. The error was Es gab einen Fehler bei dem versuch Hushd zu verbinden. Der Fehler war - + Transaction - + Transaktion - + The transaction with id Transaktion mit der ID - + failed. The error was gescheitert. Der Fehler war - + failed gescheitert @@ -1347,7 +1380,7 @@ If all else fails, please run hushd manually. Transaktion - + hushd has no peer connections! Network issues? Hushd hat keine Verbindung zu anderen Teilnehmern! Haben Sie Netzwerkprobleme? @@ -1356,24 +1389,24 @@ If all else fails, please run hushd manually. Erzeuge Transaktion. Dies kann einige Minuten dauern. - + Update Available Update verfügbar - + A new release v%1 is available! You have v%2. Would you like to visit the releases page? Eine neue Version v%1 ist verfügbar! Sie benutzen momentan v%2. Möchten Sie unsere Seite besuchen? - + No updates available Keine updates verfügbar - + You already have the latest release v%1 Sie haben bereits die aktuellste Version v%1 @@ -1386,36 +1419,36 @@ Would you like to visit the releases page? Bitte warten Sie, bis Hushd beendet ist - + failed. Please check the help site for more info gescheitert. Bitte schauen Sie auf die Hilfeseite für mehr informationen - + hushd error Hushd fehler - + A manual connection was requested, but the settings are not configured. Please set the host/port and user/password in the Edit->Settings menu. Eine manuelle Verbinung wurde angefragt, aber nicht konfiguriert. Bitte tragen Sie den Host/Port und Benutzer/Passwort im Einstellungsmenü ein. - + Could not connect to hushd configured in settings. Please set the host/port and user/password in the Edit->Settings menu. Konnte keine Verbindung zum konfigurierten hushd aufbauen. Bitte tragen Sie den Host/Port und Benutzer/Passwort im Einstellungsmenü ein. - + Authentication failed. The username / password you specified was not accepted by hushd. Try changing it in the Edit->Settings menu Authentifizierung fehlgeschlagen. Der Benutzername / Passwort wurde nicht akzeptiert. Versuche Sie die Daten im Einstellunsgmenü zu ändern. - + Your hushd is starting up. Please wait. Hushd startet. Bitte warten @@ -1424,14 +1457,14 @@ Please set the host/port and user/password in the Edit->Settings menu.Dies kann einige Stunden dauern - - + + Connection Error Verbindungsfehler - - + + Transaction Error Transaktionsfehler @@ -1440,8 +1473,8 @@ Please set the host/port and user/password in the Edit->Settings menu.Beim Senden der Transaktion trat ein Fehler auf. Der Fehler war: - - + + No Connection Keine Verbindung @@ -1568,14 +1601,14 @@ You either have unconfirmed funds or the balance is too low for an automatic mig Über das Silentdragon Wurmloch zum Internet verbunden - + Node is still syncing. Ihr Node synchronisert noch - + No addresses with enough balance to spend! Try sweeping funds into one address - + Nicht genügend Guthaben für diese Transaktion auf der Adresse. Bitte fügen Sie Guthaben hinzu. No sapling or transparent addresses with enough balance to spend. @@ -1584,7 +1617,7 @@ You either have unconfirmed funds or the balance is too low for an automatic mig Transaction submitted (right click to copy) txid: - + Transaktion übermittelt (Rechtsklick zum kopieren der ID) Transaktions ID: @@ -1741,362 +1774,407 @@ You either have unconfirmed funds or the balance is too low for an automatic mig Optionen - + Check github for updates at startup Besuche github.com für weitere &updates - + Connect to the Tor network via SOCKS proxy running on 127.0.0.1:9050. Please note that you'll have to install and run the Tor service externally. Verbinde zum Tor Netzwerk über den SOCKS Proxy auf 127.0.0.1:9050. Bitte beachten Sie, dass sie den Tor Service erst extern installieren müssen. - + Shielded transactions are saved locally and shown in the transactions tab. If you uncheck this, shielded transactions will not appear in the transactions tab. Sichere Transaktionen werden lokal gespeichert, um im Bereich Transaktionen angezeigt zu werden. Wenn Sie dies nicht wünschen können Sie es deaktivieren. Theme - + Design - + Local Currency - + Lokale Währung - + AED - + - + ARS - + - + AUD - + - + BDT - + - + BHD - + - + BMD - + - + BRL - + - + BTC - + - + CAD - + - + CHF - + - + CLP - + - + CNY - + - + CZK - + - + DKK - + - + EUR - + - + GBP - + - + HKD - + - + HUF - + - + IDR - + - + ILS - + - + INR - + - + JPY - + - + KRW - + - + KWD - + - + LKR - + - + PKR - + - + MXN - + - + NOK - + - + NZD - + - + RUB - + - + SAR - + - + SEK - + - + SGD - + - + THB - + - + TRY - + - + TWD - + - + UAH - + - + USD - + - + VEF - + - + VND - + - + XAG - + - + XAU - + - + ZAR - + - + default - + - + blue - + - + light - + - + dark - + - + Connect via Tor Verbindung über Tor - + Connect to github on startup to check for updates Besuche github.com für weitere &updates - + Connect to the internet to fetch HUSH prices Verbinde zum Internet, um den Preis von Hush zu erfahren - + Fetch HUSH prices Hush / USD Preis laden - + Explorer - + - + Tx Explorer URL - + Transaktions Eplorer URL - + Address Explorer URL - + Addressn Explorer URL - + Testnet Tx Explorer URL - + Testnetz Transaktionen Explorer URL - + Testnet Address Explorer URL - + Testnetz Adressen Explorer URL - + Troubleshooting Problemlösung - + Reindex Reindex - + Rescan the blockchain for any missing wallet transactions and to correct your wallet balance. This may take several hours. You need to restart SilentDragon for this to take effect Ich überprüfe nun die Blockchain auf fehlende Transaktionen, und werde Änderungen zu Ihrem Wallet hinzufügen. Dies kann einige Stunden dauern. Sie müssen Silentdragon neu starten bevor dies ausgeführt werden kann. - + Rescan Rescan - + Rebuild the entire blockchain from the genesis block, by rescanning all the block files. This may take several hours to days, depending on your hardware. You need to restart SilentDragon for this to take effect Stelle die Blockchain vom Genesis Block wieder her. Dies kann je nach verwendeter Hardware, mehrere Stunden bis Tage dauern. Sie müssen Silentdragon neustarten um fortzuführen. - + + This code can greatly reduce the size of wallets and increase performance for service providers. It's designed mostly for exchanges and mining pools but anybody with a large wallet will benefit. + Diese Option kann die Größe Ihrer Wallet.dat Datei erheblich reduzieren, und die performance von SilentDragon verbessern. + + + + Enable Old Transaction Deletion + Alte Transaktionen löschen + + + + Consolidation + Consolidation + + + + Deletetx + Deletetx + + + + The new experimental Shielded Index (-zindex) which keeps track of many stats that can be seen via the new getchaintxstats RPC. These include shielded payments, anonymity set size and many other things. + Der neue experimentelle shielded Index (-zindex), erstellt viele Statistiken, die über den neuen getchaintxstats RPC eingesehen werden können. Dazu gehören sichere Zahlungen, die Größe des Anonymitätssatzes und viele andere Dinge. + + + + Zindex + Zindex + + + + 100 + 100 + + + + Wallet.dat Size : + Wallet.dat Größe: + + + + MB + MB + + + Clear History Verlauf löschen - + Remember shielded transactions An sichere Transaktionen erinnern - + Allow custom fees Benutzerdefinierte Gebühren erlauben - + Allow overriding the default fees when sending transactions. Enabling this option may compromise your privacy since fees are transparent. Erlaube die voreingestellte Gebühr beim versenden einer Transaktion zu ändern. Dies könnte Ihre Privatsphäre verletzen, da Gebühren für jeden sichtbar sind. - + Normally, change from t-Addresses goes to another t-Address. Checking this option will send the change to your shielded sapling address instead. Check this option to increase your privacy. Normalerweise werden Änderung von einer transparenten Adresse zu nächsten gesendet. Wählen Sie diese Option, wenn Sie die Änderungen lieber an eine sichere Adresse senden. Dies erhöht ihre Privatsphäre. - + Shield change from t-Addresses to your sapling address Unsichtbare Änderung von Ihrer transparenten Adresse auf eine sichere. @@ -2220,6 +2298,14 @@ You either have unconfirmed funds or the balance is too low for an automatic mig Guthaben (%1) + + ViewKey + + + Viewing Key + View Key + + about diff --git a/res/silentdragon_es.qm b/res/silentdragon_es.qm index 8deb1dd..515eae2 100644 Binary files a/res/silentdragon_es.qm and b/res/silentdragon_es.qm differ diff --git a/res/silentdragon_es.ts b/res/silentdragon_es.ts index 140cc2c..16ba8ee 100644 --- a/res/silentdragon_es.ts +++ b/res/silentdragon_es.ts @@ -77,195 +77,200 @@ Total - + Some transactions are not yet confirmed Algunas transacciones aún no estan confirmadas - + Address Balances Saldo De Direcciones - - + + Send Envía - + From Desde - + Address Balance Saldo De Dirección - + Send To Enviar a - + Recipient Destinatario - - - + + + Address Dirección - + Address Book Directorio - - + + Amount Monto - + Max Available Máximo Disponible - + Upload File Subir archivo - - - + + + Memo Memo - + Add Recipient Agregar Destinatario - + Recurring payment Pago recurrente - + Every month, starting 12-May-2012, for 6 payments Todos los meses, a partir del 12 de mayo de 2012, por 6 pagos. - + Edit Schedule Editar horario - + Miner Fee Cuota Minera - + 0 0 - + Cancel Cancelar - + Receive Recibir - + Address Type Tipo De Dirección - + Market Mercado - + <html><head/><body><p align="center"><span style=" font-weight:600;">Hush Market Information</span></p></body></html> - <html><head/><body><p align="center"><span style=" font-weight:600;">Información de Mercado Hush</span></p></body></html> + <html><head/><body><p align="center"><span style=" font-weight:600;">Información de Mercado Hush</span></p></body></html> - + Market Cap Capitalización de Mercado - + 24H Volume Volumen de 24 horas - + Local Services - + Longest Chain - + Wallet Transactions - + Chain Transactions - + + &Report a bug on Github + + + + &Send Duke Feedback Enviar comentarios de Duke - + &Hush Discord &Hush Discord - + &Hush Website &Hush Sitio web - + Pay HUSH &URI... Pague HUSH &URI ... - + Request HUSH... Solicitar HUSH ... - + Validate Address Validar dirección @@ -282,216 +287,217 @@ z-Addr(Sprout) - + New Address Nueva Dirección - + Label Etiqueta - + Update Label Actualizar Etiqueta - + Address balance Saldo de dirección - + Optional Opcional - - + + Export Private Key Exportar Clave Privada - + Transactions Transacciones - + hushd hushd - + You are currently not mining Actualmente no estas minando - - + + + - - - - - - + + + + - - - - - - - - - - - - + + + + + + + + + + + + + + Loading... Cargando... - + Block height Altura del bloque - + Network solution rate Rapidez de solución de red - + Connections Conexiones - - - - + + + - - - - - - - - - - - - + + + + + + + + + + + + + | | - + Shielded Address (Private, Anonymous) Dirección blindada (privada, anónima) - + Transparent Address (Public, Metadata-Leaking) Dirección transparente (pública, fuga de metadatos) - + View All Addresses Ver todas las direcciones - + Notarized Hash Hash Notarizado - + Notarized txid Txid Notarizado - + Notarized Lag Lag Notarizado - + KMD Version Versión KMD - + Protocol Version Versión de protocolo - + Version Versión - + P2P Port Puerto P2P - + RPC Port Puerto RPC - + Client Name Nombre del cliente - + Next Halving Siguiente reducción a la mitad - + &File &Archivo - + &Help &Ayuda - + &Apps &Apps - + &Edit &Editar - + E&xit Salir - + &About &Acerca de - + &Settings &Configuración - + Ctrl+P Ctrl+P @@ -500,103 +506,103 @@ &Donar - + Check github.com for &updates Consulte las actualizaciones en github.com - + Sapling &turnstile Sapling &turnstile - + Ctrl+A, Ctrl+T Ctrl+A, Ctrl+T - + &Import private key Importar clave privada - + &Export all private keys Exportar todas las claves privadas - + &z-board.net z-board.net - + Ctrl+A, Ctrl+Z Ctrl+A, Ctrl+Z - + Address &book Directorio - + Ctrl+B Ctrl+B - + &Backup wallet.dat Respaldar wallet.dat - - + + Export transactions exportación de transacciones - + Connect mobile &app Conectar &aplicación móvil - + Ctrl+M Ctrl+M - + Tor configuration is available only when running an embedded hushd. La configuración de Tor solo está disponible cuando se ejecuta un silencio integrado. - + You're using an external hushd. Please restart hushd with -rescan Estás utilizando hushd externo. Reinicie hushd con -rescan - + You're using an external hushd. Please restart hushd with -reindex Estás utilizando hushd externo. Reinicie hushd con -rescan - + Enable Tor Habilitar Tor - + Connection over Tor has been enabled. To use this feature, you need to restart SilentDragon. Se ha habilitado la conexión a través de Tor. Para usar esta función, debe reiniciar SilentDragon. - + Disable Tor Inhabilitar Tor - + Connection over Tor has been disabled. To fully disconnect from Tor, you need to restart SilentDragon. Se ha deshabilitado la conexión a través de Tor. Para desconectarse por completo de Tor, debe reiniciar SilentDragon. @@ -629,17 +635,17 @@ Las claves fueron importadas. Puede que se demore varios minutos en volver a escanear el blockchain. Hasta entonces, la funcionalidad puede ser limitada. - + Private key import rescan finished Importación de clave privada re-escaneada finalizada - SilentDragon needs to restart to rescan/reindex. SilentDragon will now close, please restart SilentDragon to continue - SilentDragon necesita reiniciarse para volver a escanear / reindexar. SilentDragon ahora se cerrará, reinicie SilentDragon para continuar + SilentDragon necesita reiniciarse para volver a escanear / reindexar. SilentDragon ahora se cerrará, reinicie SilentDragon para continuar - + + Restart SilentDragon reanudar SilentDragon @@ -652,177 +658,194 @@ Las claves serán importadas en su nodo hushd conectado - + Theme Change - - + + This change can take a few seconds. - + Currency Change - + + SilentDragon needs to restart to rescan,reindex,consolidation or deletetx. SilentDragon will now close, please restart SilentDragon to continue + + + + + SilentDragon needs to reindex for zindex. SilentDragon will now close, please restart SilentDragon to continue + + + + Some feedback about SilentDragon or Hush... Algunos comentarios sobre SilentDragon o Hush ... - + Send Duke some private and shielded feedback about Envíe a Duke comentarios privados y protegidos sobre - + or SilentDragon o SilentDragon - + Enter Address to validate Ingrese la dirección para validar - + Transparent or Shielded Address: Dirección transparente o blindada: - + Paste HUSH URI Pegar HUSH URI - + Error paying Hush URI Error al pagar HUSH URI - + URI should be of the form 'hush:<addr>?amt=x&memo=y URI debe tener la forma 'hush:<addr>?amt=x&memo=y - + Please paste your private keys here, one per line Pegue sus claves privadas aquí, una por línea - + The keys will be imported into your connected Hush node Las claves se importarán a su nodo Hush conectado - + The keys were imported! It may take several minutes to rescan the blockchain. Until then, functionality may be limited Las claves se importarán a su nodo Hush conectado - + Error Error - + Error exporting transactions, file was not saved Error al exportar transacciones, el archivo no se guardó - + No wallet.dat Sin wallet.dat - + Couldn't find the wallet.dat on this computer No se pudo encontrar wallet.dat en esta computadora - + You need to back it up from the machine hushd is running on Necesitas hacer una copia de seguridad de la computadora en la que se está ejecutando hushd - + Backup wallet.dat Respaldar wallet.dat - + Couldn't backup No se pudo hacer una copia de seguridad - + Couldn't backup the wallet.dat file. No se pudo hacer copia de seguridad de wallet.dat - + You need to back it up manually. Necesitas hacer una copia de seguridad manualmente. - + These are all the private keys for all the addresses in your wallet Estas son todas las claves privadas para todas las direcciones en tu billetera - + Private key for Clave privada para - + + Save File Guardar Archivo - + + Unable to open file No es posible abrir el archivo - - + + Copy address Copiar dirección - - - + + + Copied to clipboard Copiado al portapapeles - + Get private key Obtener clave privada - + + Get viewing key + + + + Shield balance to Sapling Proteger saldo a Sapling - - + + View on block explorer Ver en el explorador de bloques - + Address Asset Viewer Dirección Asset Espectador - + Convert Address Convertir dirección @@ -831,47 +854,47 @@ Migrar a Sapling - + Copy txid Copiar txid - + Copy block explorer link - + View Payment Request Ver solicitud de pago - + View Memo Ver Memo - + Reply to Responder a - + Created new t-Addr Nuevo dirección t-Addr creada - + Copy Address Dirección de copia - + Address has been previously used La dirección ha sido utilizada previamente - + Address is unused Dirección no utilizada @@ -949,12 +972,27 @@ doesn't look like a z-address Error de Transacción - + + Please wait... + + + + + Computing your transaction + + + + Computing transaction: - + + Done! + + + + From Address is Invalid! @@ -963,17 +1001,17 @@ doesn't look like a z-address Dirección de envio inválida - + Recipient Address Dirección de Destinatario - + is Invalid es Inválida - + Amount '%1' is invalid! El monto '%1' no es válido! @@ -1077,78 +1115,78 @@ doesn't look like a z-address QObject - - + + No Connection Sin Conexión - + Downloading blocks Descargando Bloques - + Block height Altura del bloque - + Syncing Sincronizando - + Connected Conectando - + testnet: testnet: - + Connected to hushd Conectando a hushd - + hushd has no peer connections! Network issues? ¡Hushd no tiene conexiones entre pares! Problemas de red? - + There was an error connecting to hushd. The error was Hubo un error al conectar con hushd. El error fue - + transaction computing. - + Please enhance your calm and wait for SilentDragon to exit - + Waiting for hushd to exit, y'all - + Transaction - + The transaction with id La transacción con id - + failed. The error was falló. El error fue @@ -1157,7 +1195,7 @@ doesn't look like a z-address Tx - + failed falló @@ -1166,12 +1204,12 @@ doesn't look like a z-address tx computando. Esto puede tomar varios minutos. - + Update Available Actualización disponible - + A new release v%1 is available! You have v%2. Would you like to visit the releases page? @@ -1180,12 +1218,12 @@ Would you like to visit the releases page? ¿Te gustaría visitar la página de lanzamientos? - + No updates available No hay actualizaciones disponibles - + You already have the latest release v%1 Ya tienes la última versión v%1 @@ -1198,27 +1236,27 @@ Would you like to visit the releases page? Esperando que hushd salga - + Attempting autoconnect Intentando de autoconectarse - + Starting embedded hushd Iniciando hushd incorporado - + hushd is set to run as daemon hushd está configurado para ejecutarse como demonio - + Waiting for hushd Esperando hushd - + You have hushd set to start as a daemon, which can cause problems with SilentDragon .Please remove the following line from your HUSH3.conf and restart SilentDragon @@ -1229,7 +1267,7 @@ daemon=1 daemon=1 - + Couldn't start the embedded hushd. Please try restarting. @@ -1246,7 +1284,7 @@ If all else fails, please run hushd manually. Si todo lo demás falla, ejecute hushd manualmente. - + Couldn't connect to hushd configured in HUSH3.conf. Not starting embedded hushd because --no-embedded was passed @@ -1255,58 +1293,58 @@ Not starting embedded hushd because --no-embedded was passed No se inicia hushd incrustado porque se pasó --no incrustado - + Hide Advanced Config Ocultar configuración avanzada - + Show Advanced Config Mostrar configuración avanzada - + Choose data directory Elegir directorio de datos - + Could not create HUSH3.conf. No se pudo crear HUSH3.conf. - + All Downloads Finished Successfully! Todas Las Descargas Terminaron Exitosamente! - + Couldn't download params. Please check the help site for more info. No se pudieron descargar los parámetros. Por favor, consulta el sitio de ayuda para mayor información. - - + + Downloading Descargando - + more remaining ) faltan )) - + MB of MB de - + MB at MB a - + A manual connection was requested, but the settings are not configured. Please set the host/port and user/password in the Edit->Settings menu. @@ -1315,7 +1353,7 @@ Please set the host/port and user/password in the Edit->Settings menu. - + Could not connect to hushd configured in settings. Please set the host/port and user/password in the Edit->Settings menu. @@ -1325,18 +1363,18 @@ Por favor, especificar el host/puerta y usario/contraseña en el menú Editar-&g - + There was an error! : ¡Hubo un error! : - - + + Transaction Error Error De Transacción - + failed. Please check the help site for more info falló. Por favor, consulte el sitio de ayuda para más información @@ -1356,33 +1394,33 @@ Si todo falla, por favor ejecutar hushd manualmente. - + The process returned El proceso devuelto - + hushd error error de hushd - + Authentication failed. The username / password you specified was not accepted by hushd. Try changing it in the Edit->Settings menu Autenticación fallida. El usario/contraseña que epecificó no fue aceptado por hushd. Intenta cambiarlo en el menu Editar->Configuración. - + Your hushd is starting up. Please wait. Tu hushd se está iniciando. Por favor espera. - + This may take several hours, grab some popcorn Esto puede tomar varias horas, agarra algunas palomitas de maíz - - + + Connection Error Error de conexión @@ -1514,12 +1552,12 @@ El saldo es insuficiente para una migración automática. Conectado a través de Internet a través del servicio SilentDragon wormhole - + Node is still syncing. El nodo aún se está sincronizando. - + No addresses with enough balance to spend! Try sweeping funds into one address @@ -1687,17 +1725,17 @@ El saldo es insuficiente para una migración automática. Opciones - + Check github for updates at startup - + Connect to the Tor network via SOCKS proxy running on 127.0.0.1:9050. Please note that you'll have to install and run the Tor service externally. Conéctese a la red Tor a través del proxy SOCKS que se ejecuta en 127.0.0.1:9050. Tenga en cuenta que tendrá que instalar y ejecutar el servicio Tor externamente. - + Shielded transactions are saved locally and shown in the transactions tab. If you uncheck this, shielded transactions will not appear in the transactions tab. Las transacciones protegidas se guardan localmente y se muestran en la pestaña de transacciones. Si desactivas esto, las transacciones protegidas no aparecerán en la pestaña de transacciones. @@ -1707,287 +1745,292 @@ El saldo es insuficiente para una migración automática. - + Local Currency - + AED - + ARS - + AUD - + BDT - + BHD - + BMD - + BRL - + + BTC + + + + CAD - + CHF - + CLP - + CNY - + CZK - + DKK - + EUR - + GBP - + HKD - + HUF - + IDR - + ILS - + INR - + JPY - + KRW - + KWD - + LKR - + PKR - + MXN - + NOK - + NZD - + RUB - + SAR - + SEK - + SGD - + THB - + TRY - + TWD - + UAH - + USD - + VEF - + VND - + XAG - + XAU - + ZAR - + default - + blue - + light - + dark - + Connect via Tor Conectar a través de Tor - + Connect to github on startup to check for updates - + Connect to the internet to fetch HUSH prices - + Fetch HUSH prices - + Explorer - + Tx Explorer URL - + Address Explorer URL - + Testnet Tx Explorer URL - + Testnet Address Explorer URL - + Troubleshooting Solución de problemas @@ -1997,47 +2040,92 @@ El saldo es insuficiente para una migración automática. Reindex - + Rescan the blockchain for any missing wallet transactions and to correct your wallet balance. This may take several hours. You need to restart SilentDragon for this to take effect Vuelva a escanear la cadena de bloques para detectar transacciones de billetera faltantes y para corregir el saldo de su billetera. Esto puede llevar varias horas. Debe reiniciar SilentDragon para que esto surta efecto - + Rescan Reescanear - + Rebuild the entire blockchain from the genesis block, by rescanning all the block files. This may take several hours to days, depending on your hardware. You need to restart SilentDragon for this to take effect Reconstruya toda la cadena de bloques a partir del bloque de génesis, volviendo a escanear todos los archivos de bloque. Esto puede llevar varias horas o días, dependiendo de su hardware. Debe reiniciar SilentDragon para que esto surta efecto - + + This code can greatly reduce the size of wallets and increase performance for service providers. It's designed mostly for exchanges and mining pools but anybody with a large wallet will benefit. + + + + + Enable Old Transaction Deletion + + + + + Consolidation + + + + + Deletetx + + + + + The new experimental Shielded Index (-zindex) which keeps track of many stats that can be seen via the new getchaintxstats RPC. These include shielded payments, anonymity set size and many other things. + + + + + Zindex + + + + + 100 + 100 + + + + Wallet.dat Size : + + + + + MB + + + + Clear History Borrar historial - + Remember shielded transactions Recuerde las transacciones protegidas - + Allow custom fees Permitir tarifas personalizadas - + Allow overriding the default fees when sending transactions. Enabling this option may compromise your privacy since fees are transparent. Permite utilizar tarifas no estándar al enviar transacciones. Habilitar esta opción puede reducir su privacidad porque las tarifas son transparentes. - + Normally, change from t-Addresses goes to another t-Address. Checking this option will send the change to your shielded sapling address instead. Check this option to increase your privacy. Normalmente, el vuelto de las t-Addr va a otra t-Addr. Al marcar esta opción, se enviará el vuelto a su dirección protegida. Marcar esta opción para aumentar tu privacidad. - + Shield change from t-Addresses to your sapling address Proteger el vuelto de direcciones t-Addr a su direccion Sapling @@ -2161,6 +2249,14 @@ El saldo es insuficiente para una migración automática. Saldar (%1) + + ViewKey + + + Viewing Key + + + about diff --git a/res/silentdragon_fi.qm b/res/silentdragon_fi.qm index 1980737..f8bd649 100644 Binary files a/res/silentdragon_fi.qm and b/res/silentdragon_fi.qm differ diff --git a/res/silentdragon_fi.ts b/res/silentdragon_fi.ts index 1836e6c..529458a 100644 --- a/res/silentdragon_fi.ts +++ b/res/silentdragon_fi.ts @@ -80,216 +80,216 @@ Summa - + Some transactions are not yet confirmed Joitakin tapahtumia ei ole vielä vahvistettu - + Address Balances Osoitteiden Saldot - - + + Send Lähetä - + From Mistä - + Address Balance Osoitteen Saldo - + Send To Minne - + Recipient Vastaanottaja - - - + + + Address Osoite - + Address Book Osoitekirja - - + + Amount Määrä - + Max Available Enimmäismäärä Saatavilla - + Upload File Lataa Tiedosto - - - + + + Memo Viesti - + Add Recipient Lisää Vastaanottaja - + Recurring payment Toistuva maksu - + Every month, starting 12-May-2012, for 6 payments Joka kuukausi, Alkaen 12-Toukokuuta-2012, 6 maksua - + Edit Schedule Muokkaa Aikataulua - + Miner Fee Siirtomaksu - + 0 0 - + Cancel Peruuta - + Receive Vastaanota - + Address Type Osoitteen Tyyppi - + Market - + <html><head/><body><p align="center"><span style=" font-weight:600;">Hush Market Information</span></p></body></html> - + Market Cap - + 24H Volume - + Local Services Paikalliset Palvelut - + Longest Chain Pisin Ketju - + Wallet Transactions - + Chain Transactions - + &Report a bug on Github - + &Send Duke Feedback &Lähetä Dukelle Palautetta - + &Hush Discord &Hush Discord - + &Hush Website &Hush Verkkosivusto - - + + Export transactions Vie tapahtumat - + Pay HUSH &URI... Maksa Hush &URI... - + Connect mobile &app Yhdistä Älypuhelin &Sovellukseen - + Ctrl+M Ctrl+M - + Request HUSH... Pyydä Hush... - + Validate Address Validoi Osoite @@ -306,166 +306,167 @@ Suojattu Osoite (Sprout) - + New Address Uusi Osoite - + View All Addresses Näytä Kaikki Osoitteet - + Label Nimeä - + Update Label Päivitä Nimi - + Address balance Osoiteen Saldo - + Optional Vaihtoehtoinen - - + + Export Private Key Vie Salainen Avain - + Transactions Tapahtumat - + hushd hushd - + You are currently not mining Tällä hetkellä et louhi - - + + + - - - - - - + + + + - - - - - - - - - - - - + + + + + + + + + + + + + + Loading... Ladataan... - + Block height Lohkokorkeus - + Notarized Hash Notarisoitu Hash - + Notarized txid Notarisoitu txid - + Notarized Lag Notarisoitu Viive - + KMD Version KMD Versio - + Protocol Version Protokollan Versio - + Version Versio - + P2P Port P2P Portti - + RPC Port RPC Portti - + Client Name Asiakasohjelman Nimi - + Next Halving Seuraava Puoliintuminen - + Network solution rate Verkon Louhintanopeus - + Connections Yhteydet - - - - + + + - - - - - - - - - - - - + + + + + + + + + + + + + | | @@ -475,52 +476,52 @@ SilentDragon - + Shielded Address (Private, Anonymous) Suojattu Osoite (Yksityinen, Anonyymi) - + Transparent Address (Public, Metadata-Leaking) Suojaamaton Osoite (Kaikille Näkyvä, Metadataa-Vuotava) - + &File &Tiedosto - + &Help &Apua - + &Apps &Sovellukset - + &Edit &Muokkaa - + E&xit &Poistu - + &About &Tietoja - + &Settings &Asetukset - + Ctrl+P Ctrl+P @@ -529,52 +530,52 @@ &Lahjoita - + Check github.com for &updates Tarkista github.com &päivityksien varalta - + Sapling &turnstile Sapling &turnstile - + Ctrl+A, Ctrl+T Ctrl+A, Ctrl+T - + &Import private key &Tuo salainen avain - + &Export all private keys &Vie kaikki salaiset avaimet - + &z-board.net &z-board.net - + Ctrl+A, Ctrl+Z Ctrl+A, Ctrl+Z - + Address &book &Osoitekirja - + Ctrl+B Ctrl+B - + &Backup wallet.dat &Varmuuskopioi wallet.dat @@ -607,7 +608,7 @@ YOUR_TRANSLATION_HERE - + Private key import rescan finished Salaisen avaimen tuonnin uudelleenskannaus valmis @@ -620,222 +621,239 @@ YOUR_TRANSLATION_HERE - + Theme Change - - + + This change can take a few seconds. - + Currency Change - + Tor configuration is available only when running an embedded hushd. Tor-verkon konfigurointi on saatavilla vain kun integroitu hushd on käynnissä. - + You're using an external hushd. Please restart hushd with -rescan Käytät ulkopuolista hushd:ia. Ole hyvä ja käynnistä hushd uudelleen -rescan:lla - + You're using an external hushd. Please restart hushd with -reindex Käytät ulkopuolista hushd:ia. Ole hyvä ja käynnistä hushd uudelleen -reindex:lla - + Enable Tor Ota Tor-verkko käyttöön - + Connection over Tor has been enabled. To use this feature, you need to restart SilentDragon. Yhteys Tor-verkon kautta on otettu käyttöön. Jotta voit käyttää tätä ominaisuutta, sinun on käynnistettävä SilentDragon uudelleen. - + Disable Tor Poista Tor-verkko käytöstä - + Connection over Tor has been disabled. To fully disconnect from Tor, you need to restart SilentDragon. Yhteys Tor-verkon kautta on poistettu käytöstä. Katkaistaksesi Tor-verkon kokonaan, sinun on käynnistettävä SilentDragon uudelleen. - SilentDragon needs to restart to rescan/reindex. SilentDragon will now close, please restart SilentDragon to continue - SilentDragon on käynnistettävä uudelleen, jotta voidaan uudelleenskannata/reindeksoida. SilentDragon sulkeutuu nyt, käynnistä SilentDragon uudelleen jatkaaksesi + SilentDragon on käynnistettävä uudelleen, jotta voidaan uudelleenskannata/reindeksoida. SilentDragon sulkeutuu nyt, käynnistä SilentDragon uudelleen jatkaaksesi - + + Restart SilentDragon Käynnistä SilentDragon uudelleen - + + SilentDragon needs to reindex for zindex. SilentDragon will now close, please restart SilentDragon to continue + + + + Some feedback about SilentDragon or Hush... Palautetta SilentDragonista tai Hushista... - + Send Duke some private and shielded feedback about Lähetä Dukelle anonyymiä ja yksityistä palautetta - + or SilentDragon tai SilentDragon - + Enter Address to validate Syötä Osoite vahvistaakesi - + Transparent or Shielded Address: Julkinen tai Suojattu Osoite: - + Paste HUSH URI Liitä Hush URI - + Error paying Hush URI Virhe maksaessa Hush URI - + URI should be of the form 'hush:<addr>?amt=x&memo=y URI:n tulisi olla muodossa 'hush:<osoite>?määrä=x&muistio=y - + Please paste your private keys here, one per line Liitä Salaiset Avaimesi tähän, yksi per rivi - + The keys will be imported into your connected Hush node Avaimet tuodaan sinun yhdistettyyn Hush nodeen - + The keys were imported! It may take several minutes to rescan the blockchain. Until then, functionality may be limited Avaimet tuotiin! Lohkoketjun uudelleenskannaus voi kestää useita minuutteja. Siihen asti toiminnallisuus voi olla rajoitettu - + Error Virhe - + Error exporting transactions, file was not saved Virhe tapahtumien viemisessä, tiedostoa ei tallennettu - + No wallet.dat Ei wallet.dat tiedostoa - + Couldn't find the wallet.dat on this computer Tästä tietokoneesta ei löytynyt wallet.dat-tiedostoa - + You need to back it up from the machine hushd is running on Sinun on varmuuskopioitava se siitä koneesta, missä hushd on käynnissä - + Backup wallet.dat Varmuuskopioi wallet.dat - + Couldn't backup Varmuuskopiointi epäonnistui - + Couldn't backup the wallet.dat file. wallet.dat-tiedostoa ei voitu varmuuskopioida. - + You need to back it up manually. Sinun on varmuuskopioitava se manuaalisesti. - + These are all the private keys for all the addresses in your wallet Tässä ovat kaikki lompakkosi osoitteiden salaiset avaimet - + Private key for Salainen avain - + + Save File Tallenna Tiedosto - + + SilentDragon needs to restart to rescan,reindex,consolidation or deletetx. SilentDragon will now close, please restart SilentDragon to continue + + + + + Unable to open file Tiedostoa ei voitu avata - - + + Copy address Kopioi osoite - - - + + + Copied to clipboard Kopioitu leikepöydälle - + Get private key Näe Salainen avain - + + Get viewing key + + + + Shield balance to Sapling Siirrä Saldo Suojattuun (Sapling) osoitteeseen - - + + View on block explorer Näytä lohkoketjussa - + Address Asset Viewer Osoitteen Varojen Katselu - + Convert Address Muunna Osoite @@ -844,47 +862,47 @@ Siirrä Saplingiin - + Copy txid Kopioi Tapahtuman ID - + Copy block explorer link - + View Payment Request Näytä Maksu Pyyntö - + View Memo Näytä Viesti - + Reply to Vastaa - + Created new t-Addr Uusi Suojaamaton osoite luotu - + Copy Address Kopioi Osoite - + Address has been previously used Osoitetta on käytetty aiemmin - + Address is unused Osoite on käyttämätön @@ -964,12 +982,27 @@ Ei näytä suojatulta Zs-osoitteelta Tapahtumavirhe - + + Please wait... + + + + + Computing your transaction + + + + Computing transaction: - + + Done! + + + + From Address is Invalid! @@ -978,17 +1011,17 @@ Ei näytä suojatulta Zs-osoitteelta Lähettäjän Osoite on Virheellinen - + Recipient Address Vastaanottajan Osoite - + is Invalid on Virheellinen - + Amount '%1' is invalid! Määrä '%1' on virheellinen! @@ -1084,22 +1117,22 @@ Ei näytä suojatulta Zs-osoitteelta QObject - + Attempting autoconnect Yritetään automaattista yhteyttä - + Starting embedded hushd Käynnistetään integroitu hushd - + hushd is set to run as daemon hushd on asetettu toimimaan palveluprosessina - + Waiting for hushd Odotetaan hushd:ia @@ -1127,22 +1160,22 @@ Not starting embedded hushd because --no-embedded was passed YOUR_TRANSLATION_HERE - + All Downloads Finished Successfully! Kaikki Lataukset Onnistui! - + Couldn't download params. Please check the help site for more info. Paramereja ei voitu ladata. Tarkista lisätietoja ohjesivulta. - + The process returned Prosessi palasi - + You have hushd set to start as a daemon, which can cause problems with SilentDragon .Please remove the following line from your HUSH3.conf and restart SilentDragon @@ -1153,7 +1186,7 @@ daemon=1 daemon=1 - + Couldn't start the embedded hushd. Please try restarting. @@ -1170,7 +1203,7 @@ Jos aloitit hushd:n aiemmin mukautetuilla argumenteilla, saatat joutua nollaamaa Jos kaikki muu ei auta, suorita hushd manuaalisesti. - + Couldn't connect to hushd configured in HUSH3.conf. Not starting embedded hushd because --no-embedded was passed @@ -1179,103 +1212,103 @@ Not starting embedded hushd because --no-embedded was passed Integroitua hushdia ei käynnistetä, koska --ei-integroitu ohitettiin - + Hide Advanced Config Piilota Lisäasetukset - + Show Advanced Config Näytä Lisäasetukset - + Choose data directory Valitse tiedostohakemisto - + Could not create HUSH3.conf. HUSH3.conf-tiedostoa ei voitu luoda. - - + + Downloading Ladataan - + more remaining ) vielä jäljellä ) - + MB of MT of - + MB at MT at - + There was an error! : Tapahtui virhe! : - + Downloading blocks Lataa lohkoja - + Block height Lohkokorkeus - + Syncing Synkronoi - + Connected Yhdistetty - + testnet: testiverkko: - + Connected to hushd Yhdistetty hushd - + hushd has no peer connections! Network issues? hushd:lla ei ole vertaisverkko yhteyksiä! Verkko ongelmia? - + There was an error connecting to hushd. The error was Yhdistettäessä hushd:iin tapahtui virhe. Virhe oli - + transaction computing. - + Update Available Päivitys Saatavilla - + A new release v%1 is available! You have v%2. Would you like to visit the releases page? @@ -1284,22 +1317,22 @@ Would you like to visit the releases page? Haluaisitko vierailla lataus-sivulla? - + No updates available Päivityksiä ei ole saatavilla - + You already have the latest release v%1 Sinulla on jo uusin versio v%1 - + Please enhance your calm and wait for SilentDragon to exit - + Waiting for hushd to exit, y'all @@ -1308,22 +1341,22 @@ Haluaisitko vierailla lataus-sivulla? Odotathan, että SilentDragon sulkeutuu - + Transaction - + The transaction with id Tapahtuma tunnuksella - + failed. The error was epäonnistui. Virhe oli - + failed epäonnistui @@ -1344,17 +1377,17 @@ Haluaisitko vierailla lataus-sivulla? Odotetaan hushd:n poistumista - + failed. Please check the help site for more info epäonnistui. Tarkista lisätietoja ohjesivulta - + hushd error hushd virhe - + A manual connection was requested, but the settings are not configured. Please set the host/port and user/password in the Edit->Settings menu. @@ -1363,7 +1396,7 @@ Please set the host/port and user/password in the Edit->Settings menu. - + Could not connect to hushd configured in settings. Please set the host/port and user/password in the Edit->Settings menu. @@ -1372,29 +1405,29 @@ Please set the host/port and user/password in the Edit->Settings menu. - + Authentication failed. The username / password you specified was not accepted by hushd. Try changing it in the Edit->Settings menu Todennus epäonnistui. Hushd ei hyväksynyt määrittämääsi käyttäjänimeä / salasanaa. Yritä muuttaa niitä Muokkaa-> Asetukset-valikosta - + Your hushd is starting up. Please wait. hushd on käynnistymässä. Ole hyvä ja odota. - + This may take several hours, grab some popcorn Tämä voi viedä useita tunteja, nappaa Fazerin sinistä - - + + Connection Error Yhteysvirhe - - + + Transaction Error Tapahtumavirhe @@ -1403,8 +1436,8 @@ Aseta isäntä/portti ja käyttäjänimi/salasana Muokkaa-> Asetukset-valikos YOUR_TRANSLATION_HERE - - + + No Connection Ei Yhteyttä @@ -1531,12 +1564,12 @@ Sinulla on joko vahvistamattomia varoja tai saldo on liian pieni automaattiseen Yhdistetty internetin kautta SilentDragon-madonreikäpalveluun - + Node is still syncing. Nodea synkronoidaan edelleen. - + No addresses with enough balance to spend! Try sweeping funds into one address @@ -1704,17 +1737,17 @@ Sinulla on joko vahvistamattomia varoja tai saldo on liian pieni automaattiseen Valinnat - + Check github for updates at startup Tarkista päivitykset githubista käynnistyksen yhteydessä - + Connect to the Tor network via SOCKS proxy running on 127.0.0.1:9050. Please note that you'll have to install and run the Tor service externally. Yhdistä Tor-verkkoon SOCKS-välityspalvelimen kautta, joka toimii 127.0.0.1:9050. Huomaa, että sinun on asennettava ja suoritettava Tor-palvelu ulkoisesti. - + Shielded transactions are saved locally and shown in the transactions tab. If you uncheck this, shielded transactions will not appear in the transactions tab. Suojatut zs-tapahtumat tallennetaan paikallisesti ja ne näkyvät tapahtumat välilehdessä. Jos poistat tämän valinnan, suojatut tapahtumat eivät tule näkyviin Tapahtumat-välilehteen. @@ -1724,342 +1757,387 @@ Sinulla on joko vahvistamattomia varoja tai saldo on liian pieni automaattiseen - + Local Currency - + AED - + ARS - + AUD - + BDT - + BHD - + BMD - + BRL - + BTC - + CAD - + CHF - + CLP - + CNY - + CZK - + DKK - + EUR - + GBP - + HKD - + HUF - + IDR - + ILS - + INR - + JPY - + KRW - + KWD - + LKR - + PKR - + MXN - + NOK - + NZD - + RUB - + SAR - + SEK - + SGD - + THB - + TRY - + TWD - + UAH - + USD - + VEF - + VND - + XAG - + XAU - + ZAR - + default - + blue - + light - + dark - + Connect via Tor Yhdistä Tor-verkon välityksellä - + Connect to github on startup to check for updates Yhdistä githubiin käynnistäessä tarkistaaksesi päivitykset - + Connect to the internet to fetch HUSH prices Yhdistä Internetiin hakeaksesi HUSH hinnat - + Fetch HUSH prices Hae HUSH hinnat - + Explorer - + Tx Explorer URL - + Address Explorer URL - + Testnet Tx Explorer URL - + Testnet Address Explorer URL - + Troubleshooting Vianetsintä - + Reindex Reindeksoi - + Rescan the blockchain for any missing wallet transactions and to correct your wallet balance. This may take several hours. You need to restart SilentDragon for this to take effect Uudelleenskannaa lohkoketju puuttuvien lompakkotapahtumien varalta ja lompakon saldon korjaamiseksi. Tämä voi viedä useita tunteja. Sinun on käynnistettävä SilentDragon uudelleen, jotta tämä muutos tulee voimaan - + Rescan Uudelleenskannaa - + Rebuild the entire blockchain from the genesis block, by rescanning all the block files. This may take several hours to days, depending on your hardware. You need to restart SilentDragon for this to take effect Rakenna koko lohkoketju uudelleen syntylohkosta alkaen skannaamalla kaikki lohkotiedostot. Tämä voi viedä useista tunneista päiviin laitteistosta riippuen. Sinun on käynnistettävä SilentDragon uudelleen, jotta tämä tulee voimaan - + + This code can greatly reduce the size of wallets and increase performance for service providers. It's designed mostly for exchanges and mining pools but anybody with a large wallet will benefit. + + + + + Enable Old Transaction Deletion + + + + + Consolidation + + + + + Deletetx + + + + + The new experimental Shielded Index (-zindex) which keeps track of many stats that can be seen via the new getchaintxstats RPC. These include shielded payments, anonymity set size and many other things. + + + + + Zindex + + + + + 100 + 100 + + + + Wallet.dat Size : + + + + + MB + + + + Clear History Tyhjennä Historia - + Remember shielded transactions Muista suojatut tapahtumat - + Allow custom fees Salli mukautetut siirtomaksut - + Allow overriding the default fees when sending transactions. Enabling this option may compromise your privacy since fees are transparent. Salli oletusmaksujen muokkaaminen tapahtumia lähetettäessä. Tämän vaihtoehdon ottaminen käyttöön voi vaarantaa yksityisyytesi, koska siirtomaksut ovat suojaamattomia. - + Normally, change from t-Addresses goes to another t-Address. Checking this option will send the change to your shielded sapling address instead. Check this option to increase your privacy. Normaalisti vaihtoraha siirtyy suojaamattomasta osoitteesta toiseen suojaamattomaan osoitteeseen. Jos valitset tämän vaihtoehdon, vaihtoraha lähetetään suojattuun Sapling-osoitteeseesi. Valitse tämä vaihtoehto lisätäksesi yksityisyyttäsi. - + Shield change from t-Addresses to your sapling address Suojaa vaihtoraha suojaamattomasta osoitteesta suojattuun Sapling-osoitteeseen @@ -2183,6 +2261,14 @@ Sinulla on joko vahvistamattomia varoja tai saldo on liian pieni automaattiseen Saldo (%1) + + ViewKey + + + Viewing Key + + + about diff --git a/res/silentdragon_fil.ts b/res/silentdragon_fil.ts new file mode 100644 index 0000000..50259d9 --- /dev/null +++ b/res/silentdragon_fil.ts @@ -0,0 +1,2256 @@ + + + + + AddressBookModel + + + Label + Tatak + + + + Address + Address + + + + BalancesTableModel + + + Address + Address + + + + Amount + Halaga + + + + ConnectionDialog + + + SilentDragon + SilentDragon + + + + The Dragon Awakens... + Ang Dragon ay Nagising... + + + + MainWindow + + + SilentDragon + SilentDragon + + + + Balance + Balanse + + + + Summary + Buod + + + + Shielded + Naka-shield + + + + Transparent + Transparent + + + + Total + Kabuuan + + + + Some transactions are not yet confirmed + Ang ibang mga transakyon ay hindi pa kumpirmado + + + + Address Balances + Mga Balanse ng mga Address + + + + + Send + Ipadala + + + + From + Galing Sa + + + + Address Balance + Balanse ng Address + + + + Send To + Ipadala sa + + + + Recipient + Tagatanggap + + + + + + + + Address + Address + + + + + Address Book + Libro ng mga Address + + + + + + + Amount + Halaga + + + + Max Available + Pinakamataas na Natitira + + + + Upload File + Mag-upload ng File + + + + + + + Memo + Memo + + + + Add Recipient + Magdagdag ng Tagatanggap + + + + Recurring payment + Paulit-ulit na Bayad + + + + Every month, starting 12-May-2012, for 6 payments + Bawat buwan, simula 12-Mayo-2012, para sa 6 na pagbabayad + + + + Edit Schedule + I-edit ang iskedyul + + + + + Miner Fee + Bayad sa mga Minero + + + + 0 + 0 + + + + Cancel + I-kansela + + + + Receive + Tumanggap + + + + Address Type + Uri ng Address + + + + Shielded Address (Private, Anonymous) + Naka-shield na Address (Pribado, Anonymous) + + + + Transparent Address (Public, Metadata-Leaking) + Transparent na Address (Pampubliko, Nakabunyag ang Metadata) + + + + New Address + Bagong Address + + + + View All Addresses + Tingnan ang Lahat ng Address + + + + Label + Tatak + + + + Update Label + Baguhin ang Tatak + + + + Address balance + Balanse ng Address + + + + Optional + Opsyonal + + + + + Export Private Key + I-export and mga pribadong susi + + + + Transactions + Mga Transaksyon + + + + hushd + hushd + + + + You are currently not mining + Kasalukuyan kang hindi nagmimina + + + + + + + + + + + + + + + + + + + + + + + + + + + Loading... + unfinished + + + + Market + + + + + <html><head/><body><p align="center"><span style=" font-weight:600;">Hush Market Information</span></p></body></html> + + + + + Market Cap + + + + + 24H Volume + + + + + Block height + Height ng Block + + + + Notarized Hash + Naka-notaryong Hash + + + + + + + + + + + + + + + + + + + + | + | + + + + Notarized txid + Naka-notaryong txid + + + + Notarized Lag + Naka-notaryong Lag + + + + KMD Version + Bersyon ng KMD + + + + Protocol Version + Bersyon ng Protokol + + + + Version + Bersyon + + + + P2P Port + Port ng P2P + + + + RPC Port + Port ng RPC + + + + Client Name + Pangalan ng Kliyente + + + + Next Halving + Susunod na Paghahati + + + + Local Services + Lokal na mga Serbisyo + + + + Longest Chain + Pinakamataas na Chain + + + + Wallet Transactions + Mga Transaksyon ng Wallet + + + + Chain Transactions + + + + + Network solution rate + Bilis ng Solusyon sa Network + + + + Connections + Mga Koneksyon + + + + &File + File + + + + &Help + Tulong + + + + &Apps + Mga App + + + + &Edit + I-edit + + + + E&xit + Umalis + + + + &About + About + + + + &Report a bug on Github + + + + + &Settings + Mga Settings + + + + Ctrl+P + Ctrl+P + + + + &Send Duke Feedback + Magpadala ng Katugunan kay Duke + + + + + &Hush Discord + Discord ng Hush + + + + &Hush Website + Website ng Hush + + + + Check github.com for &updates + I-check ang github.com para sa mga update + + + + Sapling &turnstile + Sapling turnstile + + + + Ctrl+A, Ctrl+T + Ctrl+A, Ctrl+T + + + + &Import private key + I-import ang pribadong susi + + + + &Export all private keys + I-export lahat ng pribadong susi + + + + &z-board.net + &z-board.net + + + + Ctrl+A, Ctrl+Z + Ctrl+A, Ctrl+Z + + + + Address &book + Libro ng mga Address + + + + Ctrl+B + Ctrl+B + + + + &Backup wallet.dat + I-backup ang wallet.dat + + + + + Export transactions + I-export ang mga transaksyon + + + + Pay HUSH &URI... + Magbayad ng HUSH URI... + + + + Connect mobile &app + I-connect ang mobile app + + + + Ctrl+M + Ctrl+M + + + + Request HUSH... + Humingi ng HUSH... + + + + Validate Address + Patunayan ang Address + + + Restart + I-restart + + + Please restart SilentDragon to have the theme apply + Mangyaring i-restart ang SilentDragon upang mailapat ang tema + + + + Tor configuration is available only when running an embedded hushd. + Ang konpigurasyon ng Tor ay pwede lamang tuwing nagpapatakbo ng isang naka-embed na hushd + + + + You're using an external hushd. Please restart hushd with -rescan + Gumagamit ka ng eksternal na hushd. Mangyaring i-restart ang hushd gamit ang -rescan + + + + You're using an external hushd. Please restart hushd with -reindex + Gumagamit ka ng eksternal na hushd. Mangyaring i-restart ang hushd gamit ang -reindex + + + + Enable Tor + I-enable ang Tor + + + + Connection over Tor has been enabled. To use this feature, you need to restart SilentDragon. + Ang koneksyon gamit ang Tor ay naka-enable na. Para gamitin ang tampok na ito, kailangan mong i-restart ang SilentDragon + + + + Disable Tor + I-disable ang Tor + + + + Connection over Tor has been disabled. To fully disconnect from Tor, you need to restart SilentDragon. + Ang koneksyon gamit ang Tor ay naka-disable na. Upang ganap na ma-diskonekta sa Tor, kailangan mong i-restart ang SilentDragon + + + SilentDragon needs to restart to rescan/reindex. SilentDragon will now close, please restart SilentDragon to continue + Kailangan mag restart ng SilentDragon para mag scan o index muli. Magsasara na muna ang SilentDragon, mangyaring i-restart lang ang SilentDragon upang magpatuloy. + + + + + Restart SilentDragon + I-restart ang SilentDragon + + + + SilentDragon needs to reindex for zindex. SilentDragon will now close, please restart SilentDragon to continue + + + + + Some feedback about SilentDragon or Hush... + Iilang mga puna tungkol sa SilentDragon o Hush... + + + + Send Duke some private and shielded feedback about + Magpadala kay Duke ng ilang mga pribado o naka-shield na katugunan tungkol + + + + or SilentDragon + o SilentDragon + + + + Enter Address to validate + Ilagay ang Address na dapat i-validate + + + + Transparent or Shielded Address: + Transparent o Naka-shield na Address + + + + Private key import rescan finished + Ang scan muli ng pag import ng pribadong susi ay natapos na + + + + Paste HUSH URI + I-paste ang HUSH URI + + + + Error paying Hush URI + May mali sa pagbayad sa Hush URI + + + + URI should be of the form 'hush:<addr>?amt=x&memo=y + Ang URI ay dapat nasa pormang 'hush:<addr>?amt=x&memo=y + + + + Please paste your private keys here, one per line + Mangyaring i-paste ang iyong mga pribadong susi dito, isa lang kada linya + + + + The keys will be imported into your connected Hush node + Ang mga susi ay mai-import sa iyong konektadong Hush code + + + + The keys were imported! It may take several minutes to rescan the blockchain. Until then, functionality may be limited + Ang mga susi ay na import na! Maaring tumagal ng ilang minuto ang pag scan muli ng blockchain. Hanggang sa matapos ito, maaaring magiging limitado ang pag-andar. + + + + Error + May Mali + + + + Error exporting transactions, file was not saved + May mali sa pag export ng mga transaksyon, ang file ay hindi na save + + + + No wallet.dat + Walang wallet.dat + + + + Couldn't find the wallet.dat on this computer + Hindi mahanap ang wallet.dat sa kompyuter na ito + + + + You need to back it up from the machine hushd is running on + Kailangan mong i-back up galing sa makina kung saan umaandar ang hushd + + + + Backup wallet.dat + Backup wallet.dat + + + + Couldn't backup + Hindi kayang i-backup + + + + Couldn't backup the wallet.dat file. + Hindi kayang i-backup ang wallet.dat na file + + + + You need to back it up manually. + Kailangan mong i-backup ng manu-mano + + + + These are all the private keys for all the addresses in your wallet + Ito ang lahat ng mga pribadong susi para sa lahat ng mga address sa iyong wallet + + + + Private key for + Pribadong susi para sa + + + + + Save File + I-save ang File + + + + Theme Change + + + + + + This change can take a few seconds. + + + + + Currency Change + + + + + SilentDragon needs to restart to rescan,reindex,consolidation or deletetx. SilentDragon will now close, please restart SilentDragon to continue + + + + + + Unable to open file + Hindi mabuksan ang file + + + + + Copy address + Kopyahin ang address + + + + + + Copied to clipboard + Na-kopya na sa clipboard + + + + Get private key + Kunin ang pribadong susi + + + + Get viewing key + + + + + Shield balance to Sapling + I-shield ang balanse papunta sa Sapling + + + + + View on block explorer + Tingnan sa block explorer + + + + Address Asset Viewer + Taga-tingin sa Asset ng Address + + + + Convert Address + I-convert ang Address + + + + Copy txid + Kopyahin ang txid + + + + Copy block explorer link + + + + + View Payment Request + Tingnan ang kahilingan sa pagbayad + + + + View Memo + Tingnan ang Memo + + + + Reply to + Sumagot kay + + + + Created new t-Addr + Lumikha ng bagong t-Addr + + + + Copy Address + Kopyahin ang Address + + + + Address has been previously used + Ang address ay nagamit na dati + + + + Address is unused + Ang address ay hindi pa nagamit + + + + Recipient + Tagatanggap + + + + + File Upload + I-upload ang File + + + + Only z-addresses can have memos + Ang mga z-address lamang ang pwedeng maglaman ng mga memo + + + + File size too large + Ang sukat ng file ay sumobra sa laki + + + + The file size + Ang sukat ng file + + + + bytes is greater than + bytes ay mas malaki kesa sa + + + + bytes + bytes + + + + Memos can only be used with z-addresses + Ang mga memo ay pwede lang gamitin sa mga z-address + + + + The memo field can only be used with a z-address. + + Ang memo field ay pwede lang gamitin gamit ang z-address + + + + +doesn't look like a z-address + mukhang hindi isang z-address + + + + Change from + Palitan mula sa + + + + Current balance : + Kasalukuyang balanse : + + + + Balance after this Tx: + Balanse pagkatapos ng Tx na ito: + + + + Transaction Error + May Mali sa Transaksyon + + + + Please wait... + + + + + Computing your transaction + + + + + Computing transaction: + + + + + Done! + + + + + From Address is Invalid! + + + + Computing Tx: + Kompyuting Tx + + + From Address is Invalid + Ang Address ng Pinanggalingan ay Hindi Wasto + + + + Recipient Address + Address ng Tagatanggap + + + + is Invalid + ay Hindi Wasto + + + + Amount '%1' is invalid! + Ang halaga '%1' ay hindi wasto! + + + + MemoDialog + + + + Memo + Memo + + + + Include Reply Address + Isama ang Reply Address + + + + MemoEdit + + + Reply to + Sumagot kay + + + + MobileAppConnector + + + Connect Mobile App + I-connect ang Mobile App + + + + Scan this QRCode in SilentDragonAndroid to connect your device + I-scan ang QR Code na ito sa SilentDragonAndroid para makonekta ang iyong device + + + + QR Code + QR Code + + + + Connection String + String ng Koneksyon + + + + Allow connections over the internet via SilentDragon wormhole + Payagan ang mga koneksyon galing sa internet sa pamamagitan ng SilentDragon wormhole + + + + SilentDragonAndroid + SilentDragonAndroid + + + + Disconnect + I-diskonekta + + + + + TextLabel + TextLabel + + + + Last seen: + Huling nakita: + + + + Connection type: + Uri ng koneksyon: + + + + PrivKey + + + Private Keys + Pribadong Susi + + + + QObject + + + Pick + Piliin + + + + Address or Label Error + May Mali sa Address o Tatak + + + + Address or Label cannot be empty + Ang address o tatak ay hindi pwedeng walang laman + + + + Address Format Error + May Mali sa Format ng Address + + + + %1 doesn't seem to be a valid Hush address. + mukhang hindi wastong Hush address. + + + + Label Error + May Mali sa Tatak + + + + The label '%1' already exists. Please remove the existing label. + Ang tatak ay nagamit na. Mangyaring pakitanggal ng kasalukuyang label + + + + Import Address Book + I-import ang Libro ng mga Address + + + + Unable to open file + Hindi kinayang buksan ang file + + + + Address Book Import Done + unfinished + + + + Imported %1 new Address book entries + Na-import na %1 ang mga bagong entry sa libro ng mga address + + + + Copy address + Kopyahin ang address + + + + Copied to clipboard + Na-kopya na sa clipboard + + + + Delete label + Burahin ang tatak + + + + Attempting autoconnect + Tinatangkang mag-autoconnect + + + + Starting embedded hushd + Sinisimulan ang embedded na hushd + + + + hushd is set to run as daemon + ang hushd ay nakatakdang tumakbo bilang daemon + + + + Waiting for hushd + Naghihintay sa hushd + + + + You have hushd set to start as a daemon, which can cause problems with SilentDragon + +.Please remove the following line from your HUSH3.conf and restart SilentDragon +daemon=1 + Mayroon kang hushd na nakatakdang magsimula bilang isang daemon, na maaaring maging sanhi ng problema sa SilentDragon + +.Mangyaring alisin ang sumusunod na linya mula sa iyong HUSH3.conf at i-restart ang SilentDragon +daemon=1 + + + + Couldn't start the embedded hushd. + +Please try restarting. + +If you previously started hushd with custom arguments, you might need to reset HUSH3.conf. + +If all else fails, please run hushd manually. + Hindi masimulan ang naka-embed na hushd. + +Mangyaring subukang i-restart. + +Kung dati mo nang sinimulan ang hushd na may custom na mga argumento, maaaring kailangan mong i-reset ang HUSH3.conf. + +Kung nabigo ang lahat, mangyaring manu-manong patakbuhin ang hushd. + + + + The process returned + Bumalik ang proseso + + + + Couldn't connect to hushd configured in HUSH3.conf. + +Not starting embedded hushd because --no-embedded was passed + Hindi makakonekta sa hushd na na-configure sa HUSH3.conf. + +Hindi magsisimula ang naka-embed na hushd dahil - walang naka-embedd na naipasa + + + + Hide Advanced Config + I-tago ang Advanced na Config + + + + Show Advanced Config + Ipakita ang Advanced na Config + + + + Choose data directory + Pumili ng data directory + + + + Could not create HUSH3.conf. + Hindi makalikha ng HUSH3.conf. + + + + All Downloads Finished Successfully! + Lahat ng mga Download ay Matagumpay na Natapos! + + + + Couldn't download params. Please check the help site for more info. + Hindi madownload ang params. Mangyaring i-check ang help site para sa karagdagang impormasyon. + + + + + Downloading + Nagda-download + + + + more remaining ) + natitira + + + + MB of + MB ng + + + + MB at + MB sa + + + + failed. Please check the help site for more info + nabigo. Mangyaring i-check ang help site para sa karagdagang impormasyon + + + + hushd error + may mali sa hushd + + + + A manual connection was requested, but the settings are not configured. + +Please set the host/port and user/password in the Edit->Settings menu. + Hiniling ang isang manu-manong koneksyon, ngunit hindi naka-configure ng tama ang mga settings. + +Mangyaring i-set ang host/port at user/password sa Edit->Settings na menu. + + + + Could not connect to hushd configured in settings. + +Please set the host/port and user/password in the Edit->Settings menu. + Hindi makakonekta sa hushd na naka-configure sa mga settings. + +Mangyaring i-set ang host/port at user/password sa Edit->Settings na menu. + + + + Authentication failed. The username / password you specified was not accepted by hushd. Try changing it in the Edit->Settings menu + May mali sa Authentication. Ang username / password na iyong nilagay ay hindi tinangap ng hushd. Subukang baguhin ito sa Edit->Settings na menu + + + + Your hushd is starting up. Please wait. + Ang iyong hushd ay nagsisimula na. Mangyaring maghintay. + + + + This may take several hours, grab some popcorn + Maaaring tumagal ito ng ilang oras, kumuha ka nalang ng popcorn + + + + + Connection Error + May Mali sa Koneksyon + + + + + Transaction Error + May Mali sa Transaksyon + + + + There was an error! : + Mayroong Mali! : + + + + + No Connection + Walang Koneksyon + + + + Downloading blocks + Nagda-download ng blocks + + + + Block height + Block height + + + + Syncing + Nagsi-sync + + + + Connected + Konektado + + + + testnet: + testnet: + + + + Connected to hushd + Konektado sa hushd + + + + hushd has no peer connections! Network issues? + Walang peer na koneksyon ang hushd! Baka network issue? + + + + There was an error connecting to hushd. The error was + May mali sa pagkonekta sa hushd. Ang pagkakamali ay + + + + transaction computing. + + + + tx computing. This can take several minutes. + Nagco-compute and tx. Maaring tumagal ito ng ilang minuto. + + + + Update Available + Mayroong Update + + + + A new release v%1 is available! You have v%2. + +Would you like to visit the releases page? + May bagong release v%1 na makukuha! Ang nasa iyo ay ang v%2. Gusto mo bang bisitahin ang pahina ng mga release? + + + + No updates available + Walang available na update + + + + You already have the latest release v%1 + Nasa iyo na ang pinakabagong release v%1 + + + + Please enhance your calm and wait for SilentDragon to exit + Mangyaring maging mas kalmado at hintayin ang SilentDragon na mag-exit + + + + Waiting for hushd to exit, y'all + Hinihintay ang hush na mag-exit, y'all + + + Tx + Tx + + + + failed + nabigo + + + + Transaction + + + + + The transaction with id + Ang transaksyon na may id + + + + failed. The error was + Nabigo. Ang pagkakamali ay + + + Tx submitted (right click to copy) txid: + Na submit na ang Tx (I-right click para kopyahin) + + + + Type + Uri + + + + Address + Address + + + + Date/Time + Petsa/Oras + + + + Amount + Halaga + + + + Connected directly + Nakakonekta ng direkta + + + + Connected over the internet via SilentDragon wormhole service + Naka-konekta sa internet sa pamamagitan ng SilenDragon wormhole na serbisyo + + + + Node is still syncing. + Ang node ay nagsi-sync pa. + + + + No addresses with enough balance to spend! Try sweeping funds into one address + Walang address na may sapat na balanse upang gastusin! Subukang ilagay ang mga pondo sa iisang address. + + + + Transaction submitted (right click to copy) txid: + + + + + RecurringDialog + + + Dialog + Diyalogo + + + + Add + Idagdag + + + + Edit + I-edit + + + + Delete + Burahin + + + + RequestDialog + + + Payment Request + Kahilingan ng Pagbabayad + + + + AddressBook + Libro ng mga Address + + + + Request From + Humiling Mula kay + + + + My Address + Aking Address + + + + Amount in + Halaga sa + + + + z address + z address + + + + Amount + Halaga + + + + The recipient will see this address in the "to" field when they pay your request. + Ang tagatanggap ay makakita sa address na ito sa "para kay" na field kapag binayaran nila ang iyong kahilingan. + + + + Amount USD + Halaga sa USD + + + + Memo + Memo + + + + TextLabel + TextLabel + + + + Request payment from a Sapling address. You'll send a HUSH 0.0001 transaction to the address with a HUSH payment URI. The memo will be included in the transaction when the address pays you. + Humiling ng pagbabayad galing sa isang Sapling address. Magpapadala ka ng isang HUSH 0.0001 na transaksyon papunta sa address na may isang HUSH payment URI. Ang memo ay isasama sa transaksyon kapag binayaran ka ng address. + + + + Error paying HUSH URI + May Mali sa pagbabayad sa HUSH URI + + + + URI should be of the form 'hush:<addr>?amt=x&memo=y + Ang URI ay dapat nasa pormang 'hush:<addr>?amt=x&memo=y + + + + Pay To + Magbayad Kay + + + + Pay + Bayad + + + + You are paying a payment request. Your address will not be visible to the person requesting this payment. + Nagbabayad ka sa isang payment request. Ang iyong address ay hindi makikita ng taong humiling ng pagbabayad na ito. + + + + Can only request from Sapling addresses + Makaka-request lang galing sa mga Sapling address + + + + Settings + + + Settings + Mga Settings + + + + hushd connection + koneksyon ng hushd + + + + Host + Host + + + + Port + Port + + + + RPC Username + RPC Username + + + + RPC Password + RPC Password + + + + Options + Mga Opsyon + + + + Theme + Tema + + + + Local Currency + + + + + AED + + + + + ARS + + + + + AUD + + + + + BDT + + + + + BHD + + + + + BMD + + + + + BRL + + + + + BTC + + + + + CAD + + + + + CHF + + + + + CLP + + + + + CNY + + + + + CZK + + + + + DKK + + + + + EUR + + + + + GBP + + + + + HKD + + + + + HUF + + + + + IDR + + + + + ILS + + + + + INR + + + + + JPY + + + + + KRW + + + + + KWD + + + + + LKR + + + + + PKR + + + + + MXN + + + + + NOK + + + + + NZD + + + + + RUB + + + + + SAR + + + + + SEK + + + + + SGD + + + + + THB + + + + + TRY + + + + + TWD + + + + + UAH + + + + + USD + + + + + VEF + + + + + VND + + + + + XAG + + + + + XAU + + + + + ZAR + + + + + default + default + + + + blue + asul + + + + light + liwanag + + + + dark + madilim + + + + Connect via Tor + Kumonekta sa pamamgitan ng Tor + + + + Check github for updates at startup + I-check ang github para sa mga update tuwing pag-bukas + + + + Remember shielded transactions + Tandaan ang mga naka-shield na transaksyon + + + + Normally, change from t-Addresses goes to another t-Address. Checking this option will send the change to your shielded sapling address instead. Check this option to increase your privacy. + Sa pangkaraniwan, ang pagbabago galing sa mga t-Address ay napupunta sa ibang t-Address. Kung iche-check mo ang opsyon na ito, ang pagbabago ay mapapadala sa iyong naka-shield na sapling address sa halip na sa ibang t-Address. I-check ito para madgdagan ang iyong pagka-pribado. + + + + Allow overriding the default fees when sending transactions. Enabling this option may compromise your privacy since fees are transparent. + Payagan ang pag-override ng default na bayarin kung magpapadala ng mga transaksyon. Ang pag-enable ng opsyon na ito ay maaring maging sanhi ng pagka-kompromiso ng iyong pagka-pribado sapagkat ang mga bayarin ay transparent. + + + + Clear History + Burahin ang Historya + + + + Shielded transactions are saved locally and shown in the transactions tab. If you uncheck this, shielded transactions will not appear in the transactions tab. + Ang mga naka-shield na transaksyon ay lokal na naka-save at pinapakita sa tab ng Mga Transaksyon. Kapag ia-uncheck mo ito, ang mga naka-shield na transaksyon ay hindi na lalabas sa tab ng Mga Transaksyon. + + + + Allow custom fees + Payagan ang custom na bayarin + + + + Shield change from t-Addresses to your sapling address + Pagbabago ng Shield mula sa mga T-Address tungo sa iyong sapling address + + + + Connect to the Tor network via SOCKS proxy running on 127.0.0.1:9050. Please note that you'll have to install and run the Tor service externally. + Kumonekta sa network ng TOR sa pamamagitan ng SOCKS proxy na tumatakbo sa 127.0.0.1:9050. Paalala lang na dapat mong i-install at patakbuhin ang serbisyo ng Tor sa labas ng app. + + + + Connect to github on startup to check for updates + Kumonekta sa github simula pagbukas para i-check ang mga update + + + + Connect to the internet to fetch HUSH prices + Kumonekta sa internet para i-fetch ang presyo ng HUSH + + + + Fetch HUSH prices + I-fetch ang presyo ng HUSH + + + + Explorer + Explorer + + + + Tx Explorer URL + URL ng Tx Explorer + + + + Address Explorer URL + unfinished + + + + Testnet Tx Explorer URL + URL ng Testnet Tx Explorer + + + + Testnet Address Explorer URL + URL ng Testnet Address Explorer + + + + Troubleshooting + Pagto-troubleshoot + + + + Reindex + I-index Muli + + + + Rescan the blockchain for any missing wallet transactions and to correct your wallet balance. This may take several hours. You need to restart SilentDragon for this to take effect + I-scan muli ang blockchain para sa anumang nawawalang mga wallet transaksyon at para itama ang balanse sa iyong wallet. Maaaring tumagal ito ng ilang oras. Kailangan mong i-restart and SilentDragon para magkaroon ito ng bisa. + + + + Rescan + I-scan Muli + + + + Rebuild the entire blockchain from the genesis block, by rescanning all the block files. This may take several hours to days, depending on your hardware. You need to restart SilentDragon for this to take effect + Muling itayo ang buong blockchain mula sa genesis block, sa pamamagitan ng pag-scan muli sa lahat ng mga file ng block. Maaaring tumagal ito ng maraming oras hanggang ilang mga araw, depende sa iyong hardware. Kailangan mong i-restart ang SilentDragon para magkaroon ito ng bisa. + + + + This code can greatly reduce the size of wallets and increase performance for service providers. It's designed mostly for exchanges and mining pools but anybody with a large wallet will benefit. + + + + + Enable Old Transaction Deletion + + + + + Consolidation + + + + + Deletetx + + + + + The new experimental Shielded Index (-zindex) which keeps track of many stats that can be seen via the new getchaintxstats RPC. These include shielded payments, anonymity set size and many other things. + + + + + Zindex + + + + + 100 + 100 + + + + Wallet.dat Size : + + + + + MB + + + + + ValidateAddress + + + Validate Address + Patunayan ang Address + + + + TextLabel + TextLabel + + + + Address: + Address: + + + + ValidateAddressesModel + + + Property + Pag-aari + + + + Value + Value + + + + ViewAddressesDialog + + + All Addresses + Lahat ng mga Address + + + + Export All Keys + I-export Lahat ng Susi + + + + ViewAllAddressesModel + + + Address + Address + + + + Balance (%1) + Balanse (%1) + + + + ViewKey + + + Viewing Key + + + + + about + + + About + About + + + + addressBook + + + Address Book + Libro ng mga Address + + + + Add New Address + Magdagdag ng Bagong Address + + + + Address (z-Addr or t-Addr) + Address (z-Addr or t-Addr) + + + + Label + Tatak + + + + Add to Address Book + Idagdag sa Libro ng mga Address + + + + Import Address Book + I-import ang Libro ng mga Address + + + + confirm + + + Confirm Transaction + Kompirmahin ang Transaksyon + + + + From + Galing kay + + + + To + Para kay + + + + hushd doesn't seem to have any peers. You might not be connected to the internet, so this Transaction might not work. + Mukhang ang hushd ay walang peers. Baka hindi ka konektado sa internet, dahil dito baka hindi gumana ang transaksyong ito. + + + + You are sending a transaction while your node is still syncing. This may not work. + Nagpapadala ka ng isang transaksyon habang ang iyong node ay nagsi-sync pa. Maaaring hindi ito gumana. + + + + You are using a custom fee. Since fees are transparent, you are giving up some privacy. Please use this only if you know what you are doing! + Gumagamit ka ng custom na fee. Dahil ang fees ay transparent, sinusuko mo ang iyong pagka pribado. Mangyaring gamitin lamang ito kung alam mo ang iyong ginagawa! + + + + createZcashConf + + + Configure HUSH3.conf + I-configure ang HUSH3.conf + + + + Show Advanced Configuration + Ipakita ang Advanced na Configuration + + + + Your Hush node will be configured for you automatically + Ang iyong Hush node ay ico-configure para saiyo ng awtomatiko + + + + Use custom datadir + Gumamit ng custom na datadir + + + + Please choose a directory to store your wallet.dat and blockchain + Mangyaring pumili ng directory para i-store ang iyong wallet.dat at blockchain + + + + Choose directory + Pumili ng directory + + + + Connect over Tor + Kumonekta sa Tor + + + + Please note that you'll need to already have a Tor service configured on port 9050 + Mangyaring tandaan na kailangan mayroon kang serbisyo sa Tor na naka-configure sa port 9050 + + + + newRecurringDialog + + + Edit Schedule + I-edit ang Skedyul + + + + Schedule + Skedyul + + + + Payment Description + Deskripsyon ng Pagbayad + + + + TextLabel + TextLabel + + + + From + Galing kay + + + + Number of payments + Bilang ng mga Pagbayad + + + + Amount + Halaga + + + + Next Payment + Susunod na Kabayaran + + + + To + Para sa + + + + Memo + Memo + + + diff --git a/res/silentdragon_fr.qm b/res/silentdragon_fr.qm index 0e41203..6ed7c2a 100644 Binary files a/res/silentdragon_fr.qm and b/res/silentdragon_fr.qm differ diff --git a/res/silentdragon_fr.ts b/res/silentdragon_fr.ts index f38518c..e45dea5 100644 --- a/res/silentdragon_fr.ts +++ b/res/silentdragon_fr.ts @@ -77,196 +77,196 @@ Total - + Some transactions are not yet confirmed Certaines transactions ne sont pas encore confirmées - + Address Balances Solde des adresses - - + + Send Envoyer - + From De - + Address Balance Solde de l'adresse - + Send To Envoyer à - + Recipient Destinataire - - - + + + Address Adresse - + Address Book Carnet d'adresses - - + + Amount Montant - + Max Available Maximum disponible - + Upload File Télécharger un fichier - - - + + + Memo Mémo - + Add Recipient Ajouter un destinataire - + Recurring payment Paiement récurrent - + Every month, starting 12-May-2012, for 6 payments Chaque mois, à partir du 12 mai 2012, pour 6 paiements - + Edit Schedule Modifier le calendrier - + Miner Fee I replaced this with "transaction fee" which sounds much better in French.. I hope it's correct too.. Frais de minage - + 0 0 - + Cancel Annuler - + Receive Recevoir - + Address Type Type d'adresse - + Market Marché - + <html><head/><body><p align="center"><span style=" font-weight:600;">Hush Market Information</span></p></body></html> <html><head/><body><p align="center"><span style=" font-weight:600;">Informations sur le marché Hush</span></p></body></html> - + Market Cap Capitalisation boursière - + 24H Volume Volume en 24h - + Local Services Service local - + Longest Chain Chaîne la plus longue - + Wallet Transactions Transactions sur portefeuille - + Chain Transactions Transactions sur la chaîne - + &Report a bug on Github - + &Send Duke Feedback &Envoyer des commentaires à Duke - + &Hush Discord Discord - + &Hush Website Site internet - + Pay HUSH &URI... Envoyer un paiement HUSH - + Validate Address Valider l'adresse @@ -283,33 +283,33 @@ z-Adresse(Sprout) - + New Address Nouvelle Adresse - + Label Etiquette - + Update Label Mettre à jour l'étiquette - + Address balance Solde de l'adresse - + Optional Optionnel - - + + Export Private Key Exporter la clef privée @@ -322,185 +322,186 @@ z-Adresse - + Transactions Transactions - + hushd hushd - + You are currently not mining Vous ne minez pas à présent - - + + + - - - - - - + + + + - - - - - - - - - - - - + + + + + + + + + + + + + + Loading... Chargement... - + Block height Hauteur de block - + Network solution rate Taux de solution du réseau - + Connections Connections - - - - + + + - - - - - - - - - - - - + + + + + + + + + + + + + | | - + Shielded Address (Private, Anonymous) Adresse privée (privée, anonyme) - + Transparent Address (Public, Metadata-Leaking) Adresse transparente (publique, fuites de métadonnées) - + View All Addresses Voir toutes les adresses - + Notarized Hash Hachage notarisé - + Notarized txid Txid Notarisé - + Notarized Lag Lag notarisé - + KMD Version Version KMD - + Protocol Version Version du protocole - + Version Version - + P2P Port Port P2P - + RPC Port Port RPC - + Client Name Nom du client - + Next Halving Prochaine réduction - + &File &Fichier - + &Help &Aide - + &Apps &Applications - + &Edit &Edition - + E&xit Q&uitter - + &About &À propos - + &Settings &Préférences - + Ctrl+P Ctrl+P @@ -509,58 +510,58 @@ &Faire un don - + Check github.com for &updates Vérifier les mises à jour... - + Sapling &turnstile Sapling &turnstile - + Ctrl+A, Ctrl+T Ctrl+A, Ctrl+T - + &Import private key &Importer une clef privée - + &Export all private keys &Exporter toutes les clefs privées - + &z-board.net - - + Ctrl+A, Ctrl+Z Ctrl+A, Ctrl+Z - + Address &book Carnet &d'adresses - + Ctrl+B Ctrl+B - + &Backup wallet.dat &Sauvegarder "wallet.dat" - - + + Export transactions Exporter les transactions @@ -569,52 +570,52 @@ Payer une URI en HUSH - + Connect mobile &app Connection mobile &application - + Ctrl+M Ctrl+M - + Request HUSH... Demander un paiement HUSH - + Tor configuration is available only when running an embedded hushd. La configuration de Tor est disponible uniquement lors de l'exécution du processus hushd intégré. - + You're using an external hushd. Please restart hushd with -rescan Vous utilisez un hushd externe. Veuillez redémarrer hushd avec -rescan - + You're using an external hushd. Please restart hushd with -reindex Vous utilisez un hushd externe. Veuillez redémarrer hushd avec -reindex - + Enable Tor Activer Tor - + Connection over Tor has been enabled. To use this feature, you need to restart SilentDragon. La connection via Tor est activée. Afin d'utiliser cette fonctionnalité, veuillez redémarer SilentDragon. - + Disable Tor Désactiver Tor - + Connection over Tor has been disabled. To fully disconnect from Tor, you need to restart SilentDragon. La connection via Tor a été désactivée. Afin de complètement se déconnecter de Tor, vous devez redémarrer SilentDragon. @@ -647,17 +648,17 @@ Les clefs ont été importées. Cela peut prendre quelque minutes pour rescanner la blockchain. Durant cette période, les fonctionnalités peuvent être limitées - + Private key import rescan finished Rescan de l'import de la clef privée achevé - SilentDragon needs to restart to rescan/reindex. SilentDragon will now close, please restart SilentDragon to continue - SilentDragon doit redémarrer pour rescan/reindex. SilentDragon va maintenant fermer, veuillez redémarrer SilentDragon pour continuer + SilentDragon doit redémarrer pour rescan/reindex. SilentDragon va maintenant fermer, veuillez redémarrer SilentDragon pour continuer - + + Restart SilentDragon Redémarrer SilentDragon @@ -666,12 +667,12 @@ Erreur lors du paiement par URI HUSH - + URI should be of the form 'hush:<addr>?amt=x&memo=y Le format URI doit être comme ceci: 'hush:<addr>?amt=x&memo=y - + Paste HUSH URI Coller le URI HUSH @@ -692,167 +693,184 @@ Les clef seront importées dans votre noeud hushd connecté - + Theme Change Changement de thème - - + + This change can take a few seconds. Ce changement peut prendre quelques secondes. - + Currency Change Changement de devise - + + SilentDragon needs to restart to rescan,reindex,consolidation or deletetx. SilentDragon will now close, please restart SilentDragon to continue + + + + + SilentDragon needs to reindex for zindex. SilentDragon will now close, please restart SilentDragon to continue + + + + Some feedback about SilentDragon or Hush... Quelques commentaires sur SilentDragon ou Hush ... - + Send Duke some private and shielded feedback about Envoyez à Duke des commentaires privés et protégés sur - + or SilentDragon ou SilentDragon - + Enter Address to validate Entrez l'adresse pour valider - + Transparent or Shielded Address: Adresse transparente ou privée: - + Error paying Hush URI Erreur lors du paiement de l'URI - + Please paste your private keys here, one per line Veuillez coller vos clés privées ici, une par ligne - + The keys will be imported into your connected Hush node Les clés seront importées dans votre nœud Hush connecté. - + The keys were imported! It may take several minutes to rescan the blockchain. Until then, functionality may be limited Les clés ont été importées! Une nouvelle analyse de la blockchain peut prendre plusieurs minutes. Durant ce temps, les fonctionnalités peuvent être limitées - + Error Erreur - + Error exporting transactions, file was not saved Erreur lors de l'exportation des transactions. Le fichier n'a pas été sauvegardé. - + No wallet.dat Pas de fichier "wallet.dat" - + Couldn't find the wallet.dat on this computer Impossible de trouver le fichier "wallet.dat" sur cet ordinateur - + You need to back it up from the machine hushd is running on Vous devez effectuer la sauvegarde depuis la machine sur laquelle hushd est en cours d'exécution - + Backup wallet.dat Sauvegarder wallet.dat - + Couldn't backup La sauvegarde n'a pas pu être effectuée - + Couldn't backup the wallet.dat file. Impossible de sauvegarder le fichier "wallet.dat". - + You need to back it up manually. Vous devez le sauvegarder manuellement. - + These are all the private keys for all the addresses in your wallet Ce sont toutes les clés privées pour toutes les adresses de votre portefeuille - + Private key for Clef privée pour - + + Save File Sauvegarder le fichier - + + Unable to open file Impossible d'ouvrir le fichier - - + + Copy address Copier l'adresse - - - + + + Copied to clipboard Copié dans le presse-papier - + Get private key Obtenir la clef privée - + + Get viewing key + + + + Shield balance to Sapling Rendre privé le solde vers Sapling - - + + View on block explorer Voir dans l'explorateur de block - + Address Asset Viewer Addresse Asset Viewer - + Convert Address Adresse convertie @@ -861,47 +879,47 @@ Migrer vers Sapling - + Copy txid Copier l'ID de transaction - + Copy block explorer link Copier le lien de l'explorateur de blocs - + View Payment Request Afficher la demande de paiement - + View Memo Voir le mémo - + Reply to Répondre à - + Created new t-Addr Créée une nouvelle t-Adresse - + Copy Address Copier l'adresse - + Address has been previously used L'adresse a été utilisée précédemment. - + Address is unused L'adresse est inutilisée. @@ -961,7 +979,22 @@ doesn't look like a z-address Cette adresse ne semble pas être de type z-Adresse - + + Please wait... + + + + + Computing your transaction + + + + + Done! + + + + From Address is Invalid! L'adresse de l'expéditeur n'est pas valide! @@ -990,7 +1023,7 @@ Cette adresse ne semble pas être de type z-Adresse Erreur de transaction - + Computing transaction: Transaction en cours : @@ -999,17 +1032,17 @@ Cette adresse ne semble pas être de type z-Adresse L'adresse de l'émetteur est invalide - + Recipient Address Adresse du destinataire - + is Invalid est invalide - + Amount '%1' is invalid! Le montant '%1' est invalide. @@ -1113,27 +1146,27 @@ Cette adresse ne semble pas être de type z-Adresse QObject - + Attempting autoconnect Tentative de connection automatique - + Starting embedded hushd Démarrage de hushd intégré - + hushd is set to run as daemon hushd est configuré pour s'exécuter en tant que démon - + Waiting for hushd En attente de hushd - + You have hushd set to start as a daemon, which can cause problems with SilentDragon .Please remove the following line from your HUSH3.conf and restart SilentDragon @@ -1160,44 +1193,44 @@ Si vous avez précédemment démarré hushd avec des arguments, vous devrez peut Si tout échoue, exécutez hushd manuellement. - + Couldn't connect to hushd configured in HUSH3.conf. Not starting embedded hushd because --no-embedded was passed Le démarrage de hushd n'a pas eu lieu car l'argument --no-embedded a été utilisé au lancement - + Hide Advanced Config Masquer la configuration avancée - + Show Advanced Config Afficher la configuration avancée - + Choose data directory Choisir le répertoire de données - + All Downloads Finished Successfully! Tous les téléchargements sont terminés avec succès ! - + Couldn't download params. Please check the help site for more info. Impossible de télécharger les paramètres. Veuillez vous rendre sur le site d'aide pour plus d'informations. - + The process returned Le processus a renvoyé - + Couldn't start the embedded hushd. Please try restarting. @@ -1214,83 +1247,83 @@ If all else fails, please run hushd manually. Si tout échoue, veuillez exécuter hushd manuellement. - + Could not create HUSH3.conf. Impossible de créer le fichier HUSH3.conf. - - + + Downloading Téléchargement en cours - + more remaining ) restant) - + MB of MB de - + MB at MB à - + This may take several hours, grab some popcorn Cela peut prendre plusieurs heures. Prenez du pop-corn - + There was an error! : Il y avait une erreur! : - + Downloading blocks Blocs en cours de téléchargement - + Block height Hauteur des blocs - + Syncing Synchronisation - + Connected Connecté - + testnet: réseau test: - + Connected to hushd Connecté à hushd - + transaction computing. transaction en cours. - + Please enhance your calm and wait for SilentDragon to exit Veuillez restez calme et attendre la fermeture de SilentDragon - + Waiting for hushd to exit, y'all Veuillez atendre que hushd soit arrêté, vous tous @@ -1299,27 +1332,27 @@ If all else fails, please run hushd manually. hushd n'a aucune connexion à un pair - + There was an error connecting to hushd. The error was Une erreur est survenue lors de la connection à hushd. L'erreur est - + Transaction Transaction - + The transaction with id La transaction avec ID - + failed. The error was a échoué. L'erreur était - + failed a échoué @@ -1328,7 +1361,7 @@ If all else fails, please run hushd manually. Tx - + hushd has no peer connections! Network issues? hushd n'a pas de connexion entre pairs! Problèmes de réseau? @@ -1337,24 +1370,24 @@ If all else fails, please run hushd manually. tx en cours de calcul. Ceci peut prendre quelques minutes. - + Update Available MàJ disponible - + A new release v%1 is available! You have v%2. Would you like to visit the releases page? Voulez-vous visiter la page des nouvelles versions ? - + No updates available Pas de MàJ disponible - + You already have the latest release v%1 Vous utilisez déjà la dernière version v%1 @@ -1367,17 +1400,17 @@ Would you like to visit the releases page? Attente de la fermeture de hushd - + failed. Please check the help site for more info a échoué. Veuillez vous rendre sur le site d'aide pour plus d'info - + hushd error erreur hushd - + A manual connection was requested, but the settings are not configured. Please set the host/port and user/password in the Edit->Settings menu. @@ -1386,7 +1419,7 @@ Please set the host/port and user/password in the Edit->Settings menu. - + Could not connect to hushd configured in settings. Please set the host/port and user/password in the Edit->Settings menu. @@ -1395,24 +1428,24 @@ Please set the host/port and user/password in the Edit->Settings menu. - + Authentication failed. The username / password you specified was not accepted by hushd. Try changing it in the Edit->Settings menu Authentification échouée. Le nom d'utilisateur / mot de passe que vous avez spécifié n'a pas été accepté par hushd. Essayez de le changer dans le menu Edition-> Préférences - + Your hushd is starting up. Please wait. Votre hushd est en cours de démarrage. Veuillez patienter. - - + + Connection Error Erreur de connection - - + + Transaction Error Erreur de transaction @@ -1421,8 +1454,8 @@ Veuillez configurer l'hôte/port et utilisateur/mot de passe dans le menu E Une erreur est survenue en envoyant la transaction. L'erreur est: - - + + No Connection Pas de connection @@ -1549,12 +1582,12 @@ Vous avez soit des fonds non confirmés soit le solde est trop petit pour une mi Connecté sur Internet via le service SilentDragon Wormhole - + Node is still syncing. Le nœud est toujours en cours de synchronisation. - + No addresses with enough balance to spend! Try sweeping funds into one address Pas d'adresses avec assez de fonds à dépenser! Essayez de réunir des fonds en une seule adresse @@ -1722,17 +1755,17 @@ Vous avez soit des fonds non confirmés soit le solde est trop petit pour une mi Options - + Check github for updates at startup Vérifiez les mises à jour sur Github au démarrage - + Connect to the Tor network via SOCKS proxy running on 127.0.0.1:9050. Please note that you'll have to install and run the Tor service externally. Se connecter au réseau Tor via le proxy SOCKS en cours d'exécution sur 127.0.0.1:9050. Veuillez noter que vous devrez installer et exécuter le service Tor en externe. - + Shielded transactions are saved locally and shown in the transactions tab. If you uncheck this, shielded transactions will not appear in the transactions tab. Les transactions protégées sont enregistrées localement et affichées dans l'onglet transactions. Si vous décochez cette case, les transactions protégées n'apparaîtront pas dans l'onglet des transactions. @@ -1742,342 +1775,387 @@ Vous avez soit des fonds non confirmés soit le solde est trop petit pour une mi Thème - + Local Currency Devise locale - + AED - + ARS - + AUD - + BDT - + BHD - + BMD - + BRL - + BTC - + CAD - + CHF - + CLP - + CNY - + CZK - + DKK - + EUR - + GBP - + HKD - + HUF - + IDR - + ILS - + INR - + JPY - + KRW - + KWD - + LKR - + PKR - + MXN - + NOK - + NZD - + RUB - + SAR - + SEK - + SGD - + THB - + TRY - + TWD - + UAH - + USD - + VEF - + VND - + XAG - + XAU - + ZAR - + default défaut - + blue Bleu - + light Calire - + dark Sombre - + Connect via Tor Se connecter via Tor - + Connect to github on startup to check for updates Connection à github au démarrage pour vérifier les mises à jour - + Connect to the internet to fetch HUSH prices Connection à Internet pour consulter les prix de HUSH - + Fetch HUSH prices Consulter les prix HUSH - + Explorer Explorer - + Tx Explorer URL URL Tx Explorer - + Address Explorer URL URL Address Explorer - + Testnet Tx Explorer URL URL Testnet Tx Explorer - + Testnet Address Explorer URL URL Testnet Address Explorer - + Troubleshooting Anomalies - + Reindex Reindex - + Rescan the blockchain for any missing wallet transactions and to correct your wallet balance. This may take several hours. You need to restart SilentDragon for this to take effect Rescanner la blockchain pour détecter toute transaction de portefeuille manquante et corriger le solde de votre portefeuille. Cela peut prendre plusieurs heures. Vous devez redémarrer SilentDragon pour que cela prenne effet - + Rescan Rescan - + Rebuild the entire blockchain from the genesis block, by rescanning all the block files. This may take several hours to days, depending on your hardware. You need to restart SilentDragon for this to take effect Reconstruisez l'intégralité de la blockchain à partir du bloc genesis en analysant à nouveau tous les fichiers de bloc. Cela peut prendre plusieurs heures à plusieurs jours selon votre matériel. Vous devez redémarrer SilentDragon pour que cela prenne effet - + + This code can greatly reduce the size of wallets and increase performance for service providers. It's designed mostly for exchanges and mining pools but anybody with a large wallet will benefit. + + + + + Enable Old Transaction Deletion + + + + + Consolidation + + + + + Deletetx + + + + + The new experimental Shielded Index (-zindex) which keeps track of many stats that can be seen via the new getchaintxstats RPC. These include shielded payments, anonymity set size and many other things. + + + + + Zindex + + + + + 100 + 100 + + + + Wallet.dat Size : + + + + + MB + + + + Clear History Effacer l'historique - + Remember shielded transactions Se souvenir des transactions privées - + Allow custom fees Permettre les frais personnalisés - + Allow overriding the default fees when sending transactions. Enabling this option may compromise your privacy since fees are transparent. Permettre le changement des frais par défaut lors de l'envoi de transactions. L'activation de cette option peut compromettre votre confidentialité car les frais sont transparents. - + Normally, change from t-Addresses goes to another t-Address. Checking this option will send the change to your shielded sapling address instead. Check this option to increase your privacy. Normalement, le changement d'une adresse-t se fait à une autre adresse-t. Sélectionnez cette option enverra le change à votre adresse privée Sapling à la place. Cochez cette option pour augmenter votre vie privée. - + Shield change from t-Addresses to your sapling address Rendre privé le changement de la t-Adresse vers la z-Adresse @@ -2201,6 +2279,14 @@ Vous avez soit des fonds non confirmés soit le solde est trop petit pour une mi Solde (%1) + + ViewKey + + + Viewing Key + + + about diff --git a/res/silentdragon_hr.qm b/res/silentdragon_hr.qm index 5c26e1a..cbc0f34 100644 Binary files a/res/silentdragon_hr.qm and b/res/silentdragon_hr.qm differ diff --git a/res/silentdragon_hr.ts b/res/silentdragon_hr.ts index fb9b038..8bf429c 100644 --- a/res/silentdragon_hr.ts +++ b/res/silentdragon_hr.ts @@ -73,480 +73,481 @@ Ukupno - + Some transactions are not yet confirmed Neke transakcije još nisu potvrđene - + Address Balances Saldo na adresi - - + + Send Slati - + From Od - + Address Balance Saldo na adresi - + Send To Poslati na - + Recipient Primatelj - - - + + + Address Adresa - + Address Book Adresar - - + + Amount Količina - + Max Available Max dostupno - + Upload File Upload datoteke - - - + + + Memo Poruka (memo) - + Add Recipient Dodaj primatelja - + Recurring payment Ponavljajuće plaćanje - + Every month, starting 12-May-2012, for 6 payments Svaki mjesec, od 12 Svibnja 2012, u 6 rata - + Edit Schedule Uredi raspored - + Miner Fee Naknada za rudarenje - + 0 0 - + Cancel Odustani - + Receive Primiti - + Address Type Vrsta adrese - + Shielded Address (Private, Anonymous) Zaštićena adresa (Privatna, Anonimna) - + Transparent Address (Public, Metadata-Leaking) Transparentna adresa (Javno, Curenje Metadata) - + New Address Nova adresa - + View All Addresses Pogledaj sve adrese - + Label Oznaka - + Update Label Ažuriraj oznaku - + Address balance Saldo na adresi - + Optional Opcionalno - - + + Export Private Key Izvoz privatnog ključa - + Transactions Transakcije - + hushd hushd - + You are currently not mining Trenutno ne rudarite - - + + + - - - - - - + + + + - - - - - - - - - - - - + + + + + + + + + + + + + + Loading... Učitavanje... - + Market - + <html><head/><body><p align="center"><span style=" font-weight:600;">Hush Market Information</span></p></body></html> - + Market Cap - + 24H Volume - + Block height Visina bloka - + Notarized Hash Potvrđen hash - - - - + + + - - - - - - - - - - - - + + + + + + + + + + + + + | | - + Notarized txid Potvrđen txid - + Notarized Lag Potvrđeno kašnjenje - + KMD Version KMD verzija - + Protocol Version Verzija protokola - + Version Verzija - + P2P Port P2P port - + RPC Port RPC port - + Client Name Ime klijenta - + Next Halving Slijedeći halving - + Local Services Lokalni servisi - + Longest Chain Najduži niz - + Wallet Transactions Transakcije u novčaniku - + Chain Transactions - + Network solution rate Snaga mreže - + Connections Povezanost - + &File &Datoteka - + &Help &Pomoć - + &Apps &Apps - + &Edit &Uredi - + E&xit &Izlaz - + &About &O - + &Report a bug on Github - + &Settings &Postavke - + Ctrl+P Ctrl+P - + &Send Duke Feedback &Pošalji Duke Feedback - + &Hush Discord &Hush Discord - + &Hush Website &Hush Web stranica - + Check github.com for &updates Provjeri na github.com &dopune - + Sapling &turnstile Sapling &čvorište - + Ctrl+A, Ctrl+T Ctrl+A, Ctrl+T - + &Import private key &Uvoz privatnog ključa - + &Export all private keys &Izvoz svih privatnih ključeva - + &z-board.net &z-board.net - + Ctrl+A, Ctrl+Z Ctrl+A, Ctrl+Z - + Address &book Adresna &knjiga - + Ctrl+B Ctrl+B - + &Backup wallet.dat &Sigurnosna kopija wallet.dat - - + + Export transactions Izvoz transakcija - + Pay HUSH &URI... Hush plaćanje &URI... - + Connect mobile &app Spoji mobilnu &app - + Ctrl+M Ctrl+M - + Request HUSH... Zatraži HUSH... - + Validate Address Potvrdi adresu @@ -559,272 +560,289 @@ Molim ponovno pokrenite SilentDragon kako bi primjenili temu - + Theme Change - - + + This change can take a few seconds. - + Currency Change - + Tor configuration is available only when running an embedded hushd. Tor postavke su dostupne samo ako je pokrenut integrirani hushd. - + You're using an external hushd. Please restart hushd with -rescan Koristite vanjski hushd. Molimo ponovno pokrenite hushd sa -rescan - + You're using an external hushd. Please restart hushd with -reindex Koristite vanjski hushd. Molimo ponovno pokrenite hushd sa -reindex - + Enable Tor Omogući Tor - + Connection over Tor has been enabled. To use this feature, you need to restart SilentDragon. Veza putem Tora je omogućena. Ako želite koristiti ovu značajku, morate ponovno pokrenuti SilentDragon. - + Disable Tor Onemogući Tor - + Connection over Tor has been disabled. To fully disconnect from Tor, you need to restart SilentDragon. Veza putem Tora je onemogućena. Ako se želite potpuno maknuti sa Tora, morate ponovno pokrenuti SilentDragon. - SilentDragon needs to restart to rescan/reindex. SilentDragon will now close, please restart SilentDragon to continue - SilentDragon se mora ponovno pokrenuti za rescan/reindex. SilentDragon će se sada zatvoriti, molimo ponovno pokrenite SilentDragon za nastavak + SilentDragon se mora ponovno pokrenuti za rescan/reindex. SilentDragon će se sada zatvoriti, molimo ponovno pokrenite SilentDragon za nastavak - + + Restart SilentDragon Ponovno pokrenite SilentDragon - + + SilentDragon needs to reindex for zindex. SilentDragon will now close, please restart SilentDragon to continue + + + + Some feedback about SilentDragon or Hush... Neke povratne informacije o SilentDragonu ili Hushu... - + Send Duke some private and shielded feedback about Pošaljite Duke privatnu i zaštićenu povratnu informaciju o - + or SilentDragon ili SilentDragon - + Enter Address to validate Unesite adresu za potvrdu - + Transparent or Shielded Address: Transparentna ili Zaštićena adresa: - + Private key import rescan finished Dovršen rescan uvoza privatnog ključa - + Paste HUSH URI Zalijepi HUSH URI - + Error paying Hush URI Greška prilikom plaćanja Hush URI - + URI should be of the form 'hush:<addr>?amt=x&memo=y URI treba biti formata 'hush:<addr>?amt=x&memo=y - + Please paste your private keys here, one per line Molim vas zalijepite vaše privatne ključeve ovdje, jedan ključ po redu - + The keys will be imported into your connected Hush node Ključevi će biti unešeni u vaš povezani Hush čvor - + The keys were imported! It may take several minutes to rescan the blockchain. Until then, functionality may be limited Ključevi su unešeni. Rescan blockchaina može potrajati i do nekoliko minuta. Do tada su limitirane funkcionalnosti - + Error Greška - + Error exporting transactions, file was not saved Greška prilikom izvoza transakcija, datoteka nije spremljena - + No wallet.dat Nema wallet.dat - + Couldn't find the wallet.dat on this computer Ne mogu pronaći wallet.dat na ovom računalu - + You need to back it up from the machine hushd is running on Morate napraviti sigurnosnu kopiju na računalu na kojem je aktivan hushd - + Backup wallet.dat Sigurnosna kopija wallet.dat - + Couldn't backup Nije moguće napraviti sigurnosnu kopiju - + Couldn't backup the wallet.dat file. Nije moguće napraviti sigurnosnu kopiju wallet.dat datoteke. - + You need to back it up manually. Morate ručno napraviti sigurnosnu kopiju. - + These are all the private keys for all the addresses in your wallet Ovo su svi privatni ključevi svih adresa u vašem novčaniku - + Private key for Privatni ključ za - + + Save File Spremi datoteku - + + SilentDragon needs to restart to rescan,reindex,consolidation or deletetx. SilentDragon will now close, please restart SilentDragon to continue + + + + + Unable to open file Nije moguće otvoriti datoteku - - + + Copy address Kopirajte adresu - - - + + + Copied to clipboard Kopirano u mađuspremnik - + Get private key Dobavi privatni ključ - + + Get viewing key + + + + Shield balance to Sapling Zaštiti saldo u Sapling - - + + View on block explorer Pogledaj na blok exploreru - + Address Asset Viewer Preglednik adresa - + Convert Address Pretvorite adresu - + Copy txid Kopitajte txid - + Copy block explorer link - + View Payment Request Pogledajte zahtjev o plaćanju - + View Memo Pogledajte poruku (memo) - + Reply to Odgovorite - + Created new t-Addr Napravljena je nova transparentna adresa - + Copy Address Kopirajte adresu - + Address has been previously used Adresa je već korištena - + Address is unused Adresa nije korištena @@ -904,12 +922,27 @@ ne izgleda kao z-adresa Greška u transakciji - + + Please wait... + + + + + Computing your transaction + + + + Computing transaction: - + + Done! + + + + From Address is Invalid! @@ -922,17 +955,17 @@ ne izgleda kao z-adresa Neispravna adresa pošaljitelja - + Recipient Address Adresa primatelja - + is Invalid je neispravna - + Amount '%1' is invalid! Iznos '%1' je neispravan! @@ -1094,27 +1127,27 @@ ne izgleda kao z-adresa Izbrišite oznaku - + Attempting autoconnect Pokušaj automatskog spajanja - + Starting embedded hushd Pokrećem integrirani hushd - + hushd is set to run as daemon hushd je pokrenut u pozadini - + Waiting for hushd Čekam hushd - + You have hushd set to start as a daemon, which can cause problems with SilentDragon .Please remove the following line from your HUSH3.conf and restart SilentDragon @@ -1125,7 +1158,7 @@ daemon=1 deamon=1 - + Couldn't start the embedded hushd. Please try restarting. @@ -1142,12 +1175,12 @@ Ako ste već pokrenuli hushd sa prilagođenim argumentima, možda je potrebno po Ako ništa drugo ne uspije, molimo pokrenite hushd ručno. - + The process returned Proces je odgovorio - + Couldn't connect to hushd configured in HUSH3.conf. Not starting embedded hushd because --no-embedded was passed @@ -1156,68 +1189,68 @@ Not starting embedded hushd because --no-embedded was passed Ne pokrećem integrirani hushd jer --no-embedded nije prilagođen - + Hide Advanced Config Sakrij naprednu konfiguraciju - + Show Advanced Config Prikaži naprednu konfiguraciju - + Choose data directory Izaberi popis datoteka - + Could not create HUSH3.conf. Nije moguće napraviti HUSH3.conf. - + All Downloads Finished Successfully! Sva preuzimanja su uspješno završena! - + Couldn't download params. Please check the help site for more info. Nije moguće preuzeti parametre. Za više informacija provjerite na stranici Pomoć. - - + + Downloading Preuzimanje - + more remaining ) još preostaje ) - + MB of Mb od - + MB at MB uz - + failed. Please check the help site for more info neuspješno. Za više informacija provjerite na stranici Pomoć - + hushd error hushd greška - + A manual connection was requested, but the settings are not configured. Please set the host/port and user/password in the Edit->Settings menu. @@ -1226,7 +1259,7 @@ Please set the host/port and user/password in the Edit->Settings menu. - + Could not connect to hushd configured in settings. Please set the host/port and user/password in the Edit->Settings menu. @@ -1235,85 +1268,85 @@ Please set the host/port and user/password in the Edit->Settings menu. - + Authentication failed. The username / password you specified was not accepted by hushd. Try changing it in the Edit->Settings menu Autorizacija neuspješna. Hushd nije prihvatio korisničko ime / lozinku koju ste unijeli. Pokušajte to promijeniti u Uredi->Postavke meniju - + Your hushd is starting up. Please wait. Hushd se pokreće. Molimo pričekajte. - + This may take several hours, grab some popcorn Ovo može potrajati nekoliko sati, donesite si kokice - - + + Connection Error Greška sa vezom - - + + Transaction Error Greška u transakciji - + There was an error! : Dogodila se greška! : - - + + No Connection Nema veze - + Downloading blocks Preuzimam blokove - + Block height Visina bloka - + Syncing Sinkroniziranje - + Connected Spojeno - + testnet: testnet: - + Connected to hushd Spojeno na hushd - + hushd has no peer connections! Network issues? hushd nema vezu sa točkama na istoj razini! Možda imate problem sa mrežom? - + There was an error connecting to hushd. The error was Pojavila se greška prilikom spajanja na hushd. Greška je - + transaction computing. @@ -1322,12 +1355,12 @@ Molimo postavite host/port i korisnčko ime/lozinku u Uredi->Postavke meniju. tx proračun. Ovo može potrajati nekoliko minuta. - + Update Available Dostupno ažuriranje - + A new release v%1 is available! You have v%2. Would you like to visit the releases page? @@ -1336,22 +1369,22 @@ Would you like to visit the releases page? Želite li posjetiti stranicu sa izadnjima? - + No updates available Nema dostupnih ažuriranja - + You already have the latest release v%1 Već imate najnovije izdanje v%1 - + Please enhance your calm and wait for SilentDragon to exit Molimo pokušajte se strpiti i pričekajte da se SilentDragon zatvori - + Waiting for hushd to exit, y'all Pričekajte da hushd završi @@ -1360,22 +1393,22 @@ Would you like to visit the releases page? Tx - + failed neuspjelo - + Transaction - + The transaction with id Transakcija sa ID - + failed. The error was nesupjela. Greška je @@ -1414,12 +1447,12 @@ Would you like to visit the releases page? Spojeno preko Interneta putem SilentDragon usluge crvotočine - + Node is still syncing. Čvor se još uvijek sinkronizira. - + No addresses with enough balance to spend! Try sweeping funds into one address Ne možete trošiti jer nema adrese sa dovoljnim saldom. Pokušajte prebaciti sva sredstva na jednu adresu @@ -1588,360 +1621,405 @@ Would you like to visit the releases page? Teme - + Local Currency - + AED - + ARS - + AUD - + BDT - + BHD - + BMD - + BRL - + BTC - + CAD - + CHF - + CLP - + CNY - + CZK - + DKK - + EUR - + GBP - + HKD - + HUF - + IDR - + ILS - + INR - + JPY - + KRW - + KWD - + LKR - + PKR - + MXN - + NOK - + NZD - + RUB - + SAR - + SEK - + SGD - + THB - + TRY - + TWD - + UAH - + USD - + VEF - + VND - + XAG - + XAU - + ZAR - + default početno - + blue plavo - + light svijetlo - + dark tamno - + Connect via Tor Spojite se putem Tora - + Check github for updates at startup Prilikom pokretanja provjetite ažuriranja na githubu - + Remember shielded transactions Zapamtite zaštičene transakcije - + Normally, change from t-Addresses goes to another t-Address. Checking this option will send the change to your shielded sapling address instead. Check this option to increase your privacy. Uobičajeno, razlike se sa jedne t-adrese šalju na drugu t-adresu. Ako odaberete ovu opciju razlika će se poslati na vašu zaštićenu sapling adresu. Odaberite ovu opciju ako želite povećati privatnost. - + Allow overriding the default fees when sending transactions. Enabling this option may compromise your privacy since fees are transparent. Dopusti da se zaobiđu početno postavljene naknade prilikom slanja transakcije. Ako odaberete ovu opciju vaša privatnost će biti narušena jer su maknade transparentne. - + Clear History Obriši povijest - + Shielded transactions are saved locally and shown in the transactions tab. If you uncheck this, shielded transactions will not appear in the transactions tab. Zaštičene transakcije se spremaju lokalno i prikazane su u kartici transakcija. Ako ne odaberete ovo, zaštičene transakcije se neće pojaviti u kartici transakcija. - + Allow custom fees Dopusti prilagodbu naknada - + Shield change from t-Addresses to your sapling address Zaštiti razliku sa t-adrese na sapling adresu - + Connect to the Tor network via SOCKS proxy running on 127.0.0.1:9050. Please note that you'll have to install and run the Tor service externally. Spojite se na Tor mrežu putem SOCKS proxy na 127.0.0.1:9050. Molim vas uzmite u obzir da ćete morati izvana instalirati Tor uslugu. - + Connect to github on startup to check for updates Prilikom pokretanja provjerite ažuriranja na githubu - + Connect to the internet to fetch HUSH prices Spojite se na Internet kako bi dohvatili HUSH cijene - + Fetch HUSH prices Dohvati HUSH cijene - + Explorer Preglednik - + Tx Explorer URL Tx preglednik URL - + Address Explorer URL Preglednik adresa URL - + Testnet Tx Explorer URL Testnet Tx Preglednik URL - + Testnet Address Explorer URL Testnet preglednika adresa URL - + Troubleshooting Otklanjanje problema - + Reindex Reindex - + Rescan the blockchain for any missing wallet transactions and to correct your wallet balance. This may take several hours. You need to restart SilentDragon for this to take effect Rescan blockchaina ako vam nedostaju transakcije ili ako je krivi saldo u novčaniku. To može potrajati nekoliko sati. Kako bi imalo učinka morate ponovno poktenuti SilentDragon - + Rescan Rescan - + Rebuild the entire blockchain from the genesis block, by rescanning all the block files. This may take several hours to days, depending on your hardware. You need to restart SilentDragon for this to take effect Izgradite cijeli blockchain iz prvog (genesis) bloka sa rescanom svih datoteka. Ovo bi moglo potrajati nekoliko sati do nekoliko dana ovisno o jačini vašeg računala. Kako bi imalo učinka morate ponovno pokrenuti SilentDragon + + + This code can greatly reduce the size of wallets and increase performance for service providers. It's designed mostly for exchanges and mining pools but anybody with a large wallet will benefit. + + + + + Enable Old Transaction Deletion + + + + + Consolidation + + + + + Deletetx + + + + + The new experimental Shielded Index (-zindex) which keeps track of many stats that can be seen via the new getchaintxstats RPC. These include shielded payments, anonymity set size and many other things. + + + + + Zindex + + + + + 100 + 100 + + + + Wallet.dat Size : + + + + + MB + + ValidateAddress @@ -2000,6 +2078,14 @@ Would you like to visit the releases page? Saldo (%1) + + ViewKey + + + Viewing Key + + + about diff --git a/res/silentdragon_id.ts b/res/silentdragon_id.ts new file mode 100644 index 0000000..83d15d4 --- /dev/null +++ b/res/silentdragon_id.ts @@ -0,0 +1,2251 @@ + + + + + AddressBookModel + + + Label + Label + + + + Address + Alamat + + + + BalancesTableModel + + + Address + Alamat + + + + Amount + Jumlah + + + + ConnectionDialog + + + SilentDragon + SilentDragon + + + + The Dragon Awakens... + The Dragon Awakens + + + + MainWindow + + + SilentDragon + SilentDragon + + + + Balance + Saldo + + + + Summary + Ringkasan + + + + Shielded + Terlindungi + + + + Transparent + Transparan + + + + Total + Total + + + + Some transactions are not yet confirmed + Beberapa transaksi belum terkonfirmasi + + + + Address Balances + Saldo Alamat + + + + + Send + Kirim + + + + From + Dari + + + + Address Balance + Saldo Alamat + + + + Send To + Kirim Ke + + + + Recipient + Penerima + + + + + + + + Address + Alamat + + + + + Address Book + Buku Alamat + + + + + + + Amount + Jumlah + + + + Max Available + Maks Tersedia + + + + Upload File + Upload Berkas + + + + + + + Memo + Memo + + + + Add Recipient + Tambah Penerima + + + + Recurring payment + Pembayaran Berulang + + + + Every month, starting 12-May-2012, for 6 payments + Setiap bulan, Dimulai dari 12-May-2012, Untuk 6 Pembayaran + + + + Edit Schedule + Edit Jadwal + + + + + Miner Fee + Biaya Penambang + + + + 0 + 0 + + + + Cancel + Batal + + + + Receive + Terima + + + + Address Type + Tipe Alamat + + + + Shielded Address (Private, Anonymous) + Alamat Terlindungi (Privat, Anonim) + + + + Transparent Address (Public, Metadata-Leaking) + Alamat Transparan + + + + New Address + Alamat Baru + + + + View All Addresses + Lihat Semua Alamat + + + + Label + Label + + + + Update Label + Perbarui Label + + + + Address balance + Saldo Alamat + + + + Optional + Opsional + + + + + Export Private Key + Ekspor Kunci Privat + + + + Transactions + Transaksi + + + + Market + + + + + <html><head/><body><p align="center"><span style=" font-weight:600;">Hush Market Information</span></p></body></html> + + + + + Market Cap + + + + + 24H Volume + + + + + hushd + hushd + + + + You are currently not mining + Anda saat ini tidak sedang menambang + + + + E&xit + + + + + + + + + + + + + + + + + + + + + + + + + + + + Loading... + Memuat... + + + + Block height + Tinggi blok + + + + Notarized Hash + Hash Yang Disahkan + + + + + + + + + + + + + + + + + + + + | + | + + + + Notarized txid + Txid yang disahkan + + + + Notarized Lag + Lag yang disahkan + + + + KMD Version + Versi KMD + + + + Protocol Version + Versi Protokol + + + + Version + Versi + + + + P2P Port + Port P2P + + + + RPC Port + Port RPC + + + + Client Name + Nama Klien + + + + Next Halving + Berikutnya Separuh + + + + Local Services + Servis Lokal + + + + Longest Chain + Rantai Terpanjang + + + + Wallet Transactions + Transaksi Dompet + + + + Chain Transactions + + + + + Network solution rate + Tingkat Solusi Jaringan + + + + Connections + Koneksi + + + + &File + &Berkas + + + + &Help + &Bantuan + + + + &Apps + &Aplikasi + + + + &Edit + &Edit + + + &Exit + Keluar + + + + &About + &Tentang + + + + &Report a bug on Github + + + + + &Settings + &Pengaturan + + + + Ctrl+P + Ctrl+P + + + + &Send Duke Feedback + &Kirim Umpan Balik Duke + + + + &Hush Discord + &Discord hush + + + + &Hush Website + &Website Hush + + + + Check github.com for &updates + Cek github.com untuk &Perbarui + + + + Sapling &turnstile + Sapling &Pagar Putar + + + + Ctrl+A, Ctrl+T + Ctrl+A, Ctrl+T + + + + &Import private key + &Impor Kunci Privat + + + + &Export all private keys + &Ekspor Semua Kunci Privat + + + + &z-board.net + &z-board.net + + + + Ctrl+A, Ctrl+Z + Ctrl+A, Ctrl+Z + + + + Address &book + &Buku Alamat + + + + Ctrl+B + Ctrl+B + + + + &Backup wallet.dat + &Dompet Cadangan.dat + + + + + Export transactions + Ekspor Transaksi + + + + Pay HUSH &URI... + Bayar HUSH &URI + + + + Connect mobile &app + Sambungkan Ponsel &aplikasi + + + + Ctrl+M + Ctrl+M + + + + Request HUSH... + Meminta HUSH + + + + Validate Address + Validasi Alamat + + + Restart + Mulai Ulang + + + Please restart SilentDragon to have the theme apply + Tolong mulai ulang SilentDragon untuk mengaplikasikan tema + + + + Tor configuration is available only when running an embedded hushd. + Konfigurasi Tor hanya tersedia saat menjalankan hushd tertanam + + + + You're using an external hushd. Please restart hushd with -rescan + Anda sedang menggunakan hush eksternal. Tolong mulai ulang hushd dengan -rescan + + + + You're using an external hushd. Please restart hushd with -reindex + Anda sedang menggunakan hushd eksternal. tolong mulai ulang hushd dengan -reindex + + + + Enable Tor + Gunakan Tor + + + + Connection over Tor has been enabled. To use this feature, you need to restart SilentDragon. + Koneksi melalui Tor telah diaktifkan. Untuk menggunakan fitur ini, Anda harus memulai ulang SilentDragon. + + + + Disable Tor + Nonaktifkan Tor + + + + Connection over Tor has been disabled. To fully disconnect from Tor, you need to restart SilentDragon. + Koneksi melalui Tor telah dinonaktifkan. Untuk memutuskan sambungan sepenuhnya dari Tor, Anda harus memulai ulang SilentDragon. + + + SilentDragon needs to restart to rescan/reindex. SilentDragon will now close, please restart SilentDragon to continue + SilentDragon perlu memulai ulang untuk Pindai ulang/Indeks ulang. SilentDragon sekarang akan ditutup, silakan mulai kembali SilentDragon untuk melanjutkan + + + + + Restart SilentDragon + Mulai Ulang SilentDragon + + + + SilentDragon needs to reindex for zindex. SilentDragon will now close, please restart SilentDragon to continue + + + + + Some feedback about SilentDragon or Hush... + Beberapa umpan balik tentang SilentDragon atau Hush + + + + Send Duke some private and shielded feedback about + Kirim Duke beberapa umpan balik tantanv privasi dan terlindungi + + + + or SilentDragon + Atau SilentDragon + + + + Enter Address to validate + Masukan Alamat untuk validasi + + + + Transparent or Shielded Address: + Transparan atau Alamat yang terlindungi + + + + Private key import rescan finished + Memindai ulang Kunci Privat telah selesai + + + + Paste HUSH URI + Tempel HUSH URI + + + + Error paying Hush URI + Kesalahan Pembayaran HUSH URI + + + + URI should be of the form 'hush:<addr>?amt=x&memo=y + URI harus dalam bentuk 'hush:<addr>?amt=x&memo=y + + + + Please paste your private keys here, one per line + Tolong tempel kunci privat disini, Perbaris satu + + + + The keys will be imported into your connected Hush node + Kunci akan di impor ke Hush node anda yang terhubung + + + + The keys were imported! It may take several minutes to rescan the blockchain. Until then, functionality may be limited + Kunci kunci telah diimpor! Mungkin diperlukan beberapa menit untuk memindai ulang blockchain. Sampai saat itu, fungsionalitas mungkin terbatas + + + + Error + Kesalahan + + + + Error exporting transactions, file was not saved + Kesalahan Mengeskpor transaksi, file tidak disimpan + + + + No wallet.dat + Tidak ada dompet.dat + + + + Couldn't find the wallet.dat on this computer + Tidak dapat mencari dompet.dat di komputer ini + + + + You need to back it up from the machine hushd is running on + Anda harus mencadangkan ulang dari mesin hushd yang sedang berjalan + + + + Backup wallet.dat + Cadangkan dompet.dat + + + + Couldn't backup + Tidak bisa mencadangkan + + + + Couldn't backup the wallet.dat file. + Tidak dapat mencadangkan berkas dompet.dat + + + + You need to back it up manually. + Anda harus mencadangkan secara manual + + + + These are all the private keys for all the addresses in your wallet + Semua ini adalah kunci privat untuk semua alamat di dompet anda + + + + Private key for + Kunci privat untuk + + + + + Save File + Simpan Berkas + + + + Theme Change + + + + + + This change can take a few seconds. + + + + + Currency Change + + + + + SilentDragon needs to restart to rescan,reindex,consolidation or deletetx. SilentDragon will now close, please restart SilentDragon to continue + + + + + + Unable to open file + Tidak dapat membuka berkas + + + + + Copy address + Salin alamat + + + + + + Copied to clipboard + Disalin ke papan klip + + + + Get private key + Dapatkan Kunci Privat + + + + Get viewing key + + + + + Shield balance to Sapling + Alamat terlindung ke sapling + + + + + View on block explorer + Lihat di blok eksplorer + + + + Address Asset Viewer + Alamat Penampil Aset + + + + Convert Address + Konversikan Alamat + + + + Copy txid + Salin Txid + + + + Copy block explorer link + + + + + View Payment Request + Tampilkan Permintaan Pembayaran + + + + View Memo + Tampilkan Memo + + + + Reply to + Balas ke + + + + Created new t-Addr + Buat baru t-Addr + + + + Copy Address + Salin Alamat + + + + Address has been previously used + Alamat sebelumnya telah digunakan + + + + Address is unused + Alamat belum digunakan + + + + Recipient + Penerima + + + + + File Upload + Upload Berkas + + + + Only z-addresses can have memos + Hanya z-addreses yang memiliki memo + + + + File size too large + Ukuran berkas terlalu besar + + + + The file size + Ukuran berkas + + + + bytes is greater than + Bytes lebih besar dari + + + + bytes + bytes + + + + Memos can only be used with z-addresses + Memo hanya bisa digunakan oleh z-addreses + + + + The memo field can only be used with a z-address. + + Bidang memo hanya bisa digunakan dengan z-address + + + + +doesn't look like a z-address + Tidak terlihat seperi z-address + + + + Change from + Ubah dari + + + + Current balance : + Saldo sekarang : + + + + Balance after this Tx: + Saldl setelah Tx ini + + + + Transaction Error + Kesalahan Transaksi + + + + Please wait... + + + + + Computing your transaction + + + + + Computing transaction: + + + + + Done! + + + + + From Address is Invalid! + + + + Computing Tx: + Komputasi Tx + + + From Address is Invalid + Dari alamat tidak valid + + + + Recipient Address + Alamat Penerima + + + + is Invalid + Tidak Valid + + + + Amount '%1' is invalid! + Jumlah tidak valid! + + + + MemoDialog + + + + Memo + Memo + + + + Include Reply Address + Termasuk Alamat Balasan + + + + MemoEdit + + + Reply to + Balas Ke + + + + MobileAppConnector + + + Connect Mobile App + Sambungkan Aplikasi Ponsel + + + + Scan this QRCode in SilentDragonAndroid to connect your device + Pindai kode QR ini di SilentDragonAndroid untuk dapat tersambung ke perangkat anda + + + + QR Code + Kode QR + + + + Connection String + Koneksi String + + + + Allow connections over the internet via SilentDragon wormhole + Izinkan koneksj internet melalui wormhole SilentDragon + + + + SilentDragonAndroid + SilentDragonAndroid + + + + Disconnect + Putuskan Koneksj + + + + + TextLabel + Label Teks + + + + Last seen: + Terakhir Terlihat + + + + Connection type: + Tipe Sambungan + + + + PrivKey + + + Private Keys + Kunci Privat + + + + QObject + + + Pick + Memilih + + + + Address or Label Error + Kesalahan Label atau Alamat + + + + Address or Label cannot be empty + Label atau Alamay tidak boleh kosong + + + + Address Format Error + Kesalahan Format Alamat + + + + %1 doesn't seem to be a valid Hush address. + Tidak terlihat seperti Alamat Hush yang benar + + + + Label Error + Kesalahan Label + + + + The label '%1' already exists. Please remove the existing label. + Label sudah ada. harap hapus label yang sudah ada + + + + Import Address Book + Impor Buku Alamat + + + + Unable to open file + Tidak dapat membuka berkas + + + + Address Book Import Done + Impor Alamat Buku Sudah Selesai + + + + Imported %1 new Address book entries + Entri Alamat Buku yang baru + + + + Copy address + Salin Alamat + + + + Copied to clipboard + Disalin ke papan klip + + + + Delete label + Hapus label + + + + Attempting autoconnect + Mencoba sambungan otomatis + + + + Starting embedded hushd + Hush memulai tertanam + + + + hushd is set to run as daemon + Hushd diatur untuk dijalankan sebagai Daemon + + + + Waiting for hushd + Menunggu Hushd + + + + You have hushd set to start as a daemon, which can cause problems with SilentDragon + +.Please remove the following line from your HUSH3.conf and restart SilentDragon +daemon=1 + Anda harus mengatur untuk memulai sebagai daemon, yang dapat menyebabkan masalah dengan SilentDragon . Harap hapus baris berikut dari HUSH3.conf Anda dan mulai ulang SilentDragon + + + + + Couldn't start the embedded hushd. + +Please try restarting. + +If you previously started hushd with custom arguments, you might need to reset HUSH3.conf. + +If all else fails, please run hushd manually. + Tidak dapat memulai hushd yang disematkan. Silakan coba memulai kembali. Jika sebelumnya Anda mulai dengan argumen khusus, Anda mungkin perlu mengatur ulang HUSH3.conf. Jika semuanya gagal, jalankan hushd secara manual. + + + + The process returned + Proses kembali + + + + Couldn't connect to hushd configured in HUSH3.conf. + +Not starting embedded hushd because --no-embedded was passed + Tidak dapat terhubung ke hushd yang dikonfigurasi di HUSH3.conf. + +Tidak dapat memulai menanam hushd karena tidak ada penanaman yang diteruskan + + + + Hide Advanced Config + Sembunyikan Konfigurasi Lanjutan + + + + Show Advanced Config + Tampilkan Konfigurasi Lanjutan + + + + Choose data directory + Pilih direktori data + + + + Could not create HUSH3.conf. + Tidak Dapat membuat HUSH3.conf + + + + All Downloads Finished Successfully! + Semua Unduhan Telah Selesai + + + + Couldn't download params. Please check the help site for more info. + Tidak dapat mengunduh params. Harap cek bantuan di website untuk info lebih lanjut + + + + + Downloading + Mengundug + + + + more remaining ) + + + + more remaining + Lebih banyak tersisa + + + + MB of + MB dari + + + + MB at + MB di + + + + failed. Please check the help site for more info + Gagal. Tolong cek bantuan di website untuk info lebih lanjut + + + + hushd error + Kesalahan Hushd + + + + A manual connection was requested, but the settings are not configured. + +Please set the host/port and user/password in the Edit->Settings menu. + Koneksi manual diminta, tetapi pengaturan tidak dikonfigurasi. Harap setel host / port dan pengguna / kata sandi di menu Edit- > Pengaturan + + + + Could not connect to hushd configured in settings. + +Please set the host/port and user/password in the Edit->Settings menu. + Tidak dapat terhubung ke pengaturan yang diatur dalam Hushd. Harap setel host / port dan pengguna / kata sandi di menu Edit- > Pengaturan. + + + + Authentication failed. The username / password you specified was not accepted by hushd. Try changing it in the Edit->Settings menu + Otentikasi gagal. Nama pengguna / kata sandi yang Anda tentukan tidak diterima oleh hushd. Coba ubah di menu Edit- > Pengaturan + + + + Your hushd is starting up. Please wait. + Hushd telah memulai. Harap tunggu + + + + This may take several hours, grab some popcorn + Inibmungkin memakan beberapa jam, ambil beberapa popcorn + + + + + Connection Error + Kesalahan Koneksi + + + + + Transaction Error + Kesalahan Transaksi + + + + There was an error! : + Terjadi kesalahan! + + + + + No Connection + Tidak ada sambungan + + + + Downloading blocks + Mengunduh Blok + + + + Block height + Tinggi blok + + + + Syncing + Sinkronisasi + + + + Connected + Tersambung + + + + testnet: + Jaringan uji coba: + + + + Connected to hushd + Tersambung ke hushd + + + + hushd has no peer connections! Network issues? + Tidak ada jaring peer hushd! Masalah jaringan? + + + + There was an error connecting to hushd. The error was + Ada kesalahan sambungan hushd. Kesalahannya adalah + + + + transaction computing. + + + + tx computing. This can take several minutes. + Komputasi Tx. Dapat memakan beberapa menit + + + + Update Available + Pembaruan Tersedia + + + + A new release v%1 is available! You have v%2. + +Would you like to visit the releases page? + Rilis baru v% 1 tersedia! Anda memiliki v% 2. Apakah Anda ingin mengunjungi halaman rilis? + + + + No updates available + Tidak ada pembaruan tersedia + + + + You already have the latest release v%1 + Anda telah menggunakan pembaruan terbaru v%1 + + + + Please enhance your calm and wait for SilentDragon to exit + Harap tingkatkan kesabaran dan tunggu SilentDragon keluar + + + + Waiting for hushd to exit, y'all + Menunggu Hushd Keluar + + + Tx + Tx + + + + failed + Gagal + + + + Transaction + + + + + The transaction with id + Transaksi dengan id + + + + failed. The error was + Gagal. Terjadi kesalahan + + + Tx submitted (right click to copy) txid: + Tx dikirimkan (klik kanan untuk menyalin) txid: + + + + Type + Tipe + + + + Address + Alamat + + + + Date/Time + Tanggal/Waktu + + + + Amount + Jumlah + + + + Connected directly + Terhubung Langsung + + + + Connected over the internet via SilentDragon wormhole service + terhubung melalui internet melalui layanan SilentDragon Wormhole + + + + Node is still syncing. + Masih menyikronkan node + + + + No addresses with enough balance to spend! Try sweeping funds into one address + Tidak ada alamat dengan saldo yang cukup untuk dibelanjakan! Cobalah menyapu dana ke satu alamat + + + + Transaction submitted (right click to copy) txid: + + + + + RecurringDialog + + + Dialog + Dialog + + + + Add + Tambah + + + + Edit + Edit + + + + Delete + Hapus + + + + RequestDialog + + + Payment Request + Meminta Pembayaran + + + + AddressBook + Buku Alamat + + + + Request From + Meminta Dari + + + + My Address + Alamat Saya + + + + Amount in + Jumlah dalam + + + + z address + Alamat z + + + + Amount + Jumlah + + + + The recipient will see this address in the "to" field when they pay your request. + Penerima akan melihat alamat dalam bidang ini jika mereka membayar permintaan anda + + + + Amount USD + Jumlah USD + + + + Memo + Memo + + + + TextLabel + Label Teks + + + + Request payment from a Sapling address. You'll send a HUSH 0.0001 transaction to the address with a HUSH payment URI. The memo will be included in the transaction when the address pays you. + Minta pembayaran dari alamat Sapling. Anda akan mengirim transaksi HUSH 0,0001 ke alamat dengan URI pembayaran HUSH. Memo itu akan dimasukkan dalam alamat transaksi ketika Anda membayar + + + + Error paying HUSH URI + Kesalahan Membayar HUSH URI + + + + URI should be of the form 'hush:<addr>?amt=x&memo=y + URI harus dalam bentuk ' hush: < addr >? Amt = x & memo + + + + Pay To + Bayar Ke + + + + Pay + Bayar + + + + You are paying a payment request. Your address will not be visible to the person requesting this payment. + Anda membayar permintaan pembayaran. Alamat Anda tidak akan terlihat oleh orang yang meminta pembayaran ini. + + + + Can only request from Sapling addresses + Hanya dapat meminta dari alamat apling + + + + Settings + + + Settings + Pengaturan + + + + hushd connection + Sambungan hushd + + + + Host + Host + + + + Port + Port + + + + RPC Username + Nama Pengguna RPC + + + + RPC Password + Kata sandi RPC + + + + Options + Opsi + + + + Theme + Tema + + + + Local Currency + + + + + AED + + + + + ARS + + + + + AUD + + + + + BDT + + + + + BHD + + + + + BMD + + + + + BRL + + + + + BTC + + + + + CAD + + + + + CHF + + + + + CLP + + + + + CNY + + + + + CZK + + + + + DKK + + + + + EUR + + + + + GBP + + + + + HKD + + + + + HUF + + + + + IDR + + + + + ILS + + + + + INR + + + + + JPY + + + + + KRW + + + + + KWD + + + + + LKR + + + + + PKR + + + + + MXN + + + + + NOK + + + + + NZD + + + + + RUB + + + + + SAR + + + + + SEK + + + + + SGD + + + + + THB + + + + + TRY + + + + + TWD + + + + + UAH + + + + + USD + + + + + VEF + + + + + VND + + + + + XAG + + + + + XAU + + + + + ZAR + + + + + default + Standar + + + + blue + Biru + + + + light + Cerah + + + + dark + Gelap + + + + Connect via Tor + Sambungkan melalui Tor + + + + Check github for updates at startup + Cek pembaruan github di memulai + + + + Remember shielded transactions + Mengingat Alamat Terlindungi + + + + Normally, change from t-Addresses goes to another t-Address. Checking this option will send the change to your shielded sapling address instead. Check this option to increase your privacy. + Biasanya, perubahan dari alamat-t pergi ke alamat-t lain. Memeriksa opsi ini akan mengirim perubahan ke alamat Sapling terlindung Anda sebagai gantinya. Periksa opsi ini untuk meningkatkan privasi Anda. + + + + Allow overriding the default fees when sending transactions. Enabling this option may compromise your privacy since fees are transparent. + Izinkan mengganti biaya default saat mengirim transaksi. Mengaktifkan opsi ini dapat membahayakan privasi Anda karena biayanya transparan. + + + + Clear History + Bersihkan Riwayat + + + + Shielded transactions are saved locally and shown in the transactions tab. If you uncheck this, shielded transactions will not appear in the transactions tab. + Shielded transactions are saved locally and shown in the transactions tab. If you uncheck this, shielded transactions will not appear in the transactions tab. + + + + Allow custom fees + Bolehkan biaya custom + + + + Shield change from t-Addresses to your sapling address + Lindungi perubahan dari t-Addresses ke alamat sapling Anda + + + + Connect to the Tor network via SOCKS proxy running on 127.0.0.1:9050. Please note that you'll have to install and run the Tor service externally. + Sambungkan ke jaringan Tor melalui proxy SOCKS yang berjalan pada 127.0.0.1:9050. Harap perhatikan bahwa Anda harus menginstal dan menjalankan layanan Tor secara eksternal. + + + + Connect to github on startup to check for updates + + + + + Connect to the internet to fetch HUSH prices + Sambungkan ke internet untu mengambilharga HUSH + + + + Fetch HUSH prices + Mengbil Harga HUSH + + + + Explorer + Eksplorer + + + + Tx Explorer URL + Tx URL Eksplorer + + + + Address Explorer URL + Alamat URL Eksplorer + + + + Testnet Tx Explorer URL + Tx jaringan uji coba URL Eksplorer + + + + Testnet Address Explorer URL + Alamat Jaringan uji coba URL eksplorer + + + + Troubleshooting + Memecahkan Masalah + + + + Reindex + Indeks Ulang + + + + Rescan the blockchain for any missing wallet transactions and to correct your wallet balance. This may take several hours. You need to restart SilentDragon for this to take effect + Telusuri ulang blockchain untuk setiap transaksi dompet yang hilang dan untuk mengoreksi saldo dompet Anda. Ini mungkin memakan waktu beberapa jam. Anda perlu me-restart SilentDragon agar ini berlaku + + + + Rescan + Memindai Ulang + + + + Rebuild the entire blockchain from the genesis block, by rescanning all the block files. This may take several hours to days, depending on your hardware. You need to restart SilentDragon for this to take effect + Bangun kembali seluruh blockchain dari blok genesis, dengan memindai ulang semua file blok. Ini bisa memakan waktu beberapa jam hingga berhari-hari, tergantung perangkat keras Anda. Anda harus memulai ulang SilentDragon agar ini berlaku + + + + This code can greatly reduce the size of wallets and increase performance for service providers. It's designed mostly for exchanges and mining pools but anybody with a large wallet will benefit. + + + + + Enable Old Transaction Deletion + + + + + Consolidation + + + + + Deletetx + + + + + The new experimental Shielded Index (-zindex) which keeps track of many stats that can be seen via the new getchaintxstats RPC. These include shielded payments, anonymity set size and many other things. + + + + + Zindex + + + + + 100 + 100 + + + + Wallet.dat Size : + + + + + MB + + + + + ValidateAddress + + + Validate Address + Validasi Alamat + + + + TextLabel + Label Teks + + + + Address: + Alamat: + + + + ValidateAddressesModel + + + Property + Properti + + + + Value + Nilai + + + + ViewAddressesDialog + + + All Addresses + Semua Alamat + + + + Export All Keys + Ekspor Semua Kunci + + + + ViewAllAddressesModel + + + Address + Alamat + + + + Balance (%1) + Jumlah (%1) + + + + ViewKey + + + Viewing Key + + + + + about + + + About + Tentang + + + + addressBook + + + Address Book + Buku Alamat + + + + Add New Address + Tambahkan Alamat Baru + + + + Address (z-Addr or t-Addr) + Alamat (alamat-z atau alamat-t) + + + + Label + Label + + + + Add to Address Book + Tambahkan ke Alamat Buku + + + + Import Address Book + Impor Buku Alamat + + + + confirm + + + Confirm Transaction + Konfirmasi Transaksi + + + + From + Dari + + + + To + Ke + + + + hushd doesn't seem to have any peers. You might not be connected to the internet, so this Transaction might not work. + sepertinya tidak punya peers. Anda mungkin tidak terhubung ke internet, jadi Transaksi ini mungkin tidak berfungsi. + + + + You are sending a transaction while your node is still syncing. This may not work. + Anda mengirim transaksi saat node Anda masih disinkronkan. Ini mungkin tidak berfungsi. + + + + You are using a custom fee. Since fees are transparent, you are giving up some privacy. Please use this only if you know what you are doing! + Anda menggunakan biaya khusus. Karena biaya transparan, Anda memberikan privasi. Harap gunakan ini hanya jika Anda tahu apa yang Anda lakukan! + + + + createZcashConf + + + Configure HUSH3.conf + Konfigurasikan HUSH3.conf + + + + Show Advanced Configuration + Tampilkan Konfigurasi Lanjutan + + + + Your Hush node will be configured for you automatically + Node Hush anda akan dikonfigurasikan ke otomatis + + + + Use custom datadir + Pakai datadir Custom + + + + Please choose a directory to store your wallet.dat and blockchain + Harap Pilih direktori untum menyimpan dompet.dat dan blockchain + + + + Choose directory + Pilih Direktori + + + + Connect over Tor + Sambungkan melalui Tor + + + + Please note that you'll need to already have a Tor service configured on port 9050 + Harap catat anda sebelum nya butub servis Tor terkonfigurasi dalam port 9050 + + + + newRecurringDialog + + + Edit Schedule + Edit Jadwal + + + + Schedule + Jadwal + + + + Payment Description + Deskripsi Pembayaran + + + + TextLabel + Label Teks + + + + From + Dari + + + + Number of payments + Nomor pembayaran + + + + Amount + Jumlah + + + + Next Payment + Pembayaran Selanjutnya + + + + To + Ke + + + + Memo + Memo + + + diff --git a/res/silentdragon_it.qm b/res/silentdragon_it.qm index 582f8b8..8619ece 100644 Binary files a/res/silentdragon_it.qm and b/res/silentdragon_it.qm differ diff --git a/res/silentdragon_it.ts b/res/silentdragon_it.ts index ff043b6..460533e 100644 --- a/res/silentdragon_it.ts +++ b/res/silentdragon_it.ts @@ -79,60 +79,60 @@ Totale - + Some transactions are not yet confirmed Rilevate transazioni non ancora confermate - + Address Balances Saldo degli indirizzi - - + + Send Invia - + From Da - + Address Balance check Saldo Indirizzo - + Send To Inviare a - + Recipient Destinatario - - - + + + Address Indirizzo - + Address Book Rubrica - - + + Amount @@ -140,141 +140,141 @@ Importo - + Max Available Invia tutto - + Upload File Caricare un file - - - + + + Memo Memo - + Add Recipient Aggiungi alla rubrica - + Recurring payment Pagamento ricorrente - + Every month, starting 12-May-2012, for 6 payments Ogni mese, a partire dal 12 maggio 2012, per 6 pagamenti - + Edit Schedule Modifica programma - + Miner Fee Commissioni di rete - + 0 0 - + Cancel Annulla - + Receive Ricevi - + Address Type Tipo Indirizzo - + Market - + <html><head/><body><p align="center"><span style=" font-weight:600;">Hush Market Information</span></p></body></html> - + Market Cap - + 24H Volume - + Local Services - + Longest Chain - + Wallet Transactions - + Chain Transactions - + &Report a bug on Github - + &Send Duke Feedback &Invia feedback Duke - + &Hush Discord &Hush Discord - + &Hush Website &Hush Sito web - + Pay HUSH &URI... Paga HUSH &URI... - + Request HUSH... Richiedi HUSH ... - + Validate Address Convalida indirizzo @@ -291,218 +291,219 @@ z-Addresses (Legacy Sprout) - + New Address Crea Indirizzo - + View All Addresses Visualizza tutti gli indirizzi - + Label Etichetta - + Update Label Aggiorna etichetta - + Address balance Saldo dell'indirizzo - + Optional Opzionale - - + + Export Private Key Esporta la chiave privata - + Transactions Transazioni - + hushd hushd - + You are currently not mining Al momento non stai minando - - + + + - - - - - - + + + + - - - - - - - - - - - - + + + + + + + + + + + + + + Loading... Caricamento... - + Block height check Ultimo blocco trovato - + Notarized Hash Hash notarile - + Notarized txid Txid notarile - + Notarized Lag Lag notarile - + KMD Version Versione KMD - + Protocol Version Versione protocollo - + Version Versione - + P2P Port Porta P2P - + RPC Port Porta RPC - + Client Name Nome del cliente - + Next Halving Prossima diminuzione - + Network solution rate check Potenza di calcolo Network - + Connections Connessioni attive - - - - + + + - - - - - - - - - - - - + + + + + + + + + + + + + | | - + Shielded Address (Private, Anonymous) Indirizzo protetto (privato, anonimo) - + Transparent Address (Public, Metadata-Leaking) Indirizzo trasparente (pubblico, con perdite di metadati) - + &File &File - + &Help &Aiuto - + &Apps &Apps - + &Edit &Modifica - + E&xit &Esci - + &About &About - + &Settings &Impostazioni - + Ctrl+P Ctrl+P @@ -511,69 +512,69 @@ &Dona - + Check github.com for &updates Controllo nuovi &aggiornamenti - + Sapling &turnstile Sapling &turnstile - + Ctrl+A, Ctrl+T Ctrl+A, Ctrl+T - + &Import private key &Importa chiave privata - + &Export all private keys &Esporta tutte le chiavi private - + &z-board.net &z-board.net - + Ctrl+A, Ctrl+Z Ctrl+A, Ctrl+Z - + Address &book check Rubrica &Contatti - + Ctrl+B Ctrl+B - + &Backup wallet.dat &Backup wallet.dat - - + + Export transactions Transazioni di esportazione - + Connect mobile &app Connetti &applicazione mobile - + Ctrl+M Ctrl+M @@ -606,52 +607,52 @@ Le chiavi sono state importate. Potrebbero essere necessari alcuni minuti per eseguire nuovamente la scansione della blockchain. Fino ad allora, le funzionalità potrebbero essere limitate - + Private key import rescan finished L'importazione delle chiavi private è stata completata - + Tor configuration is available only when running an embedded hushd. La configurazione Tor è disponibile solo quando si esegue un hushd incorporato. - + You're using an external hushd. Please restart hushd with -rescan Stai usando un hushd esterno. Si prega di riavviare hushd con -rescan - + You're using an external hushd. Please restart hushd with -reindex Stai usando un hushd esterno. Si prega di riavviare hushd con -reindex - + Enable Tor Abilita Tor - + Connection over Tor has been enabled. To use this feature, you need to restart SilentDragon. La connessione tramite Tor è stata abilitata. Per utilizzare questa funzione, è necessario riavviare SilentDragon. - + Disable Tor Disabilita Tor - + Connection over Tor has been disabled. To fully disconnect from Tor, you need to restart SilentDragon. La connessione tramite Tor è stata disabilitata. Per disconnettersi completamente da Tor, è necessario riavviare SilentDragon. - SilentDragon needs to restart to rescan/reindex. SilentDragon will now close, please restart SilentDragon to continue - SilentDragon deve essere riavviato per ripetere la scansione / reindicizzazione. SilentDragon ora si chiuderà, riavviare SilentDragon per continuare + SilentDragon deve essere riavviato per ripetere la scansione / reindicizzazione. SilentDragon ora si chiuderà, riavviare SilentDragon per continuare - + + Restart SilentDragon Riavvia SilentDragon @@ -665,177 +666,194 @@ Le chiavi saranno importate nel tuo nodo hushd - + Theme Change - - + + This change can take a few seconds. - + Currency Change - + + SilentDragon needs to restart to rescan,reindex,consolidation or deletetx. SilentDragon will now close, please restart SilentDragon to continue + + + + + SilentDragon needs to reindex for zindex. SilentDragon will now close, please restart SilentDragon to continue + + + + Some feedback about SilentDragon or Hush... Alcuni feedback su SilentDragon o Hush ... - + Send Duke some private and shielded feedback about Invia a Duke un feedback privato e schermato - + or SilentDragon o SilentDragon - + Enter Address to validate Inserisci un indirizzo per convalidare - + Transparent or Shielded Address: Indirizzo trasparente o schermato: - + Paste HUSH URI Incolla URI HUSH - + Error paying Hush URI Errore nel pagamento dell'URI Hush - + URI should be of the form 'hush:<addr>?amt=x&memo=y L'URI dovrebbe essere nella forma 'hush:<addr>?amt=x&memo=y - + Please paste your private keys here, one per line Incolla qui le tue chiavi private, una per riga - + The keys will be imported into your connected Hush node Le chiavi verranno importate nel nodo Hush collegato - + The keys were imported! It may take several minutes to rescan the blockchain. Until then, functionality may be limited Le chiavi sono state importate! Potrebbero essere necessari alcuni minuti per ripetere la scansione della blockchain. Fino ad allora, la funzionalità potrebbe essere limitata - + Error Errore - + Error exporting transactions, file was not saved Errore durante l'esportazione delle transazioni, il file non è stato salvato - + No wallet.dat Nessun wallet.dat - + Couldn't find the wallet.dat on this computer Impossibile trovare il wallet.dat su questo computer - + You need to back it up from the machine hushd is running on È necessario eseguire il backup dalla macchina su cui hushd è in esecuzione - + Backup wallet.dat Backup wallet.dat - + Couldn't backup Impossibile eseguire il backup - + Couldn't backup the wallet.dat file. Impossibile eseguire il backup del file wallet.dat. - + You need to back it up manually. Devi eseguire il backup manualmente. - + These are all the private keys for all the addresses in your wallet Queste sono le chiavi private per tutti gli indirizzi nel tuo portafoglio - + Private key for Chiave privata per - + + Save File Salva File - + + Unable to open file Impossibile aprire il file - - + + Copy address Copia indirizzo - - - + + + Copied to clipboard Copiato negli appunti - + Get private key Ottieni una chiave privata - + + Get viewing key + + + + Shield balance to Sapling Trasferisci il saldo su un indirizzo shielded Sapling - - + + View on block explorer Guarda sul block-explorer - + Address Asset Viewer Addresses Asset Viewer - + Convert Address Converti indirizzo @@ -844,47 +862,47 @@ Migra a Sapling - + Copy txid Copia txid - + Copy block explorer link - + View Payment Request Visualizza richiesta di pagamento - + View Memo Visualizza memo - + Reply to Rispondi a - + Created new t-Addr Crea nuovo t-Addr - + Copy Address Copia indirizzo - + Address has been previously used L'indirizzo è stato precedentemente utilizzato - + Address is unused L'indirizzo non è utilizzato @@ -963,12 +981,27 @@ doesn't look like a z-address Errore di transazione - + + Please wait... + + + + + Computing your transaction + + + + Computing transaction: - + + Done! + + + + From Address is Invalid! @@ -978,17 +1011,17 @@ doesn't look like a z-address L'indirizzo selezionato non è valido - + Recipient Address Indirizzo Destinatario - + is Invalid non valido - + Amount '%1' is invalid! L'importo '%1' non è valido! @@ -1092,28 +1125,28 @@ doesn't look like a z-address QObject - + Attempting autoconnect Tentativo di connessione automatica - + Starting embedded hushd check Avvio demone hushd - + hushd is set to run as daemon hushd è impostato per essere eseguito come un demone - + Waiting for hushd In attesa di hushd - + You have hushd set to start as a daemon, which can cause problems with SilentDragon .Please remove the following line from your HUSH3.conf and restart SilentDragon @@ -1136,7 +1169,7 @@ Se hai precedentemente avviato hushd con parametri personalizzati, potresti dove Se tutto il resto fallisce, si prega di eseguire manualmente hushd. - + Couldn't connect to hushd configured in HUSH3.conf. Not starting embedded hushd because --no-embedded was passed @@ -1145,38 +1178,38 @@ Not starting embedded hushd because --no-embedded was passed Non è stato avviato hushd integrato perché è stato passato il comando --no-embedded - + Hide Advanced Config Nascondi configurazione avanzata - + Show Advanced Config Mostra configurazione avanzata - + Choose data directory Scegli la directory dei dati - + All Downloads Finished Successfully! Tutti i download sono terminati con successo! - + Couldn't download params. Please check the help site for more info. Impossibile scaricare i parametri. Si prega di controllare il sito di aiuto per maggiori informazioni. - + The process returned check Il processo ha ritornato - + Couldn't start the embedded hushd. Please try restarting. @@ -1193,108 +1226,108 @@ If all else fails, please run hushd manually. Se tutto il resto fallisce, eseguire hushd manualmente. - + Could not create HUSH3.conf. Impossibile creare HUSH3.conf. - - + + Downloading Downlaoding - + more remaining ) rimanenti ) - + MB of MB di - + MB at MB a - + This may take several hours, grab some popcorn Potrebbero essere necessarie alcune ore, prendi dei popcorn - + There was an error! : C'era un errore! : - + Downloading blocks Scaricando i blocchi - + Block height Altezza ultimo blocco - + Syncing Sincronizzazione in corso - + Connected Connesso - + testnet: testnet: - + Connected to hushd Connesso a hushd - + There was an error connecting to hushd. The error was Si è verificato un errore durante la connessione a hushd. L'errore era - + transaction computing. - + Please enhance your calm and wait for SilentDragon to exit - + Waiting for hushd to exit, y'all - + Transaction - + The transaction with id La transazione con id - + failed. The error was fallito. l'errore era - + failed fallito @@ -1303,7 +1336,7 @@ If all else fails, please run hushd manually. Tx - + hushd has no peer connections! Network issues? hushd non ha connessioni peer! Problemi di rete? @@ -1312,12 +1345,12 @@ If all else fails, please run hushd manually. computazione Tx. Questo può richiedere diversi minuti. - + Update Available Aggiornamento disponibile - + A new release v%1 is available! You have v%2. Would you like to visit the releases page? @@ -1326,12 +1359,12 @@ Would you like to visit the releases page? Vuoi visitare la pagina dei rilasci? - + No updates available Nessun aggiornamento disponibile - + You already have the latest release v%1 Hai già l'ultima versione v%1 @@ -1346,17 +1379,17 @@ Would you like to visit the releases page? Attendere l'uscita di hushd - + failed. Please check the help site for more info fallito. Per favore controlllare il sito di aiuto per maggior informazioni - + hushd error hushd errore - + A manual connection was requested, but the settings are not configured. Please set the host/port and user/password in the Edit->Settings menu. @@ -1364,7 +1397,7 @@ Please set the host/port and user/password in the Edit->Settings menu. - + Could not connect to hushd configured in settings. Please set the host/port and user/password in the Edit->Settings menu. @@ -1373,24 +1406,24 @@ Please set the host/port and user/password in the Edit->Settings menu. - + Authentication failed. The username / password you specified was not accepted by hushd. Try changing it in the Edit->Settings menu Autenticazione fallita. Il nome utente/password che hai specificato non sono stati accettati da hushd. Prova a cambiarlo nel menu Modifica-> Impostazioni - + Your hushd is starting up. Please wait. Il tuo hushd si sta avviando. Attendere prego. - - + + Connection Error Errore di Connessione - - + + Transaction Error Errore di transazione @@ -1399,8 +1432,8 @@ Impostare host/porta e utente/password nel menu Modifica-> Impostazioni.Si è verificato un errore durante l'invio della transazione. L'errore era: - - + + No Connection Nessuna connessione @@ -1527,12 +1560,12 @@ Avete fondi non confermati o il saldo è troppo basso per una migrazione automat Connesso via Internet tramite il servizio wormhole SilentDragon - + Node is still syncing. Il nodo è ancora in fase di sincronizzazione. - + No addresses with enough balance to spend! Try sweeping funds into one address @@ -1700,17 +1733,17 @@ Avete fondi non confermati o il saldo è troppo basso per una migrazione automat Opzioni - + Check github for updates at startup - + Connect to the Tor network via SOCKS proxy running on 127.0.0.1:9050. Please note that you'll have to install and run the Tor service externally. Connettiti alla rete Tor tramite proxy SOCKS in esecuzione su 127.0.0.1:9050. Nota che dovrai installare ed eseguire il servizio Tor esternamente. - + Shielded transactions are saved locally and shown in the transactions tab. If you uncheck this, shielded transactions will not appear in the transactions tab. Le transazioni Shielded vengono salvate localmente e visualizzate nella scheda delle transazioni. Se deselezioni questa opzione, le transazioni Shielded non verranno visualizzate nella scheda delle transazioni. @@ -1720,343 +1753,388 @@ Avete fondi non confermati o il saldo è troppo basso per una migrazione automat - + Local Currency - + AED - + ARS - + AUD - + BDT - + BHD - + BMD - + BRL - + BTC - + CAD - + CHF - + CLP - + CNY - + CZK - + DKK - + EUR - + GBP - + HKD - + HUF - + IDR - + ILS - + INR - + JPY - + KRW - + KWD - + LKR - + PKR - + MXN - + NOK - + NZD - + RUB - + SAR - + SEK - + SGD - + THB - + TRY - + TWD - + UAH - + USD - + VEF - + VND - + XAG - + XAU - + ZAR - + default - + blue - + light - + dark - + Connect via Tor Connetti via Tor - + Connect to github on startup to check for updates - + Connect to the internet to fetch HUSH prices - + Fetch HUSH prices - + Explorer - + Tx Explorer URL - + Address Explorer URL - + Testnet Tx Explorer URL - + Testnet Address Explorer URL - + Troubleshooting Risoluzione dei problemi - + Reindex Reindex - + Rescan the blockchain for any missing wallet transactions and to correct your wallet balance. This may take several hours. You need to restart SilentDragon for this to take effect Riesegui la scansione della blockchain per eventuali transazioni di portafoglio mancanti e per correggere il saldo del tuo portafoglio. Questa operazione potrebbe richiedere diverse ore. È necessario riavviare SilentDragon affinché questo abbia effetto - + Rescan Rescan - + Rebuild the entire blockchain from the genesis block, by rescanning all the block files. This may take several hours to days, depending on your hardware. You need to restart SilentDragon for this to take effect Ricostruisci l'intera blockchain dal blocco genesi, eseguendo nuovamente la scansione di tutti i file di blocco. Questo potrebbe richiedere diverse ore o giorni, a seconda dell'hardware. È necessario riavviare SilentDragon affinché questo abbia effetto - + + This code can greatly reduce the size of wallets and increase performance for service providers. It's designed mostly for exchanges and mining pools but anybody with a large wallet will benefit. + + + + + Enable Old Transaction Deletion + + + + + Consolidation + + + + + Deletetx + + + + + The new experimental Shielded Index (-zindex) which keeps track of many stats that can be seen via the new getchaintxstats RPC. These include shielded payments, anonymity set size and many other things. + + + + + Zindex + + + + + 100 + 100 + + + + Wallet.dat Size : + + + + + MB + + + + Clear History Cancellare la cronologia - + Remember shielded transactions Ricorda le transazioni Shielded - + Allow custom fees commissioni? Va bene? Consenti commissioni personalizzate - + Allow overriding the default fees when sending transactions. Enabling this option may compromise your privacy since fees are transparent. Consentire di ignorare le commissioni di default quando si inviano transazioni. L'attivazione di questa opzione potrebbe compromettere la tua privacy in quanto le commissioni sono trasparenti. - + Normally, change from t-Addresses goes to another t-Address. Checking this option will send the change to your shielded sapling address instead. Check this option to increase your privacy. Normalmente, il passaggio da t-Addresses passa a un altro t-Address. Selezionando questa opzione invierai invece la transazione di resto al tuo indirizzo Shielded Sapling. Seleziona questa opzione per aumentare la tua privacy. - + Shield change from t-Addresses to your sapling address check Cambia l'indirizzo Shielded da t-Addresses al tuo indirizzo Sapling @@ -2181,6 +2259,14 @@ Avete fondi non confermati o il saldo è troppo basso per una migrazione automat Saldo (%1) + + ViewKey + + + Viewing Key + + + about diff --git a/res/silentdragon_nl.qm b/res/silentdragon_nl.qm index 5070314..d6844ee 100644 Binary files a/res/silentdragon_nl.qm and b/res/silentdragon_nl.qm differ diff --git a/res/silentdragon_nl.ts b/res/silentdragon_nl.ts index ff9d928..02694ef 100644 --- a/res/silentdragon_nl.ts +++ b/res/silentdragon_nl.ts @@ -77,125 +77,125 @@ Totaal - + Some transactions are not yet confirmed Sommige transacties zijn nog niet bevestigd - + Address Balances Adres Saldo - - + + Send Verzenden - + From Van - + Address Balance Adres Saldo - + Send To Verzenden Naar - + Recipient Ontvanger - - - + + + Address Adres - + Address Book Adresboek - - + + Amount Bedrag - + Max Available Maximaal Beschikbaar - + Upload File Bestand Uploaden - - - + + + Memo Memo - + Add Recipient Ontvanger Toevoegen - + Recurring payment Terugkomende betaling - + Every month, starting 12-May-2012, for 6 payments Elke maand, beginnend van 12-Mei-2012, voor 6 betalingen - + Edit Schedule Schema Aanpassen - + Miner Fee Mijners Toeslag - + 0 0 - + Cancel Annuleren - + Receive Ontvangen - + Address Type Adres Type @@ -204,42 +204,42 @@ Rescan - + Local Services Lokale Services - + Longest Chain Langste Keten - + &Send Duke Feedback &Verstuur Duke Feedback - + &Hush Discord &Hush Discord - + &Hush Website &Hush site da Internet - + Pay HUSH &URI... Betaal HUSH &URI... - + Request HUSH... Verzoek HUSH... - + Validate Address Adres Bevestigen @@ -256,251 +256,252 @@ z-Addr(Sprout) - + New Address Nieuw Adres - + Label Label - + Update Label Update Label - + Address balance Adres Saldo - + Optional Optioneel - - + + Export Private Key Exporteer privé Sleutel - + Transactions Transacties - + hushd hushd - + You are currently not mining Je bent momenteel niet aan het minen - - + + + - - - - - - + + + + - - - - - - - - - - - - + + + + + + + + + + + + + + Loading... Bezig met Laden... - + Block height Blok Hoogte - + Network solution rate Netwerkoplossings snelheid - + Connections Connecties - - - - + + + - - - - - - - - - - - - + + + + + + + + + + + + + | | - + Shielded Address (Private, Anonymous) Afgeschermd Adres (privé ,Anoniem) - + Transparent Address (Public, Metadata-Leaking) Transparant Adres(Publiekelijk,Metadata inzichtelijk) - + View All Addresses Alle Adressen Weergeven - + Market - + <html><head/><body><p align="center"><span style=" font-weight:600;">Hush Market Information</span></p></body></html> - + Market Cap - + 24H Volume - + Notarized Hash Notarized Hash - + Notarized txid Notarized txid - + Notarized Lag Notarized Lag - + KMD Version KMD Versie - + Protocol Version Protocol Versie - + Version Versie - + P2P Port P2P Poort - + RPC Port RPV Poort - + Client Name CLient Naam - + Next Halving Volgende Halvering - + Wallet Transactions - + Chain Transactions - + &File &Bestand - + &Help &Hulp - + &Apps &Applicaties - + &Edit &Wijzigen - + E&xit A&fsluiten - + &About &Over - + &Report a bug on Github - + &Settings &Instellingen - + Ctrl+P Ctrl+P @@ -509,103 +510,103 @@ &Doar - + Check github.com for &updates Check github.com voor &updates - + Sapling &turnstile Sapling &turnstile - + Ctrl+A, Ctrl+T Ctrl+A, Ctrl+T - + &Import private key &Importeer privé Sleutel - + &Export all private keys &Exporteer Alle privé Sleutels - + &z-board.net &z-board.net - + Ctrl+A, Ctrl+Z Ctrl+A, Ctrl+Z - + Address &book &Adresboek - + Ctrl+B Ctrl+B - + &Backup wallet.dat &Backup wallet.dat - - + + Export transactions Exporteer Transacties - + Connect mobile &app Verbind met mobiel &app - + Ctrl+M Ctrl+M - + Tor configuration is available only when running an embedded hushd. Tor configuratie is alleen beschikbaar wanneer embedded hushd is uitgevoerd. - + You're using an external hushd. Please restart hushd with -rescan Je gebruikt een externe hushd. Graag hushd opnieuw opstarten met -rescan - + You're using an external hushd. Please restart hushd with -reindex Je gebruikt een externe hushd. Graag hushd opnieuw opstarten met -reindex - + Enable Tor Tor Inschakelen - + Connection over Tor has been enabled. To use this feature, you need to restart SilentDragon. Connectie via Tor is ingeschakeld. Om deze functie te gebruiken moet SilentDragon opnieuw worden opgestart. - + Disable Tor Tor Uitschakelen - + Connection over Tor has been disabled. To fully disconnect from Tor, you need to restart SilentDragon. Connectie via Tor is uitgeschakeld. Om Tor volledig uit te schakelen moet SilentDragon opnieuw worden opgestart. @@ -638,17 +639,17 @@ Chaves importadas. Pode demorar alguns minutos para re-escanear a blockchain. Até lá, funcionalidades poderão estar limitadas - + Private key import rescan finished Prive sleutel import rescan geeindigd - SilentDragon needs to restart to rescan/reindex. SilentDragon will now close, please restart SilentDragon to continue - SilentDragon moet opnieuw opgestart worden om rescan/reindex. SildentDragon zal nu afgesloten worden. Start SilentDragon opnieuw op om te hervatten + SilentDragon moet opnieuw opgestart worden om rescan/reindex. SildentDragon zal nu afgesloten worden. Start SilentDragon opnieuw op om te hervatten - + + Restart SilentDragon SilentDragon opnieuw opstarten @@ -661,133 +662,144 @@ As chaves serão importadas em seu nó hushd conectado - + Theme Change - - + + This change can take a few seconds. - + Currency Change - + + SilentDragon needs to restart to rescan,reindex,consolidation or deletetx. SilentDragon will now close, please restart SilentDragon to continue + + + + + SilentDragon needs to reindex for zindex. SilentDragon will now close, please restart SilentDragon to continue + + + + Some feedback about SilentDragon or Hush... Wat feedback over SilentDragon or Hush... - + Send Duke some private and shielded feedback about Verzend Duke anoniem afgeschermde feedback over - + or SilentDragon of SilentDragon - + Enter Address to validate Voer Adres in om te bevestigen - + Transparent or Shielded Address: Transparant of Afgeschermd Adres: - + Paste HUSH URI Plakken HUSH URI - + Error paying Hush URI Error betaling Hush URI - + URI should be of the form 'hush:<addr>?amt=x&memo=y URI should be of the form 'hush:<addr>?amt=x&memo=y - + Please paste your private keys here, one per line Graag hier uw privé sleutels plakken, één per regel - + The keys will be imported into your connected Hush node De sleutels zullen worden geimporteerd in je verbonden Hush node - + The keys were imported! It may take several minutes to rescan the blockchain. Until then, functionality may be limited De sleutels zijn geimporteerd! Het kan een paar minuten duren om de blockchain te scannen. In de tussentijd kunnen de functies gelimiteerd zijn - + Error Error - + Error exporting transactions, file was not saved Error tijdens het exporteren van de transactie, bestand is niet opgeslagen - + No wallet.dat Geen wallet.dat - + Couldn't find the wallet.dat on this computer De wallet.dat file kon niet gevonden worden op deze computer - + You need to back it up from the machine hushd is running on Je moet een backup maken vanuit het apparaat waar hushd op wordt uitgevoerd - + Backup wallet.dat Backup wallet.dat - + Couldn't backup Kon geen backup maken - + Couldn't backup the wallet.dat file. Het is niet mogelijk om het wallet.dat bestand te backuppen. - + You need to back it up manually. Je moet handmatig een backup maken. - + These are all the private keys for all the addresses in your wallet Dit zijn alle privé sleutels voor alle adressen in je wallet - + Private key for privé sleutel voor - + + Save File Bestand Opslaan @@ -796,46 +808,52 @@ Error betaling HUSH URI - + + Unable to open file Niet mogelijk om bestand te openen - - + + Copy address Kopieer Adres - - - + + + Copied to clipboard Gekopieerd naar klemblok - + Get private key Ontvang Persoonlijke Sleutel - + + Get viewing key + + + + Shield balance to Sapling Afgeschermd Saldo voor Sapling - - + + View on block explorer Geef block weer in de block explorer - + Address Asset Viewer Adres Activakijker - + Convert Address Converteer Adres @@ -844,47 +862,47 @@ Migratie naar Sapling - + Copy txid Kopieer txid - + Copy block explorer link - + View Payment Request Bekijk Betalingsverzoek - + View Memo Memo Weergeven - + Reply to Antwoorden naar - + Created new t-Addr Creëer nieuw t-Adres - + Copy Address Kopieer Adres - + Address has been previously used Adres is vorige keer gebruikt - + Address is unused Adres is ongebruikt @@ -964,12 +982,27 @@ Lijkt niet op een z-adres Transactie Fout - + + Please wait... + + + + + Computing your transaction + + + + Computing transaction: - + + Done! + + + + From Address is Invalid! @@ -978,17 +1011,17 @@ Lijkt niet op een z-adres Van Adres is Ongeldig - + Recipient Address Ontvangers Adres - + is Invalid is Ongeldig - + Amount '%1' is invalid! Bedrag '%1' is ongeldig! @@ -1092,27 +1125,27 @@ Lijkt niet op een z-adres QObject - + Attempting autoconnect Probeerd verbinding te maken - + Starting embedded hushd Starten van embedded hushd - + hushd is set to run as daemon hushd is ingesteld om als daemon te worden uitgevoerd - + Waiting for hushd Wachten op hushd - + You have hushd set to start as a daemon, which can cause problems with SilentDragon .Please remove the following line from your HUSH3.conf and restart SilentDragon @@ -1137,7 +1170,7 @@ Se você iniciou hushd anteriormente com parâmetros customizados você pode pre Se ainda assim não der certo, por favor rode hushd manualmente. - + Couldn't connect to hushd configured in HUSH3.conf. Not starting embedded hushd because --no-embedded was passed @@ -1146,37 +1179,37 @@ Not starting embedded hushd because --no-embedded was passed Start embedded hushd niet omdat --no-embedded is doorgegeven - + Hide Advanced Config Verberg geavanceerde configuratie - + Show Advanced Config Geef geavanceerde configuratie weer - + Choose data directory Kies gegevensmap - + All Downloads Finished Successfully! Alle Downloads zijn succesvol afgerond! - + Couldn't download params. Please check the help site for more info. Kan params niet downloaden. Raadpleeg de help-site voor meer info. - + The process returned Het proces keerde terug - + Couldn't start the embedded hushd. Please try restarting. @@ -1193,108 +1226,108 @@ Als u eerder hushd met aangepaste argumenten bent gestart, moet u mogelijk HUSH3 Als al het andere faalt, voer hushd dan handmatig uit. - + Could not create HUSH3.conf. Kon HUSH3.conf niet creëren. - - + + Downloading Downloaden - + more remaining ) Meer over ) - + MB of MB van - + MB at MB om - + This may take several hours, grab some popcorn Dit kan enkele uren duren, pak wat popcorn - + There was an error! : Er was een error! : - + Downloading blocks Downloaden van blokken - + Block height Blokhoogte - + Syncing synchroniseren - + Connected Verbonden - + testnet: testnet: - + Connected to hushd Verbinden met hushd - + There was an error connecting to hushd. The error was Er was een fout met het verbinden naar hushd. De fout was - + transaction computing. - + Please enhance your calm and wait for SilentDragon to exit - + Waiting for hushd to exit, y'all - + Transaction - + The transaction with id De transactie met id - + failed. The error was Mislukt. De fout was - + failed Mislukt @@ -1303,7 +1336,7 @@ Als al het andere faalt, voer hushd dan handmatig uit. Tx - + hushd has no peer connections! Network issues? hushd heeft geen peer-connecties! Netwerkproblemen? @@ -1312,12 +1345,12 @@ Als al het andere faalt, voer hushd dan handmatig uit. tx computing. Dit kan enkele minuten duren. - + Update Available Update Beschikbaar - + A new release v%1 is available! You have v%2. Would you like to visit the releases page? @@ -1326,12 +1359,12 @@ Would you like to visit the releases page? Wilt u de releasepagine bezoeken? - + No updates available Geen updates beschikbaar - + You already have the latest release v%1 U heeft al de nieuwste uitgave v%1 @@ -1344,17 +1377,17 @@ Wilt u de releasepagine bezoeken? Wachtend op hushd om af te sluiten - + failed. Please check the help site for more info mislukt. Raadpleeg het help-tabblad voor meer info - + hushd error Hushd fout - + A manual connection was requested, but the settings are not configured. Please set the host/port and user/password in the Edit->Settings menu. @@ -1363,7 +1396,7 @@ Please set the host/port and user/password in the Edit->Settings menu. - + Could not connect to hushd configured in settings. Please set the host/port and user/password in the Edit->Settings menu. @@ -1372,24 +1405,24 @@ Please set the host/port and user/password in the Edit->Settings menu. - + Authentication failed. The username / password you specified was not accepted by hushd. Try changing it in the Edit->Settings menu Verificatie mislukt. De gebruikersnaam / wachtwoord dat u hebt opgegeven is niet geaccepteerd door hushd. Probeer het te veranderen in het menu Bewerken-> Instellingen - + Your hushd is starting up. Please wait. hushd is aan het opstarten. Even geduld AUB. - - + + Connection Error Connectie Fout - - + + Transaction Error Transactie Fout @@ -1398,8 +1431,8 @@ Stel de host / poort en gebruiker / wachtwoord in het menu Bewerken-> Instell Ocorreu um erro enviando a transação. O erro foi: - - + + No Connection Geen Verbinding @@ -1530,12 +1563,12 @@ Je hebt nog onbevestigde transacties of je saldo is te laag voor een automatisch Connectie via het internet via SilentDragon wormhole service - + No addresses with enough balance to spend! Try sweeping funds into one address - + Node is still syncing. Node is nog steeds aan het synchroniseren. @@ -1755,27 +1788,27 @@ Je hebt nog onbevestigde transacties of je saldo is te laag voor een automatisch Opties - + default - + blue - + light - + dark - + Check github for updates at startup Check github voor updates bij opstarten @@ -1785,332 +1818,377 @@ Je hebt nog onbevestigde transacties of je saldo is te laag voor een automatisch - + Connect to the Tor network via SOCKS proxy running on 127.0.0.1:9050. Please note that you'll have to install and run the Tor service externally. Verbind naar het Tor netwerk via SOCKS proxy uitvoerend op 127.0.0.1:9050. Opmerking is dat je het programma extern moet installeren en moet uitvoeren voor de Tor service. - + Shielded transactions are saved locally and shown in the transactions tab. If you uncheck this, shielded transactions will not appear in the transactions tab. Afgeschermde transacties zijn lokaal opgeslagen en zijn weergegeven in het transactie tabblad. Als je dit vinkje weghaald wordt de afgeschermde transactie niet zichtbaar in het transactie tabblad. - + Local Currency - + AED - + ARS - + AUD - + BDT - + BHD - + BMD - + BRL - + BTC - + CAD - + CHF - + CLP - + CNY - + CZK - + DKK - + EUR - + GBP - + HKD - + HUF - + IDR - + ILS - + INR - + JPY - + KRW - + KWD - + LKR - + PKR - + MXN - + NOK - + NZD - + RUB - + SAR - + SEK - + SGD - + THB - + TRY - + TWD - + UAH - + USD - + VEF - + VND - + XAG - + XAU - + ZAR - + Connect via Tor Connectie via Tor - + Connect to github on startup to check for updates Verbind met github tijdens het opstarten om te checken voor updates - + Connect to the internet to fetch HUSH prices Verbind met het internet om de HUSH prijs op te halen - + Fetch HUSH prices Haal HUSH prijzen op - + Explorer - + Tx Explorer URL - + Address Explorer URL - + Testnet Tx Explorer URL - + Testnet Address Explorer URL - + Troubleshooting Probleemoplossing - + Reindex Reindex - + Rescan the blockchain for any missing wallet transactions and to correct your wallet balance. This may take several hours. You need to restart SilentDragon for this to take effect Herscan de blockchain for missende wallet.dat transacties en om je wallet saldo te corrigeren. Dit kan enkele uren duren. U moet SilentDragon opnieuw opstarten om dit te activeren - + Rescan Rescan - + Rebuild the entire blockchain from the genesis block, by rescanning all the block files. This may take several hours to days, depending on your hardware. You need to restart SilentDragon for this to take effect Herbouw de gehele blockchain vanuit het genesis block door het herscannen van alle block bestanden. Dit kan enkele uren duren. U moet SilentDragon opnieuw opstarten om dit te activeren - + + This code can greatly reduce the size of wallets and increase performance for service providers. It's designed mostly for exchanges and mining pools but anybody with a large wallet will benefit. + + + + + Enable Old Transaction Deletion + + + + + Consolidation + + + + + Deletetx + + + + + The new experimental Shielded Index (-zindex) which keeps track of many stats that can be seen via the new getchaintxstats RPC. These include shielded payments, anonymity set size and many other things. + + + + + Zindex + + + + + 100 + 100 + + + + Wallet.dat Size : + + + + + MB + + + + Clear History Geschiedenis wissen - + Remember shielded transactions Herinner afgeschermde transacties - + Allow custom fees Aangepaste kosten toestaan - + Allow overriding the default fees when sending transactions. Enabling this option may compromise your privacy since fees are transparent. Sta toe om de standard kosten te overschrijven wanneer een transactie wordt verstuurd. Wanneer dit wordt toegepast kan het zijn dat je transactie zichtbaar is omdat je kosten transparant zijn. - + Normally, change from t-Addresses goes to another t-Address. Checking this option will send the change to your shielded sapling address instead. Check this option to increase your privacy. Normaal gesproken gaat verandering van t-adressen naar een ander t-adres. Als u deze optie inschakelt, wordt de wijziging in plaats daarvan naar uw afgeschermde sapling adres verzonden. Vink deze optie aan om uw privacy te vergroten. - + Shield change from t-Addresses to your sapling address Afgeschermde wijziging van t-Adressen naar jouw sapling adres @@ -2234,6 +2312,14 @@ Je hebt nog onbevestigde transacties of je saldo is te laag voor een automatisch Saldo (%1) + + ViewKey + + + Viewing Key + + + about diff --git a/res/silentdragon_pt.qm b/res/silentdragon_pt.qm index c18891b..3b7885a 100644 Binary files a/res/silentdragon_pt.qm and b/res/silentdragon_pt.qm differ diff --git a/res/silentdragon_pt.ts b/res/silentdragon_pt.ts index 6fa2a36..9504cdb 100644 --- a/res/silentdragon_pt.ts +++ b/res/silentdragon_pt.ts @@ -77,200 +77,200 @@ Total - + Some transactions are not yet confirmed Existem transações não confirmadas ainda - + Address Balances Saldo dos Endereços - - + + Send Enviar - + From Endereço de partida - + Address Balance Saldo do Endereço - + Send To Enviar para - + Recipient Destinatário - - - + + + Address Endereço - + Address Book Agenda - - + + Amount Quantidade - + Max Available Máximo disponível - + Upload File Subir arquivo - - - + + + Memo Anexar recado - + Add Recipient Adicionar destinatário - + Recurring payment Pagamento recorrente - + Every month, starting 12-May-2012, for 6 payments Todo mês, a partir de 12 de maio de 2012, por 6 pagamentos - + Edit Schedule Editar programação - + Miner Fee Taxa de mineração - + 0 0 - + Cancel Cancelar - + Receive Receber - + Address Type Tipo de Endereço - + Market - + <html><head/><body><p align="center"><span style=" font-weight:600;">Hush Market Information</span></p></body></html> - + Market Cap - + 24H Volume - + Local Services - + Longest Chain - + Wallet Transactions - + Chain Transactions - + &Report a bug on Github - + &Send Duke Feedback &Enviar feedback do Duke - + &Hush Discord &Hush Discord - + &Hush Website &Hush site da Internet - + Pay HUSH &URI... Pagar HUSH &URI... - + Request HUSH... Solicitação HUSH... - + Validate Address Validar endereço @@ -287,216 +287,217 @@ z-Addr(Sprout) - + New Address Novo Endereço - + Label Etiqueta - + Update Label Atualizar - + Address balance Saldo do endereço - + Optional Opcional - - + + Export Private Key Exportar Chave Privada - + Transactions Transações - + hushd hushd - + You are currently not mining Você não está minerando atualmente - - + + + - - - - - - + + + + - - - - - - - - - - - - + + + + + + + + + + + + + + Loading... Carregando... - + Block height Altura do Bloco - + Network solution rate Taxa de soluções da rede - + Connections Conexões - - - - + + + - - - - - - - - - - - - + + + + + + + + + + + + + | | - + Shielded Address (Private, Anonymous) Endereço Blindado (Privado, Anônimo) - + Transparent Address (Public, Metadata-Leaking) Endereço transparente (público, vazamento de metadados) - + View All Addresses Ver todos os endereços - + Notarized Hash Hash Notarizado - + Notarized txid Txid Notarizado - + Notarized Lag Lag Notarizado - + KMD Version Versão KMD - + Protocol Version Versão do protocolo - + Version Versão - + P2P Port Porta P2P - + RPC Port Porta RPC - + Client Name Nome do cliente - + Next Halving Próxima metade - + &File &Arquivo - + &Help &Ajuda - + &Apps &Aplicações - + &Edit &Editar - + E&xit Sair - + &About &Sobre - + &Settings &Preferências - + Ctrl+P Ctrl+P @@ -505,103 +506,103 @@ &Doar - + Check github.com for &updates &Checar github.com por atualizações - + Sapling &turnstile Sapling &turnstile - + Ctrl+A, Ctrl+T Ctrl+A, Ctrl+T - + &Import private key &Importar chave privada - + &Export all private keys &Exportar todas as chaves privadas - + &z-board.net &z-board.net - + Ctrl+A, Ctrl+Z Ctrl+A, Ctrl+Z - + Address &book &Agenda de Endereços - + Ctrl+B Ctrl+B - + &Backup wallet.dat &Salvar wallet.dat - - + + Export transactions Transações de exportação - + Connect mobile &app Conectar &aplicativo móvel - + Ctrl+M Ctrl+M - + Tor configuration is available only when running an embedded hushd. A configuração do Tor está disponível apenas ao executar um hushd incorporado. - + You're using an external hushd. Please restart hushd with -rescan Você está usando um hushd externo. Por favor, reinicie o hushd com -rescan - + You're using an external hushd. Please restart hushd with -reindex Você está usando um hushd externo. Por favor, reinicie o hushd com -reindex - + Enable Tor Ativar Tor - + Connection over Tor has been enabled. To use this feature, you need to restart SilentDragon. A conexão através do Tor foi ativada. Para usar esse recurso, você precisa reiniciar o SilentDragon. - + Disable Tor Desativar Tor - + Connection over Tor has been disabled. To fully disconnect from Tor, you need to restart SilentDragon. A conexão através do Tor foi desativada. Para se desconectar totalmente do Tor, é necessário reiniciar o SilentDragon. @@ -634,17 +635,17 @@ Chaves importadas. Pode demorar alguns minutos para re-escanear a blockchain. Até lá, funcionalidades poderão estar limitadas - + Private key import rescan finished Re-escan de chave privada completo - SilentDragon needs to restart to rescan/reindex. SilentDragon will now close, please restart SilentDragon to continue - O SilentDragon precisa reiniciar para redigitalizar / reindexar. O SilentDragon agora será fechado. Reinicie o SilentDragon para continuar + O SilentDragon precisa reiniciar para redigitalizar / reindexar. O SilentDragon agora será fechado. Reinicie o SilentDragon para continuar - + + Restart SilentDragon Reinicie o SilentDragon @@ -657,177 +658,194 @@ As chaves serão importadas em seu nó hushd conectado - + Theme Change - - + + This change can take a few seconds. - + Currency Change - + + SilentDragon needs to restart to rescan,reindex,consolidation or deletetx. SilentDragon will now close, please restart SilentDragon to continue + + + + + SilentDragon needs to reindex for zindex. SilentDragon will now close, please restart SilentDragon to continue + + + + Some feedback about SilentDragon or Hush... Alguns comentários sobre SilentDragon ou Hush ... - + Send Duke some private and shielded feedback about Envie para Duke algum feedback privado e protegido sobre - + or SilentDragon ou SilentDragon - + Enter Address to validate Digite o endereço para validar - + Transparent or Shielded Address: Endereço transparente ou blindado: - + Paste HUSH URI Colar HUSH URI - + Error paying Hush URI Erro ao pagar o URI do Hush - + URI should be of the form 'hush:<addr>?amt=x&memo=y O URI deve ter o formato - + Please paste your private keys here, one per line Cole suas chaves privadas aqui, uma por linha - + The keys will be imported into your connected Hush node As chaves serão importadas para o nó Hush conectado - + The keys were imported! It may take several minutes to rescan the blockchain. Until then, functionality may be limited As chaves foram importadas! Pode levar alguns minutos para verificar novamente o blockchain. Até lá, a funcionalidade pode ser limitada - + Error Erro - + Error exporting transactions, file was not saved Erro ao exportar transações, o arquivo não foi salvo - + No wallet.dat Nenhum wallet.data - + Couldn't find the wallet.dat on this computer Não foi localizado o wallet.dat nesse computador - + You need to back it up from the machine hushd is running on Você precisar salvar a partir da máquina que hushd está rodando - + Backup wallet.dat Salvar wallet.dat - + Couldn't backup Não foi possível salvar - + Couldn't backup the wallet.dat file. Não foi possível salvar o arquivo wallet.dat. - + You need to back it up manually. Você precisar salvá-lo manualmente. - + These are all the private keys for all the addresses in your wallet YOUR_TRANSLATION_HERE - + Private key for Chave privada para - + + Save File Salvar Arquivo - + + Unable to open file Não foi possível abrir o arquivo - - + + Copy address Copiar endereço - - - + + + Copied to clipboard Copiado - + Get private key Obter chave privada - + + Get viewing key + + + + Shield balance to Sapling Blindar saldo para Sapling - - + + View on block explorer Ver no explorador de blocos - + Address Asset Viewer Endereço Asset Viewer - + Convert Address Converter Endereço @@ -836,47 +854,47 @@ Migrar para Sapling - + Copy txid Copiar txid - + Copy block explorer link - + View Payment Request Exibir solicitação de pagamento - + View Memo Ver Recado - + Reply to Responder a - + Created new t-Addr Criar novo t-Addr - + Copy Address Copiar endereço - + Address has been previously used O endereço foi usado anteriormente - + Address is unused Endereço não utilizado @@ -956,12 +974,27 @@ não se parece com um z-Address Erro na Transação - + + Please wait... + + + + + Computing your transaction + + + + Computing transaction: - + + Done! + + + + From Address is Invalid! @@ -970,17 +1003,17 @@ não se parece com um z-Address Endereço de partida inválido - + Recipient Address Endereço destinatário - + is Invalid é Inválido - + Amount '%1' is invalid! O valor '%1' é inválido! @@ -1080,27 +1113,27 @@ não se parece com um z-Address QObject - + Attempting autoconnect Tentando conectar-se automaticamente - + Starting embedded hushd Iniciando hushd acoplado - + hushd is set to run as daemon erro no hushd - + Waiting for hushd Esperando pelo hushd - + You have hushd set to start as a daemon, which can cause problems with SilentDragon .Please remove the following line from your HUSH3.conf and restart SilentDragon @@ -1124,7 +1157,7 @@ Se você iniciou hushd anteriormente com parâmetros customizados você pode pre Se ainda assim não der certo, por favor rode hushd manualmente. - + Couldn't connect to hushd configured in HUSH3.conf. Not starting embedded hushd because --no-embedded was passed @@ -1133,37 +1166,37 @@ Not starting embedded hushd because --no-embedded was passed Não iniciando hushd acoplado porque nenhum foi passado como parâmetro - + Hide Advanced Config Ocultar configuração avançada - + Show Advanced Config Mostrar configuração avançada - + Choose data directory Escolha o diretório de dados - + All Downloads Finished Successfully! Todos os downloads terminaram com sucesso! - + Couldn't download params. Please check the help site for more info. Não foi possível baixar os parâmetros. Por favor, verifique o site de ajuda para mais informações. - + The process returned O processo retornou - + Couldn't start the embedded hushd. Please try restarting. @@ -1180,108 +1213,108 @@ Se você iniciou anteriormente o hushd com argumentos personalizados, pode ser n Se tudo mais falhar, execute o hushd manualmente. - + Could not create HUSH3.conf. Não foi possível criar o HUSH3.conf. - - + + Downloading Baixando - + more remaining ) faltando ) - + MB of MB de - + MB at MB a - + This may take several hours, grab some popcorn Isso pode levar várias horas, pegue um pouco de pipoca - + There was an error! : Havia um erro! : - + Downloading blocks Baixando blocos - + Block height Altura do bloco - + Syncing Sincronizando - + Connected Conectado - + testnet: testnet: - + Connected to hushd Conectado ao hushd - + There was an error connecting to hushd. The error was Ocorreu um erro conectando ao hushd. O erro foi - + transaction computing. - + Please enhance your calm and wait for SilentDragon to exit - + Waiting for hushd to exit, y'all - + Transaction - + The transaction with id A transação com id - + failed. The error was falhou. O erro foi - + failed falhou @@ -1290,7 +1323,7 @@ Se tudo mais falhar, execute o hushd manualmente. Tx - + hushd has no peer connections! Network issues? O hushd não tem conexões de pares! Problemas de rede? @@ -1299,12 +1332,12 @@ Se tudo mais falhar, execute o hushd manualmente. gerando transação. Isso pode levar alguns minutos. - + Update Available Atualização disponível - + A new release v%1 is available! You have v%2. Would you like to visit the releases page? @@ -1313,12 +1346,12 @@ Would you like to visit the releases page? Você gostaria de visitar a página de lançamentos? - + No updates available Nenhuma atualização disponível - + You already have the latest release v%1 Você já tem a versão mais recente v%1 @@ -1331,17 +1364,17 @@ Would you like to visit the releases page? Esperando hushd finalizar - + failed. Please check the help site for more info falhou. Por favor, cheque o site de ajuda para mais informações - + hushd error erro no hushd - + A manual connection was requested, but the settings are not configured. Please set the host/port and user/password in the Edit->Settings menu. @@ -1350,7 +1383,7 @@ Please set the host/port and user/password in the Edit->Settings menu. - + Could not connect to hushd configured in settings. Please set the host/port and user/password in the Edit->Settings menu. @@ -1359,24 +1392,24 @@ Please set the host/port and user/password in the Edit->Settings menu. - + Authentication failed. The username / password you specified was not accepted by hushd. Try changing it in the Edit->Settings menu Autenticação falhou. O usuário/senha especificado não foi aceitado pelo hushd. Tente alterá-los em Editar->Preferências - + Your hushd is starting up. Please wait. Seu hushd está iniciando. Por favor aguarde. - - + + Connection Error Erro na Conexão - - + + Transaction Error Erro na transação @@ -1385,8 +1418,8 @@ Por favor, coloque o host/porta e usuário/senha no menu Editar>Preferências Ocorreu um erro enviando a transação. O erro foi: - - + + No Connection Sem Conexão @@ -1513,12 +1546,12 @@ Você possui fundos não confirmados ou o saldo é muito baixo para uma migraç Conectado pela Internet através do serviço SilentDragon wormhole - + Node is still syncing. O nó ainda está sincronizando. - + No addresses with enough balance to spend! Try sweeping funds into one address @@ -1686,17 +1719,17 @@ Você possui fundos não confirmados ou o saldo é muito baixo para uma migraç Opções - + Check github for updates at startup - + Connect to the Tor network via SOCKS proxy running on 127.0.0.1:9050. Please note that you'll have to install and run the Tor service externally. Conecte-se à rede Tor através do proxy SOCKS executando em 127.0.0.1:9050. Observe que você precisará instalar e executar o serviço Tor externamente. - + Shielded transactions are saved locally and shown in the transactions tab. If you uncheck this, shielded transactions will not appear in the transactions tab. Transações blindadas são salvas localmente e exibidas na aba de transações. Se desmarcado, transações blindadas não aparecerão na aba de transações. @@ -1706,342 +1739,387 @@ Você possui fundos não confirmados ou o saldo é muito baixo para uma migraç - + Local Currency - + AED - + ARS - + AUD - + BDT - + BHD - + BMD - + BRL - + BTC - + CAD - + CHF - + CLP - + CNY - + CZK - + DKK - + EUR - + GBP - + HKD - + HUF - + IDR - + ILS - + INR - + JPY - + KRW - + KWD - + LKR - + PKR - + MXN - + NOK - + NZD - + RUB - + SAR - + SEK - + SGD - + THB - + TRY - + TWD - + UAH - + USD - + VEF - + VND - + XAG - + XAU - + ZAR - + default - + blue - + light - + dark - + Connect via Tor Conectar via Tor - + Connect to github on startup to check for updates - + Connect to the internet to fetch HUSH prices - + Fetch HUSH prices - + Explorer - + Tx Explorer URL - + Address Explorer URL - + Testnet Tx Explorer URL - + Testnet Address Explorer URL - + Troubleshooting - + Reindex Reindex - + Rescan the blockchain for any missing wallet transactions and to correct your wallet balance. This may take several hours. You need to restart SilentDragon for this to take effect Analise novamente o blockchain em busca de transações ausentes na carteira e corrija seu saldo. Isso pode levar várias horas. Você precisa reiniciar o SilentDragon para que isso entre em vigor - + Rescan Rescan - + Rebuild the entire blockchain from the genesis block, by rescanning all the block files. This may take several hours to days, depending on your hardware. You need to restart SilentDragon for this to take effect Reconstrua toda a blockchain a partir do bloco genesis, redigitalizando todos os arquivos do bloco. Isso pode levar várias horas a dias, dependendo do seu hardware. Você precisa reiniciar o SilentDragon para que isso entre em vigor - + + This code can greatly reduce the size of wallets and increase performance for service providers. It's designed mostly for exchanges and mining pools but anybody with a large wallet will benefit. + + + + + Enable Old Transaction Deletion + + + + + Consolidation + + + + + Deletetx + + + + + The new experimental Shielded Index (-zindex) which keeps track of many stats that can be seen via the new getchaintxstats RPC. These include shielded payments, anonymity set size and many other things. + + + + + Zindex + + + + + 100 + 100 + + + + Wallet.dat Size : + + + + + MB + + + + Clear History Limpar histórico - + Remember shielded transactions Lembrar transações blindadas - + Allow custom fees Permitir taxas customizadas - + Allow overriding the default fees when sending transactions. Enabling this option may compromise your privacy since fees are transparent. Permite configurar as taxas de transação manualmente. Ativar essa opção pode comprometer sua privacidade uma vez que as taxas são transparentes na rede. - + Normally, change from t-Addresses goes to another t-Address. Checking this option will send the change to your shielded sapling address instead. Check this option to increase your privacy. Normalmente, trocos de um t-Address vão para outro t-Address. Ativar essa opção irá fazer com que o troco seja encaminhando para um endereço blindado. Ative essa opção para aumentar sua privacidade. - + Shield change from t-Addresses to your sapling address Blinde trocos de t-Addresses para seu endereço Sapling @@ -2165,6 +2243,14 @@ Você possui fundos não confirmados ou o saldo é muito baixo para uma migraç Saldo (%1) + + ViewKey + + + Viewing Key + + + about diff --git a/res/silentdragon_ru.qm b/res/silentdragon_ru.qm index e1f7bb1..df53980 100644 Binary files a/res/silentdragon_ru.qm and b/res/silentdragon_ru.qm differ diff --git a/res/silentdragon_ru.ts b/res/silentdragon_ru.ts index 913bf05..44804c3 100644 --- a/res/silentdragon_ru.ts +++ b/res/silentdragon_ru.ts @@ -93,130 +93,130 @@ Всего - + Some transactions are not yet confirmed Некоторые транзакции еще не подтверждены - + Address Balances Балансы по адресам - - + + Send Отправить - + From Откуда - + Address Balance Баланс адреса - + Send To Куда - + Recipient Получатель - - - + + + Address Адрес - + Address Book Адресная книга - - + + Amount Количество - + Max Available Максимальное количество - + Upload File - - - + + + Memo Метка - + Add Recipient Добавить получателя - + Recurring payment Периодический платеж - + Every month, starting 12-May-2012, for 6 payments Каждый месяц, начиная с 12-Май-2012, 6 платежей - + Edit Schedule Изменить расписание - + Miner Fee Комиссия майнерам - + 0 0 - + Cancel Отменить - + Receive Получить - + Address Type Тип адреса - + hushd hushd @@ -233,48 +233,48 @@ Запрос safecoin... - + Validate Address Проверить адрес - + Shielded Address (Private, Anonymous) Экранированный адрес (приватный, анонимный) - + Transparent Address (Public, Metadata-Leaking) Прозрачный адрес (общедоступный, утечка метаданных) - + New Address Новый адрес - + Label Метка - + Update Label Обновить метку - + Address balance Баланс адреса - + Optional Необязательно - - + + Export Private Key Экспорт приватного ключа @@ -283,306 +283,307 @@ Ваш узел все еще синхронизируется, баланс не может быть обновлен - + View All Addresses Показать все адреса - + Transactions Транзакции - + You are currently not mining Майнинг отключен - - + + + - - - - - - + + + + - - - - - - - - - - - - + + + + + + + + + + + + + + Loading... Загрузка... - + Block height Высота блока - + Network solution rate Скорость сети - + Connections Подключений - - - - + + + - - - - - - - - - - - - + + + + + + + + + + + + + | | - + Market - + <html><head/><body><p align="center"><span style=" font-weight:600;">Hush Market Information</span></p></body></html> - + Market Cap - + 24H Volume - + Notarized Hash - + Notarized txid - + Notarized Lag - + KMD Version - + Protocol Version - + Version - + P2P Port - + RPC Port - + Client Name - + Next Halving - + Local Services - + Longest Chain - + Wallet Transactions - + Chain Transactions - + &File &Файл - + &Help &Помощь - + &Apps &Дополнения - + &Edit &Редактировать - + E&xit &Выход - + &About &О кошельке - + &Report a bug on Github - + &Settings &Настройки - + Ctrl+P Ctrl+P - + &Send Duke Feedback &Пожертвование для Duke - + &Hush Discord &Hush Discord - + &Hush Website &Сайт Hush - + Check github.com for &updates &Проверить github.com на обновления - + Sapling &turnstile - + Ctrl+A, Ctrl+T - + &Import private key &Импорт приватного ключа - + &Export all private keys &Экспорт всех приватных ключей - + &z-board.net - + Ctrl+A, Ctrl+Z - + Address &book &Адресная книга - + Ctrl+B Ctrl+B - + &Backup wallet.dat &Сохранить wallet.dat - - + + Export transactions Экспорт транзакций - + Pay HUSH &URI... - + Connect mobile &app - + Ctrl+M - + Request HUSH... @@ -595,32 +596,32 @@ Сообщить об ошибке... - + Enable Tor Включить Tor - + Connection over Tor has been enabled. To use this feature, you need to restart SilentDragon. Соединение через Tor было включено. Чтобы использовать эту функцию, вам нужно перезапустить SilentDragon. - + Disable Tor Отключить Tor - + Connection over Tor has been disabled. To fully disconnect from Tor, you need to restart SilentDragon. Соединение через Tor было отключено. Чтобы полностью отключиться от Tor, вам нужно перезапустить SilentDragon. - + Some feedback about SilentDragon or Hush... - + Send Duke some private and shielded feedback about @@ -633,17 +634,17 @@ Ключи были импортированы. Повторное сканирование блокчейна может занять несколько минут. До тех пор функциональность может быть ограничена - + Private key import rescan finished Повторное сканирование приватного ключа завершено - SilentDragon needs to restart to rescan/reindex. SilentDragon will now close, please restart SilentDragon to continue - SilentDragon необходимо перезапустить для повторного сканирования/переиндексации. Перезапустите SilentDragon, чтобы продолжить + SilentDragon необходимо перезапустить для повторного сканирования/переиндексации. Перезапустите SilentDragon, чтобы продолжить - + + Restart SilentDragon Перезапуск SilentDragon @@ -660,157 +661,174 @@ Ключи будут импортированы в ваш подключенный узел hushd - + Theme Change - - + + This change can take a few seconds. - + Currency Change - + + SilentDragon needs to restart to rescan,reindex,consolidation or deletetx. SilentDragon will now close, please restart SilentDragon to continue + + + + + SilentDragon needs to reindex for zindex. SilentDragon will now close, please restart SilentDragon to continue + + + + Paste HUSH URI - + Error paying Hush URI - + URI should be of the form 'hush:<addr>?amt=x&memo=y - + Please paste your private keys here, one per line - + The keys will be imported into your connected Hush node - + The keys were imported! It may take several minutes to rescan the blockchain. Until then, functionality may be limited - + Error Ошибка - + Error exporting transactions, file was not saved Ошибка экспорта транзакций, файл не был сохранен - + No wallet.dat Нет wallet.dat - + Couldn't find the wallet.dat on this computer Не удалось найти wallet.dat на этом компьютере - + You need to back it up from the machine hushd is running on Вы должны сделать резервную копию с машины, на которой работает hushd - + Backup wallet.dat Сохранить wallet.dat - + Couldn't backup Не удалось сохранить - + Couldn't backup the wallet.dat file. Не удалось сохранить файл wallet.dat - + You need to back it up manually. Вам нужно сделать резервную копию вручную. - + These are all the private keys for all the addresses in your wallet Это все приватные ключи для всех адресов в вашем кошельке - + Private key for Приватный ключ для - + + Save File Сохранить файл - + + Unable to open file Невозможно открыть файл - - + + Copy address Скопировать адрес - - - + + + Copied to clipboard Скопировано в буфер обмена - + Get private key Получить приватный ключ - + + Get viewing key + + + + Shield balance to Sapling Shield balance to Sapling - - + + View on block explorer Посмотреть в проводнике блоков - + Address Asset Viewer - + Convert Address - + Copy block explorer link @@ -819,7 +837,7 @@ Migrate to Sapling - + Copy txid Скопировать txid @@ -836,17 +854,17 @@ Обновить - + Tor configuration is available only when running an embedded hushd. Конфигурация Tor доступна только при работе со встроенным hushd. - + You're using an external hushd. Please restart hushd with -rescan Вы используете внешний hushd. Пожалуйста, перезапустите hushd с -rescan - + You're using an external hushd. Please restart hushd with -reindex Вы используете внешний hushd. Пожалуйста, перезапустите hushd с -reindex @@ -923,17 +941,17 @@ Отправить для OleksandrBlack благодарность за - + or SilentDragon или SilentDragon - + Enter Address to validate Введите адрес для проверки - + Transparent or Shielded Address: Прозрачный или экранированный адрес: @@ -954,37 +972,37 @@ Это может занять несколько минут. Загрузка... - + View Payment Request Посмотреть запрос на оплату - + View Memo Посмотреть метку - + Reply to Ответить на - + Created new t-Addr Создать новый t-Addr (R) - + Copy Address Копировать адрес - + Address has been previously used Адрес был ранее использован - + Address is unused Адрес не используется @@ -1072,12 +1090,27 @@ doesn't look like a z-address Ошибка транзакции - + + Please wait... + + + + + Computing your transaction + + + + Computing transaction: - + + Done! + + + + From Address is Invalid! @@ -1086,17 +1119,17 @@ doesn't look like a z-address От адреса неверно - + Recipient Address Адрес получателя - + is Invalid является недействительным - + Amount '%1' is invalid! Количество '%1' является недействительным! @@ -1196,57 +1229,57 @@ doesn't look like a z-address QObject - + Attempting autoconnect Попытка автоподключения - + Starting embedded hushd Запуск сервиса hushd - + hushd is set to run as daemon hushd настроен на запуск в качестве демона - + Waiting for hushd Ожидаем hushd - + Hide Advanced Config Скрыть расширенную конфигурацию - + Show Advanced Config Показать расширенную конфигурацию - + Choose data directory Выберите каталог - + All Downloads Finished Successfully! Все загрузки успешно завершены! - + Couldn't download params. Please check the help site for more info. Не удалось загрузить параметры. Пожалуйста, проверьте сайт справки для получения дополнительной информации. - + The process returned Процесс вернулся - + You have hushd set to start as a daemon, which can cause problems with SilentDragon .Please remove the following line from your HUSH3.conf and restart SilentDragon @@ -1257,7 +1290,7 @@ daemon=1 daemon=1 - + Couldn't start the embedded hushd. Please try restarting. @@ -1274,7 +1307,7 @@ If all else fails, please run hushd manually. Если ничего не помогает, запустите hushd вручную. - + Couldn't connect to hushd configured in HUSH3.conf. Not starting embedded hushd because --no-embedded was passed @@ -1283,38 +1316,38 @@ Not starting embedded hushd because --no-embedded was passed Не запускается встроенный hushd, потому что --no-embedded был пропущен - + Could not create HUSH3.conf. - - + + Downloading Загрузка - + more remaining ) осталось ) - + MB of MB из - + MB at MB в - + hushd error ошибка hushd - + Could not connect to hushd configured in settings. Please set the host/port and user/password in the Edit->Settings menu. @@ -1323,27 +1356,27 @@ Please set the host/port and user/password in the Edit->Settings menu. - + Authentication failed. The username / password you specified was not accepted by hushd. Try changing it in the Edit->Settings menu Аутентификация не удалась. username / password, которые вы указали, не были приняты hushd. Попробуйте изменить его в меню Редактировать-> Настройки - + Your hushd is starting up. Please wait. Ваш hushd запускается. Пожалуйста, подождите. - + This may take several hours, grab some popcorn - + There was an error! : - + Downloading blocks Загрузка блоков @@ -1352,52 +1385,52 @@ Please set the host/port and user/password in the Edit->Settings menu.Готово! Благодарим Вас за помощь в защите сети Hush, запустив полный узел. - + Block height Высота блоков - + Syncing Синхронизация - + Connected Подключено - + testnet: testnet: - + Connected to hushd Подключен к hushd - + hushd has no peer connections! Network issues? - + There was an error connecting to hushd. The error was При подключении к hushd произошла ошибка. Ошибка - + transaction computing. - + Please enhance your calm and wait for SilentDragon to exit - + Waiting for hushd to exit, y'all @@ -1414,22 +1447,22 @@ Please set the host/port and user/password in the Edit->Settings menu.не подтверждено - + Transaction - + The transaction with id Транзакция с id - + failed. The error was не удалось. Ошибка - + failed ошибка @@ -1446,12 +1479,12 @@ Please set the host/port and user/password in the Edit->Settings menu. tx вычисляется. Это может занять несколько минут. - + Update Available Доступно обновление - + A new release v%1 is available! You have v%2. Would you like to visit the releases page? @@ -1460,12 +1493,12 @@ Would you like to visit the releases page? Хотели бы вы посетить страницу релизов? - + No updates available Нет доступных обновлений - + You already have the latest release v%1 У вас уже есть последняя версия v%1 @@ -1478,12 +1511,12 @@ Would you like to visit the releases page? Ожидание остановки hushd - + failed. Please check the help site for more info не удалось. Пожалуйста, проверьте сайт справки для получения дополнительной информации - + A manual connection was requested, but the settings are not configured. Please set the host/port and user/password in the Edit->Settings menu. @@ -1496,14 +1529,14 @@ Please set the host/port and user/password in the Edit->Settings menu.Это может занять несколько часов - - + + Connection Error Ошибка соединения - - + + Transaction Error ">Ошибка транзакции @@ -1512,8 +1545,8 @@ Please set the host/port and user/password in the Edit->Settings menu.Произошла ошибка при отправке транзакции. Ошибка была: - - + + No Connection Нет соединения @@ -1640,12 +1673,12 @@ You either have unconfirmed funds or the balance is too low for an automatic mig Подключение через Интернет с помощью сервиса wormhol SilentDragon - + Node is still syncing. Узел все еще синхронизируется. - + No addresses with enough balance to spend! Try sweeping funds into one address @@ -1977,22 +2010,22 @@ You either have unconfirmed funds or the balance is too low for an automatic mig Опции - + Check github for updates at startup Проверьте github на наличие обновлений при запуске - + Connect to the Tor network via SOCKS proxy running on 127.0.0.1:9050. Please note that you'll have to install and run the Tor service externally. Подключаться к сети Tor через SOCKS-прокси, работающий на 127.0.0.1:9050. Обратите внимание, что вам необходимо устанавливать и запускать сервис Tor извне. - + Connect to the internet to fetch HUSH prices Подключаться к Интернету, чтобы получить текущую цену HUSH - + Fetch HUSH prices Получить цены HUSH/USD @@ -2061,12 +2094,12 @@ You either have unconfirmed funds or the balance is too low for an automatic mig Стандартно, это: 0333b9796526ef8de88712a649d618689a1de1ed1adf9fb5ec415f31e560b1f9a3 - + Shielded transactions are saved locally and shown in the transactions tab. If you uncheck this, shielded transactions will not appear in the transactions tab. Экранированные транзакции сохраняются локально и отображаются на вкладке транзакций. Если снять этот флажок, экранированные транзакции не будут отображаться на вкладке транзакций. - + Connect via Tor Подключаться через Tor @@ -2076,327 +2109,372 @@ You either have unconfirmed funds or the balance is too low for an automatic mig - + Local Currency - + AED - + ARS - + AUD - + BDT - + BHD - + BMD - + BRL - + BTC - + CAD - + CHF - + CLP - + CNY - + CZK - + DKK - + EUR - + GBP - + HKD - + HUF - + IDR - + ILS - + INR - + JPY - + KRW - + KWD - + LKR - + PKR - + MXN - + NOK - + NZD - + RUB - + SAR - + SEK - + SGD - + THB - + TRY - + TWD - + UAH - + USD - + VEF - + VND - + XAG - + XAU - + ZAR - + default - + blue - + light - + dark - + Connect to github on startup to check for updates Подключаться к github при запуске, чтобы проверить наличие обновлений - + Explorer - + Tx Explorer URL - + Address Explorer URL - + Testnet Tx Explorer URL - + Testnet Address Explorer URL - + Troubleshooting Исправление проблем - + Reindex Reindex - + Rescan the blockchain for any missing wallet transactions and to correct your wallet balance. This may take several hours. You need to restart SilentDragon for this to take effect Повторно сканирует блокчейн для любых пропущенных транзакций кошелька и исправляет баланс вашего кошелька. Это может занять несколько часов. Вам нужно перезапустить SilentDragon, чтобы это вступило в силу - + Rescan Rescan - + Rebuild the entire blockchain from the genesis block, by rescanning all the block files. This may take several hours to days, depending on your hardware. You need to restart SilentDragon for this to take effect Перестраивает весь блокчейн из блока генезиса путем повторного сканирования всех файлов блоков. Это может занять несколько часов или дней, в зависимости от вашего оборудования. Вам нужно перезапустить SilentDragon, чтобы это вступило в силу - + + This code can greatly reduce the size of wallets and increase performance for service providers. It's designed mostly for exchanges and mining pools but anybody with a large wallet will benefit. + + + + + Enable Old Transaction Deletion + + + + + Consolidation + + + + + Deletetx + + + + + The new experimental Shielded Index (-zindex) which keeps track of many stats that can be seen via the new getchaintxstats RPC. These include shielded payments, anonymity set size and many other things. + + + + + Zindex + + + + + 100 + 100 + + + + Wallet.dat Size : + + + + + MB + + + + Clear History Очистить историю - + Remember shielded transactions Запоминать экранированные транзакции - + Allow custom fees Разрешить настраиваемую комиссию - + Allow overriding the default fees when sending transactions. Enabling this option may compromise your privacy since fees are transparent. Разрешить изменение размера комиссии по умолчанию при отправке транзакций. Включение этой опции может поставить под угрозу вашу конфиденциальность, так как комисия прозрачна. - + Normally, change from t-Addresses goes to another t-Address. Checking this option will send the change to your shielded sapling address instead. Check this option to increase your privacy. Обычно сдача с прозрачных адресов переходит на другой прозрачный адрес. Если вы выберете эту опцию, вы отправите сдачу на ваш экранированный адрес. Отметьте эту опцию, чтобы увеличить вашу конфиденциальность. - + Shield change from t-Addresses to your sapling address Экранирование сдачи с прозрачных адресов на ваш экранированный адрес @@ -2496,6 +2574,14 @@ You either have unconfirmed funds or the balance is too low for an automatic mig Баланс (%1) + + ViewKey + + + Viewing Key + + + about diff --git a/res/silentdragon_sr.qm b/res/silentdragon_sr.qm index 1f86dfc..7f870cf 100644 Binary files a/res/silentdragon_sr.qm and b/res/silentdragon_sr.qm differ diff --git a/res/silentdragon_sr.ts b/res/silentdragon_sr.ts index 804ce32..3bba701 100644 --- a/res/silentdragon_sr.ts +++ b/res/silentdragon_sr.ts @@ -73,480 +73,481 @@ Suma - + Some transactions are not yet confirmed Neke transakcije još nisu potvrđene - + Address Balances Saldo na adresi - - + + Send Slati - + From Od - + Address Balance Saldo na adresi - + Send To Slati na - + Recipient Primalac - - - + + + Address Adresa - + Address Book Adresar - - + + Amount Količina - + Max Available Max dostupno - + Upload File Dodaj datoteku - - - + + + Memo Poruka (memo) - + Add Recipient Dodaj primaoca - + Recurring payment Ponovno plaćanje - + Every month, starting 12-May-2012, for 6 payments Svaki mesec, od 12 Maja 2012, u 6 rata - + Edit Schedule Uredi raspored - + Miner Fee Naknada za rudarenje - + 0 0 - + Cancel Otkaži - + Receive Primiti - + Address Type Vrsta adrese - + Shielded Address (Private, Anonymous) Zaštićena adresa (Privatna, Anonimna) - + Transparent Address (Public, Metadata-Leaking) Transparentna adresa (Javno, Curenje Metadata) - + New Address Nova adresa - + View All Addresses Pogledaj sve adrese - + Label Oznaka - + Update Label Ažuriraj oznaku - + Address balance Saldo na adresi - + Optional Opciono - - + + Export Private Key Izvoz privatnog ključa - + Transactions Transakcije - + hushd hushd - + You are currently not mining Trenutno ne rudarite - - + + + - - - - - - + + + + - - - - - - - - - - - - + + + + + + + + + + + + + + Loading... Učitavanje... - + Market - + <html><head/><body><p align="center"><span style=" font-weight:600;">Hush Market Information</span></p></body></html> - + Market Cap - + 24H Volume - + Block height Visina bloka - + Notarized Hash Potvrđen hash - - - - + + + - - - - - - - - - - - - + + + + + + + + + + + + + | | - + Notarized txid Potvrđen txid - + Notarized Lag Potvrđeno zaostajanje - + KMD Version KMD verzija - + Protocol Version Verzija protokola - + Version Verzija - + P2P Port P2P port - + RPC Port RPC port - + Client Name Ime klijenta - + Next Halving Sledeći halving - + Local Services Lokalni servisi - + Longest Chain Najduži niz - + Wallet Transactions Transakcije u novčaniku - + Chain Transactions - + Network solution rate Snaga mreže - + Connections Povezanost - + &File &Datoteka - + &Help &Pomoć - + &Apps &Apps - + &Edit &Uredi - + E&xit &Izlaz - + &About &O - + &Report a bug on Github - + &Settings &Podešavanja - + Ctrl+P Ctrl+P - + &Send Duke Feedback &Pošalji Duke Feedback - + &Hush Discord &Hush Discord - + &Hush Website &Hush Web stranica - + Check github.com for &updates Proveri na github.com &dopune - + Sapling &turnstile Sapling &čvorište - + Ctrl+A, Ctrl+T Ctrl+A, Ctrl+T - + &Import private key &Uvoz privatnog ključa - + &Export all private keys &Izvoz svih privatnih ključeva - + &z-board.net &z-board.net - + Ctrl+A, Ctrl+Z Ctrl+A, Ctrl+Z - + Address &book Adresna &knjiga - + Ctrl+B Ctrl+B - + &Backup wallet.dat &Rezervna kopija wallet.dat - - + + Export transactions Izvoz transakcija - + Pay HUSH &URI... Hush plaćanje &URI... - + Connect mobile &app Spoji mobilnu &app - + Ctrl+M Ctrl+M - + Request HUSH... Zatraži HUSH... - + Validate Address Potvrdi adresu @@ -559,272 +560,289 @@ Molim ponovo pokrenite SilentDragon kako bi primenili temu - + Theme Change - - + + This change can take a few seconds. - + Currency Change - + Tor configuration is available only when running an embedded hushd. Tor postavke su dostupne samo ako je pokrenut integrirani hushd. - + You're using an external hushd. Please restart hushd with -rescan Koristite vanjski hushd. Molim ponovo pokrenite hushd sa -rescan - + You're using an external hushd. Please restart hushd with -reindex Koristite vanjski hushd. Molim ponovo pokrenite hushd sa -reindex - + Enable Tor Omogući Tor - + Connection over Tor has been enabled. To use this feature, you need to restart SilentDragon. Veza putem Tora je omogućena. Ako želite koristiti ovo svojstvo, morate ponovo pokrenuti SilentDragon. - + Disable Tor Onemogući Tor - + Connection over Tor has been disabled. To fully disconnect from Tor, you need to restart SilentDragon. Veza putem Tora je onemogućena. Ako se želite potpuno maknuti sa Tora, morate ponovo pokrenuti SilentDragon. - SilentDragon needs to restart to rescan/reindex. SilentDragon will now close, please restart SilentDragon to continue - SilentDragon se mora ponovo pokrenuti za rescan/reindex. SilentDragon će se sada zatvoriti, molim ponovn pokrenite SilentDragon za nastavak + SilentDragon se mora ponovo pokrenuti za rescan/reindex. SilentDragon će se sada zatvoriti, molim ponovn pokrenite SilentDragon za nastavak - + + Restart SilentDragon Ponovo pokrenite SilentDragon - + + SilentDragon needs to reindex for zindex. SilentDragon will now close, please restart SilentDragon to continue + + + + Some feedback about SilentDragon or Hush... Neke povratne informacije o SilentDragonu ili Hushu... - + Send Duke some private and shielded feedback about Pošaljite Duke privatnu i zaštićenu povratnu informaciju o - + or SilentDragon ili SilentDragon - + Enter Address to validate Unesite adresu za potvrdu - + Transparent or Shielded Address: Transparentna ili Zaštićena adresa: - + Private key import rescan finished Dovršen rescan uvoza privatnog ključa - + Paste HUSH URI Zalepi HUSH URI - + Error paying Hush URI Greška prilikom plaćanja Hush URI - + URI should be of the form 'hush:<addr>?amt=x&memo=y URI treba biti formata 'hush:<addr>?amt=x&memo=y - + Please paste your private keys here, one per line Molim vas zalepite vaše privatne ključeve ovdje, jedan ključ po redu - + The keys will be imported into your connected Hush node Ključevi će biti unešeni u vaš povezani Hush čvor - + The keys were imported! It may take several minutes to rescan the blockchain. Until then, functionality may be limited Ključevi su unešeni. Rescan blockchaina može potrajati i do nekoliko minuta. Do tada su limitirane funkcionalnosti - + Error Greška - + Error exporting transactions, file was not saved Greška prilikom izvoza transakcija, datoteka nije spremljena - + No wallet.dat Nema wallet.dat - + Couldn't find the wallet.dat on this computer Ne mogu pronaći wallet.dat na ovom računaru - + You need to back it up from the machine hushd is running on Morate napraviti rezervnu kopiju na računaru na kojem je aktivan hushd - + Backup wallet.dat Rezervna kopija wallet.dat - + Couldn't backup Nije moguće napraviti rezervnu kopiju - + Couldn't backup the wallet.dat file. Nije moguće napraviti rezervnu kopiju wallet.dat datoteke. - + You need to back it up manually. Morate ručno napraviti rezervnu kopiju. - + These are all the private keys for all the addresses in your wallet Ovo su svi privatni ključevi svih adresa u vašem novčaniku - + Private key for Privatni ključ za - + + Save File Spremi datoteku - + + SilentDragon needs to restart to rescan,reindex,consolidation or deletetx. SilentDragon will now close, please restart SilentDragon to continue + + + + + Unable to open file Nije moguće otvoriti datoteku - - + + Copy address Kopirajte adresu - - - + + + Copied to clipboard Kopirano u međuspremnik - + Get private key Dobavi privatni ključ - + + Get viewing key + + + + Shield balance to Sapling Zaštiti saldo u Sapling - - + + View on block explorer Pogledaj na blok exploreru - + Address Asset Viewer Preglednik adresa - + Convert Address Pretvorite adresu - + Copy txid Kopitajte txid - + Copy block explorer link - + View Payment Request Pogledajte zahtjev o plaćanju - + View Memo Pogledajte poruku (memo) - + Reply to Odgovorite - + Created new t-Addr Napravljena je nova transparentna adresa - + Copy Address Kopirajte adresu - + Address has been previously used Adresa je već korištena - + Address is unused Adresa nije korištena @@ -904,12 +922,27 @@ ne izgleda kao z-adresa Greška u transakciji - + + Please wait... + + + + + Computing your transaction + + + + Computing transaction: - + + Done! + + + + From Address is Invalid! @@ -922,17 +955,17 @@ ne izgleda kao z-adresa Neispravna adresa pošaljitelja - + Recipient Address Adresa primaoca - + is Invalid je neispravna - + Amount '%1' is invalid! Iznos '%1' je neispravan! @@ -1094,27 +1127,27 @@ ne izgleda kao z-adresa Izbrišite oznaku - + Attempting autoconnect Pokušaj automatskog spajanja - + Starting embedded hushd Pokrećem integrirani hushd - + hushd is set to run as daemon hushd je pokrenut u pozadini - + Waiting for hushd Čekam hushd - + You have hushd set to start as a daemon, which can cause problems with SilentDragon .Please remove the following line from your HUSH3.conf and restart SilentDragon @@ -1125,7 +1158,7 @@ daemon=1 deamon=1 - + Couldn't start the embedded hushd. Please try restarting. @@ -1142,12 +1175,12 @@ Ako ste već pokrenuli hushd sa prilagođenim argumentima, možda je potrebno po Ako ništa drugo ne radi, molimo pokrenite hushd ručno. - + The process returned Proces je odgovorio - + Couldn't connect to hushd configured in HUSH3.conf. Not starting embedded hushd because --no-embedded was passed @@ -1156,68 +1189,68 @@ Not starting embedded hushd because --no-embedded was passed Ne pokrećem integrirani hushd jer --no-embedded nije prilagođen - + Hide Advanced Config Sakrij naprednu konfiguraciju - + Show Advanced Config Prikaži naprednu konfiguraciju - + Choose data directory Izaberi popis datoteka - + Could not create HUSH3.conf. Nije moguće napraviti HUSH3.conf. - + All Downloads Finished Successfully! Sva preuzimanja su uspešno završena! - + Couldn't download params. Please check the help site for more info. Nije moguće preuzeti parametre. Za više informacija proverite na stranici Pomoć. - - + + Downloading Preuzimanje - + more remaining ) još preostaje ) - + MB of Mb od - + MB at MB uz - + failed. Please check the help site for more info neuspešno. Za više informacija proverite na stranici Pomoć - + hushd error hushd greška - + A manual connection was requested, but the settings are not configured. Please set the host/port and user/password in the Edit->Settings menu. @@ -1226,7 +1259,7 @@ Please set the host/port and user/password in the Edit->Settings menu. - + Could not connect to hushd configured in settings. Please set the host/port and user/password in the Edit->Settings menu. @@ -1235,85 +1268,85 @@ Please set the host/port and user/password in the Edit->Settings menu. - + Authentication failed. The username / password you specified was not accepted by hushd. Try changing it in the Edit->Settings menu Autorizacija neuspešna. Hushd nije prihvatio korisničko ime / lozinku koju ste uneli. Pokušajte to promeniti u Uredi->Podešavanja meniju - + Your hushd is starting up. Please wait. Hushd se pokreće. Molimo pričekajte. - + This may take several hours, grab some popcorn Ovo može potrajati nekoliko sati, donesite si kokice - - + + Connection Error Greška sa vezom - - + + Transaction Error Greška u transakciji - + There was an error! : Dogodila se greška! : - - + + No Connection Nema veze - + Downloading blocks Preuzimam blokove - + Block height Visina bloka - + Syncing Sinhronizacija - + Connected Spojeno - + testnet: testnet: - + Connected to hushd Spojeno na hushd - + hushd has no peer connections! Network issues? hushd nema vezu sa točkama na istoj razini! Možda imate problem sa mrežom? - + There was an error connecting to hushd. The error was Pojavila se greška prilikom spajanja na hushd. Greška je - + transaction computing. @@ -1322,12 +1355,12 @@ Molimo postavite host/port i korisnčko ime/lozinku u Uredi->Podešavanja men tx proračun. Ovo može potrajati nekoliko minuta. - + Update Available Dostupno ažuriranje - + A new release v%1 is available! You have v%2. Would you like to visit the releases page? @@ -1336,22 +1369,22 @@ Would you like to visit the releases page? Želite li posetiti stranicu sa izadnjima? - + No updates available Nema dostupnih ažuriranja - + You already have the latest release v%1 Već imate najnovije izdanje v%1 - + Please enhance your calm and wait for SilentDragon to exit Molimo pokušajte se strpiti i pričekajte da se SilentDragon zatvori - + Waiting for hushd to exit, y'all Pričekajte da hushd završi @@ -1360,22 +1393,22 @@ Would you like to visit the releases page? Tx - + failed neuspelo - + Transaction - + The transaction with id Transakcija sa ID - + failed. The error was nesupela. Greška je @@ -1414,12 +1447,12 @@ Would you like to visit the releases page? Spojeno preko Interneta putem SilentDragon usluge crvotočine - + Node is still syncing. Čvor se još uvek sinhronizuje. - + No addresses with enough balance to spend! Try sweeping funds into one address Ne možete trošiti jer nema adrese sa dovoljnim saldom. Pokušajte prebaciti sva sredstva na jednu adresu @@ -1588,360 +1621,405 @@ Would you like to visit the releases page? Teme - + Local Currency - + AED - + ARS - + AUD - + BDT - + BHD - + BMD - + BRL - + BTC - + CAD - + CHF - + CLP - + CNY - + CZK - + DKK - + EUR - + GBP - + HKD - + HUF - + IDR - + ILS - + INR - + JPY - + KRW - + KWD - + LKR - + PKR - + MXN - + NOK - + NZD - + RUB - + SAR - + SEK - + SGD - + THB - + TRY - + TWD - + UAH - + USD - + VEF - + VND - + XAG - + XAU - + ZAR - + default početno - + blue plavo - + light svetlo - + dark tamno - + Connect via Tor Spojite se putem Tora - + Check github for updates at startup Prilikom pokretanja provetite ažuriranja na githubu - + Remember shielded transactions Zapamtite zaštićene transakcije - + Normally, change from t-Addresses goes to another t-Address. Checking this option will send the change to your shielded sapling address instead. Check this option to increase your privacy. Uobičajeno, promene se sa jedne t-adrese šalju na drugu t-adresu. Ako odaberete ovu opciju promena će se poslati na vašu zaštićenu sapling adresu. Odaberite ovu opciju ako želite povećati privatnost. - + Allow overriding the default fees when sending transactions. Enabling this option may compromise your privacy since fees are transparent. Dopusti da se zaobiđu početno podešene naknade prilikom slanja transakcije. Ako odaberete ovu opciju vaša privatnost će biti narušena jer su naknade transparentne. - + Clear History Obriši istoriju - + Shielded transactions are saved locally and shown in the transactions tab. If you uncheck this, shielded transactions will not appear in the transactions tab. Zaštićene transakcije se spremaju lokalno i prikazane su u kartici transakcija. Ako ne odaberete ovo, zaštičene transakcije se neće pojaviti u kartici transakcija. - + Allow custom fees Dopusti prilagodbu naknada - + Shield change from t-Addresses to your sapling address Zaštiti razliku sa t-adrese na sapling adresu - + Connect to the Tor network via SOCKS proxy running on 127.0.0.1:9050. Please note that you'll have to install and run the Tor service externally. Spojite se na Tor mrežu putem SOCKS proxy na 127.0.0.1:9050. Molim vas uzmite u obzir da ćete morati izvana instalirati Tor uslugu. - + Connect to github on startup to check for updates Prilikom pokretanja provetite ažuriranja na githubu - + Connect to the internet to fetch HUSH prices Spojite se na Internet kako bi dohvatili HUSH cene - + Fetch HUSH prices Dohvati HUSH cene - + Explorer Pregledač - + Tx Explorer URL Tx pregledač URL - + Address Explorer URL Pregledač adresa URL - + Testnet Tx Explorer URL Testnet Tx Pregledač URL - + Testnet Address Explorer URL Testnet pregledač adresa URL - + Troubleshooting Otklanjanje problema - + Reindex Reindex - + Rescan the blockchain for any missing wallet transactions and to correct your wallet balance. This may take several hours. You need to restart SilentDragon for this to take effect Rescan blockchaina ako vam nedostaju transakcije ili ako je krivi saldo u novčaniku. To može potrajati nekoliko sati. Kako bi imalo učinka morate ponovo pokrenuti SilentDragon - + Rescan Rescan - + Rebuild the entire blockchain from the genesis block, by rescanning all the block files. This may take several hours to days, depending on your hardware. You need to restart SilentDragon for this to take effect Izgradite celi blockchain iz prvog (genesis) bloka sa rescanom svih datoteka. Ovo bi moglo potrajati nekoliko sati do nekoliko dana ovisno o jačini vašeg računara. Kako bi imalo učinka morate ponovo pokrenuti SilentDragon + + + This code can greatly reduce the size of wallets and increase performance for service providers. It's designed mostly for exchanges and mining pools but anybody with a large wallet will benefit. + + + + + Enable Old Transaction Deletion + + + + + Consolidation + + + + + Deletetx + + + + + The new experimental Shielded Index (-zindex) which keeps track of many stats that can be seen via the new getchaintxstats RPC. These include shielded payments, anonymity set size and many other things. + + + + + Zindex + + + + + 100 + 100 + + + + Wallet.dat Size : + + + + + MB + + ValidateAddress @@ -2000,6 +2078,14 @@ Would you like to visit the releases page? Saldo (%1) + + ViewKey + + + Viewing Key + + + about diff --git a/res/silentdragon_tr.qm b/res/silentdragon_tr.qm index ceddf64..9c1a7ce 100644 Binary files a/res/silentdragon_tr.qm and b/res/silentdragon_tr.qm differ diff --git a/res/silentdragon_tr.ts b/res/silentdragon_tr.ts index db8caf3..1097c34 100644 --- a/res/silentdragon_tr.ts +++ b/res/silentdragon_tr.ts @@ -77,206 +77,206 @@ Toplam - + Some transactions are not yet confirmed Bazı işlemler henüz onaylanmadı - + Address Balances Adres Bakiyeleri - - + + Send Gönder - + From Gönderen - + Address Balance Adres Bakiyesi - + Send To Alıcıya Gönder - + Recipient Alıcı - - - + + + Address Adres - + Address Book Adres Defteri - - + + Amount Miktar - + Max Available Maks. Kullanılabilir - + Upload File Dosya Yükle - - - + + + Memo Memo - + Add Recipient Alıcı Ekle - + Recurring payment Düzenli ödeme - + Every month, starting 12-May-2012, for 6 payments Her ay, 12-May-2012'den itibaren, 6 ödeme için - + Edit Schedule Programı Düzenle - + Miner Fee Madenci Ücreti - + 0 0 - + Cancel İptal - + Receive Al - + Address Type Adres Tipi - + Market - + <html><head/><body><p align="center"><span style=" font-weight:600;">Hush Market Information</span></p></body></html> - + Market Cap - + 24H Volume - + Wallet Transactions - + Chain Transactions - + &Report a bug on Github - + &Send Duke Feedback Duke'ye Geri Bildirim Gönder - + &Hush Discord &Hush Discord - + &Hush Website &Hush Website - - + + Export transactions İşlemleri dışa aktar - + Pay HUSH &URI... HUSH URI'yi öde... - + Connect mobile &app Mobil uygulamayı bağla - + Ctrl+M Ctrl+M - + Request HUSH... HUSH iste... - + Validate Address Adres Doğrula @@ -293,226 +293,227 @@ z-Adres(Sprout) - + New Address Yeni Adres - + View All Addresses Tüm Adresleri Görüntüle - + Label Etiket - + Update Label Etiketi Güncelle - + Address balance Adres bakiyesi - + Optional İsteğe bağlı - - + + Export Private Key Özel Anahtarı Dışarı Aktar - + Transactions İşlemler - + hushd hushd - + You are currently not mining Şu anda madencilik yapmıyorsunuz - - + + + - - - - - - + + + + - - - - - - - - - - - - + + + + + + + + + + + + + + Loading... Yükleniyor... - + Block height Blok yüksekliği - + Notarized Hash Noter Onaylı Hash - + Notarized txid Noter Onaylı İşlem id - + Notarized Lag Noter Onaylı Lag - + KMD Version KMD Sürümü - + Protocol Version Protokol Sürümü - + Version Sürüm - + P2P Port P2P Bağlantı Noktası - + RPC Port RPC Bağlantı Noktası - + Client Name İstemci Adı - + Next Halving Sonraki Yarılanma - + Local Services Yerel Hizmetler - + Longest Chain En Uzun Zincir - + Network solution rate Ağ çözüm oranı - + Connections Bağlantılar - - - - + + + - - - - - - - - - - - - + + + + + + + + + + + + + | | - + Shielded Address (Private, Anonymous) Korumalı Adres (Özel, Anonim) - + Transparent Address (Public, Metadata-Leaking) Transparan Adres (Halka Açık, Meta Veri Sızdıran) - + &File Dosya - + &Help Yardım - + &Apps Uygulamalar - + &Edit Düzenle - + E&xit Çıkış - + &About Hakkında - + &Settings Ayarlar - + Ctrl+P Ctrl+P @@ -521,52 +522,52 @@ Bağış Yap - + Check github.com for &updates Güncellemeler için github.com adresini kontrol edin - + Sapling &turnstile Sapling Fidan turnike - + Ctrl+A, Ctrl+T Ctrl+A, Ctrl+T - + &Import private key Özel anahtarı içeri aktar - + &Export all private keys Tüm özel anahtarları dışarı aktar - + &z-board.net z-board.net - + Ctrl+A, Ctrl+Z Ctrl+A, Ctrl+Z - + Address &book Adres defteri - + Ctrl+B Ctrl+B - + &Backup wallet.dat wallet.dat dosyasını yedekle @@ -600,7 +601,7 @@ Anahtarlar içeri aktarıldı. Blockchain'i yeniden taramak birkaç dakika sürebilir. O zamana kadar, işlevsellik sınırlı olabilir - + Private key import rescan finished Özel anahtar içe aktarma yeniden taraması tamamlandı @@ -614,222 +615,239 @@ YOUR_TRANSLATION_HERE - + Theme Change - - + + This change can take a few seconds. - + Currency Change - + Tor configuration is available only when running an embedded hushd. Tor konfigürasyonu yalnızca gömülü bir hushd çalışırken kullanılabilir. - + You're using an external hushd. Please restart hushd with -rescan Harici bir hushd kullanıyorsun. Lütfen hushd'yi -rescan ile yeniden başlat - + You're using an external hushd. Please restart hushd with -reindex Harici bir hushd kullanıyorsun. Lütfen hushd'yi -reindex ile yeniden başlat - + Enable Tor Tor'u etkinleştir - + Connection over Tor has been enabled. To use this feature, you need to restart SilentDragon. Tor üzerinden bağlantı etkin. Bu özelliği kullanmak için, SilentDragon'u yeniden başlatmanız gerekir. - + Disable Tor Tor'u devre dışı bırak - + Connection over Tor has been disabled. To fully disconnect from Tor, you need to restart SilentDragon. Tor üzerinden bağlantı devre dışı bırakıldı. Tor ile bağlantıyı tamamen kesmek için SilentDragon'u yeniden başlatmanız gerekir. - SilentDragon needs to restart to rescan/reindex. SilentDragon will now close, please restart SilentDragon to continue - SilentDragon yeniden tarama/yeniden indeksleme için yeniden başlatılması gerekiyor. SilentDragon şimdi kapanacak, lütfen devam etmek için SilentDragon'u yeniden başlatın + SilentDragon yeniden tarama/yeniden indeksleme için yeniden başlatılması gerekiyor. SilentDragon şimdi kapanacak, lütfen devam etmek için SilentDragon'u yeniden başlatın - + + Restart SilentDragon SilentDragon'u yeniden başlat - + + SilentDragon needs to reindex for zindex. SilentDragon will now close, please restart SilentDragon to continue + + + + Some feedback about SilentDragon or Hush... SilentDragon veya Hush hakkında bazı görüşler... - + Send Duke some private and shielded feedback about Duke'ye özel ve korumalı geri bildirim gönder - + or SilentDragon veya SilentDragon - + Enter Address to validate Doğrulamak için adres girin - + Transparent or Shielded Address: Transparan veya Korumalı Adres: - + Paste HUSH URI HUSH URI'sini yapıştır - + Error paying Hush URI Hush URI ödeme hatası - + URI should be of the form 'hush:<addr>?amt=x&memo=y URI bu şekilde olmalıdır: 'hush:<addr>?amt=x&memo=y - + Please paste your private keys here, one per line Lütfen özel anahtarlarınızı buraya, her satıra bir tane olacak şekilde yapıştırın - + The keys will be imported into your connected Hush node Anahtarlar bağlı Hush düğümünüze aktarılacak - + The keys were imported! It may take several minutes to rescan the blockchain. Until then, functionality may be limited Anahtarlar içeri aktarıldı. Blockchain'i yeniden taramak birkaç dakika sürebilir. O zamana kadar, işlevsellik sınırlı olabilir - + Error Hata - + Error exporting transactions, file was not saved İşlemler dışa aktarılırken hata oluştu, dosya kaydedilmedi - + No wallet.dat wallet.dat yok - + Couldn't find the wallet.dat on this computer wallet.dat dosyası bu bilgisayarda bulunamadı - + You need to back it up from the machine hushd is running on hushd'ın çalıştığı makineden yedeklemeniz gerekiyor - + Backup wallet.dat wallet.dat dosyasını yedekle - + Couldn't backup Yedeklenemedi - + Couldn't backup the wallet.dat file. wallet.dat dosyası yedeklenemedi. - + You need to back it up manually. Manuel olarak yedeklemeniz gerekir. - + These are all the private keys for all the addresses in your wallet Bunlar, cüzdanınızdaki tüm adreslerin özel anahtarlarıdır - + Private key for için özel anahtar - + + Save File Dosyayı Kaydet - + + SilentDragon needs to restart to rescan,reindex,consolidation or deletetx. SilentDragon will now close, please restart SilentDragon to continue + + + + + Unable to open file Dosya açılamıyor - - + + Copy address Adresi kopyala - - - + + + Copied to clipboard Panoya kopyalandı - + Get private key Özel anahtarı al - + + Get viewing key + + + + Shield balance to Sapling sapling'e kalkan dengesi - - + + View on block explorer Blok gezgini üzerinde göster - + Address Asset Viewer Adres Varlığı Görüntüleyicisi - + Convert Address Adresi Dönüştür @@ -838,47 +856,47 @@ Sapling'e geç - + Copy txid txid'i kopyala - + Copy block explorer link - + View Payment Request Ödeme Talebini Görüntüle - + View Memo Memo'yu Görüntüle - + Reply to - + Created new t-Addr Yeni t-Addr oluşturuldu - + Copy Address Adresi Kopyala - + Address has been previously used Adres daha önce kullanılmış - + Address is unused Adres kullanılmamış @@ -958,12 +976,27 @@ z-adres'i gibi görünmüyor İşlem Hatası - + + Please wait... + + + + + Computing your transaction + + + + Computing transaction: - + + Done! + + + + From Address is Invalid! @@ -972,17 +1005,17 @@ z-adres'i gibi görünmüyor Gönderen Adresi Geçersiz - + Recipient Address Alıcı Adresi - + is Invalid geçersizdir - + Amount '%1' is invalid! '%1' miktarı geçersiz! @@ -1078,27 +1111,27 @@ z-adres'i gibi görünmüyor QObject - + Attempting autoconnect Otomatik bağlanmaya çalışılıyor - + Starting embedded hushd Gömülü hushd başlatılıyor - + hushd is set to run as daemon hushd daemon olarak çalışacak şekilde ayarlandı - + Waiting for hushd hushd bekleniyor - + You have hushd set to start as a daemon, which can cause problems with SilentDragon .Please remove the following line from your HUSH3.conf and restart SilentDragon @@ -1125,7 +1158,7 @@ Daha önce hushd'yi özel argümanlarla başlattıysanız, HUSH3.conf dosya Hepsi başarısız olursa, lütfen hushd'yi manuel olarak çalıştırın. - + Couldn't connect to hushd configured in HUSH3.conf. Not starting embedded hushd because --no-embedded was passed @@ -1134,22 +1167,22 @@ Not starting embedded hushd because --no-embedded was passed --no-embedded iletildiğinden gömülü hushd başlatılmıyor - + All Downloads Finished Successfully! Tüm İndirmeler Başarıyla Tamamlandı! - + Couldn't download params. Please check the help site for more info. Parametreler indirilemedi. Lütfen daha fazla bilgi için yardım sitesine bakın. - + The process returned İşlem geri döndü - + Couldn't start the embedded hushd. Please try restarting. @@ -1166,98 +1199,98 @@ Daha önce hushd'yi özel argümanlarla başlattıysanız, HUSH3.conf dosya Hepsi başarısız olursa, lütfen hushd'i manuel olarak çalıştırın. - + Hide Advanced Config Gelişmiş Konfigürasyonu Gizle - + Show Advanced Config Gelişmiş Konfigürasyonu Göster - + Choose data directory Veri dizini seç - + Could not create HUSH3.conf. HUSH3.conf oluşturulamadı. - - + + Downloading İndiriliyor - + more remaining ) daha kaldı ) - + MB of MB / - + MB at MB saniyede - + There was an error! : Bir hata oluştu! : - + Downloading blocks Bloklar indiriliyor - + Block height Blok yüksekliği - + Syncing Senkronize ediliyor - + Connected Bağlanıldı - + testnet: testnet: - + Connected to hushd hushd'ye bağlanıldı - + hushd has no peer connections! Network issues? hushd'nin eş bağlantısı yok Ağ sorunları? - + transaction computing. - + Please enhance your calm and wait for SilentDragon to exit - + Waiting for hushd to exit, y'all @@ -1266,27 +1299,27 @@ Hepsi başarısız olursa, lütfen hushd'i manuel olarak çalıştırın.hushd'ye bağlanıldı - + There was an error connecting to hushd. The error was hushd ile bağlantı kurulurken bir hata oluştu. Hata - + Transaction - + The transaction with id id ile işlem - + failed. The error was başarısız oldu. Hata - + failed başarısız oldu @@ -1299,12 +1332,12 @@ Hepsi başarısız olursa, lütfen hushd'i manuel olarak çalıştırın. tx hesaplanıyor. Bu birkaç dakika sürebilir. - + Update Available Güncelleme Mevcut - + A new release v%1 is available! You have v%2. Would you like to visit the releases page? @@ -1313,12 +1346,12 @@ Would you like to visit the releases page? Yayınlanan sürümler sayfasını ziyaret etmek ister misiniz? - + No updates available Güncelleme yok - + You already have the latest release v%1 Zaten en son sürüme (v%1) sahipsiniz @@ -1331,17 +1364,17 @@ Yayınlanan sürümler sayfasını ziyaret etmek ister misiniz? Çıkmak için hushd bekleniyor - + failed. Please check the help site for more info başarısız oldu. Daha fazla bilgi için lütfen yardım sitesine bakın - + hushd error hushd hatası - + A manual connection was requested, but the settings are not configured. Please set the host/port and user/password in the Edit->Settings menu. @@ -1350,7 +1383,7 @@ Please set the host/port and user/password in the Edit->Settings menu. - + Could not connect to hushd configured in settings. Please set the host/port and user/password in the Edit->Settings menu. @@ -1359,29 +1392,29 @@ Please set the host/port and user/password in the Edit->Settings menu. - + Authentication failed. The username / password you specified was not accepted by hushd. Try changing it in the Edit->Settings menu Kimlik doğrulama başarısız oldu. Belirttiğiniz kullanıcı adı/şifre hushd tarafından kabul edilmedi. Düzenle-> Ayarlar menüsünde değiştirmeyi deneyin - + Your hushd is starting up. Please wait. hushd'niz başlıyor. Lütfen bekle. - + This may take several hours, grab some popcorn Bu birkaç saat sürebilir, biraz patlamış mısır kapın - - + + Connection Error Bağlantı Hatası - - + + Transaction Error İşlem Hatası @@ -1390,8 +1423,8 @@ Lütfen Düzenle->Ayarlar menüsünde sunucu/bağlantı noktası ve kullanıc İşlem gönderilirken bir hata oluştu. Hata: - - + + No Connection Bağlantı Yok @@ -1518,12 +1551,12 @@ Onaylanmamış fonunuz var veya otomatik geçiş için bakiye çok düşük.SilentDragon'un solucan deliği servisi aracılığıyla internet üzerinden bağlandı - + Node is still syncing. Düğüm hala senkronize oluyor. - + No addresses with enough balance to spend! Try sweeping funds into one address Harcamaya yeterli bakiyeye sahip adres yok! Fonlarınızı tek bir adrese süpürmeyi deneyin @@ -1692,357 +1725,402 @@ Onaylanmamış fonunuz var veya otomatik geçiş için bakiye çok düşük. - + Local Currency - + AED - + ARS - + AUD - + BDT - + BHD - + BMD - + BRL - + BTC - + CAD - + CHF - + CLP - + CNY - + CZK - + DKK - + EUR - + GBP - + HKD - + HUF - + IDR - + ILS - + INR - + JPY - + KRW - + KWD - + LKR - + PKR - + MXN - + NOK - + NZD - + RUB - + SAR - + SEK - + SGD - + THB - + TRY - + TWD - + UAH - + USD - + VEF - + VND - + XAG - + XAU - + ZAR - + default - + blue - + light - + dark - + Connect via Tor Tor ile bağlan - + Check github for updates at startup Başlangıçta güncellemeler için github'u kontrol et - + Shielded transactions are saved locally and shown in the transactions tab. If you uncheck this, shielded transactions will not appear in the transactions tab. Korumalı işlemler yerel olarak kaydedilir ve işlemler sekmesinde gösterilir. Bu seçeneğin işaretini kaldırırsanız, korumalı işlemler işlemler sekmesinde görünmez. - + Connect to the Tor network via SOCKS proxy running on 127.0.0.1:9050. Please note that you'll have to install and run the Tor service externally. Tor ağına 127.0.0.1:9050'de çalışan SOCKS proxy üzerinden bağlanın. Lütfen Tor servisini harici olarak kurmanız ve çalıştırmanız gerektiğini lütfen unutmayın. - + Connect to github on startup to check for updates Güncellemeleri denetlemek için başlangıçta github'a bağlanır - + Connect to the internet to fetch HUSH prices HUSH fiyatlarını çekmek için internete bağlanır - + Fetch HUSH prices HUSH fiyatlarını çek - + Explorer Gezgin - + Tx Explorer URL İşlem Gezgini URL'İ - + Address Explorer URL Adres Gezgini URL'İ - + Testnet Tx Explorer URL Testnet İşlem Gezgini URL'İ - + Testnet Address Explorer URL Testnet Adres Gezgini URL'İ - + Troubleshooting Sorun giderme - + Reindex Yeniden indeksle - + Rescan the blockchain for any missing wallet transactions and to correct your wallet balance. This may take several hours. You need to restart SilentDragon for this to take effect Eksik cüzdan işlemleri ve cüzdan bakiyenizi düzeltmek için blok zincirini yeniden tarayın. Bu birkaç saat sürebilir. Bunun gerçekleşmesi için SilentDragon'u yeniden başlatmanız gerekir - + Rescan Yeniden tara - + Rebuild the entire blockchain from the genesis block, by rescanning all the block files. This may take several hours to days, depending on your hardware. You need to restart SilentDragon for this to take effect Tüm blok dosyalarını yeniden tarayarak blok zincirini genesis bloğundan yeniden oluşturun. Bu, donanımınıza bağlı olarak birkaç saat ila günler sürebilir. Bunun gerçekleşmesi için SilentDragon’u yeniden başlatmanız gerekir - + + This code can greatly reduce the size of wallets and increase performance for service providers. It's designed mostly for exchanges and mining pools but anybody with a large wallet will benefit. + + + + + Enable Old Transaction Deletion + + + + + Consolidation + + + + + Deletetx + + + + + The new experimental Shielded Index (-zindex) which keeps track of many stats that can be seen via the new getchaintxstats RPC. These include shielded payments, anonymity set size and many other things. + + + + + Zindex + + + + + 100 + 100 + + + + Wallet.dat Size : + + + + + MB + + + + Clear History Geçmişi Temizle - + Remember shielded transactions Korumalı işlemleri hatırla - + Allow custom fees Özel ücretlere izin ver - + Allow overriding the default fees when sending transactions. Enabling this option may compromise your privacy since fees are transparent. İşlemleri gönderirken varsayılan ücretlerin geçersiz kılınmasına izin verin. Bu seçeneğin etkinleştirilmesi, ücretler şeffaf olduğu için gizliliğinizi tehlikeye atabilir. - + Normally, change from t-Addresses goes to another t-Address. Checking this option will send the change to your shielded sapling address instead. Check this option to increase your privacy. Normalde, t-Adres'lerinden para üstü başka bir t-Adres'e gider. Bu seçeneğin işaretlenmesi, para üstünü korumalı sapling adresinize gönderecektir. Gizliliğinizi artırmak için bu seçeneği işaretleyin. - + Shield change from t-Addresses to your sapling address T adreslerinden sapling adresinize kalkan değişikliği @@ -2166,6 +2244,14 @@ Onaylanmamış fonunuz var veya otomatik geçiş için bakiye çok düşük.Bakiye (%1) + + ViewKey + + + Viewing Key + + + about diff --git a/res/silentdragon_uk.qm b/res/silentdragon_uk.qm index e844760..703a991 100644 Binary files a/res/silentdragon_uk.qm and b/res/silentdragon_uk.qm differ diff --git a/res/silentdragon_uk.ts b/res/silentdragon_uk.ts index 483a051..14296ff 100644 --- a/res/silentdragon_uk.ts +++ b/res/silentdragon_uk.ts @@ -93,130 +93,130 @@ Всього - + Some transactions are not yet confirmed Деякі транзакції ще не підтверджені - + Address Balances Баланси за адресами - - + + Send Надіслати - + From Від - + Address Balance Баланс адреси - + Send To До - + Recipient Одержувач - - - + + + Address Адреса - + Address Book Адресна книга - - + + Amount Кількість - + Max Available Максимальна кількість - + Upload File - - - + + + Memo Мітка - + Add Recipient Додати одержувача - + Recurring payment Періодичний платіж - + Every month, starting 12-May-2012, for 6 payments Щомісяця, починаючи з 12-Квітня-2012, 6 платежів - + Edit Schedule Змінити розклад - + Miner Fee Комісія майнерам - + 0 0 - + Cancel Скасувати - + Receive Отримати - + Address Type Тип адреси - + hushd hushd @@ -233,48 +233,48 @@ Запит safecoin... - + Validate Address Перевірити адресу - + Shielded Address (Private, Anonymous) Екранована адреса (приватна, анонімна) - + Transparent Address (Public, Metadata-Leaking) Прозора адреса (загальнодоступна, витік метаданих) - + New Address Нова адреса - + Label Мітка - + Update Label Оновити мітку - + Address balance Баланс адреси - + Optional Не обов'язково - - + + Export Private Key Експорт приватного ключа @@ -283,306 +283,307 @@ Ваш вузол все ще синхронізується, баланс не може бути оновлений - + View All Addresses Показати всі адреси - + Transactions Транзакції - + You are currently not mining Майнінг відключений - - + + + - - - - - - + + + + - - - - - - - - - - - - + + + + + + + + + + + + + + Loading... Завантаження ... - + Block height Висота блоку - + Network solution rate Швидкість мережі - + Connections Підключень - - - - + + + - - - - - - - - - - - - + + + + + + + + + + + + + | | - + Market - + <html><head/><body><p align="center"><span style=" font-weight:600;">Hush Market Information</span></p></body></html> - + Market Cap - + 24H Volume - + Notarized Hash - + Notarized txid - + Notarized Lag - + KMD Version - + Protocol Version - + Version - + P2P Port - + RPC Port - + Client Name - + Next Halving - + Local Services - + Longest Chain - + Wallet Transactions - + Chain Transactions - + &File &Файл - + &Help &Допомога - + &Apps &Додатки - + &Edit &Редагувати - + E&xit &Вихід - + &About &Про гаманець - + &Report a bug on Github - + &Settings &Налаштування - + Ctrl+P Ctrl+P - + &Send Duke Feedback &Пожертвування для Duke - + &Hush Discord &Hush Discord - + &Hush Website &Сайт Hush - + Check github.com for &updates &Перевірити github.com на оновлення - + Sapling &turnstile - + Ctrl+A, Ctrl+T - + &Import private key &Імпорт приватного ключа - + &Export all private keys &Експорт всіх приватних ключів - + &z-board.net - + Ctrl+A, Ctrl+Z - + Address &book &Адресна книга - + Ctrl+B Ctrl+B - + &Backup wallet.dat &Зберегти wallet.dat - - + + Export transactions Експорт транзакцій - + Pay HUSH &URI... - + Connect mobile &app - + Ctrl+M - + Request HUSH... @@ -595,32 +596,32 @@ Повідомити про помилку... - + Enable Tor Включити Tor - + Connection over Tor has been enabled. To use this feature, you need to restart SilentDragon. З'єднання через Tor було включено. Щоб скористатися цією функцією, вам потрібно перезапустити SilentDragon. - + Disable Tor Відключити Tor - + Connection over Tor has been disabled. To fully disconnect from Tor, you need to restart SilentDragon. З'єднання через Tor було відключено. Щоб повністю відключитися від Tor, вам потрібно перезапустити SilentDragon. - + Some feedback about SilentDragon or Hush... - + Send Duke some private and shielded feedback about @@ -633,17 +634,17 @@ Ключі були імпортовані. Повторне сканування блокчейна може зайняти кілька хвилин. До тих пір функціональність може бути обмежена - + Private key import rescan finished Повторне сканування приватного ключа завершено - SilentDragon needs to restart to rescan/reindex. SilentDragon will now close, please restart SilentDragon to continue - SilentDragon необхідно перезапустити для повторного сканування / переіндексації. Перезапустіть SilentDragon, щоб продовжити + SilentDragon необхідно перезапустити для повторного сканування / переіндексації. Перезапустіть SilentDragon, щоб продовжити - + + Restart SilentDragon Перезапуск SilentDragon @@ -660,157 +661,174 @@ Ключі будуть імпортовані в ваш підключений вузол hushd - + Theme Change - - + + This change can take a few seconds. - + Currency Change - + + SilentDragon needs to restart to rescan,reindex,consolidation or deletetx. SilentDragon will now close, please restart SilentDragon to continue + + + + + SilentDragon needs to reindex for zindex. SilentDragon will now close, please restart SilentDragon to continue + + + + Paste HUSH URI - + Error paying Hush URI - + URI should be of the form 'hush:<addr>?amt=x&memo=y - + Please paste your private keys here, one per line - + The keys will be imported into your connected Hush node - + The keys were imported! It may take several minutes to rescan the blockchain. Until then, functionality may be limited - + Error Помилка - + Error exporting transactions, file was not saved Помилка експорту транзакцій, файл не був збережений - + No wallet.dat Немає wallet.dat - + Couldn't find the wallet.dat on this computer Не вдалося знайти wallet.dat на цьому комп'ютері - + You need to back it up from the machine hushd is running on Ви повинні зробити резервну копію з машини, на якій працює hushd - + Backup wallet.dat Зберегти wallet.dat - + Couldn't backup Неможливо зберегти - + Couldn't backup the wallet.dat file. Неможливо зберегти файл wallet.dat. - + You need to back it up manually. Вам потрібно зробити резервну копію вручну. - + These are all the private keys for all the addresses in your wallet Це все приватні ключі для всіх адрес у вашому гаманці - + Private key for Приватний ключ для - + + Save File Зберегти файл - + + Unable to open file Неможливо відкрити файл - - + + Copy address Копіювати адресу - - - + + + Copied to clipboard Скопійовано в буфер обміну - + Get private key Отримати приватний ключ - + + Get viewing key + + + + Shield balance to Sapling Shield balance to Sapling - - + + View on block explorer Подивитися в провіднику блоків - + Address Asset Viewer - + Convert Address - + Copy block explorer link @@ -819,7 +837,7 @@ Migrate to Sapling - + Copy txid Скопіювати txid @@ -836,17 +854,17 @@ Оновити - + Tor configuration is available only when running an embedded hushd. Конфігурація Tor доступна тільки при роботі з вбудованим hushd. - + You're using an external hushd. Please restart hushd with -rescan Ви використовуєте зовнішній hushd. Будь ласка, перезапустіть hushd з -rescan - + You're using an external hushd. Please restart hushd with -reindex Ви використовуєте зовнішній hushd. Будь ласка, перезапустіть hushd з -reindex @@ -923,17 +941,17 @@ Надіслати для OleksandrBlack подяку за - + or SilentDragon або SilentDragon - + Enter Address to validate Введіть адресу для перевірки - + Transparent or Shielded Address: Прозора або екранована адреса: @@ -954,37 +972,37 @@ Це може зайняти кілька хвилин. Завантаження ... - + View Payment Request Подивитися запит на оплату - + View Memo Подивитися мітку - + Reply to Відповісти на - + Created new t-Addr Створити новий t-Addr (R) - + Copy Address Копіювати адресу - + Address has been previously used Адреса була раніше використана - + Address is unused Адреса не використовується @@ -1072,12 +1090,27 @@ doesn't look like a z-address Помилка транзакції - + + Please wait... + + + + + Computing your transaction + + + + Computing transaction: - + + Done! + + + + From Address is Invalid! @@ -1086,17 +1119,17 @@ doesn't look like a z-address Від адреси невірно - + Recipient Address Адреса одержувача - + is Invalid є недійсним - + Amount '%1' is invalid! Кількість '%1' є недійсним! @@ -1196,57 +1229,57 @@ doesn't look like a z-address QObject - + Attempting autoconnect Спроба автопідключення - + Starting embedded hushd Запуск сервісу hushd - + hushd is set to run as daemon hushd налаштований на запуск в якості демона - + Waiting for hushd Очікуємо hushd - + Hide Advanced Config Приховати розширену конфігурацію - + Show Advanced Config Показати розширену конфігурацію - + Choose data directory Виберіть каталог - + All Downloads Finished Successfully! Всі завантаження успішно завершені! - + Couldn't download params. Please check the help site for more info. Не вдалося завантажити параметри. Будь ласка, перевірте сайт довідки для отримання додаткової інформації. - + The process returned Процес повернувся - + You have hushd set to start as a daemon, which can cause problems with SilentDragon .Please remove the following line from your HUSH3.conf and restart SilentDragon @@ -1257,7 +1290,7 @@ daemon=1 daemon=1 - + Couldn't start the embedded hushd. Please try restarting. @@ -1274,7 +1307,7 @@ If all else fails, please run hushd manually. Якщо нічого не допомагає, запустіть hushd вручну. - + Couldn't connect to hushd configured in HUSH3.conf. Not starting embedded hushd because --no-embedded was passed @@ -1283,38 +1316,38 @@ Not starting embedded hushd because --no-embedded was passed Чи не запускається вбудований hushd, тому що --no-embedded був пропущений - + Could not create HUSH3.conf. - - + + Downloading Завантаження - + more remaining ) залишилося ) - + MB of MB із - + MB at MB в - + hushd error помилка hushd - + Could not connect to hushd configured in settings. Please set the host/port and user/password in the Edit->Settings menu. @@ -1323,27 +1356,27 @@ Please set the host/port and user/password in the Edit->Settings menu. - + Authentication failed. The username / password you specified was not accepted by hushd. Try changing it in the Edit->Settings menu Аутентифікація не вдалася. username / password, які ви вказали, не були прийняті hushd. Спробуйте змінити його в меню Редагувати-> Налаштування - + Your hushd is starting up. Please wait. Ваш hushd запускається. Будь ласка зачекайте. - + This may take several hours, grab some popcorn - + There was an error! : - + Downloading blocks Завантаження блоків @@ -1352,52 +1385,52 @@ Please set the host/port and user/password in the Edit->Settings menu.Готово! Дякуємо Вам за допомогу в захисті мережі Hush, запустивши повний вузол. - + Block height Висота блоків - + Syncing Синхронізація - + Connected Підключено - + testnet: testnet: - + Connected to hushd Під'єднано до hushd - + hushd has no peer connections! Network issues? - + There was an error connecting to hushd. The error was При підключенні до hushd сталася помилка. Помилка - + transaction computing. - + Please enhance your calm and wait for SilentDragon to exit - + Waiting for hushd to exit, y'all @@ -1414,22 +1447,22 @@ Please set the host/port and user/password in the Edit->Settings menu.не підтверджено - + Transaction - + The transaction with id Транзакція з id - + failed. The error was не вдалося. Помилка - + failed помилка @@ -1446,12 +1479,12 @@ Please set the host/port and user/password in the Edit->Settings menu. tx обчислюється. Це може зайняти кілька хвилин. - + Update Available Доступно оновлення - + A new release v%1 is available! You have v%2. Would you like to visit the releases page? @@ -1460,12 +1493,12 @@ Would you like to visit the releases page? Хотіли б ви відвідати сторінку релізів? - + No updates available Немає доступних оновлень - + You already have the latest release v%1 У вас вже є остання версія v%1 @@ -1478,12 +1511,12 @@ Would you like to visit the releases page? Очікування зупинки hushd - + failed. Please check the help site for more info не вдалося. Будь ласка, перевірте сайт довідки для отримання додаткової інформації - + A manual connection was requested, but the settings are not configured. Please set the host/port and user/password in the Edit->Settings menu. @@ -1496,14 +1529,14 @@ Please set the host/port and user/password in the Edit->Settings menu.Це може зайняти кілька годин - - + + Connection Error Помилка з'єднання - - + + Transaction Error Помилка транзакції @@ -1512,8 +1545,8 @@ Please set the host/port and user/password in the Edit->Settings menu.Сталася помилка під час надсилання транзакції. Помилка була: - - + + No Connection Немає з'єднання @@ -1640,12 +1673,12 @@ You either have unconfirmed funds or the balance is too low for an automatic mig Підключення через Інтернет за допомогою сервісу wormhol SilentDragon - + Node is still syncing. Вузол все ще синхронізується. - + No addresses with enough balance to spend! Try sweeping funds into one address @@ -1985,22 +2018,22 @@ You either have unconfirmed funds or the balance is too low for an automatic mig Опції - + Check github for updates at startup Перевірити github на наявність оновлень при запуску - + Connect to the Tor network via SOCKS proxy running on 127.0.0.1:9050. Please note that you'll have to install and run the Tor service externally. Підключатися до мережі Tor через SOCKS-проксі, який працює на 127.0.0.1:9050. Зверніть увагу, що вам необхідно встановлювати і запускати сервіс Tor ззовні. - + Connect to the internet to fetch HUSH prices Підключатися до Інтернету, щоб отримати поточну ціну HUSH - + Fetch HUSH prices Отріматі ціни HUSH @@ -2069,12 +2102,12 @@ You either have unconfirmed funds or the balance is too low for an automatic mig Стандартно, це: 0333b9796526ef8de88712a649d618689a1de1ed1adf9fb5ec415f31e560b1f9a3 - + Shielded transactions are saved locally and shown in the transactions tab. If you uncheck this, shielded transactions will not appear in the transactions tab. Екрановані транзакції зберігаються локально і відображаються на вкладці транзакцій. Якщо зняти цей прапорець, екрановані транзакції не будуть відображатися на вкладці транзакцій. - + Connect via Tor Підключатися через Tor @@ -2084,327 +2117,372 @@ You either have unconfirmed funds or the balance is too low for an automatic mig - + Local Currency - + AED - + ARS - + AUD - + BDT - + BHD - + BMD - + BRL - + BTC - + CAD - + CHF - + CLP - + CNY - + CZK - + DKK - + EUR - + GBP - + HKD - + HUF - + IDR - + ILS - + INR - + JPY - + KRW - + KWD - + LKR - + PKR - + MXN - + NOK - + NZD - + RUB - + SAR - + SEK - + SGD - + THB - + TRY - + TWD - + UAH - + USD - + VEF - + VND - + XAG - + XAU - + ZAR - + default - + blue - + light - + dark - + Connect to github on startup to check for updates Підключатися до github при запуску, щоб перевірити наявність оновлень - + Explorer - + Tx Explorer URL - + Address Explorer URL - + Testnet Tx Explorer URL - + Testnet Address Explorer URL - + Troubleshooting Виправлення проблем - + Reindex Reindex - + Rescan the blockchain for any missing wallet transactions and to correct your wallet balance. This may take several hours. You need to restart SilentDragon for this to take effect Повторно сканує блокчейн для будь-яких пропущених транзакцій гаманця і виправляє баланс вашого гаманця. Це може зайняти кілька годин. Вам потрібно перезапустити SilentDragon, щоб це набуло чинності - + Rescan Rescan - + Rebuild the entire blockchain from the genesis block, by rescanning all the block files. This may take several hours to days, depending on your hardware. You need to restart SilentDragon for this to take effect Перебудовує весь блокчейн з блоку генезису шляхом повторного сканування всіх файлів блоків. Це може зайняти кілька годин або днів, в залежності від вашого обладнання. Вам потрібно перезапустити SilentDragon, щоб це набуло чинності - + + This code can greatly reduce the size of wallets and increase performance for service providers. It's designed mostly for exchanges and mining pools but anybody with a large wallet will benefit. + + + + + Enable Old Transaction Deletion + + + + + Consolidation + + + + + Deletetx + + + + + The new experimental Shielded Index (-zindex) which keeps track of many stats that can be seen via the new getchaintxstats RPC. These include shielded payments, anonymity set size and many other things. + + + + + Zindex + + + + + 100 + 100 + + + + Wallet.dat Size : + + + + + MB + + + + Clear History Очистити історію - + Remember shielded transactions Запам'ятовувати екрановані транзакції - + Allow custom fees Дозволити настроювану комісію - + Allow overriding the default fees when sending transactions. Enabling this option may compromise your privacy since fees are transparent. Дозволити зміну розміру комісії за замовчуванням при відправці транзакцій. Включення цієї опції може поставити під загрозу вашу конфіденційність, так як комісія прозора. - + Normally, change from t-Addresses goes to another t-Address. Checking this option will send the change to your shielded sapling address instead. Check this option to increase your privacy. Зазвичай здача з прозорих адрес переходить на інший прозорий адрес. Якщо ви виберете цю опцію, ви відправите здачу на Вашу екранований адресу. Відмітьте цю опцію, щоб збільшити вашу конфіденційність. - + Shield change from t-Addresses to your sapling address Екранування здачі з прозорих адрес на ваш екранований адрес @@ -2508,6 +2586,14 @@ You either have unconfirmed funds or the balance is too low for an automatic mig Баланс (%1) + + ViewKey + + + Viewing Key + + + about diff --git a/res/silentdragon_zh.qm b/res/silentdragon_zh.qm index eae12d5..a8dd35f 100644 Binary files a/res/silentdragon_zh.qm and b/res/silentdragon_zh.qm differ diff --git a/res/silentdragon_zh.ts b/res/silentdragon_zh.ts index 11ea0c2..e8994cf 100644 --- a/res/silentdragon_zh.ts +++ b/res/silentdragon_zh.ts @@ -81,125 +81,125 @@ 您的节点仍在同步,余额可能没有更新 - + Some transactions are not yet confirmed 部分交易尚未得到确认 - + Address Balances 地址余额 - - + + Send 发送 - + From - + Address Balance 地址余额 - + Send To 发送给 - + Recipient 接收者 - - - + + + Address 地址 - + Address Book 地址薄 - - + + Amount 金额 - + Max Available 最大可发送金额 - + Upload File - - - + + + Memo 备注 - + Add Recipient 添加接收者 - + Recurring payment 循环支付 - + Every month, starting 12-May-2012, for 6 payments 从2012年5月12日开始,每月支付6次 - + Edit Schedule 编辑计划 - + Miner Fee 矿工费用 - + 0 0 - + Cancel 取消 - + Receive 接收 - + Address Type 地址类型 @@ -212,291 +212,292 @@ 非隐蔽地址(t-Addr) - + New Address 创建新地址 - + View All Addresses 查看所有地址 - + Label 标签 - + Update Label 更新标签 - + Address balance 地址余额 - + Optional 可选 - - + + Export Private Key 导出私钥 - + Transactions 交易 - + hushd 节点 - + You are currently not mining 您目前没有在挖矿 - - + + + - - - - - - + + + + - - - - - - - - - - - - + + + + + + + + + + + + + + Loading... 加载中... - + Market 市场 - + <html><head/><body><p align="center"><span style=" font-weight:600;">Hush Market Information</span></p></body></html> <html><head/><body><p align="center"><span style=" font-weight:600;">Hush 市场信息</span></p></body></html> - + Market Cap 市值 - + 24H Volume 24小时交易量 - + Block height 区块高度 - + Notarized Hash - + Notarized txid - + Notarized Lag - + KMD Version - + Protocol Version - + Version - + P2P Port - + RPC Port - + Client Name - + Next Halving - + Local Services - + Longest Chain - + Wallet Transactions - + Chain Transactions - + Network solution rate 全网算力 - + Connections 连接数 - + &Report a bug on Github - + &Send Duke Feedback - + &Hush Discord - + &Hush Website - + Pay HUSH &URI... - + Request HUSH... - + Validate Address - - - - + + + - - - - - - - - - - - - + + + + + + + + + + + + + | | - + Shielded Address (Private, Anonymous) - + Transparent Address (Public, Metadata-Leaking) - + &File &文件 - + &Help &帮助 - + &Apps &应用 - + &Edit &编辑 - + E&xit &退出 - + &About &关于 - + &Settings &设置 - + Ctrl+P Ctrl+P @@ -505,58 +506,58 @@ &捐赠 - + Check github.com for &updates 检查github.com获取和&更新 - + Sapling &turnstile 树苗&十字旋转门 - + Ctrl+A, Ctrl+T Ctrl+A, Ctrl+T - + &Import private key &导入私钥 - + &Export all private keys &导出所有私钥 - + &z-board.net &z-board.net - + Ctrl+A, Ctrl+Z Ctrl+A, Ctrl+Z - + Address &book &地址簿 - + Ctrl+B Ctrl+B - + &Backup wallet.dat &备份 wallet.dat - - + + Export transactions 导出交易 @@ -565,12 +566,12 @@ 支付hush &URI ... - + Connect mobile &app 连接移动&App - + Ctrl+M Ctrl+M @@ -595,44 +596,43 @@ hushd尚未准备好。 请等待UI加载 - + Tor configuration is available only when running an embedded hushd. Tor配置仅在运行嵌入的hushd时可用。 - + You're using an external hushd. Please restart hushd with -rescan 你正在使用外部hushd。 请使用-rescan参数重新启动hushd - + You're using an external hushd. Please restart hushd with -reindex 你正在使用外部hushd。 请使用-reindex重新启动hushd - + Enable Tor 启用Tor - + Connection over Tor has been enabled. To use this feature, you need to restart SilentDragon. 已启用Tor上的连接。 要使用此功能,您需要重新启动SilentDragon。 - + Disable Tor 禁用Tor - + Connection over Tor has been disabled. To fully disconnect from Tor, you need to restart SilentDragon. Tor上的连接已被禁用。 要完全断开与Tor的连接,您需要重新启动SilentDragon。 - SilentDragon needs to restart to rescan/reindex. SilentDragon will now close, please restart SilentDragon to continue - SlientDragon需要重新启动才能重新扫描/重新索引。 SlientDragon现在关闭,请重启SlientDragon以继续 + SlientDragon需要重新启动才能重新扫描/重新索引。 SlientDragon现在关闭,请重启SlientDragon以继续 Restart SlientDragon @@ -663,7 +663,7 @@ 计算交易: - + Private key import rescan finished 私钥导入重新扫描完成 @@ -676,7 +676,7 @@ 支付hush URI时出错 - + URI should be of the form 'hush:<addr>?amt=x&memo=y URI的格式应为 'hush:<addr>?amt=x&memo=y' @@ -693,177 +693,195 @@ 钥匙是导入的。 重新扫描区块链可能需要几分钟时间。 在此之前,功能可能会受到限制 - + Theme Change - - + + This change can take a few seconds. - + Currency Change - + + SilentDragon needs to restart to rescan,reindex,consolidation or deletetx. SilentDragon will now close, please restart SilentDragon to continue + + + + + Restart SilentDragon - + + SilentDragon needs to reindex for zindex. SilentDragon will now close, please restart SilentDragon to continue + + + + Some feedback about SilentDragon or Hush... - + Send Duke some private and shielded feedback about - + or SilentDragon - + Enter Address to validate - + Transparent or Shielded Address: - + Paste HUSH URI - + Error paying Hush URI - + Please paste your private keys here, one per line - + The keys will be imported into your connected Hush node - + The keys were imported! It may take several minutes to rescan the blockchain. Until then, functionality may be limited - + Error 错误 - + Error exporting transactions, file was not saved 导出交易时出错,文件未保存 - + No wallet.dat 没有 wallet.dat - + Couldn't find the wallet.dat on this computer 在这台电脑上找不到wallet.dat - + You need to back it up from the machine hushd is running on 你需要从运行hushd的机器备份它 - + Backup wallet.dat 备份 wallet.dat - + Couldn't backup 无法备份 - + Couldn't backup the wallet.dat file. 无法备份wallet.dat文件。 - + You need to back it up manually. 您需要手动备份它。 - + These are all the private keys for all the addresses in your wallet 这些都是钱包中所有地址的私钥 - + Private key for 私钥 - + + Save File 保存文件 - + + Unable to open file 无法打开文件 - - + + Copy address 复制成功 - - - + + + Copied to clipboard 复制到剪贴板 - + Get private key 获取私钥 - + + Get viewing key + + + + Shield balance to Sapling 屏蔽余额到Sapling地址 - - + + View on block explorer 从区块浏览器中查看 - + Address Asset Viewer - + Convert Address @@ -872,47 +890,47 @@ 迁移到Sapling地址 - + Copy txid 复制交易ID - + Copy block explorer link - + View Payment Request 查看付款申请 - + View Memo 查看备注 - + Reply to 回复给 - + Created new t-Addr 创建了新的t-Addr - + Copy Address - + Address has been previously used 该地址以前使用过 - + Address is unused 地址未使用 @@ -1000,12 +1018,27 @@ doesn't look like a z-address 交易错误 - + + Please wait... + + + + + Computing your transaction + + + + Computing transaction: - + + Done! + + + + From Address is Invalid! @@ -1014,17 +1047,17 @@ doesn't look like a z-address 发送地址无效 - + Recipient Address 接收地址 - + is Invalid 无效 - + Amount '%1' is invalid! 转账金额 '%1' 无效! @@ -1236,22 +1269,22 @@ doesn't look like a z-address 删除标签 - + Attempting autoconnect 尝试自动连接 - + Starting embedded hushd 启动内嵌的hushd - + hushd is set to run as daemon hushd设置为作为守护进程运行 - + Waiting for hushd 等待hushd @@ -1282,7 +1315,7 @@ If all else fails, please run hushd manually. 如果所有其他方法都失败了,请手动运行hushd。 - + You have hushd set to start as a daemon, which can cause problems with SilentDragon .Please remove the following line from your HUSH3.conf and restart SilentDragon @@ -1290,7 +1323,7 @@ daemon=1 - + Couldn't start the embedded hushd. Please try restarting. @@ -1301,12 +1334,12 @@ If all else fails, please run hushd manually. - + The process returned 该进程返回 - + Couldn't connect to hushd configured in HUSH3.conf. Not starting embedded hushd because --no-embedded was passed @@ -1315,68 +1348,68 @@ Not starting embedded hushd because --no-embedded was passed 没有启动内嵌的hushd,因为已经传了--no-embedded参数 - + Hide Advanced Config 隐藏高级配置 - + Show Advanced Config 显示高级配置 - + Choose data directory 选择数据目录 - + Could not create HUSH3.conf. - + All Downloads Finished Successfully! 所有下载成功完成! - + Couldn't download params. Please check the help site for more info. 无法下载params。 请查看帮助网站以获取更多信息。 - - + + Downloading 下载 - + more remaining ) 剩余) - + MB of MB of - + MB at MB at - + failed. Please check the help site for more info 失败。 请查看帮助网站以获取更多信息 - + hushd error hushd 出错 - + A manual connection was requested, but the settings are not configured. Please set the host/port and user/password in the Edit->Settings menu. @@ -1385,7 +1418,7 @@ Please set the host/port and user/password in the Edit->Settings menu. - + Could not connect to hushd configured in settings. Please set the host/port and user/password in the Edit->Settings menu. @@ -1394,22 +1427,22 @@ Please set the host/port and user/password in the Edit->Settings menu. - + Authentication failed. The username / password you specified was not accepted by hushd. Try changing it in the Edit->Settings menu 验证失败。 hushd不接受您指定的用户名/密码。 请在编辑 - >设置菜单中更改它 - + Your hushd is starting up. Please wait. 你的hushd正在启动。 请耐心等待。 - + This may take several hours, grab some popcorn - + There was an error! : @@ -1418,14 +1451,14 @@ Please set the host/port and user/password in the Edit->Settings menu.这可能需要几个小时 - - + + Connection Error 连接错误 - - + + Transaction Error 交易错误 @@ -1438,22 +1471,22 @@ Please set the host/port and user/password in the Edit->Settings menu. 交易 - + failed 失败 - + Transaction - + The transaction with id 交易 - + failed. The error was 失败。 错误是 @@ -1486,58 +1519,58 @@ Please set the host/port and user/password in the Edit->Settings menu.所有未来的付款都将被取消。 - - + + No Connection 没有连接 - + Downloading blocks 下载区块 - + Block height 区块高度 - + Syncing 同步中 - + Connected 已连接 - + testnet: testnet: - + Connected to hushd 连接到hushd - + hushd has no peer connections! Network issues? - + transaction computing. - + Please enhance your calm and wait for SilentDragon to exit - + Waiting for hushd to exit, y'all @@ -1546,7 +1579,7 @@ Please set the host/port and user/password in the Edit->Settings menu.hushd没有节点可连接 - + There was an error connecting to hushd. The error was 连接到hushd时出错。 错误是 @@ -1555,12 +1588,12 @@ Please set the host/port and user/password in the Edit->Settings menu. 交易计算中。 这可能需要几分钟。 - + Update Available 可用更新 - + A new release v%1 is available! You have v%2. Would you like to visit the releases page? @@ -1569,12 +1602,12 @@ Would you like to visit the releases page? 您想访问发布页面吗? - + No updates available 没有可用的更新 - + You already have the latest release v%1 您已拥有最新版本 v%1 @@ -1639,12 +1672,12 @@ You either have unconfirmed funds or the balance is too low for an automatic mig - + Node is still syncing. 节点仍在同步。 - + No addresses with enough balance to spend! Try sweeping funds into one address @@ -1926,345 +1959,390 @@ You either have unconfirmed funds or the balance is too low for an automatic mig - + Local Currency - + AED - + ARS - + AUD - + BDT - + BHD - + BMD - + BRL - + BTC - + CAD - + CHF - + CLP - + CNY - + CZK - + DKK - + EUR - + GBP - + HKD - + HUF - + IDR - + ILS - + INR - + JPY - + KRW - + KWD - + LKR - + PKR - + MXN - + NOK - + NZD - + RUB - + SAR - + SEK - + SGD - + THB - + TRY - + TWD - + UAH - + USD - + VEF - + VND - + XAG - + XAU - + ZAR - + default - + blue - + light - + dark - + Connect via Tor 通过Tor连接 - + Check github for updates at startup 启动时检查github更新 - + Remember shielded transactions 记住隐蔽交易 - + Normally, change from t-Addresses goes to another t-Address. Checking this option will send the change to your shielded sapling address instead. Check this option to increase your privacy. 通常,从t-Addresses发送到另一个t-Address。 选中此选项会将更改发送到屏蔽的树苗地址。 选中此选项可增加隐私。 - + Allow overriding the default fees when sending transactions. Enabling this option may compromise your privacy since fees are transparent. 允许在发送交易时覆盖默认费用。由于费用是透明的,因此启用此选项可能会损害您的隐私。 - + Clear History 清空历史屏蔽交易 - + Shielded transactions are saved locally and shown in the transactions tab. If you uncheck this, shielded transactions will not appear in the transactions tab. 屏蔽交易在本地保存并显示在交易“选项”卡中。 如果取消选中此项,屏蔽的交易将不会显示在“交易”选项卡中。 - + Allow custom fees 允许自定义费用 - + Shield change from t-Addresses to your sapling address 屏蔽改变从t-Addresses到您的树苗地址 - + Connect to the Tor network via SOCKS proxy running on 127.0.0.1:9050. Please note that you'll have to install and run the Tor service externally. 通过运行在127.0.0.1:9050上的SOCKS代理连接到Tor网络。 请注意,您必须在外部安装和运行Tor服务。 - + Connect to github on startup to check for updates 在启动时连接到github以检查更新 - + Connect to the internet to fetch HUSH prices - + Fetch HUSH prices - + Explorer - + Tx Explorer URL - + Address Explorer URL - + Testnet Tx Explorer URL - + Testnet Address Explorer URL - + Rescan the blockchain for any missing wallet transactions and to correct your wallet balance. This may take several hours. You need to restart SilentDragon for this to take effect - + Rebuild the entire blockchain from the genesis block, by rescanning all the block files. This may take several hours to days, depending on your hardware. You need to restart SilentDragon for this to take effect + + + This code can greatly reduce the size of wallets and increase performance for service providers. It's designed mostly for exchanges and mining pools but anybody with a large wallet will benefit. + + + + + Enable Old Transaction Deletion + + + + + Consolidation + + + + + Deletetx + + + + + The new experimental Shielded Index (-zindex) which keeps track of many stats that can be seen via the new getchaintxstats RPC. These include shielded payments, anonymity set size and many other things. + + + + + Zindex + + + + + 100 + 100 + + + + Wallet.dat Size : + + + + + MB + + Connect to the internet to fetch ZEC prices 连接到互联网以获取ZEC价格 @@ -2274,12 +2352,12 @@ You either have unconfirmed funds or the balance is too low for an automatic mig 获取 ZEC/USD 价格 - + Troubleshooting 故障排除 - + Reindex 重建索引 @@ -2288,7 +2366,7 @@ You either have unconfirmed funds or the balance is too low for an automatic mig 重新扫描区块链以查找任何丢失的钱包交易并更正您的钱包余额。 这可能需要几个小时。 您需要重新启动SlientDragon才能使其生效 - + Rescan 重新扫描 @@ -2416,6 +2494,14 @@ You either have unconfirmed funds or the balance is too low for an automatic mig + + ViewKey + + + Viewing Key + + + about diff --git a/res/zec_qt_wallet_fi.qm b/res/zec_qt_wallet_fi.qm deleted file mode 100644 index 26737c8..0000000 Binary files a/res/zec_qt_wallet_fi.qm and /dev/null differ diff --git a/res/zec_qt_wallet_hr.qm b/res/zec_qt_wallet_hr.qm deleted file mode 100644 index 3f27b18..0000000 Binary files a/res/zec_qt_wallet_hr.qm and /dev/null differ diff --git a/silentdragon.pro b/silentdragon.pro index 9832e5d..ba7b651 100644 --- a/silentdragon.pro +++ b/silentdragon.pro @@ -111,11 +111,14 @@ FORMS += \ src/requestdialog.ui -TRANSLATIONS = res/silentdragon_de.ts \ +TRANSLATIONS = res/silentdragon_bg.ts \ + res/silentdragon_de.ts \ res/silentdragon_es.ts \ res/silentdragon_fi.ts \ + res/silentdragon_fil.ts \ res/silentdragon_fr.ts \ res/silentdragon_hr.ts \ + res/silentdragon_id.ts \ res/silentdragon_it.ts \ res/silentdragon_nl.ts \ res/silentdragon_pt.ts \ @@ -126,7 +129,7 @@ TRANSLATIONS = res/silentdragon_de.ts \ res/silentdragon_zh.ts include(singleapplication/singleapplication.pri) -DEFINES += QAPPLICATION_CLASS=QApplication +DEFINES += QAPPLICATION_CLASS=QApplication _FORTIFY_SOURCE=2 QMAKE_INFO_PLIST = res/Info.plist diff --git a/src/connection.cpp b/src/connection.cpp index 9a1cd01..72a1446 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -19,15 +19,28 @@ ConnectionLoader::ConnectionLoader(MainWindow* main, RPC* rpc) { d->setWindowFlags(d->windowFlags() & ~(Qt::WindowCloseButtonHint | Qt::WindowContextHelpButtonHint)); connD = new Ui_ConnectionDialog(); connD->setupUi(d); - QPixmap logo(":/img/res/logobig.gif"); - connD->topIcon->setBasePixmap(logo.scaled(512, 512, Qt::KeepAspectRatio, Qt::SmoothTransformation)); - //main->logger->write("set topIcon"); + QMovie *movie1 = new QMovie(":/img/res/silentdragon-animated-startup.gif");; + QMovie *movie2 = new QMovie(":/img/res/silentdragon-animated-startup-dark.gif");; + auto theme = Settings::getInstance()->get_theme_name(); + auto size = QSize(512,512); + if (theme == "dark" || "midnight") { + movie2->setScaledSize(size); + connD->topIcon->setMovie(movie2); + movie2->start(); + } else { + movie1->setScaledSize(size); + connD->topIcon->setMovie(movie1); + movie1->start(); + } + main->logger->write("set animation"); + qDebug() << "set animation"; } ConnectionLoader::~ConnectionLoader() { delete d; delete connD; main->logger->write("ConnectionLoader done"); + qDebug() << "connection loader done"; } void ConnectionLoader::loadConnection() { @@ -656,7 +669,7 @@ std::shared_ptr ConnectionLoader::autoDetectZcashConf() { zcashconf->usingZcashConf = true; zcashconf->zcashDir = QFileInfo(confLocation).absoluteDir().absolutePath(); zcashconf->zcashDaemon = false; - + Settings::getInstance()->setUsingZcashConf(confLocation); while (!in.atEnd()) { @@ -679,6 +692,15 @@ std::shared_ptr ConnectionLoader::autoDetectZcashConf() { } if (name == "proxy") { zcashconf->proxy = value; + } + if (name == "consolidation") { + zcashconf->consolidation = value; + } + if (name == "deletetx") { + zcashconf->deletetx = value; + } + if (name == "zindex") { + zcashconf->zindex = value; } if (name == "testnet" && value == "1" && @@ -706,12 +728,12 @@ std::shared_ptr ConnectionLoader::loadFromSettings() { auto host = s.value("connection/host").toString(); auto port = s.value("connection/port").toString(); auto username = s.value("connection/rpcuser").toString(); - auto password = s.value("connection/rpcpassword").toString(); - + auto password = s.value("connection/rpcpassword").toString(); + if (username.isEmpty() || password.isEmpty()) return nullptr; - auto uiConfig = new ConnectionConfig{ host, port, username, password, false, false, "", "", ConnectionType::UISettingsZCashD}; + auto uiConfig = new ConnectionConfig{ host, port, username, password, false, false,"","", "", "","", ConnectionType::UISettingsZCashD}; return std::shared_ptr(uiConfig); } diff --git a/src/connection.h b/src/connection.h index e192d49..dc0a54d 100644 --- a/src/connection.h +++ b/src/connection.h @@ -24,6 +24,9 @@ struct ConnectionConfig { bool zcashDaemon; QString zcashDir; QString proxy; + QString consolidation; + QString deletetx; + QString zindex; ConnectionType connType; }; diff --git a/src/connection.ui b/src/connection.ui index 034dd74..70082d2 100644 --- a/src/connection.ui +++ b/src/connection.ui @@ -33,7 +33,7 @@ 0 - + 0 diff --git a/src/main.cpp b/src/main.cpp index 1403565..046ff3a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,3 +1,5 @@ +// Copyright 2019-2020 The Hush developers +// GPLv3 #include #include "precompiled.h" @@ -154,16 +156,16 @@ public: QCommandLineOption headlessOption(QStringList() << "headless", "Running it via GUI."); parser.addOption(headlessOption); - // No embedded will disable the embedded zcashd node + // No embedded will disable the embedded hushd node QCommandLineOption noembeddedOption(QStringList() << "no-embedded", "Disable embedded hushd"); parser.addOption(noembeddedOption); - // Positional argument will specify a zcash payment URI + // Positional argument will specify a Hush payment URI parser.addPositionalArgument("hushURI", "An optional HUSH URI to pay"); parser.process(a); - // Check for a positional argument indicating a zcash payment URI + // Check for a positional argument indicating a Hush payment URI if (a.isSecondary()) { if (parser.positionalArguments().length() > 0) { a.sendMessage(parser.positionalArguments()[0].toUtf8()); @@ -225,7 +227,7 @@ public: w->payZcashURI(parser.positionalArguments()[0]); } - // Listen for any secondary instances telling us about a zcash payment URI + // Listen for any secondary instances telling us about a Hush payment URI QObject::connect(&a, &SingleApplication::receivedMessage, [=] (quint32, QByteArray msg) { QString uri(msg); diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 4cf0057..c653e0d 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -464,7 +464,6 @@ void MainWindow::setupSettingsModal() { int theme_index = settings.comboBoxTheme->findText(Settings::getInstance()->get_theme_name(), Qt::MatchExactly); settings.comboBoxTheme->setCurrentIndex(theme_index); - QObject::connect(settings.comboBoxTheme, SIGNAL(currentIndexChanged(QString)), this, SLOT(slot_change_theme(QString))); QObject::connect(settings.comboBoxTheme, &QComboBox::currentTextChanged, [=] (QString theme_name) { this->slot_change_theme(theme_name); QMessageBox::information(this, tr("Theme Change"), tr("This change can take a few seconds."), QMessageBox::Ok); @@ -474,7 +473,6 @@ void MainWindow::setupSettingsModal() { QString ticker = QString::fromStdString( Settings::getInstance()->get_currency_name() ); int currency_index = settings.comboBoxCurrency->findText(ticker, Qt::MatchExactly); settings.comboBoxCurrency->setCurrentIndex(currency_index); - QObject::connect(settings.comboBoxCurrency, SIGNAL(currentIndexChanged(QString)), this, SLOT(slot_change_currency(QString))); QObject::connect(settings.comboBoxCurrency, &QComboBox::currentTextChanged, [=] (QString ticker) { this->slot_change_currency(ticker.toStdString()); rpc->refresh(true); @@ -510,6 +508,48 @@ void MainWindow::setupSettingsModal() { settings.lblTor->setToolTip(tooltip); } + //Use Consolidation + + bool isUsingConsolidation = false; + int size = 0; + QDir zcashdir(rpc->getConnection()->config->zcashDir); + QFile WalletSize(zcashdir.filePath("wallet.dat")); + if (WalletSize.open(QIODevice::ReadOnly)){ + size = WalletSize.size() / 1000000; //when file does open. + //QString size1 = QString::number(size) ; + settings.WalletSize->setText(QString::number(size)); + WalletSize.close(); + } + if (rpc->getConnection() != nullptr) { + isUsingConsolidation = !rpc->getConnection()->config->consolidation.isEmpty() == true; + } + settings.chkConso->setChecked(isUsingConsolidation); + if (rpc->getEZcashD() == nullptr) { + settings.chkConso->setEnabled(false); + } + + //Use Deletetx + + bool isUsingDeletetx = false; + if (rpc->getConnection() != nullptr) { + isUsingDeletetx = !rpc->getConnection()->config->deletetx.isEmpty() == true; + } + settings.chkDeletetx->setChecked(isUsingDeletetx); + if (rpc->getEZcashD() == nullptr) { + settings.chkDeletetx->setEnabled(false); + } + + //Use Zindex + + bool isUsingZindex = false; + if (rpc->getConnection() != nullptr) { + isUsingZindex = !rpc->getConnection()->config->zindex.isEmpty() == true; + } + settings.chkzindex->setChecked(isUsingZindex); + if (rpc->getEZcashD() == nullptr) { + settings.chkzindex->setEnabled(false); + } + // Connection Settings QIntValidator validator(0, 65535); settings.port->setValidator(&validator); @@ -521,16 +561,15 @@ void MainWindow::setupSettingsModal() { settings.hostname->setEnabled(false); settings.port->setEnabled(false); settings.rpcuser->setEnabled(false); - settings.rpcpassword->setEnabled(false); + settings.rpcpassword->setEnabled(false); } else { settings.confMsg->setText("No local HUSH3.conf found. Please configure connection manually."); settings.hostname->setEnabled(true); settings.port->setEnabled(true); settings.rpcuser->setEnabled(true); - settings.rpcpassword->setEnabled(true); + settings.rpcpassword->setEnabled(true); } - // Load current values into the dialog // Load current values into the dialog auto conf = Settings::getInstance()->getSettings(); settings.hostname->setText(conf.host); @@ -616,6 +655,7 @@ void MainWindow::setupSettingsModal() { // Check to see if rescan or reindex have been enabled bool showRestartInfo = false; + bool showReindexInfo = false; if (settings.chkRescan->isChecked()) { Settings::addToZcashConf(zcashConfLocation, "rescan=1"); showRestartInfo = true; @@ -626,8 +666,58 @@ void MainWindow::setupSettingsModal() { showRestartInfo = true; } + if (!rpc->getConnection()->config->consolidation.isEmpty()==false) { + if (settings.chkConso->isChecked()) { + Settings::addToZcashConf(zcashConfLocation, "consolidation=1"); + showRestartInfo = true; + } + } + + if (!rpc->getConnection()->config->consolidation.isEmpty()) { + if (settings.chkConso->isChecked() == false) { + Settings::removeFromZcashConf(zcashConfLocation, "consolidation"); + showRestartInfo = true; + } + } + + if (!rpc->getConnection()->config->deletetx.isEmpty() == false) { + if (settings.chkDeletetx->isChecked()) { + Settings::addToZcashConf(zcashConfLocation, "deletetx=1"); + showRestartInfo = true; + } + } + + if (!rpc->getConnection()->config->deletetx.isEmpty()) { + if (settings.chkDeletetx->isChecked() == false) { + Settings::removeFromZcashConf(zcashConfLocation, "deletetx"); + showRestartInfo = true; + } + } + + if (!rpc->getConnection()->config->zindex.isEmpty() == false) { + if (settings.chkzindex->isChecked()) { + Settings::addToZcashConf(zcashConfLocation, "zindex=1"); + Settings::addToZcashConf(zcashConfLocation, "reindex=1"); + showReindexInfo = true; + } + } + + if (!rpc->getConnection()->config->zindex.isEmpty()) { + if (settings.chkzindex->isChecked() == false) { + Settings::removeFromZcashConf(zcashConfLocation, "zindex"); + Settings::addToZcashConf(zcashConfLocation, "reindex=1"); + showReindexInfo = true; + } + } + if (showRestartInfo) { - auto desc = tr("SilentDragon needs to restart to rescan/reindex. SilentDragon will now close, please restart SilentDragon to continue"); + auto desc = tr("SilentDragon needs to restart to rescan,reindex,consolidation or deletetx. SilentDragon will now close, please restart SilentDragon to continue"); + + QMessageBox::information(this, tr("Restart SilentDragon"), desc, QMessageBox::Ok); + QTimer::singleShot(1, [=]() { this->close(); }); + } + if (showReindexInfo) { + auto desc = tr("SilentDragon needs to reindex for zindex. SilentDragon will now close, please restart SilentDragon to continue"); QMessageBox::information(this, tr("Restart SilentDragon"), desc, QMessageBox::Ok); QTimer::singleShot(1, [=]() { this->close(); }); @@ -1213,7 +1303,6 @@ void MainWindow::setupHushTab() { ui->hushlogo->setBasePixmap(QPixmap(":/img/res/zcashdlogo.gif")); } - void MainWindow::setupChatTab() { qDebug() << __FUNCTION__; QList> addressLabels = AddressBook::getInstance()->getAllAddressLabels(); diff --git a/src/mainwindow.ui b/src/mainwindow.ui index 1081b8e..c803ab5 100644 --- a/src/mainwindow.ui +++ b/src/mainwindow.ui @@ -1014,6 +1014,7 @@ + hushd diff --git a/src/rpc.cpp b/src/rpc.cpp index aafcf7c..06e5298 100644 --- a/src/rpc.cpp +++ b/src/rpc.cpp @@ -1092,8 +1092,8 @@ void RPC::checkForUpdate(bool silent) { } } } catch (const std::exception& e) { - // If anything at all goes wrong, just set the price to 0 and move on. - qDebug() << QString("Caught something nasty: ") << e.what(); + // If anything at all goes wrong, move on + qDebug() << QString("Exception checking for updates!"); } }); } @@ -1110,11 +1110,14 @@ void RPC::refreshPrice() { QNetworkReply *reply = conn->restclient->get(req); auto s = Settings::getInstance(); + qDebug() << "Requesting price feed data via " << price_feed; + QObject::connect(reply, &QNetworkReply::finished, [=] { reply->deleteLater(); try { if (reply->error() != QNetworkReply::NoError) { + qDebug() << "Parsing price feed response"; auto parsed = json::parse(reply->readAll(), nullptr, false); if (!parsed.is_discarded() && !parsed["error"]["message"].is_null()) { qDebug() << QString::fromStdString(parsed["error"]["message"]); @@ -1190,7 +1193,7 @@ void RPC::refreshPrice() { } } catch (const std::exception& e) { // If anything at all goes wrong, just set the price to 0 and move on. - qDebug() << QString("Caught something nasty: ") << e.what(); + qDebug() << QString("Price feed update failure : ") << e.what(); } // If nothing, then set the price to 0; @@ -1214,7 +1217,21 @@ void RPC::shutdownZcashd() { d.setWindowFlags(d.windowFlags() & ~(Qt::WindowCloseButtonHint | Qt::WindowContextHelpButtonHint)); Ui_ConnectionDialog connD; connD.setupUi(&d); - connD.topIcon->setBasePixmap(QIcon(":/icons/res/icon.ico").pixmap(256, 256)); + //connD.topIcon->setBasePixmap(QIcon(":/icons/res/icon.ico").pixmap(256, 256)); + + QMovie *movie1 = new QMovie(":/img/res/silentdragon-animated.gif");; + QMovie *movie2 = new QMovie(":/img/res/silentdragon-animated-dark.gif");; + auto theme = Settings::getInstance()->get_theme_name(); + if (theme == "dark" || "midnight") { + movie2->setScaledSize(QSize(512,512)); + connD.topIcon->setMovie(movie2); + movie2->start(); + } else { + movie1->setScaledSize(QSize(512,512)); + connD.topIcon->setMovie(movie1); + movie1->start(); + } + connD.status->setText(QObject::tr("Please enhance your calm and wait for SilentDragon to exit")); connD.statusDetail->setText(QObject::tr("Waiting for hushd to exit, y'all")); diff --git a/src/scripts/make-deb.sh b/src/scripts/make-deb.sh index 8050313..8cbf5d1 100755 --- a/src/scripts/make-deb.sh +++ b/src/scripts/make-deb.sh @@ -1,5 +1,6 @@ #!/bin/bash # Copyright (c) 2019-2020 The Hush developers +# Thanks to Zecwallet for the original code # Released under the GPLv3 DEBLOG=deb.log.$$ @@ -18,13 +19,18 @@ if [ -z $HUSH_DIR ]; then exit 1; fi -if [ ! -f $HUSH_DIR/artifacts/komodod ]; then - echo "Couldn't find komodod in $HUSH_DIR/artifacts/. Please build komodod." +if [ ! -f $HUSH_DIR/komodod ]; then + echo "Couldn't find komodod in $HUSH_DIR . Please build komodod." exit 1; fi -if [ ! -f $HUSH_DIR/artifacts/komodo-cli ]; then - echo "Couldn't find komodo-cli in $HUSH_DIR/artifacts/. Please build komodod." +if [ ! -f $HUSH_DIR/komodo-cli ]; then + echo "Couldn't find komodo-cli in $HUSH_DIR . Please build komodo-cli." + exit 1; +fi + +if [ ! -f $HUSH_DIR/komodo-tx ]; then + echo "Couldn't find komodo-tx in $HUSH_DIR . Please build komodo-tx." exit 1; fi @@ -45,7 +51,7 @@ echo "[OK]" echo -n "Building..............." -rm -rf bin/silentdragon* > /dev/null +rm -rf silentdragon make clean > /dev/null ./build.sh release > /dev/null echo "[OK]" diff --git a/src/scripts/make-only-deb.sh b/src/scripts/make-only-deb.sh index 2ff93fc..21087eb 100755 --- a/src/scripts/make-only-deb.sh +++ b/src/scripts/make-only-deb.sh @@ -13,7 +13,7 @@ if [ -z $APP_VERSION ]; then echo "APP_VERSION is not set"; exit 1; fi # This assumes we already have a staticly compiled SD echo "Building Debian package for $APP_VERSION-$ARCH..." -debdir=deb-SilentDragon-v$APP_VERSION-$ARCH +debdir=SilentDragon-v$APP_VERSION-$ARCH if [ -e $debdir ]; then mv $debdir $debdir-backup.$(perl -e 'print time') fi diff --git a/src/scripts/mkrelease.sh b/src/scripts/mkrelease.sh index 587a414..0e04e2a 100755 --- a/src/scripts/mkrelease.sh +++ b/src/scripts/mkrelease.sh @@ -1,61 +1,54 @@ #!/bin/bash +# Copyright (c) 2019-2020 The Hush developers +# Thanks to Zecwallet for the original code +# Released under the GPLv3 + if [ -z $QT_STATIC ]; then echo "QT_STATIC is not set. Please set it to the base directory of a statically compiled Qt"; exit 1; fi if [ -z $APP_VERSION ]; then echo "APP_VERSION is not set"; exit 1; fi -if [ -z $PREV_VERSION ]; then echo "PREV_VERSION is not set"; exit 1; fi +#if [ -z $PREV_VERSION ]; then echo "PREV_VERSION is not set"; exit 1; fi if [ -z $HUSH_DIR ]; then - echo "HUSH_DIR is not set. Please set it to the base directory of a Zcash project with built Zcash binaries." + echo "HUSH_DIR is not set. Please set it to the base directory of a Hush project with built Hush binaries." exit 1; fi -if [ ! -f $HUSH_DIR/artifacts/komodod ]; then - echo "Couldn't find komodod in $HUSH_DIR/artifacts/. Please build komodod." +if [ -z $HUSH_DIR ]; then + echo "HUSH_DIR is not set. Please set it to the base directory of hush3.git" exit 1; fi -if [ ! -f $HUSH_DIR/artifacts/hush-cli ]; then - echo "Couldn't find hush-cli in $HUSH_DIR/artifacts/. Please build komodod." +if [ ! -f $HUSH_DIR/komodod ]; then + echo "Couldn't find komodod in $HUSH_DIR . Please build komodod." exit 1; fi -# Ensure that komodod is the right build -#echo -n "komodod version........." -#if grep -q "zqwMagicBean" $HUSH_DIR/artifacts/komodod && ! readelf -s $HUSH_DIR/artifacts/komodod | grep -q "GLIBC_2\.25"; then -# echo "[OK]" -#else -# echo "[ERROR]" -## echo "komodod doesn't seem to be a zqwMagicBean build or komodod is built with libc 2.25" -# exit 1 -#fi - -#echo -n "komodod.exe version....." -#if grep -q "zqwMagicBean" $HUSH_DIR/artifacts/komodod.exe; then -# echo "[OK]" -#else -# echo "[ERROR]" -# echo "komodod doesn't seem to be a zqwMagicBean build" -# exit 1 -#fi - -echo -n "Version files.........." -# Replace the version number in the .pro file so it gets picked up everywhere -sed -i "s/${PREV_VERSION}/${APP_VERSION}/g" silentdragon.pro > /dev/null - -# Also update it in the README.md -sed -i "s/${PREV_VERSION}/${APP_VERSION}/g" README.md > /dev/null -echo "[OK]" +if [ ! -f $HUSH_DIR/komodo-cli ]; then + echo "Couldn't find komodo-cli in $HUSH_DIR . Please build komodo-cli." + exit 1; +fi + +if [ ! -f $HUSH_DIR/komodo-tx ]; then + echo "Couldn't find komodo-tx in $HUSH_DIR . Please build komodo-tx." + exit 1; +fi + +#echo -n "Version files.........." +## Replace the version number in the .pro file so it gets picked up everywhere +#sed -i "s/${PREV_VERSION}/${APP_VERSION}/g" silentdragon.pro > /dev/null +# +## Also update it in the README.md +#sed -i "s/${PREV_VERSION}/${APP_VERSION}/g" README.md > /dev/null +#echo "[OK]" echo -n "Cleaning..............." rm -rf bin/* -rm -rf artifacts/* +#rm -rf artifacts/* make distclean >/dev/null 2>&1 echo "[OK]" - -echo "" echo "[Building on" `lsb_release -r`"]" echo -n "Configuring............" @@ -65,57 +58,115 @@ echo "[OK]" echo -n "Building..............." -rm -rf bin/silentdragon* > /dev/null +rm -rf bin/silentdragon* bin/SilentDragon* > /dev/null make clean > /dev/null -./build.sh release > /dev/null +PATH=$QT_STATIC/bin:$PATH ./build.sh release > /dev/null echo "[OK]" - # Test for Qt echo -n "Static link............" if [[ $(ldd silentdragon | grep -i "Qt") ]]; then - echo "FOUND QT; ABORT"; + echo "FOUND QT dynamicly linked in binary, aborting!"; exit 1 fi echo "[OK]" - -echo -n "Packaging.............." -mkdir bin/silentdragon-v$APP_VERSION > /dev/null +#TODO: support armv8 +OS=linux +ARCH=x86_64 +RELEASEDIR=SilentDragon-v$APP_VERSION +RELEASEFILE1=$RELEASEDIR-$OS-$ARCH-no-params.tar.gz +RELEASEFILE2=$RELEASEDIR-$OS-$ARCH.tar.gz + +# this is equal to the number of files we package plus 1, for the directory +# that is created +NUM_FILES1=10 +NUM_FILES2=12 # 2 additional param files + +echo "Packaging.............." +mkdir bin/$RELEASEDIR +echo "Created bin/$RELEASEDIR" +ls -la silentdragon +echo "Stripping............." strip silentdragon +ls -la silentdragon + +cp silentdragon bin/$RELEASEDIR > /dev/null +cp $HUSH_DIR/komodod bin/$RELEASEDIR > /dev/null +cp $HUSH_DIR/komodo-cli bin/$RELEASEDIR > /dev/null +cp $HUSH_DIR/komodo-tx bin/$RELEASEDIR > /dev/null +cp $HUSH_DIR/hushd bin/$RELEASEDIR > /dev/null +cp $HUSH_DIR/hush-cli bin/$RELEASEDIR > /dev/null +cp $HUSH_DIR/hush-tx bin/$RELEASEDIR > /dev/null +cp README.md bin/$RELEASEDIR > /dev/null +cp LICENSE bin/$RELEASEDIR > /dev/null + + +cd bin && tar czf $RELEASEFILE1 $RELEASEDIR/ #> /dev/null +#ls -la $RELEASEDIR/ +echo "Created $RELEASEFILE1 [OK]" +cd .. + +# Now copy params in so we can make another zip with params +# for first-time users +#ls -la *.params +# This assumes we have these 2 files symlinked to where they live in hush3.git +# or copied to this dir +cp -Lp sapling-*.params bin/$RELEASEDIR/ +if [ $? -eq 0 ]; then + echo "[OK] Copied Sapling params" +else + echo "[ERROR] Failed to copy Sapling params!" + exit 1 +fi -cp silentdragon bin/silentdragon-v$APP_VERSION > /dev/null -cp $HUSH_DIR/artifacts/komodod bin/silentdragon-v$APP_VERSION > /dev/null -cp $HUSH_DIR/artifacts/komodo-cli bin/silentdragon-v$APP_VERSION > /dev/null -cp $HUSH_DIR/artifacts/komodo-tx bin/silentdragon-v$APP_VERSION > /dev/null -cp $HUSH_DIR/artifacts/hushd bin/silentdragon-v$APP_VERSION > /dev/null -cp $HUSH_DIR/artifacts/hush-cli bin/silentdragon-v$APP_VERSION > /dev/null -cp $HUSH_DIR/artifacts/hush-tx bin/silentdragon-v$APP_VERSION > /dev/null -cp README.md bin/silentdragon-v$APP_VERSION > /dev/null -cp LICENSE bin/silentdragon-v$APP_VERSION > /dev/null - -cd bin && tar czf linux-silentdragon-v$APP_VERSION.tar.gz silentdragon-v$APP_VERSION/ > /dev/null +cd bin && tar czf $RELEASEFILE2 $RELEASEDIR/ +#ls -la $RELEASEDIR/ +echo "Created $RELEASEFILE2 [OK]" cd .. -mkdir artifacts >/dev/null 2>&1 -cp bin/linux-silentdragon-v$APP_VERSION.tar.gz ./artifacts/linux-binaries-silentdragon-v$APP_VERSION.tar.gz -echo "[OK]" +#mkdir artifacts >/dev/null 2>&1 +#cp bin/linux-silentdragon-v$APP_VERSION.tar.gz ./artifacts/linux-binaries-silentdragon-v$APP_VERSION.tar.gz +if [ -f bin/$RELEASEFILE1 ] ; then + echo -n "Package contents for $RELEASEFILE1 ......." + # Test if the package is built OK + if tar tf "bin/$RELEASEFILE1" | wc -l | grep -q "$NUM_FILES1"; then + echo "[OK] $RELEASEFILE1 has correct number of files" + else + echo "[ERROR] Wrong number of files in $RELEASEFILE1 ! Should be $NUM_FILES1" + exit 1 + fi +else + echo "[ERROR] bin/$RELEASEFILE1 does not exist!" + exit 1 +fi -if [ -f artifacts/linux-binaries-silentdragon-v$APP_VERSION.tar.gz ] ; then - echo -n "Package contents......." +if [ -f bin/$RELEASEFILE2 ] ; then + echo -n "Package contents for $RELEASEFILE2 ......." # Test if the package is built OK - if tar tf "artifacts/linux-binaries-silentdragon-v$APP_VERSION.tar.gz" | wc -l | grep -q "6"; then - echo "[OK]" + if tar tf "bin/$RELEASEFILE2" | wc -l | grep -q "$NUM_FILES2"; then + echo "[OK] $RELEASEFILE2 has correct number of files" else - echo "[ERROR]" + echo "[ERROR] Wrong number of files in $RELEASEFILE2 ! Should be $NUM_FILES2" exit 1 fi else - echo "[ERROR]" + echo "[ERROR] bin/$RELEASEFILE2 does not exist!" exit 1 fi +cd bin +echo "DONE! Checksums:" +sha256sum $RELEASEFILE1 +sha256sum $RELEASEFILE2 +cd .. +echo "Speak And Transact Freely!" + +exit + +echo "Skipping deb, use make-deb.sh instead" + echo -n "Building deb..........." debdir=bin/deb/silentdragon-v$APP_VERSION mkdir -p $debdir > /dev/null @@ -139,6 +190,8 @@ cp $debdir.deb artifacts/linux-deb-silentdragon-v$APP_VERSION.de echo "[OK]" +echo "Skipping windows" +exit echo "" echo "[Windows]" diff --git a/src/sendtab.cpp b/src/sendtab.cpp index d3a625a..f60c65a 100644 --- a/src/sendtab.cpp +++ b/src/sendtab.cpp @@ -708,12 +708,25 @@ void MainWindow::sendButton() { // Show a dialog to confirm the Tx if (confirmTx(tx)) { - // Create a new Dialog to show that we are computing/sending the Tx + // Create a new Dialog to show that we are computing/sending the Tx auto d = new QDialog(this); auto connD = new Ui_ConnectionDialog(); connD->setupUi(d); - QPixmap logo(":/img/res/logobig.gif"); - connD->topIcon->setBasePixmap(logo.scaled(256, 256, Qt::KeepAspectRatio, Qt::SmoothTransformation)); + + QMovie *movie1 = new QMovie(":/img/res/silentdragon-animated.gif");; + QMovie *movie2 = new QMovie(":/img/res/silentdragon-animated-dark.gif");; + auto theme = Settings::getInstance()->get_theme_name(); + if (theme == "dark" || "midnight") { + movie2->setScaledSize(QSize(512,512)); + connD->topIcon->setMovie(movie2); + movie2->start(); + } else { + movie1->setScaledSize(QSize(512,512)); + connD->topIcon->setMovie(movie1); + movie1->start(); + } + + //connD->topIcon->setBasePixmap(logo.scaled(256, 256, Qt::KeepAspectRatio, Qt::SmoothTransformation)); connD->status->setText(tr("Please wait...")); connD->statusDetail->setText(tr("Computing your transaction")); diff --git a/src/settings.cpp b/src/settings.cpp index 2341417..26f6529 100644 --- a/src/settings.cpp +++ b/src/settings.cpp @@ -62,7 +62,7 @@ Config Settings::getSettings() { auto port = s.value("connection/port").toString(); auto username = s.value("connection/rpcuser").toString(); auto password = s.value("connection/rpcpassword").toString(); - + return Config{host, port, username, password}; } diff --git a/src/settings.ui b/src/settings.ui index 7370a2c..16a6de8 100644 --- a/src/settings.ui +++ b/src/settings.ui @@ -6,8 +6,8 @@ 0 0 - 540 - 504 + 623 + 653 @@ -26,7 +26,7 @@ - 2 + 3 @@ -161,7 +161,6 @@ - @@ -178,241 +177,231 @@ - - - - - 80 - 150 - 80 - 25 - - - - - 0 - 0 - - - - - AED - - - - - ARS - - - - - AUD - - - - - BDT - - - - - BHD - - - - - BMD - - - - - BRL - - - - - BTC - - - - - CAD - - - - - CHF - - - - - CLP - - - - - CNY - - - - - CZK - - - - - DKK - - - - - EUR - - - - - GBP - - - - - HKD - - - - - HUF - - - - - IDR - - - - - ILS - - - - - INR - - - - - JPY - - - - - KRW - - - - - KWD - - - - - LKR - - - - - PKR - - - - - MXN - - - - - NOK - - - - - NZD - - - - - RUB - - - - - SAR - - - - - SEK - - - - - SGD - - - - - THB - - - - - TRY - - - - - TWD - - - - - UAH - - - - - USD - - - - - VEF - - - - - VND - - - - - XAG - - - - - XAU - - - - - ZAR - + + + + 0 + 0 + + + + + AED + + + + + ARS + + + + + AUD + + + + + BDT + + + + + BHD + + + + + BMD + + + + + BRL + + + + + BTC + + + + + CAD + + + + + CHF + + + + + CLP + + + + + CNY + + + + + CZK + + + + + DKK + + + + + EUR + + + + + GBP + + + + + HKD + + + + + HUF + + + + + IDR + + + + + ILS + + + + + INR + + + + + JPY + + + + + KRW + + + + + KWD + + + + + LKR + + + + + PKR + + + + + MXN + + + + + NOK + + + + + NZD + + + + + RUB + + + + + SAR + + + + + SEK + + + + + SGD + + + + + THB + + + + + TRY + + + + + TWD + + + + + UAH + + + + + USD + + + + + VEF + + + + + VND + + + + + XAG + + + + + XAU + + + + + ZAR + + + - - - @@ -441,6 +430,11 @@ dark + + + midnight + + @@ -707,83 +701,268 @@ Troubleshooting - - - - - Reindex - - - - - - - Rescan the blockchain for any missing wallet transactions and to correct your wallet balance. This may take several hours. You need to restart SilentDragon for this to take effect - - - true - - - - - - - Rescan - - - - - - - Qt::Horizontal - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - - - - - - - Rebuild the entire blockchain from the genesis block, by rescanning all the block files. This may take several hours to days, depending on your hardware. You need to restart SilentDragon for this to take effect - - - true - - - - - - - Qt::Horizontal - - - - - - - - - - - + + + + 9 + 118 + 81 + 23 + + + + Reindex + + + + + + 9 + 38 + 583 + 51 + + + + Rescan the blockchain for any missing wallet transactions and to correct your wallet balance. This may take several hours. You need to restart SilentDragon for this to take effect + + + true + + + + + + 9 + 9 + 73 + 23 + + + + Rescan + + + + + + 9 + 102 + 583 + 16 + + + + Qt::Horizontal + + + + + + 9 + 95 + 16 + 17 + + + + + + + + + + 9 + 147 + 583 + 51 + + + + Rebuild the entire blockchain from the genesis block, by rescanning all the block files. This may take several hours to days, depending on your hardware. You need to restart SilentDragon for this to take effect + + + true + + + + + + 10 + 210 + 583 + 16 + + + + Qt::Horizontal + + + + + + 9 + 204 + 16 + 17 + + + + + + + + + + 10 + 260 + 583 + 51 + + + + This code can greatly reduce the size of wallets and increase performance for service providers. It's designed mostly for exchanges and mining pools but anybody with a large wallet will benefit. + + + true + + + + + + 10 + 369 + 583 + 51 + + + + Enable Old Transaction Deletion + + + true + + + + + + 10 + 324 + 583 + 16 + + + + Qt::Horizontal + + + + + + 10 + 230 + 121 + 23 + + + + Consolidation + + + + + + 10 + 340 + 121 + 23 + + + + Deletetx + + + + + + 10 + 410 + 583 + 16 + + + + Qt::Horizontal + + + + + + 10 + 460 + 583 + 51 + + + + The new experimental Shielded Index (-zindex) which keeps track of many stats that can be seen via the new getchaintxstats RPC. These include shielded payments, anonymity set size and many other things. + + + true + + + + + + 10 + 430 + 121 + 23 + + + + Zindex + + + + + + 330 + 550 + 51 + 17 + + + + 100 + + + + + + 210 + 550 + 111 + 17 + + + + Wallet.dat Size : + + + + + + 370 + 550 + 41 + 17 + + + + MB + + diff --git a/src/version.h b/src/version.h index 73156bc..6a3a1f9 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define APP_VERSION "0.9.0" +#define APP_VERSION "0.9.1" diff --git a/src/viewkey.ui b/src/viewkey.ui new file mode 100644 index 0000000..ac17828 --- /dev/null +++ b/src/viewkey.ui @@ -0,0 +1,78 @@ + + + ViewKey + + + + 0 + 0 + 461 + 389 + + + + Viewing Key + + + + + + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Close|QDialogButtonBox::Ok|QDialogButtonBox::Save + + + + + + + Viewing Keys. Keep Secure! + + + + + + + + + buttonBox + accepted() + ViewKey + accept() + + + 248 + 254 + + + 157 + 274 + + + + + buttonBox + rejected() + ViewKey + reject() + + + 316 + 260 + + + 286 + 274 + + + + + diff --git a/src/websockets.cpp b/src/websockets.cpp index 6a694ec..7af51a6 100644 --- a/src/websockets.cpp +++ b/src/websockets.cpp @@ -538,7 +538,7 @@ QString AppDataServer::encryptOutgoing(QString msg) { /** Attempt to decrypt a message. If the decryption fails, it returns the string "error", the decrypted message otherwise. It will use the given secret to attempt decryption. In addition, it will enforce that the nonce is greater than the last seen nonce, - unless the skipNonceCheck = true, which is used when attempting decrtption with a temp secret key. + unless the skipNonceCheck = true, which is used when attempting decrytption with a temp secret key. */ QString AppDataServer::decryptMessage(QJsonDocument msg, QString secretHex, QString lastRemoteNonceHex) { qDebug() << "Decrypting message"; @@ -547,8 +547,9 @@ QString AppDataServer::decryptMessage(QJsonDocument msg, QString secretHex, QStr QString encryptedhex = msg.object().value("payload").toString(); // Enforce limits on the size of the message - if (noncehex.length() > ((int)crypto_secretbox_NONCEBYTES * 2) || - encryptedhex.length() > 2 * 50 * 1024 /*50kb*/) { + int MAX_LENGTH = 2*50*1024; // 50kb + if (noncehex.length() > ((int)crypto_secretbox_NONCEBYTES * 2) || encryptedhex.length() > MAX_LENGTH) { + qDebug() << "Encrypted hex size of " << encryptedhex.length() << " bytes is too large!"; return "error"; } @@ -566,6 +567,7 @@ QString AppDataServer::decryptMessage(QJsonDocument msg, QString secretHex, QStr // Refuse to accept a lower nonce, return an error delete[] lastRemoteBin; delete[] noncebin; + qDebug() << "Repeated nonce detected, potential attack or misconfiguration! Bailing out."; return "error"; } diff --git a/zec_qt_wallet_pt.ts b/zec_qt_wallet_pt.ts deleted file mode 100644 index b59de99..0000000 --- a/zec_qt_wallet_pt.ts +++ /dev/null @@ -1,2055 +0,0 @@ - - - - - AddressBookModel - - - Label - Etiqueta - - - - Address - Endereço - - - - BalancesTableModel - - - Address - Endereço - - - - Amount - Quantidade - - - - ConnectionDialog - - - SilentDragon - SilentDragon - - - - The Dragon Awakens... - O Dragão Desperta... - - - Starting Up - Iniciando - - - - MainWindow - - - SilentDragon - SilentDragon - - - - Balance - Saldo - - - - Summary - Sumário - - - - Shielded - Blindado - - - - Transparent - Transparente - - - - Total - Total - - - - Some transactions are not yet confirmed - Existem transações não confirmadas ainda - - - - Address Balances - Saldo dos Endereços - - - - - Send - Enviar - - - - From - Endereço de partida - - - - Address Balance - Saldo do Endereço - - - - Send To - Enviar para - - - - Recipient - Destinatário - - - - - - - - Address - Endereço - - - - - Address Book - Agenda - - - - - - - Amount - Quantidade - - - - Max Available - Máximo disponível - - - - Upload File - Subir arquivo - - - - - - - Memo - Anexar recado - - - - Add Recipient - Adicionar destinatário - - - - Recurring payment - Pagamento recorrente - - - - Every month, starting 12-May-2012, for 6 payments - Todo mês, a partir de 12 de maio de 2012, por 6 pagamentos - - - - Edit Schedule - Editar programação - - - - - Miner Fee - Taxa de mineração - - - - 0 - 0 - - - - Cancel - Cancelar - - - - Receive - Receber - - - - Address Type - Tipo de Endereço - - - - Local Services - - - - - Longest Chain - - - - - &Send Duke Feedback - &Enviar feedback do Duke - - - - &Hush Discord - &Hush Discord - - - - &Hush Website - &Hush site da Internet - - - - Pay HUSH &URI... - Pagar HUSH &URI... - - - - Request HUSH... - Solicitação HUSH... - - - - Validate Address - Validar endereço - - - z-Addr(Sapling) - z-Addr(Sapling) - - - t-Addr - t-Addr - - - z-Addr(Sprout) - z-Addr(Sprout) - - - - New Address - Novo Endereço - - - - Label - Etiqueta - - - - Update Label - Atualizar - - - - Address balance - Saldo do endereço - - - - Optional - Opcional - - - - - Export Private Key - Exportar Chave Privada - - - - Transactions - Transações - - - - hushd - hushd - - - - You are currently not mining - Você não está minerando atualmente - - - - - - - - - - - - - - - - - - - Loading... - Carregando... - - - - Block height - Altura do Bloco - - - - Network solution rate - Taxa de soluções da rede - - - - Connections - Conexões - - - - - - - - - - - - - - - - - - | - | - - - - Shielded Address (Private, Anonymous) - Endereço Blindado (Privado, Anônimo) - - - - Transparent Address (Public, Metadata-Leaking) - Endereço transparente (público, vazamento de metadados) - - - - View All Addresses - Ver todos os endereços - - - - Notarized Hash - Hash Notarizado - - - - Notarized txid - Txid Notarizado - - - - Notarized Lag - Lag Notarizado - - - - KMD Version - Versão KMD - - - - Protocol Version - Versão do protocolo - - - - Version - Versão - - - - P2P Port - Porta P2P - - - - RPC Port - Porta RPC - - - - Client Name - Nome do cliente - - - - Next Halving - Próxima metade - - - - &File - &Arquivo - - - - &Help - &Ajuda - - - - &Apps - &Aplicações - - - - &Edit - &Editar - - - - E&xit - Sair - - - - &About - &Sobre - - - - &Settings - &Preferências - - - - Ctrl+P - Ctrl+P - - - &Donate - &Doar - - - - Check github.com for &updates - &Checar github.com por atualizações - - - - Sapling &turnstile - Sapling &turnstile - - - - Ctrl+A, Ctrl+T - Ctrl+A, Ctrl+T - - - - &Import private key - &Importar chave privada - - - - &Export all private keys - &Exportar todas as chaves privadas - - - - &z-board.net - &z-board.net - - - - Ctrl+A, Ctrl+Z - Ctrl+A, Ctrl+Z - - - - Address &book - &Agenda de Endereços - - - - Ctrl+B - Ctrl+B - - - - &Backup wallet.dat - &Salvar wallet.dat - - - - - Export transactions - Transações de exportação - - - - Connect mobile &app - Conectar &aplicativo móvel - - - - Ctrl+M - Ctrl+M - - - - Tor configuration is available only when running an embedded hushd. - A configuração do Tor está disponível apenas ao executar um hushd incorporado. - - - - You're using an external hushd. Please restart hushd with -rescan - Você está usando um hushd externo. Por favor, reinicie o hushd com -rescan - - - - You're using an external hushd. Please restart hushd with -reindex - Você está usando um hushd externo. Por favor, reinicie o hushd com -reindex - - - - Enable Tor - Ativar Tor - - - - Connection over Tor has been enabled. To use this feature, you need to restart SilentDragon. - A conexão através do Tor foi ativada. Para usar esse recurso, você precisa reiniciar o SilentDragon. - - - - Disable Tor - Desativar Tor - - - - Connection over Tor has been disabled. To fully disconnect from Tor, you need to restart SilentDragon. - A conexão através do Tor foi desativada. Para se desconectar totalmente do Tor, é necessário reiniciar o SilentDragon. - - - Thanks for supporting SilentDragon! - Obrigado por apoiar a SilentDragon! - - - Donate 0.01 - Doar 0.01 - - - to support SilentDragon - para apoiar SilentDragon - - - - You are on testnet, your post won't actually appear on z-board.net - Você está na testnet, seu post não aparecerá no z-board.net - - - - You need a sapling address with available balance to post - Você precisa de um endereço sapling com saldo disponível para postar - - - - - Computing Tx: - Gerando Tx: - - - The keys were imported. It may take several minutes to rescan the blockchain. Until then, functionality may be limited - Chaves importadas. Pode demorar alguns minutos para re-escanear a blockchain. Até lá, funcionalidades poderão estar limitadas - - - - Private key import rescan finished - Re-escan de chave privada completo - - - - SilentDragon needs to restart to rescan/reindex. SilentDragon will now close, please restart SilentDragon to continue - O SilentDragon precisa reiniciar para redigitalizar / reindexar. O SilentDragon agora será fechado. Reinicie o SilentDragon para continuar - - - - Restart SilentDragon - Reinicie o SilentDragon - - - Please paste your private keys (z-Addr or t-Addr) here, one per line - Coloque sua(s) chave(s) privadas (z-Addr ou t-Addr) aqui, uma por linha - - - The keys will be imported into your connected hushd node - As chaves serão importadas em seu nó hushd conectado - - - - Some feedback about SilentDragon or Hush... - Alguns comentários sobre SilentDragon ou Hush ... - - - - Send Duke some private and shielded feedback about - Envie para Duke algum feedback privado e protegido sobre - - - - or SilentDragon - ou SilentDragon - - - - Enter Address to validate - Digite o endereço para validar - - - - Transparent or Shielded Address: - Endereço transparente ou blindado: - - - - Paste HUSH URI - Colar HUSH URI - - - - Error paying Hush URI - Erro ao pagar o URI do Hush - - - - URI should be of the form 'hush:<addr>?amt=x&memo=y - O URI deve ter o formato - - - - Please paste your private keys here, one per line - Cole suas chaves privadas aqui, uma por linha - - - - The keys will be imported into your connected Hush node - As chaves serão importadas para o nó Hush conectado - - - - The keys were imported! It may take several minutes to rescan the blockchain. Until then, functionality may be limited - As chaves foram importadas! Pode levar alguns minutos para verificar novamente o blockchain. Até lá, a funcionalidade pode ser limitada - - - - Error - Erro - - - - Error exporting transactions, file was not saved - Erro ao exportar transações, o arquivo não foi salvo - - - - No wallet.dat - Nenhum wallet.data - - - - Couldn't find the wallet.dat on this computer - Não foi localizado o wallet.dat nesse computador - - - - You need to back it up from the machine hushd is running on - Você precisar salvar a partir da máquina que hushd está rodando - - - - Backup wallet.dat - Salvar wallet.dat - - - - Couldn't backup - Não foi possível salvar - - - - Couldn't backup the wallet.dat file. - Não foi possível salvar o arquivo wallet.dat. - - - - You need to back it up manually. - Você precisar salvá-lo manualmente. - - - - These are all the private keys for all the addresses in your wallet - YOUR_TRANSLATION_HERE - - - - Private key for - Chave privada para - - - - Save File - Salvar Arquivo - - - - Unable to open file - Não foi possível abrir o arquivo - - - - - Copy address - Copiar endereço - - - - - - Copied to clipboard - Copiado - - - - Get private key - Obter chave privada - - - - Shield balance to Sapling - Blindar saldo para Sapling - - - - - View on block explorer - Ver no explorador de blocos - - - - Address Asset Viewer - Endereço Asset Viewer - - - - Convert Address - Converter Endereço - - - - Migrate to Sapling - Migrar para Sapling - - - - Copy txid - Copiar txid - - - - View Payment Request - Exibir solicitação de pagamento - - - - View Memo - Ver Recado - - - - Reply to - Responder a - - - - Created new t-Addr - Criar novo t-Addr - - - - Copy Address - Copiar endereço - - - - Address has been previously used - O endereço foi usado anteriormente - - - - Address is unused - Endereço não utilizado - - - - Recipient - Destinatário - - - - - File Upload - Upload de arquivo - - - - Only z-addresses can have memos - Apenas z-Addresses podem conter recados - - - - File size too large - Tamanho do arquivo muito grande - - - - The file size - O tamanho do arquivo - - - - bytes is greater than - bytes é maior que - - - - bytes - bytes - - - - Memos can only be used with z-addresses - Recados só podem ser anexados com z-Addresses - - - - The memo field can only be used with a z-address. - - O campo de recado só pode ser usado junto com z-Addresses. - - - - - -doesn't look like a z-address - -não se parece com um z-Address - - - - Change from - Troco de - - - - Current balance : - Saldo atual: - - - - Balance after this Tx: - Saldo após este Tx: - - - - Transaction Error - Erro na Transação - - - - From Address is Invalid - Endereço de partida inválido - - - - Recipient Address - Endereço destinatário - - - - is Invalid - é Inválido - - - - Amount '%1' is invalid! - O valor '%1' é inválido! - - - - MemoDialog - - - - Memo - Recado - - - - Include Reply Address - Incluir endereço de resposta - - - - MemoEdit - - - Reply to - Responder a - - - - MobileAppConnector - - - Connect Mobile App - Connect Mobile App - - - - Scan this QRCode in SilentDragonAndroid to connect your device - - - - - QR Code - Código QR - - - - Connection String - Conexão - - - - Allow connections over the internet via SilentDragon wormhole - Conexão - - - - SilentDragonAndroid - - - - Scan this QRCode from your SilentDragon companion app to connect your phone - Digitalize este QRCode no seu aplicativo complementar SilentDragon para conectar seu telefone - - - SilentDragon Companion App - SilentDragon Companion App - - - - Disconnect - desconectar - - - - - TextLabel - Etiqueta de texto - - - - Last seen: - Visto pela última vez: - - - - Connection type: - Tipo de conexão: - - - - PrivKey - - Private Key - Chave Privada - - - - Private Keys - Chaves Privadas - - - - QObject - - - Attempting autoconnect - Tentando conectar-se automaticamente - - - - Starting embedded hushd - Iniciando hushd acoplado - - - - hushd is set to run as daemon - erro no hushd - - - - Waiting for hushd - Esperando pelo hushd - - - - You have hushd set to start as a daemon, which can cause problems with SilentDragon - -.Please remove the following line from your HUSH3.conf and restart SilentDragon -daemon=1 - Você tem hushd configurado como daemon, o que pode causar problemas com a SilentDragon - Por favor, remova a seguinte linha do seu HUSH3.conf e reinicie a SilentDragon: -daemon=1 - - - Couldn't start the embedded hushd. - -Please try restarting. - -If you previously started hushd with custom arguments, you might need to reset HUSH3.conf. - -If all else fails, please run hushd manually. - Não foi possível iniciar o hushd acoplado. -Por favor, tenta reiniciar. -Se você iniciou hushd anteriormente com parâmetros customizados você pode precisar resetar seu HUSH3.conf. - -Se ainda assim não der certo, por favor rode hushd manualmente. - - - - Couldn't connect to hushd configured in HUSH3.conf. - -Not starting embedded hushd because --no-embedded was passed - Não foi possível conectar ao hushd configurado em HUSH3.conf. - -Não iniciando hushd acoplado porque nenhum foi passado como parâmetro - - - - Hide Advanced Config - Ocultar configuração avançada - - - - Show Advanced Config - Mostrar configuração avançada - - - - Choose data directory - Escolha o diretório de dados - - - - All Downloads Finished Successfully! - Todos os downloads terminaram com sucesso! - - - - Couldn't download params. Please check the help site for more info. - Não foi possível baixar os parâmetros. Por favor, verifique o site de ajuda para mais informações. - - - - The process returned - O processo retornou - - - - Couldn't start the embedded hushd. - -Please try restarting. - -If you previously started hushd with custom arguments, you might need to reset HUSH3.conf. - -If all else fails, please run hushd manually. - Não foi possível iniciar o hushd incorporado. - -Por favor, tente reiniciar. - -Se você iniciou anteriormente o hushd com argumentos personalizados, pode ser necessário redefinir o HUSH3.conf. - -Se tudo mais falhar, execute o hushd manualmente. - - - - Could not create HUSH3.conf. - Não foi possível criar o HUSH3.conf. - - - - - Downloading - Baixando - - - - more remaining ) - faltando ) - - - - MB of - MB de - - - - MB at - MB a - - - - This may take several hours, grab some popcorn - Isso pode levar várias horas, pegue um pouco de pipoca - - - - There was an error! : - Havia um erro! : - - - - Downloading blocks - Baixando blocos - - - - Block height - Altura do bloco - - - - Syncing - Sincronizando - - - - Connected - Conectado - - - - testnet: - testnet: - - - - Connected to hushd - Conectado ao hushd - - - - There was an error connecting to hushd. The error was - Ocorreu um erro conectando ao hushd. O erro foi - - - - - - The transaction with id - A transação com id - - - - - - failed. The error was - falhou. O erro foi - - - - - - failed - falhou - - - - - - Tx - Tx - - - - hushd has no peer connections! Network issues? - O hushd não tem conexões de pares! Problemas de rede? - - - - tx computing. This can take several minutes. - gerando transação. Isso pode levar alguns minutos. - - - - Update Available - Atualização disponível - - - - A new release v%1 is available! You have v%2. - -Would you like to visit the releases page? - Uma nova versão v%1 está disponível! Você tem v%2. - - Você gostaria de visitar a página de lançamentos? - - - - No updates available - Nenhuma atualização disponível - - - - You already have the latest release v%1 - Você já tem a versão mais recente v%1 - - - - Please wait for SilentDragon to exit - Por favor, espera SilentDragon finalizar - - - - Waiting for hushd to exit - Esperando hushd finalizar - - - - failed. Please check the help site for more info - falhou. Por favor, cheque o site de ajuda para mais informações - - - - hushd error - erro no hushd - - - - A manual connection was requested, but the settings are not configured. - -Please set the host/port and user/password in the Edit->Settings menu. - Uma conexão manual foi requisitada, mas os ajustes não estão configurados. - -Por favor, coloque o host/porta e usuário/senha no menu Editar>Preferências. - - - - Could not connect to hushd configured in settings. - -Please set the host/port and user/password in the Edit->Settings menu. - Não foi possível conectar ao hushd configurado nas preferências. - -Por favor, coloque o host/porta e usuário/senha no menu Editar>Preferências. - - - - Authentication failed. The username / password you specified was not accepted by hushd. Try changing it in the Edit->Settings menu - Autenticação falhou. O usuário/senha especificado não foi aceitado pelo hushd. Tente alterá-los em Editar->Preferências - - - - Your hushd is starting up. Please wait. - Seu hushd está iniciando. Por favor aguarde. - - - - - Connection Error - Erro na Conexão - - - - - - - Transaction Error - Erro na transação - - - There was an error sending the transaction. The error was: - Ocorreu um erro enviando a transação. O erro foi: - - - - - No Connection - Sem Conexão - - - - Pick - Escolher - - - - Address or Label Error - Erro de endereço ou etiqueta - - - - Address or Label cannot be empty - Endereço ou etiqueta não podem estar vazios - - - - Address Format Error - Erro no Formato do Endereço - - - doesn't seem to be a valid Hush address. - não aparenter ser um endereço válido de HUSH. - - - - %1 doesn't seem to be a valid Hush address. - %1 não parece ser um endereço Hush válido. - - - - Label Error - Erro na etiqueta - - - - The label '%1' already exists. Please remove the existing label. - O rótulo '%1' já existe. Por favor, remova a etiqueta existente. - - - - Import Address Book - Importar catálogo de endereços - - - - Unable to open file - Não foi possível abrir o arquivo - - - - Address Book Import Done - Importação do catálogo de endereços concluída - - - - Imported %1 new Address book entries - %1 novas entradas importadas do catálogo de endereços - - - - Copy address - Copiar endereço - - - - Copied to clipboard - Copiado - - - - Delete label - Deletar etiqueta - - - - Tx submitted (right click to copy) txid: - Tx enviada (botão-direito para copiar) txid: - - - - Locked funds - Fundos presos - - - - Could not initiate migration. -You either have unconfirmed funds or the balance is too low for an automatic migration. - Não foi possível iniciar a migração. -Você possui fundos não confirmados ou o saldo é muito baixo para uma migração automática. - - - - Computing Tx: - Gerando Tx: - - - - Type - Tipo - - - - Address - Endereço - - - - Date/Time - Data/Hora - - - - Amount - Quantidade - - - - Connected directly - Conectado diretamente - - - - Connected over the internet via SilentDragon wormhole service - Conectado pela Internet através do serviço SilentDragon wormhole - - - - Node is still syncing. - O nó ainda está sincronizando. - - - - No sapling or transparent addresses with enough balance to spend. - Não há endereços novos ou transparentes com saldo suficiente para gastar. - - - - RecurringDialog - - - Dialog - Diálogo - - - - Add - Adicionar - - - - Edit - Editar - - - - Delete - Excluir - - - - RequestDialog - - - Payment Request - Pedido de Pagamento - - - - AddressBook - Livro de endereços - - - - Request From - Solicitação de - - - - My Address - Meu endereço - - - - Amount in - Montante em - - - - z address - "z-Address"> - - - - Amount - Quantidade - - - - The recipient will see this address in the "to" field when they pay your request. - O destinatário verá esse endereço no campo "para" quando pagar sua solicitação. - - - - Amount USD - Quantidade USD - - - - Memo - Memorando - - - - TextLabel - Etiqueta de texto - - - - Request payment from a Sapling address. You'll send a HUSH 0.0001 transaction to the address with a HUSH payment URI. The memo will be included in the transaction when the address pays you. - Solicitar pagamento a partir de um endereço de rebento. Você enviará uma transação 0.0001 HUSH para o endereço com um URI de pagamento HUSH. A nota será incluída na transação quando o endereço lhe pagar. - - - - Error paying HUSH URI - Erro ao pagar o URI do HUSH - - - - URI should be of the form 'hush:<addr>?amt=x&memo=y - O URI deve ter o formato - - - - Pay To - Pagar para - - - - Pay - Pagar - - - - You are paying a payment request. Your address will not be visible to the person requesting this payment. - Você está pagando uma solicitação de pagamento. Seu endereço não estará visível para a pessoa que solicitou este pagamento. - - - - Can only request from Sapling addresses - Só pode solicitar endereços do Sapling - - - - Settings - - - Settings - Preferências - - - - hushd connection - Conexão com hushd - - - - Host - Host - - - - Port - Porta - - - - RPC Username - RPC-Usuário - - - - RPC Password - RPC-Senha - - - - Options - Opções - - - - Check github for updates at startup - - - - - Connect to the Tor network via SOCKS proxy running on 127.0.0.1:9050. Please note that you'll have to install and run the Tor service externally. - Conecte-se à rede Tor através do proxy SOCKS executando em 127.0.0.1:9050. Observe que você precisará instalar e executar o serviço Tor externamente. - - - - Shielded transactions are saved locally and shown in the transactions tab. If you uncheck this, shielded transactions will not appear in the transactions tab. - Transações blindadas são salvas localmente e exibidas na aba de transações. Se desmarcado, transações blindadas não aparecerão na aba de transações. - - - - Connect via Tor - Conectar via Tor - - - - Connect to github on startup to check for updates - - - - - Connect to the internet to fetch HUSH prices - - - - - Fetch HUSH / USD prices - - - - - Troubleshooting - Solução de problemas - - - - Reindex - Reindex - - - - Rescan the blockchain for any missing wallet transactions and to correct your wallet balance. This may take several hours. You need to restart SilentDragon for this to take effect - Analise novamente o blockchain em busca de transações ausentes na carteira e corrija seu saldo. Isso pode levar várias horas. Você precisa reiniciar o SilentDragon para que isso entre em vigor - - - - Rescan - Rescan - - - - Rebuild the entire blockchain from the genesis block, by rescanning all the block files. This may take several hours to days, depending on your hardware. You need to restart SilentDragon for this to take effect - Reconstrua toda a blockchain a partir do bloco genesis, redigitalizando todos os arquivos do bloco. Isso pode levar várias horas a dias, dependendo do seu hardware. Você precisa reiniciar o SilentDragon para que isso entre em vigor - - - - Clear History - Limpar histórico - - - - Remember shielded transactions - Lembrar transações blindadas - - - - Allow custom fees - Permitir taxas customizadas - - - - Allow overriding the default fees when sending transactions. Enabling this option may compromise your privacy since fees are transparent. - Permite configurar as taxas de transação manualmente. Ativar essa opção pode comprometer sua privacidade uma vez que as taxas são transparentes na rede. - - - - Normally, change from t-Addresses goes to another t-Address. Checking this option will send the change to your shielded sapling address instead. Check this option to increase your privacy. - Normalmente, trocos de um t-Address vão para outro t-Address. Ativar essa opção irá fazer com que o troco seja encaminhando para um endereço blindado. Ative essa opção para aumentar sua privacidade. - - - - Shield change from t-Addresses to your sapling address - Blinde trocos de t-Addresses para seu endereço Sapling - - - - Turnstile - - - - Turnstile Migration - Migração Turnstile - - - - Migrate over - Migrar durante - - - - From - Endereço de partida - - - - <html><head/><body><p>Funds from Sprout z-Addresses (which start with &quot;zc&quot;) need to be moved to the upgraded Sapling z-Addresses (which start with &quot;zs&quot;). The funds cannot be moved directly, but need to be sent through intermediate &quot;transparent&quot; addresses in privacy-preserving way.</p><p>This migration can be done automatically for you.</p></body></html> - <html><head/><body><p>Fundos de endereços z-Address Sprout (que começam com &quot;zc&quot;) precisam ser movidos para os novos z-Addresses Sapling (que começam com &quot;zs&quot;). Os fundos não podem ser movidos diretamente, mas precisam ser enviados passando por endereços transparentes de uma maneira que proteja sua privacidade. </p><p>Essa migração pode ser feita automaticamente para você.</p></body></html> - - - - To - Para - - - - Balance - Saldo - - - - Miner Fees - Taxa de mineração - - - - Total Balance - Saldo Total - - - - TurnstileProgress - - - Turnstile Migration Progress - Progresso da Migração Turnstile - - - - From - Endereço de partida - - - - To - Para - - - - Please ensure you have your wallet.dat backed up! - Por favor, se assegure de ter uma cópia do seu wallet.dat! - - - - Next Transaction in 4 hours - Próxima transação em 4 horas - - - - Migration Progress - YOUR_TRANSLATION_HERProgresso da TransaçãoE - - - - ValidateAddress - - - Validate Address - Validar endereço - - - - TextLabel - Etiqueta de texto - - - - Address: - Endereço: - - - - ValidateAddressesModel - - - Property - Propriedade - - - - Value - Valor - - - - ViewAddressesDialog - - - All Addresses - Todos os endereços - - - - Export All Keys - Exportar todas as chaves - - - - ViewAllAddressesModel - - - Address - Endereço - - - - Balance (%1) - Saldo (%1) - - - - about - - - About - Sobre - - - - addressBook - - - Address Book - Agenda de Endereços - - - - Add New Address - Adicionar Novo Endereço - - - - Address (z-Addr or t-Addr) - Endereço (z-Addr ou t-Addr) - - - - Label - Etiqueta - - - - Add to Address Book - Adicionar a Agenda - - - - Import Address Book - Importar catálogo de endereços - - - - confirm - - - Confirm Transaction - Confirmar Transação - - - - From - Endereço de partida - - - - To - Para - - - - hushd doesn't seem to have any peers. You might not be connected to the internet, so this Transaction might not work. - hushd parece não ter pares. Você pode não estar conectado à Internet, portanto, essa transação pode não funcionar. - - - - You are sending a transaction while your node is still syncing. This may not work. - Você está enviando uma transação enquanto seu nó ainda está sincronizando. Isso pode não funcionar. - - - - You are using a custom fee. Since fees are transparent, you are giving up some privacy. Please use this only if you know what you are doing! - Você está usando uma taxa customizada. Como as taxas são transparentes, você pode estar comprometendo sua privacidade. Por favor, só use isso se souber o que está fazendo! - - - - createZcashConf - - - Configure HUSH3.conf - Configurar o HUSH3.conf - - - - Show Advanced Configuration - Mostrar configuração avançada - - - - Your Hush node will be configured for you automatically - Seu nó Hush será configurado automaticamente para você - - - - Use custom datadir - Usar datadir personalizado - - - - Please choose a directory to store your wallet.dat and blockchain - Escolha um diretório para armazenar seu wallet.dat e blockchain - - - - Choose directory - Escolha o diretório - - - - Connect over Tor - Conecte-se através do Tor - - - - Please note that you'll need to already have a Tor service configured on port 9050 - Observe que você já deve ter um serviço Tor configurado na porta 9050 - - - - newRecurringDialog - - - Edit Schedule - Editar programação - - - - Schedule - programação - - - - Payment Description - Descrição de pagamento - - - - TextLabel - Etiqueta de texto - - - - From - Endereço de partida - - - - Number of payments - Número de pagamentos - - - - Amount - Quantidade - - - - Next Payment - Próximo pagamento - - - - To - Para - - - - Memo - Memorando - - - - zboard - - - Post to z-board.net - Postar no z-board.net - - - - Total Fee - Taxa Total - - - - Memo - Recado - - - - (optional) - (opcional) - - - - Send From - Enviar de - - - - Post As: - Postar como: - - - - <html><head/><body><p>ZBoard: Fully anonymous and untraceable chat messages based on the ZCash blockchain. <a href="http://www.z-board.net/"><span style=" text-decoration: underline; color:#0000ff;">http://www.z-board.net/</span></a></p></body></html> - <html><head/><body><p>ZBoard: Chat de mensagens totalmente anônimas e irrastreáveis usando a blockchain da Zcash. <a href="http://www.z-board.net/"><span style=" text-decoration: underline; color:#0000ff;">http://www.z-board.net/</span></a></p></body></html> - - - - Warning - Aviso - - - - Posting to Board - Postando no Grupo - - -