From 13338646740b8a3548df7df966759d07be4f7fb2 Mon Sep 17 00:00:00 2001 From: vertoe Date: Sat, 31 Jan 2015 19:47:23 +0100 Subject: [PATCH] Update bitcoinstrings. --- share/qt/extract_strings_qt.py | 12 ++- src/qt/bitcoinstrings.cpp | 72 +++++++++++++++-- src/qt/locale/darkcoin_ar.ts | 63 +++++++++++++++ src/qt/locale/darkcoin_bs.ts | 63 +++++++++++++++ src/qt/locale/darkcoin_cs.ts | 63 +++++++++++++++ src/qt/locale/darkcoin_de.ts | 63 +++++++++++++++ src/qt/locale/darkcoin_en.ts | 63 +++++++++++++++ src/qt/locale/darkcoin_en_US.ts | 63 +++++++++++++++ src/qt/locale/darkcoin_es.ts | 65 ++++++++++++++- src/qt/locale/darkcoin_fr.ts | 63 +++++++++++++++ src/qt/locale/darkcoin_fr_FR.ts | 63 +++++++++++++++ src/qt/locale/darkcoin_hu_HU.ts | 63 +++++++++++++++ src/qt/locale/darkcoin_id_ID.ts | 63 +++++++++++++++ src/qt/locale/darkcoin_it.ts | 63 +++++++++++++++ src/qt/locale/darkcoin_lv_LV.ts | 63 +++++++++++++++ src/qt/locale/darkcoin_nl.ts | 63 +++++++++++++++ src/qt/locale/darkcoin_nl_BE.ts | 63 +++++++++++++++ src/qt/locale/darkcoin_nl_NL.ts | 63 +++++++++++++++ src/qt/locale/darkcoin_pl.ts | 63 +++++++++++++++ src/qt/locale/darkcoin_pt.ts | 63 +++++++++++++++ src/qt/locale/darkcoin_ru.ts | 63 +++++++++++++++ src/qt/locale/darkcoin_ru_lv.ts | 63 +++++++++++++++ src/qt/locale/darkcoin_sk.ts | 63 +++++++++++++++ src/qt/locale/darkcoin_sv.ts | 135 +++++++++++++++++++++++--------- src/qt/locale/darkcoin_tr.ts | 63 +++++++++++++++ src/qt/locale/darkcoin_vi_VN.ts | 63 +++++++++++++++ src/qt/locale/darkcoin_zh.ts | 63 +++++++++++++++ 27 files changed, 1685 insertions(+), 48 deletions(-) diff --git a/share/qt/extract_strings_qt.py b/share/qt/extract_strings_qt.py index e6afe3b48..d9cddfffd 100755 --- a/share/qt/extract_strings_qt.py +++ b/share/qt/extract_strings_qt.py @@ -30,7 +30,7 @@ def parse_po(text): in_msgstr = False # message start in_msgid = True - + msgid = [line[6:]] elif line.startswith('msgstr '): in_msgid = False @@ -47,17 +47,21 @@ def parse_po(text): return messages -files = glob.glob('src/*.cpp') + glob.glob('src/*.h') +files = glob.glob('src/*.cpp') + glob.glob('src/*.h') # xgettext -n --keyword=_ $FILES XGETTEXT=os.getenv('XGETTEXT', 'xgettext') child = Popen([XGETTEXT,'--output=-','-n','--keyword=_'] + files, stdout=PIPE) (out, err) = child.communicate() -messages = parse_po(out) +messages = parse_po(out) f = open(OUT_CPP, 'w') f.write(""" +// Copyright (c) 2009-2014 The Bitcoin developers +// Copyright (c) 2014-2015 The Darkcoin developers + +//! This file is generated by share/qt/extract_strings_qt.py #include @@ -72,6 +76,6 @@ f.write('static const char UNUSED *bitcoin_strings[] = {\n') messages.sort(key=operator.itemgetter(0)) for (msgid, msgstr) in messages: if msgid != EMPTY: - f.write('QT_TRANSLATE_NOOP("bitcoin-core", %s),\n' % ('\n'.join(msgid))) + f.write('QT_TRANSLATE_NOOP("darkcoin-core", %s),\n' % ('\n'.join(msgid))) f.write('};\n') f.close() diff --git a/src/qt/bitcoinstrings.cpp b/src/qt/bitcoinstrings.cpp index 91c2dcbae..3489757bb 100644 --- a/src/qt/bitcoinstrings.cpp +++ b/src/qt/bitcoinstrings.cpp @@ -1,6 +1,9 @@ + // Copyright (c) 2009-2014 The Bitcoin developers // Copyright (c) 2014-2015 The Darkcoin developers +//! This file is generated by share/qt/extract_strings_qt.py + #include // Automatically generated by extract_strings.py @@ -21,7 +24,8 @@ QT_TRANSLATE_NOOP("darkcoin-core", "" "If the file does not exist, create it with owner-readable-only file " "permissions.\n" "It is also recommended to set alertnotify so you are notified of problems;\n" -"for example: alertnotify=echo %%s | mail -s \"Darkcoin Alert\" admin@foo.com\n"), +"for example: alertnotify=echo %%s | mail -s \"Darkcoin Alert\" admin@foo." +"com\n"), QT_TRANSLATE_NOOP("darkcoin-core", "" "Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!" "3DES:@STRENGTH)"), @@ -40,6 +44,14 @@ QT_TRANSLATE_NOOP("darkcoin-core", "" "Continuously rate-limit free transactions to *1000 bytes per minute " "(default:15)"), QT_TRANSLATE_NOOP("darkcoin-core", "" +"Disable all Masternode and Darksend related functionality (0-1, default: 0)"), +QT_TRANSLATE_NOOP("darkcoin-core", "" +"Enable instantx, show confirmations for locked transactions (bool, default: " +"true)"), +QT_TRANSLATE_NOOP("darkcoin-core", "" +"Enable use of automated darksend for funds stored in this wallet (0-1, " +"default: 0)"), +QT_TRANSLATE_NOOP("darkcoin-core", "" "Enter regression test mode, which uses a special chain in which blocks can " "be solved instantly. This is intended for regression testing tools and app " "development."), @@ -47,7 +59,7 @@ QT_TRANSLATE_NOOP("darkcoin-core", "" "Enter regression test mode, which uses a special chain in which blocks can " "be solved instantly."), QT_TRANSLATE_NOOP("darkcoin-core", "" -"Error: Listening for incoming connections failed (listen returned error %d)"), +"Error: Listening for incoming connections failed (listen returned error %s)"), QT_TRANSLATE_NOOP("darkcoin-core", "" "Error: The transaction was rejected! This might happen if some of the coins " "in your wallet were already spent, such as if you used a copy of wallet.dat " @@ -56,6 +68,8 @@ QT_TRANSLATE_NOOP("darkcoin-core", "" "Error: This transaction requires a transaction fee of at least %s because of " "its amount, complexity, or use of recently received funds!"), QT_TRANSLATE_NOOP("darkcoin-core", "" +"Error: Wallet unlocked for anonymization only, unable to create transaction."), +QT_TRANSLATE_NOOP("darkcoin-core", "" "Execute command when a relevant alert is received or we see a really long " "fork (%s in cmd is replaced by message)"), QT_TRANSLATE_NOOP("darkcoin-core", "" @@ -78,11 +92,22 @@ QT_TRANSLATE_NOOP("darkcoin-core", "" QT_TRANSLATE_NOOP("darkcoin-core", "" "Listen for JSON-RPC connections on (default: 9998 or testnet: 19998)"), QT_TRANSLATE_NOOP("darkcoin-core", "" +"Name to construct url for KeePass entry that stores the wallet passphrase"), +QT_TRANSLATE_NOOP("darkcoin-core", "" "Number of seconds to keep misbehaving peers from reconnecting (default: " "86400)"), QT_TRANSLATE_NOOP("darkcoin-core", "" "Output debugging information (default: 0, supplying is optional)"), QT_TRANSLATE_NOOP("darkcoin-core", "" +"Provide liquidity to Darksend by infrequently mixing coins on a continual " +"basis (0-100, default: 0, 1=very frequent, high fees, 100=very infrequent, " +"low fees)"), +QT_TRANSLATE_NOOP("darkcoin-core", "" +"Query for peer addresses via DNS lookup, if low on addresses (default: 1 " +"unless -connect)"), +QT_TRANSLATE_NOOP("darkcoin-core", "" +"Set external address:port to get to this masternode (example: address:port)"), +QT_TRANSLATE_NOOP("darkcoin-core", "" "Set maximum size of high-priority/low-fee transactions in bytes (default: %d)"), QT_TRANSLATE_NOOP("darkcoin-core", "" "Set the number of script verification threads (%u to %d, 0 = auto, <0 = " @@ -91,12 +116,20 @@ QT_TRANSLATE_NOOP("darkcoin-core", "" "Set the processor limit for when generation is on (-1 = unlimited, default: " "-1)"), QT_TRANSLATE_NOOP("darkcoin-core", "" +"Show N confirmations for a successfully locked transaciton (0-9999, default: " +"1)"), +QT_TRANSLATE_NOOP("darkcoin-core", "" "This is a pre-release test build - use at your own risk - do not use for " "mining or merchant applications"), QT_TRANSLATE_NOOP("darkcoin-core", "" "Unable to bind to %s on this computer. Darkcoin Core is probably already " "running."), QT_TRANSLATE_NOOP("darkcoin-core", "" +"Unable to locate enough Darksend non-denominated funds for this transaction " +"that are not equal 1000 DRK"), +QT_TRANSLATE_NOOP("darkcoin-core", "" +"Unable to locate enough Darksend non-denominated funds for this transaction"), +QT_TRANSLATE_NOOP("darkcoin-core", "" "Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -" "proxy)"), QT_TRANSLATE_NOOP("darkcoin-core", "" @@ -123,6 +156,9 @@ QT_TRANSLATE_NOOP("darkcoin-core", "" "%s\n" "If the file does not exist, create it with owner-readable-only file " "permissions."), +QT_TRANSLATE_NOOP("darkcoin-core", "" +"You must specify a masternodeprivkey in the configuration. Please see " +"documentation for help."), QT_TRANSLATE_NOOP("darkcoin-core", "(default: 1)"), QT_TRANSLATE_NOOP("darkcoin-core", "(default: wallet.dat)"), QT_TRANSLATE_NOOP("darkcoin-core", " can be:"), @@ -131,9 +167,8 @@ QT_TRANSLATE_NOOP("darkcoin-core", "Accept connections from outside (default: 1 QT_TRANSLATE_NOOP("darkcoin-core", "Add a node to connect to and attempt to keep the connection open"), QT_TRANSLATE_NOOP("darkcoin-core", "Allow DNS lookups for -addnode, -seednode and -connect"), QT_TRANSLATE_NOOP("darkcoin-core", "Allow JSON-RPC connections from specified IP address"), +QT_TRANSLATE_NOOP("darkcoin-core", "Always query for peer addresses via DNS lookup (default: 0)"), QT_TRANSLATE_NOOP("darkcoin-core", "Attempt to recover private keys from a corrupt wallet.dat"), -QT_TRANSLATE_NOOP("darkcoin-core", "Darkcoin Core Daemon"), -QT_TRANSLATE_NOOP("darkcoin-core", "Darkcoin Core RPC client version"), QT_TRANSLATE_NOOP("darkcoin-core", "Block creation options:"), QT_TRANSLATE_NOOP("darkcoin-core", "Cannot downgrade wallet"), QT_TRANSLATE_NOOP("darkcoin-core", "Cannot resolve -bind address: '%s'"), @@ -143,15 +178,20 @@ QT_TRANSLATE_NOOP("darkcoin-core", "Clear list of wallet transactions (diagnosti QT_TRANSLATE_NOOP("darkcoin-core", "Connect only to the specified node(s)"), QT_TRANSLATE_NOOP("darkcoin-core", "Connect through SOCKS proxy"), QT_TRANSLATE_NOOP("darkcoin-core", "Connect to JSON-RPC on (default: 9998 or testnet: 19998)"), +QT_TRANSLATE_NOOP("darkcoin-core", "Connect to KeePassHttp on port (default: 19455)"), QT_TRANSLATE_NOOP("darkcoin-core", "Connect to a node to retrieve peer addresses, and disconnect"), QT_TRANSLATE_NOOP("darkcoin-core", "Connection options:"), QT_TRANSLATE_NOOP("darkcoin-core", "Corrupted block database detected"), +QT_TRANSLATE_NOOP("darkcoin-core", "Darkcoin Core Daemon"), +QT_TRANSLATE_NOOP("darkcoin-core", "Darkcoin Core RPC client version"), +QT_TRANSLATE_NOOP("darkcoin-core", "Darksend options:"), QT_TRANSLATE_NOOP("darkcoin-core", "Debugging/Testing options:"), QT_TRANSLATE_NOOP("darkcoin-core", "Disable safemode, override a real safe mode event (default: 0)"), QT_TRANSLATE_NOOP("darkcoin-core", "Discover own IP address (default: 1 when listening and no -externalip)"), QT_TRANSLATE_NOOP("darkcoin-core", "Do not load the wallet and disable wallet RPC calls"), QT_TRANSLATE_NOOP("darkcoin-core", "Do you want to rebuild the block database now?"), QT_TRANSLATE_NOOP("darkcoin-core", "Done loading"), +QT_TRANSLATE_NOOP("darkcoin-core", "Enable the client to act as a masternode (0-1, default: 0)"), QT_TRANSLATE_NOOP("darkcoin-core", "Error initializing block database"), QT_TRANSLATE_NOOP("darkcoin-core", "Error initializing wallet database environment %s!"), QT_TRANSLATE_NOOP("darkcoin-core", "Error loading block database"), @@ -159,9 +199,11 @@ QT_TRANSLATE_NOOP("darkcoin-core", "Error loading wallet.dat"), QT_TRANSLATE_NOOP("darkcoin-core", "Error loading wallet.dat: Wallet corrupted"), QT_TRANSLATE_NOOP("darkcoin-core", "Error loading wallet.dat: Wallet requires newer version of Darkcoin"), QT_TRANSLATE_NOOP("darkcoin-core", "Error opening block database"), +QT_TRANSLATE_NOOP("darkcoin-core", "Error reading from database, shutting down."), QT_TRANSLATE_NOOP("darkcoin-core", "Error"), QT_TRANSLATE_NOOP("darkcoin-core", "Error: Disk space is low!"), QT_TRANSLATE_NOOP("darkcoin-core", "Error: Wallet locked, unable to create transaction!"), +QT_TRANSLATE_NOOP("darkcoin-core", "Error: You already have pending entries in the Darksend pool"), QT_TRANSLATE_NOOP("darkcoin-core", "Error: system error: "), QT_TRANSLATE_NOOP("darkcoin-core", "Failed to listen on any port. Use -listen=0 if you want this."), QT_TRANSLATE_NOOP("darkcoin-core", "Failed to read block info"), @@ -176,16 +218,18 @@ QT_TRANSLATE_NOOP("darkcoin-core", "Failed to write transaction index"), QT_TRANSLATE_NOOP("darkcoin-core", "Failed to write undo data"), QT_TRANSLATE_NOOP("darkcoin-core", "Fee per kB to add to transactions you send"), QT_TRANSLATE_NOOP("darkcoin-core", "Fees smaller than this are considered zero fee (for relaying) (default:"), -QT_TRANSLATE_NOOP("darkcoin-core", "Find peers using DNS lookup (default: 1 unless -connect)"), QT_TRANSLATE_NOOP("darkcoin-core", "Force safe mode (default: 0)"), QT_TRANSLATE_NOOP("darkcoin-core", "Generate coins (default: 0)"), QT_TRANSLATE_NOOP("darkcoin-core", "Get help for a command"), QT_TRANSLATE_NOOP("darkcoin-core", "How many blocks to check at startup (default: 288, 0 = all)"), QT_TRANSLATE_NOOP("darkcoin-core", "If is not supplied, output all debugging information."), +QT_TRANSLATE_NOOP("darkcoin-core", "Ignore masternodes less than version (example: 70050; default : 0)"), QT_TRANSLATE_NOOP("darkcoin-core", "Importing..."), QT_TRANSLATE_NOOP("darkcoin-core", "Imports blocks from external blk000??.dat file"), QT_TRANSLATE_NOOP("darkcoin-core", "Incorrect or no genesis block found. Wrong datadir for network?"), QT_TRANSLATE_NOOP("darkcoin-core", "Information"), +QT_TRANSLATE_NOOP("darkcoin-core", "Initialization sanity check failed. Darkcoin Core is shutting down."), +QT_TRANSLATE_NOOP("darkcoin-core", "InstantX options:"), QT_TRANSLATE_NOOP("darkcoin-core", "Insufficient funds"), QT_TRANSLATE_NOOP("darkcoin-core", "Invalid -onion address: '%s'"), QT_TRANSLATE_NOOP("darkcoin-core", "Invalid -proxy address: '%s'"), @@ -193,15 +237,23 @@ QT_TRANSLATE_NOOP("darkcoin-core", "Invalid amount for -minrelaytxfee=: QT_TRANSLATE_NOOP("darkcoin-core", "Invalid amount for -mintxfee=: '%s'"), QT_TRANSLATE_NOOP("darkcoin-core", "Invalid amount for -paytxfee=: '%s'"), QT_TRANSLATE_NOOP("darkcoin-core", "Invalid amount"), +QT_TRANSLATE_NOOP("darkcoin-core", "Invalid masternodeprivkey. Please see documenation."), +QT_TRANSLATE_NOOP("darkcoin-core", "KeePassHttp id for the established association"), +QT_TRANSLATE_NOOP("darkcoin-core", "KeePassHttp key for AES encrypted communication with KeePass"), +QT_TRANSLATE_NOOP("darkcoin-core", "Keep N darkcoin anonymized (default: 0)"), +QT_TRANSLATE_NOOP("darkcoin-core", "Keep at most unconnectable blocks in memory (default: %u)"), +QT_TRANSLATE_NOOP("darkcoin-core", "Keep at most unconnectable transactions in memory (default: %u)"), QT_TRANSLATE_NOOP("darkcoin-core", "Limit size of signature cache to entries (default: 50000)"), QT_TRANSLATE_NOOP("darkcoin-core", "List commands"), QT_TRANSLATE_NOOP("darkcoin-core", "Listen for connections on (default: 9999 or testnet: 19999)"), QT_TRANSLATE_NOOP("darkcoin-core", "Loading addresses..."), QT_TRANSLATE_NOOP("darkcoin-core", "Loading block index..."), +QT_TRANSLATE_NOOP("darkcoin-core", "Loading wallet... (%3.2f %%)"), QT_TRANSLATE_NOOP("darkcoin-core", "Loading wallet..."), QT_TRANSLATE_NOOP("darkcoin-core", "Log transaction priority and fee per kB when mining blocks (default: 0)"), QT_TRANSLATE_NOOP("darkcoin-core", "Maintain a full transaction index (default: 0)"), QT_TRANSLATE_NOOP("darkcoin-core", "Maintain at most connections to peers (default: 125)"), +QT_TRANSLATE_NOOP("darkcoin-core", "Masternode options:"), QT_TRANSLATE_NOOP("darkcoin-core", "Maximum per-connection receive buffer, *1000 bytes (default: 5000)"), QT_TRANSLATE_NOOP("darkcoin-core", "Maximum per-connection send buffer, *1000 bytes (default: 1000)"), QT_TRANSLATE_NOOP("darkcoin-core", "Not enough file descriptors available."), @@ -212,7 +264,7 @@ QT_TRANSLATE_NOOP("darkcoin-core", "Password for JSON-RPC connections"), QT_TRANSLATE_NOOP("darkcoin-core", "Prepend debug output with timestamp (default: 1)"), QT_TRANSLATE_NOOP("darkcoin-core", "Print block on startup, if found in block index"), QT_TRANSLATE_NOOP("darkcoin-core", "Print block tree on startup (default: 0)"), -QT_TRANSLATE_NOOP("darkcoin-core", "RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions)"), +QT_TRANSLATE_NOOP("darkcoin-core", "RPC SSL options: (see the Darkcoin Wiki for SSL setup instructions)"), QT_TRANSLATE_NOOP("darkcoin-core", "RPC client options:"), QT_TRANSLATE_NOOP("darkcoin-core", "RPC server options:"), QT_TRANSLATE_NOOP("darkcoin-core", "Randomly drop 1 of every network messages"), @@ -233,6 +285,7 @@ QT_TRANSLATE_NOOP("darkcoin-core", "Set database cache size in megabytes (%d to QT_TRANSLATE_NOOP("darkcoin-core", "Set key pool size to (default: 100)"), QT_TRANSLATE_NOOP("darkcoin-core", "Set maximum block size in bytes (default: %d)"), QT_TRANSLATE_NOOP("darkcoin-core", "Set minimum block size in bytes (default: 0)"), +QT_TRANSLATE_NOOP("darkcoin-core", "Set the masternode private key"), QT_TRANSLATE_NOOP("darkcoin-core", "Set the number of threads to service RPC calls (default: 4)"), QT_TRANSLATE_NOOP("darkcoin-core", "Sets the DB_PRIVATE flag in the wallet db environment (default: 1)"), QT_TRANSLATE_NOOP("darkcoin-core", "Show all debugging options (usage: --help -help-debug)"), @@ -242,6 +295,7 @@ QT_TRANSLATE_NOOP("darkcoin-core", "Signing transaction failed"), QT_TRANSLATE_NOOP("darkcoin-core", "Specify configuration file (default: darkcoin.conf)"), QT_TRANSLATE_NOOP("darkcoin-core", "Specify connection timeout in milliseconds (default: 5000)"), QT_TRANSLATE_NOOP("darkcoin-core", "Specify data directory"), +QT_TRANSLATE_NOOP("darkcoin-core", "Specify masternode configuration file (default: masternode.conf)"), QT_TRANSLATE_NOOP("darkcoin-core", "Specify pid file (default: darkcoind.pid)"), QT_TRANSLATE_NOOP("darkcoin-core", "Specify wallet file (within data directory)"), QT_TRANSLATE_NOOP("darkcoin-core", "Specify your own public address"), @@ -255,12 +309,16 @@ QT_TRANSLATE_NOOP("darkcoin-core", "To use the %s option"), QT_TRANSLATE_NOOP("darkcoin-core", "Transaction amount too small"), QT_TRANSLATE_NOOP("darkcoin-core", "Transaction amounts must be positive"), QT_TRANSLATE_NOOP("darkcoin-core", "Transaction too large"), -QT_TRANSLATE_NOOP("darkcoin-core", "Unable to bind to %s on this computer (bind returned error %d, %s)"), +QT_TRANSLATE_NOOP("darkcoin-core", "Unable to bind to %s on this computer (bind returned error %s)"), +QT_TRANSLATE_NOOP("darkcoin-core", "Unable to locate enough Darksend denominated funds for this transaction"), +QT_TRANSLATE_NOOP("darkcoin-core", "Unable to sign masternode payment winner, wrong key?"), QT_TRANSLATE_NOOP("darkcoin-core", "Unknown -socks proxy version requested: %i"), QT_TRANSLATE_NOOP("darkcoin-core", "Unknown network specified in -onlynet: '%s'"), QT_TRANSLATE_NOOP("darkcoin-core", "Upgrade wallet to latest format"), QT_TRANSLATE_NOOP("darkcoin-core", "Usage (deprecated, use darkcoin-cli):"), QT_TRANSLATE_NOOP("darkcoin-core", "Usage:"), +QT_TRANSLATE_NOOP("darkcoin-core", "Use KeePass 2 integration using KeePassHttp plugin (default: 0)"), +QT_TRANSLATE_NOOP("darkcoin-core", "Use N separate masternodes to anonymize funds (2-8, default: 2)"), QT_TRANSLATE_NOOP("darkcoin-core", "Use OpenSSL (https) for JSON-RPC connections"), QT_TRANSLATE_NOOP("darkcoin-core", "Use UPnP to map the listening port (default: 0)"), QT_TRANSLATE_NOOP("darkcoin-core", "Use UPnP to map the listening port (default: 1 when listening)"), diff --git a/src/qt/locale/darkcoin_ar.ts b/src/qt/locale/darkcoin_ar.ts index 05c02d480..f315323f9 100644 --- a/src/qt/locale/darkcoin_ar.ts +++ b/src/qt/locale/darkcoin_ar.ts @@ -206,6 +206,69 @@ This product includes software developed by the OpenSSL Project for use in the O + + DarksendConfig + + + Configure Darksend+ + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select an privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000DRK + + + + + Use 4 separate masternodes to mix funds up to 1000DRK + + + + + Use 8 separate masternodes + + + + + This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK + + + + + This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + 0.1DRK per 1000DRK you anonymize. + + + EditAddressDialog diff --git a/src/qt/locale/darkcoin_bs.ts b/src/qt/locale/darkcoin_bs.ts index e0fb924a2..5fe814a66 100644 --- a/src/qt/locale/darkcoin_bs.ts +++ b/src/qt/locale/darkcoin_bs.ts @@ -208,6 +208,69 @@ Distribuiran od strane MIT/X11 software licence, Prioritet + + DarksendConfig + + + Configure Darksend+ + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select an privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000DRK + + + + + Use 4 separate masternodes to mix funds up to 1000DRK + + + + + Use 8 separate masternodes + + + + + This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK + + + + + This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + 0.1DRK per 1000DRK you anonymize. + + + EditAddressDialog diff --git a/src/qt/locale/darkcoin_cs.ts b/src/qt/locale/darkcoin_cs.ts index 36f42d8b2..6fab6d459 100644 --- a/src/qt/locale/darkcoin_cs.ts +++ b/src/qt/locale/darkcoin_cs.ts @@ -206,6 +206,69 @@ This product includes software developed by the OpenSSL Project for use in the O + + DarksendConfig + + + Configure Darksend+ + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select an privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000DRK + + + + + Use 4 separate masternodes to mix funds up to 1000DRK + + + + + Use 8 separate masternodes + + + + + This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK + + + + + This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + 0.1DRK per 1000DRK you anonymize. + + + EditAddressDialog diff --git a/src/qt/locale/darkcoin_de.ts b/src/qt/locale/darkcoin_de.ts index e9ce08fad..2a9b99a51 100644 --- a/src/qt/locale/darkcoin_de.ts +++ b/src/qt/locale/darkcoin_de.ts @@ -211,6 +211,69 @@ Dieses Produkt enthält Software, die vom OpenSSL-Projekt zur Verwendung im Open Priorität + + DarksendConfig + + + Configure Darksend+ + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select an privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000DRK + + + + + Use 4 separate masternodes to mix funds up to 1000DRK + + + + + Use 8 separate masternodes + + + + + This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK + + + + + This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + 0.1DRK per 1000DRK you anonymize. + + + EditAddressDialog diff --git a/src/qt/locale/darkcoin_en.ts b/src/qt/locale/darkcoin_en.ts index 641cbe509..c27d7faf0 100644 --- a/src/qt/locale/darkcoin_en.ts +++ b/src/qt/locale/darkcoin_en.ts @@ -208,6 +208,69 @@ This product includes software developed by the OpenSSL Project for use in the O + + DarksendConfig + + + Configure Darksend+ + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select an privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000DRK + + + + + Use 4 separate masternodes to mix funds up to 1000DRK + + + + + Use 8 separate masternodes + + + + + This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK + + + + + This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + 0.1DRK per 1000DRK you anonymize. + + + EditAddressDialog diff --git a/src/qt/locale/darkcoin_en_US.ts b/src/qt/locale/darkcoin_en_US.ts index ab58e414b..043c6d508 100644 --- a/src/qt/locale/darkcoin_en_US.ts +++ b/src/qt/locale/darkcoin_en_US.ts @@ -206,6 +206,69 @@ This product includes software developed by the OpenSSL Project for use in the O + + DarksendConfig + + + Configure Darksend+ + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select an privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000DRK + + + + + Use 4 separate masternodes to mix funds up to 1000DRK + + + + + Use 8 separate masternodes + + + + + This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK + + + + + This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + 0.1DRK per 1000DRK you anonymize. + + + EditAddressDialog diff --git a/src/qt/locale/darkcoin_es.ts b/src/qt/locale/darkcoin_es.ts index 9b2be143e..ae9568435 100644 --- a/src/qt/locale/darkcoin_es.ts +++ b/src/qt/locale/darkcoin_es.ts @@ -4,7 +4,7 @@ About Darkcoin Core - + Acerca de Darkcoin Core @@ -206,6 +206,69 @@ This product includes software developed by the OpenSSL Project for use in the O + + DarksendConfig + + + Configure Darksend+ + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select an privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000DRK + + + + + Use 4 separate masternodes to mix funds up to 1000DRK + + + + + Use 8 separate masternodes + + + + + This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK + + + + + This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + 0.1DRK per 1000DRK you anonymize. + + + EditAddressDialog diff --git a/src/qt/locale/darkcoin_fr.ts b/src/qt/locale/darkcoin_fr.ts index 2acfbecec..9d530f089 100644 --- a/src/qt/locale/darkcoin_fr.ts +++ b/src/qt/locale/darkcoin_fr.ts @@ -211,6 +211,69 @@ Ce produit comporte des logiciels développés par OpenSSL Project pour utilisat Priorité + + DarksendConfig + + + Configure Darksend+ + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select an privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000DRK + + + + + Use 4 separate masternodes to mix funds up to 1000DRK + + + + + Use 8 separate masternodes + + + + + This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK + + + + + This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + 0.1DRK per 1000DRK you anonymize. + + + EditAddressDialog diff --git a/src/qt/locale/darkcoin_fr_FR.ts b/src/qt/locale/darkcoin_fr_FR.ts index 9b3f0f29f..124a16c8f 100644 --- a/src/qt/locale/darkcoin_fr_FR.ts +++ b/src/qt/locale/darkcoin_fr_FR.ts @@ -206,6 +206,69 @@ This product includes software developed by the OpenSSL Project for use in the O + + DarksendConfig + + + Configure Darksend+ + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select an privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000DRK + + + + + Use 4 separate masternodes to mix funds up to 1000DRK + + + + + Use 8 separate masternodes + + + + + This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK + + + + + This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + 0.1DRK per 1000DRK you anonymize. + + + EditAddressDialog diff --git a/src/qt/locale/darkcoin_hu_HU.ts b/src/qt/locale/darkcoin_hu_HU.ts index b7554839d..5236871e7 100644 --- a/src/qt/locale/darkcoin_hu_HU.ts +++ b/src/qt/locale/darkcoin_hu_HU.ts @@ -212,6 +212,69 @@ Ez a termék tartalmaz az OpenSSL Project által az OpenSSL Toolkit-hez (http:// Prioritás + + DarksendConfig + + + Configure Darksend+ + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select an privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000DRK + + + + + Use 4 separate masternodes to mix funds up to 1000DRK + + + + + Use 8 separate masternodes + + + + + This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK + + + + + This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + 0.1DRK per 1000DRK you anonymize. + + + EditAddressDialog diff --git a/src/qt/locale/darkcoin_id_ID.ts b/src/qt/locale/darkcoin_id_ID.ts index f7504a1b6..ab95fcf86 100644 --- a/src/qt/locale/darkcoin_id_ID.ts +++ b/src/qt/locale/darkcoin_id_ID.ts @@ -211,6 +211,69 @@ Produk ini termasuk perangkat lunak yang dikembangkan oleh proyek OpenSSL untuk Prioritas + + DarksendConfig + + + Configure Darksend+ + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select an privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000DRK + + + + + Use 4 separate masternodes to mix funds up to 1000DRK + + + + + Use 8 separate masternodes + + + + + This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK + + + + + This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + 0.1DRK per 1000DRK you anonymize. + + + EditAddressDialog diff --git a/src/qt/locale/darkcoin_it.ts b/src/qt/locale/darkcoin_it.ts index b001aa496..dc706d28b 100644 --- a/src/qt/locale/darkcoin_it.ts +++ b/src/qt/locale/darkcoin_it.ts @@ -211,6 +211,69 @@ Questo prodotto include del software prodotto dal progetto OpenSSL per l'ut Priorità + + DarksendConfig + + + Configure Darksend+ + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select an privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000DRK + + + + + Use 4 separate masternodes to mix funds up to 1000DRK + + + + + Use 8 separate masternodes + + + + + This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK + + + + + This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + 0.1DRK per 1000DRK you anonymize. + + + EditAddressDialog diff --git a/src/qt/locale/darkcoin_lv_LV.ts b/src/qt/locale/darkcoin_lv_LV.ts index 87818c237..ab00705d8 100644 --- a/src/qt/locale/darkcoin_lv_LV.ts +++ b/src/qt/locale/darkcoin_lv_LV.ts @@ -212,6 +212,69 @@ Nesniedz reālu drošību Prioritāte + + DarksendConfig + + + Configure Darksend+ + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select an privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000DRK + + + + + Use 4 separate masternodes to mix funds up to 1000DRK + + + + + Use 8 separate masternodes + + + + + This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK + + + + + This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + 0.1DRK per 1000DRK you anonymize. + + + EditAddressDialog diff --git a/src/qt/locale/darkcoin_nl.ts b/src/qt/locale/darkcoin_nl.ts index d4b8a9de0..ae9b30c2a 100644 --- a/src/qt/locale/darkcoin_nl.ts +++ b/src/qt/locale/darkcoin_nl.ts @@ -211,6 +211,69 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d Prioriteit + + DarksendConfig + + + Configure Darksend+ + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select an privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000DRK + + + + + Use 4 separate masternodes to mix funds up to 1000DRK + + + + + Use 8 separate masternodes + + + + + This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK + + + + + This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + 0.1DRK per 1000DRK you anonymize. + + + EditAddressDialog diff --git a/src/qt/locale/darkcoin_nl_BE.ts b/src/qt/locale/darkcoin_nl_BE.ts index b68ea32f9..15b31e44c 100644 --- a/src/qt/locale/darkcoin_nl_BE.ts +++ b/src/qt/locale/darkcoin_nl_BE.ts @@ -211,6 +211,69 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d Prioriteit + + DarksendConfig + + + Configure Darksend+ + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select an privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000DRK + + + + + Use 4 separate masternodes to mix funds up to 1000DRK + + + + + Use 8 separate masternodes + + + + + This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK + + + + + This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + 0.1DRK per 1000DRK you anonymize. + + + EditAddressDialog diff --git a/src/qt/locale/darkcoin_nl_NL.ts b/src/qt/locale/darkcoin_nl_NL.ts index 4c7774244..cb02f2127 100644 --- a/src/qt/locale/darkcoin_nl_NL.ts +++ b/src/qt/locale/darkcoin_nl_NL.ts @@ -211,6 +211,69 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d Prioriteit + + DarksendConfig + + + Configure Darksend+ + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select an privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000DRK + + + + + Use 4 separate masternodes to mix funds up to 1000DRK + + + + + Use 8 separate masternodes + + + + + This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK + + + + + This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + 0.1DRK per 1000DRK you anonymize. + + + EditAddressDialog diff --git a/src/qt/locale/darkcoin_pl.ts b/src/qt/locale/darkcoin_pl.ts index 5d75f9c6f..d9a8f02c9 100644 --- a/src/qt/locale/darkcoin_pl.ts +++ b/src/qt/locale/darkcoin_pl.ts @@ -210,6 +210,69 @@ Produkt ten zawiera oprogramowanie stworzone przez OpenSSL Project do użytku z Priorytet + + DarksendConfig + + + Configure Darksend+ + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select an privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000DRK + + + + + Use 4 separate masternodes to mix funds up to 1000DRK + + + + + Use 8 separate masternodes + + + + + This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK + + + + + This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + 0.1DRK per 1000DRK you anonymize. + + + EditAddressDialog diff --git a/src/qt/locale/darkcoin_pt.ts b/src/qt/locale/darkcoin_pt.ts index 1b7807e1d..e131a08f8 100644 --- a/src/qt/locale/darkcoin_pt.ts +++ b/src/qt/locale/darkcoin_pt.ts @@ -211,6 +211,69 @@ Este produto inclui software desenvolvido pelo Projecto OpenSSL para uso no Open Prioridade + + DarksendConfig + + + Configure Darksend+ + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select an privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000DRK + + + + + Use 4 separate masternodes to mix funds up to 1000DRK + + + + + Use 8 separate masternodes + + + + + This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK + + + + + This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + 0.1DRK per 1000DRK you anonymize. + + + EditAddressDialog diff --git a/src/qt/locale/darkcoin_ru.ts b/src/qt/locale/darkcoin_ru.ts index b7f78d8e4..84f7cf189 100644 --- a/src/qt/locale/darkcoin_ru.ts +++ b/src/qt/locale/darkcoin_ru.ts @@ -211,6 +211,69 @@ This product includes software developed by the OpenSSL Project for use in the O Приоритет + + DarksendConfig + + + Configure Darksend+ + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select an privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000DRK + + + + + Use 4 separate masternodes to mix funds up to 1000DRK + + + + + Use 8 separate masternodes + + + + + This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK + + + + + This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + 0.1DRK per 1000DRK you anonymize. + + + EditAddressDialog diff --git a/src/qt/locale/darkcoin_ru_lv.ts b/src/qt/locale/darkcoin_ru_lv.ts index 37a9498da..ca098fd11 100644 --- a/src/qt/locale/darkcoin_ru_lv.ts +++ b/src/qt/locale/darkcoin_ru_lv.ts @@ -211,6 +211,69 @@ This product includes software developed by the OpenSSL Project for use in the O Приоритет + + DarksendConfig + + + Configure Darksend+ + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select an privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000DRK + + + + + Use 4 separate masternodes to mix funds up to 1000DRK + + + + + Use 8 separate masternodes + + + + + This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK + + + + + This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + 0.1DRK per 1000DRK you anonymize. + + + EditAddressDialog diff --git a/src/qt/locale/darkcoin_sk.ts b/src/qt/locale/darkcoin_sk.ts index db9850967..81f6a28bb 100644 --- a/src/qt/locale/darkcoin_sk.ts +++ b/src/qt/locale/darkcoin_sk.ts @@ -206,6 +206,69 @@ This product includes software developed by the OpenSSL Project for use in the O + + DarksendConfig + + + Configure Darksend+ + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select an privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000DRK + + + + + Use 4 separate masternodes to mix funds up to 1000DRK + + + + + Use 8 separate masternodes + + + + + This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK + + + + + This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + 0.1DRK per 1000DRK you anonymize. + + + EditAddressDialog diff --git a/src/qt/locale/darkcoin_sv.ts b/src/qt/locale/darkcoin_sv.ts index 35183c21a..74df8694d 100644 --- a/src/qt/locale/darkcoin_sv.ts +++ b/src/qt/locale/darkcoin_sv.ts @@ -118,7 +118,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ Coin Control Address Selection - Myntkontroll - adressval + Adressval för myntkontroll @@ -212,6 +212,69 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ Prioritet + + DarksendConfig + + + Configure Darksend+ + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select an privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000DRK + + + + + Use 4 separate masternodes to mix funds up to 1000DRK + + + + + Use 8 separate masternodes + + + + + This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK + + + + + This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + 0.1DRK per 1000DRK you anonymize. + + + EditAddressDialog @@ -227,7 +290,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ The label associated with this address list entry - Den associerade etiketten med adressens listnotering + Den associerade etiketten med adressens listninmatning @@ -237,7 +300,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ The address associated with this address list entry. This can only be modified for sending addresses. - Adressen associerad med adressens listnotering. Detta kan endast ändras för avsändaradresser. + Adressen associerad med adressens listinmatning. Detta kan endast ändras för avsändaradresser. @@ -314,7 +377,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ &Main - &Huvudsaklig + &Primär @@ -324,7 +387,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ &Start Darkcoin on system login - &Starta Darkcoin på systeminloggningen + &Starta Darkcoin vid systeminloggning @@ -344,12 +407,12 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ (0 = auto, <0 = leave that many cores free) - (0 = automatisk, <0 = lämna så många kärnor fria) + (0 = automatisk, <0 = lämna så många kärnor lediga) <html><head/><body><p>This setting determines the amount of individual masternodes that an input will be anonymized through. More rounds of anonymization gives a higher degree of privacy, but also costs more in fees.</p></body></html> - <html><head/><body><p>Denna inställning bestämmer antalet individuella masternodes som en indata kommer att anonymiseras genom. Flera omgångar anonymiseringar ger en högre grad integritet men kostar också mer i avgifter.</p></body></html> + <html><head/><body><p>Denna inställning bestämmer antalet individuella masternodes som en indata kommer att anonymiseras genom. Fler omgångar anonymiseringar ger en högre grad integritet men kostar också mer i avgifter.</p></body></html> @@ -359,22 +422,22 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ Amount of Darkcoin to keep anonymized - Antalet Darkcoins att hålla anonymiserade + Antalet Darkcoins att bibehålla anonymiserade W&allet - P&lånbok + &Plånbok Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. - Valfri transaktionsavgift per kB som säkerställer att dina transaktioner bearbetas snabbt. De flesta transaktioner är 1 kB. + Valfri transaktionsavgift per kB som säkerställer att dina transaktioner bearbetas snabbt. De flesta transaktioner är 1 kB. Pay transaction &fee - Betala transaktions&avgift + Betala &transaktionsavgift @@ -394,12 +457,12 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Om du inaktiverar utgifterna för obekräftade förändringar, kan förändringen från en transaktion inte användas förrän den transaktionen har minst en bekräftelse. Detta påverkar också hur ditt saldo beräknas. + Om du inaktiverar utgifterna för overifierad växel kan växlen från en transaktion inte användas förrän den transaktionen har minst en verifiering. Detta påverkar också hur ditt saldo beräknas. &Spend unconfirmed change - &Spendera obekräftad växel + &Spendera overifierad växel @@ -409,7 +472,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ Automatically open the Darkcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Öppna automatiskt klientporten Darkcoin på routern. Detta fungerar bara om din router stödjer UPnP och den är aktiverad. + Öppna automatiskt klientporten Darkcoin på routern. Detta fungerar bara om din router stöder UPnP och är aktiverad. @@ -454,7 +517,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ SOCKS version of the proxy (e.g. 5) - SOCKS-version av proxyn (t.ex. 5) + Proxyns SOCKS-version (t.ex. 5) @@ -464,17 +527,17 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ Show only a tray icon after minimizing the window. - Visa bara en fältikon efter att ha minimerat fönstret. + Visa bara en fältikon efter att fönstret minimerats. &Minimize to the tray instead of the taskbar - &Minimera tll verktygsfältet istället för aktivitetsfältet + &Minimera till verktygsfältet istället för aktivitetsfältet Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - Minimera istället för att gå ur applikationen när fönstret stängs. När denna inställning är aktiverad kommer applikationen endast att stängas om du valt Avsluta i menyn. + Minimera istället för att gå ur applikationen när fönstret är stängt. När denna inställning är aktiverad kommer applikationen endast att stängas efter att du har valt Avsluta i menyn. @@ -489,22 +552,22 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ User Interface &language: - Användargränssnit&språk: + &Användargränsnitt&språk: The user interface language can be set here. This setting will take effect after restarting Darkcoin. - Användargränssnittspråket kan ställas in här. Denna inställning börjar gälla efter att du har startat om Darkcoin. + Användargränssnittspråket kan ställas in här. Denna inställning börjar gälla efter att Darkcoin startats om. &Unit to show amounts in: - &Enhet att visa belopp i: + &Enhet att visa antal i: Choose the default subdivision unit to show in the interface and when sending coins. - Välj standardindelningsenhet att visa i gränssnittet och när du skickar mynt. + Välj standardindelningsenhet att visa i gränssnittet och när mynt skickas. @@ -520,17 +583,17 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - Tredjepartswebbadresser (t. ex. en blockutforskare) som visas under transaktionsfliken som kontextmenyposter. %:en i URL:en ersätts av transaktionshash. Flera URL:s skiljs åt av en vertikalstång |. + Tredjepartswebbadresser (t. ex. en blockutforskare) som visas under transaktionsfliken som kontextmenyposter. %:en i URL:en ersätts av transaktionshash. Flera URL:s skiljs åt av en vertikalstång, |. Third party transaction URLs - Tredjepartstransaktions-URL:er + Tredjepartstransaktion-URL:er Active command-line options that override above options: - Aktiva kommandoradsalternativ som åsidosätter ovanstående alternativ: + Aktiva kommandoradalternativ som åsidosätter ovanstående alternativ: @@ -589,7 +652,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Totalt antal transaktioner som ännu inte har bekräftats och ännu inte räknas till ett tillgängligt saldo + Totalt antal transaktioner som ännu inte har bekräftats och ännu inte räknas som tillgängligt saldo @@ -599,7 +662,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ Mined balance that has not yet matured - Utvunnet saldo som inte har mognat än + Utvunnet saldo som ännu inte har mognat @@ -860,7 +923,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Darkcoin network. - Ett valfritt meddelande att bifoga betalningsbegärandet vilket kan visas när begäran öppnas. Notera: Meddelandet kommer inte att skickas med betalningen över Darkcoin-nätverket. + Ett valfritt meddelande att bifoga betalningsbegärandet vilket kommer att visas när begäran öppnas. Notera: Meddelandet kommer inte att skickas med betalningen över Darkcoin-nätverket. @@ -1028,7 +1091,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Om detta är aktiverat men växeladressen är tom eller ogiltig kommer växeln att skickas till en nyligen genererad adress. + Om detta är aktiverat men växeladressen är tom eller ogiltig kommer växeln att skickas till en nygenererad adress. @@ -1043,7 +1106,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ S&end - S&kicka + &Skicka @@ -1133,7 +1196,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ Enter a label for this address to add it to the list of used addresses - Skriv in en etikett för denna adress för att lägga till den i listan för använda adresser + Skriv in en etikett för denna adress för att lägga till den i listan med använda adresser @@ -1150,7 +1213,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ A message that was attached to the darkcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Darkcoin network. - Ett meddelande som var bifogat till Darkcoin: URI vilket var lagrat med transaktionen för ditt avseende. Notera: Meddelandet kommer inte att skickas över Darkcoin-nätverket. + Ett meddelande var bifogat till Darkcoin: URI vilket kommer att lagras med transaktionen för ditt avseende. Notera: Meddelandet kommer inte att skickas över Darkcoin-nätverket. @@ -1190,7 +1253,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - Du kan signera meddelanden med dina adresser för att bevisa att du äger dem. Var försiktig att inte skriva på någonting oklart då phishing-attacker kan försöka lura dig att skriva över din identitet till dem. Signera endast väldetaljerade uppgifter du samtycker till. + Du kan signera meddelanden med dina adresser för att bevisa att du äger dem. Var försiktig att inte skriva på någonting oklart då phishing-attacker kan försöka lura dig till att skriva över din identitet till dem. Signera endast väldetaljerade uppgifter du samtycker till. @@ -1222,7 +1285,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ Enter the message you want to sign here - Skriv in meddelande du vill signera här + Skriv in meddelandet du vill signera här @@ -1237,7 +1300,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ Sign the message to prove you own this Darkcoin address - Signera meddelande för att bevisa att du äger denna Darkcoin-adress + Signera meddelandet för att bevisa att du äger denna Darkcoin-adress @@ -1263,7 +1326,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - Skriv in signeringsadressen, meddelande (försäkra dig om att du kopierar linjeavbrott, mellanslag, flikar etc.) och signera nedtill för att verifiera meddelandet. Var försiktig med att inte läsa in mer i signaturen än vad som finns i det signerade meddelandet för att undvika att bli lurad av en mellanhandattack. + Skriv in signeringsadressens meddelande (försäkra dig om att du kopierar linjeavbrott, mellanslag, flikar etc.) och signera nedtill för att verifiera meddelandet. Var försiktig med att inte läsa in mer i signaturen än vad som finns i det signerade meddelandet för att undvika att bli lurad av en mellanhandattack. diff --git a/src/qt/locale/darkcoin_tr.ts b/src/qt/locale/darkcoin_tr.ts index 917af8f47..875ba7480 100644 --- a/src/qt/locale/darkcoin_tr.ts +++ b/src/qt/locale/darkcoin_tr.ts @@ -206,6 +206,69 @@ This product includes software developed by the OpenSSL Project for use in the O + + DarksendConfig + + + Configure Darksend+ + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select an privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000DRK + + + + + Use 4 separate masternodes to mix funds up to 1000DRK + + + + + Use 8 separate masternodes + + + + + This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK + + + + + This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + 0.1DRK per 1000DRK you anonymize. + + + EditAddressDialog diff --git a/src/qt/locale/darkcoin_vi_VN.ts b/src/qt/locale/darkcoin_vi_VN.ts index 07ad274bf..09154f073 100644 --- a/src/qt/locale/darkcoin_vi_VN.ts +++ b/src/qt/locale/darkcoin_vi_VN.ts @@ -211,6 +211,69 @@ Sản phẩm này bao gồm phần mềm được phát triển bởi dự án O Ưu tiên + + DarksendConfig + + + Configure Darksend+ + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select an privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000DRK + + + + + Use 4 separate masternodes to mix funds up to 1000DRK + + + + + Use 8 separate masternodes + + + + + This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK + + + + + This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + 0.1DRK per 1000DRK you anonymize. + + + EditAddressDialog diff --git a/src/qt/locale/darkcoin_zh.ts b/src/qt/locale/darkcoin_zh.ts index e79d373ca..77e7c41fe 100644 --- a/src/qt/locale/darkcoin_zh.ts +++ b/src/qt/locale/darkcoin_zh.ts @@ -206,6 +206,69 @@ This product includes software developed by the OpenSSL Project for use in the O 优先权 + + DarksendConfig + + + Configure Darksend+ + + + + + Basic Privacy + + + + + High Privacy + + + + + Maximum Privacy + + + + + Please select an privacy level. + + + + + Use 2 separate masternodes to mix funds up to 1000DRK + + + + + Use 4 separate masternodes to mix funds up to 1000DRK + + + + + Use 8 separate masternodes + + + + + This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK + + + + + This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK + + + + + This is the slowest and most secure option. Using maximum anonymity will cost + + + + + 0.1DRK per 1000DRK you anonymize. + + + EditAddressDialog