diff --git a/.travis.yml b/.travis.yml index b38dad9..0e70086 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,14 +22,13 @@ script: - qmake -v - clang++ -v - g++-8 -v + # Linguist 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. + - ./build.sh linguist - qmake silentdragon.pro CONFIG+=release -spec linux-clang - 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 diff --git a/application.qrc b/application.qrc index 5ee51e2..298a692 100644 --- a/application.qrc +++ b/application.qrc @@ -11,6 +11,10 @@ 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 @@ -35,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..f089ccd 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..8e368b2 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 da19bac..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 506cad5..72af0c9 100644 --- a/res/silentdragon_de.ts +++ b/res/silentdragon_de.ts @@ -147,8 +147,8 @@ - - + + Memo Nachricht hinzufügen @@ -237,12 +237,12 @@ Wallet Transactions - + Wallet Transaktionen Chain Transactions - + Chain Transaktionen @@ -252,7 +252,7 @@ &Report a bug on Github - + &Melde einen Fehler über Github @@ -292,10 +292,6 @@ t-Addr Transparente Adresse - - z-Addr(Sprout) - Sichere Adresse (Zs-) - New Address @@ -323,7 +319,7 @@ - + Export Private Key Privaten Key exportieren @@ -369,8 +365,8 @@ - - + + Loading... Lade... @@ -565,7 +561,7 @@ - + Export transactions Exportiere Transaktionen @@ -585,17 +581,17 @@ 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 @@ -604,7 +600,7 @@ Die Verbindung über Tor wurde aktiviert. Um Tor zu benutzen starten Sie bitte Silentdragon neu. - + Disable Tor Tor deaktivieren @@ -641,7 +637,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 @@ -676,202 +672,212 @@ 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 @@ -880,47 +886,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 @@ -1000,46 +1006,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! @@ -1163,22 +1169,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 @@ -1200,44 +1206,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 @@ -1245,7 +1251,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. @@ -1256,38 +1262,38 @@ 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! : @@ -1324,17 +1330,17 @@ If all else fails, please run hushd manually. 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 @@ -1346,22 +1352,22 @@ If all else fails, please run hushd manually. 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 @@ -1409,36 +1415,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 @@ -1447,14 +1453,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 @@ -1598,7 +1604,7 @@ You either have unconfirmed funds or the balance is too low for an automatic mig 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. @@ -1607,7 +1613,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: @@ -1764,312 +1770,317 @@ 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 + + + + + midnight - + 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 @@ -2079,47 +2090,92 @@ You either have unconfirmed funds or the balance is too low for an automatic mig 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. @@ -2138,10 +2194,6 @@ You either have unconfirmed funds or the balance is too low for an automatic mig From Von - - <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> Guthaben von einer alten sicheren Zc Adresse muss in eine neue sichere Zs (Sapling) Adresse übertragen werden. Das Guthaben kann nicht direkt übertragen werden. Es muss erst auf eine transparente Adresse und dann auf eine sichere (Zs) Adresse übertragen werden. Dies kann auch automatisch für Sie erledigt werden.</p></body></html> - To An @@ -2248,7 +2300,7 @@ You either have unconfirmed funds or the balance is too low for an automatic mig Viewing Key - + View Key diff --git a/res/silentdragon_es.qm b/res/silentdragon_es.qm index f90cdd2..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 791f2d1..64d0ce7 100644 --- a/res/silentdragon_es.ts +++ b/res/silentdragon_es.ts @@ -147,8 +147,8 @@ - - + + Memo Memo @@ -282,10 +282,6 @@ t-Addr t-Addr - - z-Addr(Sprout) - z-Addr(Sprout) - New Address @@ -313,7 +309,7 @@ - + Export Private Key Exportar Clave Privada @@ -355,8 +351,8 @@ - - + + Loading... Cargando... @@ -557,7 +553,7 @@ - + Export transactions exportación de transacciones @@ -577,32 +573,32 @@ 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. @@ -635,17 +631,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 @@ -674,168 +670,178 @@ - + + 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 @@ -844,47 +850,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 @@ -962,27 +968,27 @@ doesn't look like a z-address Error de Transacción - + Please wait... - + Computing your transaction - + Computing transaction: - + Done! - + From Address is Invalid! @@ -991,17 +997,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! @@ -1156,27 +1162,27 @@ doesn't look like a z-address - + 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 @@ -1185,7 +1191,7 @@ doesn't look like a z-address Tx - + failed falló @@ -1226,27 +1232,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 @@ -1257,7 +1263,7 @@ daemon=1 daemon=1 - + Couldn't start the embedded hushd. Please try restarting. @@ -1274,7 +1280,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 @@ -1283,58 +1289,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. @@ -1343,7 +1349,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. @@ -1353,18 +1359,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 @@ -1384,32 +1390,32 @@ 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 @@ -1715,17 +1721,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. @@ -1735,292 +1741,297 @@ 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 - + + midnight + + + + 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 @@ -2030,47 +2041,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 @@ -2089,10 +2145,6 @@ El saldo es insuficiente para una migración automática. From Desde - - <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>Fondos de direcciones z-Addr Sprout (que comienzan con &quot;zc&quot;) necesitan ser movidos a direcciones z-Addr Sapling (que comienzan con &quot;zs&quot;). Los fondos no pueden ser movidos directamente, deben enviarse a través de direcciones intermedias &quot;transparentes&quot; de manera que se mantenga la privacidad.</p><p>Esta migración se puede hacer automáticamente.</p></body></html> - To A diff --git a/res/silentdragon_fi.qm b/res/silentdragon_fi.qm index 1b7b7ac..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 43610fb..7da1e13 100644 --- a/res/silentdragon_fi.ts +++ b/res/silentdragon_fi.ts @@ -150,8 +150,8 @@ - - + + Memo Viesti @@ -264,7 +264,7 @@ - + Export transactions Vie tapahtumat @@ -301,10 +301,6 @@ t-Addr Suojaamaton Osoite - - z-Addr(Sprout) - Suojattu Osoite (Sprout) - New Address @@ -337,7 +333,7 @@ - + Export Private Key Vie Salainen Avain @@ -379,8 +375,8 @@ - - + + Loading... Ladataan... @@ -608,7 +604,7 @@ YOUR_TRANSLATION_HERE - + Private key import rescan finished Salaisen avaimen tuonnin uudelleenskannaus valmis @@ -642,208 +638,218 @@ 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 @@ -852,47 +858,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 @@ -972,27 +978,27 @@ Ei näytä suojatulta Zs-osoitteelta Tapahtumavirhe - + Please wait... - + Computing your transaction - + Computing transaction: - + Done! - + From Address is Invalid! @@ -1001,17 +1007,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! @@ -1107,22 +1113,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 @@ -1150,22 +1156,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 @@ -1176,7 +1182,7 @@ daemon=1 daemon=1 - + Couldn't start the embedded hushd. Please try restarting. @@ -1193,7 +1199,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 @@ -1202,48 +1208,48 @@ 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! : @@ -1317,12 +1323,12 @@ Haluaisitko vierailla lataus-sivulla? Sinulla on jo uusin versio v%1 - + Please enhance your calm and wait for SilentDragon to exit - + Waiting for hushd to exit, y'all @@ -1331,22 +1337,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 @@ -1367,17 +1373,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. @@ -1386,7 +1392,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,29 +1401,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 @@ -1727,17 +1733,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. @@ -1747,292 +1753,297 @@ 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 - + + midnight + + + + 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ä @@ -2042,47 +2053,92 @@ Sinulla on joko vahvistamattomia varoja tai saldo on liian pieni automaattiseen 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 @@ -2101,10 +2157,6 @@ Sinulla on joko vahvistamattomia varoja tai saldo on liian pieni automaattiseen From Minne - - <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>Saldot Sprout z-Osoitteista (jotka alkavat &quot;zc&quot;) täytyy siirtää päivitettyihin Sapling z-Osoitteisiin (jotka alkavat &quot;zs&quot;). Saldoa ei voi siirtää suoraan, vaan on lähetettävä välivaiheiden &quot;suojaamattomien&quot; osoitteiden kautta yksityisyyttä suojaavalla tavalla.</p><p>Tämä siirto voidaan tehdä automaattisesti puolestasi.</p></body></html> - To Mistä diff --git a/res/silentdragon_fil.ts b/res/silentdragon_fil.ts index 42e6c7b..50259d9 100644 --- a/res/silentdragon_fil.ts +++ b/res/silentdragon_fil.ts @@ -143,8 +143,8 @@ - - + + Memo Memo @@ -237,7 +237,7 @@ - + Export Private Key I-export and mga pribadong susi @@ -279,8 +279,8 @@ - - + + Loading... unfinished @@ -523,7 +523,7 @@ - + Export transactions I-export ang mga transaksyon @@ -566,163 +566,168 @@ 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. + 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 @@ -743,97 +748,102 @@ - - + + 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 @@ -911,27 +921,27 @@ doesn't look like a z-address May Mali sa Transaksyon - + Please wait... - + Computing your transaction - + Computing transaction: - + Done! - + From Address is Invalid! @@ -944,17 +954,17 @@ doesn't look like a z-address 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! @@ -1116,27 +1126,27 @@ doesn't look like a z-address 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 @@ -1147,7 +1157,7 @@ daemon=1 daemon=1 - + Couldn't start the embedded hushd. Please try restarting. @@ -1164,12 +1174,12 @@ Kung dati mo nang sinimulan ang hushd na may custom na mga argumento, maaaring k 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 @@ -1178,68 +1188,68 @@ Not starting embedded hushd because --no-embedded was passed 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. @@ -1248,7 +1258,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. @@ -1257,34 +1267,34 @@ 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 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! : @@ -1366,12 +1376,12 @@ Would you like to visit the releases page? 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 @@ -1380,22 +1390,22 @@ Would you like to visit the releases page? Tx - + failed nabigo - + Transaction - + The transaction with id Ang transaksyon na may id - + failed. The error was Nabigo. Ang pagkakamali ay @@ -1608,360 +1618,405 @@ Would you like to visit the releases page? 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 diff --git a/res/silentdragon_fr.qm b/res/silentdragon_fr.qm index 90f1ff6..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 843606c..b6356ca 100644 --- a/res/silentdragon_fr.ts +++ b/res/silentdragon_fr.ts @@ -147,8 +147,8 @@ - - + + Memo Mémo @@ -278,10 +278,6 @@ t-Addr t-Adresse - - z-Addr(Sprout) - z-Adresse(Sprout) - New Address @@ -309,7 +305,7 @@ - + Export Private Key Exporter la clef privée @@ -359,8 +355,8 @@ - - + + Loading... Chargement... @@ -561,7 +557,7 @@ - + Export transactions Exporter les transactions @@ -590,32 +586,32 @@ 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. @@ -648,17 +644,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 @@ -667,12 +663,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 @@ -709,158 +705,168 @@ 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 @@ -869,47 +875,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. @@ -969,22 +975,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! @@ -1013,7 +1019,7 @@ Cette adresse ne semble pas être de type z-Adresse Erreur de transaction - + Computing transaction: Transaction en cours : @@ -1022,17 +1028,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. @@ -1136,27 +1142,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 @@ -1183,44 +1189,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. @@ -1237,38 +1243,38 @@ 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! : @@ -1308,12 +1314,12 @@ If all else fails, please run hushd manually. 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 @@ -1327,22 +1333,22 @@ If all else fails, please run hushd manually. 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é @@ -1390,17 +1396,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. @@ -1409,7 +1415,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. @@ -1418,24 +1424,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 @@ -1745,17 +1751,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. @@ -1765,292 +1771,297 @@ 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 - + + midnight + + + + 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 @@ -2060,47 +2071,92 @@ Vous avez soit des fonds non confirmés soit le solde est trop petit pour une mi 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 @@ -2119,10 +2175,6 @@ Vous avez soit des fonds non confirmés soit le solde est trop petit pour une mi From De - - <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>Les fonds provenant des adresses-z de type Sprout (qui commencent par "zc") doivent être transférés vers les adresses-z améliorées de type Sapling (qui commencent par "zs"). Les fonds ne peuvent pas être transférés directement, mais doivent être envoyés via des adresses-t transparentes intermédiaires tout cela en respectant votre vie privée.</p><p>Cette migration peut être faite automatiquement pour vous.</p></body></html> - To À diff --git a/res/silentdragon_hr.qm b/res/silentdragon_hr.qm index 92c6e2b..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 6a97f54..8bf429c 100644 --- a/res/silentdragon_hr.ts +++ b/res/silentdragon_hr.ts @@ -143,8 +143,8 @@ - - + + Memo Poruka (memo) @@ -237,7 +237,7 @@ - + Export Private Key Izvoz privatnog ključa @@ -279,8 +279,8 @@ - - + + Loading... Učitavanje... @@ -522,7 +522,7 @@ - + Export transactions Izvoz transakcija @@ -581,258 +581,268 @@ 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 @@ -912,27 +922,27 @@ ne izgleda kao z-adresa Greška u transakciji - + Please wait... - + Computing your transaction - + Computing transaction: - + Done! - + From Address is Invalid! @@ -945,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! @@ -1117,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 @@ -1148,7 +1158,7 @@ daemon=1 deamon=1 - + Couldn't start the embedded hushd. Please try restarting. @@ -1165,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 @@ -1179,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. @@ -1249,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. @@ -1258,34 +1268,34 @@ 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! : @@ -1369,12 +1379,12 @@ Would you like to visit the releases page? 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 @@ -1383,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 @@ -1611,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 diff --git a/res/silentdragon_id.ts b/res/silentdragon_id.ts index 0e9b473..83d15d4 100644 --- a/res/silentdragon_id.ts +++ b/res/silentdragon_id.ts @@ -143,8 +143,8 @@ - - + + Memo Memo @@ -237,7 +237,7 @@ - + Export Private Key Ekspor Kunci Privat @@ -304,8 +304,8 @@ - - + + Loading... Memuat... @@ -526,7 +526,7 @@ - + Export transactions Ekspor Transaksi @@ -569,163 +569,168 @@ 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 + 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 @@ -746,97 +751,102 @@ - - + + 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 @@ -914,27 +924,27 @@ doesn't look like a z-address Kesalahan Transaksi - + Please wait... - + Computing your transaction - + Computing transaction: - + Done! - + From Address is Invalid! @@ -947,17 +957,17 @@ doesn't look like a z-address Dari alamat tidak valid - + Recipient Address Alamat Penerima - + is Invalid Tidak Valid - + Amount '%1' is invalid! Jumlah tidak valid! @@ -1119,27 +1129,27 @@ doesn't look like a z-address 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 @@ -1148,7 +1158,7 @@ daemon=1 - + Couldn't start the embedded hushd. Please try restarting. @@ -1159,12 +1169,12 @@ 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 @@ -1173,43 +1183,43 @@ Not starting embedded hushd because --no-embedded was passed 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 ) @@ -1218,68 +1228,68 @@ Tidak dapat memulai menanam hushd karena tidak ada penanaman yang diteruskanLebih 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! @@ -1361,12 +1371,12 @@ Would you like to visit the releases page? 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 @@ -1375,22 +1385,22 @@ Would you like to visit the releases page? Tx - + failed Gagal - + Transaction - + The transaction with id Transaksi dengan id - + failed. The error was Gagal. Terjadi kesalahan @@ -1603,360 +1613,405 @@ Would you like to visit the releases page? 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 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 75686ad..c8a8d72 100644 --- a/res/silentdragon_it.ts +++ b/res/silentdragon_it.ts @@ -151,8 +151,8 @@ - - + + Memo Memo @@ -286,10 +286,6 @@ t-Addr t-Addresses (Trasparente) - - z-Addr(Sprout) - z-Addresses (Legacy Sprout) - New Address @@ -322,7 +318,7 @@ - + Export Private Key Esporta la chiave privata @@ -364,8 +360,8 @@ - - + + Loading... Caricamento... @@ -564,7 +560,7 @@ - + Export transactions Transazioni di esportazione @@ -607,7 +603,7 @@ 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 @@ -617,42 +613,42 @@ 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 @@ -682,168 +678,178 @@ - + + 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 @@ -852,47 +858,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 @@ -971,27 +977,27 @@ doesn't look like a z-address Errore di transazione - + Please wait... - + Computing your transaction - + Computing transaction: - + Done! - + From Address is Invalid! @@ -1001,17 +1007,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! @@ -1115,28 +1121,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 @@ -1159,7 +1165,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 @@ -1168,38 +1174,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. @@ -1216,38 +1222,38 @@ 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! : @@ -1292,32 +1298,32 @@ If all else fails, please run hushd manually. - + 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 @@ -1369,17 +1375,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. @@ -1387,7 +1393,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. @@ -1396,24 +1402,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 @@ -1723,17 +1729,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. @@ -1743,292 +1749,297 @@ 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 - + + midnight + + + + 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 @@ -2038,48 +2049,93 @@ Avete fondi non confermati o il saldo è troppo basso per una migrazione automat 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 @@ -2099,10 +2155,6 @@ Avete fondi non confermati o il saldo è troppo basso per una migrazione automat From da - - <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>I fondi da indirizzo Shielded Sprout (che inizia con &quot;zc&quot;) DEVONO essere trasferiti manualmente in un indirizzo Shielded Sapling (che inizia con &quot;zs&quot;). i fondi non possono essere trasferiti direttamente, ma devono essere inviati tramite un indirizzo&quot;Trasparente&quot; intermedio, in modo che sia preservata la privacy.</p><p>La migrazione può essere effettuata in modo automatico</p></body></html> - To a diff --git a/res/silentdragon_nl.qm b/res/silentdragon_nl.qm index 76121c0..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 e0b9bd5..976f797 100644 --- a/res/silentdragon_nl.ts +++ b/res/silentdragon_nl.ts @@ -147,8 +147,8 @@ - - + + Memo Memo @@ -251,10 +251,6 @@ t-Addr t-Addr - - z-Addr(Sprout) - z-Addr(Sprout) - New Address @@ -282,7 +278,7 @@ - + Export Private Key Exporteer privé Sleutel @@ -324,8 +320,8 @@ - - + + Loading... Bezig met Laden... @@ -561,7 +557,7 @@ - + Export transactions Exporteer Transacties @@ -581,32 +577,32 @@ 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. @@ -639,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 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 @@ -678,118 +674,128 @@ - + + 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 @@ -798,52 +804,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 @@ -852,47 +858,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 @@ -972,27 +978,27 @@ Lijkt niet op een z-adres Transactie Fout - + Please wait... - + Computing your transaction - + Computing transaction: - + Done! - + From Address is Invalid! @@ -1001,17 +1007,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! @@ -1115,27 +1121,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 @@ -1160,7 +1166,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 @@ -1169,37 +1175,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. @@ -1216,38 +1222,38 @@ 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! : @@ -1292,32 +1298,32 @@ Als al het andere faalt, voer hushd dan handmatig uit. - + 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 @@ -1367,17 +1373,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. @@ -1386,7 +1392,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 +1401,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 @@ -1778,27 +1784,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 @@ -1808,282 +1814,287 @@ 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 - + + midnight + + + + 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 @@ -2093,47 +2104,92 @@ Je hebt nog onbevestigde transacties of je saldo is te laag voor een automatisch 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 @@ -2152,10 +2208,6 @@ Je hebt nog onbevestigde transacties of je saldo is te laag voor een automatisch From Van - - <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>Geld van Sprout z-Adressen (welke starten met &quot;zc&quot;) moeten worden verplaatst naar de geupgrade Sapling z-Adressen (welke starten met &quot;zs&quot;). Het geld kan niet direct worden verplaatst, maar moet verzondern worden worden via intermediar &quot;transparante&quot; adressen op een privacybehoudende manier.</p><p>Deze migratie kan automatisch voor u worden uitgevoerd.</p></body></html> - To Naar 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 354a5d0..6a1b2be 100644 --- a/res/silentdragon_pt.ts +++ b/res/silentdragon_pt.ts @@ -147,8 +147,8 @@ - - + + Memo Anexar recado @@ -282,10 +282,6 @@ t-Addr t-Addr - - z-Addr(Sprout) - z-Addr(Sprout) - New Address @@ -313,7 +309,7 @@ - + Export Private Key Exportar Chave Privada @@ -355,8 +351,8 @@ - - + + Loading... Carregando... @@ -557,7 +553,7 @@ - + Export transactions Transações de exportação @@ -577,32 +573,32 @@ 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. @@ -635,17 +631,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 @@ -674,168 +670,178 @@ - + + 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 @@ -844,47 +850,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 @@ -964,27 +970,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! @@ -993,17 +999,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! @@ -1103,27 +1109,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 @@ -1147,7 +1153,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 @@ -1156,37 +1162,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. @@ -1203,38 +1209,38 @@ 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! : @@ -1279,32 +1285,32 @@ Se tudo mais falhar, execute o hushd manualmente. - + 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 @@ -1354,17 +1360,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. @@ -1373,7 +1379,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. @@ -1382,24 +1388,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 @@ -1709,17 +1715,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. @@ -1729,292 +1735,297 @@ 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 - + + midnight + + + + 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 @@ -2024,47 +2035,92 @@ Você possui fundos não confirmados ou o saldo é muito baixo para uma migraç 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 @@ -2083,10 +2139,6 @@ Você possui fundos não confirmados ou o saldo é muito baixo para uma migraç 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 diff --git a/res/silentdragon_ru.qm b/res/silentdragon_ru.qm index 88dfe9e..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 bf25d61..44804c3 100644 --- a/res/silentdragon_ru.ts +++ b/res/silentdragon_ru.ts @@ -163,8 +163,8 @@ - - + + Memo Метка @@ -274,7 +274,7 @@ - + Export Private Key Экспорт приватного ключа @@ -320,8 +320,8 @@ - - + + Loading... Загрузка... @@ -563,7 +563,7 @@ - + Export transactions Экспорт транзакций @@ -596,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 @@ -634,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 @@ -677,148 +677,158 @@ - + + 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 @@ -827,7 +837,7 @@ Migrate to Sapling - + Copy txid Скопировать txid @@ -849,12 +859,12 @@ Конфигурация 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 @@ -931,17 +941,17 @@ Отправить для OleksandrBlack благодарность за - + or SilentDragon или SilentDragon - + Enter Address to validate Введите адрес для проверки - + Transparent or Shielded Address: Прозрачный или экранированный адрес: @@ -962,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 Адрес не используется @@ -1080,27 +1090,27 @@ doesn't look like a z-address Ошибка транзакции - + Please wait... - + Computing your transaction - + Computing transaction: - + Done! - + From Address is Invalid! @@ -1109,17 +1119,17 @@ doesn't look like a z-address От адреса неверно - + Recipient Address Адрес получателя - + is Invalid является недействительным - + Amount '%1' is invalid! Количество '%1' является недействительным! @@ -1219,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 @@ -1280,7 +1290,7 @@ daemon=1 daemon=1 - + Couldn't start the embedded hushd. Please try restarting. @@ -1297,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 @@ -1306,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. @@ -1346,22 +1356,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 Аутентификация не удалась. username / password, которые вы указали, не были приняты hushd. Попробуйте изменить его в меню Редактировать-> Настройки - + Your hushd is starting up. Please wait. Ваш hushd запускается. Пожалуйста, подождите. - + This may take several hours, grab some popcorn - + There was an error! : @@ -1415,12 +1425,12 @@ Please set the host/port and user/password in the Edit->Settings menu. - + Please enhance your calm and wait for SilentDragon to exit - + Waiting for hushd to exit, y'all @@ -1437,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 ошибка @@ -1501,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. @@ -1519,14 +1529,14 @@ Please set the host/port and user/password in the Edit->Settings menu.Это может занять несколько часов - + Connection Error Ошибка соединения - - + + Transaction Error ">Ошибка транзакции @@ -2000,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 @@ -2084,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 @@ -2099,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 Экранирование сдачи с прозрачных адресов на ваш экранированный адрес diff --git a/res/silentdragon_sr.qm b/res/silentdragon_sr.qm index af46b17..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 34367f9..3bba701 100644 --- a/res/silentdragon_sr.ts +++ b/res/silentdragon_sr.ts @@ -143,8 +143,8 @@ - - + + Memo Poruka (memo) @@ -237,7 +237,7 @@ - + Export Private Key Izvoz privatnog ključa @@ -279,8 +279,8 @@ - - + + Loading... Učitavanje... @@ -522,7 +522,7 @@ - + Export transactions Izvoz transakcija @@ -581,258 +581,268 @@ 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 @@ -912,27 +922,27 @@ ne izgleda kao z-adresa Greška u transakciji - + Please wait... - + Computing your transaction - + Computing transaction: - + Done! - + From Address is Invalid! @@ -945,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! @@ -1117,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 @@ -1148,7 +1158,7 @@ daemon=1 deamon=1 - + Couldn't start the embedded hushd. Please try restarting. @@ -1165,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 @@ -1179,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. @@ -1249,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. @@ -1258,34 +1268,34 @@ 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! : @@ -1369,12 +1379,12 @@ Would you like to visit the releases page? 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 @@ -1383,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 @@ -1611,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 diff --git a/res/silentdragon_tr.qm b/res/silentdragon_tr.qm index e85a878..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 e6ee1b6..24f49ca 100644 --- a/res/silentdragon_tr.ts +++ b/res/silentdragon_tr.ts @@ -147,8 +147,8 @@ - - + + Memo Memo @@ -251,7 +251,7 @@ - + Export transactions İşlemleri dışa aktar @@ -288,10 +288,6 @@ t-Addr t-Adres - - z-Addr(Sprout) - z-Adres(Sprout) - New Address @@ -324,7 +320,7 @@ - + Export Private Key Özel Anahtarı Dışarı Aktar @@ -366,8 +362,8 @@ - - + + Loading... Yükleniyor... @@ -601,7 +597,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ı @@ -636,208 +632,218 @@ 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 @@ -846,47 +852,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ış @@ -966,27 +972,27 @@ z-adres'i gibi görünmüyor İşlem Hatası - + Please wait... - + Computing your transaction - + Computing transaction: - + Done! - + From Address is Invalid! @@ -995,17 +1001,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! @@ -1101,27 +1107,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 @@ -1148,7 +1154,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 @@ -1157,22 +1163,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. @@ -1189,48 +1195,48 @@ 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! : @@ -1275,12 +1281,12 @@ Hepsi başarısız olursa, lütfen hushd'i manuel olarak çalıştırın. - + Please enhance your calm and wait for SilentDragon to exit - + Waiting for hushd to exit, y'all @@ -1294,22 +1300,22 @@ Hepsi başarısız olursa, lütfen hushd'i manuel olarak çalıştırın.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 @@ -1354,17 +1360,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. @@ -1373,7 +1379,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. @@ -1382,29 +1388,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ı @@ -1715,307 +1721,312 @@ 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 - + + midnight + + + + 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 @@ -2025,47 +2036,92 @@ Onaylanmamış fonunuz var veya otomatik geçiş için bakiye çok düşük.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 @@ -2084,10 +2140,6 @@ Onaylanmamış fonunuz var veya otomatik geçiş için bakiye çok düşük.From Gönderen - - <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> - YOUR_TRANSLATION_HERE - To Alıcı diff --git a/res/silentdragon_uk.qm b/res/silentdragon_uk.qm index 570f874..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 a8259b7..14296ff 100644 --- a/res/silentdragon_uk.ts +++ b/res/silentdragon_uk.ts @@ -163,8 +163,8 @@ - - + + Memo Мітка @@ -274,7 +274,7 @@ - + Export Private Key Експорт приватного ключа @@ -320,8 +320,8 @@ - - + + Loading... Завантаження ... @@ -563,7 +563,7 @@ - + Export transactions Експорт транзакцій @@ -596,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 @@ -634,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 @@ -677,148 +677,158 @@ - + + 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 @@ -827,7 +837,7 @@ Migrate to Sapling - + Copy txid Скопіювати txid @@ -849,12 +859,12 @@ Конфігурація 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 @@ -931,17 +941,17 @@ Надіслати для OleksandrBlack подяку за - + or SilentDragon або SilentDragon - + Enter Address to validate Введіть адресу для перевірки - + Transparent or Shielded Address: Прозора або екранована адреса: @@ -962,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 Адреса не використовується @@ -1080,27 +1090,27 @@ doesn't look like a z-address Помилка транзакції - + Please wait... - + Computing your transaction - + Computing transaction: - + Done! - + From Address is Invalid! @@ -1109,17 +1119,17 @@ doesn't look like a z-address Від адреси невірно - + Recipient Address Адреса одержувача - + is Invalid є недійсним - + Amount '%1' is invalid! Кількість '%1' є недійсним! @@ -1219,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 @@ -1280,7 +1290,7 @@ daemon=1 daemon=1 - + Couldn't start the embedded hushd. Please try restarting. @@ -1297,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 @@ -1306,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. @@ -1346,22 +1356,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 Аутентифікація не вдалася. username / password, які ви вказали, не були прийняті hushd. Спробуйте змінити його в меню Редагувати-> Налаштування - + Your hushd is starting up. Please wait. Ваш hushd запускається. Будь ласка зачекайте. - + This may take several hours, grab some popcorn - + There was an error! : @@ -1415,12 +1425,12 @@ Please set the host/port and user/password in the Edit->Settings menu. - + Please enhance your calm and wait for SilentDragon to exit - + Waiting for hushd to exit, y'all @@ -1437,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 помилка @@ -1501,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. @@ -1519,14 +1529,14 @@ Please set the host/port and user/password in the Edit->Settings menu.Це може зайняти кілька годин - + Connection Error Помилка з'єднання - - + + Transaction Error Помилка транзакції @@ -2008,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 @@ -2092,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 @@ -2107,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 Екранування здачі з прозорих адрес на ваш екранований адрес 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 7b1d779..49ccc88 100644 --- a/res/silentdragon_zh.ts +++ b/res/silentdragon_zh.ts @@ -151,8 +151,8 @@ - - + + Memo 备注 @@ -243,7 +243,7 @@ - + Export Private Key 导出私钥 @@ -285,8 +285,8 @@ - - + + Loading... 加载中... @@ -557,7 +557,7 @@ - + Export transactions 导出交易 @@ -601,39 +601,38 @@ 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 @@ -664,7 +663,7 @@ 计算交易: - + Private key import rescan finished 私钥导入重新扫描完成 @@ -677,7 +676,7 @@ 支付hush URI时出错 - + URI should be of the form 'hush:<addr>?amt=x&memo=y URI的格式应为 'hush:<addr>?amt=x&memo=y' @@ -710,168 +709,179 @@ - + + 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 @@ -880,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 地址未使用 @@ -1008,27 +1018,27 @@ doesn't look like a z-address 交易错误 - + Please wait... - + Computing your transaction - + Computing transaction: - + Done! - + From Address is Invalid! @@ -1037,17 +1047,17 @@ doesn't look like a z-address 发送地址无效 - + Recipient Address 接收地址 - + is Invalid 无效 - + Amount '%1' is invalid! 转账金额 '%1' 无效! @@ -1092,14 +1102,6 @@ doesn't look like a z-address Unmigrated Amount 未迁移金额 - - Sprout -> Sapling migration enabled - Sprout ->Sapling 启用迁移 - - - If enabled, hushd will slowly migrate your Sprout shielded funds to your Sapling address. - 如果启用,hushd将慢慢将您的Sprout屏蔽资金迁移到您的Sapling地址。 - MigrationTxns @@ -1259,22 +1261,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 @@ -1305,7 +1307,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 @@ -1313,7 +1315,7 @@ daemon=1 - + Couldn't start the embedded hushd. Please try restarting. @@ -1324,12 +1326,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 @@ -1338,68 +1340,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. @@ -1408,7 +1410,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. @@ -1417,22 +1419,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! : @@ -1441,14 +1443,14 @@ Please set the host/port and user/password in the Edit->Settings menu.这可能需要几个小时 - + Connection Error 连接错误 - - + + Transaction Error 交易错误 @@ -1461,22 +1463,22 @@ Please set the host/port and user/password in the Edit->Settings menu. 交易 - + failed 失败 - + Transaction - + The transaction with id 交易 - + failed. The error was 失败。 错误是 @@ -1555,12 +1557,12 @@ Please set the host/port and user/password in the Edit->Settings menu. - + Please enhance your calm and wait for SilentDragon to exit - + Waiting for hushd to exit, y'all @@ -1949,345 +1951,395 @@ 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 - + + midnight + + + + 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价格 @@ -2297,7 +2349,7 @@ You either have unconfirmed funds or the balance is too low for an automatic mig 获取 ZEC/USD 价格 - + Troubleshooting 故障排除 @@ -2311,7 +2363,7 @@ You either have unconfirmed funds or the balance is too low for an automatic mig 重新扫描区块链以查找任何丢失的钱包交易并更正您的钱包余额。 这可能需要几个小时。 您需要重新启动SlientDragon才能使其生效 - + Rescan 重新扫描 @@ -2334,10 +2386,6 @@ You either have unconfirmed funds or the balance is too low for an automatic mig From - - <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>来自Sprout z-Addresses(以“zc”开头)的资金需要被移动到升级的Sapling z-Addresses(以“zs”开头)。 资金不能直接转移,但需要以隐私保护的方式通过中间透明地址发送。</p><p>此迁移可以自动完成。</p></body></html> - To 迁移到 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 4e09bc3..ba7b651 100644 --- a/silentdragon.pro +++ b/silentdragon.pro @@ -129,7 +129,7 @@ TRANSLATIONS = res/silentdragon_bg.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..6936a6e 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -19,15 +19,29 @@ 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" || theme == "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 +670,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 +693,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 +729,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 8b37e24..d2ae711 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -304,7 +304,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); @@ -314,7 +313,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); @@ -350,6 +348,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); @@ -361,16 +401,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); @@ -456,6 +495,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; @@ -466,8 +506,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(); }); diff --git a/src/rpc.cpp b/src/rpc.cpp index 014ce0e..76f8258 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" || theme == "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 2ea7640..ef0cf2a 100644 --- a/src/sendtab.cpp +++ b/src/sendtab.cpp @@ -707,12 +707,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" || theme == "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/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 + + + + +