mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 03:52:49 +01:00
Update bitcoinstrings.
This commit is contained in:
parent
be3041e88c
commit
1333864674
@ -30,7 +30,7 @@ def parse_po(text):
|
|||||||
in_msgstr = False
|
in_msgstr = False
|
||||||
# message start
|
# message start
|
||||||
in_msgid = True
|
in_msgid = True
|
||||||
|
|
||||||
msgid = [line[6:]]
|
msgid = [line[6:]]
|
||||||
elif line.startswith('msgstr '):
|
elif line.startswith('msgstr '):
|
||||||
in_msgid = False
|
in_msgid = False
|
||||||
@ -47,17 +47,21 @@ def parse_po(text):
|
|||||||
|
|
||||||
return messages
|
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 -n --keyword=_ $FILES
|
||||||
XGETTEXT=os.getenv('XGETTEXT', 'xgettext')
|
XGETTEXT=os.getenv('XGETTEXT', 'xgettext')
|
||||||
child = Popen([XGETTEXT,'--output=-','-n','--keyword=_'] + files, stdout=PIPE)
|
child = Popen([XGETTEXT,'--output=-','-n','--keyword=_'] + files, stdout=PIPE)
|
||||||
(out, err) = child.communicate()
|
(out, err) = child.communicate()
|
||||||
|
|
||||||
messages = parse_po(out)
|
messages = parse_po(out)
|
||||||
|
|
||||||
f = open(OUT_CPP, 'w')
|
f = open(OUT_CPP, 'w')
|
||||||
f.write("""
|
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 <QtGlobal>
|
#include <QtGlobal>
|
||||||
|
|
||||||
@ -72,6 +76,6 @@ f.write('static const char UNUSED *bitcoin_strings[] = {\n')
|
|||||||
messages.sort(key=operator.itemgetter(0))
|
messages.sort(key=operator.itemgetter(0))
|
||||||
for (msgid, msgstr) in messages:
|
for (msgid, msgstr) in messages:
|
||||||
if msgid != EMPTY:
|
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.write('};\n')
|
||||||
f.close()
|
f.close()
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
|
|
||||||
// Copyright (c) 2009-2014 The Bitcoin developers
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
||||||
// Copyright (c) 2014-2015 The Darkcoin developers
|
// Copyright (c) 2014-2015 The Darkcoin developers
|
||||||
|
|
||||||
|
//! This file is generated by share/qt/extract_strings_qt.py
|
||||||
|
|
||||||
#include <QtGlobal>
|
#include <QtGlobal>
|
||||||
|
|
||||||
// Automatically generated by extract_strings.py
|
// 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 "
|
"If the file does not exist, create it with owner-readable-only file "
|
||||||
"permissions.\n"
|
"permissions.\n"
|
||||||
"It is also recommended to set alertnotify so you are notified of problems;\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", ""
|
QT_TRANSLATE_NOOP("darkcoin-core", ""
|
||||||
"Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!"
|
"Acceptable ciphers (default: TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!"
|
||||||
"3DES:@STRENGTH)"),
|
"3DES:@STRENGTH)"),
|
||||||
@ -40,6 +44,14 @@ QT_TRANSLATE_NOOP("darkcoin-core", ""
|
|||||||
"Continuously rate-limit free transactions to <n>*1000 bytes per minute "
|
"Continuously rate-limit free transactions to <n>*1000 bytes per minute "
|
||||||
"(default:15)"),
|
"(default:15)"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", ""
|
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 "
|
"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 "
|
"be solved instantly. This is intended for regression testing tools and app "
|
||||||
"development."),
|
"development."),
|
||||||
@ -47,7 +59,7 @@ QT_TRANSLATE_NOOP("darkcoin-core", ""
|
|||||||
"Enter regression test mode, which uses a special chain in which blocks can "
|
"Enter regression test mode, which uses a special chain in which blocks can "
|
||||||
"be solved instantly."),
|
"be solved instantly."),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", ""
|
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", ""
|
QT_TRANSLATE_NOOP("darkcoin-core", ""
|
||||||
"Error: The transaction was rejected! This might happen if some of the coins "
|
"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 "
|
"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 "
|
"Error: This transaction requires a transaction fee of at least %s because of "
|
||||||
"its amount, complexity, or use of recently received funds!"),
|
"its amount, complexity, or use of recently received funds!"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", ""
|
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 "
|
"Execute command when a relevant alert is received or we see a really long "
|
||||||
"fork (%s in cmd is replaced by message)"),
|
"fork (%s in cmd is replaced by message)"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", ""
|
QT_TRANSLATE_NOOP("darkcoin-core", ""
|
||||||
@ -78,11 +92,22 @@ QT_TRANSLATE_NOOP("darkcoin-core", ""
|
|||||||
QT_TRANSLATE_NOOP("darkcoin-core", ""
|
QT_TRANSLATE_NOOP("darkcoin-core", ""
|
||||||
"Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998)"),
|
"Listen for JSON-RPC connections on <port> (default: 9998 or testnet: 19998)"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", ""
|
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: "
|
"Number of seconds to keep misbehaving peers from reconnecting (default: "
|
||||||
"86400)"),
|
"86400)"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", ""
|
QT_TRANSLATE_NOOP("darkcoin-core", ""
|
||||||
"Output debugging information (default: 0, supplying <category> is optional)"),
|
"Output debugging information (default: 0, supplying <category> is optional)"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", ""
|
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)"),
|
"Set maximum size of high-priority/low-fee transactions in bytes (default: %d)"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", ""
|
QT_TRANSLATE_NOOP("darkcoin-core", ""
|
||||||
"Set the number of script verification threads (%u to %d, 0 = auto, <0 = "
|
"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: "
|
"Set the processor limit for when generation is on (-1 = unlimited, default: "
|
||||||
"-1)"),
|
"-1)"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", ""
|
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 "
|
"This is a pre-release test build - use at your own risk - do not use for "
|
||||||
"mining or merchant applications"),
|
"mining or merchant applications"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", ""
|
QT_TRANSLATE_NOOP("darkcoin-core", ""
|
||||||
"Unable to bind to %s on this computer. Darkcoin Core is probably already "
|
"Unable to bind to %s on this computer. Darkcoin Core is probably already "
|
||||||
"running."),
|
"running."),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", ""
|
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: -"
|
"Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -"
|
||||||
"proxy)"),
|
"proxy)"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", ""
|
QT_TRANSLATE_NOOP("darkcoin-core", ""
|
||||||
@ -123,6 +156,9 @@ QT_TRANSLATE_NOOP("darkcoin-core", ""
|
|||||||
"%s\n"
|
"%s\n"
|
||||||
"If the file does not exist, create it with owner-readable-only file "
|
"If the file does not exist, create it with owner-readable-only file "
|
||||||
"permissions."),
|
"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: 1)"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "(default: wallet.dat)"),
|
QT_TRANSLATE_NOOP("darkcoin-core", "(default: wallet.dat)"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "<category> can be:"),
|
QT_TRANSLATE_NOOP("darkcoin-core", "<category> 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", "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 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", "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", "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", "Block creation options:"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Cannot downgrade wallet"),
|
QT_TRANSLATE_NOOP("darkcoin-core", "Cannot downgrade wallet"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Cannot resolve -bind address: '%s'"),
|
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 only to the specified node(s)"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Connect through SOCKS proxy"),
|
QT_TRANSLATE_NOOP("darkcoin-core", "Connect through SOCKS proxy"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998)"),
|
QT_TRANSLATE_NOOP("darkcoin-core", "Connect to JSON-RPC on <port> (default: 9998 or testnet: 19998)"),
|
||||||
|
QT_TRANSLATE_NOOP("darkcoin-core", "Connect to KeePassHttp on port <port> (default: 19455)"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Connect to a node to retrieve peer addresses, and disconnect"),
|
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", "Connection options:"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Corrupted block database detected"),
|
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", "Debugging/Testing options:"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Disable safemode, override a real safe mode event (default: 0)"),
|
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", "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 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", "Do you want to rebuild the block database now?"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Done loading"),
|
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 block database"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Error initializing wallet database environment %s!"),
|
QT_TRANSLATE_NOOP("darkcoin-core", "Error initializing wallet database environment %s!"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Error loading block database"),
|
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 corrupted"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Error loading wallet.dat: Wallet requires newer version of Darkcoin"),
|
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 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"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Error: Disk space is low!"),
|
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: 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", "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 listen on any port. Use -listen=0 if you want this."),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Failed to read block info"),
|
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", "Failed to write undo data"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Fee per kB to add to transactions you send"),
|
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", "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", "Force safe mode (default: 0)"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Generate coins (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", "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", "How many blocks to check at startup (default: 288, 0 = all)"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "If <category> is not supplied, output all debugging information."),
|
QT_TRANSLATE_NOOP("darkcoin-core", "If <category> 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", "Importing..."),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Imports blocks from external blk000??.dat file"),
|
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", "Incorrect or no genesis block found. Wrong datadir for network?"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Information"),
|
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", "Insufficient funds"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Invalid -onion address: '%s'"),
|
QT_TRANSLATE_NOOP("darkcoin-core", "Invalid -onion address: '%s'"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Invalid -proxy address: '%s'"),
|
QT_TRANSLATE_NOOP("darkcoin-core", "Invalid -proxy address: '%s'"),
|
||||||
@ -193,15 +237,23 @@ QT_TRANSLATE_NOOP("darkcoin-core", "Invalid amount for -minrelaytxfee=<amount>:
|
|||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Invalid amount for -mintxfee=<amount>: '%s'"),
|
QT_TRANSLATE_NOOP("darkcoin-core", "Invalid amount for -mintxfee=<amount>: '%s'"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Invalid amount for -paytxfee=<amount>: '%s'"),
|
QT_TRANSLATE_NOOP("darkcoin-core", "Invalid amount for -paytxfee=<amount>: '%s'"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Invalid amount"),
|
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 <n> unconnectable blocks in memory (default: %u)"),
|
||||||
|
QT_TRANSLATE_NOOP("darkcoin-core", "Keep at most <n> unconnectable transactions in memory (default: %u)"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Limit size of signature cache to <n> entries (default: 50000)"),
|
QT_TRANSLATE_NOOP("darkcoin-core", "Limit size of signature cache to <n> entries (default: 50000)"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "List commands"),
|
QT_TRANSLATE_NOOP("darkcoin-core", "List commands"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Listen for connections on <port> (default: 9999 or testnet: 19999)"),
|
QT_TRANSLATE_NOOP("darkcoin-core", "Listen for connections on <port> (default: 9999 or testnet: 19999)"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Loading addresses..."),
|
QT_TRANSLATE_NOOP("darkcoin-core", "Loading addresses..."),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Loading block index..."),
|
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", "Loading wallet..."),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Log transaction priority and fee per kB when mining blocks (default: 0)"),
|
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 a full transaction index (default: 0)"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Maintain at most <n> connections to peers (default: 125)"),
|
QT_TRANSLATE_NOOP("darkcoin-core", "Maintain at most <n> connections to peers (default: 125)"),
|
||||||
|
QT_TRANSLATE_NOOP("darkcoin-core", "Masternode options:"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000)"),
|
QT_TRANSLATE_NOOP("darkcoin-core", "Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000)"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Maximum per-connection send buffer, <n>*1000 bytes (default: 1000)"),
|
QT_TRANSLATE_NOOP("darkcoin-core", "Maximum per-connection send buffer, <n>*1000 bytes (default: 1000)"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Not enough file descriptors available."),
|
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", "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 on startup, if found in block index"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Print block tree on startup (default: 0)"),
|
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 client options:"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "RPC server options:"),
|
QT_TRANSLATE_NOOP("darkcoin-core", "RPC server options:"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Randomly drop 1 of every <n> network messages"),
|
QT_TRANSLATE_NOOP("darkcoin-core", "Randomly drop 1 of every <n> 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 <n> (default: 100)"),
|
QT_TRANSLATE_NOOP("darkcoin-core", "Set key pool size to <n> (default: 100)"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Set maximum block size in bytes (default: %d)"),
|
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 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", "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", "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)"),
|
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 configuration file (default: darkcoin.conf)"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Specify connection timeout in milliseconds (default: 5000)"),
|
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 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 pid file (default: darkcoind.pid)"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Specify wallet file (within data directory)"),
|
QT_TRANSLATE_NOOP("darkcoin-core", "Specify wallet file (within data directory)"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Specify your own public address"),
|
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 amount too small"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Transaction amounts must be positive"),
|
QT_TRANSLATE_NOOP("darkcoin-core", "Transaction amounts must be positive"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Transaction too large"),
|
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 -socks proxy version requested: %i"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Unknown network specified in -onlynet: '%s'"),
|
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", "Upgrade wallet to latest format"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Usage (deprecated, use darkcoin-cli):"),
|
QT_TRANSLATE_NOOP("darkcoin-core", "Usage (deprecated, use darkcoin-cli):"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Usage:"),
|
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 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: 0)"),
|
||||||
QT_TRANSLATE_NOOP("darkcoin-core", "Use UPnP to map the listening port (default: 1 when listening)"),
|
QT_TRANSLATE_NOOP("darkcoin-core", "Use UPnP to map the listening port (default: 1 when listening)"),
|
||||||
|
@ -206,6 +206,69 @@ This product includes software developed by the OpenSSL Project for use in the O
|
|||||||
<translation type="unfinished"/>
|
<translation type="unfinished"/>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>DarksendConfig</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="14"/>
|
||||||
|
<source>Configure Darksend+</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="26"/>
|
||||||
|
<source>Basic Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="39"/>
|
||||||
|
<source>High Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="52"/>
|
||||||
|
<source>Maximum Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="65"/>
|
||||||
|
<source>Please select an privacy level. </source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="78"/>
|
||||||
|
<source>Use 2 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="91"/>
|
||||||
|
<source>Use 4 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="104"/>
|
||||||
|
<source>Use 8 separate masternodes</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="117"/>
|
||||||
|
<source>This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="130"/>
|
||||||
|
<source>This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="143"/>
|
||||||
|
<source>This is the slowest and most secure option. Using maximum anonymity will cost</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="156"/>
|
||||||
|
<source>0.1DRK per 1000DRK you anonymize.</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditAddressDialog</name>
|
<name>EditAddressDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -208,6 +208,69 @@ Distribuiran od strane MIT/X11 software licence, </translation>
|
|||||||
<translation>Prioritet</translation>
|
<translation>Prioritet</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>DarksendConfig</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="14"/>
|
||||||
|
<source>Configure Darksend+</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="26"/>
|
||||||
|
<source>Basic Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="39"/>
|
||||||
|
<source>High Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="52"/>
|
||||||
|
<source>Maximum Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="65"/>
|
||||||
|
<source>Please select an privacy level. </source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="78"/>
|
||||||
|
<source>Use 2 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="91"/>
|
||||||
|
<source>Use 4 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="104"/>
|
||||||
|
<source>Use 8 separate masternodes</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="117"/>
|
||||||
|
<source>This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="130"/>
|
||||||
|
<source>This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="143"/>
|
||||||
|
<source>This is the slowest and most secure option. Using maximum anonymity will cost</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="156"/>
|
||||||
|
<source>0.1DRK per 1000DRK you anonymize.</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditAddressDialog</name>
|
<name>EditAddressDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -206,6 +206,69 @@ This product includes software developed by the OpenSSL Project for use in the O
|
|||||||
<translation type="unfinished"/>
|
<translation type="unfinished"/>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>DarksendConfig</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="14"/>
|
||||||
|
<source>Configure Darksend+</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="26"/>
|
||||||
|
<source>Basic Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="39"/>
|
||||||
|
<source>High Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="52"/>
|
||||||
|
<source>Maximum Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="65"/>
|
||||||
|
<source>Please select an privacy level. </source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="78"/>
|
||||||
|
<source>Use 2 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="91"/>
|
||||||
|
<source>Use 4 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="104"/>
|
||||||
|
<source>Use 8 separate masternodes</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="117"/>
|
||||||
|
<source>This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="130"/>
|
||||||
|
<source>This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="143"/>
|
||||||
|
<source>This is the slowest and most secure option. Using maximum anonymity will cost</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="156"/>
|
||||||
|
<source>0.1DRK per 1000DRK you anonymize.</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditAddressDialog</name>
|
<name>EditAddressDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -211,6 +211,69 @@ Dieses Produkt enthält Software, die vom OpenSSL-Projekt zur Verwendung im Open
|
|||||||
<translation>Priorität</translation>
|
<translation>Priorität</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>DarksendConfig</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="14"/>
|
||||||
|
<source>Configure Darksend+</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="26"/>
|
||||||
|
<source>Basic Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="39"/>
|
||||||
|
<source>High Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="52"/>
|
||||||
|
<source>Maximum Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="65"/>
|
||||||
|
<source>Please select an privacy level. </source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="78"/>
|
||||||
|
<source>Use 2 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="91"/>
|
||||||
|
<source>Use 4 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="104"/>
|
||||||
|
<source>Use 8 separate masternodes</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="117"/>
|
||||||
|
<source>This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="130"/>
|
||||||
|
<source>This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="143"/>
|
||||||
|
<source>This is the slowest and most secure option. Using maximum anonymity will cost</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="156"/>
|
||||||
|
<source>0.1DRK per 1000DRK you anonymize.</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditAddressDialog</name>
|
<name>EditAddressDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -208,6 +208,69 @@ This product includes software developed by the OpenSSL Project for use in the O
|
|||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>DarksendConfig</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="14"/>
|
||||||
|
<source>Configure Darksend+</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="26"/>
|
||||||
|
<source>Basic Privacy</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="39"/>
|
||||||
|
<source>High Privacy</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="52"/>
|
||||||
|
<source>Maximum Privacy</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="65"/>
|
||||||
|
<source>Please select an privacy level. </source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="78"/>
|
||||||
|
<source>Use 2 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="91"/>
|
||||||
|
<source>Use 4 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="104"/>
|
||||||
|
<source>Use 8 separate masternodes</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="117"/>
|
||||||
|
<source>This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="130"/>
|
||||||
|
<source>This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="143"/>
|
||||||
|
<source>This is the slowest and most secure option. Using maximum anonymity will cost</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="156"/>
|
||||||
|
<source>0.1DRK per 1000DRK you anonymize.</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditAddressDialog</name>
|
<name>EditAddressDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -206,6 +206,69 @@ This product includes software developed by the OpenSSL Project for use in the O
|
|||||||
<translation type="unfinished"/>
|
<translation type="unfinished"/>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>DarksendConfig</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="14"/>
|
||||||
|
<source>Configure Darksend+</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="26"/>
|
||||||
|
<source>Basic Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="39"/>
|
||||||
|
<source>High Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="52"/>
|
||||||
|
<source>Maximum Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="65"/>
|
||||||
|
<source>Please select an privacy level. </source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="78"/>
|
||||||
|
<source>Use 2 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="91"/>
|
||||||
|
<source>Use 4 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="104"/>
|
||||||
|
<source>Use 8 separate masternodes</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="117"/>
|
||||||
|
<source>This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="130"/>
|
||||||
|
<source>This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="143"/>
|
||||||
|
<source>This is the slowest and most secure option. Using maximum anonymity will cost</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="156"/>
|
||||||
|
<source>0.1DRK per 1000DRK you anonymize.</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditAddressDialog</name>
|
<name>EditAddressDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../forms/aboutdialog.ui" line="14"/>
|
<location filename="../forms/aboutdialog.ui" line="14"/>
|
||||||
<source>About Darkcoin Core</source>
|
<source>About Darkcoin Core</source>
|
||||||
<translation type="unfinished"/>
|
<translation>Acerca de Darkcoin Core</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/aboutdialog.ui" line="53"/>
|
<location filename="../forms/aboutdialog.ui" line="53"/>
|
||||||
@ -206,6 +206,69 @@ This product includes software developed by the OpenSSL Project for use in the O
|
|||||||
<translation type="unfinished"/>
|
<translation type="unfinished"/>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>DarksendConfig</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="14"/>
|
||||||
|
<source>Configure Darksend+</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="26"/>
|
||||||
|
<source>Basic Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="39"/>
|
||||||
|
<source>High Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="52"/>
|
||||||
|
<source>Maximum Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="65"/>
|
||||||
|
<source>Please select an privacy level. </source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="78"/>
|
||||||
|
<source>Use 2 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="91"/>
|
||||||
|
<source>Use 4 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="104"/>
|
||||||
|
<source>Use 8 separate masternodes</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="117"/>
|
||||||
|
<source>This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="130"/>
|
||||||
|
<source>This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="143"/>
|
||||||
|
<source>This is the slowest and most secure option. Using maximum anonymity will cost</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="156"/>
|
||||||
|
<source>0.1DRK per 1000DRK you anonymize.</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditAddressDialog</name>
|
<name>EditAddressDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -211,6 +211,69 @@ Ce produit comporte des logiciels développés par OpenSSL Project pour utilisat
|
|||||||
<translation>Priorité</translation>
|
<translation>Priorité</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>DarksendConfig</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="14"/>
|
||||||
|
<source>Configure Darksend+</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="26"/>
|
||||||
|
<source>Basic Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="39"/>
|
||||||
|
<source>High Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="52"/>
|
||||||
|
<source>Maximum Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="65"/>
|
||||||
|
<source>Please select an privacy level. </source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="78"/>
|
||||||
|
<source>Use 2 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="91"/>
|
||||||
|
<source>Use 4 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="104"/>
|
||||||
|
<source>Use 8 separate masternodes</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="117"/>
|
||||||
|
<source>This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="130"/>
|
||||||
|
<source>This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="143"/>
|
||||||
|
<source>This is the slowest and most secure option. Using maximum anonymity will cost</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="156"/>
|
||||||
|
<source>0.1DRK per 1000DRK you anonymize.</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditAddressDialog</name>
|
<name>EditAddressDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -206,6 +206,69 @@ This product includes software developed by the OpenSSL Project for use in the O
|
|||||||
<translation type="unfinished"/>
|
<translation type="unfinished"/>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>DarksendConfig</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="14"/>
|
||||||
|
<source>Configure Darksend+</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="26"/>
|
||||||
|
<source>Basic Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="39"/>
|
||||||
|
<source>High Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="52"/>
|
||||||
|
<source>Maximum Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="65"/>
|
||||||
|
<source>Please select an privacy level. </source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="78"/>
|
||||||
|
<source>Use 2 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="91"/>
|
||||||
|
<source>Use 4 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="104"/>
|
||||||
|
<source>Use 8 separate masternodes</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="117"/>
|
||||||
|
<source>This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="130"/>
|
||||||
|
<source>This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="143"/>
|
||||||
|
<source>This is the slowest and most secure option. Using maximum anonymity will cost</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="156"/>
|
||||||
|
<source>0.1DRK per 1000DRK you anonymize.</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditAddressDialog</name>
|
<name>EditAddressDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -212,6 +212,69 @@ Ez a termék tartalmaz az OpenSSL Project által az OpenSSL Toolkit-hez (http://
|
|||||||
<translation>Prioritás</translation>
|
<translation>Prioritás</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>DarksendConfig</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="14"/>
|
||||||
|
<source>Configure Darksend+</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="26"/>
|
||||||
|
<source>Basic Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="39"/>
|
||||||
|
<source>High Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="52"/>
|
||||||
|
<source>Maximum Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="65"/>
|
||||||
|
<source>Please select an privacy level. </source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="78"/>
|
||||||
|
<source>Use 2 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="91"/>
|
||||||
|
<source>Use 4 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="104"/>
|
||||||
|
<source>Use 8 separate masternodes</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="117"/>
|
||||||
|
<source>This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="130"/>
|
||||||
|
<source>This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="143"/>
|
||||||
|
<source>This is the slowest and most secure option. Using maximum anonymity will cost</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="156"/>
|
||||||
|
<source>0.1DRK per 1000DRK you anonymize.</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditAddressDialog</name>
|
<name>EditAddressDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -211,6 +211,69 @@ Produk ini termasuk perangkat lunak yang dikembangkan oleh proyek OpenSSL untuk
|
|||||||
<translation>Prioritas</translation>
|
<translation>Prioritas</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>DarksendConfig</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="14"/>
|
||||||
|
<source>Configure Darksend+</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="26"/>
|
||||||
|
<source>Basic Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="39"/>
|
||||||
|
<source>High Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="52"/>
|
||||||
|
<source>Maximum Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="65"/>
|
||||||
|
<source>Please select an privacy level. </source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="78"/>
|
||||||
|
<source>Use 2 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="91"/>
|
||||||
|
<source>Use 4 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="104"/>
|
||||||
|
<source>Use 8 separate masternodes</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="117"/>
|
||||||
|
<source>This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="130"/>
|
||||||
|
<source>This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="143"/>
|
||||||
|
<source>This is the slowest and most secure option. Using maximum anonymity will cost</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="156"/>
|
||||||
|
<source>0.1DRK per 1000DRK you anonymize.</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditAddressDialog</name>
|
<name>EditAddressDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -211,6 +211,69 @@ Questo prodotto include del software prodotto dal progetto OpenSSL per l'ut
|
|||||||
<translation>Priorità</translation>
|
<translation>Priorità</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>DarksendConfig</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="14"/>
|
||||||
|
<source>Configure Darksend+</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="26"/>
|
||||||
|
<source>Basic Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="39"/>
|
||||||
|
<source>High Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="52"/>
|
||||||
|
<source>Maximum Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="65"/>
|
||||||
|
<source>Please select an privacy level. </source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="78"/>
|
||||||
|
<source>Use 2 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="91"/>
|
||||||
|
<source>Use 4 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="104"/>
|
||||||
|
<source>Use 8 separate masternodes</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="117"/>
|
||||||
|
<source>This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="130"/>
|
||||||
|
<source>This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="143"/>
|
||||||
|
<source>This is the slowest and most secure option. Using maximum anonymity will cost</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="156"/>
|
||||||
|
<source>0.1DRK per 1000DRK you anonymize.</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditAddressDialog</name>
|
<name>EditAddressDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -212,6 +212,69 @@ Nesniedz reālu drošību</translation>
|
|||||||
<translation>Prioritāte</translation>
|
<translation>Prioritāte</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>DarksendConfig</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="14"/>
|
||||||
|
<source>Configure Darksend+</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="26"/>
|
||||||
|
<source>Basic Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="39"/>
|
||||||
|
<source>High Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="52"/>
|
||||||
|
<source>Maximum Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="65"/>
|
||||||
|
<source>Please select an privacy level. </source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="78"/>
|
||||||
|
<source>Use 2 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="91"/>
|
||||||
|
<source>Use 4 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="104"/>
|
||||||
|
<source>Use 8 separate masternodes</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="117"/>
|
||||||
|
<source>This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="130"/>
|
||||||
|
<source>This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="143"/>
|
||||||
|
<source>This is the slowest and most secure option. Using maximum anonymity will cost</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="156"/>
|
||||||
|
<source>0.1DRK per 1000DRK you anonymize.</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditAddressDialog</name>
|
<name>EditAddressDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -211,6 +211,69 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d
|
|||||||
<translation>Prioriteit</translation>
|
<translation>Prioriteit</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>DarksendConfig</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="14"/>
|
||||||
|
<source>Configure Darksend+</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="26"/>
|
||||||
|
<source>Basic Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="39"/>
|
||||||
|
<source>High Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="52"/>
|
||||||
|
<source>Maximum Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="65"/>
|
||||||
|
<source>Please select an privacy level. </source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="78"/>
|
||||||
|
<source>Use 2 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="91"/>
|
||||||
|
<source>Use 4 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="104"/>
|
||||||
|
<source>Use 8 separate masternodes</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="117"/>
|
||||||
|
<source>This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="130"/>
|
||||||
|
<source>This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="143"/>
|
||||||
|
<source>This is the slowest and most secure option. Using maximum anonymity will cost</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="156"/>
|
||||||
|
<source>0.1DRK per 1000DRK you anonymize.</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditAddressDialog</name>
|
<name>EditAddressDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -211,6 +211,69 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d
|
|||||||
<translation>Prioriteit</translation>
|
<translation>Prioriteit</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>DarksendConfig</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="14"/>
|
||||||
|
<source>Configure Darksend+</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="26"/>
|
||||||
|
<source>Basic Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="39"/>
|
||||||
|
<source>High Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="52"/>
|
||||||
|
<source>Maximum Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="65"/>
|
||||||
|
<source>Please select an privacy level. </source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="78"/>
|
||||||
|
<source>Use 2 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="91"/>
|
||||||
|
<source>Use 4 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="104"/>
|
||||||
|
<source>Use 8 separate masternodes</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="117"/>
|
||||||
|
<source>This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="130"/>
|
||||||
|
<source>This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="143"/>
|
||||||
|
<source>This is the slowest and most secure option. Using maximum anonymity will cost</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="156"/>
|
||||||
|
<source>0.1DRK per 1000DRK you anonymize.</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditAddressDialog</name>
|
<name>EditAddressDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -211,6 +211,69 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d
|
|||||||
<translation>Prioriteit</translation>
|
<translation>Prioriteit</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>DarksendConfig</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="14"/>
|
||||||
|
<source>Configure Darksend+</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="26"/>
|
||||||
|
<source>Basic Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="39"/>
|
||||||
|
<source>High Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="52"/>
|
||||||
|
<source>Maximum Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="65"/>
|
||||||
|
<source>Please select an privacy level. </source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="78"/>
|
||||||
|
<source>Use 2 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="91"/>
|
||||||
|
<source>Use 4 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="104"/>
|
||||||
|
<source>Use 8 separate masternodes</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="117"/>
|
||||||
|
<source>This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="130"/>
|
||||||
|
<source>This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="143"/>
|
||||||
|
<source>This is the slowest and most secure option. Using maximum anonymity will cost</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="156"/>
|
||||||
|
<source>0.1DRK per 1000DRK you anonymize.</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditAddressDialog</name>
|
<name>EditAddressDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -210,6 +210,69 @@ Produkt ten zawiera oprogramowanie stworzone przez OpenSSL Project do użytku z
|
|||||||
<translation>Priorytet</translation>
|
<translation>Priorytet</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>DarksendConfig</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="14"/>
|
||||||
|
<source>Configure Darksend+</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="26"/>
|
||||||
|
<source>Basic Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="39"/>
|
||||||
|
<source>High Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="52"/>
|
||||||
|
<source>Maximum Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="65"/>
|
||||||
|
<source>Please select an privacy level. </source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="78"/>
|
||||||
|
<source>Use 2 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="91"/>
|
||||||
|
<source>Use 4 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="104"/>
|
||||||
|
<source>Use 8 separate masternodes</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="117"/>
|
||||||
|
<source>This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="130"/>
|
||||||
|
<source>This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="143"/>
|
||||||
|
<source>This is the slowest and most secure option. Using maximum anonymity will cost</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="156"/>
|
||||||
|
<source>0.1DRK per 1000DRK you anonymize.</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditAddressDialog</name>
|
<name>EditAddressDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -211,6 +211,69 @@ Este produto inclui software desenvolvido pelo Projecto OpenSSL para uso no Open
|
|||||||
<translation>Prioridade</translation>
|
<translation>Prioridade</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>DarksendConfig</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="14"/>
|
||||||
|
<source>Configure Darksend+</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="26"/>
|
||||||
|
<source>Basic Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="39"/>
|
||||||
|
<source>High Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="52"/>
|
||||||
|
<source>Maximum Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="65"/>
|
||||||
|
<source>Please select an privacy level. </source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="78"/>
|
||||||
|
<source>Use 2 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="91"/>
|
||||||
|
<source>Use 4 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="104"/>
|
||||||
|
<source>Use 8 separate masternodes</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="117"/>
|
||||||
|
<source>This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="130"/>
|
||||||
|
<source>This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="143"/>
|
||||||
|
<source>This is the slowest and most secure option. Using maximum anonymity will cost</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="156"/>
|
||||||
|
<source>0.1DRK per 1000DRK you anonymize.</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditAddressDialog</name>
|
<name>EditAddressDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -211,6 +211,69 @@ This product includes software developed by the OpenSSL Project for use in the O
|
|||||||
<translation>Приоритет</translation>
|
<translation>Приоритет</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>DarksendConfig</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="14"/>
|
||||||
|
<source>Configure Darksend+</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="26"/>
|
||||||
|
<source>Basic Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="39"/>
|
||||||
|
<source>High Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="52"/>
|
||||||
|
<source>Maximum Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="65"/>
|
||||||
|
<source>Please select an privacy level. </source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="78"/>
|
||||||
|
<source>Use 2 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="91"/>
|
||||||
|
<source>Use 4 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="104"/>
|
||||||
|
<source>Use 8 separate masternodes</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="117"/>
|
||||||
|
<source>This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="130"/>
|
||||||
|
<source>This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="143"/>
|
||||||
|
<source>This is the slowest and most secure option. Using maximum anonymity will cost</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="156"/>
|
||||||
|
<source>0.1DRK per 1000DRK you anonymize.</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditAddressDialog</name>
|
<name>EditAddressDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -211,6 +211,69 @@ This product includes software developed by the OpenSSL Project for use in the O
|
|||||||
<translation>Приоритет</translation>
|
<translation>Приоритет</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>DarksendConfig</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="14"/>
|
||||||
|
<source>Configure Darksend+</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="26"/>
|
||||||
|
<source>Basic Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="39"/>
|
||||||
|
<source>High Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="52"/>
|
||||||
|
<source>Maximum Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="65"/>
|
||||||
|
<source>Please select an privacy level. </source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="78"/>
|
||||||
|
<source>Use 2 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="91"/>
|
||||||
|
<source>Use 4 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="104"/>
|
||||||
|
<source>Use 8 separate masternodes</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="117"/>
|
||||||
|
<source>This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="130"/>
|
||||||
|
<source>This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="143"/>
|
||||||
|
<source>This is the slowest and most secure option. Using maximum anonymity will cost</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="156"/>
|
||||||
|
<source>0.1DRK per 1000DRK you anonymize.</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditAddressDialog</name>
|
<name>EditAddressDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -206,6 +206,69 @@ This product includes software developed by the OpenSSL Project for use in the O
|
|||||||
<translation type="unfinished"/>
|
<translation type="unfinished"/>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>DarksendConfig</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="14"/>
|
||||||
|
<source>Configure Darksend+</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="26"/>
|
||||||
|
<source>Basic Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="39"/>
|
||||||
|
<source>High Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="52"/>
|
||||||
|
<source>Maximum Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="65"/>
|
||||||
|
<source>Please select an privacy level. </source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="78"/>
|
||||||
|
<source>Use 2 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="91"/>
|
||||||
|
<source>Use 4 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="104"/>
|
||||||
|
<source>Use 8 separate masternodes</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="117"/>
|
||||||
|
<source>This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="130"/>
|
||||||
|
<source>This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="143"/>
|
||||||
|
<source>This is the slowest and most secure option. Using maximum anonymity will cost</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="156"/>
|
||||||
|
<source>0.1DRK per 1000DRK you anonymize.</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditAddressDialog</name>
|
<name>EditAddressDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -118,7 +118,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../forms/coincontroldialog.ui" line="14"/>
|
<location filename="../forms/coincontroldialog.ui" line="14"/>
|
||||||
<source>Coin Control Address Selection</source>
|
<source>Coin Control Address Selection</source>
|
||||||
<translation>Myntkontroll - adressval</translation>
|
<translation>Adressval för myntkontroll</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/coincontroldialog.ui" line="48"/>
|
<location filename="../forms/coincontroldialog.ui" line="48"/>
|
||||||
@ -212,6 +212,69 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ
|
|||||||
<translation>Prioritet</translation>
|
<translation>Prioritet</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>DarksendConfig</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="14"/>
|
||||||
|
<source>Configure Darksend+</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="26"/>
|
||||||
|
<source>Basic Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="39"/>
|
||||||
|
<source>High Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="52"/>
|
||||||
|
<source>Maximum Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="65"/>
|
||||||
|
<source>Please select an privacy level. </source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="78"/>
|
||||||
|
<source>Use 2 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="91"/>
|
||||||
|
<source>Use 4 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="104"/>
|
||||||
|
<source>Use 8 separate masternodes</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="117"/>
|
||||||
|
<source>This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="130"/>
|
||||||
|
<source>This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="143"/>
|
||||||
|
<source>This is the slowest and most secure option. Using maximum anonymity will cost</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="156"/>
|
||||||
|
<source>0.1DRK per 1000DRK you anonymize.</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditAddressDialog</name>
|
<name>EditAddressDialog</name>
|
||||||
<message>
|
<message>
|
||||||
@ -227,7 +290,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../forms/editaddressdialog.ui" line="35"/>
|
<location filename="../forms/editaddressdialog.ui" line="35"/>
|
||||||
<source>The label associated with this address list entry</source>
|
<source>The label associated with this address list entry</source>
|
||||||
<translation>Den associerade etiketten med adressens listnotering</translation>
|
<translation>Den associerade etiketten med adressens listninmatning</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/editaddressdialog.ui" line="42"/>
|
<location filename="../forms/editaddressdialog.ui" line="42"/>
|
||||||
@ -237,7 +300,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../forms/editaddressdialog.ui" line="52"/>
|
<location filename="../forms/editaddressdialog.ui" line="52"/>
|
||||||
<source>The address associated with this address list entry. This can only be modified for sending addresses.</source>
|
<source>The address associated with this address list entry. This can only be modified for sending addresses.</source>
|
||||||
<translation>Adressen associerad med adressens listnotering. Detta kan endast ändras för avsändaradresser.</translation>
|
<translation>Adressen associerad med adressens listinmatning. Detta kan endast ändras för avsändaradresser.</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
@ -314,7 +377,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="27"/>
|
<location filename="../forms/optionsdialog.ui" line="27"/>
|
||||||
<source>&Main</source>
|
<source>&Main</source>
|
||||||
<translation>&Huvudsaklig</translation>
|
<translation>&Primär</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="33"/>
|
<location filename="../forms/optionsdialog.ui" line="33"/>
|
||||||
@ -324,7 +387,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="36"/>
|
<location filename="../forms/optionsdialog.ui" line="36"/>
|
||||||
<source>&Start Darkcoin on system login</source>
|
<source>&Start Darkcoin on system login</source>
|
||||||
<translation>&Starta Darkcoin på systeminloggningen</translation>
|
<translation>&Starta Darkcoin vid systeminloggning</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="45"/>
|
<location filename="../forms/optionsdialog.ui" line="45"/>
|
||||||
@ -344,12 +407,12 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="101"/>
|
<location filename="../forms/optionsdialog.ui" line="101"/>
|
||||||
<source>(0 = auto, <0 = leave that many cores free)</source>
|
<source>(0 = auto, <0 = leave that many cores free)</source>
|
||||||
<translation>(0 = automatisk, <0 = lämna så många kärnor fria)</translation>
|
<translation>(0 = automatisk, <0 = lämna så många kärnor lediga)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="138"/>
|
<location filename="../forms/optionsdialog.ui" line="138"/>
|
||||||
<source><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></source>
|
<source><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></source>
|
||||||
<translation><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></translation>
|
<translation><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></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="141"/>
|
<location filename="../forms/optionsdialog.ui" line="141"/>
|
||||||
@ -359,22 +422,22 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="180"/>
|
<location filename="../forms/optionsdialog.ui" line="180"/>
|
||||||
<source>Amount of Darkcoin to keep anonymized</source>
|
<source>Amount of Darkcoin to keep anonymized</source>
|
||||||
<translation>Antalet Darkcoins att hålla anonymiserade</translation>
|
<translation>Antalet Darkcoins att bibehålla anonymiserade</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="206"/>
|
<location filename="../forms/optionsdialog.ui" line="206"/>
|
||||||
<source>W&allet</source>
|
<source>W&allet</source>
|
||||||
<translation>P&lånbok</translation>
|
<translation>&Plånbok</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="212"/>
|
<location filename="../forms/optionsdialog.ui" line="212"/>
|
||||||
<source>Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB.</source>
|
<source>Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB.</source>
|
||||||
<translation>Valfri transaktionsavgift per kB som säkerställer att dina transaktioner bearbetas snabbt. De flesta transaktioner är 1 kB.</translation>
|
<translation>Valfri transaktionsavgift per kB som säkerställer att dina transaktioner bearbetas snabbt. De flesta transaktioner är 1 kB.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="227"/>
|
<location filename="../forms/optionsdialog.ui" line="227"/>
|
||||||
<source>Pay transaction &fee</source>
|
<source>Pay transaction &fee</source>
|
||||||
<translation>Betala transaktions&avgift</translation>
|
<translation>Betala &transaktionsavgift</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="271"/>
|
<location filename="../forms/optionsdialog.ui" line="271"/>
|
||||||
@ -394,12 +457,12 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="287"/>
|
<location filename="../forms/optionsdialog.ui" line="287"/>
|
||||||
<source>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.</source>
|
<source>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.</source>
|
||||||
<translation>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.</translation>
|
<translation>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.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="290"/>
|
<location filename="../forms/optionsdialog.ui" line="290"/>
|
||||||
<source>&Spend unconfirmed change</source>
|
<source>&Spend unconfirmed change</source>
|
||||||
<translation>&Spendera obekräftad växel</translation>
|
<translation>&Spendera overifierad växel</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="301"/>
|
<location filename="../forms/optionsdialog.ui" line="301"/>
|
||||||
@ -409,7 +472,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="307"/>
|
<location filename="../forms/optionsdialog.ui" line="307"/>
|
||||||
<source>Automatically open the Darkcoin client port on the router. This only works when your router supports UPnP and it is enabled.</source>
|
<source>Automatically open the Darkcoin client port on the router. This only works when your router supports UPnP and it is enabled.</source>
|
||||||
<translation>Öppna automatiskt klientporten Darkcoin på routern. Detta fungerar bara om din router stödjer UPnP och den är aktiverad.</translation>
|
<translation>Öppna automatiskt klientporten Darkcoin på routern. Detta fungerar bara om din router stöder UPnP och är aktiverad.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="310"/>
|
<location filename="../forms/optionsdialog.ui" line="310"/>
|
||||||
@ -454,7 +517,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="406"/>
|
<location filename="../forms/optionsdialog.ui" line="406"/>
|
||||||
<source>SOCKS version of the proxy (e.g. 5)</source>
|
<source>SOCKS version of the proxy (e.g. 5)</source>
|
||||||
<translation>SOCKS-version av proxyn (t.ex. 5)</translation>
|
<translation>Proxyns SOCKS-version (t.ex. 5)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="442"/>
|
<location filename="../forms/optionsdialog.ui" line="442"/>
|
||||||
@ -464,17 +527,17 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="448"/>
|
<location filename="../forms/optionsdialog.ui" line="448"/>
|
||||||
<source>Show only a tray icon after minimizing the window.</source>
|
<source>Show only a tray icon after minimizing the window.</source>
|
||||||
<translation>Visa bara en fältikon efter att ha minimerat fönstret.</translation>
|
<translation>Visa bara en fältikon efter att fönstret minimerats.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="451"/>
|
<location filename="../forms/optionsdialog.ui" line="451"/>
|
||||||
<source>&Minimize to the tray instead of the taskbar</source>
|
<source>&Minimize to the tray instead of the taskbar</source>
|
||||||
<translation>&Minimera tll verktygsfältet istället för aktivitetsfältet</translation>
|
<translation>&Minimera till verktygsfältet istället för aktivitetsfältet</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="458"/>
|
<location filename="../forms/optionsdialog.ui" line="458"/>
|
||||||
<source>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.</source>
|
<source>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.</source>
|
||||||
<translation>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.</translation>
|
<translation>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.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="461"/>
|
<location filename="../forms/optionsdialog.ui" line="461"/>
|
||||||
@ -489,22 +552,22 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="490"/>
|
<location filename="../forms/optionsdialog.ui" line="490"/>
|
||||||
<source>User Interface &language:</source>
|
<source>User Interface &language:</source>
|
||||||
<translation>Användargränssnit&språk:</translation>
|
<translation>&Användargränsnitt&språk:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="503"/>
|
<location filename="../forms/optionsdialog.ui" line="503"/>
|
||||||
<source>The user interface language can be set here. This setting will take effect after restarting Darkcoin.</source>
|
<source>The user interface language can be set here. This setting will take effect after restarting Darkcoin.</source>
|
||||||
<translation>Användargränssnittspråket kan ställas in här. Denna inställning börjar gälla efter att du har startat om Darkcoin.</translation>
|
<translation>Användargränssnittspråket kan ställas in här. Denna inställning börjar gälla efter att Darkcoin startats om.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="514"/>
|
<location filename="../forms/optionsdialog.ui" line="514"/>
|
||||||
<source>&Unit to show amounts in:</source>
|
<source>&Unit to show amounts in:</source>
|
||||||
<translation>&Enhet att visa belopp i:</translation>
|
<translation>&Enhet att visa antal i:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="527"/>
|
<location filename="../forms/optionsdialog.ui" line="527"/>
|
||||||
<source>Choose the default subdivision unit to show in the interface and when sending coins.</source>
|
<source>Choose the default subdivision unit to show in the interface and when sending coins.</source>
|
||||||
<translation>Välj standardindelningsenhet att visa i gränssnittet och när du skickar mynt.</translation>
|
<translation>Välj standardindelningsenhet att visa i gränssnittet och när mynt skickas.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="536"/>
|
<location filename="../forms/optionsdialog.ui" line="536"/>
|
||||||
@ -520,17 +583,17 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ
|
|||||||
<location filename="../forms/optionsdialog.ui" line="548"/>
|
<location filename="../forms/optionsdialog.ui" line="548"/>
|
||||||
<location filename="../forms/optionsdialog.ui" line="561"/>
|
<location filename="../forms/optionsdialog.ui" line="561"/>
|
||||||
<source>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 |.</source>
|
<source>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 |.</source>
|
||||||
<translation>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 |.</translation>
|
<translation>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, |.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="551"/>
|
<location filename="../forms/optionsdialog.ui" line="551"/>
|
||||||
<source>Third party transaction URLs</source>
|
<source>Third party transaction URLs</source>
|
||||||
<translation>Tredjepartstransaktions-URL:er</translation>
|
<translation>Tredjepartstransaktion-URL:er</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="592"/>
|
<location filename="../forms/optionsdialog.ui" line="592"/>
|
||||||
<source>Active command-line options that override above options:</source>
|
<source>Active command-line options that override above options:</source>
|
||||||
<translation>Aktiva kommandoradsalternativ som åsidosätter ovanstående alternativ:</translation>
|
<translation>Aktiva kommandoradalternativ som åsidosätter ovanstående alternativ:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/optionsdialog.ui" line="635"/>
|
<location filename="../forms/optionsdialog.ui" line="635"/>
|
||||||
@ -589,7 +652,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../forms/overviewpage.ui" line="156"/>
|
<location filename="../forms/overviewpage.ui" line="156"/>
|
||||||
<source>Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance</source>
|
<source>Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance</source>
|
||||||
<translation>Totalt antal transaktioner som ännu inte har bekräftats och ännu inte räknas till ett tillgängligt saldo</translation>
|
<translation>Totalt antal transaktioner som ännu inte har bekräftats och ännu inte räknas som tillgängligt saldo</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/overviewpage.ui" line="172"/>
|
<location filename="../forms/overviewpage.ui" line="172"/>
|
||||||
@ -599,7 +662,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../forms/overviewpage.ui" line="185"/>
|
<location filename="../forms/overviewpage.ui" line="185"/>
|
||||||
<source>Mined balance that has not yet matured</source>
|
<source>Mined balance that has not yet matured</source>
|
||||||
<translation>Utvunnet saldo som inte har mognat än</translation>
|
<translation>Utvunnet saldo som ännu inte har mognat</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/overviewpage.ui" line="201"/>
|
<location filename="../forms/overviewpage.ui" line="201"/>
|
||||||
@ -860,7 +923,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ
|
|||||||
<location filename="../forms/receivecoinsdialog.ui" line="51"/>
|
<location filename="../forms/receivecoinsdialog.ui" line="51"/>
|
||||||
<location filename="../forms/receivecoinsdialog.ui" line="74"/>
|
<location filename="../forms/receivecoinsdialog.ui" line="74"/>
|
||||||
<source>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.</source>
|
<source>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.</source>
|
||||||
<translation>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.</translation>
|
<translation>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.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/receivecoinsdialog.ui" line="54"/>
|
<location filename="../forms/receivecoinsdialog.ui" line="54"/>
|
||||||
@ -1028,7 +1091,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../forms/sendcoinsdialog.ui" line="544"/>
|
<location filename="../forms/sendcoinsdialog.ui" line="544"/>
|
||||||
<source>If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address.</source>
|
<source>If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address.</source>
|
||||||
<translation>Om detta är aktiverat men växeladressen är tom eller ogiltig kommer växeln att skickas till en nyligen genererad adress.</translation>
|
<translation>Om detta är aktiverat men växeladressen är tom eller ogiltig kommer växeln att skickas till en nygenererad adress.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/sendcoinsdialog.ui" line="547"/>
|
<location filename="../forms/sendcoinsdialog.ui" line="547"/>
|
||||||
@ -1043,7 +1106,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../forms/sendcoinsdialog.ui" line="671"/>
|
<location filename="../forms/sendcoinsdialog.ui" line="671"/>
|
||||||
<source>S&end</source>
|
<source>S&end</source>
|
||||||
<translation>S&kicka</translation>
|
<translation>&Skicka</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/sendcoinsdialog.ui" line="691"/>
|
<location filename="../forms/sendcoinsdialog.ui" line="691"/>
|
||||||
@ -1133,7 +1196,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../forms/sendcoinsentry.ui" line="124"/>
|
<location filename="../forms/sendcoinsentry.ui" line="124"/>
|
||||||
<source>Enter a label for this address to add it to the list of used addresses</source>
|
<source>Enter a label for this address to add it to the list of used addresses</source>
|
||||||
<translation>Skriv in en etikett för denna adress för att lägga till den i listan för använda adresser</translation>
|
<translation>Skriv in en etikett för denna adress för att lägga till den i listan med använda adresser</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/sendcoinsentry.ui" line="131"/>
|
<location filename="../forms/sendcoinsentry.ui" line="131"/>
|
||||||
@ -1150,7 +1213,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../forms/sendcoinsentry.ui" line="157"/>
|
<location filename="../forms/sendcoinsentry.ui" line="157"/>
|
||||||
<source>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.</source>
|
<source>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.</source>
|
||||||
<translation>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.</translation>
|
<translation>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.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/sendcoinsentry.ui" line="583"/>
|
<location filename="../forms/sendcoinsentry.ui" line="583"/>
|
||||||
@ -1190,7 +1253,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../forms/signverifymessagedialog.ui" line="30"/>
|
<location filename="../forms/signverifymessagedialog.ui" line="30"/>
|
||||||
<source>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.</source>
|
<source>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.</source>
|
||||||
<translation>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.</translation>
|
<translation>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.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/signverifymessagedialog.ui" line="48"/>
|
<location filename="../forms/signverifymessagedialog.ui" line="48"/>
|
||||||
@ -1222,7 +1285,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../forms/signverifymessagedialog.ui" line="97"/>
|
<location filename="../forms/signverifymessagedialog.ui" line="97"/>
|
||||||
<source>Enter the message you want to sign here</source>
|
<source>Enter the message you want to sign here</source>
|
||||||
<translation>Skriv in meddelande du vill signera här</translation>
|
<translation>Skriv in meddelandet du vill signera här</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/signverifymessagedialog.ui" line="104"/>
|
<location filename="../forms/signverifymessagedialog.ui" line="104"/>
|
||||||
@ -1237,7 +1300,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../forms/signverifymessagedialog.ui" line="152"/>
|
<location filename="../forms/signverifymessagedialog.ui" line="152"/>
|
||||||
<source>Sign the message to prove you own this Darkcoin address</source>
|
<source>Sign the message to prove you own this Darkcoin address</source>
|
||||||
<translation>Signera meddelande för att bevisa att du äger denna Darkcoin-adress</translation>
|
<translation>Signera meddelandet för att bevisa att du äger denna Darkcoin-adress</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/signverifymessagedialog.ui" line="155"/>
|
<location filename="../forms/signverifymessagedialog.ui" line="155"/>
|
||||||
@ -1263,7 +1326,7 @@ Denna produkt inkluderar programvara utvecklad genom OpenSSL Project för använ
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../forms/signverifymessagedialog.ui" line="237"/>
|
<location filename="../forms/signverifymessagedialog.ui" line="237"/>
|
||||||
<source>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.</source>
|
<source>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.</source>
|
||||||
<translation>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.</translation>
|
<translation>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.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../forms/signverifymessagedialog.ui" line="258"/>
|
<location filename="../forms/signverifymessagedialog.ui" line="258"/>
|
||||||
|
@ -206,6 +206,69 @@ This product includes software developed by the OpenSSL Project for use in the O
|
|||||||
<translation type="unfinished"/>
|
<translation type="unfinished"/>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>DarksendConfig</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="14"/>
|
||||||
|
<source>Configure Darksend+</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="26"/>
|
||||||
|
<source>Basic Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="39"/>
|
||||||
|
<source>High Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="52"/>
|
||||||
|
<source>Maximum Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="65"/>
|
||||||
|
<source>Please select an privacy level. </source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="78"/>
|
||||||
|
<source>Use 2 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="91"/>
|
||||||
|
<source>Use 4 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="104"/>
|
||||||
|
<source>Use 8 separate masternodes</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="117"/>
|
||||||
|
<source>This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="130"/>
|
||||||
|
<source>This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="143"/>
|
||||||
|
<source>This is the slowest and most secure option. Using maximum anonymity will cost</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="156"/>
|
||||||
|
<source>0.1DRK per 1000DRK you anonymize.</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditAddressDialog</name>
|
<name>EditAddressDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -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
|
|||||||
<translation>Ưu tiên</translation>
|
<translation>Ưu tiên</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>DarksendConfig</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="14"/>
|
||||||
|
<source>Configure Darksend+</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="26"/>
|
||||||
|
<source>Basic Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="39"/>
|
||||||
|
<source>High Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="52"/>
|
||||||
|
<source>Maximum Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="65"/>
|
||||||
|
<source>Please select an privacy level. </source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="78"/>
|
||||||
|
<source>Use 2 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="91"/>
|
||||||
|
<source>Use 4 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="104"/>
|
||||||
|
<source>Use 8 separate masternodes</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="117"/>
|
||||||
|
<source>This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="130"/>
|
||||||
|
<source>This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="143"/>
|
||||||
|
<source>This is the slowest and most secure option. Using maximum anonymity will cost</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="156"/>
|
||||||
|
<source>0.1DRK per 1000DRK you anonymize.</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditAddressDialog</name>
|
<name>EditAddressDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -206,6 +206,69 @@ This product includes software developed by the OpenSSL Project for use in the O
|
|||||||
<translation>优先权</translation>
|
<translation>优先权</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>DarksendConfig</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="14"/>
|
||||||
|
<source>Configure Darksend+</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="26"/>
|
||||||
|
<source>Basic Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="39"/>
|
||||||
|
<source>High Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="52"/>
|
||||||
|
<source>Maximum Privacy</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="65"/>
|
||||||
|
<source>Please select an privacy level. </source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="78"/>
|
||||||
|
<source>Use 2 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="91"/>
|
||||||
|
<source>Use 4 separate masternodes to mix funds up to 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="104"/>
|
||||||
|
<source>Use 8 separate masternodes</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="117"/>
|
||||||
|
<source>This option is the quickest and will cost about ~0.025DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="130"/>
|
||||||
|
<source>This option is moderately fast and will cost about 0.05DRK to anonymize 1000DRK</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="143"/>
|
||||||
|
<source>This is the slowest and most secure option. Using maximum anonymity will cost</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/darksendconfig.ui" line="156"/>
|
||||||
|
<source>0.1DRK per 1000DRK you anonymize.</source>
|
||||||
|
<translation type="unfinished"/>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EditAddressDialog</name>
|
<name>EditAddressDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
Loading…
Reference in New Issue
Block a user